From cbe51e2d182c0bf34d861a68a51d8fc0ddf644ba Mon Sep 17 00:00:00 2001 From: Djorkaeff Alexandre Date: Fri, 17 Jul 2020 14:39:06 -0300 Subject: [PATCH] [IMPROVEMENT] Clear image cache when clear cache (#2300) * [IMPROVEMENT] Clear image cache when clear cache * use fork instead * react-native-fast-image -> @rocket.chat/react-native-fast-image Co-authored-by: Diego Mello --- app/containers/Avatar.js | 2 +- app/containers/EmojiPicker/CustomEmoji.js | 2 +- .../MessageBox/CommandsPreview/Item.js | 2 +- app/containers/UIKit/Image.js | 2 +- app/containers/UIKit/MultiSelect/Chips.js | 2 +- app/containers/UIKit/MultiSelect/Items.js | 2 +- app/containers/message/Image.js | 2 +- app/containers/message/Urls.js | 2 +- .../ImageViewer/ImageComponent.js | 2 +- app/presentation/ServerItem/index.js | 2 +- app/views/SettingsView/index.js | 7 +- app/views/WorkspaceView/ServerAvatar.js | 2 +- ios/Podfile.lock | 16 +- .../Private/RNFastImage/FFFastImageSource.h | 2 +- .../Private/RNFastImage/FFFastImageView.h | 2 +- .../RNFastImage/FFFastImageViewManager.h | 2 +- .../RNFastImage/RCTConvert+FFFastImage.h | 2 +- .../SDWebImage/SDWebImageTransitionInternal.h | 1 + .../Public/RNFastImage/FFFastImageSource.h | 2 +- .../Public/RNFastImage/FFFastImageView.h | 2 +- .../RNFastImage/FFFastImageViewManager.h | 2 +- .../RNFastImage/RCTConvert+FFFastImage.h | 2 +- .../Local Podspecs/RNBootSplash.podspec.json | 4 +- ios/Pods/Manifest.lock | 16 +- ios/Pods/Pods.xcodeproj/project.pbxproj | 14054 ++++++++-------- ios/Pods/SDWebImage/README.md | 9 + .../SDWebImage/Core/SDAnimatedImageView.h | 7 + .../SDWebImage/Core/SDAnimatedImageView.m | 60 +- .../SDWebImage/SDWebImage/Core/SDImageCoder.h | 8 + .../SDWebImage/SDWebImage/Core/SDImageCoder.m | 1 + .../SDWebImage/Core/SDImageIOAnimatedCoder.m | 25 +- .../SDWebImage/Core/SDImageIOCoder.m | 5 + .../SDWebImage/Core/SDWebImageDefine.h | 8 + .../SDWebImage/Core/SDWebImageDefine.m | 1 + .../Core/SDWebImageDownloaderDecryptor.h | 5 + .../Core/SDWebImageDownloaderOperation.m | 3 +- .../SDWebImageDownloaderRequestModifier.h | 34 + .../SDWebImageDownloaderRequestModifier.m | 32 + .../SDWebImageDownloaderResponseModifier.h | 34 + .../SDWebImageDownloaderResponseModifier.m | 33 + .../SDWebImage/Core/SDWebImageError.h | 1 + .../SDWebImage/Core/SDWebImageManager.h | 11 + .../SDWebImage/Core/SDWebImageManager.m | 96 +- .../SDWebImage/Core/SDWebImageTransition.h | 18 +- .../SDWebImage/Core/SDWebImageTransition.m | 105 +- .../SDWebImage/Core/UIView+WebCache.m | 30 +- .../Private/SDWebImageTransitionInternal.h | 19 + ios/Pods/SDWebImage/WebImage/SDWebImage.h | 2 +- .../RNFastImage/RNFastImage.xcconfig | 2 +- ios/RocketChatRN.xcodeproj/project.pbxproj | 4 +- package.json | 2 +- yarn.lock | 10 +- 52 files changed, 7537 insertions(+), 7164 deletions(-) create mode 120000 ios/Pods/Headers/Private/SDWebImage/SDWebImageTransitionInternal.h create mode 100644 ios/Pods/SDWebImage/SDWebImage/Private/SDWebImageTransitionInternal.h diff --git a/app/containers/Avatar.js b/app/containers/Avatar.js index 66bef841..c4ed0ba7 100644 --- a/app/containers/Avatar.js +++ b/app/containers/Avatar.js @@ -1,7 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; import { View } from 'react-native'; -import FastImage from 'react-native-fast-image'; +import FastImage from '@rocket.chat/react-native-fast-image'; import Touchable from 'react-native-platform-touchable'; import { settings as RocketChatSettings } from '@rocket.chat/sdk'; diff --git a/app/containers/EmojiPicker/CustomEmoji.js b/app/containers/EmojiPicker/CustomEmoji.js index 381695d0..934155fe 100644 --- a/app/containers/EmojiPicker/CustomEmoji.js +++ b/app/containers/EmojiPicker/CustomEmoji.js @@ -1,5 +1,5 @@ import React from 'react'; -import FastImage from 'react-native-fast-image'; +import FastImage from '@rocket.chat/react-native-fast-image'; import PropTypes from 'prop-types'; const CustomEmoji = React.memo(({ baseUrl, emoji, style }) => ( diff --git a/app/containers/MessageBox/CommandsPreview/Item.js b/app/containers/MessageBox/CommandsPreview/Item.js index 2909f57e..fd8abd19 100644 --- a/app/containers/MessageBox/CommandsPreview/Item.js +++ b/app/containers/MessageBox/CommandsPreview/Item.js @@ -1,7 +1,7 @@ import React, { useContext, useState } from 'react'; import PropTypes from 'prop-types'; import { TouchableOpacity } from 'react-native'; -import FastImage from 'react-native-fast-image'; +import FastImage from '@rocket.chat/react-native-fast-image'; import styles from '../styles'; import { CustomIcon } from '../../../lib/Icons'; diff --git a/app/containers/UIKit/Image.js b/app/containers/UIKit/Image.js index b21805e3..dd7eaa94 100644 --- a/app/containers/UIKit/Image.js +++ b/app/containers/UIKit/Image.js @@ -1,6 +1,6 @@ import React from 'react'; import { View, StyleSheet } from 'react-native'; -import FastImage from 'react-native-fast-image'; +import FastImage from '@rocket.chat/react-native-fast-image'; import PropTypes from 'prop-types'; import { BLOCK_CONTEXT } from '@rocket.chat/ui-kit'; diff --git a/app/containers/UIKit/MultiSelect/Chips.js b/app/containers/UIKit/MultiSelect/Chips.js index 9d0eb0a2..c71cdd98 100644 --- a/app/containers/UIKit/MultiSelect/Chips.js +++ b/app/containers/UIKit/MultiSelect/Chips.js @@ -2,7 +2,7 @@ import React from 'react'; import { Text, View } from 'react-native'; import PropTypes from 'prop-types'; import Touchable from 'react-native-platform-touchable'; -import FastImage from 'react-native-fast-image'; +import FastImage from '@rocket.chat/react-native-fast-image'; import { themes } from '../../../constants/colors'; import { textParser } from '../utils'; diff --git a/app/containers/UIKit/MultiSelect/Items.js b/app/containers/UIKit/MultiSelect/Items.js index 7a460ac4..4418600f 100644 --- a/app/containers/UIKit/MultiSelect/Items.js +++ b/app/containers/UIKit/MultiSelect/Items.js @@ -2,7 +2,7 @@ import React from 'react'; import { Text, FlatList } from 'react-native'; import PropTypes from 'prop-types'; import Touchable from 'react-native-platform-touchable'; -import FastImage from 'react-native-fast-image'; +import FastImage from '@rocket.chat/react-native-fast-image'; import Separator from '../../Separator'; import Check from '../../Check'; diff --git a/app/containers/message/Image.js b/app/containers/message/Image.js index 499e793a..1471b449 100644 --- a/app/containers/message/Image.js +++ b/app/containers/message/Image.js @@ -1,7 +1,7 @@ import React, { useContext } from 'react'; import { View } from 'react-native'; import PropTypes from 'prop-types'; -import FastImage from 'react-native-fast-image'; +import FastImage from '@rocket.chat/react-native-fast-image'; import equal from 'deep-equal'; import { createImageProgress } from 'react-native-image-progress'; import * as Progress from 'react-native-progress'; diff --git a/app/containers/message/Urls.js b/app/containers/message/Urls.js index b5e43bf6..946433d4 100644 --- a/app/containers/message/Urls.js +++ b/app/containers/message/Urls.js @@ -3,7 +3,7 @@ import { View, Text, StyleSheet, Clipboard } from 'react-native'; import PropTypes from 'prop-types'; -import FastImage from 'react-native-fast-image'; +import FastImage from '@rocket.chat/react-native-fast-image'; import isEqual from 'lodash/isEqual'; import Touchable from './Touchable'; diff --git a/app/presentation/ImageViewer/ImageComponent.js b/app/presentation/ImageViewer/ImageComponent.js index cb365f03..cf00e432 100644 --- a/app/presentation/ImageViewer/ImageComponent.js +++ b/app/presentation/ImageViewer/ImageComponent.js @@ -6,7 +6,7 @@ export const ImageComponent = (type) => { const { Image } = require('react-native'); Component = Image; } else { - const FastImage = require('react-native-fast-image').default; + const FastImage = require('@rocket.chat/react-native-fast-image').default; Component = FastImage; } return Component; diff --git a/app/presentation/ServerItem/index.js b/app/presentation/ServerItem/index.js index 094b86a9..53163a43 100644 --- a/app/presentation/ServerItem/index.js +++ b/app/presentation/ServerItem/index.js @@ -1,7 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; import { View, Text } from 'react-native'; -import FastImage from 'react-native-fast-image'; +import FastImage from '@rocket.chat/react-native-fast-image'; import Touch from '../../utils/touch'; import Check from '../../containers/Check'; diff --git a/app/views/SettingsView/index.js b/app/views/SettingsView/index.js index 9cb3c8b0..cee79fa9 100644 --- a/app/views/SettingsView/index.js +++ b/app/views/SettingsView/index.js @@ -5,6 +5,7 @@ import { import PropTypes from 'prop-types'; import { connect } from 'react-redux'; import AsyncStorage from '@react-native-community/async-storage'; +import FastImage from '@rocket.chat/react-native-fast-image'; import { logout as logoutAction } from '../../actions/login'; import { selectServerRequest as selectServerRequestAction } from '../../actions/server'; @@ -103,9 +104,11 @@ class SettingsView extends React.Component { const { server: { server }, appStart, selectServerRequest } = this.props; - await appStart({ root: ROOT_LOADING, text: I18n.t('Clear_cache_loading') }); + appStart({ root: ROOT_LOADING, text: I18n.t('Clear_cache_loading') }); await RocketChat.clearCache({ server }); - await selectServerRequest(server, null, true); + await FastImage.clearMemoryCache(); + await FastImage.clearDiskCache(); + selectServerRequest(server, null, true); } }); } diff --git a/app/views/WorkspaceView/ServerAvatar.js b/app/views/WorkspaceView/ServerAvatar.js index c7e84902..0a82b30f 100644 --- a/app/views/WorkspaceView/ServerAvatar.js +++ b/app/views/WorkspaceView/ServerAvatar.js @@ -3,7 +3,7 @@ import { StyleSheet, View, Text } from 'react-native'; import PropTypes from 'prop-types'; import { createImageProgress } from 'react-native-image-progress'; import * as Progress from 'react-native-progress'; -import FastImage from 'react-native-fast-image'; +import FastImage from '@rocket.chat/react-native-fast-image'; import sharedStyles from '../Styles'; import { themes } from '../../constants/colors'; diff --git a/ios/Podfile.lock b/ios/Podfile.lock index a48ab9fa..0355ffe4 100644 --- a/ios/Podfile.lock +++ b/ios/Podfile.lock @@ -440,7 +440,7 @@ PODS: - React - rn-fetch-blob (0.12.0): - React-Core - - RNBootSplash (2.2.4): + - RNBootSplash (2.2.5): - React - RNCAsyncStorage (1.10.3): - React @@ -486,9 +486,9 @@ PODS: - React - RNVectorIcons (6.6.0): - React - - SDWebImage (5.7.4): - - SDWebImage/Core (= 5.7.4) - - SDWebImage/Core (5.7.4) + - SDWebImage (5.8.0): + - SDWebImage/Core (= 5.8.0) + - SDWebImage/Core (5.8.0) - SDWebImageWebPCoder (0.4.1): - libwebp (~> 1.0) - SDWebImage/Core (~> 5.5) @@ -595,7 +595,7 @@ DEPENDENCIES: - "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`) + - "RNFastImage (from `../node_modules/@rocket.chat/react-native-fast-image`)" - RNFirebase (from `../node_modules/react-native-firebase/ios`) - RNGestureHandler (from `../node_modules/react-native-gesture-handler`) - RNImageCropPicker (from `../node_modules/react-native-image-crop-picker`) @@ -771,7 +771,7 @@ EXTERNAL SOURCES: RNDeviceInfo: :path: "../node_modules/react-native-device-info" RNFastImage: - :path: "../node_modules/react-native-fast-image" + :path: "../node_modules/@rocket.chat/react-native-fast-image" RNFirebase: :path: "../node_modules/react-native-firebase/ios" RNGestureHandler: @@ -904,7 +904,7 @@ SPEC CHECKSUMS: ReactNativeKeyboardTrackingView: 02137fac3b2ebd330d74fa54ead48b14750a2306 rn-extensions-share: 8db79372089567cbc5aefe8444869bbc808578d3 rn-fetch-blob: f065bb7ab7fb48dd002629f8bdcb0336602d3cba - RNBootSplash: 7cb9b4fe7e94177edc0d11010f7631d79db2f5e9 + RNBootSplash: b3836aa90c5bec690c6cd3c9ab355fcf98d0fe1d RNCAsyncStorage: cd7234ff15c010723ed7c499ae4eedc605eac1fd RNCMaskedView: 5a8ec07677aa885546a0d98da336457e2bea557f RNDateTimePicker: 4bd49e09f91ca73d69119a9e1173b0d43b82f5e5 @@ -919,7 +919,7 @@ SPEC CHECKSUMS: RNScreens: cf198f915f8a2bf163de94ca9f5bfc8d326c3706 RNUserDefaults: c421fd97ad06b35c16608c5d0fe675db353f632d RNVectorIcons: 0bb4def82230be1333ddaeee9fcba45f0b288ed4 - SDWebImage: 48b88379b798fd1e4298f95bb25d2cdabbf4deb3 + SDWebImage: 84000f962cbfa70c07f19d2234cbfcf5d779b5dc SDWebImageWebPCoder: 36f8f47bd9879a8aea6044765c1351120fd8e3a8 TOCropViewController: e9da34f484aedd4e5d5a8ab230ba217cfe16c729 UMAppLoader: ee77a072f9e15128f777ccd6d2d00f52ab4387e6 diff --git a/ios/Pods/Headers/Private/RNFastImage/FFFastImageSource.h b/ios/Pods/Headers/Private/RNFastImage/FFFastImageSource.h index c4fc8c87..477cdf60 120000 --- a/ios/Pods/Headers/Private/RNFastImage/FFFastImageSource.h +++ b/ios/Pods/Headers/Private/RNFastImage/FFFastImageSource.h @@ -1 +1 @@ -../../../../../node_modules/react-native-fast-image/ios/FastImage/FFFastImageSource.h \ No newline at end of file +../../../../../node_modules/@rocket.chat/react-native-fast-image/ios/FastImage/FFFastImageSource.h \ No newline at end of file diff --git a/ios/Pods/Headers/Private/RNFastImage/FFFastImageView.h b/ios/Pods/Headers/Private/RNFastImage/FFFastImageView.h index 80b12ac9..12ba0a91 120000 --- a/ios/Pods/Headers/Private/RNFastImage/FFFastImageView.h +++ b/ios/Pods/Headers/Private/RNFastImage/FFFastImageView.h @@ -1 +1 @@ -../../../../../node_modules/react-native-fast-image/ios/FastImage/FFFastImageView.h \ No newline at end of file +../../../../../node_modules/@rocket.chat/react-native-fast-image/ios/FastImage/FFFastImageView.h \ No newline at end of file diff --git a/ios/Pods/Headers/Private/RNFastImage/FFFastImageViewManager.h b/ios/Pods/Headers/Private/RNFastImage/FFFastImageViewManager.h index 85a9fcb3..49420866 120000 --- a/ios/Pods/Headers/Private/RNFastImage/FFFastImageViewManager.h +++ b/ios/Pods/Headers/Private/RNFastImage/FFFastImageViewManager.h @@ -1 +1 @@ -../../../../../node_modules/react-native-fast-image/ios/FastImage/FFFastImageViewManager.h \ No newline at end of file +../../../../../node_modules/@rocket.chat/react-native-fast-image/ios/FastImage/FFFastImageViewManager.h \ No newline at end of file diff --git a/ios/Pods/Headers/Private/RNFastImage/RCTConvert+FFFastImage.h b/ios/Pods/Headers/Private/RNFastImage/RCTConvert+FFFastImage.h index ade4a7a8..6a7475b1 120000 --- a/ios/Pods/Headers/Private/RNFastImage/RCTConvert+FFFastImage.h +++ b/ios/Pods/Headers/Private/RNFastImage/RCTConvert+FFFastImage.h @@ -1 +1 @@ -../../../../../node_modules/react-native-fast-image/ios/FastImage/RCTConvert+FFFastImage.h \ No newline at end of file +../../../../../node_modules/@rocket.chat/react-native-fast-image/ios/FastImage/RCTConvert+FFFastImage.h \ No newline at end of file diff --git a/ios/Pods/Headers/Private/SDWebImage/SDWebImageTransitionInternal.h b/ios/Pods/Headers/Private/SDWebImage/SDWebImageTransitionInternal.h new file mode 120000 index 00000000..0f3ec14a --- /dev/null +++ b/ios/Pods/Headers/Private/SDWebImage/SDWebImageTransitionInternal.h @@ -0,0 +1 @@ +../../../SDWebImage/SDWebImage/Private/SDWebImageTransitionInternal.h \ No newline at end of file diff --git a/ios/Pods/Headers/Public/RNFastImage/FFFastImageSource.h b/ios/Pods/Headers/Public/RNFastImage/FFFastImageSource.h index c4fc8c87..477cdf60 120000 --- a/ios/Pods/Headers/Public/RNFastImage/FFFastImageSource.h +++ b/ios/Pods/Headers/Public/RNFastImage/FFFastImageSource.h @@ -1 +1 @@ -../../../../../node_modules/react-native-fast-image/ios/FastImage/FFFastImageSource.h \ No newline at end of file +../../../../../node_modules/@rocket.chat/react-native-fast-image/ios/FastImage/FFFastImageSource.h \ No newline at end of file diff --git a/ios/Pods/Headers/Public/RNFastImage/FFFastImageView.h b/ios/Pods/Headers/Public/RNFastImage/FFFastImageView.h index 80b12ac9..12ba0a91 120000 --- a/ios/Pods/Headers/Public/RNFastImage/FFFastImageView.h +++ b/ios/Pods/Headers/Public/RNFastImage/FFFastImageView.h @@ -1 +1 @@ -../../../../../node_modules/react-native-fast-image/ios/FastImage/FFFastImageView.h \ No newline at end of file +../../../../../node_modules/@rocket.chat/react-native-fast-image/ios/FastImage/FFFastImageView.h \ No newline at end of file diff --git a/ios/Pods/Headers/Public/RNFastImage/FFFastImageViewManager.h b/ios/Pods/Headers/Public/RNFastImage/FFFastImageViewManager.h index 85a9fcb3..49420866 120000 --- a/ios/Pods/Headers/Public/RNFastImage/FFFastImageViewManager.h +++ b/ios/Pods/Headers/Public/RNFastImage/FFFastImageViewManager.h @@ -1 +1 @@ -../../../../../node_modules/react-native-fast-image/ios/FastImage/FFFastImageViewManager.h \ No newline at end of file +../../../../../node_modules/@rocket.chat/react-native-fast-image/ios/FastImage/FFFastImageViewManager.h \ No newline at end of file diff --git a/ios/Pods/Headers/Public/RNFastImage/RCTConvert+FFFastImage.h b/ios/Pods/Headers/Public/RNFastImage/RCTConvert+FFFastImage.h index ade4a7a8..6a7475b1 120000 --- a/ios/Pods/Headers/Public/RNFastImage/RCTConvert+FFFastImage.h +++ b/ios/Pods/Headers/Public/RNFastImage/RCTConvert+FFFastImage.h @@ -1 +1 @@ -../../../../../node_modules/react-native-fast-image/ios/FastImage/RCTConvert+FFFastImage.h \ No newline at end of file +../../../../../node_modules/@rocket.chat/react-native-fast-image/ios/FastImage/RCTConvert+FFFastImage.h \ No newline at end of file diff --git a/ios/Pods/Local Podspecs/RNBootSplash.podspec.json b/ios/Pods/Local Podspecs/RNBootSplash.podspec.json index b86edcaf..c89f5978 100644 --- a/ios/Pods/Local Podspecs/RNBootSplash.podspec.json +++ b/ios/Pods/Local Podspecs/RNBootSplash.podspec.json @@ -5,7 +5,7 @@ ] }, - "version": "2.2.4", + "version": "2.2.5", "license": "MIT", "summary": "Display a bootsplash on your app starts. Hide it when you want.", "authors": "Mathieu Acthernoene ", @@ -17,7 +17,7 @@ "requires_arc": true, "source": { "git": "https://github.com/zoontek/react-native-bootsplash.git", - "tag": "2.2.4" + "tag": "2.2.5" }, "source_files": "ios/*.{h,m}" } diff --git a/ios/Pods/Manifest.lock b/ios/Pods/Manifest.lock index a48ab9fa..0355ffe4 100644 --- a/ios/Pods/Manifest.lock +++ b/ios/Pods/Manifest.lock @@ -440,7 +440,7 @@ PODS: - React - rn-fetch-blob (0.12.0): - React-Core - - RNBootSplash (2.2.4): + - RNBootSplash (2.2.5): - React - RNCAsyncStorage (1.10.3): - React @@ -486,9 +486,9 @@ PODS: - React - RNVectorIcons (6.6.0): - React - - SDWebImage (5.7.4): - - SDWebImage/Core (= 5.7.4) - - SDWebImage/Core (5.7.4) + - SDWebImage (5.8.0): + - SDWebImage/Core (= 5.8.0) + - SDWebImage/Core (5.8.0) - SDWebImageWebPCoder (0.4.1): - libwebp (~> 1.0) - SDWebImage/Core (~> 5.5) @@ -595,7 +595,7 @@ DEPENDENCIES: - "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`) + - "RNFastImage (from `../node_modules/@rocket.chat/react-native-fast-image`)" - RNFirebase (from `../node_modules/react-native-firebase/ios`) - RNGestureHandler (from `../node_modules/react-native-gesture-handler`) - RNImageCropPicker (from `../node_modules/react-native-image-crop-picker`) @@ -771,7 +771,7 @@ EXTERNAL SOURCES: RNDeviceInfo: :path: "../node_modules/react-native-device-info" RNFastImage: - :path: "../node_modules/react-native-fast-image" + :path: "../node_modules/@rocket.chat/react-native-fast-image" RNFirebase: :path: "../node_modules/react-native-firebase/ios" RNGestureHandler: @@ -904,7 +904,7 @@ SPEC CHECKSUMS: ReactNativeKeyboardTrackingView: 02137fac3b2ebd330d74fa54ead48b14750a2306 rn-extensions-share: 8db79372089567cbc5aefe8444869bbc808578d3 rn-fetch-blob: f065bb7ab7fb48dd002629f8bdcb0336602d3cba - RNBootSplash: 7cb9b4fe7e94177edc0d11010f7631d79db2f5e9 + RNBootSplash: b3836aa90c5bec690c6cd3c9ab355fcf98d0fe1d RNCAsyncStorage: cd7234ff15c010723ed7c499ae4eedc605eac1fd RNCMaskedView: 5a8ec07677aa885546a0d98da336457e2bea557f RNDateTimePicker: 4bd49e09f91ca73d69119a9e1173b0d43b82f5e5 @@ -919,7 +919,7 @@ SPEC CHECKSUMS: RNScreens: cf198f915f8a2bf163de94ca9f5bfc8d326c3706 RNUserDefaults: c421fd97ad06b35c16608c5d0fe675db353f632d RNVectorIcons: 0bb4def82230be1333ddaeee9fcba45f0b288ed4 - SDWebImage: 48b88379b798fd1e4298f95bb25d2cdabbf4deb3 + SDWebImage: 84000f962cbfa70c07f19d2234cbfcf5d779b5dc SDWebImageWebPCoder: 36f8f47bd9879a8aea6044765c1351120fd8e3a8 TOCropViewController: e9da34f484aedd4e5d5a8ab230ba217cfe16c729 UMAppLoader: ee77a072f9e15128f777ccd6d2d00f52ab4387e6 diff --git a/ios/Pods/Pods.xcodeproj/project.pbxproj b/ios/Pods/Pods.xcodeproj/project.pbxproj index 3146cb9e..8561fea8 100644 --- a/ios/Pods/Pods.xcodeproj/project.pbxproj +++ b/ios/Pods/Pods.xcodeproj/project.pbxproj @@ -238,26 +238,26 @@ /* End PBXAggregateTarget section */ /* Begin PBXBuildFile section */ - 000601D6585E358B4C5C687C9A463409 /* RNUserDefaults.h in Headers */ = {isa = PBXBuildFile; fileRef = 741C3A3B5625053E83FF3307CC09A3DC /* RNUserDefaults.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 000F50E0CF2A97F28B1403D1775EDC99 /* UMBridgeModule.h in Headers */ = {isa = PBXBuildFile; fileRef = B393A8351F43494FB8EE8EEAADD868EF /* UMBridgeModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 000601D6585E358B4C5C687C9A463409 /* RNUserDefaults.h in Headers */ = {isa = PBXBuildFile; fileRef = FF8D4BFBF8C8FED9E95609E2E7DF692A /* RNUserDefaults.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 000F50E0CF2A97F28B1403D1775EDC99 /* UMBridgeModule.h in Headers */ = {isa = PBXBuildFile; fileRef = F21249D284935A4E9ACE3232B6CD057C /* UMBridgeModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; 001AF458ED907C2245E6C1309CFADDB3 /* JemallocHugePageAllocator.h in Headers */ = {isa = PBXBuildFile; fileRef = F628CC7BE0AEEA83942594EE661FCFFE /* JemallocHugePageAllocator.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0060810FB3851F5761DD7524A5AD905E /* RNGestureHandlerEvents.h in Headers */ = {isa = PBXBuildFile; fileRef = 452F41A12ABBAAB84397380B42284D60 /* RNGestureHandlerEvents.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 00A894F22AA7BAC1B6AA77349D399622 /* REATransitionManager.h in Headers */ = {isa = PBXBuildFile; fileRef = D47EB0EB7BBF5533FCDA0908164CB63F /* REATransitionManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 00AAC400E3418EF5114C52242349B8D9 /* UMNativeModulesProxy.m in Sources */ = {isa = PBXBuildFile; fileRef = F162F61E596682F0B5B70E78B59DA9D3 /* UMNativeModulesProxy.m */; }; + 0060810FB3851F5761DD7524A5AD905E /* RNGestureHandlerEvents.h in Headers */ = {isa = PBXBuildFile; fileRef = FA8D33F24E77B5DEC4B298DA68780BE8 /* RNGestureHandlerEvents.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 00A894F22AA7BAC1B6AA77349D399622 /* REATransitionManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 71E80AAD667669B63C01591B4CA4D9E2 /* REATransitionManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 00AAC400E3418EF5114C52242349B8D9 /* UMNativeModulesProxy.m in Sources */ = {isa = PBXBuildFile; fileRef = E712D133E8DA4FF4661B3B7D0880A010 /* UMNativeModulesProxy.m */; }; 00C91D63CC716D2460BD2A730560A58E /* ThreadId.h in Headers */ = {isa = PBXBuildFile; fileRef = 70197CC7571ACA78C92A18304930BE97 /* ThreadId.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 00C950628997FB02D111B83EB951E6CB /* RCTManagedPointer.mm in Sources */ = {isa = PBXBuildFile; fileRef = 3121408745595749887D41BA8C1D4AB2 /* 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 = C082C061C52B41DC74CF1FF0B88F2D31 /* 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 = EB93BE6AFAF1BC480D0C2B0600E21070 /* GULAppDelegateSwizzler.m */; }; 00D2A54A8823A11E61F579504E81E987 /* Flipper-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = C447054D2A8D18FFD482EBF39CCD4073 /* Flipper-dummy.m */; }; 00F922693F608FAEB7DF4C02CE61C369 /* OpenSSLHash.h in Headers */ = {isa = PBXBuildFile; fileRef = 4DD859B7667F2DABB151D070B512AE66 /* OpenSSLHash.h */; settings = {ATTRIBUTES = (Project, ); }; }; 00FA3E1586775F0FB5DA9F5F99EC17CC /* AtomicUnorderedMap.h in Headers */ = {isa = PBXBuildFile; fileRef = 5E010882BE98A85E0CD8F121871D0AF5 /* AtomicUnorderedMap.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 010699DF90AE445D00AB55ECC23DC460 /* YGStyle.cpp in Sources */ = {isa = PBXBuildFile; fileRef = DAF9878961E52E9EEA3D247C43084864 /* 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 = 31E08DAC1A619FCDA26A814273FD6980 /* SDImageIOCoder.m */; }; - 0109A3A759F7D4639629377AC27DB234 /* RNImageCropPicker-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 4A5089756CA01445DAA8F58801683705 /* RNImageCropPicker-dummy.m */; }; + 010699DF90AE445D00AB55ECC23DC460 /* YGStyle.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D0E69AABAF3D5E8170782606595C686C /* 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 = 74A054457DFE284200295BC67C233360 /* SDImageIOCoder.m */; }; + 0109A3A759F7D4639629377AC27DB234 /* RNImageCropPicker-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = B60643436E9FCF4E4BA07D9E2DC75F56 /* RNImageCropPicker-dummy.m */; }; 011466BD1564B2DC5CE448FEA5B29B85 /* README.md in Sources */ = {isa = PBXBuildFile; fileRef = 1AD3488E3ED1D9E978C1DBD1D5FF8006 /* README.md */; }; 011CCC7448DA0EED688075A9B65EC55C /* GDTCORUploadCoordinator.h in Headers */ = {isa = PBXBuildFile; fileRef = 89BF11E56AFF3B7B285F3EB179397794 /* GDTCORUploadCoordinator.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 01242B075C745D566D2F188D45FAEDAE /* RCTScrollContentView.h in Headers */ = {isa = PBXBuildFile; fileRef = 0BFB651D0748DF11336DEDB9ED0D4468 /* RCTScrollContentView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 01242B075C745D566D2F188D45FAEDAE /* RCTScrollContentView.h in Headers */ = {isa = PBXBuildFile; fileRef = A786107FDA8F3C5A5B92841E35A3A935 /* RCTScrollContentView.h */; settings = {ATTRIBUTES = (Project, ); }; }; 01448BDA59FEB517720540384ACA3EB5 /* UniqueInstance.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2B819B405EE6D794E6E47B0FB1CA3C6F /* 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 = C019C5E38C06F44F4D7C9B8CA3265E20 /* ARTRenderable.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0198283A6245A364C263FECB875E1C76 /* ARTRenderable.h in Headers */ = {isa = PBXBuildFile; fileRef = DD2994025FEE926A7B3A139CD7CC1019 /* ARTRenderable.h */; settings = {ATTRIBUTES = (Project, ); }; }; 01D4A5DDBBEE67AA18A16D4C689B53DA /* ErrorCode.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 266B524D0AB8F9504500D7E7891293B0 /* 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 = 43B69FCD8D50501DDFA9BCDED9C89518 /* pb_encode.h */; settings = {ATTRIBUTES = (Project, ); }; }; 01FA56AC1F7EF75E75EBBCA0945A18E1 /* SSLContext.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F9EAC10DE40C6EB5700CA74AAC9E03FA /* 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"; }; }; @@ -265,299 +265,298 @@ 02218BCD8452C372E4ACC4A4C8325932 /* rescaler.c in Sources */ = {isa = PBXBuildFile; fileRef = B03AF04A4A9658C483148005DEDAE80C /* rescaler.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; 023FF4811870371C17AB936C0370C28D /* WTCallback.h in Headers */ = {isa = PBXBuildFile; fileRef = B9E53FE8489DBF30F8C05AFC8DC96FF7 /* WTCallback.h */; settings = {ATTRIBUTES = (Project, ); }; }; 024FFB764B39A899C61D25A259530FAF /* WriteChainAsyncTransportWrapper.h in Headers */ = {isa = PBXBuildFile; fileRef = 29B836691D2C3E25B3EC9AFE80E342BF /* WriteChainAsyncTransportWrapper.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 02A040AA87D6FF98C4A159A382F8CA35 /* REAEventNode.h in Headers */ = {isa = PBXBuildFile; fileRef = C0BF5F99115EE471188E590055260764 /* REAEventNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 02A3BBD616C9D1C40690E52BD99F0CFA /* RCTComponentData.m in Sources */ = {isa = PBXBuildFile; fileRef = 77371F5FF68EF2101F411997A7F2A3DA /* 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 = BBDDFD2576299ABD12AD8C07FD8CD6C5 /* REAEventNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 02A3BBD616C9D1C40690E52BD99F0CFA /* RCTComponentData.m in Sources */ = {isa = PBXBuildFile; fileRef = 03D0F30AE308D4259F67334FF1D3969B /* 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 = F9BA8C020E8A45274DCBB957FFA3E1BC /* ChecksumDetail.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 02D11B6A86E80E1F2914C8200AE733D3 /* RCTNullability.h in Headers */ = {isa = PBXBuildFile; fileRef = 9FDF17D3E268D3800790669D4706ECD0 /* RCTNullability.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 02D11B6A86E80E1F2914C8200AE733D3 /* RCTNullability.h in Headers */ = {isa = PBXBuildFile; fileRef = CD4A0028E5BBD4F2C7395135B4E845FE /* RCTNullability.h */; settings = {ATTRIBUTES = (Project, ); }; }; 032C7CDB032114BDCC7DC441021A7DA5 /* IOObjectCache.h in Headers */ = {isa = PBXBuildFile; fileRef = A732941A0590D1ACD917CC88996CD93E /* IOObjectCache.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0331A0AEE92CF1C7363B1D3D0E1A5214 /* Yoga-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 9A9969B4DCAEDA5FDE7CC095E40E1F88 /* Yoga-umbrella.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0331A0AEE92CF1C7363B1D3D0E1A5214 /* Yoga-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 52EC118013247B38026F6CDEFEE08F41 /* Yoga-umbrella.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 033521D8D361BD79929F1C97CF0F357F /* SDImageFrame.h in Headers */ = {isa = PBXBuildFile; fileRef = FE7DAAA929184EE2972600D683C3F606 /* SDImageFrame.h */; settings = {ATTRIBUTES = (Project, ); }; }; 0357B1DBA4393494C24B5458C5294109 /* UncaughtExceptions.h in Headers */ = {isa = PBXBuildFile; fileRef = EDF48209BEECDFA54A01C5955F0BFBB4 /* UncaughtExceptions.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 037A597C46854C7EAE1349B3B682C044 /* FFFastImageViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 6AB6F7A05712378F1F168AF79F14103E /* FFFastImageViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0388C19C118898765F8121AC641BA4B4 /* SDDiskCache.m in Sources */ = {isa = PBXBuildFile; fileRef = 104C42A61B3D6157224ED06DBE2DF1F4 /* SDDiskCache.m */; }; - 039F484EFA0AB598F0D9B9B68191B8FA /* RCTHTTPRequestHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 2D780F29E8B27EF815A15DF6A4D809F3 /* RCTHTTPRequestHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 03A091EF0A44A9313367BD851F9685DB /* RNFetchBlobConst.h in Headers */ = {isa = PBXBuildFile; fileRef = 46FC4C5A659A3EED85B9083A283C545B /* RNFetchBlobConst.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 037A597C46854C7EAE1349B3B682C044 /* FFFastImageViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 0F0A7636B11BE0C89E122CA2C9F175B5 /* FFFastImageViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0388C19C118898765F8121AC641BA4B4 /* SDDiskCache.m in Sources */ = {isa = PBXBuildFile; fileRef = 228982F3D54A22FFDF10D1183691C680 /* SDDiskCache.m */; }; + 039F484EFA0AB598F0D9B9B68191B8FA /* RCTHTTPRequestHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = B0381E5639F69FFE1EC07842147C0385 /* RCTHTTPRequestHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 03A091EF0A44A9313367BD851F9685DB /* RNFetchBlobConst.h in Headers */ = {isa = PBXBuildFile; fileRef = 072B9E791180B7D7FE19C97C893B6653 /* RNFetchBlobConst.h */; settings = {ATTRIBUTES = (Project, ); }; }; 03B0991E9C8213684BA88B4BB3746653 /* FlipperConnectionManagerImpl.h in Headers */ = {isa = PBXBuildFile; fileRef = 06FE4534A33746E9A14498E2181A341F /* FlipperConnectionManagerImpl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 03C2E903CC5B4C7A1E6F9080A24B4926 /* SDWebImageCacheSerializer.h in Headers */ = {isa = PBXBuildFile; fileRef = 1E4C989A33D90A61D1AFE1A7A4E7A113 /* SDWebImageCacheSerializer.h */; settings = {ATTRIBUTES = (Project, ); }; }; 03CE75A0F998C6AD1A8A56EC32048441 /* Indestructible.h in Headers */ = {isa = PBXBuildFile; fileRef = 2D2584473F8E196EEB11BE408FA7E274 /* Indestructible.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 03D5C4B4B20C0648BC0FF0DB5114D2CF /* YGValue.h in Headers */ = {isa = PBXBuildFile; fileRef = 4E8ED8A83DA5B53CBED456E31C005406 /* YGValue.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 03D5C4B4B20C0648BC0FF0DB5114D2CF /* YGValue.h in Headers */ = {isa = PBXBuildFile; fileRef = 49FF0EBB0C9CC5B18B7F87E719B84FCD /* YGValue.h */; settings = {ATTRIBUTES = (Project, ); }; }; 03DE9082132C5F30F717BA20344693C9 /* Hazptr.h in Headers */ = {isa = PBXBuildFile; fileRef = AA9187713B9511D1223F602D2181B213 /* Hazptr.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 04157DF7E2E7E61AEEC46431877630DE /* BSG_KSCrashSentry_Signal.h in Headers */ = {isa = PBXBuildFile; fileRef = 8054C319CDF752742F2FD0C739ED8E1E /* BSG_KSCrashSentry_Signal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 041DBA280D01DEFCA66268DC7D4DE683 /* REAAllTransitions.m in Sources */ = {isa = PBXBuildFile; fileRef = E4F0FF6714F5FE177E51FB3A81A96F1F /* REAAllTransitions.m */; }; - 0433575C08F601A7818CA6D84CC5ABA4 /* RCTBaseTextInputShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = CC268622DF95F0EB5FF95B5D1027B2AD /* RCTBaseTextInputShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 043A6BD1EF7D359B9344AC711C850A93 /* jsilib.h in Headers */ = {isa = PBXBuildFile; fileRef = 8FA90F039328C541D138AE86D8DC0093 /* jsilib.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 044EF246BAC4B410BBF6C73F743BDA29 /* RCTClipboard.mm in Sources */ = {isa = PBXBuildFile; fileRef = 47B935784748CD8C29C62EF1B15E2040 /* 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 = 985D6DB3D9A4AE44DF523A65D604550F /* RCTSurface.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 04157DF7E2E7E61AEEC46431877630DE /* BSG_KSCrashSentry_Signal.h in Headers */ = {isa = PBXBuildFile; fileRef = 06FF96511A3C3A8824ADBA61056687CA /* BSG_KSCrashSentry_Signal.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 041DBA280D01DEFCA66268DC7D4DE683 /* REAAllTransitions.m in Sources */ = {isa = PBXBuildFile; fileRef = 89494BCB117F7BC9030F763513F1BAE0 /* REAAllTransitions.m */; }; + 0433575C08F601A7818CA6D84CC5ABA4 /* RCTBaseTextInputShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = 2C6F3978CA685DFEFB1773CCB1B9CE28 /* RCTBaseTextInputShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 043A6BD1EF7D359B9344AC711C850A93 /* jsilib.h in Headers */ = {isa = PBXBuildFile; fileRef = 41041D74CF1A153B6221896510014D66 /* jsilib.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 044EF246BAC4B410BBF6C73F743BDA29 /* RCTClipboard.mm in Sources */ = {isa = PBXBuildFile; fileRef = C3B7ED5A7F18975F0BDD30F4FDEE4BF5 /* 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 = DF8FE8637B96B3C9A8B0EC48EEDB3651 /* RCTSurface.h */; settings = {ATTRIBUTES = (Project, ); }; }; 0496E1728E220AEBEDAD5CBF91E7B74C /* FlipperState.h in Headers */ = {isa = PBXBuildFile; fileRef = B7D9BBA475ECEB5469F8DB398EA2EBE2 /* FlipperState.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 04B300C1D37AF477D6E979A0585D6437 /* RCTRefreshControl.m in Sources */ = {isa = PBXBuildFile; fileRef = 6258E6EF9E8CD1193204427CC6AFFC6E /* 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 = 8ABCD543DFDA4EF993833E21A010BD22 /* 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 = C5363E2E18C3E2582BC14D74EF29FEAD /* BSG_KSDynamicLinker.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 04B300C1D37AF477D6E979A0585D6437 /* RCTRefreshControl.m in Sources */ = {isa = PBXBuildFile; fileRef = 7B7D4D659420B9891D3A0EC8BAB650C4 /* 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 = 62B3DC410786505577F4FF8CBE63EF60 /* 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 = D9572DF8232D8A2EAC02EC1EF655A843 /* BSG_KSDynamicLinker.h */; settings = {ATTRIBUTES = (Project, ); }; }; 04DEBAD199A26C30F3E532330C05B716 /* GULSwizzler.h in Headers */ = {isa = PBXBuildFile; fileRef = 62DEF63856225090BFBE8B15840B9FAF /* GULSwizzler.h */; settings = {ATTRIBUTES = (Project, ); }; }; 050764AE053E95388DBBFB293FDBF2BC /* PicoSpinLock.h in Headers */ = {isa = PBXBuildFile; fileRef = 8F4DA0875D68CB8A50573C368E61F8BC /* PicoSpinLock.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 05215D88A01F62B525ABC81F59880DEB /* RCTUtils.m in Sources */ = {isa = PBXBuildFile; fileRef = 389456A7DF76B1A6643347A601988A77 /* 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 = 0F10B8B6674550EA000A3ABB3BCA9273 /* UMModuleRegistryProvider.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 05215D88A01F62B525ABC81F59880DEB /* RCTUtils.m in Sources */ = {isa = PBXBuildFile; fileRef = B546FB1416D2A98D9823F6DE5E687639 /* 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 = 6593EFE3ED56BECBC63BBC8141AEC958 /* UMModuleRegistryProvider.h */; settings = {ATTRIBUTES = (Project, ); }; }; 052C6452C9F9919E496F077C5D882140 /* GDTCORAssert.m in Sources */ = {isa = PBXBuildFile; fileRef = E3B06AFF3EC775A827456A27ED736220 /* GDTCORAssert.m */; }; 053BA4F3C75D35BCBAA8F8891D611B84 /* animi.h in Headers */ = {isa = PBXBuildFile; fileRef = 9EC254473080E0BC5D720E02694BCD9B /* animi.h */; settings = {ATTRIBUTES = (Project, ); }; }; 055E3CCCC565B32662B62AEB2687DFD6 /* dec_clip_tables.c in Sources */ = {isa = PBXBuildFile; fileRef = D3C9CA86A9E13737F97618EBACC89C2E /* dec_clip_tables.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 056F951F776235258C63B1F4A087C3FB /* RCTSafeAreaView.m in Sources */ = {isa = PBXBuildFile; fileRef = FDC5BC8B851B9E5FF7B416AB1BDD8C10 /* 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 = C05399A912AE7E3A02AEA641DBCCCB65 /* 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 = BBF677FBDA8C4140131823DF762F3B63 /* ThreadWheelTimekeeper.h */; settings = {ATTRIBUTES = (Project, ); }; }; 058A0E6FB778E47AC2ACEED1729900C5 /* enc_mips_dsp_r2.c in Sources */ = {isa = PBXBuildFile; fileRef = 22FFDAA8BCFC22C1488A725107778ACF /* enc_mips_dsp_r2.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 05A2C829317533C074C228C63D55CDC0 /* ARTRadialGradient.m in Sources */ = {isa = PBXBuildFile; fileRef = 40DA589797B65249F51467C00467339A /* ARTRadialGradient.m */; }; + 05A2C829317533C074C228C63D55CDC0 /* ARTRadialGradient.m in Sources */ = {isa = PBXBuildFile; fileRef = E877A2558FF6A9C6AC1FDFB384220918 /* ARTRadialGradient.m */; }; 05A88A58C1245A9C537494AB00CBD729 /* Expected.h in Headers */ = {isa = PBXBuildFile; fileRef = 4905746AA215AA4A3BA3F59A0905C6B2 /* Expected.h */; settings = {ATTRIBUTES = (Project, ); }; }; 05B0D839ADEDCA18BCB0342D8850023C /* decode.h in Headers */ = {isa = PBXBuildFile; fileRef = C0665594DBA861A8A5EA0DC000489878 /* decode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 05B58BF8BBB6FD9B0446C34C9FA2A10F /* BSG_KSString.c in Sources */ = {isa = PBXBuildFile; fileRef = 465454A21A09429BC53A1110206D6B71 /* BSG_KSString.c */; }; + 05B58BF8BBB6FD9B0446C34C9FA2A10F /* BSG_KSString.c in Sources */ = {isa = PBXBuildFile; fileRef = E25C0B6FEA3B8807E9F7FB31203D1737 /* BSG_KSString.c */; }; 05C1FD03B0C4673F79EC7E77569B14EC /* nanopb-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = E4F5BAF1BDD07BC9213845EA158ED176 /* nanopb-dummy.m */; }; 05D0FAA0AE5364F5271A2ED3B96DAABA /* GULNetworkLoggerProtocol.h in Headers */ = {isa = PBXBuildFile; fileRef = 375C415B4E60AB8C88FDA699432DE2AA /* GULNetworkLoggerProtocol.h */; settings = {ATTRIBUTES = (Project, ); }; }; 05D67239AA89DCABE66BC206A4A20DDA /* HazptrUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = 18C2278F9B58199F6BD826C6265E25FE /* HazptrUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; 05E51EA514016A3A30F517E11AFB5DE0 /* AsyncTrace.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9A39F9E5B195BC622F6CDFA3E9B5E15E /* 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 = 199009BB4DC631CE1BED656007525A3B /* 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 = F6FFE52AE1CBC0B042DF4B3C520778F3 /* 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 = C5E2630D0D65D057206B8901A4535D5C /* FBLPromise+Reduce.h */; settings = {ATTRIBUTES = (Project, ); }; }; 05EEE113DA8195D1A8446E6E0223F87B /* quant.h in Headers */ = {isa = PBXBuildFile; fileRef = F6F359208C18FDEF52F528F96F110D6F /* quant.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 06290A0DBEBB396363D9CB31FC2FFA27 /* RNFetchBlobReqBuilder.m in Sources */ = {isa = PBXBuildFile; fileRef = 8972D5894EA23710DC85AAD79723BCC6 /* RNFetchBlobReqBuilder.m */; }; - 062F8BE5952FAF7F5CF3E6966A337F28 /* RNBootSplash.h in Headers */ = {isa = PBXBuildFile; fileRef = 9BBA45778A6D490CC1EDD321DF57F656 /* RNBootSplash.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 06401683509D686A0B42E14FBDA9520E /* BSG_KSCrashReportVersion.h in Headers */ = {isa = PBXBuildFile; fileRef = E59AAFF2863D30569902D759C7E4886B /* BSG_KSCrashReportVersion.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 06290A0DBEBB396363D9CB31FC2FFA27 /* RNFetchBlobReqBuilder.m in Sources */ = {isa = PBXBuildFile; fileRef = 1CF7CEE1C42E8D00C7C092FD3DC9283E /* RNFetchBlobReqBuilder.m */; }; + 062F8BE5952FAF7F5CF3E6966A337F28 /* RNBootSplash.h in Headers */ = {isa = PBXBuildFile; fileRef = BA96749385CBDE0CCB010AB3A0192BD3 /* RNBootSplash.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 06401683509D686A0B42E14FBDA9520E /* BSG_KSCrashReportVersion.h in Headers */ = {isa = PBXBuildFile; fileRef = 7F9F9B95B3D7132BDF6AE5E4920A97EC /* BSG_KSCrashReportVersion.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0647B334661340B8A9F52EABF062C3EB /* SDWebImageTransition.h in Headers */ = {isa = PBXBuildFile; fileRef = 187C95183B76EDED4819676F4FCAA8B7 /* SDWebImageTransition.h */; settings = {ATTRIBUTES = (Project, ); }; }; 06514FD84CC576BCCE44F89EE61A7F68 /* GCDAsyncSocket.h in Headers */ = {isa = PBXBuildFile; fileRef = 5F0417945AB952A0C44A19AF56A8BCE9 /* GCDAsyncSocket.h */; settings = {ATTRIBUTES = (Project, ); }; }; 068627D6351492A400D81DA04B4AAEE1 /* histogram_enc.h in Headers */ = {isa = PBXBuildFile; fileRef = 19FE8475B1C7C573050BCE46DB1A637C /* histogram_enc.h */; settings = {ATTRIBUTES = (Project, ); }; }; 06965620DA927215DD8A8F4C9F95EA1F /* Sched.h in Headers */ = {isa = PBXBuildFile; fileRef = 969F431AB9363BAE3B22BAD82DB788BF /* Sched.h */; settings = {ATTRIBUTES = (Project, ); }; }; 06C78FC8169996E806BE536269C185CD /* yuv_sse41.c in Sources */ = {isa = PBXBuildFile; fileRef = 3613A31266D2AD06647090A378878079 /* yuv_sse41.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 06DF5876917022BB1943DA78C98F5C18 /* ARTTextFrame.h in Headers */ = {isa = PBXBuildFile; fileRef = 02BC12FC7B6F443A4F115B707678242C /* ARTTextFrame.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 06E27BA59BD0058F5FF158F405A1ACCE /* de.lproj in Resources */ = {isa = PBXBuildFile; fileRef = AF46CB11B96AE2F376EA3DBCCE72CE3A /* de.lproj */; }; - 06F350D91CA33913420F7CD0EB2011A2 /* RCTDecayAnimation.m in Sources */ = {isa = PBXBuildFile; fileRef = 0BA71B3682336787CBEDC68D8B7DEFCD /* 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 = 3216D6E46C1C5A0CD982628FC88EC10E /* ARTTextFrame.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 06E27BA59BD0058F5FF158F405A1ACCE /* de.lproj in Resources */ = {isa = PBXBuildFile; fileRef = 5E06CE2ACD9844827B676BB53E645921 /* de.lproj */; }; + 06F350D91CA33913420F7CD0EB2011A2 /* RCTDecayAnimation.m in Sources */ = {isa = PBXBuildFile; fileRef = C8396231DC1ED4DBE06F3BEE7B308131 /* 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 = BEEB210428EF1A8A83AEEDCA25D4C1D1 /* FIRInstallationsVersion.h */; settings = {ATTRIBUTES = (Project, ); }; }; 07141BDF264104502C0D2041648F7880 /* FIRComponentType.m in Sources */ = {isa = PBXBuildFile; fileRef = 0B31005ABA816DF2BAF8B73B5030CBC2 /* FIRComponentType.m */; }; 074CC255A80214F8215DBF480553FE83 /* RSocketParameters.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 929F7FD86388B379182BAB11CDF3D7E7 /* 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 = CC1E481741951845683239C4A7DA9CE3 /* FileUtil.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 075F9805B68154AF1104DF613BE6F9D9 /* SDImageCachesManagerOperation.h in Headers */ = {isa = PBXBuildFile; fileRef = 29DBCFDBAB5E42ECA99B47E3A80A0D86 /* SDImageCachesManagerOperation.h */; settings = {ATTRIBUTES = (Project, ); }; }; 07912AE1EFEFB82A90F50403C9214FD5 /* Unit.h in Headers */ = {isa = PBXBuildFile; fileRef = 9BD2EBF29EBE11649609A1D87D670C80 /* Unit.h */; settings = {ATTRIBUTES = (Project, ); }; }; 07982ED2F3B097036FF5459A678C428E /* FormatArg.h in Headers */ = {isa = PBXBuildFile; fileRef = D90AB6AB994606159C7BA599E9488FFD /* FormatArg.h */; settings = {ATTRIBUTES = (Project, ); }; }; 07B051735A7659BBD10772A28B34D65D /* bignum-dtoa.cc in Sources */ = {isa = PBXBuildFile; fileRef = 9530D384A7DC23895A1EDC9FCE7D0EEF /* bignum-dtoa.cc */; settings = {COMPILER_FLAGS = "-Wno-unreachable-code"; }; }; - 07B8DB35D480E7DBCF68D24F58752B9D /* BugsnagCrashReport.h in Headers */ = {isa = PBXBuildFile; fileRef = 7FDA191D4CCF1F4510BEEA4F4E9F2B67 /* BugsnagCrashReport.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0808979C0DB73FB73B17A106FAC5F615 /* BugsnagSessionTracker.m in Sources */ = {isa = PBXBuildFile; fileRef = 7D0B357A176559069BF4F07A11BD76F2 /* BugsnagSessionTracker.m */; }; - 0808D3750325945F112AFB99ACC0C87E /* YGLayout.h in Headers */ = {isa = PBXBuildFile; fileRef = 251536CB04DA819939DE200CBD5BA105 /* YGLayout.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 07B8DB35D480E7DBCF68D24F58752B9D /* BugsnagCrashReport.h in Headers */ = {isa = PBXBuildFile; fileRef = 6D595FF639EDE09CA0B9D1E01B2695EC /* BugsnagCrashReport.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0808979C0DB73FB73B17A106FAC5F615 /* BugsnagSessionTracker.m in Sources */ = {isa = PBXBuildFile; fileRef = 09DD8BB15FFE71AEB378FE3CFC19A219 /* BugsnagSessionTracker.m */; }; + 0808D3750325945F112AFB99ACC0C87E /* YGLayout.h in Headers */ = {isa = PBXBuildFile; fileRef = B7DFC6136FDF82940F2E14358896A30C /* YGLayout.h */; settings = {ATTRIBUTES = (Project, ); }; }; 080D996C588B3246A97741FDB942CC79 /* GULNSData+zlib.m in Sources */ = {isa = PBXBuildFile; fileRef = 0FD3E4CFE5DBDA98213FB9D73FDC4C26 /* GULNSData+zlib.m */; }; 08140CF5CCD3BFD03E8A3EB7AF95ED56 /* FlipperCppBridgingResponder.mm in Sources */ = {isa = PBXBuildFile; fileRef = 0AE7D0770D2BE30C5BDABB080AA8E015 /* 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 = 52C61D7A22F52E9650234D81BBB72159 /* ARTGroup.m */; }; + 081560A0159D441DC9C8AF7CAA6B970E /* ARTGroup.m in Sources */ = {isa = PBXBuildFile; fileRef = F5E574017DE188FB157E9C148E67D9A4 /* ARTGroup.m */; }; 081E6B601B49FE4F98631AE9F6594C9F /* dec_mips32.c in Sources */ = {isa = PBXBuildFile; fileRef = 4ADC6A713311A1017493308DF7F5603F /* dec_mips32.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 08219D32E74C8630B7462E545B5023E9 /* RNPushKitEventListener.h in Headers */ = {isa = PBXBuildFile; fileRef = 2C0DFEE7AB0E2E06D08C7A0E58297A01 /* RNPushKitEventListener.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 08219D32E74C8630B7462E545B5023E9 /* RNPushKitEventListener.h in Headers */ = {isa = PBXBuildFile; fileRef = 90FD86B01596B0B8A1B81C346B478834 /* RNPushKitEventListener.h */; settings = {ATTRIBUTES = (Project, ); }; }; 082EEA3652F0C7F65F3D9ADC676C1853 /* AtomicIntrusiveLinkedList.h in Headers */ = {isa = PBXBuildFile; fileRef = F7336868B351AF1E8FF5EE75A11694A0 /* AtomicIntrusiveLinkedList.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 083CA8F0059844F316B348C516DC0312 /* SDWebImageCacheSerializer.m in Sources */ = {isa = PBXBuildFile; fileRef = 335BEEEE056B1F03F417E347AC410F26 /* SDWebImageCacheSerializer.m */; }; + 083CA8F0059844F316B348C516DC0312 /* SDWebImageCacheSerializer.m in Sources */ = {isa = PBXBuildFile; fileRef = 2E87E59039E4BB326DC1CB1885E97319 /* SDWebImageCacheSerializer.m */; }; 086AF342FFBEEBA94A504AA18CF754E7 /* Demangle.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3DF954218538FB691AFFF406E45034EA /* 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 = 7CD3DAF8C6706B52472DB896820BA9F4 /* 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"; }; }; 088071E10BC7E0F7D2AEC4C95E916D41 /* CoreCachedSharedPtr.h in Headers */ = {isa = PBXBuildFile; fileRef = 1A581425163E8074315E70D041B14F97 /* CoreCachedSharedPtr.h */; settings = {ATTRIBUTES = (Project, ); }; }; 08910E25B56F73BA1E7C9B35051828EF /* F14Table.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9657C6D381F17DE4F5A6F3996C8AFBEF /* 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 = 30E068B0B144FCD0EAD039ECE9DB57A8 /* RCTTypeSafety-dummy.m */; }; + 08C3C9AE073CF278A1B7D04DD0F7EE2F /* RCTTypeSafety-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 19D04EC0207EFCCC2041840F5352AD2A /* RCTTypeSafety-dummy.m */; }; 0926794C451A43301E518150BBCFF89C /* MPMCPipeline.h in Headers */ = {isa = PBXBuildFile; fileRef = 2338BCF400AD9C25F4563792E4535745 /* MPMCPipeline.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 09393C7EFB15B6830B1E24008140B06E /* es.lproj in Resources */ = {isa = PBXBuildFile; fileRef = D5A70010BFF9BA939B57367CD2398C01 /* es.lproj */; }; - 093CC255BF095A923BF1E04C3B01D945 /* RCTTextSelection.h in Headers */ = {isa = PBXBuildFile; fileRef = C64946AD6C95C8CC4F360037CB623723 /* RCTTextSelection.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 09A61C039CE763C49141845FD89EDF19 /* RCTClipboard.h in Headers */ = {isa = PBXBuildFile; fileRef = DDBB08E3D181710D8A5354CE16AA64E3 /* RCTClipboard.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 09393C7EFB15B6830B1E24008140B06E /* es.lproj in Resources */ = {isa = PBXBuildFile; fileRef = 6166E13FD35F32C6E8BD2FA170A2C4AF /* es.lproj */; }; + 093CC255BF095A923BF1E04C3B01D945 /* RCTTextSelection.h in Headers */ = {isa = PBXBuildFile; fileRef = 892AFB3B042F739654D6A76821FA453C /* RCTTextSelection.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 09A61C039CE763C49141845FD89EDF19 /* RCTClipboard.h in Headers */ = {isa = PBXBuildFile; fileRef = 17702DBAFDF2C4C69C7D85A543D652CC /* RCTClipboard.h */; settings = {ATTRIBUTES = (Project, ); }; }; 09BC7875E6D801E8C3A5D78A944B7127 /* neon.h in Headers */ = {isa = PBXBuildFile; fileRef = 99FA4E2FD25FDCD45F05F85489366E7E /* neon.h */; settings = {ATTRIBUTES = (Project, ); }; }; 09BE233E2230EC56C6EA5ECA34C40DC2 /* GULLogger.m in Sources */ = {isa = PBXBuildFile; fileRef = 742D61A515E6226E5978F5D3AAFAFE59 /* GULLogger.m */; }; 09D23E33AA77BDB3310ED71C6842CE9D /* InlineFunctionRef.h in Headers */ = {isa = PBXBuildFile; fileRef = 63F076E7C50525BFB4FB6EEF79614807 /* InlineFunctionRef.h */; settings = {ATTRIBUTES = (Project, ); }; }; 09EE5698E226034FE9300AE9751FB97B /* MallctlHelper.h in Headers */ = {isa = PBXBuildFile; fileRef = FBD14A3280D3F0EAC56BEE624043B955 /* MallctlHelper.h */; settings = {ATTRIBUTES = (Project, ); }; }; 09F2344CDF2289F7B806ED72CB1E16C9 /* FIRAppAssociationRegistration.m in Sources */ = {isa = PBXBuildFile; fileRef = BD6F1B58837C3E18538051C80DBA60F1 /* FIRAppAssociationRegistration.m */; }; - 09F8EE9A887212FC0B2154E979B8E097 /* UMAppDelegateWrapper.m in Sources */ = {isa = PBXBuildFile; fileRef = 55E8A6E0210B59074AACE28BDB6B9E52 /* UMAppDelegateWrapper.m */; }; + 09F8EE9A887212FC0B2154E979B8E097 /* UMAppDelegateWrapper.m in Sources */ = {isa = PBXBuildFile; fileRef = 0F96951AC94234573E82080F6A13DEE2 /* UMAppDelegateWrapper.m */; }; 0A1085D42174CDFD3E5A123DA9241DF7 /* Barrier.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 269495D53DEF8D3D3EA734E80CEE3BCA /* 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 = 0B54E1D7B3FDC8FE90C21E035DC2B477 /* ARTTextManager.m */; }; - 0A11B03A3AA448536D107B49841C9294 /* Utils.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2F4B4CF25B4C47002CC185DC4D991BFD /* 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 = 13CFFC02BC55E77948F98BD3E18ADF15 /* ARTTextManager.m */; }; + 0A11B03A3AA448536D107B49841C9294 /* Utils.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 489F0F3B465EAA66CBF8E2FF8BC18A4F /* 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 = DDA545E47C3E2E70652EB209994B7618 /* FBLPromise+Validate.m */; }; - 0A19BC8153C05DAE2E6905B4DFE5C09D /* RCTPerformanceLogger.m in Sources */ = {isa = PBXBuildFile; fileRef = 7EEF847DAF7DFCB10B8D9F2F6AD2C9AB /* 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 = E5894364459636BB0BB2A1C4817C7901 /* 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 = 4B0C45BCE792F8E95FD9ABE893893BC9 /* FramedDuplexConnection.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0A3C2EAD6FC5025E0BFC557A721CA0DB /* RCTI18nManager.h in Headers */ = {isa = PBXBuildFile; fileRef = E3289749F213D3A834E919489BE3C09C /* RCTI18nManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0A57CF4AAC8B981863DD82B40CFAFDD5 /* RCTLocalAssetImageLoader.h in Headers */ = {isa = PBXBuildFile; fileRef = 131CD649B2B7FE421F563A3FE5F15B97 /* RCTLocalAssetImageLoader.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0A6AB2FC349B9616B23309C9BE9FAC2A /* RCTRootShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = 7E4E7A3A90D98C8D9583F48BA556A809 /* RCTRootShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0A7FF47E30F61AFB6AD9CA895EE1A4F9 /* RNDateTimePickerManager.h in Headers */ = {isa = PBXBuildFile; fileRef = A94BEBCFD78E12A3722A2AA65B282DA0 /* RNDateTimePickerManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0A3C2EAD6FC5025E0BFC557A721CA0DB /* RCTI18nManager.h in Headers */ = {isa = PBXBuildFile; fileRef = A57E6CA3367F3AEA100FF515D402297D /* RCTI18nManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0A57CF4AAC8B981863DD82B40CFAFDD5 /* RCTLocalAssetImageLoader.h in Headers */ = {isa = PBXBuildFile; fileRef = 758C1AFE17A1B19EFCEC94C65C27A9F7 /* RCTLocalAssetImageLoader.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0A6AB2FC349B9616B23309C9BE9FAC2A /* RCTRootShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = 33F2996066106B24E60929081ED488EA /* RCTRootShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0A7FF47E30F61AFB6AD9CA895EE1A4F9 /* RNDateTimePickerManager.h in Headers */ = {isa = PBXBuildFile; fileRef = BEDA74E4AE6E9223E6529946F29BB572 /* RNDateTimePickerManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; 0A92A4EB11AC3149D6C51E87E22A1A5B /* cost_mips_dsp_r2.c in Sources */ = {isa = PBXBuildFile; fileRef = CC6FEE0F9ACB98303C87C35D1F1395CA /* cost_mips_dsp_r2.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 0A9A31AAC37516790E0B4F66099E695E /* RCTUIUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = 643C99E95EE10C5CE0A53CA23B7D7076 /* RCTUIUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0A9A31AAC37516790E0B4F66099E695E /* RCTUIUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = 2C84EC5317FE953C40888C2DFEECF5CB /* RCTUIUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; 0AAB1B87F449356F2FFC7DA7EE5D381F /* da-DK.lproj in Resources */ = {isa = PBXBuildFile; fileRef = FC29260E3B6C1C5EBC8743347383E8F6 /* da-DK.lproj */; }; - 0ACF9654E330F3E4FF25D38913B61A9F /* ARTPattern.h in Headers */ = {isa = PBXBuildFile; fileRef = CC9296090CAECF07215252DE287A9C3A /* ARTPattern.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0ACF9654E330F3E4FF25D38913B61A9F /* ARTPattern.h in Headers */ = {isa = PBXBuildFile; fileRef = 9B892B57F11497C792BA221D59BCEACE /* ARTPattern.h */; settings = {ATTRIBUTES = (Project, ); }; }; 0AE130EB96D4454903ADE0BA1969A6CF /* signalhandler.cc in Sources */ = {isa = PBXBuildFile; fileRef = C921A77EEC440C08EE0B98D5D8EC1CFF /* signalhandler.cc */; settings = {COMPILER_FLAGS = "-Wno-shorten-64-to-32"; }; }; 0B2CFC4DD49E848F4351E1AD5EFAFABB /* DynamicParser.h in Headers */ = {isa = PBXBuildFile; fileRef = FB2595A08EDC1CF5D9498A7D0C39F163 /* DynamicParser.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0B36C6434B1EBB8AC0D9F69FE4E57190 /* RCTTurboModule.mm in Sources */ = {isa = PBXBuildFile; fileRef = 5C756581AB88D6880122C38CC658BCB0 /* RCTTurboModule.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 0B36C6434B1EBB8AC0D9F69FE4E57190 /* RCTTurboModule.mm in Sources */ = {isa = PBXBuildFile; fileRef = F94B0D2B3AB5111162D15B4C67DA5D69 /* RCTTurboModule.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; 0B3B883A30022727522781E6FFE17758 /* fi.lproj in Resources */ = {isa = PBXBuildFile; fileRef = 561942E67089539146C0C4ACD62F6AE7 /* fi.lproj */; }; - 0B3BEBF1C0EB87ACD74E56CC3FD53110 /* RCTImageView.h in Headers */ = {isa = PBXBuildFile; fileRef = A090CF9C0A7BD1841F9ABBB8AEBDA75F /* RCTImageView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0B3BEBF1C0EB87ACD74E56CC3FD53110 /* RCTImageView.h in Headers */ = {isa = PBXBuildFile; fileRef = 66E8ACA3FF16AACDD5AF0FC3E90339F8 /* RCTImageView.h */; settings = {ATTRIBUTES = (Project, ); }; }; 0B761B070D881FC68C5737332C9D8036 /* HazptrHolder.h in Headers */ = {isa = PBXBuildFile; fileRef = 1571EDF5F318A19407F937B26350F11C /* HazptrHolder.h */; settings = {ATTRIBUTES = (Project, ); }; }; 0B7C39C00D2B040C27544584D750D5AD /* FLEXNetworkTransaction.m in Sources */ = {isa = PBXBuildFile; fileRef = 7C6B620F69BC5A02DD5A704A86A2A9DB /* 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 = C05BD4154F1F65CD1FF9EF9570D1C3FA /* 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 = FAFD364A32A0320AB9E8550CAC48CB22 /* BSG_RFC3339DateTool.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0C0611B9E87AFA81DF543508CE12B5FD /* RCTTextTransform.h in Headers */ = {isa = PBXBuildFile; fileRef = 4AA5953CEC6B4F9133E614A9B1EDAF92 /* RCTTextTransform.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0C1E401FFDCA511E1D3524CC7B71C1A5 /* RNFirebase.h in Headers */ = {isa = PBXBuildFile; fileRef = 3FE10C005ADB64B0306F9E69FE080DBB /* RNFirebase.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0C2A5DC47FE2D6837EA44C99ABFD5834 /* EXFileSystem.h in Headers */ = {isa = PBXBuildFile; fileRef = 198A5250D407D50D33F2AAC0B8048876 /* EXFileSystem.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0C2C18E15224239E99EFA26C3E1489F5 /* EXAppleAuthentication.m in Sources */ = {isa = PBXBuildFile; fileRef = 40DD3FADDC87FB94BC8C59709E9960A3 /* EXAppleAuthentication.m */; }; - 0C551985E8686CC886A539921C3EE668 /* RootView.h in Headers */ = {isa = PBXBuildFile; fileRef = AF1F6FD35CBC3BA539E068BB68FA6300 /* RootView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0C6E7E44FBB6DEF6DF89EFD85C87ACF1 /* UIView+React.m in Sources */ = {isa = PBXBuildFile; fileRef = 4A1C7E7294D784E84D6A63A4ADF99834 /* 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 = BEDD8EF93D0127ED2A373DF630F9E051 /* BugsnagBreadcrumb.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0BE19A72D028BD88F755C3B801BC567E /* BSG_RFC3339DateTool.h in Headers */ = {isa = PBXBuildFile; fileRef = A377BD2FEC39CD97268F5497BF735EF3 /* BSG_RFC3339DateTool.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0C0611B9E87AFA81DF543508CE12B5FD /* RCTTextTransform.h in Headers */ = {isa = PBXBuildFile; fileRef = CC987FD1C9D20A946E34C5BFE332EE1A /* RCTTextTransform.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0C1E401FFDCA511E1D3524CC7B71C1A5 /* RNFirebase.h in Headers */ = {isa = PBXBuildFile; fileRef = 308610A6762D5A0F7D9B48416021E79B /* RNFirebase.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0C2A5DC47FE2D6837EA44C99ABFD5834 /* EXFileSystem.h in Headers */ = {isa = PBXBuildFile; fileRef = CDB0674E4606FBF4E6A0A200A6374982 /* EXFileSystem.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0C2C18E15224239E99EFA26C3E1489F5 /* EXAppleAuthentication.m in Sources */ = {isa = PBXBuildFile; fileRef = 2542B527E964202FDCCF8B947C336232 /* EXAppleAuthentication.m */; }; + 0C551985E8686CC886A539921C3EE668 /* RootView.h in Headers */ = {isa = PBXBuildFile; fileRef = CB3B7AFBD07CC17642512E01958C226F /* RootView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0C6E7E44FBB6DEF6DF89EFD85C87ACF1 /* UIView+React.m in Sources */ = {isa = PBXBuildFile; fileRef = EFB850B31F34F7E04F799DFC69C4612E /* 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 = 562254EECFA240A680811AEA44C71397 /* BugsnagBreadcrumb.h */; settings = {ATTRIBUTES = (Project, ); }; }; 0CA7C850CA1800B14065B9E58A5ACC80 /* String.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8543FE630989B4DB0AFAF777BE0ABA77 /* 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 = 0C89CA7C949CC2297DDA1B574D639836 /* FBLPromise+Async.m */; }; 0CF17F9266055A1FD1CFF6F2C328C2AE /* Uri-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = D03B39B6700DD31B3083BB12D6064E63 /* Uri-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0CF24CC6BEAF9BD3438449F7DA23FD52 /* RCTCxxUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = 4A400B04CC4314064FFD73A023EE9C4D /* RCTCxxUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0D3C93CF0F9F2583678EB02BE49EB077 /* SDImageCoderHelper.m in Sources */ = {isa = PBXBuildFile; fileRef = D20E73799E6FA24169DD964E9C5688F4 /* SDImageCoderHelper.m */; }; + 0CF24CC6BEAF9BD3438449F7DA23FD52 /* RCTCxxUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = DEB7A7FB5005C873436DB2B27F174EB1 /* RCTCxxUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0D3C93CF0F9F2583678EB02BE49EB077 /* SDImageCoderHelper.m in Sources */ = {isa = PBXBuildFile; fileRef = 215427389590D7CA8681B2760C5628F8 /* SDImageCoderHelper.m */; }; 0D4C1FE8B07E8FBD0752A7EED502914E /* FBLPromise+Recover.m in Sources */ = {isa = PBXBuildFile; fileRef = 751628458EF5455CEE796DAA2D6CA590 /* FBLPromise+Recover.m */; }; - 0D58E16C6814991908886D21A86477D3 /* READebugNode.h in Headers */ = {isa = PBXBuildFile; fileRef = DF7167F2BF896C12BBCF5BD8C375A50C /* READebugNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0D58E16C6814991908886D21A86477D3 /* READebugNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 31F00CD9709CD358D4803D259F185D52 /* READebugNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; 0D73DDAB5065DADE674ED5E85CC65AC1 /* GroupVarint.h in Headers */ = {isa = PBXBuildFile; fileRef = 126CB7FE81224259DFF1F3CE6B1112D3 /* GroupVarint.h */; settings = {ATTRIBUTES = (Project, ); }; }; 0D7E2BB25F84CFE2561BE6FCCF597EF7 /* FIRBundleUtil.h in Headers */ = {isa = PBXBuildFile; fileRef = 845E6849A4D3BBECFCA6E87156A91290 /* FIRBundleUtil.h */; settings = {ATTRIBUTES = (Project, ); }; }; 0DC96FDEBC06F1C8DCE2EC4A1B158A2D /* Arena.h in Headers */ = {isa = PBXBuildFile; fileRef = 0B38F44E67E4A3E8B7610532B8694EC3 /* Arena.h */; settings = {ATTRIBUTES = (Project, ); }; }; 0DDEA131FBC532835F8E259FD7654AD2 /* en.lproj in Resources */ = {isa = PBXBuildFile; fileRef = 09DED66FCFC8C3AAC38BEDE2A70464FD /* en.lproj */; }; 0DE3744A7455AAFA32B39C9ADDAD79D7 /* FIRInstallationsStoredItem.h in Headers */ = {isa = PBXBuildFile; fileRef = 75D8EC75098C775B0B1ED266E0A8BD12 /* FIRInstallationsStoredItem.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0DFDE05F3E991B70E27D2F6A9C2D5017 /* SDWebImageIndicator.h in Headers */ = {isa = PBXBuildFile; fileRef = 01AF6B3F7CCE670710F45E8B5157C55F /* SDWebImageIndicator.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0DFE7F3D28E42E2B88EDB705DC378B48 /* RCTModalManager.h in Headers */ = {isa = PBXBuildFile; fileRef = D83CB939607381669FBAA5BC805FFD91 /* RCTModalManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0DFE7F3D28E42E2B88EDB705DC378B48 /* RCTModalManager.h in Headers */ = {isa = PBXBuildFile; fileRef = F2F096D7B3C560D1DE69671848D9ADA3 /* RCTModalManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; 0E0611504CD5D881E5FCB9B5E278D6E7 /* MicroLock.cpp in Sources */ = {isa = PBXBuildFile; fileRef = DF88A96F763DC2A25912748ED11D25A2 /* 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 = 260248C5F1AF9B9BD1145497E4B7F701 /* Preprocessor.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0E1047E03A54517A95C80F04356C0BAC /* SDWebImageDownloaderResponseModifier.h in Headers */ = {isa = PBXBuildFile; fileRef = FC9BCDA28BEB23EC13E2DC0BD9A1CD6E /* SDWebImageDownloaderResponseModifier.h */; settings = {ATTRIBUTES = (Project, ); }; }; 0E1B3276561F7EB341FA907EB1A86F04 /* upsampling.c in Sources */ = {isa = PBXBuildFile; fileRef = 61D5E721D9C1729F310815E536BD7612 /* upsampling.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 0E1E58EAA62AD31323C41A2EE1F285A6 /* RNNotificationUtils.m in Sources */ = {isa = PBXBuildFile; fileRef = 069507335A033B9D3A7F90B470BDB266 /* RNNotificationUtils.m */; }; + 0E1E58EAA62AD31323C41A2EE1F285A6 /* RNNotificationUtils.m in Sources */ = {isa = PBXBuildFile; fileRef = CD37982FBCA468722CE773FF5F5A4F79 /* RNNotificationUtils.m */; }; 0E2055CD03A9F6FE1EF61816FD390A1B /* AsyncUDPSocket.h in Headers */ = {isa = PBXBuildFile; fileRef = 2AC61BE0BDDF573058CD9FE666F12A72 /* AsyncUDPSocket.h */; settings = {ATTRIBUTES = (Project, ); }; }; 0E218A685D54E67E63B15EE57AF9B96C /* TOCropViewControllerTransitioning.h in Headers */ = {isa = PBXBuildFile; fileRef = E6746AFA25280F0F2986D8BF94897CF5 /* TOCropViewControllerTransitioning.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0E33C0EF981DEF5586AD04AD1C10697A /* RCTTextViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 795879AD145A8FC49CE63D2F23335CD9 /* RCTTextViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0E33C0EF981DEF5586AD04AD1C10697A /* RCTTextViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = FF69B0975F1DCD7AEFAD2F90486ED57D /* RCTTextViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; 0E490E89EDF3A16691A550F3B3D8577C /* RSocketParameters.h in Headers */ = {isa = PBXBuildFile; fileRef = C28867F59EBDB868E877DA0C1C5D37F5 /* RSocketParameters.h */; settings = {ATTRIBUTES = (Project, ); }; }; 0E5B539F7CFE7C18605CA862F87C9FB2 /* AtomicHashArray.h in Headers */ = {isa = PBXBuildFile; fileRef = 4BC9F0A1EE59E920FB929308754C535E /* AtomicHashArray.h */; settings = {ATTRIBUTES = (Project, ); }; }; 0E6BEE45076F221AF9B746A5CB621F93 /* es.lproj in Resources */ = {isa = PBXBuildFile; fileRef = 7D8A8FD62F6DD9E281B25AD6DCEFA865 /* es.lproj */; }; 0E6CDDD3662E67C0C8965B8F0CE41EA6 /* FBLPromise+Do.m in Sources */ = {isa = PBXBuildFile; fileRef = D3B758A31DB1B688B14C39079DD67BE6 /* FBLPromise+Do.m */; }; 0EA0900779E7C8425C830DB6CAAD784A /* TOActivityCroppedImageProvider.h in Headers */ = {isa = PBXBuildFile; fileRef = B92C2FEF3E68EBA0C79B2D9403F591DD /* TOActivityCroppedImageProvider.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0EFCA31C89CB2815C262F61063472180 /* QBAlbumsViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 7427F37FF19E195E55A9669219AD60B2 /* QBAlbumsViewController.m */; }; + 0EFCA31C89CB2815C262F61063472180 /* QBAlbumsViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 1CFF36678EC0BC917B348604CF042798 /* QBAlbumsViewController.m */; }; 0F04757773EB94AFA230379602288218 /* File.h in Headers */ = {isa = PBXBuildFile; fileRef = 72EE23C58260255B1D192AE09CDFFD44 /* File.h */; settings = {ATTRIBUTES = (Project, ); }; }; 0F0C10FF1C8CA51216269475E4076D75 /* Framer.h in Headers */ = {isa = PBXBuildFile; fileRef = B58E61992108763157F0715297852B84 /* Framer.h */; settings = {ATTRIBUTES = (Project, ); }; }; 0F112286F11B894F72C66676A5BAC325 /* SDWebImageWebPCoder-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 5FD15DBC020C66E3FA510D822817AE79 /* SDWebImageWebPCoder-dummy.m */; }; 0F2C29D27A4A81991C787404478AF099 /* UIImage+WebP.h in Headers */ = {isa = PBXBuildFile; fileRef = 5F49593BAECB2E8DA1B8BA33E680366E /* UIImage+WebP.h */; settings = {ATTRIBUTES = (Project, ); }; }; 0F3F32D5615E2F8623E48BB225FD09D8 /* StreamResponder.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3ED7D50C2A4F1D8ED397EF40EB5ED71F /* 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 = E0F9503131ACB8C4FD70E76CA14C2EF5 /* BSG_RFC3339DateTool.m */; }; - 0F7FEC05F0A20D8341402116F272EE20 /* ReactMarker.h in Headers */ = {isa = PBXBuildFile; fileRef = 8F3A9328D29018CCFA541797D682CE25 /* ReactMarker.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0F91563346AE26C4079DA42B08C23BCE /* RCTResizeMode.m in Sources */ = {isa = PBXBuildFile; fileRef = 7A7AD95B78F3A4DF14DA2B010AF9E31F /* 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"; }; }; + 0F5A161C459E57546E32BC3253B76F55 /* BSG_RFC3339DateTool.m in Sources */ = {isa = PBXBuildFile; fileRef = F86B4084BDBE006107E646C6452C8D26 /* BSG_RFC3339DateTool.m */; }; + 0F7FEC05F0A20D8341402116F272EE20 /* ReactMarker.h in Headers */ = {isa = PBXBuildFile; fileRef = A11BA247591C5A318445351BD305EA7B /* ReactMarker.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0F91563346AE26C4079DA42B08C23BCE /* RCTResizeMode.m in Sources */ = {isa = PBXBuildFile; fileRef = C2F2AD7683409365750CC090551D941C /* 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"; }; }; 0F96B9773F1A3A400AF5F4BE07F633F8 /* ms.lproj in Resources */ = {isa = PBXBuildFile; fileRef = 052E73AD9356D481A265F7E0FAA85B84 /* ms.lproj */; }; 0F9C7819344334F86A89420E15C953C6 /* ThreadPoolExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = 845577FEF371C2976581AA6142746A7E /* ThreadPoolExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; 0FA9C97403FEF053C862AA37D7419213 /* GDTCORLifecycle.h in Headers */ = {isa = PBXBuildFile; fileRef = B19A1640FAD31E75BB1B93700D7F0729 /* GDTCORLifecycle.h */; settings = {ATTRIBUTES = (Project, ); }; }; 0FB00882D8BB26D52DB32A3B8F1C4761 /* AtomicRef.h in Headers */ = {isa = PBXBuildFile; fileRef = BEEC5B627C27430789D52F34CC40A3D1 /* AtomicRef.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0FC44EF6F7841689F51373C18CF9A97E /* RCTAlertManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 4045917217D1231943C756B745F1F8E7 /* RCTAlertManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0FC44EF6F7841689F51373C18CF9A97E /* RCTAlertManager.h in Headers */ = {isa = PBXBuildFile; fileRef = BE97773D8C3DAF9FCDCB748359496A88 /* RCTAlertManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; 0FD0BF71F29CDFAC3DBE15624237654C /* dynamic.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3CDCCF6765F48984B05B95D24E8940C4 /* 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 = 0CB1410A921E227EA20B80E650DF64E8 /* RNPushKitEventHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0FDDB9156FB0D0097B471318449E417D /* RNPushKitEventHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = BE71F3AFE22012555B5D1DCDEFB2CF62 /* RNPushKitEventHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; 0FE0697F33D7E0B7DA1149A396065DD3 /* FBLPromise+Race.m in Sources */ = {isa = PBXBuildFile; fileRef = 3F5FCC2B0B2354A005BA4E4CDA38589C /* FBLPromise+Race.m */; }; 0FF737393D13C998B2E7B85E02167777 /* SSLContext.h in Headers */ = {isa = PBXBuildFile; fileRef = 35DA5D83B94E2AAAB00EDCEBBBE69FA0 /* SSLContext.h */; settings = {ATTRIBUTES = (Project, ); }; }; 10188187C279960B337C15DCD889FF13 /* GULNetworkConstants.h in Headers */ = {isa = PBXBuildFile; fileRef = 3947BDBB1A4AD14C3E700D8630CFBF7D /* GULNetworkConstants.h */; settings = {ATTRIBUTES = (Project, ); }; }; 10483AA4D71ADE88023480FB5094E267 /* Subprocess.h in Headers */ = {isa = PBXBuildFile; fileRef = 46F3B9E5415F9B82E09D9820D439DEDE /* Subprocess.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 106584F91C10E1378D0F44CA8BE92CA4 /* RCTDataRequestHandler.mm in Sources */ = {isa = PBXBuildFile; fileRef = 63CA347E5BAE58E1D36EB34AFEE1CFB0 /* 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 = C447C2F56F60AB7FBB7B476E7BE16CF5 /* React-jsinspector-dummy.m */; }; - 1092BB8011776EF67080DC8649C68F22 /* RNFirebaseAdMobRewardedVideo.m in Sources */ = {isa = PBXBuildFile; fileRef = 218422C5163CBAD686311A3CF0701DF7 /* RNFirebaseAdMobRewardedVideo.m */; }; - 109C094CA57B73B0016EECB32E81E246 /* BSG_KSCrashIdentifier.h in Headers */ = {isa = PBXBuildFile; fileRef = 19EB35F2F254B311138218F74DE97208 /* BSG_KSCrashIdentifier.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 106584F91C10E1378D0F44CA8BE92CA4 /* RCTDataRequestHandler.mm in Sources */ = {isa = PBXBuildFile; fileRef = 8E880C8FADC348B3A40BE9FD9BA79079 /* 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 = 2C41DB5D4429F6735546346E78BC1842 /* React-jsinspector-dummy.m */; }; + 1092BB8011776EF67080DC8649C68F22 /* RNFirebaseAdMobRewardedVideo.m in Sources */ = {isa = PBXBuildFile; fileRef = E4D333D4BA3F02FCE6EDA22EBDCA1C10 /* RNFirebaseAdMobRewardedVideo.m */; }; + 109C094CA57B73B0016EECB32E81E246 /* BSG_KSCrashIdentifier.h in Headers */ = {isa = PBXBuildFile; fileRef = A9622FAF256FEAB83C7DC8367852D67A /* BSG_KSCrashIdentifier.h */; settings = {ATTRIBUTES = (Project, ); }; }; 10C1021B42BE6200A4E324C3539F9702 /* RSocketRequester.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 4A694EE5ED5D9BAD6323EE82ACBC46FC /* 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 = D88A67B31EF4DDFDB2555341940D783D /* 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 = E2A2C3E229486D9A05F7BD609DCC9FF1 /* RNFetchBlobRequest.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 10E796A0A017F392E5917E7B1A58C69E /* RCTModuleMethod.mm in Sources */ = {isa = PBXBuildFile; fileRef = 4E79E7C4475819BE6183F64D6F78755E /* 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 = 3AC743AAF093BEA69296F8D19A4A63DB /* RCTKeyCommandConstants.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 10C864D268080AA0C52419676048CC8C /* RCTPlatform.mm in Sources */ = {isa = PBXBuildFile; fileRef = 880F16204E26838532A9E66CE3F45CF9 /* 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 = B4791BC487C6BE27262A5F71B4048162 /* RNFetchBlobRequest.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 10E796A0A017F392E5917E7B1A58C69E /* RCTModuleMethod.mm in Sources */ = {isa = PBXBuildFile; fileRef = A0E427C7108909EFB5B15D46A98F8E9B /* 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 = C2223C2E29771101F6D806E52FE5022A /* RCTKeyCommandConstants.h */; settings = {ATTRIBUTES = (Project, ); }; }; 110DB0771E91F52B6FD3EAD5AF30123D /* RSocketStateMachine.h in Headers */ = {isa = PBXBuildFile; fileRef = 29036740DCDF6F5940B8B339551BDCC7 /* RSocketStateMachine.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 111D765C73417F5F3D9DB4A549BF16B7 /* EXLocalAuthentication.h in Headers */ = {isa = PBXBuildFile; fileRef = 983C8D4D1F255DEB3F4CD2C3EA0D1AD8 /* EXLocalAuthentication.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 111D765C73417F5F3D9DB4A549BF16B7 /* EXLocalAuthentication.h in Headers */ = {isa = PBXBuildFile; fileRef = 07B9D1C1C458EDCC710AF4C3881744F3 /* EXLocalAuthentication.h */; settings = {ATTRIBUTES = (Project, ); }; }; 11712F28C8D94966B4717571C5B4101C /* FlatCombiningPriorityQueue.h in Headers */ = {isa = PBXBuildFile; fileRef = 495EEE7EC9CC941B2ED910F264DA5B2A /* FlatCombiningPriorityQueue.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 11822C9340B8CA71658C6217849DCF22 /* RCTInputAccessoryShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = D93AE0391E8B04BF035C5947E9A419FE /* RCTInputAccessoryShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 118ECA72611CB2FD2EEC1AC53D8E029C /* UMUtilities.h in Headers */ = {isa = PBXBuildFile; fileRef = 44A77B66CB563D3BB5FF97B8CBFEC42F /* UMUtilities.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 11B2F08DBB908C134F7294568F22A901 /* RAMBundleRegistry.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 84B6CA5103C86DFBDF45453A429A0B28 /* 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 = 1234D762A2CB0BFC75543A7CFE6CB8F5 /* RCTInputAccessoryShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 118ECA72611CB2FD2EEC1AC53D8E029C /* UMUtilities.h in Headers */ = {isa = PBXBuildFile; fileRef = FFB28A7BE52FA9FC2E26FC5B3F39A1DD /* UMUtilities.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 11B2F08DBB908C134F7294568F22A901 /* RAMBundleRegistry.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 7CE91569D663F35D8BBBE0EACE3C4B77 /* 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 = 580CED7C9849AC631ED1934006A0AB0A /* FBLPromise+Wrap.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 11BCEFCA89FAE791FE7195C154A8D927 /* RNPushKit.h in Headers */ = {isa = PBXBuildFile; fileRef = EB7AC2F1B7531D26A22F4D278FE0599D /* RNPushKit.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 11CEE85468C674A4EBCBA4551A6FFB4A /* SDImageCache.m in Sources */ = {isa = PBXBuildFile; fileRef = C45340E1BD37FF39D4D1428478240EFF /* SDImageCache.m */; }; - 11D89A7B5D486F75609ABF6268F29E7A /* Instance.h in Headers */ = {isa = PBXBuildFile; fileRef = 0C4E83823B124CE4BEA4F71B475706AD /* Instance.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 11D90221E44911334524BF86B2AD4A2F /* UIView+Private.h in Headers */ = {isa = PBXBuildFile; fileRef = D0D3A712CE905DA36F783872BBCC9C90 /* UIView+Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 11FCAA1D9958EC286034E638CD07CDF1 /* RCTActivityIndicatorView.m in Sources */ = {isa = PBXBuildFile; fileRef = BE326A8BBAF4AE76275FB5B30C2D2869 /* RCTActivityIndicatorView.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 11BCEFCA89FAE791FE7195C154A8D927 /* RNPushKit.h in Headers */ = {isa = PBXBuildFile; fileRef = 049220A983DD98D10CD3B951DD39C6B4 /* RNPushKit.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 11C1F06E5DAC4DB374846E51300D5020 /* UIImage+Transform.h in Headers */ = {isa = PBXBuildFile; fileRef = 5397CA5724A8A4990CF3952B433F59FE /* UIImage+Transform.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 11CEE85468C674A4EBCBA4551A6FFB4A /* SDImageCache.m in Sources */ = {isa = PBXBuildFile; fileRef = 0E054B45EF98F3699A1A102C4A72AEC1 /* SDImageCache.m */; }; + 11D89A7B5D486F75609ABF6268F29E7A /* Instance.h in Headers */ = {isa = PBXBuildFile; fileRef = 7592BEE88F55B1933E91D62CDCC4197E /* Instance.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 11D90221E44911334524BF86B2AD4A2F /* UIView+Private.h in Headers */ = {isa = PBXBuildFile; fileRef = 430CE20FBFBA757BC977C881F5455E02 /* UIView+Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 11FCAA1D9958EC286034E638CD07CDF1 /* RCTActivityIndicatorView.m in Sources */ = {isa = PBXBuildFile; fileRef = 6150911CCFCD0DF7E5A2BA107C5E1472 /* 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 = C5BBCD54998E8FB091B5DCBC5FD34392 /* 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 = DA85E657E1A04BF36A3D6719725246AA /* rn-extensions-share-dummy.m */; }; + 12478C3DEA4C049CB9A2CA1CD20C89DA /* rn-extensions-share-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 731777336C3CA503DD0A5DA5DB2164B1 /* rn-extensions-share-dummy.m */; }; 125A7DA5E0AA6CD38E879293F84F4CA0 /* Flowables.h in Headers */ = {isa = PBXBuildFile; fileRef = A08107B4566B1C3F3F66FE49898E538F /* Flowables.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1269AF0F682F600A26863DF81E886937 /* RNPushKitEventHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = 0C69A4C9BEE6C6DB95D331757A1B845D /* RNPushKitEventHandler.m */; }; - 126F40666E812A4A6E90817FF328B49D /* RNFetchBlobFS.h in Headers */ = {isa = PBXBuildFile; fileRef = 9EEDA8D0F3FF14A8194A586EB92E3B3D /* RNFetchBlobFS.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1269AF0F682F600A26863DF81E886937 /* RNPushKitEventHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = A99A041ED33EBAA221EA360164457909 /* RNPushKitEventHandler.m */; }; + 126F40666E812A4A6E90817FF328B49D /* RNFetchBlobFS.h in Headers */ = {isa = PBXBuildFile; fileRef = 6909042DFF19168DA427F9C7AB105438 /* RNFetchBlobFS.h */; settings = {ATTRIBUTES = (Project, ); }; }; 127BEB986815F397903637433E85997C /* FireAndForgetBasedFlipperResponder.h in Headers */ = {isa = PBXBuildFile; fileRef = ADC0B004CF882C26B697349490222BF1 /* FireAndForgetBasedFlipperResponder.h */; settings = {ATTRIBUTES = (Project, ); }; }; 12D59B7431F1E2D74FD4A69383EB1BC9 /* FlipperPlugin.h in Headers */ = {isa = PBXBuildFile; fileRef = A8F3ABC40B91A396D7EE15FF8E0B8786 /* FlipperPlugin.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 12EF2DADF1312FD3553930431F86DA5D /* SDWebImageDownloaderDecryptor.m in Sources */ = {isa = PBXBuildFile; fileRef = 14DE5E20048BA83B6CF49A1811EE2017 /* SDWebImageDownloaderDecryptor.m */; }; - 13626B3E229D5D66AF7559F0708DD7B3 /* SDImageAPNGCoder.m in Sources */ = {isa = PBXBuildFile; fileRef = E179F2A5B71E45A8909EB9C9A0471081 /* SDImageAPNGCoder.m */; }; - 137F2AB84ACCC13A5B70189CC62DA277 /* SDImageCoder.h in Headers */ = {isa = PBXBuildFile; fileRef = 4A9C870E415384C1941E5FEE0F27CBD9 /* SDImageCoder.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 137FF610872B1C182541C2262022B77B /* SDWeakProxy.m in Sources */ = {isa = PBXBuildFile; fileRef = 9420282DA92F21A459E07B57C79802C5 /* SDWeakProxy.m */; }; - 1391B4C0CB6B3D86D5D0A2E36A67036A /* React-RCTText-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 94B1495E7AC6173D77EE9923CB0C47DD /* React-RCTText-dummy.m */; }; + 12EF2DADF1312FD3553930431F86DA5D /* SDWebImageDownloaderDecryptor.m in Sources */ = {isa = PBXBuildFile; fileRef = 065E410EED9B34228BDF3AA55B9E85CF /* SDWebImageDownloaderDecryptor.m */; }; + 13626B3E229D5D66AF7559F0708DD7B3 /* SDImageAPNGCoder.m in Sources */ = {isa = PBXBuildFile; fileRef = E1857959E99AF4C358B3C474EB7A392C /* SDImageAPNGCoder.m */; }; + 137FF610872B1C182541C2262022B77B /* SDWeakProxy.m in Sources */ = {isa = PBXBuildFile; fileRef = 8F80D233C9B17483F731DE53534A5FEC /* SDWeakProxy.m */; }; + 1391B4C0CB6B3D86D5D0A2E36A67036A /* React-RCTText-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = AAE8FDF22C8DECF917FAE894D8E30F24 /* React-RCTText-dummy.m */; }; 13D7C34FEC43A4568FD21A4221A2C1EC /* FBLPromise+Wrap.m in Sources */ = {isa = PBXBuildFile; fileRef = FF399EC9637444DDFFBABC8692C8FA70 /* FBLPromise+Wrap.m */; }; - 13DDFBBAA84ACC91CDC2A5E12778DCD9 /* RCTPropsAnimatedNode.m in Sources */ = {isa = PBXBuildFile; fileRef = BAB32DAC1CCB947DB9B0F1CACD9FFADE /* 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 = D7C680AD9FBB4FA05BB74919D14AF39D /* 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 = 4EF993D3A2FE6B149FDC304C80E5ABF4 /* 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 = 90B5D4FA2839C90675EB5D0AAA62BFF8 /* ARTNodeManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 14324B21AF8BD25DF60EDC4A614E67DA /* RCTUIManagerUtils.m in Sources */ = {isa = PBXBuildFile; fileRef = 25551C2EFCC1B8A180FFC6ED5CACC156 /* 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 = 750F7D35BE6E5845F73D68C57008522E /* RCTSafeAreaShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 14534CCC1C7F8E7B84FD7E8CE2AB31F1 /* RCTPropsAnimatedNode.h in Headers */ = {isa = PBXBuildFile; fileRef = A37715BF54D25621CFB1E49A366C553C /* RCTPropsAnimatedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 141090299A28682B48401EF4D7F455FC /* ARTNodeManager.h in Headers */ = {isa = PBXBuildFile; fileRef = ACDD01CC361DCC116F79A0AAF9401EF1 /* ARTNodeManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 14324B21AF8BD25DF60EDC4A614E67DA /* RCTUIManagerUtils.m in Sources */ = {isa = PBXBuildFile; fileRef = 9CC8B2C12E1EA99667A5E5B1C4A4593A /* 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 = 09B37705AC1DB27483F491055BB8BA47 /* RCTSafeAreaShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 14534CCC1C7F8E7B84FD7E8CE2AB31F1 /* RCTPropsAnimatedNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 0743141D8418C1A30DAD5A62843860FB /* RCTPropsAnimatedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; 14595B9424B26FA78E6DD72747352F72 /* FileUtilDetail.h in Headers */ = {isa = PBXBuildFile; fileRef = 4A4D65433A1D40E254CA23F0BC3B67C7 /* FileUtilDetail.h */; settings = {ATTRIBUTES = (Project, ); }; }; 145B0569F3F8BCD67D8BBF5DD7E6EB72 /* EventBaseLocal.h in Headers */ = {isa = PBXBuildFile; fileRef = 85817BE98ECD2825C99892444497E8B6 /* EventBaseLocal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 14728816ACF61C96545F414F980F4B33 /* SDWebImageCompat.m in Sources */ = {isa = PBXBuildFile; fileRef = 91741A8C0473252C0B3C652A5EDF7A50 /* SDWebImageCompat.m */; }; + 14728816ACF61C96545F414F980F4B33 /* SDWebImageCompat.m in Sources */ = {isa = PBXBuildFile; fileRef = A50FBFDCC81267B08BA18C8E1327E23A /* SDWebImageCompat.m */; }; 1473175D9D91F3FAA6EFE18B305D6E38 /* FKPortForwardingServer.m in Sources */ = {isa = PBXBuildFile; fileRef = D7FF45630AF1D4E6C1BBF01347A7435C /* 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 = 0F40B52FC2DFDB13480B387C4F29CA0F /* EXVideoPlayerViewController.m */; }; + 1479BA84B9B30E6D9879CA6C0135D930 /* EXVideoPlayerViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 7623975154610CA2E1AE466A7CEBE8E0 /* EXVideoPlayerViewController.m */; }; 1487B1D1AEDC852BABA57CD71F64AA21 /* SpookyHashV1.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F46F0D000E791175C14D642397F9E427 /* 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 = CD451FAF7D1425FB8F7DC7D6C1EB7DE6 /* dsp.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 14C3DC80022ED8ACA9D4F4532F065F24 /* BugsnagSessionTrackingApiClient.h in Headers */ = {isa = PBXBuildFile; fileRef = 17BC9E5C4DEB82B74B5BFC4E7C56357F /* BugsnagSessionTrackingApiClient.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 14C3DC80022ED8ACA9D4F4532F065F24 /* BugsnagSessionTrackingApiClient.h in Headers */ = {isa = PBXBuildFile; fileRef = 910EE1481A0CEC8D3EA79187B2EC0CC0 /* BugsnagSessionTrackingApiClient.h */; settings = {ATTRIBUTES = (Project, ); }; }; 14CAFF1ED4661468AB0080B8A886439A /* GDTCORPrioritizer.h in Headers */ = {isa = PBXBuildFile; fileRef = 3121F4E39E2FDCA07C70F743382E9D1D /* GDTCORPrioritizer.h */; settings = {ATTRIBUTES = (Project, ); }; }; 14F4CBB8353E78750FBA45D556C32E23 /* AsyncSocket.h in Headers */ = {isa = PBXBuildFile; fileRef = 0CA4586504E0FD172DD164A3A4F5FD53 /* AsyncSocket.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 14F8EC0D2510CFA0366BA3D4E3223CE7 /* BSG_KSFileUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = 50AC756E0E949F216873FC9F7F3C7DF6 /* BSG_KSFileUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 150EB838BF663A71D17BB3DB6B3E97E3 /* RCTViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = F626CA309CF77982C5504E2DAD7F257D /* RCTViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 14F8EC0D2510CFA0366BA3D4E3223CE7 /* BSG_KSFileUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = 90EC14969D8667885B5B03C0EFC3214E /* BSG_KSFileUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 150EB838BF663A71D17BB3DB6B3E97E3 /* RCTViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 9ADEF2907DA90AC6CEC93DCD1621716A /* RCTViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; 150F04B8F2DE014340CA3EABEF23B9AF /* SSLOptions.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 995E20B019FCA48F1AA5D5A22B876F40 /* 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 = CE77A43CB054B9B1F4219449FA68BD3D /* ARTLinearGradient.m */; }; + 152271A7580B47DB9B37189F7ED4277E /* ARTLinearGradient.m in Sources */ = {isa = PBXBuildFile; fileRef = 5A03C80D3D1ACD77DB9FD585D938955D /* ARTLinearGradient.m */; }; 1545F3BAB2FDEE69BA16660BB26F0F86 /* TOCropOverlayView.m in Sources */ = {isa = PBXBuildFile; fileRef = D6144B6738B0D9368281C946956BD2E3 /* TOCropOverlayView.m */; }; - 1550252FA1729815646281BF830A708A /* RCTRedBoxExtraDataViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = 8E9324CC0326A8408FF7A078995E113D /* RCTRedBoxExtraDataViewController.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1550252FA1729815646281BF830A708A /* RCTRedBoxExtraDataViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = 4A090700F56D9999D1A4365A62E2FFC8 /* RCTRedBoxExtraDataViewController.h */; settings = {ATTRIBUTES = (Project, ); }; }; 15619A9FEFEB4C7FBEB38264BCF2F170 /* SysTime.h in Headers */ = {isa = PBXBuildFile; fileRef = 5777A47CB1785ED141BBA4A97C5ED417 /* SysTime.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 156647B23C14443AFBF903E33BCA6F6D /* BSG_KSMach.h in Headers */ = {isa = PBXBuildFile; fileRef = C5CA0AEF5EA89992EB0B35EE86E02AA7 /* BSG_KSMach.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 156647B23C14443AFBF903E33BCA6F6D /* BSG_KSMach.h in Headers */ = {isa = PBXBuildFile; fileRef = 473155BF324F475906811E6C81045BB4 /* BSG_KSMach.h */; settings = {ATTRIBUTES = (Project, ); }; }; 1570CDD55121E52EEF123C763B2B0B4F /* FBLPromise+Recover.h in Headers */ = {isa = PBXBuildFile; fileRef = D262E98E9B660146EE69681B508C5A32 /* FBLPromise+Recover.h */; settings = {ATTRIBUTES = (Project, ); }; }; 1578046795E51ADF624F9E6A5C60939A /* FIRInstallationsVersion.m in Sources */ = {isa = PBXBuildFile; fileRef = E48B59569F94F2DB402094237B30567E /* FIRInstallationsVersion.m */; }; 157804CF2C9474129EA1324545E3ACA6 /* Bits.h in Headers */ = {isa = PBXBuildFile; fileRef = A969579433C9A90BAA8A78856842E154 /* Bits.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1583C4F32B16836112179DB8401EDBC4 /* experiments.h in Headers */ = {isa = PBXBuildFile; fileRef = CDBD8119ABE1F1E9D8EC59A46B8188D7 /* experiments.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1583C4F32B16836112179DB8401EDBC4 /* experiments.h in Headers */ = {isa = PBXBuildFile; fileRef = DBAAA55F592C3AA7B25B62A64E9C4C6C /* experiments.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 158836011C2C1CA8C0F79AE55BB228C1 /* SDWebImageIndicator.h in Headers */ = {isa = PBXBuildFile; fileRef = 33065731262EBDAC80BA38EDAB757A99 /* SDWebImageIndicator.h */; settings = {ATTRIBUTES = (Project, ); }; }; 159E6CC104E3A31FD10E4BFF4D2B6910 /* Math.h in Headers */ = {isa = PBXBuildFile; fileRef = 53339968D7BE0B7483D50FAB1177B806 /* Math.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 15AC2FF021D7C7EEC38C290FAAAF3CD8 /* RCTFont.mm in Sources */ = {isa = PBXBuildFile; fileRef = E5D173BDA9C7CE1F83CBB562AED745EC /* 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 = E2DDA6DC942834BBBE14643AF830A50A /* 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 = 762DC98B3A6DE4FC6084B565D9FB90E5 /* 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 = F20EFDBA87EE56FC92707CA2A45C76C5 /* 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 = BD7D6AE70B01DD0DDBC246F0184D8560 /* huffman_utils.h */; settings = {ATTRIBUTES = (Project, ); }; }; 15FA0CEC28541CA4EF930A1163CEAB50 /* lossless_mips_dsp_r2.c in Sources */ = {isa = PBXBuildFile; fileRef = DC984D11F480F93BF6505E6A2FE9E073 /* lossless_mips_dsp_r2.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 162716417CF9DC78508EB8DC805963D1 /* BugsnagPlugin.h in Headers */ = {isa = PBXBuildFile; fileRef = 5856E498F87DC64E56AF486736B65248 /* BugsnagPlugin.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1658E2D03BFE5D27F4C7FB78370F5289 /* RNPushKit.m in Sources */ = {isa = PBXBuildFile; fileRef = E20B1B67C0A60279B2E2E8D87D79E25B /* RNPushKit.m */; }; + 162716417CF9DC78508EB8DC805963D1 /* BugsnagPlugin.h in Headers */ = {isa = PBXBuildFile; fileRef = 2CAB9455E7C439073AD7677FC69858E7 /* BugsnagPlugin.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1658E2D03BFE5D27F4C7FB78370F5289 /* RNPushKit.m in Sources */ = {isa = PBXBuildFile; fileRef = FCBB799233713D6125A6EF556649905A /* RNPushKit.m */; }; 1677C6E959A147929A1E36ADE31AB595 /* SKEnvironmentVariables.h in Headers */ = {isa = PBXBuildFile; fileRef = 4E8037656A7EA6390C835AFF7A2A5A14 /* SKEnvironmentVariables.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 167A2CA62B562DC4614D643C1742A81A /* RCTSegmentedControlManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 9E7721F7CEB4EB662B6BCEA76FD28E5C /* 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 = CFC9523B63CD897F2AB2DCE4C52B265E /* EXWebBrowser.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 167A2CA62B562DC4614D643C1742A81A /* RCTSegmentedControlManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 7CE3A5AB6AC4FB4B8253F48C96879E6B /* 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 = BE3A0131962D726235C4F8FB91460D68 /* EXWebBrowser.h */; settings = {ATTRIBUTES = (Project, ); }; }; 168E0D6A2004B4AB71BDC7A0FD126EEC /* FrameFlags.h in Headers */ = {isa = PBXBuildFile; fileRef = 679C3B0E29078B260151C3AA2C69F65A /* FrameFlags.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 16B79B17961B6E6845CA4D610C59DDE5 /* ARTNodeManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 653690A988FDAE65DF8631ABF83513FB /* ARTNodeManager.m */; }; + 16B79B17961B6E6845CA4D610C59DDE5 /* ARTNodeManager.m in Sources */ = {isa = PBXBuildFile; fileRef = B8ED15CD12C9B59F2F324CCC68D22FD4 /* ARTNodeManager.m */; }; 16C5D991F7D3833068C8F6892F59DAE2 /* MemoryMapping.h in Headers */ = {isa = PBXBuildFile; fileRef = 920319A488C3EE7D3A4B0C7195B6A0C0 /* MemoryMapping.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1727491FC9D04CA1C6CBAF916FE3693C /* RCTVersion.m in Sources */ = {isa = PBXBuildFile; fileRef = 495A5EEC39F246A0D653BAFDC490350C /* RCTVersion.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 172DA40FD34F98F60ADDE511B6C70309 /* RCTViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 91D367B3158E8031400E77558EF77B03 /* 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 = 18DC5708BAE034786152C1250EFBB451 /* RCTVersion.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 172DA40FD34F98F60ADDE511B6C70309 /* RCTViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 0CA9509B1F8F03C4F5576D2175D6CF93 /* 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 = C86410DA5B635FCD1418EACF241E3676 /* ErrorCode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 17368940CAE03FB9904A5D69CFBC3DC8 /* RCTInvalidating.h in Headers */ = {isa = PBXBuildFile; fileRef = D6C4E57C2A32AB291E71C5C57F0003C6 /* RCTInvalidating.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 173EFBD9209646E1A705B053082C9F6F /* REAClockNodes.m in Sources */ = {isa = PBXBuildFile; fileRef = 5D5395056415CAF584F742E8375FDA75 /* REAClockNodes.m */; }; + 17368940CAE03FB9904A5D69CFBC3DC8 /* RCTInvalidating.h in Headers */ = {isa = PBXBuildFile; fileRef = 19D7D6F0E17D927BBE30DCDE0FCE37FB /* RCTInvalidating.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 173EFBD9209646E1A705B053082C9F6F /* REAClockNodes.m in Sources */ = {isa = PBXBuildFile; fileRef = D60CCBE897105F696DBA18045F670001 /* REAClockNodes.m */; }; 17473E80FC0107BF0A8C72CFFEAF8603 /* Core.h in Headers */ = {isa = PBXBuildFile; fileRef = B5D873AC862E6783398AD8670416FD94 /* Core.h */; settings = {ATTRIBUTES = (Project, ); }; }; 1764DAAB45EFB47EFCEBF09C636D8196 /* Codel.cpp in Sources */ = {isa = PBXBuildFile; fileRef = DFD951B4A6BEB2BEF8B43E5F401C7D90 /* 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 = F300B2D3E7E50E8150F6ACF8E3324950 /* TypeList.h */; settings = {ATTRIBUTES = (Project, ); }; }; 179E47C6D3FDEF2F8548AAF3B8E7D75A /* IOExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = C63A6A47981F29DEF5709746C0FEB1A3 /* IOExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; 17C2BEF174A99D7A9963AFC14B2D9E10 /* ObservableOperator.h in Headers */ = {isa = PBXBuildFile; fileRef = 9DE4C9AF78A0FDEAEAC5F4679666933F /* ObservableOperator.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 17C9F63079A7777BDF392197B7DAF65F /* RNCSafeAreaViewEdges.m in Sources */ = {isa = PBXBuildFile; fileRef = B86E9D751996B3935492481335FA6C60 /* RNCSafeAreaViewEdges.m */; }; - 17F2E42F3EF6AF5DBED785E7C1DC8143 /* RCTBridge+Private.h in Headers */ = {isa = PBXBuildFile; fileRef = 8B6A582F34B9B493FF15016EE89BE48F /* RCTBridge+Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 17C9F63079A7777BDF392197B7DAF65F /* RNCSafeAreaViewEdges.m in Sources */ = {isa = PBXBuildFile; fileRef = F8A2C80712E2830ECB9873DCB6A00ED9 /* RNCSafeAreaViewEdges.m */; }; + 17F2E42F3EF6AF5DBED785E7C1DC8143 /* RCTBridge+Private.h in Headers */ = {isa = PBXBuildFile; fileRef = 3BEFCF7F952DDC32218B9E04B414E1CF /* RCTBridge+Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; 17F5E0FB74E7BD32CDACDC8F988CA5B7 /* SKIOSNetworkAdapter.mm in Sources */ = {isa = PBXBuildFile; fileRef = 93F12EF4B42E7A70C9D5CEE10F03CBDC /* 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 = B9C741BBFDA15841A9940FD832CA71D0 /* BugsnagKSCrashSysInfoParser.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1832399A5D86191FBC62039FAA886F24 /* EXWebBrowser.m in Sources */ = {isa = PBXBuildFile; fileRef = 8B5B25E03A4B03627DAF31A4398E5009 /* EXWebBrowser.m */; }; - 18508BF0F3BB7FB5771E7208D859296F /* EXHapticsModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 5AEC85FB0ECEB95C270BBC108B611442 /* EXHapticsModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 180E6619D4E6F12EFB3E025429C35BDF /* BugsnagKSCrashSysInfoParser.h in Headers */ = {isa = PBXBuildFile; fileRef = 5C097A47FC864491F16FFB2F9B811822 /* BugsnagKSCrashSysInfoParser.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1832399A5D86191FBC62039FAA886F24 /* EXWebBrowser.m in Sources */ = {isa = PBXBuildFile; fileRef = D091D700F24941E07A35B24C3426446B /* EXWebBrowser.m */; }; + 18508BF0F3BB7FB5771E7208D859296F /* EXHapticsModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 33721795E258A337460BB68AD0878BC4 /* EXHapticsModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; 1875CFDC099AD0787A9C25318392EA17 /* TypedIOBuf.h in Headers */ = {isa = PBXBuildFile; fileRef = E4D66E1F0C0812B3142D37E9D4700232 /* TypedIOBuf.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1883A6926C1940FB4951E1616CC42E9F /* RCTAssert.h in Headers */ = {isa = PBXBuildFile; fileRef = 8115FE918D09220F2DE70FDF0B87A2E1 /* RCTAssert.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 189B638C3899F769A08E0DE1EFB64FB3 /* EXRemoteNotificationPermissionRequester.m in Sources */ = {isa = PBXBuildFile; fileRef = 0C17DAEB767685E151CBEEE677106E5A /* EXRemoteNotificationPermissionRequester.m */; }; + 1883A6926C1940FB4951E1616CC42E9F /* RCTAssert.h in Headers */ = {isa = PBXBuildFile; fileRef = 3A0F410686B929E48A45C2FFDB884AC4 /* RCTAssert.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 189B638C3899F769A08E0DE1EFB64FB3 /* EXRemoteNotificationPermissionRequester.m in Sources */ = {isa = PBXBuildFile; fileRef = 96962B33A01681C19E695E4F3FC9A75D /* EXRemoteNotificationPermissionRequester.m */; }; 18A77E5A2082C7E3C408C56CA002C905 /* FlipperCppWrapperPlugin.h in Headers */ = {isa = PBXBuildFile; fileRef = ADE57F6DEE2F506A738387E8BB3FCB5A /* FlipperCppWrapperPlugin.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 18B99705036ECD1F33913244C135B90A /* RCTConvert+RNNotifications.h in Headers */ = {isa = PBXBuildFile; fileRef = 5024867E4249A0B59A14EEC601A826C8 /* RCTConvert+RNNotifications.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 18B99705036ECD1F33913244C135B90A /* RCTConvert+RNNotifications.h in Headers */ = {isa = PBXBuildFile; fileRef = 573A852C61AEA240A3CEBECB8EE12406 /* RCTConvert+RNNotifications.h */; settings = {ATTRIBUTES = (Project, ); }; }; 18C92F2E7DE02C4F5158C71F487EDC11 /* RSocket.h in Headers */ = {isa = PBXBuildFile; fileRef = E5003F41F544CB231A516A7F623B3AE6 /* RSocket.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 18CCDA25764FFFE7805A2F391D54BD80 /* RCTManagedPointer.h in Headers */ = {isa = PBXBuildFile; fileRef = 67F39C23F14E1B6B3DD1CDCE99A24B17 /* RCTManagedPointer.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 18CCDA25764FFFE7805A2F391D54BD80 /* RCTManagedPointer.h in Headers */ = {isa = PBXBuildFile; fileRef = 4A0A044F7C56744E4ACD3967FBB587CF /* RCTManagedPointer.h */; settings = {ATTRIBUTES = (Project, ); }; }; 1902EBB8C42BEB7A31086863B86BE089 /* bignum.cc in Sources */ = {isa = PBXBuildFile; fileRef = 50F122E5AEEB0232B93BD906033A1B59 /* bignum.cc */; settings = {COMPILER_FLAGS = "-Wno-unreachable-code"; }; }; - 191ED4B1AD846F05B02798563A781F70 /* NSBezierPath+SDRoundedCorners.h in Headers */ = {isa = PBXBuildFile; fileRef = AEACA277E79E36A282E3096230EDE338 /* NSBezierPath+SDRoundedCorners.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 192BA926848E9D9219AEBB2DEA42A399 /* RCTCxxModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 995AC1B7D0FFC307FBDE42396BEC7495 /* RCTCxxModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 192BA926848E9D9219AEBB2DEA42A399 /* RCTCxxModule.h in Headers */ = {isa = PBXBuildFile; fileRef = A59B2F8DFD8B8E4BEB6A90FDB730E539 /* RCTCxxModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 193ED99B119DFEA6FDAD04AEBB176FD6 /* SDDisplayLink.h in Headers */ = {isa = PBXBuildFile; fileRef = CBE3F6150FEC3B7B1922FA9926E7EEEB /* SDDisplayLink.h */; settings = {ATTRIBUTES = (Project, ); }; }; 19592F25B82235131D6A91618F62FC7B /* Throughput.h in Headers */ = {isa = PBXBuildFile; fileRef = 9E296A829E3A7823F8E2B5E6FDEA9C7C /* Throughput.h */; settings = {ATTRIBUTES = (Project, ); }; }; 196ECC69DF946B7C4054EBA6F7889BAC /* GoogleUtilities-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 5F0E4A6A2028ED2E241F2C7F4B7F2627 /* GoogleUtilities-dummy.m */; }; - 197BAE778D92018BC73EC6A9A055401A /* SDWebImageDownloaderRequestModifier.h in Headers */ = {isa = PBXBuildFile; fileRef = 10814B74CDE15DC6EB1F5120B83AF3C0 /* SDWebImageDownloaderRequestModifier.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 19912572D88D09628C2942291E7C9ED0 /* SDAnimatedImageRep.h in Headers */ = {isa = PBXBuildFile; fileRef = EFA3675606B15D277BA608131C2B6151 /* SDAnimatedImageRep.h */; settings = {ATTRIBUTES = (Project, ); }; }; 19A4C2DB3EBA77982E77271C69AB7543 /* FlipperConnectionManagerImpl.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 735A6137D06816E5C6E0C1C09CDD1049 /* 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 = CFF32CC3D0FB184C73F3C51E065F5D86 /* RCTKeyCommands.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 19A911A0B7F6FE7C06C59E9DBD538976 /* RCTKeyCommands.h in Headers */ = {isa = PBXBuildFile; fileRef = 5718D65ACAFDA3E380A795D2213C9FD5 /* RCTKeyCommands.h */; settings = {ATTRIBUTES = (Project, ); }; }; 19B3BC4E2828FB30D6FE19E66BBBC724 /* token_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = 7C7F0E0ABB3CCAD83667042C8771E973 /* token_enc.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; 19BB37501E60552D724E980C463122B9 /* SocketFastOpen.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 0C278AB3E6FCF15F4728074C278D384B /* 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 = FBCD2C9820EF885E9D7871FE7CCEF998 /* FIRCoreDiagnosticsConnector.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 19D4365486925B686D119895F21414F7 /* RCTNativeAnimatedNodesManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 3181EBFF3AA9E8E21FE1CB080DDF96F4 /* RCTNativeAnimatedNodesManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 19D4365486925B686D119895F21414F7 /* RCTNativeAnimatedNodesManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 279DFE0F392F03FFE4686EC8AC1E9807 /* RCTNativeAnimatedNodesManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; 19EBAFFF4F7BB44B99B4E5EA6F2FC4A9 /* RequestResponseResponder.h in Headers */ = {isa = PBXBuildFile; fileRef = 745220E98E7B8E0EC647E582DC596550 /* RequestResponseResponder.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1A17875330ECFBD30A65210BDF5E8820 /* RCTBaseTextInputViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 3636F14631625280E28D82BACF327AEB /* RCTBaseTextInputViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1A1BCE8EEFEE011440836122D86B6653 /* BSG_KSCrashCallCompletion.h in Headers */ = {isa = PBXBuildFile; fileRef = 411C77468EFAC449BC05F4BE98E07F71 /* BSG_KSCrashCallCompletion.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1A17875330ECFBD30A65210BDF5E8820 /* RCTBaseTextInputViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = B5B0E7AB0A4CC6D0C106EFD7FCE0A45F /* RCTBaseTextInputViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1A1BCE8EEFEE011440836122D86B6653 /* BSG_KSCrashCallCompletion.h in Headers */ = {isa = PBXBuildFile; fileRef = F6188B67F727BC8D9803627142F8EFEC /* BSG_KSCrashCallCompletion.h */; settings = {ATTRIBUTES = (Project, ); }; }; 1A1FAB80AB5646F6BA23973871D037EA /* double-conversion.h in Headers */ = {isa = PBXBuildFile; fileRef = AFFBFACE5060F34C7DE183AB5C26E5F0 /* double-conversion.h */; settings = {ATTRIBUTES = (Project, ); }; }; 1A34D3102ACF234F346A5475B6BF1CB3 /* Stdlib.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 179EE663681A5C6AC6022428A4F16E0D /* 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 = F794A50F04C838621170BC15768D7CD7 /* 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 = 40101A6123815377203D40D4392D585A /* AtomicUtil.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1A91DAC8DA3EBEAA0D5111513D568D69 /* RNUserDefaults-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = D25D1E1BBC70B6001EA6BA3DC4F722CA /* RNUserDefaults-dummy.m */; }; + 1A91DAC8DA3EBEAA0D5111513D568D69 /* RNUserDefaults-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = AFA1D653A46DF0AB4FDF5CC4161D86DA /* RNUserDefaults-dummy.m */; }; 1ABA2B507962FB92E51A2CA70A819741 /* FIRErrors.m in Sources */ = {isa = PBXBuildFile; fileRef = 60F75F85D0E7CDC5F7A2C4E6A07D617C /* FIRErrors.m */; }; - 1ABD61549684E693C9ABD854DE580471 /* EXLocalAuthentication.m in Sources */ = {isa = PBXBuildFile; fileRef = 1210196EDCC2368A83CE532E53CAB073 /* EXLocalAuthentication.m */; }; - 1AFB7660AED3CB914CF01D42131CECAD /* RNFirebaseAuth.h in Headers */ = {isa = PBXBuildFile; fileRef = EC9D4A28059892E242284CB4F0ABA042 /* RNFirebaseAuth.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1B10D25B28351FF12A8C17090C5309B3 /* RNFirebaseMessaging.m in Sources */ = {isa = PBXBuildFile; fileRef = 1754C542BA03C7EB47091AA16D3D4B49 /* RNFirebaseMessaging.m */; }; - 1B51EB05FFD0750C4FE9B4A590CAFDD3 /* RCTRefreshableProtocol.h in Headers */ = {isa = PBXBuildFile; fileRef = BDB692241C92CA225252AEABAEC15D9F /* RCTRefreshableProtocol.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1ABD61549684E693C9ABD854DE580471 /* EXLocalAuthentication.m in Sources */ = {isa = PBXBuildFile; fileRef = 09F2E4C3C70FFCBA21F0A8C53FBCD359 /* EXLocalAuthentication.m */; }; + 1AFB7660AED3CB914CF01D42131CECAD /* RNFirebaseAuth.h in Headers */ = {isa = PBXBuildFile; fileRef = 5FA1E0760FEB7158C2E0A758440A7AB4 /* RNFirebaseAuth.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1B10D25B28351FF12A8C17090C5309B3 /* RNFirebaseMessaging.m in Sources */ = {isa = PBXBuildFile; fileRef = 3D11D0A873DF3F8BAABDB68DF0556EBE /* RNFirebaseMessaging.m */; }; + 1B51EB05FFD0750C4FE9B4A590CAFDD3 /* RCTRefreshableProtocol.h in Headers */ = {isa = PBXBuildFile; fileRef = 1E9E1AF5720FF021B30236E13D6388F7 /* RCTRefreshableProtocol.h */; settings = {ATTRIBUTES = (Project, ); }; }; 1B55112F88E36F4CAD2006CB5FE14D26 /* FBVector.h in Headers */ = {isa = PBXBuildFile; fileRef = 539C672DA8001551E03AE7077FE7900F /* FBVector.h */; settings = {ATTRIBUTES = (Project, ); }; }; 1B5CF4A390128D31E6B3DDD066E38DA3 /* FKUserDefaultsPlugin.h in Headers */ = {isa = PBXBuildFile; fileRef = CA1BDA86D0A8653DBA14BB9384509296 /* FKUserDefaultsPlugin.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1B7460A41AE9C572291675EBBA73DBF3 /* UMViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 12FC96FD85B0EE6C53FFF770B8B474F5 /* UMViewManager.m */; }; + 1B7460A41AE9C572291675EBBA73DBF3 /* UMViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 08DDE9FE6DA89816C9D2D808455CFC86 /* UMViewManager.m */; }; 1B7603450F5EBB7D2C05C7FBBEC26D72 /* RSocketServer.h in Headers */ = {isa = PBXBuildFile; fileRef = 70F368B9704E829BF6802BDBB1AD5E26 /* RSocketServer.h */; settings = {ATTRIBUTES = (Project, ); }; }; 1B794ED054CB3A6B44BA360A30EEC849 /* HeterogeneousAccess.h in Headers */ = {isa = PBXBuildFile; fileRef = BCC8BFB1CF351BF5C6EF84BA049AE607 /* HeterogeneousAccess.h */; settings = {ATTRIBUTES = (Project, ); }; }; 1B7CFF9E58522F2A4D6D36C5020D8DAE /* HazptrThrLocal.h in Headers */ = {isa = PBXBuildFile; fileRef = 8F3B48A53788928257D4F770E7F7A634 /* HazptrThrLocal.h */; settings = {ATTRIBUTES = (Project, ); }; }; @@ -565,218 +564,218 @@ 1BA74AE91BF42207C276B02BBC24531C /* Hardware.h in Headers */ = {isa = PBXBuildFile; fileRef = C2AC929E8A0A14F84960B40BC04E3EDF /* Hardware.h */; settings = {ATTRIBUTES = (Project, ); }; }; 1BB7DF35DA8BC3E5E76D9ADB62B3BAC6 /* lossless_msa.c in Sources */ = {isa = PBXBuildFile; fileRef = 041A3AB9D3FA721EE3FA6A1C010E3C97 /* lossless_msa.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; 1BBBA89E7263809B22A2986294845A23 /* Observable.h in Headers */ = {isa = PBXBuildFile; fileRef = 266067ADABDCA6C5E9BB18B919AE8432 /* Observable.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1BF23C6D94BC9EBC387640BA8F2A5F0A /* RCTDiffClampAnimatedNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 2C2FBC0A054D33CDCCF8C06A100B019E /* RCTDiffClampAnimatedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1C25BF8A89DFBB6B9B355600D39D1DCE /* Bugsnag.h in Headers */ = {isa = PBXBuildFile; fileRef = 9FD63B7A2E08464D5A03789191955423 /* Bugsnag.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1BF23C6D94BC9EBC387640BA8F2A5F0A /* RCTDiffClampAnimatedNode.h in Headers */ = {isa = PBXBuildFile; fileRef = AFFD5A677E453A8EBFFDB95411C36F12 /* RCTDiffClampAnimatedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1C25BF8A89DFBB6B9B355600D39D1DCE /* Bugsnag.h in Headers */ = {isa = PBXBuildFile; fileRef = BCE2B66B16E38723E924E2A58640BD9B /* Bugsnag.h */; settings = {ATTRIBUTES = (Project, ); }; }; 1C3B114D579773C689CCC20E86A66473 /* SKSwizzle.h in Headers */ = {isa = PBXBuildFile; fileRef = 416190984EC0862F162E2E48E0B3BAC3 /* SKSwizzle.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1C647BDA4A4AB160D974BD55DB2E0A02 /* SDImageAPNGCoder.h in Headers */ = {isa = PBXBuildFile; fileRef = 7F8A10F0233DA3B3CBEE27074EBFC203 /* SDImageAPNGCoder.h */; settings = {ATTRIBUTES = (Project, ); }; }; 1C71AAD98CA149A0B464F0C1BC1A760A /* FlipperClient.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D3BF8E7BE4C441AA3E3539BE285C0A7F /* 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 = FDDE42B7E3BA3D737A67D830BA7CB2F5 /* SKButtonDescriptor.h */; settings = {ATTRIBUTES = (Project, ); }; }; 1C9458A12060B23DE3F9D57BAAC6AF5B /* SKSwizzle.mm in Sources */ = {isa = PBXBuildFile; fileRef = 17A61121C03A8D3B576632439432AB57 /* 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 = A2C604A5CBE7F32526D81258BAF2A7CE /* 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 = CFDE95EB166389A17BCDB994E0C3BE14 /* ARTShapeManager.m */; }; + 1CB393E83C2658C292D706C7857EC477 /* RCTLayoutAnimationGroup.m in Sources */ = {isa = PBXBuildFile; fileRef = 09FB5B11084F8AE4D8C395522E7DD90C /* 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 = 481F5BDC0821ACF8ED5831526566E112 /* ARTShapeManager.m */; }; 1CDFFE7C9DF69F03E29F9F02205DF675 /* cached-powers.cc in Sources */ = {isa = PBXBuildFile; fileRef = C394BE36DFD48F07854E942BCB01261D /* cached-powers.cc */; settings = {COMPILER_FLAGS = "-Wno-unreachable-code"; }; }; - 1CE0A3B74BCACF590A1E1A2BE0BF258A /* UMLogHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 55DED3FBCD9CA821EF7A18DF058FC1EE /* UMLogHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1CEB2270F182DDF1CF7139272CF46455 /* BugsnagBreadcrumb.m in Sources */ = {isa = PBXBuildFile; fileRef = 2B73E343A993E6CEF42350881F8F0E84 /* BugsnagBreadcrumb.m */; }; + 1CE0A3B74BCACF590A1E1A2BE0BF258A /* UMLogHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 337768C93212495645F0A6F77B206DD3 /* UMLogHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1CEB2270F182DDF1CF7139272CF46455 /* BugsnagBreadcrumb.m in Sources */ = {isa = PBXBuildFile; fileRef = 214F75E0C1D6794C8A998E9B77AAA69E /* BugsnagBreadcrumb.m */; }; 1D1E44F857FA339C19C859B350D0FFA7 /* Allowance.h in Headers */ = {isa = PBXBuildFile; fileRef = CF4795D41510A5087986EB85A78E93A9 /* Allowance.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1D2677A8095E40E0F5D4BCBC3C0428DE /* QBCheckmarkView.h in Headers */ = {isa = PBXBuildFile; fileRef = BF7875275D133A28394FE406760DC9CE /* QBCheckmarkView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1D4CBFD46B5E0040A330C7120FBFEC85 /* RCTDiffClampAnimatedNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 041293840B618AC2B9040C82E56A4EC6 /* 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"; }; }; + 1D2677A8095E40E0F5D4BCBC3C0428DE /* QBCheckmarkView.h in Headers */ = {isa = PBXBuildFile; fileRef = 44F26DE043B093BF0008239D78CC79B5 /* QBCheckmarkView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1D4CBFD46B5E0040A330C7120FBFEC85 /* RCTDiffClampAnimatedNode.m in Sources */ = {isa = PBXBuildFile; fileRef = B3CBD31201FDE6C5A712F634102E43BD /* 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 = 4B868B975B17FD43D8795223F2C75789 /* strtod.cc */; settings = {COMPILER_FLAGS = "-Wno-unreachable-code"; }; }; - 1D838244DCF67A79448F0311491E8A53 /* RNCMaskedView.h in Headers */ = {isa = PBXBuildFile; fileRef = DB64B1122545BBAF21C429CE6B63462E /* RNCMaskedView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1D99EBC8F71768B9B1A2CCCBED9AD982 /* RCTRawTextShadowView.m in Sources */ = {isa = PBXBuildFile; fileRef = 85CC15D655072A7A9895561BE72AD16C /* RCTRawTextShadowView.m */; }; - 1DE06FF175E64A1F373F1E0CA85D45A6 /* BSGConnectivity.h in Headers */ = {isa = PBXBuildFile; fileRef = 931FE198A25C9BC87758418B8F903556 /* BSGConnectivity.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1DE91DD8D31AD923BC2F28C70E8E6F9C /* SDImageLoader.h in Headers */ = {isa = PBXBuildFile; fileRef = CE60317C58AFC60DCD0B604500EE9586 /* SDImageLoader.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1DF16A410CF349117F27A48911AB92B0 /* RCTConvert+REATransition.m in Sources */ = {isa = PBXBuildFile; fileRef = EB1E2EDE818FF878E59B569B3AEE6CEC /* RCTConvert+REATransition.m */; }; - 1E0A1261A07124778FD4B3B42FA9020B /* UMAppLifecycleService.h in Headers */ = {isa = PBXBuildFile; fileRef = ED5BC9D96294FFB993377139D192A7E2 /* UMAppLifecycleService.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1E48D95C455B8ABDB2E212CAB79A6ED6 /* RCTSRWebSocket.m in Sources */ = {isa = PBXBuildFile; fileRef = 1BE06198C27F8E9E487826A3D1389423 /* RCTSRWebSocket.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 1D74DE102578CB79908C6B2FC695F3A6 /* SDWebImageError.h in Headers */ = {isa = PBXBuildFile; fileRef = 08059AC4183ADBABDD17776B88788A08 /* SDWebImageError.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1D838244DCF67A79448F0311491E8A53 /* RNCMaskedView.h in Headers */ = {isa = PBXBuildFile; fileRef = EDAAE69411DA40D901BB43E7F756448F /* RNCMaskedView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1D99EBC8F71768B9B1A2CCCBED9AD982 /* RCTRawTextShadowView.m in Sources */ = {isa = PBXBuildFile; fileRef = A3E1769EF87D6BAF3AF5EC5E77CEC455 /* RCTRawTextShadowView.m */; }; + 1DE06FF175E64A1F373F1E0CA85D45A6 /* BSGConnectivity.h in Headers */ = {isa = PBXBuildFile; fileRef = B3C68EF037255E557CF6936B4C86785B /* BSGConnectivity.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1DF16A410CF349117F27A48911AB92B0 /* RCTConvert+REATransition.m in Sources */ = {isa = PBXBuildFile; fileRef = 3B00863C14E21A0D3D585CDB272267A9 /* RCTConvert+REATransition.m */; }; + 1E0A1261A07124778FD4B3B42FA9020B /* UMAppLifecycleService.h in Headers */ = {isa = PBXBuildFile; fileRef = EAB9724D2F065EDDDD75CD95F953E1F6 /* UMAppLifecycleService.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1E48D95C455B8ABDB2E212CAB79A6ED6 /* RCTSRWebSocket.m in Sources */ = {isa = PBXBuildFile; fileRef = 7882D59EB464A6BE1CD402F091960ED9 /* 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 = EF20A6B7673DC9EDF7334088F699E2C0 /* GULUserDefaults.m */; }; - 1E9E9841ECD43A7B59D4B9C4A24373CD /* RNSScreenContainer.m in Sources */ = {isa = PBXBuildFile; fileRef = 878DC5AA91F3DFEE8A5FCE23CDF9F154 /* RNSScreenContainer.m */; }; - 1EB1982FEEA30F3349E79573D316E7F3 /* JSIExecutor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 0339FF0394421A78EC4E62FACD4BBDEB /* 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 = DCF5F74F414D69D59E8E603C60730F28 /* RNSScreenContainer.m */; }; + 1EB1982FEEA30F3349E79573D316E7F3 /* JSIExecutor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = C4137DC46FF694731547B518598BA2E2 /* 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 = B309AE09E6BEE094D1B4E8170C4894A9 /* IOBuf.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1ECC93652A3EFFCFB135FE893740D5E3 /* RCTBridgeModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 2B816DA2D6F8861904EA446D74DFF951 /* RCTBridgeModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1ECC93652A3EFFCFB135FE893740D5E3 /* RCTBridgeModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 2DB0380EF9E1141B65BE3D7DA88631E4 /* RCTBridgeModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; 1EDD4DC0E76159A2E868E2448ED7CE8C /* Utility.h in Headers */ = {isa = PBXBuildFile; fileRef = C6187BEC3C0923BA104D84C23B91E01C /* Utility.h */; settings = {ATTRIBUTES = (Project, ); }; }; 1F7A6150C30D540366225C4428F4EEFA /* OpenSSLUtils.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 0A8700F9216F84EC4EEF704759982EBB /* 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 = 912F3C0FEF4C832DC9C981D4E763C614 /* cached-powers.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1F93776C6F5649E124D88989BC9805EC /* BSG_KSMachApple.h in Headers */ = {isa = PBXBuildFile; fileRef = 0DFBE72CD90D262E7A6933E7E30E47E9 /* BSG_KSMachApple.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1F988CFCB48630887EBEC9D536138CE0 /* RNNotificationEventHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = 429E81C70FB1627BEAB071C56E303483 /* RNNotificationEventHandler.m */; }; + 1F93776C6F5649E124D88989BC9805EC /* BSG_KSMachApple.h in Headers */ = {isa = PBXBuildFile; fileRef = A99B9A2FD8E990A6D6B0B89A0615D68D /* BSG_KSMachApple.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1F988CFCB48630887EBEC9D536138CE0 /* RNNotificationEventHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = 8819E9AFD8883C315FB38B53E616EC46 /* RNNotificationEventHandler.m */; }; 1FBC66FB408DC29291980DFFAC95FD4E /* FlipperKitNetworkPlugin.h in Headers */ = {isa = PBXBuildFile; fileRef = 3ABEC4132D8A614C5B3C617207B44C1D /* FlipperKitNetworkPlugin.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1FF20C2CDD23D3EAC68ABAC6E0880DB9 /* BugsnagCrashSentry.h in Headers */ = {isa = PBXBuildFile; fileRef = 1DB63DF1A95876A2FAC34C050BCC3855 /* BugsnagCrashSentry.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1FF20C2CDD23D3EAC68ABAC6E0880DB9 /* BugsnagCrashSentry.h in Headers */ = {isa = PBXBuildFile; fileRef = 6BD6B36952346B1A6E7D39AB05FB5F14 /* BugsnagCrashSentry.h */; settings = {ATTRIBUTES = (Project, ); }; }; 1FF2393253B66E225DBF6E7B48F3860C /* FIRBundleUtil.m in Sources */ = {isa = PBXBuildFile; fileRef = 9C1813374D737500AAC69A3BBDF7400E /* FIRBundleUtil.m */; }; 1FF2EFDA8ABAED16AFAB78AF0DABEA00 /* BaselinesAsyncSocket.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 6FF0842F9EA78D9EDC9F435A8D686211 /* BaselinesAsyncSocket.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0 -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - 201C25CA113E1654260D99458E252A6C /* RCTBaseTextShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = 969B6F69D32F2EB84CFA0A410BDA47DF /* RCTBaseTextShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2029321EAF1F73F656D94619140C1873 /* BugsnagUser.m in Sources */ = {isa = PBXBuildFile; fileRef = FCF1E186581D4AB90F54D0F475088693 /* BugsnagUser.m */; }; + 2012AB3040CD09E593FE95CA831A1968 /* SDAnimatedImage.h in Headers */ = {isa = PBXBuildFile; fileRef = 61AC145B5EE6989D9E5570F2D41E648E /* SDAnimatedImage.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 201C25CA113E1654260D99458E252A6C /* RCTBaseTextShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = 1C1CA5FFC31390049418CEB7C731C099 /* RCTBaseTextShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2029321EAF1F73F656D94619140C1873 /* BugsnagUser.m in Sources */ = {isa = PBXBuildFile; fileRef = 6EAF17DFB63D2F9F9F36D733AC58E9DB /* BugsnagUser.m */; }; 202E0AA3695D0381D384CE7180F47ABD /* ieee.h in Headers */ = {isa = PBXBuildFile; fileRef = FE9B33B992732EE00524ABA85B7829D1 /* ieee.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2036187BDCF514B48DD38C011F3D8F42 /* RCTVirtualTextViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 57171E8592D216A0BCACF19A6FCE78FB /* RCTVirtualTextViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 20416B5D4297ACF6C5123ECD32CDD1D9 /* jsi-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 56E325018147BA656AC7A8A93CB4E276 /* jsi-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 20787CEC79E25AA6516AD59C8BEEB419 /* SDWebImage.h in Headers */ = {isa = PBXBuildFile; fileRef = 9ED4561357600270D36518FF1E8B923E /* SDWebImage.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2080973A334C01D568F6C34EAA5FEC28 /* RCTShadowView+Internal.h in Headers */ = {isa = PBXBuildFile; fileRef = CA0BE73E7B2154150E2F4CEAB088D002 /* RCTShadowView+Internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2036187BDCF514B48DD38C011F3D8F42 /* RCTVirtualTextViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 722BE3870D0E12A2F6B24031E137F07D /* RCTVirtualTextViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 20416B5D4297ACF6C5123ECD32CDD1D9 /* jsi-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 564FE4F3C1E7F747E4B89EFE5CB8CD88 /* jsi-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 207E203D4A0B00504A657AB0917BF71A /* SDImageCache.h in Headers */ = {isa = PBXBuildFile; fileRef = F8BAA4003782CA3A60F2B4D3BB7086B3 /* SDImageCache.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2080973A334C01D568F6C34EAA5FEC28 /* RCTShadowView+Internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 58388C4E426361C1B7F11ABC6FDE5D68 /* RCTShadowView+Internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; 20AB37D0A997EB702F9625EFD74E7D72 /* SKIOSNetworkAdapter.h in Headers */ = {isa = PBXBuildFile; fileRef = 18162DE6C50E2863BE3AA20B43A71F52 /* SKIOSNetworkAdapter.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 20ADF4E535F2FBBC3732C70F1917A1F8 /* UIView+WebCache.h in Headers */ = {isa = PBXBuildFile; fileRef = 4E60CDDC422A732752DCC7C642B75B25 /* UIView+WebCache.h */; settings = {ATTRIBUTES = (Project, ); }; }; 20B0C57A6DE9D3137B0AD31EFF574741 /* SpookyHashV1.h in Headers */ = {isa = PBXBuildFile; fileRef = 76B0BC6BAA4672419D0A1BF6F4FB7767 /* SpookyHashV1.h */; settings = {ATTRIBUTES = (Project, ); }; }; 20B883649B7B86E3C65B40C1BE9C6C11 /* Varint.h in Headers */ = {isa = PBXBuildFile; fileRef = 61F182CDA20E77EAFB69C3206A207326 /* Varint.h */; settings = {ATTRIBUTES = (Project, ); }; }; 20BF5CE7BE71A52B947DC1A4AE28D316 /* FLEXNetworkObserver.h in Headers */ = {isa = PBXBuildFile; fileRef = B6F0A398436CE937E7ABD0027C122DF2 /* FLEXNetworkObserver.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 20C23C118B6ECBC5D63DDD14B20346C5 /* RCTPicker.h in Headers */ = {isa = PBXBuildFile; fileRef = 009E1A7B40B535EB77ACA21024028C42 /* RCTPicker.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 20E395C9875740A8A614B3B3F1739656 /* RNFirebaseAdMob.h in Headers */ = {isa = PBXBuildFile; fileRef = 9F629F100430310341B2F399E260D8E6 /* RNFirebaseAdMob.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 20C23C118B6ECBC5D63DDD14B20346C5 /* RCTPicker.h in Headers */ = {isa = PBXBuildFile; fileRef = 227CB7EDB6CE0BD93BA21EFE897D3AEE /* RCTPicker.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 20E395C9875740A8A614B3B3F1739656 /* RNFirebaseAdMob.h in Headers */ = {isa = PBXBuildFile; fileRef = F91D4B7109CF2E8FCED0CBC80F266FF8 /* RNFirebaseAdMob.h */; settings = {ATTRIBUTES = (Project, ); }; }; 20F3535B1F7ACCD40CC3F44712CD9CDC /* FutureExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = DE57CEC42019514FE641BAD853C5C7B3 /* FutureExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 211825B42C149FDE16AB9293734167D0 /* RNCMaskedView.m in Sources */ = {isa = PBXBuildFile; fileRef = 3E417FCC99890ADA6613B3B742D3E0C9 /* RNCMaskedView.m */; }; - 21227AB74B4FBEF7FEE5EA1C0AEA6708 /* RNFirebaseAdMobInterstitial.m in Sources */ = {isa = PBXBuildFile; fileRef = A038D71AFF5935A62E96279F15FB1CA9 /* RNFirebaseAdMobInterstitial.m */; }; - 21678FAB2A21925B38DBE4A5F09D9462 /* QBCheckmarkView.m in Sources */ = {isa = PBXBuildFile; fileRef = 877ECD691ABB300A0857DC2D3F38502D /* QBCheckmarkView.m */; }; - 216C471C3659DB6C7F43F4C451A1CCB2 /* BugsnagApiClient.m in Sources */ = {isa = PBXBuildFile; fileRef = 0AC9C1DB7C04328B5BB8E33489022D4E /* BugsnagApiClient.m */; }; + 211825B42C149FDE16AB9293734167D0 /* RNCMaskedView.m in Sources */ = {isa = PBXBuildFile; fileRef = B89C723751374F11718F5A5D5EFCC394 /* RNCMaskedView.m */; }; + 21227AB74B4FBEF7FEE5EA1C0AEA6708 /* RNFirebaseAdMobInterstitial.m in Sources */ = {isa = PBXBuildFile; fileRef = FB30611A5F577518B0A1EA6896A717CE /* RNFirebaseAdMobInterstitial.m */; }; + 21678FAB2A21925B38DBE4A5F09D9462 /* QBCheckmarkView.m in Sources */ = {isa = PBXBuildFile; fileRef = E4A980EC5E135E073BD60E890BB899CC /* QBCheckmarkView.m */; }; + 216C471C3659DB6C7F43F4C451A1CCB2 /* BugsnagApiClient.m in Sources */ = {isa = PBXBuildFile; fileRef = BDF91B2D8013804B3B247CEAAFE62A04 /* BugsnagApiClient.m */; }; 218095E8385F5B81616076F5FEE57FF1 /* String-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = EEB541FDC2BF4361A988EAF2F2A186FA /* String-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2188513E06C68D0DCFAE5B02D5EA86E8 /* RCTBaseTextInputViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 501799D18FF728DE0379BD277745DE90 /* RCTBaseTextInputViewManager.m */; }; - 219BFBFAE225E7D441E18CFC7572CB4D /* RCTNativeModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 8F4541A76FB78D77FA3A964755798242 /* RCTNativeModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 21C0D0A679B9CCC696330278C799F8AD /* REANodesManager.m in Sources */ = {isa = PBXBuildFile; fileRef = A0A5BC613C561149D537888AC2E00F65 /* REANodesManager.m */; }; + 2188513E06C68D0DCFAE5B02D5EA86E8 /* RCTBaseTextInputViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 5200F04647BE068B2CF832CA1AD0F0CC /* RCTBaseTextInputViewManager.m */; }; + 219BFBFAE225E7D441E18CFC7572CB4D /* RCTNativeModule.h in Headers */ = {isa = PBXBuildFile; fileRef = FC29D92F99AB6BCBFBF94C7B4DB85DA6 /* RCTNativeModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 21C0D0A679B9CCC696330278C799F8AD /* REANodesManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 574F77FD0BFB0D8805DF0F6B18469D76 /* REANodesManager.m */; }; 21CE7333450F08EF85250BC221A8378F /* FrameSerializer.h in Headers */ = {isa = PBXBuildFile; fileRef = 74EF1999A7D5F0448AF21369F6367731 /* FrameSerializer.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 21DC793624E2D6A11CD90371C27BEE98 /* UMNativeModulesProxy.h in Headers */ = {isa = PBXBuildFile; fileRef = 2CAC25D7FC5DF89ED2F7953785D55282 /* UMNativeModulesProxy.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 21E15100946BAC576970F1812C06DAF4 /* SDMemoryCache.h in Headers */ = {isa = PBXBuildFile; fileRef = F88A3985D747C9830996E834577B7AB3 /* SDMemoryCache.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 21DC793624E2D6A11CD90371C27BEE98 /* UMNativeModulesProxy.h in Headers */ = {isa = PBXBuildFile; fileRef = 8B45B5E01B5833D969E98D788D3C9D7A /* UMNativeModulesProxy.h */; settings = {ATTRIBUTES = (Project, ); }; }; 21E16122AFBEA16EAC94D13B6DDB01FB /* fixed-dtoa.cc in Sources */ = {isa = PBXBuildFile; fileRef = 34B7BDD48B65CB852F0BD71AA4D5F649 /* fixed-dtoa.cc */; settings = {COMPILER_FLAGS = "-Wno-unreachable-code"; }; }; 2212B6827D7BC81F77DBB7C361B61548 /* GDTCORReachability.h in Headers */ = {isa = PBXBuildFile; fileRef = C67BE21BEF53E4B88BD7BD67C69D8CB6 /* GDTCORReachability.h */; settings = {ATTRIBUTES = (Project, ); }; }; 2232A04B30AA441CBA83D0A161F4879A /* Hazptr-fwd.h in Headers */ = {isa = PBXBuildFile; fileRef = 1381B07386B17DB1B283F6B3EC16F8CA /* Hazptr-fwd.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2243037041F364BD2FAA1C38AE6A4CB6 /* RCTView.h in Headers */ = {isa = PBXBuildFile; fileRef = 12760B2ADEEB617BF703F0D43FEFCC77 /* RCTView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2243037041F364BD2FAA1C38AE6A4CB6 /* RCTView.h in Headers */ = {isa = PBXBuildFile; fileRef = 15373706DB87B83C8D3203CAA194A599 /* RCTView.h */; settings = {ATTRIBUTES = (Project, ); }; }; 224D23FFF43076B9FD6F06C90E360D15 /* FlipperClient.h in Headers */ = {isa = PBXBuildFile; fileRef = 20F0360096A49ED0E255A9341B07C0A3 /* FlipperClient.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 227134EEB40138501F42DCB74D501A8D /* RNFirebaseAdMobInterstitial.h in Headers */ = {isa = PBXBuildFile; fileRef = B9101611D1081DAA8646B34923008FE7 /* RNFirebaseAdMobInterstitial.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2275CDE2F9E72781DD15023D75195980 /* RNFirebaseStorage.m in Sources */ = {isa = PBXBuildFile; fileRef = F0F0CA4750B2846C91E0E6F8CC2F958B /* RNFirebaseStorage.m */; }; - 228E33C6464F584B2EF22BF39DCB4A5D /* RCTUITextView.m in Sources */ = {isa = PBXBuildFile; fileRef = 4B4D3FE3A0902B85586AB8E1709522DA /* RCTUITextView.m */; }; + 227134EEB40138501F42DCB74D501A8D /* RNFirebaseAdMobInterstitial.h in Headers */ = {isa = PBXBuildFile; fileRef = 7F5B1FE3EF55176F25FE41E85F1EFDAD /* RNFirebaseAdMobInterstitial.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2275CDE2F9E72781DD15023D75195980 /* RNFirebaseStorage.m in Sources */ = {isa = PBXBuildFile; fileRef = CD7654D56F1B46D5C7FB152669A5DE9B /* RNFirebaseStorage.m */; }; + 228E33C6464F584B2EF22BF39DCB4A5D /* RCTUITextView.m in Sources */ = {isa = PBXBuildFile; fileRef = 3481CF02F874B055313278FAF6552F55 /* RCTUITextView.m */; }; 22C8370E1153C875B7DC2D72E7141618 /* SparseByteSet.h in Headers */ = {isa = PBXBuildFile; fileRef = 74C8B993323AAE9A4C15E7FF18321A4C /* SparseByteSet.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 22C893769DB69620D10DB6343A1BF40C /* RNRootViewGestureRecognizer.h in Headers */ = {isa = PBXBuildFile; fileRef = 284D9D2232E840D4407AF909CFEC6332 /* RNRootViewGestureRecognizer.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 22CEFC35D6BE5B9099CB736853ACAC54 /* KeyCommands-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 3082B4F67DF8A2C570FEF766BE0A18F3 /* KeyCommands-dummy.m */; }; - 22F2DDCCF5DEDB634A650681FB7CB07A /* ARTSurfaceViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 6709F8F6033B97457E1E19BCF1304EB8 /* ARTSurfaceViewManager.m */; }; + 22C893769DB69620D10DB6343A1BF40C /* RNRootViewGestureRecognizer.h in Headers */ = {isa = PBXBuildFile; fileRef = EB073CD71C8EC16275D6B7ECF0B92D55 /* RNRootViewGestureRecognizer.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 22CEFC35D6BE5B9099CB736853ACAC54 /* KeyCommands-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = F9D00D29DD456C4EABBD99588E3E8E88 /* KeyCommands-dummy.m */; }; + 22F2DDCCF5DEDB634A650681FB7CB07A /* ARTSurfaceViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = D7339345B900ED086E872BD9031F64BE /* ARTSurfaceViewManager.m */; }; 232F9E9093BAD90D351096CECD29DA28 /* SingletonThreadLocal.h in Headers */ = {isa = PBXBuildFile; fileRef = 39329E18987753D317DDA860F29C1772 /* SingletonThreadLocal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2334BC257643AFF9F1A7C9F391BBDDC4 /* RCTSurfaceHostingProxyRootView.mm in Sources */ = {isa = PBXBuildFile; fileRef = 6AAC0C247FEA5320D92290C2AA6F16A1 /* 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 = A8CBE9BA702F9353DB44F29C05C20508 /* BSG_KSJSONCodecObjC.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2334BC257643AFF9F1A7C9F391BBDDC4 /* RCTSurfaceHostingProxyRootView.mm in Sources */ = {isa = PBXBuildFile; fileRef = 95D98A716220DA801BC8F2D61AD6769C /* 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 = 67D3491ABDB10FBA04D260AC4457D3A9 /* BSG_KSJSONCodecObjC.h */; settings = {ATTRIBUTES = (Project, ); }; }; 235AF40BD4F72FA49078428998D61FBD /* YogaKit-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 609182AADFCFFF5EC31D39948B09EF59 /* YogaKit-dummy.m */; }; - 2365907247E86F9BD727F7AE44494EF6 /* BSG_KSCrashC.h in Headers */ = {isa = PBXBuildFile; fileRef = 4102C6ABE9B6D8A970C2C548F9BE4FCA /* BSG_KSCrashC.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2365907247E86F9BD727F7AE44494EF6 /* BSG_KSCrashC.h in Headers */ = {isa = PBXBuildFile; fileRef = 4EFC8C6939C0CA67C20AA47F229527E7 /* BSG_KSCrashC.h */; settings = {ATTRIBUTES = (Project, ); }; }; 238F9CA702A2EB39A52476B90FCF4CA8 /* GULNetworkMessageCode.h in Headers */ = {isa = PBXBuildFile; fileRef = F0E56CB6ACE5471DE50B60FA21BF1E29 /* GULNetworkMessageCode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 23D01320547D5F767B3E75BA7C6D06E7 /* RCTResizeMode.h in Headers */ = {isa = PBXBuildFile; fileRef = B6758DD46ADA704C20414E9814387441 /* RCTResizeMode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 23D01320547D5F767B3E75BA7C6D06E7 /* RCTResizeMode.h in Headers */ = {isa = PBXBuildFile; fileRef = 6C52E58A2A2B01E9BB3484BE88FC3F3E /* RCTResizeMode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 23D1828C1260691ED059357C7CF17544 /* SDmetamacros.h in Headers */ = {isa = PBXBuildFile; fileRef = 46B971B08FAAA9FA99ABF2E1B15E978A /* SDmetamacros.h */; settings = {ATTRIBUTES = (Project, ); }; }; 23D3495C13258064F17B2596703252A6 /* ReentrantAllocator.h in Headers */ = {isa = PBXBuildFile; fileRef = FCE8F09C178656DBDAFDA0B025C9066A /* ReentrantAllocator.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 23D709C5BFFA4E2B8FE8E01DCF133B5E /* BSG_KSCrashSentry_Signal.c in Sources */ = {isa = PBXBuildFile; fileRef = 42F77A23ED4C373C3DC6188163D412D8 /* BSG_KSCrashSentry_Signal.c */; }; - 23DD6882410833B4985BF657DB0FF140 /* SDImageCachesManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 14E9E31486EBBBC68C0749E85DD654F7 /* SDImageCachesManager.m */; }; - 2409E7DAB2005636E62545D5599F069B /* RCTInputAccessoryViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 77B9E249C98CA27B5638458542B2F44E /* RCTInputAccessoryViewManager.m */; }; - 24245B52141EA46A7042F4BE99AEB86E /* RNFirebaseNotifications.h in Headers */ = {isa = PBXBuildFile; fileRef = C4056A95B9082E2CB7A6161D92837DDB /* RNFirebaseNotifications.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 23D709C5BFFA4E2B8FE8E01DCF133B5E /* BSG_KSCrashSentry_Signal.c in Sources */ = {isa = PBXBuildFile; fileRef = C9B85E132A98984C63D3561D481812B6 /* BSG_KSCrashSentry_Signal.c */; }; + 23DD6882410833B4985BF657DB0FF140 /* SDImageCachesManager.m in Sources */ = {isa = PBXBuildFile; fileRef = DE6ADD67CF5B23EF6C19E4E5FC85A7F4 /* SDImageCachesManager.m */; }; + 2409E7DAB2005636E62545D5599F069B /* RCTInputAccessoryViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 737C63A707933054830C90D0CCDE6973 /* RCTInputAccessoryViewManager.m */; }; + 24245B52141EA46A7042F4BE99AEB86E /* RNFirebaseNotifications.h in Headers */ = {isa = PBXBuildFile; fileRef = 6BA5908D25EA639F1F010452B4AAB9EF /* RNFirebaseNotifications.h */; settings = {ATTRIBUTES = (Project, ); }; }; 2451B9C96658A869E74A857B030FCEC8 /* Launder.h in Headers */ = {isa = PBXBuildFile; fileRef = 566D252641C4C2EB62C7455139BB71D6 /* Launder.h */; settings = {ATTRIBUTES = (Project, ); }; }; 24570C884E7B05506960B1ADE2EBA32E /* demux.h in Headers */ = {isa = PBXBuildFile; fileRef = 22503E55D13A05D557E5314F522C5630 /* demux.h */; settings = {ATTRIBUTES = (Project, ); }; }; 246E297E51662846FB8BC6A044BCC3EC /* ObservableDoOperator.h in Headers */ = {isa = PBXBuildFile; fileRef = 1C9B9530FE73925539BBC1D217AA9D62 /* ObservableDoOperator.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 24B66DE15C81BBFEC51497A13F13AF72 /* LongLivedObject.h in Headers */ = {isa = PBXBuildFile; fileRef = 83A50FFDF1FBD07F4FD73E119C3704D2 /* LongLivedObject.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 24B97F4F26D06C097C3E12F6B68F04CD /* RNBackgroundTimer.h in Headers */ = {isa = PBXBuildFile; fileRef = 7C9BCECBF660D3275D3D5A4996817653 /* RNBackgroundTimer.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 25163DCDEAC38C5567C3C83ADD0CB5AD /* RCTDatePickerManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 2394FD30544F1A0E0D6827F674CAFF38 /* RCTDatePickerManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 24B66DE15C81BBFEC51497A13F13AF72 /* LongLivedObject.h in Headers */ = {isa = PBXBuildFile; fileRef = 0EF5E543404D4EB3CA8D67FB8B099920 /* LongLivedObject.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 24B97F4F26D06C097C3E12F6B68F04CD /* RNBackgroundTimer.h in Headers */ = {isa = PBXBuildFile; fileRef = C42FF7329B3B62D137089F10708D9284 /* RNBackgroundTimer.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 25163DCDEAC38C5567C3C83ADD0CB5AD /* RCTDatePickerManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 58B7613416711737F6538A479F793D7B /* RCTDatePickerManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; 2527839399261E620202C3D565C96224 /* EventBase.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 29A3786758BA5BD9869DBCBF6C13D43C /* 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 = 7AFD68A83DDE516F3EC744376B026DC2 /* 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 = 12D38373AB43F2527570A9F95C0148FE /* 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 = 6165E3EDCE7024C4D5FE7EEBEBA2F169 /* bit_writer_utils.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; 254B9E5D97F740F5EA8A278A150F25CE /* vlog_is_on.cc in Sources */ = {isa = PBXBuildFile; fileRef = 9981989CAA6381239BB715D0BA46262A /* vlog_is_on.cc */; settings = {COMPILER_FLAGS = "-Wno-shorten-64-to-32"; }; }; 2578A917ADC1827F3D0717324949A259 /* FlipperState.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F32368D34EB64A99B694CE8986112617 /* 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 = 834CA45B23BDAEA96E6F41D0C48F49EE /* signalhandler.cc */; settings = {COMPILER_FLAGS = "-Wno-shorten-64-to-32"; }; }; - 2592F0075220E3322D3B6C8705B4C26F /* RCTSinglelineTextInputView.m in Sources */ = {isa = PBXBuildFile; fileRef = CDC6EBF6C7FAA54E8C3C87677CF4A20B /* RCTSinglelineTextInputView.m */; }; - 25B0C379434647D92E7295C0CC6A1B1C /* SDWebImageOperation.h in Headers */ = {isa = PBXBuildFile; fileRef = 7A67725609E5F803B60526CF2258D59F /* SDWebImageOperation.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2592F0075220E3322D3B6C8705B4C26F /* RCTSinglelineTextInputView.m in Sources */ = {isa = PBXBuildFile; fileRef = E3D89053C2BC8351F351CECAE1B7878B /* RCTSinglelineTextInputView.m */; }; 25B6D4193F34A5ABE3CA36A3E35CFE8A /* SysUio.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B1B1AF16CD4A23CC6DEBDE47B6B3B949 /* 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 = 4F1CD909714A0407163E8BF5BDEC08C8 /* FLEXNetworkTransaction.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 25D05716DD4D36831130AEA70822D200 /* fr.lproj in Resources */ = {isa = PBXBuildFile; fileRef = 516A725FD2FA0C22DB6B7DB0B99F417C /* fr.lproj */; }; - 25D1EE7FFDCEE0EBC3F03EB316E69F59 /* RNCCameraRollManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 766D25EE8AC06E2F849B9A4EF23CD32F /* RNCCameraRollManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 25D05716DD4D36831130AEA70822D200 /* fr.lproj in Resources */ = {isa = PBXBuildFile; fileRef = 40FF4A345C09A510EEA9726C9D40C4AC /* fr.lproj */; }; + 25D1EE7FFDCEE0EBC3F03EB316E69F59 /* RNCCameraRollManager.h in Headers */ = {isa = PBXBuildFile; fileRef = CBD405D8C22367F829A5AAC74B92B8AB /* RNCCameraRollManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; 25D70C544A35CB6F097D761400F7957A /* String.h in Headers */ = {isa = PBXBuildFile; fileRef = DE467359CEF73C5F9015551BB2196F55 /* String.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 25DD1F622FE7E6E77871EEB146276D51 /* RCTTurboModuleManager.mm in Sources */ = {isa = PBXBuildFile; fileRef = 1E83938C524F8F5A17A8F7FD3FDD03B6 /* 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 = 383EBEDADAB457D2F1D95B9A9C96B417 /* 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 = 778184D74EB27A6374B6CDB0C567EF3D /* 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 = 43FDFB8A81364F8B51C37B2560E239FD /* 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 = 496E921652C2248A6FFB1951C61E9A2D /* instrumentation.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 263E7272EB84F216E5010AAD64EE4393 /* instrumentation.h in Headers */ = {isa = PBXBuildFile; fileRef = 216DF5C441FD73380BA2454F45BE4D14 /* instrumentation.h */; settings = {ATTRIBUTES = (Project, ); }; }; 265A7C27AF6E0FB3AE07F79E4BA091CD /* Log.h in Headers */ = {isa = PBXBuildFile; fileRef = B6F1AFACB9F5062C3033A2162C7C66FF /* Log.h */; settings = {ATTRIBUTES = (Project, ); }; }; 2667D6A247BD464A6C85B15684C69FCF /* Unicode.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2071F71A875AD0A9F66C109B903EE168 /* 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 = 47CEEEC269B05BDC532D4EA71D6E2901 /* 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 = C89C5B2F338E234BAF2194AEA625B2D6 /* 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 = 56CC3C3AB2AC0E9C53DC1B8DC9122BB4 /* StringKeyedCommon.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 26DDB3ED21F8F75BF8715141466A6BBE /* SDWebImagePrefetcher.m in Sources */ = {isa = PBXBuildFile; fileRef = 2FFD01ED62EB70B241703996ED004808 /* SDWebImagePrefetcher.m */; }; - 26F0818B7A6B16A497714EB1358EBE27 /* QBSlomoIconView.m in Sources */ = {isa = PBXBuildFile; fileRef = 09CF615CD864B0E7013EFE0697D54749 /* QBSlomoIconView.m */; }; + 26DDB3ED21F8F75BF8715141466A6BBE /* SDWebImagePrefetcher.m in Sources */ = {isa = PBXBuildFile; fileRef = C2609D085BBE7D426688E865F2D2155E /* SDWebImagePrefetcher.m */; }; + 26F0818B7A6B16A497714EB1358EBE27 /* QBSlomoIconView.m in Sources */ = {isa = PBXBuildFile; fileRef = 0DE8FD68C12095C34E9DB34D506F06B0 /* QBSlomoIconView.m */; }; 272654FD85002EBB933D59A3241446E8 /* JemallocNodumpAllocator.h in Headers */ = {isa = PBXBuildFile; fileRef = 97B0FDEFE0A3A767AD67F8F29CDCCD91 /* JemallocNodumpAllocator.h */; settings = {ATTRIBUTES = (Project, ); }; }; 274ED815FE397FA51E0AA17121A439BB /* StreamRequester.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F99642E3214AE166E5B20250966902D4 /* 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 = 2E7E8B77C5E49902748BAC6FD806AE7F /* JsArgumentHelpers.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 279BD641A3CF233F1A022F5C2189736B /* BugsnagKeys.h in Headers */ = {isa = PBXBuildFile; fileRef = 8D520DB62B2AA74B6834DC2104F6A540 /* BugsnagKeys.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2778D8DE1D2C367945F0A959B924EDC8 /* JsArgumentHelpers.h in Headers */ = {isa = PBXBuildFile; fileRef = FD577C2F7F91F5B261EED150577BB210 /* JsArgumentHelpers.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 279BD641A3CF233F1A022F5C2189736B /* BugsnagKeys.h in Headers */ = {isa = PBXBuildFile; fileRef = EB843E6AC3CC71F9610EDF2B1B2B53C0 /* BugsnagKeys.h */; settings = {ATTRIBUTES = (Project, ); }; }; 27AFC607943FF0399A91891DD6B277F3 /* Init.h in Headers */ = {isa = PBXBuildFile; fileRef = 710044891D8284841001A9ECCB448E7D /* Init.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 27D37D561140701C9C2DE99C2D13C0BB /* BugsnagMetaData.h in Headers */ = {isa = PBXBuildFile; fileRef = 3924139DCBF1E96013E3D806FA355B7C /* BugsnagMetaData.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 27D37D561140701C9C2DE99C2D13C0BB /* BugsnagMetaData.h in Headers */ = {isa = PBXBuildFile; fileRef = 0D506BAB8ED343238D0B812184000603 /* BugsnagMetaData.h */; settings = {ATTRIBUTES = (Project, ); }; }; 27D7BF69F512CC363019B94C7C8A14FD /* SKApplicationDescriptor.h in Headers */ = {isa = PBXBuildFile; fileRef = E7B58BFF90AEA33D39DC2306C3D51C0B /* SKApplicationDescriptor.h */; settings = {ATTRIBUTES = (Project, ); }; }; 27E334C4DE66739FE2189761220D2152 /* GDTCORFlatFileStorage.h in Headers */ = {isa = PBXBuildFile; fileRef = A0B920059A5D77DD1CEDBC45E2B1867A /* GDTCORFlatFileStorage.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 280340EB2BB4FBED12529AA52158B665 /* UMViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 83FBC58A4E8CE4DD3045967787AC7A8A /* UMViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 280340EB2BB4FBED12529AA52158B665 /* UMViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = C62852A57ECECC01001915BC13F9DAB0 /* UMViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; 28061C86241C297891AF6D19B17288A7 /* GDTCCTNanopbHelpers.h in Headers */ = {isa = PBXBuildFile; fileRef = 8306941218A27B7FAB0F5F24FDA091E0 /* GDTCCTNanopbHelpers.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 28861AF52B24FE2B3F51FD4A8A00A722 /* SDWebImageDownloader.m in Sources */ = {isa = PBXBuildFile; fileRef = EF2624022163DF8547EBDEA01D8173FF /* SDWebImageDownloader.m */; }; - 2890524395C72E909E591EB184C2E434 /* RCTConvert+ART.m in Sources */ = {isa = PBXBuildFile; fileRef = DE30E8B82C1AD9F0CD3F2D5D4CD5A950 /* RCTConvert+ART.m */; }; - 28ACE9898CEAC453068EC5C6E6661FD0 /* jsi.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 60446DD3F09C36183FC3DA8D35698A06 /* 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 = 597D02897C3C579AA756348F14235739 /* SDAnimatedImageView+WebCache.m */; }; - 28C65AFE0EA39E92622AB93E71E10748 /* Color+Interpolation.h in Headers */ = {isa = PBXBuildFile; fileRef = C6276349EE478C396F4BC9158E31AE4F /* Color+Interpolation.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 28861AF52B24FE2B3F51FD4A8A00A722 /* SDWebImageDownloader.m in Sources */ = {isa = PBXBuildFile; fileRef = 8027D5D7C0EA673B28C61FFDCBA57939 /* SDWebImageDownloader.m */; }; + 2890524395C72E909E591EB184C2E434 /* RCTConvert+ART.m in Sources */ = {isa = PBXBuildFile; fileRef = 23B3BDE3B10C6430AEFC0C93E3FABCBF /* RCTConvert+ART.m */; }; + 28ACE9898CEAC453068EC5C6E6661FD0 /* jsi.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 19298D512AA0D99DDA14EB516B188814 /* 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 = FD20870EF3F3A46EB58FFC48DB1B5224 /* SDAnimatedImageView+WebCache.m */; }; + 28C65AFE0EA39E92622AB93E71E10748 /* Color+Interpolation.h in Headers */ = {isa = PBXBuildFile; fileRef = 145F4DF6B52C9A75A68E1E67CAA81C7A /* Color+Interpolation.h */; settings = {ATTRIBUTES = (Project, ); }; }; 28F938C614393C2E27ED714D9579FC8E /* rescaler_utils.h in Headers */ = {isa = PBXBuildFile; fileRef = 42A0F52C9215438BA3904E573B0890EF /* rescaler_utils.h */; settings = {ATTRIBUTES = (Project, ); }; }; 28FFC4481C53A863062AE3B78DFDF30B /* SanitizeLeak.h in Headers */ = {isa = PBXBuildFile; fileRef = 6C70B9C83634E05E74CEF35D222403FD /* SanitizeLeak.h */; settings = {ATTRIBUTES = (Project, ); }; }; 290521ED71D65A6F7DBCB4673DF0084C /* Hash.h in Headers */ = {isa = PBXBuildFile; fileRef = 7AB19467D5F96E09E702AF0A3DB76FD2 /* Hash.h */; settings = {ATTRIBUTES = (Project, ); }; }; 294DF61467891D4A15B8BE8DA7B249C8 /* FIRApp.m in Sources */ = {isa = PBXBuildFile; fileRef = 7390BB632CEEE118C7CA4E8B403F656C /* FIRApp.m */; }; 295B0286CAB8B9811ACC7543683D1FD9 /* SwappableEventBase.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 6CEEF959D7C8245C060ADFCFB07E6931 /* 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 = F6C25CC3E1A0256F28D558834D01ED90 /* RSocketServerState.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2971D2756E69D3A1B1B0B05CB44883FA /* RNFirebaseDatabaseReference.h in Headers */ = {isa = PBXBuildFile; fileRef = 0B3D37D4AD8CFFB551561CAB8EFED1F7 /* RNFirebaseDatabaseReference.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2971D2756E69D3A1B1B0B05CB44883FA /* RNFirebaseDatabaseReference.h in Headers */ = {isa = PBXBuildFile; fileRef = 8795626E1963B04831CE86BC66CB9FF5 /* RNFirebaseDatabaseReference.h */; settings = {ATTRIBUTES = (Project, ); }; }; 2977CE25D3D95A6820F6B47674C6CBA6 /* FrameSerializer_v1_0.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 59444F5F124341D5AD914F255E9BFF8F /* 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 = 085AD3D2DD563788E6C7AD22A0ABAD84 /* RSocketTransport.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2994820A161009C46BCA0F5CE653EA23 /* UMInternalModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 1B87F8E16A65AB0AA58EBDC9AC6B343F /* UMInternalModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2996E3F4C4B3F78A48FD7414D9400D12 /* RCTEventAnimation.m in Sources */ = {isa = PBXBuildFile; fileRef = 6F6EAD38009DDEBD60F96F13B1500506 /* 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 = 5CE8764C07B564BCC6BBF4259ABD13DD /* UMInternalModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2996E3F4C4B3F78A48FD7414D9400D12 /* RCTEventAnimation.m in Sources */ = {isa = PBXBuildFile; fileRef = 98D7873E2D84726B0BF9B0F1242E5B30 /* 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 = 6D6F2220F93AF227C1AE3DD841925360 /* double-conversion.cc */; settings = {COMPILER_FLAGS = "-Wno-unreachable-code"; }; }; 29A78422CB94171C606F76CBF757733B /* TcpDuplexConnection.h in Headers */ = {isa = PBXBuildFile; fileRef = EA7A0F4054315D2EBCF6698136B606FD /* TcpDuplexConnection.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 29A826F8E3DC4C6F6B16EAAECC591333 /* RCTSliderManager.m in Sources */ = {isa = PBXBuildFile; fileRef = E37AF67FCF09E4158EF00B66B07F22C3 /* 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 = 36F1336686CF053FAF0D1F783F28DEDC /* RCTSegmentedControlManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 29A826F8E3DC4C6F6B16EAAECC591333 /* RCTSliderManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 05255BC744941A25A1961830419487AC /* 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 = 58F8471DFBC5C0459C6050D44256A07A /* RCTSegmentedControlManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; 29BC45BF5AE5015D46B969B85561BEA0 /* firebasecore.nanopb.h in Headers */ = {isa = PBXBuildFile; fileRef = E0B5CB5EA94227AB5B770D2BBEDB2A15 /* firebasecore.nanopb.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 29BE103541578385234026751F8ACE67 /* RNRootView-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 9D82889CC21A3DDC1621A270CDF87004 /* RNRootView-dummy.m */; }; - 29CF0EFC90A41967677A31628C2F25A0 /* RCTScrollContentViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 7C654678F23645C68953FBF5656D65B5 /* 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 = 799C9AC7F954CB78BD975A95932FB0FE /* RNRootView-dummy.m */; }; + 29CF0EFC90A41967677A31628C2F25A0 /* RCTScrollContentViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 9D95CEB9C9C0B13F0DE264A05811E840 /* 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 = B6E362A010D932A7F79774073D5CBD71 /* FIRAnalyticsConfiguration.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 29F9DF5B489E9D84B67ED4897106E0BB /* UMAppDelegateWrapper.h in Headers */ = {isa = PBXBuildFile; fileRef = 49C3C2D766AD5EBFBF77708CF363A786 /* UMAppDelegateWrapper.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2A0324572051D6112BEDB9F83E676728 /* RCTAppearance.h in Headers */ = {isa = PBXBuildFile; fileRef = 2C5CE9C01B4C47DC2AF69CC5D89C02F9 /* RCTAppearance.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2A0924AB7815CCF0A58FF53C9F9DD715 /* RNFirebaseNotifications.m in Sources */ = {isa = PBXBuildFile; fileRef = 64E354D0B781F4A56820F61138A82ACF /* RNFirebaseNotifications.m */; }; - 2A0C966126A297B3D07024632C4367E7 /* RCTBorderStyle.h in Headers */ = {isa = PBXBuildFile; fileRef = 9CBBE1E99E32DCF4AAAA2E6EE13B85B3 /* RCTBorderStyle.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2A0E1DCF4CEF3E199FEF0ED767146681 /* RCTConvertHelpers.mm in Sources */ = {isa = PBXBuildFile; fileRef = 7F28FCD5E18CE510ADEDC2288AF4189C /* RCTConvertHelpers.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32"; }; }; - 2A13E0D6D5598EB9B57F78F3CD74774E /* EXVideoThumbnailsModule.h in Headers */ = {isa = PBXBuildFile; fileRef = BF71B6B50AE0EA0C42E1995CB3D90984 /* EXVideoThumbnailsModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2A271C1605508A90C3BA1EAB6BAADC3E /* react-native-document-picker-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 4D49C85A499B83A5304FA3A56A2B4282 /* react-native-document-picker-dummy.m */; }; - 2A3B68B376B56AA14142534390120DD4 /* NativeToJsBridge.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 4FFCF1FC0664854C3FB32F39781917B1 /* 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 = 560F3DF8F084F79B6928B769F95E0C48 /* UMAppDelegateWrapper.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2A0324572051D6112BEDB9F83E676728 /* RCTAppearance.h in Headers */ = {isa = PBXBuildFile; fileRef = 1B8503DBB6CE226E6F22A2D205D7FF46 /* RCTAppearance.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2A0924AB7815CCF0A58FF53C9F9DD715 /* RNFirebaseNotifications.m in Sources */ = {isa = PBXBuildFile; fileRef = CA62B316E8E8936B1BFBB3C5CC0469FD /* RNFirebaseNotifications.m */; }; + 2A0C966126A297B3D07024632C4367E7 /* RCTBorderStyle.h in Headers */ = {isa = PBXBuildFile; fileRef = 2A6F65F4B0F74C7D35F8BEEBC0871B78 /* RCTBorderStyle.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2A0E1DCF4CEF3E199FEF0ED767146681 /* RCTConvertHelpers.mm in Sources */ = {isa = PBXBuildFile; fileRef = 0BD770BE826215295C464B2BD109D4F0 /* RCTConvertHelpers.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32"; }; }; + 2A13E0D6D5598EB9B57F78F3CD74774E /* EXVideoThumbnailsModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 7FDF0F24A5C291A3514EA45D08188575 /* EXVideoThumbnailsModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2A271C1605508A90C3BA1EAB6BAADC3E /* react-native-document-picker-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 71E18A5D75C4D4C29F1DE0ED91933EC6 /* react-native-document-picker-dummy.m */; }; + 2A3B68B376B56AA14142534390120DD4 /* NativeToJsBridge.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 92618CDA795D5074D33BCF6116E24E46 /* 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 = 3F2700851C4165B395335A1B0169844C /* FlipperResponder.h */; settings = {ATTRIBUTES = (Project, ); }; }; 2A996496C046119E9D62610932CC69FD /* FlowableTimeoutOperator.h in Headers */ = {isa = PBXBuildFile; fileRef = 368A4AD8773CF8767E6EC2DA65901B5B /* FlowableTimeoutOperator.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2ACFB7C65A61B40D30B5CAB420AB071D /* RCTModuloAnimatedNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 14491B988359F95819D696C672587578 /* RCTModuloAnimatedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2ACFB7C65A61B40D30B5CAB420AB071D /* RCTModuloAnimatedNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 9F71BB6C150C9561A8F81C26D5B6072D /* RCTModuloAnimatedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; 2B174A54A84B51ADFBD45E40110F0D25 /* AsyncTimeout.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D9BBC063CBF188E2AD7CFC22794FFCCA /* 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 = 8B6AF205362728DCEA85500386C83D19 /* 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 = 365A6806983A06E40D88574D1A430189 /* RCTSRWebSocket.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2B2A1CCDBA8AD8D264967730D01F3FA4 /* UMPermissionsMethodsDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = 27E6AED9FBDEF38A7FA78B749F80EA24 /* UMPermissionsMethodsDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2B25C91103E9A7DA0BF82DE4DF7BCEE6 /* RCTSRWebSocket.h in Headers */ = {isa = PBXBuildFile; fileRef = 9155F1558DD326F6623D3BB9857B7CEC /* RCTSRWebSocket.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2B2A1CCDBA8AD8D264967730D01F3FA4 /* UMPermissionsMethodsDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = 5B6B4BC02A816B7BBEDECAF405C0C1FB /* UMPermissionsMethodsDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; }; 2B2FAFDA8347BE2821FED5D48AB3A547 /* EventBase.h in Headers */ = {isa = PBXBuildFile; fileRef = 73F99FDDD043F3C123FD799F02E251D2 /* EventBase.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2B4FBEC74AEA5E28A513305A9E602882 /* RCTImageStoreManager.mm in Sources */ = {isa = PBXBuildFile; fileRef = 5CE3DF498DAECCDBB770650734DEA869 /* 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 = 6C01B0B04ED5559FDBFB6896F2E1CD1B /* RCTRootViewDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2B4FBEC74AEA5E28A513305A9E602882 /* RCTImageStoreManager.mm in Sources */ = {isa = PBXBuildFile; fileRef = 6218F903901039453CE958BDA4DA217B /* 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 = A345FE4E7777B59E1D2D315643B09957 /* RCTRootViewDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; }; 2B79DAF1B46E07D72A44DCAFB639C819 /* FlipperConnection.h in Headers */ = {isa = PBXBuildFile; fileRef = 7033DB819E816E3EB425094FB4A1EE45 /* FlipperConnection.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2B830C91775D329B828183C837A9EFF8 /* RCTAsyncLocalStorage.mm in Sources */ = {isa = PBXBuildFile; fileRef = 16663CF894AFA1FC253A61AE2AC172FB /* 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 = 11D2E193F815FCC16109E3E518583288 /* 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 = FB9ACCB262979045248720B56036D60E /* StringKeyedMap.h */; settings = {ATTRIBUTES = (Project, ); }; }; 2BB382DB7792FE1E8269B4710E90EFFE /* Random.h in Headers */ = {isa = PBXBuildFile; fileRef = C9107F956D575ABB532F70D331DA2C31 /* Random.h */; settings = {ATTRIBUTES = (Project, ); }; }; 2BD172C6FB7DF31CC3EFA3CE085B4126 /* predictor_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = 78EA4FAF835F44E1DF805704CAFA9D89 /* predictor_enc.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; 2C03900917DC61024FD067977229C3D1 /* GDTCORTargets.h in Headers */ = {isa = PBXBuildFile; fileRef = 3E6A5F25F40F4E0E18F49EEA5D28EF3C /* GDTCORTargets.h */; settings = {ATTRIBUTES = (Project, ); }; }; 2C3D875B1658DA6BC9946D437202C839 /* ExceptionWrapper-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 2A98DB0A4AB17DB921C1ED635750D654 /* ExceptionWrapper-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2C4554B6732E389B6C115718BD45701D /* SDWebImageManager.m in Sources */ = {isa = PBXBuildFile; fileRef = B198F49D093D4120C0EFEA102F189FE1 /* SDWebImageManager.m */; }; - 2C4587AD15A7973ECE6637EDA1DFBF08 /* EXFilePermissionModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 3DFF981C47CA2DEF0ABD18204C9C309B /* EXFilePermissionModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2C4554B6732E389B6C115718BD45701D /* SDWebImageManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 055F1FB54BFD80FFBFF62315A5BB21A5 /* SDWebImageManager.m */; }; + 2C4587AD15A7973ECE6637EDA1DFBF08 /* EXFilePermissionModule.h in Headers */ = {isa = PBXBuildFile; fileRef = E106072A9786E64AC33CA00920659D39 /* EXFilePermissionModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; 2C6D65B3FBD38D8AD43897EBAE585914 /* VirtualEventBase.h in Headers */ = {isa = PBXBuildFile; fileRef = 6995201D39391D5D46F8A69770F753F7 /* VirtualEventBase.h */; settings = {ATTRIBUTES = (Project, ); }; }; 2C76D04357B9263B3E31FF7C30424670 /* GDTCORTransport_Private.h in Headers */ = {isa = PBXBuildFile; fileRef = AA8B5FDB85C551C1FA351B3A70116816 /* GDTCORTransport_Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; 2C813CFB5B807A3B361E5EC77152152D /* Dirent.h in Headers */ = {isa = PBXBuildFile; fileRef = 50ABB863B576FFD6C6CA53511D921D2D /* Dirent.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2C89CAC103055E4326DDE29E97713CE6 /* UMReactNativeAdapter-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 071EAC1216B90DC198CDBCF0BD16D771 /* UMReactNativeAdapter-dummy.m */; }; - 2CDAC043E586A4E33786C82BEFBB0DBF /* RNRootViewGestureRecognizer.m in Sources */ = {isa = PBXBuildFile; fileRef = 754BADBA4BFF71A5E54EF704A1ECF345 /* RNRootViewGestureRecognizer.m */; }; - 2CE08EC7BA09068921151F10810607FF /* RNJitsiMeetView.h in Headers */ = {isa = PBXBuildFile; fileRef = 91937954EC3D19154FBDF69F9966BDCD /* RNJitsiMeetView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2CE339DE51DB76536A63008724250668 /* RCTShadowView+Layout.h in Headers */ = {isa = PBXBuildFile; fileRef = 359E24958405B6EDF860F722188F7647 /* RCTShadowView+Layout.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2D0E5271D5737630B32CBDBE8AF16971 /* UMReactNativeEventEmitter.m in Sources */ = {isa = PBXBuildFile; fileRef = 567A0387E0B73D92544B9B6AE5BD82B3 /* UMReactNativeEventEmitter.m */; }; + 2C89CAC103055E4326DDE29E97713CE6 /* UMReactNativeAdapter-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 5543726EBB5319EBD0B38E1E77D6B8AB /* UMReactNativeAdapter-dummy.m */; }; + 2CDAC043E586A4E33786C82BEFBB0DBF /* RNRootViewGestureRecognizer.m in Sources */ = {isa = PBXBuildFile; fileRef = 47F989B94765482BFD24D2F8FFBF61DC /* RNRootViewGestureRecognizer.m */; }; + 2CE08EC7BA09068921151F10810607FF /* RNJitsiMeetView.h in Headers */ = {isa = PBXBuildFile; fileRef = C3F1A0AE9A8D78D358EC27C3B482274B /* RNJitsiMeetView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2CE339DE51DB76536A63008724250668 /* RCTShadowView+Layout.h in Headers */ = {isa = PBXBuildFile; fileRef = A656530FCBC00836B154E428A92A214E /* RCTShadowView+Layout.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2D0E5271D5737630B32CBDBE8AF16971 /* UMReactNativeEventEmitter.m in Sources */ = {isa = PBXBuildFile; fileRef = 5B54DCCBB9C9F5B553048183F574F9B2 /* UMReactNativeEventEmitter.m */; }; 2D94B903B687465A1A40CEBEE7FEC6E9 /* Frame.cpp in Sources */ = {isa = PBXBuildFile; fileRef = E13643F75BB289AFC9F56E8FF8185514 /* 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 = 205617F2BA6572C4FB0072874D254967 /* FBLPromise+Testing.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2DF43783BAC61EA95D674BD58E390775 /* RCTSurfaceHostingProxyRootView.h in Headers */ = {isa = PBXBuildFile; fileRef = 564DEFDF58ED06E037C757714E253443 /* RCTSurfaceHostingProxyRootView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2E014AAF39426DBC26D47DBDC691ED5F /* REATransitionValues.m in Sources */ = {isa = PBXBuildFile; fileRef = D2546F5A27DAACFE9A10A9538869FCFD /* REATransitionValues.m */; }; + 2DF43783BAC61EA95D674BD58E390775 /* RCTSurfaceHostingProxyRootView.h in Headers */ = {isa = PBXBuildFile; fileRef = AEE5B1178974C42B0AD7B48FCBEF3FF9 /* RCTSurfaceHostingProxyRootView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2E014AAF39426DBC26D47DBDC691ED5F /* REATransitionValues.m in Sources */ = {isa = PBXBuildFile; fileRef = B58827B26E4A27503B4CA101D529FF77 /* REATransitionValues.m */; }; 2E08E47CF3B7BCEAB85479248233BE52 /* SKObject.mm in Sources */ = {isa = PBXBuildFile; fileRef = 5D930C8097F51F6E54956A6D4D9DAA8A /* 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 = BFA07440A8E55C4863268CEC6E8C645C /* SDImageHEICCoderInternal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2E7763FC85109EAE2D59FE71C3B17D79 /* BSG_KSCrashType.h in Headers */ = {isa = PBXBuildFile; fileRef = 5716A6D1621B8CE34399740BD56D3A5A /* BSG_KSCrashType.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2E78136632F05B8D8F8CCA6F8B62AB6D /* SDAnimatedImage.m in Sources */ = {isa = PBXBuildFile; fileRef = FDFEC8B96013B1DE8EFFE4967BC17D42 /* SDAnimatedImage.m */; }; + 2E7763FC85109EAE2D59FE71C3B17D79 /* BSG_KSCrashType.h in Headers */ = {isa = PBXBuildFile; fileRef = 2D1E434D8F0C729C65FBABAEA976A74C /* BSG_KSCrashType.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2E78136632F05B8D8F8CCA6F8B62AB6D /* SDAnimatedImage.m in Sources */ = {isa = PBXBuildFile; fileRef = C098C8D5C715F5E1A1A851402AD3DDD1 /* SDAnimatedImage.m */; }; 2EAF41297C07BA08EDDBED38825EFD51 /* ApplyTuple.h in Headers */ = {isa = PBXBuildFile; fileRef = 0B20C7AD4C0DAFD0A549410FB953D3C7 /* ApplyTuple.h */; settings = {ATTRIBUTES = (Project, ); }; }; 2EB201AFA7B7067271DF082293CF9112 /* Format.cpp in Sources */ = {isa = PBXBuildFile; fileRef = C0C7F5B506A4CC32E2F13CD387EEFE0D /* 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 = 34E54A0143BAC6774E7ED46216E9562D /* RCTFollyConvert.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2EC239D84B20011AE1A05A0CFCE4E647 /* EXAudioSessionManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 0BF107D5D9DB209E57E52C2D601BFC40 /* EXAudioSessionManager.m */; }; - 2EC5425BB144046F7F37DB3FA09A3376 /* RCTProfileTrampoline-i386.S in Sources */ = {isa = PBXBuildFile; fileRef = 2B5B4D65517EA9E604FDECF4A1846876 /* RCTProfileTrampoline-i386.S */; }; + 2EB408F37923E5B678BADA8BB3AF48F2 /* RCTFollyConvert.h in Headers */ = {isa = PBXBuildFile; fileRef = 347C1369A1F9E9A6B99CC9B3E9CC2BE1 /* RCTFollyConvert.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2EC239D84B20011AE1A05A0CFCE4E647 /* EXAudioSessionManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 1A50A89720C38C6F8D00510AC3D00E66 /* EXAudioSessionManager.m */; }; + 2EC5425BB144046F7F37DB3FA09A3376 /* RCTProfileTrampoline-i386.S in Sources */ = {isa = PBXBuildFile; fileRef = 2ED2342C10FD39C1A52702417DE88FE2 /* RCTProfileTrampoline-i386.S */; }; 2F130EEE4A67FFFF1EA597F7391EC78D /* Pods-ShareRocketChatRN-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 74FE0A6812B600DE9F54562F0F69D2DE /* Pods-ShareRocketChatRN-umbrella.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2F2C4147704FC8631687DFD85CF1C60A /* RCTView.m in Sources */ = {isa = PBXBuildFile; fileRef = 2701234FB9632D24B2506BBBD4163530 /* RCTView.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 2F2C4147704FC8631687DFD85CF1C60A /* RCTView.m in Sources */ = {isa = PBXBuildFile; fileRef = 5D5FF0C31960268F09B44977A369A259 /* RCTView.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 2F358CCBC15C773B0E8BC8B20277192E /* NSImage+Compatibility.h in Headers */ = {isa = PBXBuildFile; fileRef = FBFC30F32120E94E520F8ADA9BF1F696 /* NSImage+Compatibility.h */; settings = {ATTRIBUTES = (Project, ); }; }; 2F3762F547283D037D6BF8A882085851 /* IOVec.h in Headers */ = {isa = PBXBuildFile; fileRef = E7C7864BAEE54C69674AD01F6A74B8CB /* IOVec.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2F3E6CFDE51DA53D85F9F0B1E585D2C2 /* RNCAppearanceProvider.h in Headers */ = {isa = PBXBuildFile; fileRef = 9AFFEDDE7CFB2C5E2CA5311D2F76B264 /* RNCAppearanceProvider.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2F590231D8B24A4726C9B4C08F8A95FD /* BSG_KSSingleton.h in Headers */ = {isa = PBXBuildFile; fileRef = 1F6F2CFA01EC3575434B192A4A609F3A /* BSG_KSSingleton.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2F3E6CFDE51DA53D85F9F0B1E585D2C2 /* RNCAppearanceProvider.h in Headers */ = {isa = PBXBuildFile; fileRef = 344CE5009D65C274F4AD6785A32E6357 /* RNCAppearanceProvider.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2F590231D8B24A4726C9B4C08F8A95FD /* BSG_KSSingleton.h in Headers */ = {isa = PBXBuildFile; fileRef = 2D6EF7CE3655E35BBB5D43A557C623D4 /* BSG_KSSingleton.h */; settings = {ATTRIBUTES = (Project, ); }; }; 2F998A4B72485CE3C7114765011202B1 /* GDTCORConsoleLogger.h in Headers */ = {isa = PBXBuildFile; fileRef = 2C93089C71CB9569A26437215513C814 /* GDTCORConsoleLogger.h */; settings = {ATTRIBUTES = (Project, ); }; }; 2FA7A5A12876AA7C4D5903A9C5B74B3A /* Spin.h in Headers */ = {isa = PBXBuildFile; fileRef = F43A60CFC55D10B7A676CF564B1E4408 /* Spin.h */; settings = {ATTRIBUTES = (Project, ); }; }; 2FB4E6CEC54F509D46FCEBE53DEA65A1 /* GULAppEnvironmentUtil.m in Sources */ = {isa = PBXBuildFile; fileRef = 5427922F1C6F6A3813320CC20FB58D51 /* GULAppEnvironmentUtil.m */; }; - 2FD56DFD6405D75AC16D258A4AC0F49F /* RNCWebViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 57339AC3E4854CA0132274F301561DC6 /* RNCWebViewManager.m */; }; - 2FE803AD2F6A7E8DC5898A9563ADF11E /* SDWebImageDownloaderConfig.m in Sources */ = {isa = PBXBuildFile; fileRef = 0A8F55A8C8BB50C6855CDE1204DD1AFF /* SDWebImageDownloaderConfig.m */; }; + 2FD56DFD6405D75AC16D258A4AC0F49F /* RNCWebViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 9CD2CBBBCA92EADE3D2CF06DB0726F81 /* RNCWebViewManager.m */; }; + 2FE803AD2F6A7E8DC5898A9563ADF11E /* SDWebImageDownloaderConfig.m in Sources */ = {isa = PBXBuildFile; fileRef = B4AAF705609470DBD312A25B2E70A768 /* SDWebImageDownloaderConfig.m */; }; 30048C1ED58BCA8F8305E97FE14CCED0 /* IPAddressV4.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 134809788D95B1424C9966E8E30A136E /* 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 = 391DCE7E1FC1980DD72A702B02280B80 /* IPAddressV6.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3024D29596A05D6D26B00A2D584A7A55 /* RCTTextViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 404125022A4DE6ACDF8B89CC27579A03 /* RCTTextViewManager.m */; }; + 3024D29596A05D6D26B00A2D584A7A55 /* RCTTextViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 185CD58BED2B02551383ABB98EB8B447 /* RCTTextViewManager.m */; }; 30363912631BB1C44CADF345BE0C724C /* UIView+SKInvalidation.h in Headers */ = {isa = PBXBuildFile; fileRef = 652C6468FA0798C97AF94D97EEA5B6DA /* UIView+SKInvalidation.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 304DA0D33346E09E619AAD904E6CFD85 /* RCTPackagerClient.h in Headers */ = {isa = PBXBuildFile; fileRef = 916C8D170D3596242144EB807F11113B /* RCTPackagerClient.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 304DA0D33346E09E619AAD904E6CFD85 /* RCTPackagerClient.h in Headers */ = {isa = PBXBuildFile; fileRef = 354E0CF6123FD7C6CB2290A9B3B94905 /* RCTPackagerClient.h */; settings = {ATTRIBUTES = (Project, ); }; }; 3060BF1405F7ABB478493A90B64FCFCB /* F14SetFallback.h in Headers */ = {isa = PBXBuildFile; fileRef = 9C3FD4AE0C7D7460F1D8CABAF16FF714 /* F14SetFallback.h */; settings = {ATTRIBUTES = (Project, ); }; }; 3065F04E0401C33C4AC2E4E36A416605 /* FBLPromise+Validate.h in Headers */ = {isa = PBXBuildFile; fileRef = F24F6CF589AAEA086940626C57E92799 /* FBLPromise+Validate.h */; settings = {ATTRIBUTES = (Project, ); }; }; 308C87640D35D1E3C633032AF321F283 /* ConsumerBase.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FD101156B2BC06522BA75AE5CBC21471 /* 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"; }; }; @@ -786,23 +785,23 @@ 30EFA1CE7F1133015F0E3E10A28316CF /* quant_levels_dec_utils.h in Headers */ = {isa = PBXBuildFile; fileRef = A25A52CD12189FE3A4F7F4CA22582AF6 /* quant_levels_dec_utils.h */; settings = {ATTRIBUTES = (Project, ); }; }; 31104DDF23E644091D0B208B51B3F550 /* upsampling_sse2.c in Sources */ = {isa = PBXBuildFile; fileRef = 7BA9A89DD0043C79CC3773D2A576B47E /* upsampling_sse2.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; 314BEFBCD6A8C616A4589D1939461D15 /* GULKeychainStorage.m in Sources */ = {isa = PBXBuildFile; fileRef = 73EDE3EEF45AE2EABE6B40C4440BC958 /* GULKeychainStorage.m */; }; - 316E7D6240A4CBFE7A3174962EEA4914 /* JSDeltaBundleClient.h in Headers */ = {isa = PBXBuildFile; fileRef = F315CF8B919693216DB3F453348507C8 /* JSDeltaBundleClient.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 318291D218B6B634DED9426B8388A64B /* EXAppleAuthenticationButtonViewManagers.m in Sources */ = {isa = PBXBuildFile; fileRef = 8F4AF770831C42771BFF441F32A06190 /* EXAppleAuthenticationButtonViewManagers.m */; }; - 31935F903EB3421E32FCD701A8DBD38F /* RNCSlider.m in Sources */ = {isa = PBXBuildFile; fileRef = 3190F6F63102777D0B20446986C48AC0 /* RNCSlider.m */; }; + 316E7D6240A4CBFE7A3174962EEA4914 /* JSDeltaBundleClient.h in Headers */ = {isa = PBXBuildFile; fileRef = 380F21485E96746C91776F76BBBB30AE /* JSDeltaBundleClient.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 318291D218B6B634DED9426B8388A64B /* EXAppleAuthenticationButtonViewManagers.m in Sources */ = {isa = PBXBuildFile; fileRef = 3E32FE0F21A00210D276A032C57E7D94 /* EXAppleAuthenticationButtonViewManagers.m */; }; + 31935F903EB3421E32FCD701A8DBD38F /* RNCSlider.m in Sources */ = {isa = PBXBuildFile; fileRef = AA184AA44C09A55DD786659F1C305647 /* RNCSlider.m */; }; 31962DADDDE276F6ABB6754ED6E7EE1E /* RSocketServiceHandler.cpp in Sources */ = {isa = PBXBuildFile; fileRef = AAC48D7F1751CB19AA0F6FF5619610CA /* 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 = 6004474FF0FF4E8ADF74104D607D5934 /* FlipperCppBridgingConnection.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 31A892DBD91E377E85107B4FC88FEED1 /* RCTInterpolationAnimatedNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 4D30D8C74FFA15785DB15BC7AFBAA963 /* RCTInterpolationAnimatedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 31A892DBD91E377E85107B4FC88FEED1 /* RCTInterpolationAnimatedNode.h in Headers */ = {isa = PBXBuildFile; fileRef = ADC029174C414146767FB794F08E18DF /* RCTInterpolationAnimatedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; 31CA1F80D4661804D819BD261F21AFC5 /* DistributedMutex-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 2E51A17A62CC1ED1DD8973517632E8A4 /* DistributedMutex-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; 31FD8DFA47B6AEDCBB2D1C7B48A2B1CF /* OpenSSLLockTypes.h in Headers */ = {isa = PBXBuildFile; fileRef = C20AF5E435127DBA67BC1E57B6561AD6 /* OpenSSLLockTypes.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 32139BEE9683EC3EE16573BEFF42C21C /* BSGSerialization.h in Headers */ = {isa = PBXBuildFile; fileRef = 7AD03E484778128BB377B052A004064B /* BSGSerialization.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 32139BEE9683EC3EE16573BEFF42C21C /* BSGSerialization.h in Headers */ = {isa = PBXBuildFile; fileRef = CA846BDE2EDE3F5DC81DBA1812FB3C9F /* BSGSerialization.h */; settings = {ATTRIBUTES = (Project, ); }; }; 321E5783FD6AB1B2E124AE90C409D435 /* SingleWriterFixedHashMap.h in Headers */ = {isa = PBXBuildFile; fileRef = 113CABA82A1AFDABBD9BD0633DB77BE6 /* SingleWriterFixedHashMap.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3240E20C3A58ACFE15D21D48E1D40A6B /* RNForceTouchHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = 664B5DC0915CFC4E8AB867A5708297D9 /* RNForceTouchHandler.m */; }; + 3240E20C3A58ACFE15D21D48E1D40A6B /* RNForceTouchHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = 5A8666C51AA970E98956600ECED8846D /* RNForceTouchHandler.m */; }; 3259B3941D9E4CC09A9A27E51E89450E /* DiscriminatedPtr.h in Headers */ = {isa = PBXBuildFile; fileRef = 8A27E7CCF0BE3E67CAAEB68881FE3132 /* DiscriminatedPtr.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 32622CE75F78F8E2F8D5400CD2CB17DC /* FFFastImageView.m in Sources */ = {isa = PBXBuildFile; fileRef = 2625B767D0A3165A55BF95193B14F6A5 /* FFFastImageView.m */; }; - 3268AC6F8341AD59A356F49E24D7A68C /* EXVideoView.m in Sources */ = {isa = PBXBuildFile; fileRef = C0C8628D3ECA2DC14F6E5DAFEF019A26 /* EXVideoView.m */; }; - 3281A3156AD63267FDA1D1D4DA80D5DE /* BSG_KSCrashSentry_User.h in Headers */ = {isa = PBXBuildFile; fileRef = 167E5DDA48F3A4D87178E63BE121B4F0 /* BSG_KSCrashSentry_User.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 32622CE75F78F8E2F8D5400CD2CB17DC /* FFFastImageView.m in Sources */ = {isa = PBXBuildFile; fileRef = E9579DC85087657D5B0F17AFDE446A38 /* FFFastImageView.m */; }; + 3268AC6F8341AD59A356F49E24D7A68C /* EXVideoView.m in Sources */ = {isa = PBXBuildFile; fileRef = 7242B0B52023ED80CB4CCBD4BF5BE02B /* EXVideoView.m */; }; + 3281A3156AD63267FDA1D1D4DA80D5DE /* BSG_KSCrashSentry_User.h in Headers */ = {isa = PBXBuildFile; fileRef = 818F50374AF6697018699132471F5A9B /* BSG_KSCrashSentry_User.h */; settings = {ATTRIBUTES = (Project, ); }; }; 3292BA9319F6A044C79AE28E0D918FC5 /* utils.c in Sources */ = {isa = PBXBuildFile; fileRef = A624B6E2C6A10911DD280873B241BCA2 /* utils.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 3299094AA6F9AAD51F2C6B7EFA6F7283 /* RCTVibrationPlugins.mm in Sources */ = {isa = PBXBuildFile; fileRef = 4BF56BE3E96D4B9ADB90A98D1091192B /* 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 = 0AF1AD54C5CF460203BD0AA933CE0D69 /* 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 = DF3769950C7FA25FE17811F6ABFE5CE3 /* small_vector.h */; settings = {ATTRIBUTES = (Project, ); }; }; 32A725DD12977D66DE1D185F429EAD35 /* AsyncSocketException.h in Headers */ = {isa = PBXBuildFile; fileRef = 1F17B1D8B12505C59B68DEF70AA852D5 /* AsyncSocketException.h */; settings = {ATTRIBUTES = (Project, ); }; }; 32AC28388DEBC44E892603D239EEDE0B /* AsyncSocketException.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2CFC64A70AB0E91C95E6C266AD5D221B /* 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"; }; }; @@ -813,257 +812,258 @@ 336AF37B5F585C4DF000A22B615C60CB /* UniqueInstance.h in Headers */ = {isa = PBXBuildFile; fileRef = DADC31C9BC5C1E83908E3894CD1ABB20 /* UniqueInstance.h */; settings = {ATTRIBUTES = (Project, ); }; }; 337AD4C3D05F965B85CAE6BCFC70C73F /* RSocketServer.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 12EC624D805F2A2DF72612BAE59EF11A /* 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 = 2F96BBC2C349EFE0561E41FF1D59ADE2 /* Assume-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3381A15E738D9B9F0E2B4E5B6962EF59 /* NSError+BSG_SimpleConstructor.h in Headers */ = {isa = PBXBuildFile; fileRef = 23FC3234B2DB57E1ED7030BCE13BB424 /* NSError+BSG_SimpleConstructor.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 33825AE552B86EA4DFF1456042AB3861 /* RCTBridgeMethod.h in Headers */ = {isa = PBXBuildFile; fileRef = F3A0A2FEF9B77CEC928875C842D41586 /* RCTBridgeMethod.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3387000CC1D65427B1EF0E7A6D10FB83 /* RCTScrollViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 65ED8E6D61F888582FD232F2EF962FE9 /* 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 = BFB653590FB299B61B9D0198545B5D53 /* SDImageCacheConfig.m */; }; - 33C906D21E0095E99444F2130D76E9F4 /* UMViewManagerAdapter.h in Headers */ = {isa = PBXBuildFile; fileRef = 3112F58816F680D616BEE524C8BA9360 /* UMViewManagerAdapter.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 33C9DAD6F6980D6E44985EE759169311 /* BugsnagErrorReportApiClient.m in Sources */ = {isa = PBXBuildFile; fileRef = FEF078F0F06D226117C9B44CCF7A934A /* BugsnagErrorReportApiClient.m */; }; - 34544937627B86CB42BB16F02E12B037 /* RCTMaskedViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = E8A93A2F6D99EEE18CCA27D6486437B7 /* RCTMaskedViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3463C175D4F311CD3A28FF95ACA98E00 /* NSTextStorage+FontScaling.h in Headers */ = {isa = PBXBuildFile; fileRef = 16BEFE6A5F51633D8AE6553FDE7F2B38 /* NSTextStorage+FontScaling.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3473A25D4D716A7FCC6576D1D71CB291 /* BSG_KSJSONCodecObjC.m in Sources */ = {isa = PBXBuildFile; fileRef = 078ACB560B9DF301B22DB27AC0251D1B /* BSG_KSJSONCodecObjC.m */; }; - 347B182C399E95A640EE32BA18E0D4B0 /* RCTFont.h in Headers */ = {isa = PBXBuildFile; fileRef = 3CC873D1D6B745AC90DADC4CB32145AA /* RCTFont.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3381A15E738D9B9F0E2B4E5B6962EF59 /* NSError+BSG_SimpleConstructor.h in Headers */ = {isa = PBXBuildFile; fileRef = 2FE8B577D2DEB6FA142EB03FF7D631E6 /* NSError+BSG_SimpleConstructor.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 33825AE552B86EA4DFF1456042AB3861 /* RCTBridgeMethod.h in Headers */ = {isa = PBXBuildFile; fileRef = B9A8CE8AB23F13A5DE6C1D112A93B1E2 /* RCTBridgeMethod.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3387000CC1D65427B1EF0E7A6D10FB83 /* RCTScrollViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 7D26AF808C0663F5447E6935843F2B2B /* 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 = 3FB43F8CBBD97000C841E4D7F68D2B2B /* SDImageCacheConfig.m */; }; + 33C906D21E0095E99444F2130D76E9F4 /* UMViewManagerAdapter.h in Headers */ = {isa = PBXBuildFile; fileRef = 3946D661F26F8CD342B8AECEC042778D /* UMViewManagerAdapter.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 33C9DAD6F6980D6E44985EE759169311 /* BugsnagErrorReportApiClient.m in Sources */ = {isa = PBXBuildFile; fileRef = 7DDE7A89F4A196143E6A33D558D24471 /* BugsnagErrorReportApiClient.m */; }; + 33E573075013DE8B348024AA6413D694 /* SDImageCachesManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 30C96B6FBE38ADE27EA3D6006C0AC7A0 /* SDImageCachesManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 34544937627B86CB42BB16F02E12B037 /* RCTMaskedViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = FE222648312FC765F32405109A39FF59 /* RCTMaskedViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3463C175D4F311CD3A28FF95ACA98E00 /* NSTextStorage+FontScaling.h in Headers */ = {isa = PBXBuildFile; fileRef = C676779F45FF6BC42177BCB13DF550B3 /* NSTextStorage+FontScaling.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3473A25D4D716A7FCC6576D1D71CB291 /* BSG_KSJSONCodecObjC.m in Sources */ = {isa = PBXBuildFile; fileRef = 8AAD211E267197C6B8D8D8EE6F9F479D /* BSG_KSJSONCodecObjC.m */; }; + 347B182C399E95A640EE32BA18E0D4B0 /* RCTFont.h in Headers */ = {isa = PBXBuildFile; fileRef = BCC4D855AACA3DD8AE78A555F77C84D8 /* RCTFont.h */; settings = {ATTRIBUTES = (Project, ); }; }; 34DC275EEE112BBD0C9C8E142883BF10 /* StreamThroughputTcp.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 4284C13E0107188DC785753754385D52 /* 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 = 2A825626709AF13F75D065EFCC2E9178 /* RNCWebViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 34E70A33FF98EC9CFCC391F122B36E87 /* RNCWebViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 2DD091879376E20B8F2125188DF93C9F /* RNCWebViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; 34EA20ADEFC65F6118975776F29B5ABE /* picture_csp_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = 024F789B72FA8D92CC84DCD82857AD1C /* picture_csp_enc.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 35269B5057CDDCC7DEA2FE786C99AF9E /* RNFetchBlobConst.m in Sources */ = {isa = PBXBuildFile; fileRef = DA5D0AA93E7BE6BC076BCC751014EF46 /* RNFetchBlobConst.m */; }; - 3537CE1621452E04CE333F76DC5EA2FE /* RNFirebaseAnalytics.m in Sources */ = {isa = PBXBuildFile; fileRef = 7C62E93D5388B7592EDAB0D07709AE40 /* RNFirebaseAnalytics.m */; }; + 35269B5057CDDCC7DEA2FE786C99AF9E /* RNFetchBlobConst.m in Sources */ = {isa = PBXBuildFile; fileRef = 19A5C1BAF8428B34150303C337E44879 /* RNFetchBlobConst.m */; }; + 3537CE1621452E04CE333F76DC5EA2FE /* RNFirebaseAnalytics.m in Sources */ = {isa = PBXBuildFile; fileRef = 1BE9A8CD55DC781F4413E34D62808E82 /* RNFirebaseAnalytics.m */; }; 353B9345CE16AF6338035CFD93D16671 /* InitThreadFactory.h in Headers */ = {isa = PBXBuildFile; fileRef = 1B68E9A3C2EB364D589D3580A9545F9B /* InitThreadFactory.h */; settings = {ATTRIBUTES = (Project, ); }; }; 353E3AF04FFD70145B93E29D0B322A3B /* ChannelRequester.h in Headers */ = {isa = PBXBuildFile; fileRef = 65D3CD29CCCF80F74B831E34B4DB49BC /* ChannelRequester.h */; settings = {ATTRIBUTES = (Project, ); }; }; 35509AB2DE9757199EE5A9A606C9E058 /* pl.lproj in Resources */ = {isa = PBXBuildFile; fileRef = CC19DEFC6439BD6658EB9C08F118CBAD /* pl.lproj */; }; - 3567CB332EA82A9AC5E4B08594213F26 /* ARTTextManager.h in Headers */ = {isa = PBXBuildFile; fileRef = C1BC8CA70E28EA5EF4D34F254C9D63C3 /* ARTTextManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 357556976C6B4B8D49DD1E04031A3BA9 /* Yoga-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = AE644E26D8F04368E378F7B19A941786 /* Yoga-dummy.m */; }; + 3567CB332EA82A9AC5E4B08594213F26 /* ARTTextManager.h in Headers */ = {isa = PBXBuildFile; fileRef = ACECABC145F13DC1C30D839FBBCA96ED /* ARTTextManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 357556976C6B4B8D49DD1E04031A3BA9 /* Yoga-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 6F606FB1A4ADEE677F2D6EA1C1167C40 /* Yoga-dummy.m */; }; 3585440364A592462F3DAB4360A8A9C4 /* Util.h in Headers */ = {isa = PBXBuildFile; fileRef = B15F68A62E7CA9CF78F4A1D8A499A4CF /* Util.h */; settings = {ATTRIBUTES = (Project, ); }; }; 35D47F3D1A1DBD7B85CBF95EEB5D1CA5 /* StringKeyedSet.h in Headers */ = {isa = PBXBuildFile; fileRef = 7F6D72CF3105B4E6E2B3311514B7C10B /* StringKeyedSet.h */; settings = {ATTRIBUTES = (Project, ); }; }; 35DDD6805DDD9E1BD962EFE1F8B3FDE1 /* FBLPromise+Await.m in Sources */ = {isa = PBXBuildFile; fileRef = 624112E646914E16C271BDFBEBF5372D /* FBLPromise+Await.m */; }; 360DEDF4ABD8983B2E0C41923685FB55 /* ThreadWheelTimekeeperHighRes.h in Headers */ = {isa = PBXBuildFile; fileRef = C21CCDB4AB9E50DE25A182A1A5788054 /* ThreadWheelTimekeeperHighRes.h */; settings = {ATTRIBUTES = (Project, ); }; }; 361A2F0A5202176F40E488F6D554E381 /* GDTCOREventTransformer.h in Headers */ = {isa = PBXBuildFile; fileRef = C9E37D0A7EF15030428AF98EAE0601B9 /* GDTCOREventTransformer.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 36360FCF5DF26972E15B00638335C00A /* UIImageView+WebCache.m in Sources */ = {isa = PBXBuildFile; fileRef = ED85978DBD2A2A4FCC68CC490BE3CE4D /* UIImageView+WebCache.m */; }; + 36360FCF5DF26972E15B00638335C00A /* UIImageView+WebCache.m in Sources */ = {isa = PBXBuildFile; fileRef = 92A9CFF14F428AD5116CFFDFEFC1CADF /* UIImageView+WebCache.m */; }; 3645C6820057437CDBE24F59A3694F89 /* FBLPromise+Catch.m in Sources */ = {isa = PBXBuildFile; fileRef = DED6AD875BC4C446ED34B3ABFBEF4B0D /* FBLPromise+Catch.m */; }; - 366116BABF4984007964E29E1D5ABD22 /* RCTConvert+UIBackgroundFetchResult.h in Headers */ = {isa = PBXBuildFile; fileRef = 6060942BEAD2B3B29663F1F50D7605DD /* RCTConvert+UIBackgroundFetchResult.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 36639B3E5EFD659484EA7418ADBC3F1B /* SDImageGraphics.m in Sources */ = {isa = PBXBuildFile; fileRef = AB65728D71BBEAE5B472C8895E06E6C6 /* SDImageGraphics.m */; }; + 366116BABF4984007964E29E1D5ABD22 /* RCTConvert+UIBackgroundFetchResult.h in Headers */ = {isa = PBXBuildFile; fileRef = C58AB2A65F439CAF0F3F52271B89C5B8 /* RCTConvert+UIBackgroundFetchResult.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 36639B3E5EFD659484EA7418ADBC3F1B /* SDImageGraphics.m in Sources */ = {isa = PBXBuildFile; fileRef = E7E1CA3ECAD3AC58D7569AE3459DADCB /* SDImageGraphics.m */; }; 3668005604E469D2C61ABD5F410E3360 /* SocketOptionMap.h in Headers */ = {isa = PBXBuildFile; fileRef = EAA90E02DE3D4BEDAA81145ECB6D010E /* SocketOptionMap.h */; settings = {ATTRIBUTES = (Project, ); }; }; 36838A450767D18415FBE60D36FC69FB /* TcpDuplexConnection.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 14AD00F6794B75E13769E36734C64BAB /* 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 = 4DF42BF532FC18573523B1B1541B260D /* OpenSSLThreading.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 369D11ECECB94E5C764B2E9B73D58AE9 /* RCTSwitch.m in Sources */ = {isa = PBXBuildFile; fileRef = E68CC1DF95728CD766E101D0963B0270 /* 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 = 4B167CBAC7DC720B989DFA450011E400 /* RNBootSplash.m */; }; + 369D11ECECB94E5C764B2E9B73D58AE9 /* RCTSwitch.m in Sources */ = {isa = PBXBuildFile; fileRef = E061B4BB8E2EBF5350C19253CE0BD79B /* 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 = CBA342BD99C5EDFE388B9A0EE09B9D1D /* RNBootSplash.m */; }; 36C7EF28833E6681D834301FE13A86F9 /* FIRApp.h in Headers */ = {isa = PBXBuildFile; fileRef = B5641DA0FB52220D4E7D32DD81D26817 /* FIRApp.h */; settings = {ATTRIBUTES = (Project, ); }; }; 36D4E8D299A73059B713FFDAF61EC22F /* ThreadedExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = 676F49740B7638DB7B74741C75D2C906 /* ThreadedExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 36D95171D464546996955F5E08AE12BC /* JSIndexedRAMBundle.h in Headers */ = {isa = PBXBuildFile; fileRef = 53126359D02D735A3E1AC5815EF5ACB5 /* JSIndexedRAMBundle.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 36D95171D464546996955F5E08AE12BC /* JSIndexedRAMBundle.h in Headers */ = {isa = PBXBuildFile; fileRef = F0822D860C7C5F32767F89D0E73CC9A4 /* JSIndexedRAMBundle.h */; settings = {ATTRIBUTES = (Project, ); }; }; 37043ABBD4DA0792B89D11FEF04F995F /* TOCropViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 2FEE60C719A471DBD4B5E6093935C8FD /* TOCropViewController.m */; }; 37102F4139638538537682CFDBDD3521 /* FlipperClient.h in Headers */ = {isa = PBXBuildFile; fileRef = 5B33486157295DFF710C44DBFAB9E184 /* FlipperClient.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 372882F92C66AD589C117E6B98043712 /* SDWebImageIndicator.m in Sources */ = {isa = PBXBuildFile; fileRef = 7BFB63298D093460F7276CE628FD93AC /* SDWebImageIndicator.m */; }; + 372882F92C66AD589C117E6B98043712 /* SDWebImageIndicator.m in Sources */ = {isa = PBXBuildFile; fileRef = D28D8C010541734A827ADDA48F4D69B5 /* SDWebImageIndicator.m */; }; 37454D1D4E48456581921A7287508CE1 /* FBLPromise+Any.h in Headers */ = {isa = PBXBuildFile; fileRef = 32A060A76FC1635AD55AAE0FB1400BD3 /* FBLPromise+Any.h */; settings = {ATTRIBUTES = (Project, ); }; }; 374560D732665B18E6AADC57D1D9B12D /* dynamic.h in Headers */ = {isa = PBXBuildFile; fileRef = 072C64D0E7E5B999D84E772A74C31778 /* dynamic.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 37532852A078B0FD5BC654E9D95B5B1A /* BSG_KSCrashState.m in Sources */ = {isa = PBXBuildFile; fileRef = B79690820F853D09C764DCD73376DDA2 /* BSG_KSCrashState.m */; }; + 37532852A078B0FD5BC654E9D95B5B1A /* BSG_KSCrashState.m in Sources */ = {isa = PBXBuildFile; fileRef = DA7A978F0BC842852F7D42C3C856DCE6 /* BSG_KSCrashState.m */; }; 37561D58917BF3DD193FA026B4DC7819 /* buffer_dec.c in Sources */ = {isa = PBXBuildFile; fileRef = 8A9577B62669DE44C9220B05B75BA13E /* buffer_dec.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 37836713E1CF2FD3FF5AC8E73DB956C1 /* RCTShadowView.m in Sources */ = {isa = PBXBuildFile; fileRef = 08841ACBAD03EBFF0D2F52BD702B6CDA /* RCTShadowView.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 377EDD40562D695DDBE096F504D81B53 /* NSData+ImageContentType.h in Headers */ = {isa = PBXBuildFile; fileRef = 1A3B7763382C804E1C2BF90289FC018D /* NSData+ImageContentType.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 37836713E1CF2FD3FF5AC8E73DB956C1 /* RCTShadowView.m in Sources */ = {isa = PBXBuildFile; fileRef = 2821AB3094CDBDE4CF840241C0BDE5AB /* RCTShadowView.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 379AFF5081DCC0C9C35A52EB49F2FB09 /* UIImageView+WebCache.h in Headers */ = {isa = PBXBuildFile; fileRef = 7098C0DAF37152FF8BD31A8A60D7FC0F /* UIImageView+WebCache.h */; settings = {ATTRIBUTES = (Project, ); }; }; 37A8A74509CB140CA1CBD2862791F6C1 /* thread_utils.c in Sources */ = {isa = PBXBuildFile; fileRef = CB74B18282B8339F5CAA7D7FE7101893 /* thread_utils.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 37B34066BE54D6792D10B8C2F9B7752F /* threadsafe.h in Headers */ = {isa = PBXBuildFile; fileRef = 4FC3B717C83FAC114AB040CD800E0E06 /* threadsafe.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 37C9A7BFC98577A5A2F702F0D9249832 /* UIButton+WebCache.m in Sources */ = {isa = PBXBuildFile; fileRef = EB14F126E96758354800E2285FA57A06 /* UIButton+WebCache.m */; }; + 37B34066BE54D6792D10B8C2F9B7752F /* threadsafe.h in Headers */ = {isa = PBXBuildFile; fileRef = A7186477CE3EFB969E49B458B0B8DF56 /* threadsafe.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 37C9A7BFC98577A5A2F702F0D9249832 /* UIButton+WebCache.m in Sources */ = {isa = PBXBuildFile; fileRef = 57C51E509DBFDE9435124C87144D4DE9 /* UIButton+WebCache.m */; }; 37E3F0F29964F4FA9C40E1CCEA52F682 /* SwappableEventBase.h in Headers */ = {isa = PBXBuildFile; fileRef = 12685E77FBCB9CBCC8C7CBA44526FD02 /* SwappableEventBase.h */; settings = {ATTRIBUTES = (Project, ); }; }; 37EDEC2BDB04F892C3CB29C4F9A8C34E /* YogaKit-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = BD21A41F3FC35E0DFC33DF605CE33EEE /* YogaKit-umbrella.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 37FCEB31D086A0F531245307B9F7C801 /* EXFileSystem.m in Sources */ = {isa = PBXBuildFile; fileRef = 1711B188EC11F4C1FEAD7932A4A1A3DE /* EXFileSystem.m */; }; + 37FCEB31D086A0F531245307B9F7C801 /* EXFileSystem.m in Sources */ = {isa = PBXBuildFile; fileRef = 1B95F55FF707C060F41F30735F0725FA /* EXFileSystem.m */; }; 38073539C1CF74A17AC81285509C60EA /* GULNetwork.h in Headers */ = {isa = PBXBuildFile; fileRef = AF1A52C998D8171D541BEDA5F06D24AA /* GULNetwork.h */; settings = {ATTRIBUTES = (Project, ); }; }; 381F3D7E2878B051D339526BFD2EE849 /* GoogleDataTransport.h in Headers */ = {isa = PBXBuildFile; fileRef = 29D9B2C34C5B4908444142055250AE80 /* GoogleDataTransport.h */; settings = {ATTRIBUTES = (Project, ); }; }; 382D1B33DF592436E96A9505F8E9E725 /* PublisherBase.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3B01459926C4078CD55D67E0BD4E6367 /* 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 = 521CD7F02EEA41315FD805AB120C0A74 /* backward_references_cost_enc.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; 3861A71C26628C93C77FCD87EC4761FB /* Memory.h in Headers */ = {isa = PBXBuildFile; fileRef = 9C33CA0AD7B1BEE00F781E293352D69B /* Memory.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 387DD6E0D2967BDDED87AEE55A05DB16 /* RNCWKProcessPoolManager.h in Headers */ = {isa = PBXBuildFile; fileRef = DE47BFDAFC0E663561F7E81427C0C6FD /* RNCWKProcessPoolManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 387DD6E0D2967BDDED87AEE55A05DB16 /* RNCWKProcessPoolManager.h in Headers */ = {isa = PBXBuildFile; fileRef = A4D92F4E5AD43C000D17EC9F087594EE /* RNCWKProcessPoolManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 387EBCA8FD57EDD475BEFE8C73DD1051 /* SDImageIOCoder.h in Headers */ = {isa = PBXBuildFile; fileRef = 6BFE8B284F1D5547C6E7C6FD275323A0 /* SDImageIOCoder.h */; settings = {ATTRIBUTES = (Project, ); }; }; 38A3CF8E02900F0510ACAFF100A723E0 /* TimerFD.h in Headers */ = {isa = PBXBuildFile; fileRef = D3C35135DABCBA394FBD2D197842A07A /* TimerFD.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 38F35E24D856E9519A212722C0D13E59 /* RNCAsyncStorage.m in Sources */ = {isa = PBXBuildFile; fileRef = 99B30853C542D2115F98448315C2D52D /* RNCAsyncStorage.m */; }; + 38F35E24D856E9519A212722C0D13E59 /* RNCAsyncStorage.m in Sources */ = {isa = PBXBuildFile; fileRef = B4D31501231135BD6F9C77D30D0D71E6 /* RNCAsyncStorage.m */; }; 3902C93559EE5739F37997B5E9892D4F /* Request.cpp in Sources */ = {isa = PBXBuildFile; fileRef = CB1D02E2B3AB38BE201FCABAAEF17446 /* 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 = F2A3C274279BE96B58A5DE58D474AE16 /* MicroLock.h */; settings = {ATTRIBUTES = (Project, ); }; }; 390AC40A3C333FB6A81C2D20EAC1A0CF /* TestUtil.h in Headers */ = {isa = PBXBuildFile; fileRef = 9833422D7143F6C729DB2838AD7933BF /* TestUtil.h */; settings = {ATTRIBUTES = (Project, ); }; }; 392A3ECADD8AA6EE73D72561F4FDB23D /* ShutdownSocketSet.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BD915A7D91A75FD6552B9FEB4C051B45 /* 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 = 42CEC327588106C76B062F4A34140ACC /* RCTAccessibilityManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 394B7E1DD8A560A5803CFE96108B0666 /* RCTAccessibilityManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 72F3D1AEE210E583BE6F25D0CEEDDEC3 /* RCTAccessibilityManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; 3953D3F50A05E1AA87124E85621F6D92 /* Fingerprint.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A9D14EDE01F8E280A8F8150227B7F7A6 /* 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 = 2B9791A84E3FD01985C6E61A8FE2E3BA /* 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 = 13001F964D6B21E722744820848AADB7 /* 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 = 4D4387B5DEFD6C500A6EB7878ACEEDFF /* GDTCORTransport.m */; }; - 399BF22C6BB6F9A04043BAE54B59CD8A /* RCTKeyCommands.m in Sources */ = {isa = PBXBuildFile; fileRef = 03D7B85BCC7288374F354DCD44FC86E9 /* 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 = 54F82C1E638911B9626F6A00BAF5B246 /* RNFetchBlob.m */; }; + 399BF22C6BB6F9A04043BAE54B59CD8A /* RCTKeyCommands.m in Sources */ = {isa = PBXBuildFile; fileRef = B5E98AAC0018BFC8FE541116C1FE66BD /* 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 = A8702A169E5E1E960019144E3EF19780 /* RNFetchBlob.m */; }; 39C64C7D0A3CC2D7D7A0143EE11F6446 /* Frame.h in Headers */ = {isa = PBXBuildFile; fileRef = FEB3E3A918DA80435DD0BC14CF927F1F /* Frame.h */; settings = {ATTRIBUTES = (Project, ); }; }; 39C7B8CBC7FF6C71A08118BE63C072A0 /* Peertalk.h in Headers */ = {isa = PBXBuildFile; fileRef = 3DBF55AB682A256705CF187E386752F9 /* Peertalk.h */; settings = {ATTRIBUTES = (Project, ); }; }; 39C85EC983B5B8A9B6EFDC621F1D6F50 /* FarmHash.h in Headers */ = {isa = PBXBuildFile; fileRef = EFE361B26106E6F84706D937E4E2CC66 /* FarmHash.h */; settings = {ATTRIBUTES = (Project, ); }; }; 39D5EBF062B74C8DDCB6DE46E8A9219B /* Padded.h in Headers */ = {isa = PBXBuildFile; fileRef = F64A2236E01682D2970A235FBA9C2DAF /* Padded.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 39F711B3EA8188B6D67BFB8C89EA750D /* RCTSurfaceStage.h in Headers */ = {isa = PBXBuildFile; fileRef = C4D42313D4DAF406D2817B141A119FA9 /* RCTSurfaceStage.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 39F711B3EA8188B6D67BFB8C89EA750D /* RCTSurfaceStage.h in Headers */ = {isa = PBXBuildFile; fileRef = 6A878E168BC3EC6F6489E25BF070CDB0 /* RCTSurfaceStage.h */; settings = {ATTRIBUTES = (Project, ); }; }; 39F8B48ACB4F25C361745D13D7538C99 /* Foreach-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 5C3D20E580F0CADC319B189ECC794295 /* Foreach-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; 3A25A0B031EDD3B74BB39D3AD8967E3D /* GCDAsyncUdpSocket.m in Sources */ = {isa = PBXBuildFile; fileRef = 93A97AF91CB068344041DEDFC987F6B7 /* GCDAsyncUdpSocket.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0"; }; }; 3A366E0112A812204DAD3AA497EAD09D /* Subscription.h in Headers */ = {isa = PBXBuildFile; fileRef = 89D545D00ADB0D177CAAD36AE25FD7A8 /* Subscription.h */; settings = {ATTRIBUTES = (Project, ); }; }; 3A42B7CBB1077B1681D8BAA47FD729F5 /* EventHandler.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F2F408CA55F852A4D3F12B11AF6E1B74 /* EventHandler.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - 3A548E3DC62B7BBF58AF7D7B2F157707 /* QBAlbumCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 4491B07A5A45C84FDC154B2DFC264C3D /* QBAlbumCell.m */; }; - 3A588C35CF59D1DA0D42450E2D7D237C /* EXConstantsService.m in Sources */ = {isa = PBXBuildFile; fileRef = C44725A1EC6B0D7042E990E8FFAD2EBC /* EXConstantsService.m */; }; - 3A5DB1E5EC7C9DB692B411AC12981758 /* UMAppLoader-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = ACBC6B28CBAE195DCE491C2C0BF291BA /* UMAppLoader-dummy.m */; }; + 3A548E3DC62B7BBF58AF7D7B2F157707 /* QBAlbumCell.m in Sources */ = {isa = PBXBuildFile; fileRef = B599B1FF1EA73833D1957077D22D6459 /* QBAlbumCell.m */; }; + 3A588C35CF59D1DA0D42450E2D7D237C /* EXConstantsService.m in Sources */ = {isa = PBXBuildFile; fileRef = 8C2357EA439844C8E2AA136486074415 /* EXConstantsService.m */; }; + 3A5DB1E5EC7C9DB692B411AC12981758 /* UMAppLoader-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 72AC0F494D210A5373A91E4FA76E45C3 /* UMAppLoader-dummy.m */; }; 3A5F5528F10F93127EBBFE10043B3EDD /* ClockGettimeWrappers.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F2D18FD92E5C02179335114DA146D002 /* 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 = 4A9111B998F6951B90BEEF4356A22BC7 /* FirebaseCore.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3ADA517D682534F4669406B324870C1C /* RCTComponentEvent.m in Sources */ = {isa = PBXBuildFile; fileRef = 6D4954EAB8F90824EDE56AB510D5EE73 /* 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 = 307AC7E91B54A8B513EEE19246B784DA /* SDImageCacheDefine.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3ADA517D682534F4669406B324870C1C /* RCTComponentEvent.m in Sources */ = {isa = PBXBuildFile; fileRef = 10E7A69DA6A55396675CCA922EB93C4B /* RCTComponentEvent.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; 3AFEBD8603F5475633372854B818713A /* json_pointer.cpp in Sources */ = {isa = PBXBuildFile; fileRef = DD334D5E8416D4A54BBB26548C42B522 /* 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 = CAAF2F5D82AACC7F5CFD8A399BF072DF /* Traits.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3B1C56C9C2CD7612390FFE5E14833E4F /* SDWebImageTransition.h in Headers */ = {isa = PBXBuildFile; fileRef = 406126CDE866DEC6B775C6D397305C58 /* SDWebImageTransition.h */; settings = {ATTRIBUTES = (Project, ); }; }; 3B1F011B902EA943C13BF23FA5AA91B8 /* RSocketStats.h in Headers */ = {isa = PBXBuildFile; fileRef = DEAE00B727BDBF5870E0E3C7EBEA34F3 /* RSocketStats.h */; settings = {ATTRIBUTES = (Project, ); }; }; 3B2FE6120D6A53821D07E463CADA2433 /* Malloc.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 52BB66794D5CF468F90579F021C92C04 /* 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 = 480ACD8EB66689B1DB2A7EFC233EB866 /* near_lossless_enc.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; 3B40FCB8E0BF9B46F95712AEF680A135 /* glog-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = BA90470BACE453BC61F5A465707585F4 /* glog-dummy.m */; }; - 3B426494F084B4127219E522755411FA /* RCTKeyCommandConstants.m in Sources */ = {isa = PBXBuildFile; fileRef = D6A54E68A069603C40EB24A3073DD1FA /* RCTKeyCommandConstants.m */; }; + 3B426494F084B4127219E522755411FA /* RCTKeyCommandConstants.m in Sources */ = {isa = PBXBuildFile; fileRef = 906D73B0CFB0B58166459E4132CB0CEF /* RCTKeyCommandConstants.m */; }; 3B4A8B19ECB268E4FC6EAD4276B63B6A /* ThreadWheelTimekeeper.cpp in Sources */ = {isa = PBXBuildFile; fileRef = EEB33EDDF13C4B81FF081BC41152CE31 /* 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 = 4294ADC52CAD14B81DE5D364BF4332DB /* RCTImageStoreManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3B520593596D5C39DD58B1C8B5F2849A /* RCTImageStoreManager.h in Headers */ = {isa = PBXBuildFile; fileRef = EEF9D5D77F08ED6807BF9C978556DF29 /* RCTImageStoreManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; 3B5A6465606762C6EB7BF68923C55487 /* FIRAnalyticsConfiguration.m in Sources */ = {isa = PBXBuildFile; fileRef = C892F6E29BEFAA900F4D34736A3A395D /* FIRAnalyticsConfiguration.m */; }; 3B66445B8389FD8B6FEC18D5C63CF08F /* ManualTimekeeper.h in Headers */ = {isa = PBXBuildFile; fileRef = 0CCDADBF1E0BCF5E4B4986AC4DA0A3F9 /* ManualTimekeeper.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3B86A109CEA0B850B0A64BF002AEA50C /* REAParamNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 9EFBCED0F028458C60D260A2443070DE /* REAParamNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3B86A109CEA0B850B0A64BF002AEA50C /* REAParamNode.h in Headers */ = {isa = PBXBuildFile; fileRef = CFC26328D166090CEF5A8AD3B96BF4B6 /* REAParamNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; 3BDA042F4452C7A9D7762E7E5DC1E06C /* Iterator.h in Headers */ = {isa = PBXBuildFile; fileRef = AEABDE2E04ED6688F5850A93F9B58F01 /* Iterator.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3BE233D9068B6A6CB6B8FB96806FFB04 /* RCTReloadCommand.h in Headers */ = {isa = PBXBuildFile; fileRef = 708760842867F929E52FEE8EF9CB114F /* RCTReloadCommand.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3BE233D9068B6A6CB6B8FB96806FFB04 /* RCTReloadCommand.h in Headers */ = {isa = PBXBuildFile; fileRef = 1B48034B35121007E76DEFC40B7D903A /* RCTReloadCommand.h */; settings = {ATTRIBUTES = (Project, ); }; }; 3BE35415468374E7FD5095CC14E1132C /* StreamsWriter.h in Headers */ = {isa = PBXBuildFile; fileRef = D9AF91F511D1527EA8D0048D84814E9F /* StreamsWriter.h */; settings = {ATTRIBUTES = (Project, ); }; }; 3BEE1FBAD4B96E245CD9AED9D181133D /* pt.lproj in Resources */ = {isa = PBXBuildFile; fileRef = 2FD89FE7149F49ECE939C0D668485C2A /* pt.lproj */; }; 3C008D6C8F8BE78D67CA9CB7416A0FAA /* String.h in Headers */ = {isa = PBXBuildFile; fileRef = 0A51B5944DAB19F25618C50A23CAAF4D /* String.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3C0FFA7C0FBB6DBE9C5E543870C2DB32 /* BSG_KSCrashSentry.c in Sources */ = {isa = PBXBuildFile; fileRef = 11124971ECBA9E121883A6EF7A92CE49 /* BSG_KSCrashSentry.c */; }; + 3C0FFA7C0FBB6DBE9C5E543870C2DB32 /* BSG_KSCrashSentry.c in Sources */ = {isa = PBXBuildFile; fileRef = 18A34D18A67341C128316BCECAD79394 /* BSG_KSCrashSentry.c */; }; 3C15FBD85FABEBFA4D591E85969CEC1F /* Enumerate.h in Headers */ = {isa = PBXBuildFile; fileRef = 81147D7932B8A1B042539ACFC2A3BE4D /* Enumerate.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3C2BB5FD7D39742D46B07E6EC1404395 /* RCTTiming.h in Headers */ = {isa = PBXBuildFile; fileRef = B4709D727E040593EF466742C728E8C8 /* RCTTiming.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3C2CC35AD5DCB89F74870ED731466DB4 /* ARTBrush.h in Headers */ = {isa = PBXBuildFile; fileRef = 57DC9EA4D5833A0806D27ADB335ED964 /* ARTBrush.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3C31CD3F689030110809D1AFD7C1EFDA /* RNEventEmitter.h in Headers */ = {isa = PBXBuildFile; fileRef = C227F4B7992430DBAC04276C2B6014C1 /* RNEventEmitter.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3C3ED2C9C2422B18BA8F904508318AE4 /* NSDataBigString.h in Headers */ = {isa = PBXBuildFile; fileRef = 0B7FF6573344CDA68FFC6BB1457E8553 /* NSDataBigString.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3C4E24A310EEFBA07294381C4AE6E302 /* SDImageCodersManager.h in Headers */ = {isa = PBXBuildFile; fileRef = A80277C8113E75C2E96371380BE4F8DA /* SDImageCodersManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3C52279D222791B4251C03AF8205D902 /* RNCSafeAreaViewLocalData.m in Sources */ = {isa = PBXBuildFile; fileRef = 379625BE5B27420085234B6B8BF607D0 /* RNCSafeAreaViewLocalData.m */; }; - 3C52A7E842397DEB2CAE85EA2724EB6C /* RNNotificationParser.m in Sources */ = {isa = PBXBuildFile; fileRef = E57A68CDEEEECB747100BA81E12450CE /* RNNotificationParser.m */; }; - 3C52E81AEF158725346D9F914382DA9A /* RCTDevMenu.mm in Sources */ = {isa = PBXBuildFile; fileRef = E183097BAB8F512043C9880F96EC7BE3 /* 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 = 2A4F57D2ACE402704AF6C758AA83E669 /* UMAppLoaderInterface.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3C636CBDF2CABF345905D733C76134B7 /* RCTTouchEvent.m in Sources */ = {isa = PBXBuildFile; fileRef = 6C64BF2A1D2437CA52AEE039EF8792AA /* 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 = 1578EE1C0EA94CFE091DEC4F00AE2E2C /* JSCRuntime.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3C2BB5FD7D39742D46B07E6EC1404395 /* RCTTiming.h in Headers */ = {isa = PBXBuildFile; fileRef = BBE4E706C49C9A15F96835316AE66969 /* RCTTiming.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3C2CC35AD5DCB89F74870ED731466DB4 /* ARTBrush.h in Headers */ = {isa = PBXBuildFile; fileRef = 21896A0E5A77DDB3232CDEF7D8507DF1 /* ARTBrush.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3C31CD3F689030110809D1AFD7C1EFDA /* RNEventEmitter.h in Headers */ = {isa = PBXBuildFile; fileRef = 969B38C40EB4B3C167E85CEC96A4B05F /* RNEventEmitter.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3C3ED2C9C2422B18BA8F904508318AE4 /* NSDataBigString.h in Headers */ = {isa = PBXBuildFile; fileRef = 722E6C2C002559D696DFB10F3CD55E57 /* NSDataBigString.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3C52279D222791B4251C03AF8205D902 /* RNCSafeAreaViewLocalData.m in Sources */ = {isa = PBXBuildFile; fileRef = 85A0955D86E4C98A00DB4C29038EA8E8 /* RNCSafeAreaViewLocalData.m */; }; + 3C52A7E842397DEB2CAE85EA2724EB6C /* RNNotificationParser.m in Sources */ = {isa = PBXBuildFile; fileRef = E32C20D73ADD0C1F17C16EAF8AA1EFCD /* RNNotificationParser.m */; }; + 3C52E81AEF158725346D9F914382DA9A /* RCTDevMenu.mm in Sources */ = {isa = PBXBuildFile; fileRef = B262DBFF8BC858AE4A4CF5FA9D59BC16 /* 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 = B082C061FCEA6C7EC9DA72241ED14B74 /* UMAppLoaderInterface.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3C636CBDF2CABF345905D733C76134B7 /* RCTTouchEvent.m in Sources */ = {isa = PBXBuildFile; fileRef = EC11D56910273407F9CEE37E167F3CBB /* 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 = 4CB1AC9694F15DC9890F261628C68E9F /* JSCRuntime.h */; settings = {ATTRIBUTES = (Project, ); }; }; 3C73244EE8A77E5BD59DD8C113FE7664 /* EventFDWrapper.h in Headers */ = {isa = PBXBuildFile; fileRef = 282B3B8630B35B791B564F393334998C /* EventFDWrapper.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3C766293FB7619D510FF59F15B150FAD /* RNPinchHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 2E4E3D7778CEABC0932F3CD31EEC5032 /* RNPinchHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3C766293FB7619D510FF59F15B150FAD /* RNPinchHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 585ED006419E0DFF75DA1CD7A2E2276A /* RNPinchHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; 3C7E7789B620CD423919122D943ECBE0 /* IPAddress.h in Headers */ = {isa = PBXBuildFile; fileRef = E4278F47054CB9E002306CA4A1032C6C /* IPAddress.h */; settings = {ATTRIBUTES = (Project, ); }; }; 3C98A74B81322A6703D4A7A5C03E5F34 /* SKResponseInfo.h in Headers */ = {isa = PBXBuildFile; fileRef = 6E5A77E2B1D23553F1FCFEAE09A389B8 /* SKResponseInfo.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3CACE745B0107D8C1EAD78E15B7A7764 /* YGMacros.h in Headers */ = {isa = PBXBuildFile; fileRef = 1EF403D5ED7B4AC1BD1B459C3D9B0A38 /* YGMacros.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3CACE745B0107D8C1EAD78E15B7A7764 /* YGMacros.h in Headers */ = {isa = PBXBuildFile; fileRef = AEF55CDCBDB02907B3E948D1A9F24DE5 /* YGMacros.h */; settings = {ATTRIBUTES = (Project, ); }; }; 3CBE6FF9CF1D82A56BAF731390BEF2D2 /* utils.h in Headers */ = {isa = PBXBuildFile; fileRef = 21FE4D900ED58E6E62B988CFE1D0A798 /* utils.h */; settings = {ATTRIBUTES = (Project, ); }; }; 3CD64518F73B6927C62245CDADE43076 /* ParallelMap-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = D155128010AF261FE95DC95C89602D5C /* ParallelMap-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; 3CE9795118C3E5792C3D682BCDC67671 /* F14Table.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FC8A23409DD44B5F9F4C09C9F1739D71 /* 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 = ABF655AFE18A01D4FDEDEFA6627CC4A9 /* symbolize.cc */; settings = {COMPILER_FLAGS = "-Wno-shorten-64-to-32"; }; }; - 3D2BDDA5696E0248B91335C53007C1D8 /* RCTKeyCommandsManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 01E29E1E919123FA73529DB1E40266E0 /* RCTKeyCommandsManager.m */; }; - 3D68D2557A63C01FD65F87F4565A0A53 /* UMModuleRegistry.m in Sources */ = {isa = PBXBuildFile; fileRef = 9DDEACF6D9F9C551705FE0806A63C8A8 /* UMModuleRegistry.m */; }; - 3D6B17E830FAC8972A903412ABC93839 /* RNCSafeAreaViewMode.m in Sources */ = {isa = PBXBuildFile; fileRef = BAEAFDD188CD0F7613AD9D7734ADFC80 /* RNCSafeAreaViewMode.m */; }; - 3D7DFBCA8CB38E2E8E522F41E114C453 /* React-RCTImage-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = B8CA43372B9273DDF55F3E98AD3F76ED /* React-RCTImage-dummy.m */; }; - 3D908533C5BDA9E1C662C9426D1A38A8 /* SDAssociatedObject.m in Sources */ = {isa = PBXBuildFile; fileRef = 0A9937D7A360E83F8CA7E0155AF042E5 /* SDAssociatedObject.m */; }; + 3D2BDDA5696E0248B91335C53007C1D8 /* RCTKeyCommandsManager.m in Sources */ = {isa = PBXBuildFile; fileRef = D77BAC0E8E8AE4F49A6DF5729DECB2CC /* RCTKeyCommandsManager.m */; }; + 3D68D2557A63C01FD65F87F4565A0A53 /* UMModuleRegistry.m in Sources */ = {isa = PBXBuildFile; fileRef = B62DE4832C1D15758D7BBAC7DC334C78 /* UMModuleRegistry.m */; }; + 3D6B17E830FAC8972A903412ABC93839 /* RNCSafeAreaViewMode.m in Sources */ = {isa = PBXBuildFile; fileRef = A350542A58D4A22D9930D1AA009C76A7 /* RNCSafeAreaViewMode.m */; }; + 3D7DFBCA8CB38E2E8E522F41E114C453 /* React-RCTImage-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 30A7ACE64949128CF3F1F8D22E3DDAA7 /* React-RCTImage-dummy.m */; }; + 3D908533C5BDA9E1C662C9426D1A38A8 /* SDAssociatedObject.m in Sources */ = {isa = PBXBuildFile; fileRef = 3C758720FBDFC405651DAA85A702C271 /* SDAssociatedObject.m */; }; 3D93DB04DD641799254FA46FAE37CC5B /* Futex.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9BE213EAF1BED4F9EA35340D536E52DE /* 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 = FD6708B675C2F8B1F60BD6569F43FE01 /* muxedit.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 3DA5DB3392201B4BDCE5115EB4646156 /* RCTConvert+ART.h in Headers */ = {isa = PBXBuildFile; fileRef = 4391A5FFBDF8ABD0DBF0BD40A41B7DA8 /* RCTConvert+ART.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3DB2B8FFC504E9B2209D51E0471B3072 /* NativeExpressComponent.m in Sources */ = {isa = PBXBuildFile; fileRef = D93AB3281682C4922FEE2F3E42D74976 /* NativeExpressComponent.m */; }; + 3DA5DB3392201B4BDCE5115EB4646156 /* RCTConvert+ART.h in Headers */ = {isa = PBXBuildFile; fileRef = 03638B0C01AF832F3970C20F5A684465 /* RCTConvert+ART.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3DB2B8FFC504E9B2209D51E0471B3072 /* NativeExpressComponent.m in Sources */ = {isa = PBXBuildFile; fileRef = A08F43B95C60C5D88E07DFAAE23FF764 /* NativeExpressComponent.m */; }; 3E3F53ADD7E28D7E1E396842FEA1EE02 /* Executor.h in Headers */ = {isa = PBXBuildFile; fileRef = 6CCE529ABE0E34CAD537F852450CA485 /* Executor.h */; settings = {ATTRIBUTES = (Project, ); }; }; 3E5F4AA9BC4B59F72BBCB8B243D8AA76 /* GDTCORClock.h in Headers */ = {isa = PBXBuildFile; fileRef = 42FD1E55CC5460FBEE20AFB73228F4D9 /* GDTCORClock.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3E64101FC90134AAB704521D67EC551E /* SDWebImageDefine.h in Headers */ = {isa = PBXBuildFile; fileRef = CD7A37ACAA26355BA694F50A7739DE39 /* SDWebImageDefine.h */; settings = {ATTRIBUTES = (Project, ); }; }; 3E72F4E30D9B7EEB3144323D44D03793 /* IntrusiveList.h in Headers */ = {isa = PBXBuildFile; fileRef = DBB0FD75A20E2729FDCDCD93D991BD55 /* IntrusiveList.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3E7847180091C117F370AB3A0260AC2D /* RCTInspector.h in Headers */ = {isa = PBXBuildFile; fileRef = 517ABDB6A1D22F90BC800E73D1E05B81 /* RCTInspector.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3E7847180091C117F370AB3A0260AC2D /* RCTInspector.h in Headers */ = {isa = PBXBuildFile; fileRef = 377CF5BBA777BAB19C2A23B45AE67323 /* RCTInspector.h */; settings = {ATTRIBUTES = (Project, ); }; }; 3E91F68D2665D1AA0069E5C27FABCA9F /* ShutdownSocketSet.h in Headers */ = {isa = PBXBuildFile; fileRef = 7CB5C667C1590F39BD2834E9BC051BD2 /* ShutdownSocketSet.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3EB21B0946E427438F5EB5F7A7F5AC31 /* RCTSurfaceSizeMeasureMode.h in Headers */ = {isa = PBXBuildFile; fileRef = 5203E8481C68C7F88B05A6095736E0F2 /* RCTSurfaceSizeMeasureMode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3EB21B0946E427438F5EB5F7A7F5AC31 /* RCTSurfaceSizeMeasureMode.h in Headers */ = {isa = PBXBuildFile; fileRef = D30A41CBCCBACA94DBCC8F15ABC8BECA /* RCTSurfaceSizeMeasureMode.h */; settings = {ATTRIBUTES = (Project, ); }; }; 3EC8C2462B60DB403104F22B294A4B24 /* FIRLibrary.h in Headers */ = {isa = PBXBuildFile; fileRef = 2E82DDAD9A9BDD55B50D8A85D999856D /* FIRLibrary.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3EE1BBD1D425E3C37DDB027A7AA79791 /* SDWebImageDefine.h in Headers */ = {isa = PBXBuildFile; fileRef = 234B1411B48C8BE2215721F896C6B79A /* SDWebImageDefine.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3EFD3182765DA02AEDCD4FE78CEE37EB /* BSG_KSSystemCapabilities.h in Headers */ = {isa = PBXBuildFile; fileRef = E48FF155CEACF2D353DD9A1988CA19C6 /* BSG_KSSystemCapabilities.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3EFD3182765DA02AEDCD4FE78CEE37EB /* BSG_KSSystemCapabilities.h in Headers */ = {isa = PBXBuildFile; fileRef = 065CA76DC9A9623CBEA4AE67EF82CE52 /* BSG_KSSystemCapabilities.h */; settings = {ATTRIBUTES = (Project, ); }; }; 3F16574039A61B5C86268A6D9E5BD931 /* picture_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = CFB3FCA2C67521AB182CFE9EFF633396 /* picture_enc.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 3F1E35D158FF8C684C77D8C47820A675 /* RCTUITextField.h in Headers */ = {isa = PBXBuildFile; fileRef = 90D34DFF04C9FC93FBC548E5C5BC1EC1 /* RCTUITextField.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3F4E6AB35F55AE7DF736BE8E399AF815 /* RNFirebasePerformance.h in Headers */ = {isa = PBXBuildFile; fileRef = B88FACE80867F4D89F910D7379D7C891 /* RNFirebasePerformance.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3F1E35D158FF8C684C77D8C47820A675 /* RCTUITextField.h in Headers */ = {isa = PBXBuildFile; fileRef = 0413E64D3D0161176688283A1DC4E85F /* RCTUITextField.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3F4E6AB35F55AE7DF736BE8E399AF815 /* RNFirebasePerformance.h in Headers */ = {isa = PBXBuildFile; fileRef = 591D38364EB8299172D9C086BC05B87E /* RNFirebasePerformance.h */; settings = {ATTRIBUTES = (Project, ); }; }; 3F92210457EDD0ACA1619BAFE752413F /* FramedReader.cpp in Sources */ = {isa = PBXBuildFile; fileRef = E703D4D7A31D6F024E7661E778E709E3 /* 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 = 7BF3144925C79D25A7C2564D0DE6E7E9 /* 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 = EF816D90F70DF67C69E47BF0B325AF38 /* NSData+ImageContentType.m */; }; + 3F9348227893EA6B31E31FD5F58CEA7F /* NSData+ImageContentType.m in Sources */ = {isa = PBXBuildFile; fileRef = 52378BBFB370CC0FC841244F60B7D504 /* NSData+ImageContentType.m */; }; 3F9D460D6684DBFD200DBE5839299505 /* ProxyLockable-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = F805A5F2A3FB56443D3089F8902B3ECF /* ProxyLockable-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3FBB88E0254E6E6972826A7C76C136B3 /* UMModuleRegistryHolderReactModule.m in Sources */ = {isa = PBXBuildFile; fileRef = D6F3946CB852E1E2D18BE5EB7F732CB5 /* UMModuleRegistryHolderReactModule.m */; }; + 3FBB88E0254E6E6972826A7C76C136B3 /* UMModuleRegistryHolderReactModule.m in Sources */ = {isa = PBXBuildFile; fileRef = 23BF18B6DA1A3CBB7A34C06EC9328DBF /* UMModuleRegistryHolderReactModule.m */; }; 3FE0A32EC96E9E49C2E7A93852717142 /* AutoTimer.h in Headers */ = {isa = PBXBuildFile; fileRef = E8999353FF8CAC00061ED4E7C00D1E52 /* AutoTimer.h */; settings = {ATTRIBUTES = (Project, ); }; }; 3FE6DC36C896C99E4F0E10B92E1FE061 /* frame_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = 342C1A6308329C1B905E347FC5BDAFC4 /* frame_enc.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 3FFC12F083C51549727315984B52D62F /* ImageCropPicker.h in Headers */ = {isa = PBXBuildFile; fileRef = 3438ADEC6BFD173853DBE02CDB14D4E6 /* ImageCropPicker.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3FFC12F083C51549727315984B52D62F /* ImageCropPicker.h in Headers */ = {isa = PBXBuildFile; fileRef = E1AF6F668DDC2FE9EBE1D6160C6901DD /* ImageCropPicker.h */; settings = {ATTRIBUTES = (Project, ); }; }; 40012AF9A094885E9B287E998C5F218C /* FBLPromise+All.h in Headers */ = {isa = PBXBuildFile; fileRef = 5647B093DEA4FD66B05EBBDA403050D7 /* FBLPromise+All.h */; settings = {ATTRIBUTES = (Project, ); }; }; 4007B7F35C430A2ABAF9342676CCE0D5 /* TestSubscriber.h in Headers */ = {isa = PBXBuildFile; fileRef = EE20E3C158D7A157487A592380C8AEB3 /* TestSubscriber.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 40297B0904C2075155C04CDEBEEA2952 /* BugsnagReactNative-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 5A21B730283D7A49ECA943EC16683056 /* BugsnagReactNative-dummy.m */; }; + 40297B0904C2075155C04CDEBEEA2952 /* BugsnagReactNative-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 04A422BC8833BA57C417BBD13984BBA9 /* BugsnagReactNative-dummy.m */; }; 404D6BB861E63EEB9E73E08FF90F800C /* Flipper-Glog-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 12ED3A017DA113F5FB9A727B91D58167 /* Flipper-Glog-dummy.m */; }; 4053B1CC3CD5A04F550DB606726DA74B /* Flowable_FromObservable.h in Headers */ = {isa = PBXBuildFile; fileRef = B11776B7517CC0AFDF6D99E1526ACDB1 /* Flowable_FromObservable.h */; settings = {ATTRIBUTES = (Project, ); }; }; 4055AAFEDDE879890C0A9470247141DF /* bignum-dtoa.h in Headers */ = {isa = PBXBuildFile; fileRef = EAE8249B059213ECC026BA4C8FDD79AC /* bignum-dtoa.h */; settings = {ATTRIBUTES = (Project, ); }; }; 40614B380FD380F02DE30BF3AC2B5BD2 /* SKBufferingPlugin.h in Headers */ = {isa = PBXBuildFile; fileRef = 89E808B4A9703BA1DCFE85A9396470FB /* SKBufferingPlugin.h */; settings = {ATTRIBUTES = (Project, ); }; }; 407D321F392BA208926EBD1B3F68D901 /* ScheduledSubscription.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1D806D7DD73FF9FA103135069EAF9863 /* 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 = B36E7575D09CE06B36B64262E56AD7A1 /* RNFirebaseAdMobNativeExpressManager.m */; }; + 407DE17E311F50FDA9BC4ED4C4759FF6 /* RNFirebaseAdMobNativeExpressManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 73F8FBE8D7A3E43B5EEC41D91B4F8E82 /* RNFirebaseAdMobNativeExpressManager.m */; }; 407DF13B0A6D61F156D84B50D25A3E2D /* upsampling_neon.c in Sources */ = {isa = PBXBuildFile; fileRef = 2D7BF22D6E06F8C37F33C8CDB0AFDFBC /* upsampling_neon.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; 40828CDB34CB0D9DB95817B36B4DE561 /* Latch.h in Headers */ = {isa = PBXBuildFile; fileRef = 009CF839932EDA691FF3C5786F28642F /* Latch.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 408674694B36B848A4B92FE078AAF425 /* RCTVibrationPlugins.h in Headers */ = {isa = PBXBuildFile; fileRef = 3FA37BB8D5CE3A4D72821970E36DAD96 /* RCTVibrationPlugins.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 408674694B36B848A4B92FE078AAF425 /* RCTVibrationPlugins.h in Headers */ = {isa = PBXBuildFile; fileRef = 2568CCEE6BB01871189B53944A0492DF /* RCTVibrationPlugins.h */; settings = {ATTRIBUTES = (Project, ); }; }; 40882DB2D16FD7AD4EB5CC4DDAFC57F0 /* fast-dtoa.h in Headers */ = {isa = PBXBuildFile; fileRef = 0C5ABBDFB0EB3AB7D3EA468CF07FA3BC /* fast-dtoa.h */; settings = {ATTRIBUTES = (Project, ); }; }; 408B66DC035EFC857FA1702A13AC9C86 /* RSocketClient.cpp in Sources */ = {isa = PBXBuildFile; fileRef = CC8DACAEB11E7FF7CC1604A33EE5D54C /* 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 = F8960E9B87F3A55518983A3C7A995408 /* raw_logging.cc */; settings = {COMPILER_FLAGS = "-Wno-shorten-64-to-32"; }; }; - 40C19A28E1F99D7F8C3EAC8556CB967B /* RCTDatePicker.m in Sources */ = {isa = PBXBuildFile; fileRef = 077B84BC0E5BCB688AF3980FA3447CFC /* 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 = 68CFD377B2521C3971DB87126F7E1D9E /* 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 = 83583FC1B109C80FBCC8A68E68DF2276 /* PriorityUnboundedQueueSet.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 40CDD7F679A86CF4FF45DC85BD332979 /* RCTDevMenu.h in Headers */ = {isa = PBXBuildFile; fileRef = F71FB544BCBA56AEDEF822FD83066F59 /* RCTDevMenu.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 40CF3A37D9BF440D6C6BB7935251E91C /* RCTTransformAnimatedNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 4E3FD77131EA5EDCE0E84A962E4F4B4A /* 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 = 7BFD2EF897B8C56DCB198B1BAB5FC9E7 /* JSINativeModules.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 40D3D7F8A9A20E8AF9968CED7BA360DC /* RNCSafeAreaProvider.h in Headers */ = {isa = PBXBuildFile; fileRef = 0DC98997424B18CC73CB93D3C00FFEDB /* RNCSafeAreaProvider.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 40CDD7F679A86CF4FF45DC85BD332979 /* RCTDevMenu.h in Headers */ = {isa = PBXBuildFile; fileRef = BF11A6A2A534E1BC60B988376BCD57C2 /* RCTDevMenu.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 40CF3A37D9BF440D6C6BB7935251E91C /* RCTTransformAnimatedNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 5C84CC67438080ABFCF66A533D7497CB /* 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 = 93FCBE3E7A4F4294ADB97EC1ACE0DC43 /* JSINativeModules.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 40D3D7F8A9A20E8AF9968CED7BA360DC /* RNCSafeAreaProvider.h in Headers */ = {isa = PBXBuildFile; fileRef = E22A9D5EEF614A05576A5B6C33F25CE0 /* RNCSafeAreaProvider.h */; settings = {ATTRIBUTES = (Project, ); }; }; 411A3C1B75FB16BE3B6C5709BBB21AD0 /* upsampling_sse41.c in Sources */ = {isa = PBXBuildFile; fileRef = AC3558B8BE5C9B4D23936F49886E35E9 /* upsampling_sse41.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 4130743FA94193D1413C4E4A1F925D6B /* REATransitionValues.h in Headers */ = {isa = PBXBuildFile; fileRef = 22AE0F027BA8E662707B93E6A49025BC /* REATransitionValues.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4151149DD2912D71C7B2B5BE90FF6BCA /* UMUIManager.h in Headers */ = {isa = PBXBuildFile; fileRef = F0AEA7B0AFBBC79FE0CA376439E2A09B /* UMUIManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 41A875AF9B80762A227B0C9FCDADC17B /* EXConstants-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 7B1D9EE485F3205646C5051B7F089AFA /* EXConstants-dummy.m */; }; - 41B4C42C2918C9905168B6B5E9407853 /* RCTConvert.m in Sources */ = {isa = PBXBuildFile; fileRef = FF797AFF7642211A0E1F523358E1D58F /* RCTConvert.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 41C0B692521AF1F9039A5CE16E841F76 /* QBAlbumsViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = 9D261CBE9D3D62109B6D4E8FA46F0BCD /* QBAlbumsViewController.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4205ADAF94B00946E01FCE633872C359 /* EXVideoManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 86A09AE5C83D80F26243E9C6A3BC235E /* EXVideoManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4130743FA94193D1413C4E4A1F925D6B /* REATransitionValues.h in Headers */ = {isa = PBXBuildFile; fileRef = 3A48F0FA2EFE25FC4D67D9B2D3ECF49D /* REATransitionValues.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4151149DD2912D71C7B2B5BE90FF6BCA /* UMUIManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 3E3C8E2BC87AC6B588DBF61937F26263 /* UMUIManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 41A875AF9B80762A227B0C9FCDADC17B /* EXConstants-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = DAD593560DDDAC4ED56FC5AAAEE80665 /* EXConstants-dummy.m */; }; + 41B4C42C2918C9905168B6B5E9407853 /* RCTConvert.m in Sources */ = {isa = PBXBuildFile; fileRef = 0BA9BC34F99DC62F2FC25B815203955B /* RCTConvert.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 41C0B692521AF1F9039A5CE16E841F76 /* QBAlbumsViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = 4A1E990DE7C5E9061369D6E21A2B2B11 /* QBAlbumsViewController.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4205ADAF94B00946E01FCE633872C359 /* EXVideoManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 518871DD5597807A14869C4A7A3A9C7F /* EXVideoManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; 4209E12A312F80DD614ADF85D9F60BE9 /* diy-fp.h in Headers */ = {isa = PBXBuildFile; fileRef = BC641C3536C6D80CEBDE234F1229F43E /* diy-fp.h */; settings = {ATTRIBUTES = (Project, ); }; }; 42153C09FC24FE15AD327A468CF1700B /* GDTCORPlatform.m in Sources */ = {isa = PBXBuildFile; fileRef = 02F896E427E81E60D05E4F642B7D77FB /* GDTCORPlatform.m */; }; - 4245B43F5AC653CF0AC74F5C7D13BD58 /* BugsnagCollections.m in Sources */ = {isa = PBXBuildFile; fileRef = DF467F947B74376C96C9A29D47C69BD8 /* BugsnagCollections.m */; }; - 426742BF5EE2C85DF496E2DA3CE428D5 /* RCTScrollViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = CE82D196E79A1F0F729CFA3631A98AF1 /* RCTScrollViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4245B43F5AC653CF0AC74F5C7D13BD58 /* BugsnagCollections.m in Sources */ = {isa = PBXBuildFile; fileRef = 0EDC966D5F288AF64A01C3BF698E0A5E /* BugsnagCollections.m */; }; + 426742BF5EE2C85DF496E2DA3CE428D5 /* RCTScrollViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = B2470DA147041292B86B96DF99A86A05 /* RCTScrollViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; 427C8FA489A629A5C9890AFAA39EA86E /* PriorityThreadFactory.h in Headers */ = {isa = PBXBuildFile; fileRef = C52F8C39642878EE119EB3371F5D3E53 /* PriorityThreadFactory.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4280A2CE689E5C853DF3ED1DE2B480B6 /* REAJSCallNode.m in Sources */ = {isa = PBXBuildFile; fileRef = CFBC723AEB7D761951B2444283230789 /* REAJSCallNode.m */; }; - 429154760417DA4A8F0A41BC41D04047 /* RNNotificationCenterMulticast.m in Sources */ = {isa = PBXBuildFile; fileRef = 3F143168A55B0B275D7ABE38E92D0A7C /* RNNotificationCenterMulticast.m */; }; - 42B2B3F9374AFE30E947D405588183B0 /* ARTRenderableManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 522A8FF859ABCC748887C4355C5DD8BB /* ARTRenderableManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4280A2CE689E5C853DF3ED1DE2B480B6 /* REAJSCallNode.m in Sources */ = {isa = PBXBuildFile; fileRef = A9C90B2CE097ECF49E1BB74BCCD4F1B6 /* REAJSCallNode.m */; }; + 429154760417DA4A8F0A41BC41D04047 /* RNNotificationCenterMulticast.m in Sources */ = {isa = PBXBuildFile; fileRef = 97DC3F18B3CA75DA1B62A7EA796D8FD7 /* RNNotificationCenterMulticast.m */; }; + 42B2B3F9374AFE30E947D405588183B0 /* ARTRenderableManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 473F02F4D428A4AD6748CBB62E874C13 /* ARTRenderableManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; 42B8240821C5D0D7926B22BCD88098F1 /* TcpConnectionAcceptor.h in Headers */ = {isa = PBXBuildFile; fileRef = EC4413815440FA626EF27F8EFC09DB3F /* TcpConnectionAcceptor.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 42B9C64402F7F76D826CBC8B924AC777 /* RCTView+SafeAreaCompat.m in Sources */ = {isa = PBXBuildFile; fileRef = A2E4A8E1BBA2C9D7FA64DD67F7403DD0 /* RCTView+SafeAreaCompat.m */; }; + 42B9C64402F7F76D826CBC8B924AC777 /* RCTView+SafeAreaCompat.m in Sources */ = {isa = PBXBuildFile; fileRef = 325DB89FBB298D1E53FDDF619466097F /* RCTView+SafeAreaCompat.m */; }; 42C3C38FC0F225C773DA5A837CFD8196 /* FBLPromise+Await.h in Headers */ = {isa = PBXBuildFile; fileRef = BE535D39BB5BF6825CB208F2AAB9C249 /* FBLPromise+Await.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 42D5E5785A1807EE38AC0D0420B4618D /* RCTUIUtils.m in Sources */ = {isa = PBXBuildFile; fileRef = 025E645C19027FF11B2AD002927427AD /* 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 = ECF33A7749B132EA8845371627394D38 /* 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 = 1B4884B99063BB48B97948B437FE8022 /* Arena-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; 4309F6A95C2F4533FEBADDAB9EC72DDC /* SKBufferingPlugin+CPPInitialization.h in Headers */ = {isa = PBXBuildFile; fileRef = FBA85ACF43FF0FAEF4C6707191AD5DE6 /* SKBufferingPlugin+CPPInitialization.h */; settings = {ATTRIBUTES = (Project, ); }; }; 430BDCE7D0538E995FE37CAEBE40B4D0 /* RangeSse42.cpp in Sources */ = {isa = PBXBuildFile; fileRef = DE27226AD935AC533B0B64711C769CE5 /* 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 = F96B80676FE63E0D028F1460709D6B88 /* BitIterator.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 432416CCB63DC7456440129E2B240E24 /* EXUserNotificationPermissionRequester.h in Headers */ = {isa = PBXBuildFile; fileRef = CF6E7C96EC29BA645245BB12B05D8BBD /* EXUserNotificationPermissionRequester.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 433845A51A7B94C7E3FC1BA166EF3AB8 /* BSG_KSCrashSentry.h in Headers */ = {isa = PBXBuildFile; fileRef = 2932CAE48B908051425DCA562EFACA17 /* BSG_KSCrashSentry.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4338BE4A10F8AA3757F3564234E12DF8 /* RCTSlider.h in Headers */ = {isa = PBXBuildFile; fileRef = 1E1749F8D2A7A46634E4C9E76C88DA67 /* RCTSlider.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 432416CCB63DC7456440129E2B240E24 /* EXUserNotificationPermissionRequester.h in Headers */ = {isa = PBXBuildFile; fileRef = E4B1EADA882818362F61F9FD6D1774D9 /* EXUserNotificationPermissionRequester.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 432FA6CECE7A4FDF913C7953D1433AA3 /* SDDeviceHelper.h in Headers */ = {isa = PBXBuildFile; fileRef = 3DEC874383540423F3B8411C57D547CF /* SDDeviceHelper.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 433845A51A7B94C7E3FC1BA166EF3AB8 /* BSG_KSCrashSentry.h in Headers */ = {isa = PBXBuildFile; fileRef = A6512FCD0C8C561FC74BFD741610BB9B /* BSG_KSCrashSentry.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4338BE4A10F8AA3757F3564234E12DF8 /* RCTSlider.h in Headers */ = {isa = PBXBuildFile; fileRef = DD4934136A00333DA2230477E34E3C3B /* RCTSlider.h */; settings = {ATTRIBUTES = (Project, ); }; }; 43392A4D79B8DC5E22D18499B86234CC /* ScheduledFrameProcessor.h in Headers */ = {isa = PBXBuildFile; fileRef = BE9300230844BA7A2D03F3BAE5DC8BDE /* ScheduledFrameProcessor.h */; settings = {ATTRIBUTES = (Project, ); }; }; 436A6BFE7B20D2A6B3F135835E3530F5 /* cct.nanopb.c in Sources */ = {isa = PBXBuildFile; fileRef = 2E342836BC369B6A02CA365B2EDFE945 /* cct.nanopb.c */; }; - 4371D77F7D30EE2C28086AF3C6141AAF /* SDWebImageDownloaderResponseModifier.m in Sources */ = {isa = PBXBuildFile; fileRef = 4BA7636E5ED7A99CC81EDA96CECE6609 /* SDWebImageDownloaderResponseModifier.m */; }; + 4371D77F7D30EE2C28086AF3C6141AAF /* SDWebImageDownloaderResponseModifier.m in Sources */ = {isa = PBXBuildFile; fileRef = BD2E760D12539816B328A961CA97446C /* SDWebImageDownloaderResponseModifier.m */; }; 4395F7FF43E68CA106DE3C9C9EE8EB6A /* Semaphore.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 352C7AC625618C55B3C1EB9ECA388A12 /* 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 = ADD867981938A544D7253B6A062EA2D9 /* SDWebImageTransition.m */; }; + 43A22B01D4DC0FAF7BCB423E3AFB00FF /* SDWebImageTransition.m in Sources */ = {isa = PBXBuildFile; fileRef = D71EB1CADF7D1CAB6C7B0E5E74DA1196 /* SDWebImageTransition.m */; }; 43CA220075CB818C01526FF2A9432522 /* ExecutorWithPriority-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = CA9B9A0F952298A17AEB73A87F18C7DA /* ExecutorWithPriority-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 43E66942230401F7747CCD2FA4B72718 /* ReactMarker.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 4712A829EE1ADFA4F46D1872DA3A3A90 /* 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 = 03055D7A42E5E850114489ED90D99F78 /* RCTInputAccessoryViewContent.m */; }; - 44077BE7DC478E91BB1F7FBCBD475D79 /* RNBootSplash-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 46A45D2EF0AD50250C14EC10A064ADF9 /* RNBootSplash-dummy.m */; }; + 43E66942230401F7747CCD2FA4B72718 /* ReactMarker.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 6ABA5EAB78B6D361C3EFD3C8975D10F4 /* 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 = B7F4FC59F25581AC94EE0BCAF8F06E64 /* RCTInputAccessoryViewContent.m */; }; + 44077BE7DC478E91BB1F7FBCBD475D79 /* RNBootSplash-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 4FA787B4E7BB643A1744D70272BE7E4C /* RNBootSplash-dummy.m */; }; 4409E6512D39E11B09F0A04BAEE9A0EC /* FIRInstallations.h in Headers */ = {isa = PBXBuildFile; fileRef = 7A775134BE2BBC43B646F99B9D67150B /* FIRInstallations.h */; settings = {ATTRIBUTES = (Project, ); }; }; 443D3DDF5D13F55E3BE2AB33A97AA222 /* ScheduledRSocketResponder.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1649E224C4DDA3C3C93A193AFE08D20B /* 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 = C52761B7DA3EA39F7288C036525CB927 /* StreamRequester.h */; settings = {ATTRIBUTES = (Project, ); }; }; 444F98C1E4DD386225533E8C80FBA788 /* Portability.h in Headers */ = {isa = PBXBuildFile; fileRef = BAD1C571D64BB9D0FAC96D240044C4CB /* Portability.h */; settings = {ATTRIBUTES = (Project, ); }; }; 4456DC7E9228FF28308FEEAA206EE6E5 /* Request.h in Headers */ = {isa = PBXBuildFile; fileRef = EF4E4DE2415A64664FF173A23F04A49B /* Request.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 447005F902B950F31D9B84B31863C6C2 /* RNGestureHandlerState.h in Headers */ = {isa = PBXBuildFile; fileRef = CFA2603FABAEAAB495CB1DA0BB90CBF2 /* RNGestureHandlerState.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 44C9F9E631175EE5DCB9CE7BDD02A15E /* YGNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 08286E5500972EC4C7AFF7710EB30701 /* YGNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 44CE88088F17C4DA76F31DB5A23EF1C0 /* RNFirebaseCrashlytics.m in Sources */ = {isa = PBXBuildFile; fileRef = 259A7A98CD2D59BD5742C7E41787EBD7 /* RNFirebaseCrashlytics.m */; }; - 44DEAD0A33C7D76B606E996CF39F0A81 /* SDWebImageDownloader.h in Headers */ = {isa = PBXBuildFile; fileRef = 2B7E6CF1DA3AC611617928B73C696AA2 /* SDWebImageDownloader.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 452641E607EA42EAB0D4C7FC7F68438A /* RNFirebaseRemoteConfig.m in Sources */ = {isa = PBXBuildFile; fileRef = 0231B9765D9737322AAC9865EC423544 /* RNFirebaseRemoteConfig.m */; }; - 4557369F93FE463848E140D0D70D2063 /* RCTParserUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = 3BA5BEBF5EA5AEAF9C55ADFDF12357EB /* RCTParserUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 447005F902B950F31D9B84B31863C6C2 /* RNGestureHandlerState.h in Headers */ = {isa = PBXBuildFile; fileRef = 9D0F083E8592F1F28DB118F4EC642305 /* RNGestureHandlerState.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 44C9F9E631175EE5DCB9CE7BDD02A15E /* YGNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 596544AC58B464D81D296BF551C7A66C /* YGNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 44CE88088F17C4DA76F31DB5A23EF1C0 /* RNFirebaseCrashlytics.m in Sources */ = {isa = PBXBuildFile; fileRef = 5C9A32219598A95DA7FD3946860DAC48 /* RNFirebaseCrashlytics.m */; }; + 452641E607EA42EAB0D4C7FC7F68438A /* RNFirebaseRemoteConfig.m in Sources */ = {isa = PBXBuildFile; fileRef = 52EDE0561C5B212AAB971CD89D231544 /* RNFirebaseRemoteConfig.m */; }; + 4557369F93FE463848E140D0D70D2063 /* RCTParserUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = FEAD297F7DAC54FCDAAE8AF277732D69 /* RCTParserUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; 458213474465102B117267E9161B7363 /* fast-dtoa.h in Headers */ = {isa = PBXBuildFile; fileRef = 6B2DBE064CD3B929A0F4DEB8762C8BAA /* fast-dtoa.h */; settings = {ATTRIBUTES = (Project, ); }; }; 4584237784EA05B37B6C57AEA19C0DA1 /* FramedDuplexConnection.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 47F2E167D022EC3B2BBB539B5FC5B7B4 /* 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 = 183E61566B54F596580EB43C7A97F866 /* ARTRenderableManager.m */; }; - 45C8C704DEE98A453BF3805330308D96 /* InspectorInterfaces.h in Headers */ = {isa = PBXBuildFile; fileRef = D5B352B7AC0F23E844B39268237DF74C /* InspectorInterfaces.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 45955CF3D29DDBFBD70BE7074C312431 /* ARTRenderableManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 2ACF30ED9C4843CE6121C3225A01ABAC /* ARTRenderableManager.m */; }; + 45C8C704DEE98A453BF3805330308D96 /* InspectorInterfaces.h in Headers */ = {isa = PBXBuildFile; fileRef = B59325D29B6F441407613919EA56C5F0 /* InspectorInterfaces.h */; settings = {ATTRIBUTES = (Project, ); }; }; 45D699FECA801F44943FF1FA546A60FA /* IOThreadPoolExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = 8783AFFE02885B74233095A928454D3C /* IOThreadPoolExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 45E453D6D86AF7E65607897FDA4EB49A /* ImageCropPicker.m in Sources */ = {isa = PBXBuildFile; fileRef = E30318F688F0094C6830361CADB31299 /* ImageCropPicker.m */; }; + 45E453D6D86AF7E65607897FDA4EB49A /* ImageCropPicker.m in Sources */ = {isa = PBXBuildFile; fileRef = 1F4830428FD4A5E894279DE690CBA5CD /* ImageCropPicker.m */; }; 4620B2AEA9AF6351E661200E2DD3A3C9 /* Uri.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 15DD8D53302593BBF07E4AAAE29BCED8 /* 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 = 40E6DCD80E4FC6FFB164600E707463D7 /* UMEventEmitterService.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4647F15E0AAB72AAF4365266C1EB0F4E /* UMEventEmitterService.h in Headers */ = {isa = PBXBuildFile; fileRef = 94F1DACBB879A0258514B8FB23EB1181 /* UMEventEmitterService.h */; settings = {ATTRIBUTES = (Project, ); }; }; 4660AD51A8D6ACBF5A2A87CD7512E905 /* Hardware.h in Headers */ = {isa = PBXBuildFile; fileRef = 557D102B219E85522190E096C43E8104 /* Hardware.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 466306A54775FBB6D3367A06DA9D4D98 /* ObservingInputAccessoryView.h in Headers */ = {isa = PBXBuildFile; fileRef = 02CA029FB79AF696A740D09145194B3B /* ObservingInputAccessoryView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 466306A54775FBB6D3367A06DA9D4D98 /* ObservingInputAccessoryView.h in Headers */ = {isa = PBXBuildFile; fileRef = F01F30CE19BA84D9736764B3B7DE1E16 /* ObservingInputAccessoryView.h */; settings = {ATTRIBUTES = (Project, ); }; }; 467BF23FF6980B07FCDC81FAC9BC9C5A /* id.lproj in Resources */ = {isa = PBXBuildFile; fileRef = 13CCEE65A81AC4AEFAF2C7B869CEC702 /* id.lproj */; }; - 468E2BA37E64CD16F291C2603E6C6D60 /* RNCSliderManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 09A01FEB7B8297EBB01FB336C4B31A7F /* RNCSliderManager.m */; }; - 46A868E9CE27BA610763D1E1E7538ECC /* RCTTextTransform.h in Headers */ = {isa = PBXBuildFile; fileRef = 4AA5953CEC6B4F9133E614A9B1EDAF92 /* RCTTextTransform.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46AEBF140BCD7FC59E5ABD95295133B5 /* RCTBackedTextInputDelegateAdapter.h in Headers */ = {isa = PBXBuildFile; fileRef = EDEFE166DD7CD1DDB8170EB2EDC5647C /* RCTBackedTextInputDelegateAdapter.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46B19C66E71E44CAC96E95D478DDC0CD /* RCTModalHostViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 93D5D1140E791F42067DC156835CA7B0 /* 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 = B4423D352B299A86B76B33FB2B911D68 /* RCTSwitchManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46D63884E3DEF1CCD5362A994CC9F375 /* RCTConvert+CoreLocation.m in Sources */ = {isa = PBXBuildFile; fileRef = 739CC36EF22AB6A559FB5581FD5EC465 /* 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"; }; }; + 468E2BA37E64CD16F291C2603E6C6D60 /* RNCSliderManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 8B2699394777EA90163AA28934A6219D /* RNCSliderManager.m */; }; + 46A868E9CE27BA610763D1E1E7538ECC /* RCTTextTransform.h in Headers */ = {isa = PBXBuildFile; fileRef = CC987FD1C9D20A946E34C5BFE332EE1A /* RCTTextTransform.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46AEBF140BCD7FC59E5ABD95295133B5 /* RCTBackedTextInputDelegateAdapter.h in Headers */ = {isa = PBXBuildFile; fileRef = 8A134C867AFCCA54CF0D6394079E8BBE /* RCTBackedTextInputDelegateAdapter.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46B19C66E71E44CAC96E95D478DDC0CD /* RCTModalHostViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 66FE20FFDA5F3ADA0C05B13BC7CAC482 /* 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 = 1C2DA79642A223E0B8CB8DCAE42D5F97 /* RCTSwitchManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46D63884E3DEF1CCD5362A994CC9F375 /* RCTConvert+CoreLocation.m in Sources */ = {isa = PBXBuildFile; fileRef = 1759CEB888E5987814F821AFE339BFAF /* 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 = F0FB281C37D44B7516BBDC39FE85AF57 /* 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 = 1F8E40CA30A2750FBC8296C9FE83154B /* ClockGettimeWrappers.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 470DBD3E5CFEB15377A9DE736580E7BC /* RCTNetworkPlugins.h in Headers */ = {isa = PBXBuildFile; fileRef = 87879C5F90E0BF186BD7EB7751024664 /* RCTNetworkPlugins.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 470DBD3E5CFEB15377A9DE736580E7BC /* RCTNetworkPlugins.h in Headers */ = {isa = PBXBuildFile; fileRef = FD51AAA3719AD0CF882F25611059F1A8 /* RCTNetworkPlugins.h */; settings = {ATTRIBUTES = (Project, ); }; }; 47100C8C26038713F688529AFE01C5B2 /* Checksum.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F19B841F7DA21EA94D9EF149EDAF3178 /* Checksum.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - 47137640EA9918E330D043246EA8EB14 /* UIImage+Resize.h in Headers */ = {isa = PBXBuildFile; fileRef = F7CB6BF66BCA18F01B9CF33D6B04566E /* UIImage+Resize.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 47137640EA9918E330D043246EA8EB14 /* UIImage+Resize.h in Headers */ = {isa = PBXBuildFile; fileRef = 0AB4F00648ECDD7EB9847E2E41DE63DB /* UIImage+Resize.h */; settings = {ATTRIBUTES = (Project, ); }; }; 474C3BE8073A5D673B57C69C7996E60A /* AsyncTrace.h in Headers */ = {isa = PBXBuildFile; fileRef = 863FE9B5F77248181613FA2BDB5ED4FA /* AsyncTrace.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4750F79CFFF949B8F30142D7072CE41B /* RCTMultiplicationAnimatedNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 23F91F7ECFFD18675908FE501CA1B836 /* 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 = ACB988BE0BB6DC701ADBFF25CD159A79 /* 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 = 1F6CEAA5D418CC1CED2D2ACE01D78B26 /* RWSpinLock.h */; settings = {ATTRIBUTES = (Project, ); }; }; 4777554C153B236B131B65B82D265D9B /* GDTCORLifecycle.m in Sources */ = {isa = PBXBuildFile; fileRef = F358BACB84136E28A17E34D7C15F5AB1 /* GDTCORLifecycle.m */; }; - 47A5093A7C03F0DB0BA913BC76B9A83A /* RCTTransformAnimatedNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 88956C81AA4B077BC4788F5BD4D3B66D /* RCTTransformAnimatedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 47A5093A7C03F0DB0BA913BC76B9A83A /* RCTTransformAnimatedNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 3E27859F0D8EA8982399668BD3F83DFC /* RCTTransformAnimatedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; 47A6E5DF69708A9B554DB9510EA2B78C /* FBLPromiseError.h in Headers */ = {isa = PBXBuildFile; fileRef = F57A9E352A753038A63CD62B43664F1F /* FBLPromiseError.h */; settings = {ATTRIBUTES = (Project, ); }; }; 47B66FF514DE8F14DA8B915436661C1A /* FBLPromise+Async.h in Headers */ = {isa = PBXBuildFile; fileRef = F3AADB7DA7995E8E50D583A2F2D41DFB /* FBLPromise+Async.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 47BEE0CF5DF52F0AFFD813803E3382B2 /* RCTBackedTextInputViewProtocol.h in Headers */ = {isa = PBXBuildFile; fileRef = D674B7043399AE923A8080EB3E0DD7B3 /* RCTBackedTextInputViewProtocol.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 47BEE0CF5DF52F0AFFD813803E3382B2 /* RCTBackedTextInputViewProtocol.h in Headers */ = {isa = PBXBuildFile; fileRef = 94026BAA4E4E9401D51BCAF032C4F65E /* RCTBackedTextInputViewProtocol.h */; settings = {ATTRIBUTES = (Project, ); }; }; 47D644E0A812CEAF1C3397017B6D3269 /* CPUThreadPoolExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = F105840ABB86138B7A45331444829B5E /* CPUThreadPoolExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; 47E2E2BC07749B3A2978080B181FD194 /* TLRefCount.h in Headers */ = {isa = PBXBuildFile; fileRef = E5B7EC14977E161F9A256842E077D32D /* TLRefCount.h */; settings = {ATTRIBUTES = (Project, ); }; }; 47FD2A663D13ED9D779AB1B4A7D517BE /* logging.cc in Sources */ = {isa = PBXBuildFile; fileRef = 29606D0428A257B7EEA91DF2AEF5A104 /* logging.cc */; settings = {COMPILER_FLAGS = "-Wno-shorten-64-to-32"; }; }; @@ -1072,51 +1072,52 @@ 48377AB732CAE5FB016FC6D671D2F028 /* IPAddressV4.h in Headers */ = {isa = PBXBuildFile; fileRef = EF87BCE72094E70086C6A87E257D97D9 /* IPAddressV4.h */; settings = {ATTRIBUTES = (Project, ); }; }; 4863677D1787975D4D4AD4631CBF3CB2 /* AtomicUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = A2FA88289F51C3EDDE7D9319C5B10200 /* AtomicUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; 486EC643435E18407070A694FF7ABA13 /* SysTypes.h in Headers */ = {isa = PBXBuildFile; fileRef = 8AB61E70D6808E0040F3B13CD7755458 /* SysTypes.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 48C00656B6B6504BF3E9443AFB067A4B /* RCTScrollableProtocol.h in Headers */ = {isa = PBXBuildFile; fileRef = 0BD21030CD3C2076216E327F1F2AB1A2 /* RCTScrollableProtocol.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 48DBFFF2ECB6D32043950EA454CB93C6 /* BugsnagFileStore.h in Headers */ = {isa = PBXBuildFile; fileRef = 1FC9F360C6E2DE922732719E9CF39F59 /* BugsnagFileStore.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 48C00656B6B6504BF3E9443AFB067A4B /* RCTScrollableProtocol.h in Headers */ = {isa = PBXBuildFile; fileRef = 26F711C72BF23EDBF0FEE1F6D24E2D77 /* RCTScrollableProtocol.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 48DBFFF2ECB6D32043950EA454CB93C6 /* BugsnagFileStore.h in Headers */ = {isa = PBXBuildFile; fileRef = 21134F497393F62143AF30FAC168E662 /* BugsnagFileStore.h */; settings = {ATTRIBUTES = (Project, ); }; }; 48DDDD887768C3EB92C89C1F9C23B92D /* Future.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D9EFE463C43910C54A890ADAC0086996 /* 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 = 0D589AAC9C2027007645B7D5BDA05231 /* GDTCORPlatform.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 48EB5A4F7788EB85A925C41694548662 /* RCTBaseTextInputViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 3636F14631625280E28D82BACF327AEB /* RCTBaseTextInputViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4911A49352FA3F1FD70F0A16338D5A20 /* RCTFrameUpdate.h in Headers */ = {isa = PBXBuildFile; fileRef = 63CC07745CC112A9D0FD8C382B2E4996 /* RCTFrameUpdate.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4939A4F89154BC54B6D4CD37BC3AF6FB /* BSG_KSSignalInfo.h in Headers */ = {isa = PBXBuildFile; fileRef = A401BFC2002B1F9F6DAFF5F0A3777E03 /* BSG_KSSignalInfo.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 49659FD56D7A26D9712075D2973278D9 /* REAStyleNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 719CB1BCA06AACF1CB60A6CA66317BF6 /* REAStyleNode.m */; }; - 4973DE666E368BC3A61245D6C8969AA9 /* RNNotificationUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = 77551D21D017ED844EB6B8D74A5B0FEC /* RNNotificationUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 48EB5A4F7788EB85A925C41694548662 /* RCTBaseTextInputViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = B5B0E7AB0A4CC6D0C106EFD7FCE0A45F /* RCTBaseTextInputViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4911A49352FA3F1FD70F0A16338D5A20 /* RCTFrameUpdate.h in Headers */ = {isa = PBXBuildFile; fileRef = 9AB42448500785C24E67529CB5AB1F4B /* RCTFrameUpdate.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4939A4F89154BC54B6D4CD37BC3AF6FB /* BSG_KSSignalInfo.h in Headers */ = {isa = PBXBuildFile; fileRef = BAB9FA6346E6E9AF7F7387AB38D68016 /* BSG_KSSignalInfo.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 49659FD56D7A26D9712075D2973278D9 /* REAStyleNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 88ECFC89CCAD191725DD91E7F4F9B135 /* REAStyleNode.m */; }; + 4973DE666E368BC3A61245D6C8969AA9 /* RNNotificationUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = 58052050747C3FE6DB77709BD5A8A66F /* RNNotificationUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; 4977E406F103BC7E9F600C3C57CBF755 /* picture_rescale_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = 348B199EEFC3DA083A2E10408D39B62E /* picture_rescale_enc.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; 497A593D49008335CA1284AF1B2D3CF5 /* FIRInstallationsStore.m in Sources */ = {isa = PBXBuildFile; fileRef = 21C84F6D1366D920F804707536A54084 /* FIRInstallationsStore.m */; }; - 49820FDD699B4BE9595BD373833EF371 /* RCTCxxMethod.mm in Sources */ = {isa = PBXBuildFile; fileRef = D9279E8DCDD76912B395B18D4F8F102A /* 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 = 67A2DD1D2920C3953254B39BCF61227E /* 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 = 1BCDAE4A50DD905C59990F40625FB0A5 /* FlipperClient+Testing.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 49999504FF0B43EA03D23A9742A506D9 /* BSG_KSCrashCallCompletion.m in Sources */ = {isa = PBXBuildFile; fileRef = 119FA8BE700BB585F326E8DDDBE2097B /* BSG_KSCrashCallCompletion.m */; }; - 499FEAAE461FD29D544C7CC5DE018BFA /* Orientation.h in Headers */ = {isa = PBXBuildFile; fileRef = 21DBB7108A9FA1EEFCA9735DD0E85D7D /* Orientation.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 49BF6E7A84AE6204A4FB7F24F7B14760 /* BridgeJSCallInvoker.h in Headers */ = {isa = PBXBuildFile; fileRef = 30D01623D5B2069095D4078A25ADB625 /* BridgeJSCallInvoker.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 49999504FF0B43EA03D23A9742A506D9 /* BSG_KSCrashCallCompletion.m in Sources */ = {isa = PBXBuildFile; fileRef = CFE14123E8388B7836BBD9604DD84E98 /* BSG_KSCrashCallCompletion.m */; }; + 499FEAAE461FD29D544C7CC5DE018BFA /* Orientation.h in Headers */ = {isa = PBXBuildFile; fileRef = 95CEC26F847DB54D49844CF88621B9CD /* Orientation.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 49BF6E7A84AE6204A4FB7F24F7B14760 /* BridgeJSCallInvoker.h in Headers */ = {isa = PBXBuildFile; fileRef = 5779018A1CDB41D9CABB2FCFAC1227DD /* BridgeJSCallInvoker.h */; settings = {ATTRIBUTES = (Project, ); }; }; 49CAC6443A707C331BEA57C02856261F /* SKObject.h in Headers */ = {isa = PBXBuildFile; fileRef = 44897F3CFA9058AC66EA46BDE9D4E921 /* SKObject.h */; settings = {ATTRIBUTES = (Project, ); }; }; 49CB6E0BD077995D6FE671AE085BBB4C /* MacAddress.cpp in Sources */ = {isa = PBXBuildFile; fileRef = E6086A72DC6A3CCB544C74155D5EACBF /* 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 = 9AF0129EA8B4E8F540AA07097DCCEED4 /* 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 = 0DC4753856349A20BF60E239F3DE0374 /* ReactNativeART-dummy.m */; }; + 49CB873D7004E4F5DF6458EB2A92AC9B /* RCTAccessibilityManager.mm in Sources */ = {isa = PBXBuildFile; fileRef = 13A121E1C5CEF11DC3036020F0D9B306 /* 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 = 85C1156312F9CEBB9D1A0C6DB38ED48C /* ReactNativeART-dummy.m */; }; 49ED22AD77FCA7D73439C955EC426CD9 /* backward_references_enc.h in Headers */ = {isa = PBXBuildFile; fileRef = 66AD95F396C13CE8EC124AA18BAFA3A6 /* backward_references_enc.h */; settings = {ATTRIBUTES = (Project, ); }; }; 49EEE7711D57EED8E0AAE22C745C541E /* ConnectionSet.cpp in Sources */ = {isa = PBXBuildFile; fileRef = EAB24F913164B156B7F211F6F33D9B23 /* 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 = 1E84BABFA46907C3092C5F2ABC995C29 /* BugsnagConfiguration.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 49F2EC3563399A1BB0FCF122982D86D7 /* BugsnagConfiguration.h in Headers */ = {isa = PBXBuildFile; fileRef = EC0288E7FC24922EE25F901CF9ED9725 /* BugsnagConfiguration.h */; settings = {ATTRIBUTES = (Project, ); }; }; 4A21F2608B9DA7432CB306111F436C8E /* EventBaseManager.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 244810D219B6E98BEDE760339F52EC1C /* 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 = 45416CE24440AC226668176D00E285BA /* SDWebImageDownloaderConfig.h */; settings = {ATTRIBUTES = (Project, ); }; }; 4A57D866B6D03E82B4FCA3BA226A8984 /* it.lproj in Resources */ = {isa = PBXBuildFile; fileRef = 961CADB0E5CD518E42C75D299D86FE46 /* it.lproj */; }; 4A719D312510D21AFB33E68F642D3F3D /* bignum.h in Headers */ = {isa = PBXBuildFile; fileRef = CCBE188E6D63D2509FD75176889897BD /* bignum.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4A74583FE28AC53E6F70FF752B5BB4F9 /* RCTConvert+Text.h in Headers */ = {isa = PBXBuildFile; fileRef = 24289386D837C7C24973A780A5CFC145 /* RCTConvert+Text.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4A75E803AF46B56D11CCCE41CE8FBE0C /* UMUtilities.m in Sources */ = {isa = PBXBuildFile; fileRef = 003EAF4329308F1EC6185DA44A1D66DC /* UMUtilities.m */; }; - 4A7CBC49E0E714E315BF2E22E39BC136 /* UMReactFontManager.m in Sources */ = {isa = PBXBuildFile; fileRef = C5F49D1EC24C9C8AD979AEF0E0EFFCA9 /* UMReactFontManager.m */; }; + 4A74583FE28AC53E6F70FF752B5BB4F9 /* RCTConvert+Text.h in Headers */ = {isa = PBXBuildFile; fileRef = 33066923C6F654D679137ADBB1EAA68D /* RCTConvert+Text.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4A75E803AF46B56D11CCCE41CE8FBE0C /* UMUtilities.m in Sources */ = {isa = PBXBuildFile; fileRef = DE58BC1E40261CB1AFD48A2215220FAC /* UMUtilities.m */; }; + 4A7CBC49E0E714E315BF2E22E39BC136 /* UMReactFontManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 7548031C7F55209E79DE43120A326F64 /* UMReactFontManager.m */; }; 4AC690953B74C886E5FF8BD390838079 /* FIRInstallationsAuthTokenResultInternal.h in Headers */ = {isa = PBXBuildFile; fileRef = DC20B874C6A68011CB27B5F88D53F250 /* FIRInstallationsAuthTokenResultInternal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4AD9C2A6410A8A5406F0F079246BD04E /* RCTImageLoader.mm in Sources */ = {isa = PBXBuildFile; fileRef = 2D1FDE73C0584894CCEAA11A49E2129D /* 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 = 0288216AD777E20758A9407FEBC14AB8 /* 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"; }; }; + 4AD9CCC85B3778658169C43F329DB13D /* SDAnimatedImageRep.h in Headers */ = {isa = PBXBuildFile; fileRef = 21F177EFEF22345D597A4CC3E0A136B9 /* SDAnimatedImageRep.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4AE162265A0182AC50A6C8D4A09E0F1A /* SDImageIOAnimatedCoderInternal.h in Headers */ = {isa = PBXBuildFile; fileRef = 4A91A33C96BF578F37C37B3C171CC164 /* SDImageIOAnimatedCoderInternal.h */; settings = {ATTRIBUTES = (Project, ); }; }; 4AE716C8CE1833E6A3314B910C450EB8 /* FIRInstallationsIDController.m in Sources */ = {isa = PBXBuildFile; fileRef = 1B11D8F6B10DE245DD594083479F5770 /* FIRInstallationsIDController.m */; }; - 4B174EC3B79E737EC18607D92EFFA69B /* RNDocumentPicker.h in Headers */ = {isa = PBXBuildFile; fileRef = E190A81436A1E6A3B90BE76CDA87269B /* RNDocumentPicker.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4B174EC3B79E737EC18607D92EFFA69B /* RNDocumentPicker.h in Headers */ = {isa = PBXBuildFile; fileRef = EEBB40606CBEF5ED5427218DDC0F775B /* RNDocumentPicker.h */; settings = {ATTRIBUTES = (Project, ); }; }; 4B3964B71F74D3D48482B3D853DA94E5 /* GCDAsyncSocket.m in Sources */ = {isa = PBXBuildFile; fileRef = 33D0D0C5D3CF1763B7E47E413FDAD898 /* GCDAsyncSocket.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0"; }; }; 4B6624A1006ED93B3305A5C01B680EAD /* random_utils.c in Sources */ = {isa = PBXBuildFile; fileRef = 3BD3D4E6B83467B5A10273B7C54AC3BB /* random_utils.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; 4B75E3FFB3D2849FDB5C18EF604FC7B0 /* FlipperCppBridgingConnection.mm in Sources */ = {isa = PBXBuildFile; fileRef = E65122D506BBE3FAFF52042089A13191 /* FlipperCppBridgingConnection.mm */; settings = {COMPILER_FLAGS = "-DDEBUG=1 -DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0"; }; }; 4B78280A70D9BB666FAB125C4D89A8AA /* TOCropToolbar.h in Headers */ = {isa = PBXBuildFile; fileRef = 5FF7FFBB3A1C00A5DFABFDDDE2BBEE7F /* TOCropToolbar.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4B7E182091DC4DEE2D2A5E1706F0D6A9 /* BridgeJSCallInvoker.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 156000D09829F9412CE412849106C412 /* 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 = 9AB3163B0A3BE8F8D7E6A06A6F9E1FD8 /* 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 = B8E4CC3E9E146017C706F7F1BB8AE183 /* RSocketServiceHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; 4BBA805E7B1BA9E6C8AD89E9D9579637 /* EnableSharedFromThis.h in Headers */ = {isa = PBXBuildFile; fileRef = C9449BD91D95C25D43F9181CA3577DA4 /* EnableSharedFromThis.h */; settings = {ATTRIBUTES = (Project, ); }; }; 4BE9AA0AC9220535A1CC94231A061BC8 /* CallOnce.h in Headers */ = {isa = PBXBuildFile; fileRef = 012D2366D2C172885416EEAAB9F76A32 /* CallOnce.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4C27A9AD108236F4F6ADCE9F417A2B93 /* RCTMessageThread.h in Headers */ = {isa = PBXBuildFile; fileRef = 99D5C8C0B6B045FFA224BAC71C1C3860 /* RCTMessageThread.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4C5605F65CD87114E1137603C0A6DAD1 /* BugsnagMetaData.m in Sources */ = {isa = PBXBuildFile; fileRef = 14B051DDE46778264E83099E407929F4 /* BugsnagMetaData.m */; }; - 4C58FFDEC23FCE92A89D81681B14EB77 /* RCTFollyConvert.mm in Sources */ = {isa = PBXBuildFile; fileRef = 7A2F23E4B697DCF260B94A6A4A8E1A8A /* RCTFollyConvert.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 4C27A9AD108236F4F6ADCE9F417A2B93 /* RCTMessageThread.h in Headers */ = {isa = PBXBuildFile; fileRef = CF90071C78D7A98508E84FBAF8B6A50A /* RCTMessageThread.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4C5605F65CD87114E1137603C0A6DAD1 /* BugsnagMetaData.m in Sources */ = {isa = PBXBuildFile; fileRef = 3BBE6D92798A461EFCA9D5A47C083203 /* BugsnagMetaData.m */; }; + 4C58FFDEC23FCE92A89D81681B14EB77 /* RCTFollyConvert.mm in Sources */ = {isa = PBXBuildFile; fileRef = 83693D5451FDF4316F3F70951A39E917 /* 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 = AADF4AD8D1389D4DD8D6E871DC5EC1DD /* FIRInstallationsIIDStore.h */; settings = {ATTRIBUTES = (Project, ); }; }; 4C76D9A8EEB343746F6A73E6573B2D03 /* WarmResumeManager.h in Headers */ = {isa = PBXBuildFile; fileRef = AD093D7CD3B222CC7E443BBA1C797ACC /* WarmResumeManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; 4C7861B119472BD8477B7309689351FF /* Future-pre.h in Headers */ = {isa = PBXBuildFile; fileRef = A364F0AF0437389BC6A853C1D2E5C929 /* Future-pre.h */; settings = {ATTRIBUTES = (Project, ); }; }; @@ -1124,53 +1125,55 @@ 4CB17CB8D126B3C0756BD759ED594ED0 /* FBLPromise+Testing.m in Sources */ = {isa = PBXBuildFile; fileRef = 64E56B2614F5D42FF65FA87F764AD690 /* FBLPromise+Testing.m */; }; 4CB1C4E683C40915621BBD422C570224 /* GULNetwork.m in Sources */ = {isa = PBXBuildFile; fileRef = 86DE475B8C6CB8C7E6355AEEC42F2E1C /* GULNetwork.m */; }; 4CF3D08C153169A8C9C45051D909163E /* FIRInstallationsAuthTokenResult.m in Sources */ = {isa = PBXBuildFile; fileRef = 569F9E9198C1B4D2BBC78F62ECD1EA31 /* FIRInstallationsAuthTokenResult.m */; }; - 4CF4A1ACB731A31DF60286829840BB67 /* RCTLogBox.h in Headers */ = {isa = PBXBuildFile; fileRef = 752EBEF4EC71B1AA44A5C0D90110F58E /* RCTLogBox.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4D0094D0DB02BBAA1A05DE84CFFA938A /* BSG_KSCrashSentry_CPPException.h in Headers */ = {isa = PBXBuildFile; fileRef = A7798071B7755EBB888C05B185A09583 /* BSG_KSCrashSentry_CPPException.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4D01B773A72D6899D310073B55EE554D /* RCTLogBox.mm in Sources */ = {isa = PBXBuildFile; fileRef = B8FF9CD3EB5A10C3E96DCF23DE830F73 /* 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 = 5EE0EABCCC36003AE9A066A1311388C6 /* 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 = 618FE908C3F774F89089B1A1A0D1E4E7 /* RCTLogBox.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4D0094D0DB02BBAA1A05DE84CFFA938A /* BSG_KSCrashSentry_CPPException.h in Headers */ = {isa = PBXBuildFile; fileRef = 5845569959B014162BF3DBB71C0DC32A /* BSG_KSCrashSentry_CPPException.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4D01B773A72D6899D310073B55EE554D /* RCTLogBox.mm in Sources */ = {isa = PBXBuildFile; fileRef = DE8728CD22EF370A33592E0D7F24649A /* 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 = FECC29C6CD052CA647018FD2E22DA0DE /* 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 = 8B92BDD940F925497B067CEF1DAE04BC /* PolyException.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4D52D79DFB71CAF47B95A999F1F99567 /* RCTActionSheetManager.mm in Sources */ = {isa = PBXBuildFile; fileRef = 80CF828602B6DB507E88F991AE246BED /* 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 = A18DB1F88984A19F7F2006007082F67F /* 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 = 47CF75D10934F39790AC9D0BD005293F /* 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"; }; }; - 4D8EE5879A925DD23B6D7B1C82F0BFE6 /* EXVideoThumbnails-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 0633D4BC2B6C74F5592307ACB6CA753E /* EXVideoThumbnails-dummy.m */; }; - 4DA09B3F7B91287B9EEADD4F6CCD6D20 /* BSGOutOfMemoryWatchdog.h in Headers */ = {isa = PBXBuildFile; fileRef = 0C879FAF890CC44C742103804933655E /* BSGOutOfMemoryWatchdog.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4DA8304474BEA599DF8E2F8D29F75DDA /* RNFirebaseAuth.m in Sources */ = {isa = PBXBuildFile; fileRef = C51E3248075DA87730F8569F1ABA1D10 /* RNFirebaseAuth.m */; }; + 4D8EE5879A925DD23B6D7B1C82F0BFE6 /* EXVideoThumbnails-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 4F24913A141036E9AC7793EBAC897DEB /* EXVideoThumbnails-dummy.m */; }; + 4DA09B3F7B91287B9EEADD4F6CCD6D20 /* BSGOutOfMemoryWatchdog.h in Headers */ = {isa = PBXBuildFile; fileRef = B89A338733C87A40A6DC008330D97288 /* BSGOutOfMemoryWatchdog.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4DA8304474BEA599DF8E2F8D29F75DDA /* RNFirebaseAuth.m in Sources */ = {isa = PBXBuildFile; fileRef = AE8035DF834BCD014B264E9E1E4AE128 /* RNFirebaseAuth.m */; }; 4DC3C93691EB8D66A121CA71EF8113BF /* enc_sse41.c in Sources */ = {isa = PBXBuildFile; fileRef = 182EBC33A94F4200EED630D4051AEA48 /* enc_sse41.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 4DD88B6EF04BCF202E55A0EB6D8EB486 /* RNForceTouchHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = B2801CE3D0AA03D69A9078311329EAF6 /* RNForceTouchHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4E0267A7B63543C6304321C820D6C83E /* RCTDatePicker.h in Headers */ = {isa = PBXBuildFile; fileRef = 00A208973A5C820DB58EA49C7ADFEB32 /* RCTDatePicker.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4DD88B6EF04BCF202E55A0EB6D8EB486 /* RNForceTouchHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 2BAB484E574AD0E1F43ED70EDCB51B4D /* RNForceTouchHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4E0267A7B63543C6304321C820D6C83E /* RCTDatePicker.h in Headers */ = {isa = PBXBuildFile; fileRef = 8A5A36992848EF0C83A2A15573A741EC /* RCTDatePicker.h */; settings = {ATTRIBUTES = (Project, ); }; }; 4E17E34A10921015C84C16FDADF1618D /* ConnectionContextStore.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 5A0CD4826E47ADD06ECE185411BB6E03 /* 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"; }; }; + 4E3D47B57A0D93260990272056DED85D /* SDImageCacheConfig.h in Headers */ = {isa = PBXBuildFile; fileRef = FED2C434111B58544FE00142915D2BB1 /* SDImageCacheConfig.h */; settings = {ATTRIBUTES = (Project, ); }; }; 4E482BE9AD7430C9B3E1B787850C95DF /* huffman_encode_utils.c in Sources */ = {isa = PBXBuildFile; fileRef = CB93992DBA1F6CEB65DEDA0CD40D6318 /* huffman_encode_utils.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; 4E5588F198AE4677917C8940ACE0A4F1 /* log_severity.h in Headers */ = {isa = PBXBuildFile; fileRef = 725E287E607D785B413443F8A05E955E /* log_severity.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4E6013E485F9ED649C319A0D4F4FF62A /* EXAVPlayerData.h in Headers */ = {isa = PBXBuildFile; fileRef = 026D365C03F0738EBB8705648566148D /* EXAVPlayerData.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4E7F408A6C7E76CCCB1D7C04FBC62B7C /* SDAnimatedImageRep.m in Sources */ = {isa = PBXBuildFile; fileRef = 7E9752BC689397DC85C1EB924545728A /* SDAnimatedImageRep.m */; }; - 4EB2D04587312A7B2BE1A6AA95DAE6D9 /* RCTInputAccessoryViewContent.h in Headers */ = {isa = PBXBuildFile; fileRef = 71531F4D01A58061478E016FA6E16A8B /* RCTInputAccessoryViewContent.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4EBD35331B247A7AC5B814CCCB418A7C /* RCTSurfaceHostingView.mm in Sources */ = {isa = PBXBuildFile; fileRef = 86BCF8918FA45AE14CB04B6ADA4D6627 /* RCTSurfaceHostingView.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 4E6013E485F9ED649C319A0D4F4FF62A /* EXAVPlayerData.h in Headers */ = {isa = PBXBuildFile; fileRef = 413E9E02B89504D07AD0848098C54E14 /* EXAVPlayerData.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4E7F408A6C7E76CCCB1D7C04FBC62B7C /* SDAnimatedImageRep.m in Sources */ = {isa = PBXBuildFile; fileRef = 7482609638507AC0F8E7C1EF39177AF2 /* SDAnimatedImageRep.m */; }; + 4EB2D04587312A7B2BE1A6AA95DAE6D9 /* RCTInputAccessoryViewContent.h in Headers */ = {isa = PBXBuildFile; fileRef = 61FFFEA945BB4074669BE0FC675DB87D /* RCTInputAccessoryViewContent.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4EBD35331B247A7AC5B814CCCB418A7C /* RCTSurfaceHostingView.mm in Sources */ = {isa = PBXBuildFile; fileRef = 9991C9E831092525615436BA5C28D5F5 /* 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 = EDDB70FF4ADF28EA822826C03211B12D /* dec.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; 4EFF0DEF429EF816734CCDE018C3C798 /* GDTCORUploadPackage_Private.h in Headers */ = {isa = PBXBuildFile; fileRef = 7CF6865EB0BF3A192313356A078FEF06 /* GDTCORUploadPackage_Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; 4F012C6282E1CEC511611133B36A3F4D /* FrameSerializer.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 059D07B656F170281E4608441D5988EB /* 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 = 86E7A2742CDDAC5A74CEFA4B2A333DE2 /* RCTTrackingAnimatedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4F03A4B5C2F4EBB29BB6FF2656366CB2 /* RCTTrackingAnimatedNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 340ED29903801A2D2027931C0A257BA3 /* RCTTrackingAnimatedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; 4F11A9CF13C6D879459774E82AC101F9 /* StaticSingletonManager.h in Headers */ = {isa = PBXBuildFile; fileRef = C254A8332C4E39AD6D3516D71FFD32A7 /* StaticSingletonManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4F165C53DEB201655E404D327B10E2F7 /* YGValue.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 31B9586A25A945DFDF336F9090B11E07 /* 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 = BFF25A5890088FE3163334A7ED4D8814 /* 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 = 27E75A58374AF4D65C9D681F436DA77D /* 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 = 9C32EED59E3EB4F48C75CF7A271FB89F /* 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"; }; }; + 4F6830E3F6DD8CB7A6306B32FB83D855 /* SDWebImageTransitionInternal.h in Headers */ = {isa = PBXBuildFile; fileRef = 8EDB9DF0E65C5FE1F5149E93D6A48BD3 /* SDWebImageTransitionInternal.h */; settings = {ATTRIBUTES = (Project, ); }; }; 4F87F03E8E671A7FAE79D64F5879D866 /* IPAddress.cpp in Sources */ = {isa = PBXBuildFile; fileRef = C2003381948AFF7CBC11D32CF2F11C33 /* 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 = 6A450AD5397BFD2E0D6FDB4F0F6450FE /* 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 = 080EC6C50A948DD67F2B8A2304C6EB5F /* LNAnimator.m */; }; - 4FA93A9BF665067BAA8E1BA1615FB242 /* RCTInputAccessoryView.h in Headers */ = {isa = PBXBuildFile; fileRef = 02EACCEF85C6401CE759EC23BFD20E25 /* RCTInputAccessoryView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4FAC86DCEF03878B76396DDA8E94340A /* RCTAnimationUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = CFEFBEA04FA99AD9C4C0CCF8E7EC85FF /* RCTAnimationUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4FB88F0D253B715C034CB05ED1A2BDCC /* REAModule.m in Sources */ = {isa = PBXBuildFile; fileRef = FE7137F593DB4D74102C04004E6ECE76 /* REAModule.m */; }; + 4F9658CA8344A2C6EFBB843700EC590A /* RCTDisplayLink.m in Sources */ = {isa = PBXBuildFile; fileRef = 53C28BDA6F66A6FA5DF59665F1716305 /* 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 = AA4409B962C6BD063E2902E75EF0692E /* LNAnimator.m */; }; + 4FA93A9BF665067BAA8E1BA1615FB242 /* RCTInputAccessoryView.h in Headers */ = {isa = PBXBuildFile; fileRef = 13CC2D28BDC280DC4C8E82643F75B4B9 /* RCTInputAccessoryView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4FAC86DCEF03878B76396DDA8E94340A /* RCTAnimationUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = F23246D98774B014519F397FFFD5EDFD /* RCTAnimationUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4FB88F0D253B715C034CB05ED1A2BDCC /* REAModule.m in Sources */ = {isa = PBXBuildFile; fileRef = B05EFE69BDDEC5A71A7E669C83750D9F /* REAModule.m */; }; 4FBC2BE9E6D22E669918E689C6196CB0 /* ReentrantAllocator.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1087704F8AB27E2FC8CEA11CCA45BA10 /* 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 = C9F5249E7488AC68C5C1BF0BC0810D36 /* react-native-appearance-dummy.m */; }; + 4FC056AA5B803E2F5E1BE4D5EB038A0B /* react-native-appearance-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 14258755F986E21328B0012F754CD726 /* react-native-appearance-dummy.m */; }; 4FC8CA3267CA7D49DF58E08780AA5E19 /* FirebaseInstallations.h in Headers */ = {isa = PBXBuildFile; fileRef = 286835DF3559AC299C2D9CD4496A883D /* FirebaseInstallations.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4FD5858446B70602FED0813A5DA32380 /* RCTRefreshControl.h in Headers */ = {isa = PBXBuildFile; fileRef = 3A0F82FC8E543DE98A2ACB23CE52A960 /* RCTRefreshControl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4FF75206B5BA87DFCE3B74F326BDC989 /* RCTJSStackFrame.m in Sources */ = {isa = PBXBuildFile; fileRef = 91D62D79BF728D7D47458B94EDD49343 /* 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 = 9640D0649B16529059D96E55D217B937 /* 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 = 2E5F66F8E856DEE00B552564AF706E9D /* 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 = 7849699F5D9238F474EA192DBE3B1BD3 /* RNLocalize.m */; }; + 4FD5858446B70602FED0813A5DA32380 /* RCTRefreshControl.h in Headers */ = {isa = PBXBuildFile; fileRef = 59D327E1F6566D942A5F35032664D5A9 /* RCTRefreshControl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4FF75206B5BA87DFCE3B74F326BDC989 /* RCTJSStackFrame.m in Sources */ = {isa = PBXBuildFile; fileRef = B7830A2BEAF6E48C6DA926A85E247D65 /* 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 = 84958FEE733A0752D626DB9D4BDB26B2 /* 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 = F47A67C689CCD9CA0744E44505079741 /* 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 = 37EBE83DA9320659CF94AA655941DF94 /* RNLocalize.m */; }; 504624B6461EEC8B924857670A089B16 /* TOCropOverlayView.h in Headers */ = {isa = PBXBuildFile; fileRef = 7D9B2787E581ABE1196173416CD9CF93 /* TOCropOverlayView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 504DC67E19BF97F896369BC24282F55F /* ReactNativeKeyboardTrackingView-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 9CBDA1D4944626DCD719D472BAD21DAD /* ReactNativeKeyboardTrackingView-dummy.m */; }; + 504DC67E19BF97F896369BC24282F55F /* ReactNativeKeyboardTrackingView-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 7D6608AA920DE840866750AE10978017 /* ReactNativeKeyboardTrackingView-dummy.m */; }; 504E0EE4CD7110B5D286FFC1B25B07A7 /* OpenSSLCertUtils.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D57A8C137F69CDB10C4A5FF42A17582D /* 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 = A186F3FC4D7CD50D00298D3EFDD4165E /* FBString.h */; settings = {ATTRIBUTES = (Project, ); }; }; 50664A61C6B66321C8A72CDF41E11E9A /* log_severity.h in Headers */ = {isa = PBXBuildFile; fileRef = C204812C2A6F2B7CBAE9D33EB9F64750 /* log_severity.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 50738319CBBADE87610C7672075BA2B8 /* EXVideoPlayerViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = 31172A1D79DC9491F3DE61DC9D8DE12B /* EXVideoPlayerViewController.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 50738319CBBADE87610C7672075BA2B8 /* EXVideoPlayerViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = 0D1E7B3AAB592A39BB127BDA3FA92FC9 /* EXVideoPlayerViewController.h */; settings = {ATTRIBUTES = (Project, ); }; }; 5075C64463D4078585F5BB7F6AFD1556 /* HHWheelTimer.cpp in Sources */ = {isa = PBXBuildFile; fileRef = DD6197C2FBEE1F35E615BC1FB9BC436A /* 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 = 133D0B8106A5DF5A97A1EC55698B5430 /* vlog_is_on.cc */; settings = {COMPILER_FLAGS = "-Wno-shorten-64-to-32"; }; }; 50A813DCE536784396073D6FFF9F3325 /* mux_types.h in Headers */ = {isa = PBXBuildFile; fileRef = 67CD612C014867DB8E85484626A95ED3 /* mux_types.h */; settings = {ATTRIBUTES = (Project, ); }; }; @@ -1179,268 +1182,278 @@ 5100CA33F67C8D850C5539A42A0DF5CB /* DeferObservable.h in Headers */ = {isa = PBXBuildFile; fileRef = B7D2FB2E7B87B3AF58AFC61B2ECC6CB4 /* DeferObservable.h */; settings = {ATTRIBUTES = (Project, ); }; }; 51069D69172171A69FF1532FDE6DD756 /* SharedMutex.h in Headers */ = {isa = PBXBuildFile; fileRef = 9F1926343DE14EA02341958BDCED80F2 /* SharedMutex.h */; settings = {ATTRIBUTES = (Project, ); }; }; 510794FD8810D34F0585981695F41366 /* CppAttributes.h in Headers */ = {isa = PBXBuildFile; fileRef = CC35A5EC43692ECB5D2C1791683358DA /* CppAttributes.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 51159AFC53F388672C4C7D487C9D647B /* RCTScrollEvent.m in Sources */ = {isa = PBXBuildFile; fileRef = 903382244D64A1D81775D162DD79F692 /* 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 = 10C0B7CC1D09FF9456E6432C3AAEB02D /* 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 = 156F5E2F004918518437A6AE68B03312 /* GDTCORRegistrar_Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; 512DBEA49D8024DEDA62DC51372951F8 /* STTimerFDTimeoutManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 613E052C86A7302C7BFEC7FE9FE084AE /* STTimerFDTimeoutManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 514D6E3A9CE6550543A475620E6A3685 /* RCTMultilineTextInputView.h in Headers */ = {isa = PBXBuildFile; fileRef = C9C73D7D00469115D46057DBC13A85F7 /* RCTMultilineTextInputView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 514D6E3A9CE6550543A475620E6A3685 /* RCTMultilineTextInputView.h in Headers */ = {isa = PBXBuildFile; fileRef = 609FB1F9A3F3610061E577D5F90A57BA /* RCTMultilineTextInputView.h */; settings = {ATTRIBUTES = (Project, ); }; }; 51530798E52AC33DAA3D6F36C1502776 /* F14Defaults.h in Headers */ = {isa = PBXBuildFile; fileRef = 893DF5C07750AECEFC175DB35A86CC77 /* F14Defaults.h */; settings = {ATTRIBUTES = (Project, ); }; }; 519E971486075E2256EBE61AB02CF8CD /* TOCropViewConstants.h in Headers */ = {isa = PBXBuildFile; fileRef = F88C0A630ABCAA36EAE04217BF12D102 /* TOCropViewConstants.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 51B0202DAF50A4A3AEA12893E08ACDF3 /* UMModuleRegistryDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = B9FEEC4F1C841ACAA260B57643E7C1DC /* UMModuleRegistryDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 51B5135B1A662E06FFE3C7A113729809 /* RCTImageBlurUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = 06FB3CE26855FB694C1788270CD863E2 /* RCTImageBlurUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 51B736CCCD3CB38027389E249AD7662F /* UIImage+Extension.m in Sources */ = {isa = PBXBuildFile; fileRef = 9C3F9D9A17FA6EF6E6CDE166CF171727 /* UIImage+Extension.m */; }; + 51B0202DAF50A4A3AEA12893E08ACDF3 /* UMModuleRegistryDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = 1A252F8F2A3346D5D48322B8C0E7524E /* UMModuleRegistryDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 51B5135B1A662E06FFE3C7A113729809 /* RCTImageBlurUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = 348DC81981FE90DE486FD92B8BCC8ABD /* RCTImageBlurUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 51B736CCCD3CB38027389E249AD7662F /* UIImage+Extension.m in Sources */ = {isa = PBXBuildFile; fileRef = B935559ECF8BE33373521DF4C55C26C6 /* UIImage+Extension.m */; }; 51CCFDC44D74CAD6022C9ACB512AEDE7 /* FIRInstallationsAuthTokenResult.h in Headers */ = {isa = PBXBuildFile; fileRef = 393D1FF6D158CD71F0244E40E3D99A9D /* FIRInstallationsAuthTokenResult.h */; settings = {ATTRIBUTES = (Project, ); }; }; 51D6D913550CBAC02E5FC6688CA8C0B4 /* SynchronizedPtr.h in Headers */ = {isa = PBXBuildFile; fileRef = F477B5419FE383BCD36D78C7D2DEA362 /* SynchronizedPtr.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 51EC5911331DF22E4C5968CD8B7ED7C7 /* RCTFileRequestHandler.mm in Sources */ = {isa = PBXBuildFile; fileRef = 40721705024406AE4E8607335A91AF04 /* 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 = 76562F5F8706D4210AA85753CB3215FA /* RCTI18nUtil.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5246C8B1D7CD3CDAB9202B280D8CA98D /* React-RCTSettings-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 18462B43FFBDF05E68BAB2E07C605FB9 /* React-RCTSettings-dummy.m */; }; + 51EC5911331DF22E4C5968CD8B7ED7C7 /* RCTFileRequestHandler.mm in Sources */ = {isa = PBXBuildFile; fileRef = E843686E57A6A99B4E2E728BF1AD7402 /* 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 = 9057D3899F930CE2294A71B350CB480D /* RCTI18nUtil.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5246C8B1D7CD3CDAB9202B280D8CA98D /* React-RCTSettings-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 2B4FE23C1B1B0B1C72E5E9684CCFBD4A /* React-RCTSettings-dummy.m */; }; 524DA1EBC0DBCB2CDAECE02FDD129CB5 /* TupleOps.h in Headers */ = {isa = PBXBuildFile; fileRef = EB1A0821F5F5EBBBD3BBE6D1A66BDCD6 /* TupleOps.h */; settings = {ATTRIBUTES = (Project, ); }; }; 52B21C30C1FB0CAE5BA26B599DEB64D8 /* SKNodeDescriptor.mm in Sources */ = {isa = PBXBuildFile; fileRef = 7EA9C28C027D146D8046B627AEC38B10 /* 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 = 24289386D837C7C24973A780A5CFC145 /* RCTConvert+Text.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 52C0E391D9D5F587B296E2DA8D81AEF4 /* RCTConvert+Text.h in Headers */ = {isa = PBXBuildFile; fileRef = 33066923C6F654D679137ADBB1EAA68D /* RCTConvert+Text.h */; settings = {ATTRIBUTES = (Project, ); }; }; 52E39979F439AD373ADF1108067FD6F4 /* Subprocess.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 248B4CE1C7DDAE021DD958A76F7AFA3E /* 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 = B080691EA6FC112ED447AAC85925371F /* TokenBucket.h */; settings = {ATTRIBUTES = (Project, ); }; }; 530798D8A1CF3289921987D9FDC7B884 /* FIRAppAssociationRegistration.h in Headers */ = {isa = PBXBuildFile; fileRef = CBEF13AC75AD67DF97B5EA50ED4DF5E5 /* FIRAppAssociationRegistration.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 530F9743E35929C87133BD8E083735A9 /* UIImage+Metadata.m in Sources */ = {isa = PBXBuildFile; fileRef = 4241AFA83AB806724D464D03F5808DBB /* UIImage+Metadata.m */; }; - 531131AA54E45A625EE48708E77A7910 /* RNFirebaseFirestoreDocumentReference.m in Sources */ = {isa = PBXBuildFile; fileRef = 9B0CD0417F916A41DD2426DD4B7A9391 /* RNFirebaseFirestoreDocumentReference.m */; }; - 5326F8694B63DCC3779B10E5468F40A9 /* RCTJavaScriptExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = 0A3B08539A1E5B0286CB3F069942B8C7 /* RCTJavaScriptExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5338293C5FD4FC2D13D8524F4AE75AF8 /* RCTShadowView+Layout.m in Sources */ = {isa = PBXBuildFile; fileRef = 4F9CFEA5DE5CD59C3161B14BC08A7D4C /* 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"; }; }; + 530F9743E35929C87133BD8E083735A9 /* UIImage+Metadata.m in Sources */ = {isa = PBXBuildFile; fileRef = A6BDC93EC86E8A30D2F6801B94949AC8 /* UIImage+Metadata.m */; }; + 531131AA54E45A625EE48708E77A7910 /* RNFirebaseFirestoreDocumentReference.m in Sources */ = {isa = PBXBuildFile; fileRef = 714190363DEE99AEDB46A0EF9761FFE2 /* RNFirebaseFirestoreDocumentReference.m */; }; + 5326F8694B63DCC3779B10E5468F40A9 /* RCTJavaScriptExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = 4B12D9CDA0680E9AC201A085DC0E2D6C /* RCTJavaScriptExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 532946E00254F023EB8920E04D4C5B32 /* SDImageAPNGCoder.h in Headers */ = {isa = PBXBuildFile; fileRef = 7C7359202C1CCC5A66272D7A852D4AC2 /* SDImageAPNGCoder.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5338293C5FD4FC2D13D8524F4AE75AF8 /* RCTShadowView+Layout.m in Sources */ = {isa = PBXBuildFile; fileRef = B582E1212EAC311770DFFFB2CA2A66D6 /* 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 = 87B68BAE628A2A8CA9917371672FCF56 /* FIRErrorCode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 534165CBEA822027583EF311EC782538 /* RCTSubtractionAnimatedNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 1B68E7E8F81A7A29F567BCAF59647574 /* 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 = 7F36A4E184B87B46E2BE4C146D740885 /* 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 = EB460ADDC1F5569961983DF5B4ACF701 /* MallocImpl.h */; settings = {ATTRIBUTES = (Project, ); }; }; 5375DDE6A2D2428D0B62F7B9BDE7FF2C /* SKTouch.m in Sources */ = {isa = PBXBuildFile; fileRef = 5B5EE82E183F598BAD2EEFA16B129B91 /* 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 = B618191C488469517862C07BD8B81C74 /* RCTMultipartDataTask.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 53B7113A74825BBE592A96A84DDA800C /* UIImage+ExtendedCacheData.m in Sources */ = {isa = PBXBuildFile; fileRef = 84019186F066F8D813942800C2E415BC /* UIImage+ExtendedCacheData.m */; }; - 53C93470EA83362D2AFC76C26071861D /* RCTDevLoadingView.m in Sources */ = {isa = PBXBuildFile; fileRef = 443BB3D0D8491A15B4E8DF3A73DE016D /* RCTDevLoadingView.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 53AF2A54A8C7633333A29DC49AFA510B /* RCTMultipartDataTask.h in Headers */ = {isa = PBXBuildFile; fileRef = 5CBCE6689D73624EB52DC50A7A547061 /* RCTMultipartDataTask.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 53B7113A74825BBE592A96A84DDA800C /* UIImage+ExtendedCacheData.m in Sources */ = {isa = PBXBuildFile; fileRef = 1DE06F29316C24D20AC38BA5C68A1D8C /* UIImage+ExtendedCacheData.m */; }; + 53C93470EA83362D2AFC76C26071861D /* RCTDevLoadingView.m in Sources */ = {isa = PBXBuildFile; fileRef = 3361B4E72C8FCEB3AD3A3065E0CD2F39 /* 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 = 8C5AC01B5CB0AFBDACB3D1426B969A4C /* ConstexprMath.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5424FDC9A775A478793CFB44F0C12C00 /* JSIndexedRAMBundle.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9F28B4595538423795CA3120E3354615 /* 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 = C64946AD6C95C8CC4F360037CB623723 /* RCTTextSelection.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 54A0942FF2E79992B2ACA0DB1C356437 /* RNNotificationCenterMulticast.h in Headers */ = {isa = PBXBuildFile; fileRef = 8FC9625141225307F54CA8F7D5C31D65 /* RNNotificationCenterMulticast.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 54BCA853DAAC904AE97C54D9E4800CC7 /* UMKernelService.h in Headers */ = {isa = PBXBuildFile; fileRef = F99A0A68F1381494A19F623FB3B97C43 /* UMKernelService.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5424FDC9A775A478793CFB44F0C12C00 /* JSIndexedRAMBundle.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A293382EF6E465BCA37E9E3F8E6834A0 /* 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 = 892AFB3B042F739654D6A76821FA453C /* RCTTextSelection.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 54A0942FF2E79992B2ACA0DB1C356437 /* RNNotificationCenterMulticast.h in Headers */ = {isa = PBXBuildFile; fileRef = 405CE6E42958F6497FCC871639B27D12 /* RNNotificationCenterMulticast.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 54BCA853DAAC904AE97C54D9E4800CC7 /* UMKernelService.h in Headers */ = {isa = PBXBuildFile; fileRef = 5E4D0ED6D8181AABC21FB1D6BDF44CBA /* UMKernelService.h */; settings = {ATTRIBUTES = (Project, ); }; }; 54E5365217AC5AA2FA378CAB9BCE9A8F /* GULMutableDictionary.h in Headers */ = {isa = PBXBuildFile; fileRef = 7D608428DD410ED2575A7BE646697BE3 /* GULMutableDictionary.h */; settings = {ATTRIBUTES = (Project, ); }; }; 550D2352901F043B246B1D99D593F110 /* ThreadCachedInt.h in Headers */ = {isa = PBXBuildFile; fileRef = C3142A503B8B70FC802BBF2FB75CCC8E /* ThreadCachedInt.h */; settings = {ATTRIBUTES = (Project, ); }; }; 551B5E3B560EC006D5FAD9C21C88087B /* Parallel.h in Headers */ = {isa = PBXBuildFile; fileRef = D1E401A3FE7BA4435A1FE2ADDAD115B6 /* Parallel.h */; settings = {ATTRIBUTES = (Project, ); }; }; 551F5E8C6B3ACC04559C5E14ECEBD7D3 /* ConcurrentHashMap.h in Headers */ = {isa = PBXBuildFile; fileRef = DBE87F1B7E9A22D42FD7738B6F546D44 /* ConcurrentHashMap.h */; settings = {ATTRIBUTES = (Project, ); }; }; 554920A9489ADD1F8EAB6770F610866A /* AsyncServerSocket.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BE791718BEDB633EFE7FC81BEE765382 /* 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 = 94AF4CF0A65C8AB152607484CCCA5A2C /* React-RCTVibration-dummy.m */; }; + 55500919C15445C3F593469D1022318E /* React-RCTVibration-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = A8C934A443682E25A5C118561898718A /* React-RCTVibration-dummy.m */; }; 55755FF66BD8ABC78DD090E94188A763 /* ThreadCachedLists.h in Headers */ = {isa = PBXBuildFile; fileRef = 9EA7089CD95B48AEAED021DE29C3C09D /* ThreadCachedLists.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 557A6B876C549A6F26C4E93169856944 /* ARTContainer.h in Headers */ = {isa = PBXBuildFile; fileRef = CBBC38F9624D3BDEC7BF597C25BABD18 /* ARTContainer.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5580880843D5999818D1EF6AB3E114C2 /* RCTModuleMethod.h in Headers */ = {isa = PBXBuildFile; fileRef = 1DD31C9CD7C36C6C05AA5884262620D1 /* RCTModuleMethod.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 55854F869F29193E5DAA4E646D9D90E3 /* BugsnagSessionTrackingPayload.h in Headers */ = {isa = PBXBuildFile; fileRef = 3861A556F991E0FB85827D1D364AA6EA /* BugsnagSessionTrackingPayload.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 557A6B876C549A6F26C4E93169856944 /* ARTContainer.h in Headers */ = {isa = PBXBuildFile; fileRef = AF22D40689FCFF5C60FDDA19CE656E10 /* ARTContainer.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5580880843D5999818D1EF6AB3E114C2 /* RCTModuleMethod.h in Headers */ = {isa = PBXBuildFile; fileRef = 3E836991B71B728A813D372F81097379 /* RCTModuleMethod.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 55854F869F29193E5DAA4E646D9D90E3 /* BugsnagSessionTrackingPayload.h in Headers */ = {isa = PBXBuildFile; fileRef = 3F241A568E0C01C07080A95F2E673F09 /* BugsnagSessionTrackingPayload.h */; settings = {ATTRIBUTES = (Project, ); }; }; 558BF4D03AA6208D974D9C0157B9ED4E /* TOCropViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = 992F4F987626FAFDBBA02A885495042D /* TOCropViewController.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 55A233675FB29A834EFAFEEE1BBDEC7E /* React-RCTLinking-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 902C59283CA9D5897D96DC5A6A036B75 /* React-RCTLinking-dummy.m */; }; + 5590437394972755BDB7FD9DA85BBF4A /* SDImageIOAnimatedCoder.h in Headers */ = {isa = PBXBuildFile; fileRef = F48C2FDD95A944210BAC17E3F2A81D10 /* SDImageIOAnimatedCoder.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5591AD18A453D3B2AD2D7DD15B14EA16 /* SDWebImageOptionsProcessor.h in Headers */ = {isa = PBXBuildFile; fileRef = 21E22075986CC9418A285BB180999C59 /* SDWebImageOptionsProcessor.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 55A233675FB29A834EFAFEEE1BBDEC7E /* React-RCTLinking-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 14F7B3A9167028C7088E419A2FDCC1AA /* React-RCTLinking-dummy.m */; }; 55A29D332C49B325506C5763B2D1607C /* Try.h in Headers */ = {isa = PBXBuildFile; fileRef = C26B189FAC656D17783122181C6D1987 /* Try.h */; settings = {ATTRIBUTES = (Project, ); }; }; 55EA8380C02950332F6EB64F0788BB83 /* logging.cc in Sources */ = {isa = PBXBuildFile; fileRef = 2EA7F3E61180F9381D6E7007D93FDC30 /* logging.cc */; settings = {COMPILER_FLAGS = "-Wno-shorten-64-to-32"; }; }; 55F72D6B2A29619435CE8615E7803975 /* dec_msa.c in Sources */ = {isa = PBXBuildFile; fileRef = 9D106A0437D13965C3CDA586B2DF097B /* dec_msa.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; 55F74DC02B113A84B748479274EA1E7A /* ko.lproj in Resources */ = {isa = PBXBuildFile; fileRef = 69A63582A04ADFDDCE6B008A3EB6E211 /* ko.lproj */; }; + 55FD2927EB4E68F18A417F5569DF1471 /* SDImageGIFCoder.h in Headers */ = {isa = PBXBuildFile; fileRef = 9556D10762D83AFDD3A82F844A9A594C /* SDImageGIFCoder.h */; settings = {ATTRIBUTES = (Project, ); }; }; 5612114F7BCB79AA3F479A734A45EA4B /* GULSecureCoding.m in Sources */ = {isa = PBXBuildFile; fileRef = 9C700F1330E291AE35A7D46C13C06364 /* GULSecureCoding.m */; }; - 561F81782BF9AD278CB27E2C7B1A4BF2 /* MethodCall.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 287C8A93C301A3B7B63F622356930F97 /* 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 = 69EEC8D0BE82BAE2C416C772018A2ACF /* 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 = 203874E0A88009B0AA2F01295E927BF8 /* FlipperInitConfig.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 56759F3D6F58028185DC0F592D888A07 /* BSG_KSJSONCodec.c in Sources */ = {isa = PBXBuildFile; fileRef = 29747568ABBBA9E9A1EC0F48BD467C22 /* BSG_KSJSONCodec.c */; }; + 56759F3D6F58028185DC0F592D888A07 /* BSG_KSJSONCodec.c in Sources */ = {isa = PBXBuildFile; fileRef = BB0E3C8AA55095D15427D08BF810B6FB /* BSG_KSJSONCodec.c */; }; 56B0D7D9EADAA177FA3FE61F14F407D6 /* ThreadLocalDetail.h in Headers */ = {isa = PBXBuildFile; fileRef = 43FEBEC8046768D8E5EDB05572CDBB62 /* ThreadLocalDetail.h */; settings = {ATTRIBUTES = (Project, ); }; }; 56BC2A3E8DC876F371CF9E50660BBDF9 /* FunctionScheduler.h in Headers */ = {isa = PBXBuildFile; fileRef = 883DAC6C7BEFCDBE955F00F5AB4B00AC /* FunctionScheduler.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 56CA8A399D65FB392554775B2A4FC712 /* UIImage+GIF.m in Sources */ = {isa = PBXBuildFile; fileRef = 0C63A47DAF16CD2A0834B1A35401355C /* UIImage+GIF.m */; }; - 56ED8B94761F40DE60DFDA61995A4389 /* RCTMultilineTextInputViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = D66BC7D0B852BE873C1CC9FC4836A3F7 /* RCTMultilineTextInputViewManager.m */; }; - 57104DD0061299F2315390B1033B28BF /* RCTImageCache.m in Sources */ = {isa = PBXBuildFile; fileRef = 9BB1B2939F9907FFAD48E3DD565AEE10 /* 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 = 346826B90C891C3D7725CA4C9354B292 /* 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 = 9ECFA9D5D7BB61AD5F9595852FD24E18 /* SDWebImageError.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 56CA8A399D65FB392554775B2A4FC712 /* UIImage+GIF.m in Sources */ = {isa = PBXBuildFile; fileRef = ECE4D3F9A9B7EC1C23DF0139BE3486A1 /* UIImage+GIF.m */; }; + 56CC29AA7D6ECAF485F56ACF79A62324 /* SDMemoryCache.h in Headers */ = {isa = PBXBuildFile; fileRef = 29C6A4E0DF9F91DE9CC5D92B1EDDF966 /* SDMemoryCache.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 56ED8B94761F40DE60DFDA61995A4389 /* RCTMultilineTextInputViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 27C5B870EA804AE0BB08FE09575867E5 /* RCTMultilineTextInputViewManager.m */; }; + 57104DD0061299F2315390B1033B28BF /* RCTImageCache.m in Sources */ = {isa = PBXBuildFile; fileRef = 34FABA7B30D3A9D6C7D6FDE389477AD8 /* 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 = 3C528C8598189CB088765189D608C72A /* 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"; }; }; 5730650DB2DEAACDDD31A30086AC02D9 /* filters_msa.c in Sources */ = {isa = PBXBuildFile; fileRef = 1D13110FBB2938986FEAE408B775B7B4 /* filters_msa.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; 5741AFE087A083C8D0D5C9D5F646A707 /* muxread.c in Sources */ = {isa = PBXBuildFile; fileRef = EC45961C9D25EB434DFCFC9F4A481FDA /* muxread.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 5767DA9A124859997676C94B06B184DB /* NSError+BSG_SimpleConstructor.m in Sources */ = {isa = PBXBuildFile; fileRef = 1A007ACDD8283948E99A5DD959DE9242 /* NSError+BSG_SimpleConstructor.m */; }; + 5767DA9A124859997676C94B06B184DB /* NSError+BSG_SimpleConstructor.m in Sources */ = {isa = PBXBuildFile; fileRef = 91E25DA8C3E7D938E9CDA6A5684CBEDA /* NSError+BSG_SimpleConstructor.m */; }; 576D1D3D0255B54FFBDDCB00855FE397 /* PTChannel.m in Sources */ = {isa = PBXBuildFile; fileRef = 373709EFF0AAF162459EF5D0B0F390E6 /* PTChannel.m */; }; - 577585E67A1D5A13B769BEDA1BFC1DCB /* RCTBlobCollector.mm in Sources */ = {isa = PBXBuildFile; fileRef = 623682EDC77E46A028080B8E884FBEAA /* 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 = C8E4EDDF6E319A8BA5C073AC8E4A4B48 /* 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 = AC35D70B9B8153E83D58B8D70C3DA9EC /* vp8l_dec.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 577AD50B514CE766BA609B545A67F31D /* RCTBaseTextInputView.h in Headers */ = {isa = PBXBuildFile; fileRef = AD3342661710A1005E85BC5965CB60F6 /* RCTBaseTextInputView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 578C457D50296F1011D54182DA027254 /* RCTSurfaceRootShadowView.m in Sources */ = {isa = PBXBuildFile; fileRef = C04903A37365E963E54413DF6FD9FD6A /* 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 = 187879FBE986DDC8A947A11CEDC57826 /* RCTVirtualTextShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 57C228A63490E86D0339DE0E72FAA9CF /* SDAsyncBlockOperation.m in Sources */ = {isa = PBXBuildFile; fileRef = 3E5E391D33A2890AD170E829C7D11427 /* SDAsyncBlockOperation.m */; }; - 57C316C8C1D30A80E5A09BE3C6B6DC7A /* EXFileSystem-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = F82298BC5DBE46DE8B924039E3EB09D6 /* EXFileSystem-dummy.m */; }; - 57D322CCECC40542E68BD6495990AA1F /* FBReactNativeSpec-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 60858CE18B6F41A28DF33F05A605755F /* FBReactNativeSpec-dummy.m */; }; + 577AD50B514CE766BA609B545A67F31D /* RCTBaseTextInputView.h in Headers */ = {isa = PBXBuildFile; fileRef = DC6592B4391775FBC8ED0AF7FD7C660B /* RCTBaseTextInputView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 578C457D50296F1011D54182DA027254 /* RCTSurfaceRootShadowView.m in Sources */ = {isa = PBXBuildFile; fileRef = EADFCE0D4B87D6F30B6ACA043D79E8DA /* 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 = 8D7295B454566C4A4DB062AAF1C5D94B /* RCTVirtualTextShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 57C228A63490E86D0339DE0E72FAA9CF /* SDAsyncBlockOperation.m in Sources */ = {isa = PBXBuildFile; fileRef = F3566984308705C175703B7F89A6833E /* SDAsyncBlockOperation.m */; }; + 57C316C8C1D30A80E5A09BE3C6B6DC7A /* EXFileSystem-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = F604E26AC9E58450ED00F501FB34CF55 /* EXFileSystem-dummy.m */; }; + 57D322CCECC40542E68BD6495990AA1F /* FBReactNativeSpec-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 9AC12F189B625BCB582A97975AD90108 /* FBReactNativeSpec-dummy.m */; }; 57EA16615D9CD9D0C45DE091246065B3 /* FireAndForgetResponder.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B33AAB90E79B725D52CF1853C2FFE5C9 /* 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 = 310CCBD58CAC10932222DD449C29A85E /* EXHapticsModule.m */; }; + 57F2E9384A1C3DCF46CB5242DF03BD36 /* UIImage+MemoryCacheCost.h in Headers */ = {isa = PBXBuildFile; fileRef = 00D7E51B3E6D16C666589649A5730D0B /* UIImage+MemoryCacheCost.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5835A6EE119F67B3B5DDB92D53520B25 /* EXHapticsModule.m in Sources */ = {isa = PBXBuildFile; fileRef = 2AD25C4584C36E1652A6A750B2FC83D3 /* EXHapticsModule.m */; }; 58528DCA2CD999D4137C83D043A9FC8F /* FKTextSearchable.h in Headers */ = {isa = PBXBuildFile; fileRef = 645A304930AEEC1F7191E3748AA175E3 /* FKTextSearchable.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 58A0D03F97F8754E1F8EC5EAE1911057 /* UIImage+Metadata.h in Headers */ = {isa = PBXBuildFile; fileRef = 9946DFEC1C3A62450EF79BA1ABB6EF03 /* UIImage+Metadata.h */; settings = {ATTRIBUTES = (Project, ); }; }; 58A135D3A7C85E720C02F34E315BCBF0 /* Singleton.h in Headers */ = {isa = PBXBuildFile; fileRef = 9CA5351483F2E3988401565F07C342CE /* Singleton.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 58A14416A831C60BB7B5F99F3971D040 /* SDWebImage.h in Headers */ = {isa = PBXBuildFile; fileRef = AEC62D162C442A6BF709A0F065459958 /* SDWebImage.h */; settings = {ATTRIBUTES = (Project, ); }; }; 58A43ACC1FFBCC2F3EA6A25797071D79 /* GULHeartbeatDateStorage.m in Sources */ = {isa = PBXBuildFile; fileRef = 17C8CD40EE467EAD8F86B969DF4605D1 /* GULHeartbeatDateStorage.m */; }; 58AEF2D987F14D4D2AF6D28C7F7F4CF7 /* rescaler_mips32.c in Sources */ = {isa = PBXBuildFile; fileRef = 5B5D09E4561934D0AB01334E07B5EC77 /* rescaler_mips32.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 5915489BBAB3A2877B98136691FA963E /* RCTSafeAreaShadowView.m in Sources */ = {isa = PBXBuildFile; fileRef = CDE35C2B2F1E4560292F5C3E61E299BD /* 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 = 3FE2F9DE1939F09C2C49717FD3292786 /* 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 = C347EB43BDE636D5C412551BC1BF3133 /* Builtins.h */; settings = {ATTRIBUTES = (Project, ); }; }; 5967703126249D72DC6C94C045CEDDDA /* GDTCORUploader.h in Headers */ = {isa = PBXBuildFile; fileRef = 288780D994881037854C7588B3978585 /* GDTCORUploader.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5969152A1F121E75A747F661F97C1FA3 /* RCTEventEmitter.h in Headers */ = {isa = PBXBuildFile; fileRef = 7B6D26A831CE82E291EBDB3E08181A0B /* RCTEventEmitter.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5969152A1F121E75A747F661F97C1FA3 /* RCTEventEmitter.h in Headers */ = {isa = PBXBuildFile; fileRef = 6DD7CF14E9EE7BCCC59FCF32D8BC8FA1 /* RCTEventEmitter.h */; settings = {ATTRIBUTES = (Project, ); }; }; 5990C386CFF4495D345DE4BD9B720B97 /* MemoryResource.h in Headers */ = {isa = PBXBuildFile; fileRef = 624A41185B51C7BF36CC977BA267FF6C /* MemoryResource.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 59AB2E9847C52F6350C5CA42F64D9B4B /* SDWebImageDownloaderOperation.m in Sources */ = {isa = PBXBuildFile; fileRef = 0FEB237EFA588675D5F1D8F4365EE764 /* SDWebImageDownloaderOperation.m */; }; - 59AFFBDA7A1CEAA4938A2897A836C114 /* UMPermissionsInterface-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = CFE7BFE58F1EC912851ACA188960FAA9 /* UMPermissionsInterface-dummy.m */; }; + 59AB2E9847C52F6350C5CA42F64D9B4B /* SDWebImageDownloaderOperation.m in Sources */ = {isa = PBXBuildFile; fileRef = 6E11B4F2519819CF7BCB537EB99904C0 /* SDWebImageDownloaderOperation.m */; }; + 59AFFBDA7A1CEAA4938A2897A836C114 /* UMPermissionsInterface-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 176BCE4DA8EDE6EDCBEEF5A622C2C38E /* UMPermissionsInterface-dummy.m */; }; 59BCF23690D35E682AF7213B1AA8B121 /* GDTCORRegistrar.m in Sources */ = {isa = PBXBuildFile; fileRef = 22AC901C615FFB0A63B6E8F228C6A7F7 /* GDTCORRegistrar.m */; }; 59D2FF7D199E0FAEEA5D0C5C60C85760 /* File.h in Headers */ = {isa = PBXBuildFile; fileRef = 2266B9FB963B08C9EC349C28D1DD1637 /* File.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 59E39951CBDBBF3BE34F50771F0D63DA /* REATransformNode.h in Headers */ = {isa = PBXBuildFile; fileRef = ACC10530C3FEADFF050AA7DD6DDEADDA /* REATransformNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 59FA089B729EBF37634A4D344228514B /* RNFirebaseUtil.m in Sources */ = {isa = PBXBuildFile; fileRef = 33A0B92651A94B287FDE6B14359D92F7 /* RNFirebaseUtil.m */; }; + 59E39951CBDBBF3BE34F50771F0D63DA /* REATransformNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 780A9D480ECAE95CFD1A2214A4250ABF /* REATransformNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 59FA089B729EBF37634A4D344228514B /* RNFirebaseUtil.m in Sources */ = {isa = PBXBuildFile; fileRef = B1DDF97FC386A36B1A16FC310A8C01DA /* RNFirebaseUtil.m */; }; 5A2DF787817F7D1F598A859496117313 /* Poly-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 3642927267BA5A07470303E775D65DFA /* Poly-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5A350E37511AB19E6CF063A477BF81E8 /* RCTTextAttributes.h in Headers */ = {isa = PBXBuildFile; fileRef = 396BCC1103806DB62E13A01085BFDB9A /* RCTTextAttributes.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5A350E37511AB19E6CF063A477BF81E8 /* RCTTextAttributes.h in Headers */ = {isa = PBXBuildFile; fileRef = 4A566499049C1F44790724F96962AE1C /* RCTTextAttributes.h */; settings = {ATTRIBUTES = (Project, ); }; }; 5A4315CC7868A0AA71F72B6EB9DF3A8D /* HazptrThreadPoolExecutor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = ADF9A92B9FAAABEF226F528138829B02 /* 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 = 5B6158AB2550CBA102DCA35CC0DC2013 /* 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 = 9B1F98A9F2248FB8361C4DE18FFAF51F /* RCTErrorInfo.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5A8459CCC3BF00828D32BB4D35ABA743 /* SDWebImageDefine.m in Sources */ = {isa = PBXBuildFile; fileRef = A483E9CBDE0930880E6851AC0CBD8B79 /* SDWebImageDefine.m */; }; + 5A5CD297BBC57D3E5C53437609953C82 /* RCTImageBlurUtils.m in Sources */ = {isa = PBXBuildFile; fileRef = E7278CB107A953A655B1A97187CE67A7 /* 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 = DA4C4CFBE719F9CCE6BA84D57D186139 /* RCTErrorInfo.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5A8459CCC3BF00828D32BB4D35ABA743 /* SDWebImageDefine.m in Sources */ = {isa = PBXBuildFile; fileRef = 6649BF50D876000CF02E5C42034F1878 /* SDWebImageDefine.m */; }; 5A89504301D62525F736D0050854E4CB /* SonarKitNetworkPlugin+CPPInitialization.h in Headers */ = {isa = PBXBuildFile; fileRef = F3311BA7E4CF1072F845E0CB477D51D5 /* SonarKitNetworkPlugin+CPPInitialization.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5AA306AC79340E81306DB638EB0F6B5C /* BSG_KSSystemInfoC.h in Headers */ = {isa = PBXBuildFile; fileRef = 43216B6B4C1AEA1BD2A30C66CA5DA2E9 /* BSG_KSSystemInfoC.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5AA306AC79340E81306DB638EB0F6B5C /* BSG_KSSystemInfoC.h in Headers */ = {isa = PBXBuildFile; fileRef = F15177F3F98AB6CCA981FCEEC5CFE2D9 /* BSG_KSSystemInfoC.h */; settings = {ATTRIBUTES = (Project, ); }; }; 5AB7883D6F7123FEE9DE354AF2FE9387 /* Atomic.h in Headers */ = {isa = PBXBuildFile; fileRef = B6925D6E11BCBC1BF08A08FFC08C2DEB /* Atomic.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5AE8193588F9251CFF0BC1259587DC6F /* RCTImageSource.m in Sources */ = {isa = PBXBuildFile; fileRef = 5153E4056ECE5A55050793F2F68FFE44 /* 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 = 7B83E53DF7A6FF8F260959DB6E7FAB45 /* 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 = 34C72E24FF9AE020F595BAB7BE7B92FF /* FlipperKit-umbrella.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5B12AC89DB651FB7CF5A624F05E48A06 /* RCTExceptionsManager.mm in Sources */ = {isa = PBXBuildFile; fileRef = 759214E0404777E80647BBF378BB40EA /* 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 = E65CACEB67E1652527A2057E33BD3A9A /* log.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5B4A65D10DEF39743F01781DD5DF6050 /* JSBigString.h in Headers */ = {isa = PBXBuildFile; fileRef = 85684341D05B09C596F5F3B29156D604 /* JSBigString.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5B12AC89DB651FB7CF5A624F05E48A06 /* RCTExceptionsManager.mm in Sources */ = {isa = PBXBuildFile; fileRef = DDAC57966DBA29BE27501D75073BEAAC /* 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 = 4745AF174D142835C084841119CF095D /* log.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5B4A65D10DEF39743F01781DD5DF6050 /* JSBigString.h in Headers */ = {isa = PBXBuildFile; fileRef = 5A81CF38AF46EBBC47CC47C7C86B9B6C /* JSBigString.h */; settings = {ATTRIBUTES = (Project, ); }; }; 5B5E44100CB0A817A1A887A5D865E197 /* SanitizeThread.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B90D4EB47DA9DA57A8D265D53BB0FC7A /* 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 = E407E78CE1F9669988D1BBC2C9EFEF6B /* UIImage+MultiFormat.h */; settings = {ATTRIBUTES = (Project, ); }; }; 5B5EBC23448AA1E36B9E489003457385 /* ScopedEventBaseThread.h in Headers */ = {isa = PBXBuildFile; fileRef = 874519DA12D7FAC072DD95515A159F03 /* ScopedEventBaseThread.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5B74AD9EABDF35B29FC840BDC408B387 /* RCTSurfaceRootView.h in Headers */ = {isa = PBXBuildFile; fileRef = 126199C73856BB1169A9044CA9A5649D /* RCTSurfaceRootView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5B84A2CFF7CB8244429AE34C525F7A3B /* RCTSurfaceRootView.mm in Sources */ = {isa = PBXBuildFile; fileRef = B181DF32FCFDFC18F9571FF848A2232D /* RCTSurfaceRootView.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 5B648720A85B4FD11CA2665BBE8EF6F4 /* UIImage+MultiFormat.h in Headers */ = {isa = PBXBuildFile; fileRef = 7F21E3E56A59AE7A0B72F5B9D7D4683D /* UIImage+MultiFormat.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5B74AD9EABDF35B29FC840BDC408B387 /* RCTSurfaceRootView.h in Headers */ = {isa = PBXBuildFile; fileRef = CCB5574E1F505CEF5791FC3C0A833AB1 /* RCTSurfaceRootView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5B84A2CFF7CB8244429AE34C525F7A3B /* RCTSurfaceRootView.mm in Sources */ = {isa = PBXBuildFile; fileRef = AC919BFFBEA8F33104A0410C7A183BED /* 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 = B7791E8B79D3AF3B69AF7CECAD3CF3D3 /* Conv.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5B9BEBCA57F0295256B52F2895B97331 /* ModuleRegistry.h in Headers */ = {isa = PBXBuildFile; fileRef = 631EE7042AECD78F7ADF02C610C56469 /* ModuleRegistry.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5BA023BC55024F646839261CB6544CED /* BugsnagSessionFileStore.m in Sources */ = {isa = PBXBuildFile; fileRef = E4715A68BDF3486D832920D916ECA375 /* BugsnagSessionFileStore.m */; }; - 5BBD3BF8F1D8BCE5424520F1C5F597A0 /* RCTConvert+FFFastImage.h in Headers */ = {isa = PBXBuildFile; fileRef = BA82F24AE9818ECFBAAC74D9D13B0DC1 /* RCTConvert+FFFastImage.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5BBF60294A35EABDD416CD49326D9A68 /* RNCWebView.m in Sources */ = {isa = PBXBuildFile; fileRef = 564AA92D57D9228644E3BE9F170936B2 /* RNCWebView.m */; }; - 5BCC122BAE29ECBAEB136C7B886C7C8A /* RNFirebaseFirestoreCollectionReference.m in Sources */ = {isa = PBXBuildFile; fileRef = 442EA89BCAF0FF088622BB0E7290853A /* RNFirebaseFirestoreCollectionReference.m */; }; + 5B9BEBCA57F0295256B52F2895B97331 /* ModuleRegistry.h in Headers */ = {isa = PBXBuildFile; fileRef = 56A4B28EAA5307C31E1B8BD60DD44CFC /* ModuleRegistry.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5BA023BC55024F646839261CB6544CED /* BugsnagSessionFileStore.m in Sources */ = {isa = PBXBuildFile; fileRef = 4804FDF618F2127C10ED13EED4716393 /* BugsnagSessionFileStore.m */; }; + 5BBD3BF8F1D8BCE5424520F1C5F597A0 /* RCTConvert+FFFastImage.h in Headers */ = {isa = PBXBuildFile; fileRef = D047F15DED537FA1AF41E4476B46447E /* RCTConvert+FFFastImage.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5BBF60294A35EABDD416CD49326D9A68 /* RNCWebView.m in Sources */ = {isa = PBXBuildFile; fileRef = 8AFD68E5597A93926FC1142E4AD5893D /* RNCWebView.m */; }; + 5BCC122BAE29ECBAEB136C7B886C7C8A /* RNFirebaseFirestoreCollectionReference.m in Sources */ = {isa = PBXBuildFile; fileRef = E51F6E74217C96C2013A76540F8AFD14 /* RNFirebaseFirestoreCollectionReference.m */; }; 5BE1E55B90CC535E7C3CF5EA357B3612 /* Base.h in Headers */ = {isa = PBXBuildFile; fileRef = FFB6A79C2797E4E6E8D7E12A68887DBA /* Base.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5C06E36CD574FBE8FCDF4DB23632E79F /* REANode.h in Headers */ = {isa = PBXBuildFile; fileRef = D41D779CF58921FD4B98EDD73A15EF24 /* REANode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5C06E36CD574FBE8FCDF4DB23632E79F /* REANode.h in Headers */ = {isa = PBXBuildFile; fileRef = 2FF1012EBC98F00CF77CDF5E8ADC5331 /* REANode.h */; settings = {ATTRIBUTES = (Project, ); }; }; 5C1180DCDA66B2CC0EB7CA7EABA74DCD /* FIRInstallationsIIDStore.m in Sources */ = {isa = PBXBuildFile; fileRef = B482669D4D588E55B3057A7601BD6840 /* FIRInstallationsIIDStore.m */; }; - 5C32CD8A3B4E70301043B885EBBA1F69 /* ARTLinearGradient.h in Headers */ = {isa = PBXBuildFile; fileRef = 327656D2867C9A9125E6AD17423A15D1 /* ARTLinearGradient.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5C635BB81BFDFB1ADD52B81A18A4445E /* RCTSubtractionAnimatedNode.h in Headers */ = {isa = PBXBuildFile; fileRef = B74B3D0393A1DA20C2CFA6536BD32337 /* RCTSubtractionAnimatedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5C32CD8A3B4E70301043B885EBBA1F69 /* ARTLinearGradient.h in Headers */ = {isa = PBXBuildFile; fileRef = C1F7C370E1B231730123F7F7DC481D25 /* ARTLinearGradient.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5C635BB81BFDFB1ADD52B81A18A4445E /* RCTSubtractionAnimatedNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 813E2591B78AB2F816E30E147390CBB9 /* RCTSubtractionAnimatedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; 5C6B3EF91CF6927788129874C2A85DC4 /* Ordering.h in Headers */ = {isa = PBXBuildFile; fileRef = 153DF6367AD0FF17144D2F56B391560A /* Ordering.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5C73CA0113FF28D73B33DD995CB8DB9B /* RCTBridge.h in Headers */ = {isa = PBXBuildFile; fileRef = 2E72E9D52F37CD871C6EFA0C46E5899D /* RCTBridge.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5CA6316BB302B36D6AE2B4A483F3EAB6 /* ARTCGFloatArray.h in Headers */ = {isa = PBXBuildFile; fileRef = 8E738DA767C7CE949F8736ECD117A1FC /* ARTCGFloatArray.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5C73CA0113FF28D73B33DD995CB8DB9B /* RCTBridge.h in Headers */ = {isa = PBXBuildFile; fileRef = F176B9B10C37030B40F8D88EED0D9A51 /* RCTBridge.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5CA6316BB302B36D6AE2B4A483F3EAB6 /* ARTCGFloatArray.h in Headers */ = {isa = PBXBuildFile; fileRef = 813A7430388309B418DD081264472193 /* ARTCGFloatArray.h */; settings = {ATTRIBUTES = (Project, ); }; }; 5CCE3FB238F67F4A1AE513C4461B1463 /* RSocketClient.h in Headers */ = {isa = PBXBuildFile; fileRef = 87FEC7BDD5CE85B69C06F132CB3BE556 /* RSocketClient.h */; settings = {ATTRIBUTES = (Project, ); }; }; 5CEC8F544EB06DB67845490887ADB7EB /* SKHighlightOverlay.mm in Sources */ = {isa = PBXBuildFile; fileRef = 902BE925D4C1D506F5B5171C0B9A13AF /* 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 = 5B2843009ACC56D555D6CECDF3265A53 /* 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 = F49072E3106022C4325A6F7AC7A47024 /* EXAVPlayerData.m */; }; + 5CF1B5B5750BCAEF93F745D0E4746629 /* RCTImageShadowView.m in Sources */ = {isa = PBXBuildFile; fileRef = 69040346FE87DD94EE03D0CA2DAD94DE /* 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 = 1CF01376D9C0B8D19424414D36C50DCC /* EXAVPlayerData.m */; }; 5D1C8EE105AF6A41604212C9FBEC1B04 /* TestObserver.h in Headers */ = {isa = PBXBuildFile; fileRef = 78F46322A0AE7EB0D6FA7E55B04DDF78 /* TestObserver.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5D33C608DD5ADB443C60BBCE274EB8D2 /* RNCMaskedViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = B6AD0FF33C5C0376F2D1F42D1945EF20 /* RNCMaskedViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5D52EC77A0FD9DDCF15A0892BFF30724 /* RNNotificationCenter.m in Sources */ = {isa = PBXBuildFile; fileRef = 8FA7B030CA0FC5FE7424D5B176BCC195 /* RNNotificationCenter.m */; }; + 5D33C608DD5ADB443C60BBCE274EB8D2 /* RNCMaskedViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 7CB4910ABF9A6D272D4608D270D47E4E /* RNCMaskedViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5D52EC77A0FD9DDCF15A0892BFF30724 /* RNNotificationCenter.m in Sources */ = {isa = PBXBuildFile; fileRef = 1E28E449FF97CFFC696F2A7853D0E4C3 /* RNNotificationCenter.m */; }; 5D85E4597A0EA4601AC058FC8A336266 /* FKUserDefaultsSwizzleUtility.m in Sources */ = {isa = PBXBuildFile; fileRef = 1F93898804FCC4161FCECF761209EF52 /* 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 = 715D59D39D1D872A96E44177A511E929 /* 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 = 64C33B2B0FAA72A88AC1771F62837830 /* OpenSSLUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; 5D94C85521F651CAF78D0774F739EFFE /* config_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = 4E014C494E5AF4E2D3B95E59278A6E7A /* config_enc.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; 5DA0F137CAFD3FF8D4B8A1605BA3AC12 /* TOActivityCroppedImageProvider.m in Sources */ = {isa = PBXBuildFile; fileRef = D05179FA4AE4D78D8729A6771C06FE31 /* TOActivityCroppedImageProvider.m */; }; - 5DA1958CF4DAD67AEB1A26CA2FBBB7EB /* RNFirebaseAdMob.m in Sources */ = {isa = PBXBuildFile; fileRef = FE33B6D87F46148EA40455A33D94BA39 /* RNFirebaseAdMob.m */; }; + 5DA1958CF4DAD67AEB1A26CA2FBBB7EB /* RNFirebaseAdMob.m in Sources */ = {isa = PBXBuildFile; fileRef = 302CC1F73D2932EF41A58CFB019F761C /* RNFirebaseAdMob.m */; }; 5DA4697BAFAFAA6BFEA13B36B76B57AE /* Libgen.h in Headers */ = {isa = PBXBuildFile; fileRef = 4B52C4B2E727C1B5CD37B50A5AE89C5F /* Libgen.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5DBEF4CE82FF2ECB983B8FE169924C38 /* QBImagePicker.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 757B5E8A67E8D556A6A4A5C8AE81BD35 /* QBImagePicker.storyboard */; }; - 5DC27AEDBD9E3EE36BF2FE1912926BAF /* RNCSafeAreaShadowView.m in Sources */ = {isa = PBXBuildFile; fileRef = 473D39B5852C9156257BE56DF22F3A38 /* RNCSafeAreaShadowView.m */; }; + 5DBEF4CE82FF2ECB983B8FE169924C38 /* QBImagePicker.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = ADB7F55FC2FADC25301D81F6E03C8939 /* QBImagePicker.storyboard */; }; + 5DC27AEDBD9E3EE36BF2FE1912926BAF /* RNCSafeAreaShadowView.m in Sources */ = {isa = PBXBuildFile; fileRef = 3D242988DC8370E44FB5E929F942516D /* RNCSafeAreaShadowView.m */; }; 5DCE172EC75208EC2A3189C915EBF678 /* EventBaseBackendBase.h in Headers */ = {isa = PBXBuildFile; fileRef = 3B8430674EA6F4FC03E630EADC00FAA4 /* EventBaseBackendBase.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5E833561B54208419B9E85618659A3AE /* JSBigString.cpp in Sources */ = {isa = PBXBuildFile; fileRef = C0270F97695905D849A9C64C389F5E31 /* 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 = FA1617111E51F830287C52C9066B2E55 /* EXVideoManager.m */; }; - 5EC0E201021C7D613D2D23C7D9072FC4 /* RCTTurboModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 6080F667BA4C8DBB344B350BA981E929 /* RCTTurboModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5E833561B54208419B9E85618659A3AE /* JSBigString.cpp in Sources */ = {isa = PBXBuildFile; fileRef = C79180B09CA5051DF178E70BA3FAD457 /* 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 = 83E1ED294B06F48CE20CDDCFB104C9AF /* EXVideoManager.m */; }; + 5EC0E201021C7D613D2D23C7D9072FC4 /* RCTTurboModule.h in Headers */ = {isa = PBXBuildFile; fileRef = C28FBB7A0C7B4C9057C33CE3168BE672 /* RCTTurboModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; 5EC68AC4CF4EA48990F8D1086394208B /* F14Mask.h in Headers */ = {isa = PBXBuildFile; fileRef = CFB58441CA996147D98F64EF8DD1482E /* F14Mask.h */; settings = {ATTRIBUTES = (Project, ); }; }; 5ED7D21591BE3434BAD27251B09FC2C4 /* ScheduledSingleObserver.h in Headers */ = {isa = PBXBuildFile; fileRef = EE096B4998A0498C28CB86AE0C6BE58F /* ScheduledSingleObserver.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5EE007B3CAEB291063CB3BB2EFEF737E /* JsArgumentHelpers-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 5A3E41456E3005A4422ADF8711F097AF /* JsArgumentHelpers-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5EE007B3CAEB291063CB3BB2EFEF737E /* JsArgumentHelpers-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = CA77C74F4D176630CC28F40A8A678945 /* JsArgumentHelpers-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; 5EEE9C81EFF578DA8F518B1C0AB9CB32 /* StampedPtr.h in Headers */ = {isa = PBXBuildFile; fileRef = 2CF7D6056217651E8A1F42E80D1E9B80 /* StampedPtr.h */; settings = {ATTRIBUTES = (Project, ); }; }; 5F099D8A9A2A8ED220D004516093119B /* GDTCORClock.m in Sources */ = {isa = PBXBuildFile; fileRef = D4647D7862AFDBDD9D0EC8025146828B /* GDTCORClock.m */; }; - 5F191C5FEB9571699CFED133F0E444D1 /* REACondNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 3A8EB6CB82FF58D29DCA66F92F103701 /* REACondNode.m */; }; + 5F191C5FEB9571699CFED133F0E444D1 /* REACondNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 39A58431605AC4E10D49D9A287B166A2 /* REACondNode.m */; }; 5F2E203D0F81E6C57DAAE8CFAC56710B /* AsyncGeneratorShim.h in Headers */ = {isa = PBXBuildFile; fileRef = FDF3EB101141ED2880B209625EBD273C /* AsyncGeneratorShim.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5F3914305B352AA4A312EA53ACD0BA46 /* RNGestureHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = DF6C3C2A27E578BC883D91EFB730AD7F /* RNGestureHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5F72C1EF68444D617C1AD2D5EF541DF1 /* RCTNetworking.mm in Sources */ = {isa = PBXBuildFile; fileRef = 8BF0077A70654BAC3859123D7D2207EA /* 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 = 5D2517773353E46D53822F93FCD03A52 /* UMReactNativeEventEmitter.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5F988B2A4A7D8078E0577D101940810B /* RCTAssert.m in Sources */ = {isa = PBXBuildFile; fileRef = A3FC3367489FCDCEAAFAC08B10599EC1 /* 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 = 8F365C38338057419C36E893C210572D /* 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 = 7AC151F4ACB07F1042E6F75F7183386D /* RNFirebaseAdMobNativeExpressManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5F3914305B352AA4A312EA53ACD0BA46 /* RNGestureHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 0C8A5ACEDCFCD0396BDDE985B5B2700A /* RNGestureHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5F72C1EF68444D617C1AD2D5EF541DF1 /* RCTNetworking.mm in Sources */ = {isa = PBXBuildFile; fileRef = FEA9A464E6CA3A4057B3414E672AD6B7 /* 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 = 5472EC6616960C5882FAE7C9C7837442 /* UMReactNativeEventEmitter.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5F988B2A4A7D8078E0577D101940810B /* RCTAssert.m in Sources */ = {isa = PBXBuildFile; fileRef = C4AE0CF38FB42ABE030B6B83F558201C /* 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 = 854DFA1E151E11854184F8B47D28B5BE /* 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 = 5656A08C3B9793B137BE4B43A9A3646A /* RNFirebaseAdMobNativeExpressManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; 5FDFDE7CCBFFAA68D99152D78C02ED39 /* AtomicUtil-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = A216542337674A0A89AA2C9BEE379528 /* AtomicUtil-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; 5FF1ABE162C13243EEB4010193EC6C22 /* Combine-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 4F51D848138A0C792F5CF514F90242E8 /* Combine-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; 605639230346E944534ADED2B00E96E5 /* GDTCCTNanopbHelpers.m in Sources */ = {isa = PBXBuildFile; fileRef = DFFF05D864AB8F9323BAE7B6AB515893 /* GDTCCTNanopbHelpers.m */; }; - 60A86E0DA64B94C3016CED19C96C0E66 /* UIImage+GIF.h in Headers */ = {isa = PBXBuildFile; fileRef = BEB772AE2895A7AE60AEE2B71F800759 /* UIImage+GIF.h */; settings = {ATTRIBUTES = (Project, ); }; }; 60ACF469233CA22469EEC756ECDB055D /* LifoSemMPMCQueue.h in Headers */ = {isa = PBXBuildFile; fileRef = 5B72F9A54777D6A6FFE5D29E292165D7 /* LifoSemMPMCQueue.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 60CE5C3D3A6584BB97C2DF7A9A3BDD9C /* BSG_KSCrashC.c in Sources */ = {isa = PBXBuildFile; fileRef = 82B4266BB676B66E2D74AD3DDE2289B0 /* BSG_KSCrashC.c */; }; - 60E3AA9CFA4C79047B61B69E4B1F9648 /* RCTLayoutAnimation.h in Headers */ = {isa = PBXBuildFile; fileRef = B9EAE944D077E66FA8DEE13865B489B0 /* RCTLayoutAnimation.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 611EF16AF39B7C48DEEB1C051D09F099 /* RCTImageUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = 5BC8D48210994F43DAE85577F073A325 /* RCTImageUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6145080A25BD222CC71B172FFAC2218C /* RCTBundleURLProvider.h in Headers */ = {isa = PBXBuildFile; fileRef = 3B71A920C29887C22EF38F089AC74AC3 /* RCTBundleURLProvider.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 60CE5C3D3A6584BB97C2DF7A9A3BDD9C /* BSG_KSCrashC.c in Sources */ = {isa = PBXBuildFile; fileRef = F42DACE44BA7604D9C48616C9FEF332B /* BSG_KSCrashC.c */; }; + 60E3AA9CFA4C79047B61B69E4B1F9648 /* RCTLayoutAnimation.h in Headers */ = {isa = PBXBuildFile; fileRef = 6582FB6679770ECE60F64859D4EAD7EF /* RCTLayoutAnimation.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 611EF16AF39B7C48DEEB1C051D09F099 /* RCTImageUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = 580AB02B6EC238E51579F77DFB232B3A /* RCTImageUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6145080A25BD222CC71B172FFAC2218C /* RCTBundleURLProvider.h in Headers */ = {isa = PBXBuildFile; fileRef = D638F221E3CE34933AF13D4EA28C170A /* RCTBundleURLProvider.h */; settings = {ATTRIBUTES = (Project, ); }; }; 61475BE3E93F74078F49B9CCA07019B8 /* Stdio.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 86779627046C38D9E5C553C1856D3971 /* 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 = BC6BF1D7ED08F18910811808E32D7B8E /* 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 = 00F51CB288113EE1922EB726BFE070F6 /* 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 = 8FC66D100BF1D2161354D1C02DA0C2B9 /* Checksum.h */; settings = {ATTRIBUTES = (Project, ); }; }; 61728BB54421812F931FBCB7B4FF2BE4 /* FileUtil.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 161719886E740E1380CA97BC1D44C8D6 /* 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 = DD36D25F8C6D8BBED0DF6C0F0607CB4E /* 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 = 6955C48EABE0EBB9C60FBB6187DD382A /* ExecutionObserver.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 618BC8EEE2DCD6EF77E27F834D5B84AB /* EXPermissions-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 92BC26C6959C651149076B70977E6A2D /* EXPermissions-dummy.m */; }; + 618BC8EEE2DCD6EF77E27F834D5B84AB /* EXPermissions-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 910DFCD3F0EC720CAEE9477DA097E65B /* EXPermissions-dummy.m */; }; 61945E2D534282269C85FC62CD40BF23 /* Malloc.h in Headers */ = {isa = PBXBuildFile; fileRef = 5EFE392A6969AF30D2B7B04742DEE6BA /* Malloc.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 619D6F16CC305CC853D675CD34B313E7 /* QBAssetCell.m in Sources */ = {isa = PBXBuildFile; fileRef = B592100B4B0203A70764DFDE23FCAD33 /* QBAssetCell.m */; }; - 619E758999F00A244BBD89AE38C1C8DF /* RCTFPSGraph.h in Headers */ = {isa = PBXBuildFile; fileRef = EE149B93DC504931B021DFE29EBC4CF1 /* RCTFPSGraph.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 61B267925A8A1ECCAA88A2B69131EAF7 /* SharedProxyCxxModule.h in Headers */ = {isa = PBXBuildFile; fileRef = DAAFD3BEED2FCC9A7E213213A3D52304 /* SharedProxyCxxModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 619D6F16CC305CC853D675CD34B313E7 /* QBAssetCell.m in Sources */ = {isa = PBXBuildFile; fileRef = B2FDEF14CB347682E989448C98CC7F33 /* QBAssetCell.m */; }; + 619E758999F00A244BBD89AE38C1C8DF /* RCTFPSGraph.h in Headers */ = {isa = PBXBuildFile; fileRef = AFAF6C2791F7EC98D653618B16FEB483 /* RCTFPSGraph.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 61B267925A8A1ECCAA88A2B69131EAF7 /* SharedProxyCxxModule.h in Headers */ = {isa = PBXBuildFile; fileRef = ADD2590F64B2A7DA2E9048BD9E1F4C15 /* SharedProxyCxxModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 62155DE9CF2AD9385BF11125981D1015 /* SDWebImageOperation.h in Headers */ = {isa = PBXBuildFile; fileRef = E1724977BC9821DC1A38684F88F8838B /* SDWebImageOperation.h */; settings = {ATTRIBUTES = (Project, ); }; }; 621D406A7D59BDA14F904CD4B069B21B /* Stdlib.h in Headers */ = {isa = PBXBuildFile; fileRef = 029B3D446838960B31BCBD02394F100C /* Stdlib.h */; settings = {ATTRIBUTES = (Project, ); }; }; 6238678941BD031252A3C85E53C82C8E /* Sched.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FBA0837C03BCC9FE4E8F7AB2C57E4B23 /* 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 = 9583CF8EFBACFAE010E25C678AF3E5BF /* RNFirebaseFirestore.m */; }; + 623FC295B29631DF73E03BC69E36032B /* RNFirebaseFirestore.m in Sources */ = {isa = PBXBuildFile; fileRef = C46B3CD9E0A3FF13718E7CA92A2880C4 /* RNFirebaseFirestore.m */; }; 6250372D9758B2074CD9CC7B09ECDFA2 /* SKNamed.mm in Sources */ = {isa = PBXBuildFile; fileRef = DB6D26EBDD86843CF9618C4518830999 /* 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 = 75632BE4B358E18FB1BAE8DFBFA50A19 /* alphai_dec.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 626C258D118CB98693D4581066B18804 /* RCTSurfaceView.mm in Sources */ = {isa = PBXBuildFile; fileRef = 70AB7F4C521B0B8F336CC49326F2D305 /* 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 = 572103F624B2A243C03FD6DC981B5F04 /* 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 = F14B6E873AB6F10E262C6D46E36D2BA1 /* KeepaliveTimer.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 62AA89539DA1AA90B5F53B6A1CFCB024 /* RCTJavaScriptLoader.h in Headers */ = {isa = PBXBuildFile; fileRef = 8F5772719D832396BF64A57BE9B84093 /* RCTJavaScriptLoader.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6331F86DEDD565FF96DBD38F0C427C20 /* BSG_KSSystemInfo.h in Headers */ = {isa = PBXBuildFile; fileRef = F5ADEEE062EADEFBE896922E862E906F /* BSG_KSSystemInfo.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 634B6D66C8BC61A3D3EA8CA7EFF968EA /* RCTSafeAreaView.h in Headers */ = {isa = PBXBuildFile; fileRef = 59E809009F32F76F6EC89317B89936F2 /* RCTSafeAreaView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6362DF49BD1FDC17099CCD40DE28B2CF /* BSG_KSJSONCodec.h in Headers */ = {isa = PBXBuildFile; fileRef = 8D33DE116D0794F9ECB3257024ACF204 /* BSG_KSJSONCodec.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 63854BF7B7FBBA60157A488179072BD2 /* BSG_KSSysCtl.c in Sources */ = {isa = PBXBuildFile; fileRef = 777059C692B7C55601D372692929E4C5 /* BSG_KSSysCtl.c */; }; + 62AA89539DA1AA90B5F53B6A1CFCB024 /* RCTJavaScriptLoader.h in Headers */ = {isa = PBXBuildFile; fileRef = 325AFA73CDE70E8C6AC0BE5AF94DACA9 /* RCTJavaScriptLoader.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6331F86DEDD565FF96DBD38F0C427C20 /* BSG_KSSystemInfo.h in Headers */ = {isa = PBXBuildFile; fileRef = DB18D4F26133679F2F7255491CA3E0BA /* BSG_KSSystemInfo.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 634B6D66C8BC61A3D3EA8CA7EFF968EA /* RCTSafeAreaView.h in Headers */ = {isa = PBXBuildFile; fileRef = 7B1DD2412AE65552F5D046C53B4E51FF /* RCTSafeAreaView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6362DF49BD1FDC17099CCD40DE28B2CF /* BSG_KSJSONCodec.h in Headers */ = {isa = PBXBuildFile; fileRef = 839841D83C0E15B51C7266678BF09983 /* BSG_KSJSONCodec.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 63854BF7B7FBBA60157A488179072BD2 /* BSG_KSSysCtl.c in Sources */ = {isa = PBXBuildFile; fileRef = 22ED5EC342654ED25ABF836C2666043D /* BSG_KSSysCtl.c */; }; 63CC635B37FED8C7DEF027CB5462EA7B /* bit_reader_inl_utils.h in Headers */ = {isa = PBXBuildFile; fileRef = 03FBD72B129570234DDB4A6856B7A3FD /* bit_reader_inl_utils.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 640A5B859D78BF300F772830B148CF74 /* SDFileAttributeHelper.h in Headers */ = {isa = PBXBuildFile; fileRef = 630E4D6E25D676B51822CBF1F082FDB8 /* SDFileAttributeHelper.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 640D5D2F39A0A64989F2920F9FB0E055 /* RCTReconnectingWebSocket.h in Headers */ = {isa = PBXBuildFile; fileRef = 81A037AD65496FFC1B100F0F22692DEC /* RCTReconnectingWebSocket.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 64352F81329BEC21DFF10C000BE8640A /* SDWebImageDownloaderRequestModifier.m in Sources */ = {isa = PBXBuildFile; fileRef = C7022D39F0131D8DE5EE4852EFFE46A5 /* SDWebImageDownloaderRequestModifier.m */; }; + 640D5D2F39A0A64989F2920F9FB0E055 /* RCTReconnectingWebSocket.h in Headers */ = {isa = PBXBuildFile; fileRef = CB03EDF0C8DB3F9E7E92507D0CE264A3 /* RCTReconnectingWebSocket.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 64352F81329BEC21DFF10C000BE8640A /* SDWebImageDownloaderRequestModifier.m in Sources */ = {isa = PBXBuildFile; fileRef = B22747AFC2C1934DAE7CE8C57047FA8A /* SDWebImageDownloaderRequestModifier.m */; }; 6447709A38CB47D0D4B539C0DFF9F728 /* GULSceneDelegateSwizzler.m in Sources */ = {isa = PBXBuildFile; fileRef = 0082E5271A0A42B9A35B2F9EBBE28914 /* GULSceneDelegateSwizzler.m */; }; 644DDB8CB93BF7067201BB26F2D53D10 /* SerialExecutor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9FED0083D687480639A7A9208F697C4B /* 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 = 5B5B5E49B3D85486AD01FA8E1934BD85 /* 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 = 5B7F0E33C1B2FD4761AFBF32AF3615FB /* EXConstantsService.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 649188D94444AFE72F5C875C73621929 /* RCTActionSheetManager.h in Headers */ = {isa = PBXBuildFile; fileRef = F4D44A24E665E939DDBC6BAB72EAC6BC /* RCTActionSheetManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 648C1EE6D41D617836426E185AC5AAED /* EXConstantsService.h in Headers */ = {isa = PBXBuildFile; fileRef = 952D138586468613EE302CA1D85F2595 /* EXConstantsService.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 649188D94444AFE72F5C875C73621929 /* RCTActionSheetManager.h in Headers */ = {isa = PBXBuildFile; fileRef = B256B556EA988AE051CC39B6E82ED387 /* RCTActionSheetManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; 64C08A1A299F65ACC045C824A64A0DCD /* Time.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 87AAB06C49E8BA84719378BA9A839301 /* 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 = A7933DE23E2E94AB414A61ADF5BF0B52 /* RNSScreenContainer.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 64CF43A068C98B02A97EC497AD319A30 /* BSG_KSMach_x86_64.c in Sources */ = {isa = PBXBuildFile; fileRef = B982F2A245C062D03E9D0007425EFD88 /* BSG_KSMach_x86_64.c */; }; + 64CE86C677FE58819125DF1CF00FD92D /* RNSScreenContainer.h in Headers */ = {isa = PBXBuildFile; fileRef = FDBB35EFC537ABD82E88A8DCAC345F1C /* RNSScreenContainer.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 64CF43A068C98B02A97EC497AD319A30 /* BSG_KSMach_x86_64.c in Sources */ = {isa = PBXBuildFile; fileRef = A189C3FAFD9021E81A1E83518C64C92F /* BSG_KSMach_x86_64.c */; }; 64D7CA904E08C542214D6273B49A823C /* IStream.h in Headers */ = {isa = PBXBuildFile; fileRef = 3C0C00C3EB81DAD74BFC49082FC652D8 /* IStream.h */; settings = {ATTRIBUTES = (Project, ); }; }; 64E791612A7D27AE1C4409A981341CBE /* lossless_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = 7E40F2D58A72308F8A10C0603682646F /* lossless_enc.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; 64E83E53B7F40F2CC0A0CF7BC3C8A43C /* enc_mips32.c in Sources */ = {isa = PBXBuildFile; fileRef = 8095BB8053756018C2AEBCCA3464114B /* enc_mips32.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 64E9035391D61BFA55BD23B151AD07BB /* RNDateTimePickerManager.m in Sources */ = {isa = PBXBuildFile; fileRef = DBB7788A06D05618E07B0B1B9644E3F0 /* RNDateTimePickerManager.m */; }; - 650233BB7B2F93FF3BC7F54341C6E361 /* RCTShadowView+Internal.m in Sources */ = {isa = PBXBuildFile; fileRef = 7FBBBFE618BCE4C5D50EB9810A6637CD /* 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 = 41E9388F4F2F474F51343984C953523A /* RCTFileReaderModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 64E9035391D61BFA55BD23B151AD07BB /* RNDateTimePickerManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 6AB85D67ED6BBEFFF728A5B2FDCE90F9 /* RNDateTimePickerManager.m */; }; + 650233BB7B2F93FF3BC7F54341C6E361 /* RCTShadowView+Internal.m in Sources */ = {isa = PBXBuildFile; fileRef = B2B74623200907111425F47D85E13F87 /* 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 = E7DED3D8285C228837F9D243F63BD987 /* RCTFileReaderModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; 6504940F5EB894DE69D5B2CF0FB49455 /* Rcu-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = EBC04109110EA540685138F05EF15D94 /* Rcu-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; 6532B3DADCD47A8B33D8A6B7DD0F81CE /* UIColor+SKSonarValueCoder.mm in Sources */ = {isa = PBXBuildFile; fileRef = 88971119938DB233CA8D9C3F4B661533 /* 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 = F31B10DD59C3075F35A0B2716A3B6DFB /* RCTBaseTextViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 653882A69EAFD0F4396408BEF954FFE1 /* RCTBaseTextViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = B09E491F61B4BE049237FB2E5CDB0F56 /* RCTBaseTextViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; 6555EE2AE374EE32F457F03D348ED0A3 /* GDTCORConsoleLogger.m in Sources */ = {isa = PBXBuildFile; fileRef = AB40D15C63CB2250B9DF830DCA6A7A79 /* GDTCORConsoleLogger.m */; }; 656610BEFEC50D7F52DD373712B20471 /* SKInvalidation.m in Sources */ = {isa = PBXBuildFile; fileRef = D5C22CF5859E6E41DFE710CAB7666427 /* 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 = D9E75B890724EA1F30A7C8E719D2E280 /* 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 = E7770225D1011CBA81539BB31146DE18 /* 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 = F9082505E190BD8F8AC684C2AF87E5F0 /* PublishProcessor.h */; settings = {ATTRIBUTES = (Project, ); }; }; 6584F1A61DBB0A4BB4BD9EA418FB70E6 /* quant_levels_dec_utils.c in Sources */ = {isa = PBXBuildFile; fileRef = E27704A270699223EBC354F812A0956A /* quant_levels_dec_utils.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; 65CA61934FB03CF180290DE31AF56EF4 /* enc_neon.c in Sources */ = {isa = PBXBuildFile; fileRef = 23EEA0044B9B84D5163474C480831759 /* enc_neon.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; 65CB92D29B76DFDEC572A3AAE0564298 /* encode.h in Headers */ = {isa = PBXBuildFile; fileRef = 8BFE48D458DA92D142AE0F0EA6281A13 /* encode.h */; settings = {ATTRIBUTES = (Project, ); }; }; 65E65D50285248E32BCA727175A9037B /* Bits.h in Headers */ = {isa = PBXBuildFile; fileRef = 8757D947022B1CD57422EF439A200556 /* Bits.h */; settings = {ATTRIBUTES = (Project, ); }; }; 65EC48B796CD30DB09C4EAAFE113C2AC /* ConcurrentSkipList.h in Headers */ = {isa = PBXBuildFile; fileRef = F9B49BDB2903B8C029C685B367994EEE /* ConcurrentSkipList.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 65F20C115C7320F488D580742E04DC93 /* RNCSafeAreaView.m in Sources */ = {isa = PBXBuildFile; fileRef = FC68D9162CBA36911F5898E1AEAA0A3B /* RNCSafeAreaView.m */; }; + 65F20C115C7320F488D580742E04DC93 /* RNCSafeAreaView.m in Sources */ = {isa = PBXBuildFile; fileRef = 66B4ED8E409E95AAAAC1C14C121B3A4B /* RNCSafeAreaView.m */; }; 65FED0532D4CBEAD6563E7214A54768B /* SKTouch.h in Headers */ = {isa = PBXBuildFile; fileRef = 8F70F5609DAE1FD9A6DEDD382E67A1B5 /* SKTouch.h */; settings = {ATTRIBUTES = (Project, ); }; }; 6627CD8BA3B27E0CB0BA0E912C78BE51 /* GDTCORTransformer.h in Headers */ = {isa = PBXBuildFile; fileRef = 86CD7480166E478F25F1C37B316E3B56 /* GDTCORTransformer.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 663337925169CB5C493A0FE71172B792 /* EXAppleAuthenticationMappings.h in Headers */ = {isa = PBXBuildFile; fileRef = 8531146500933BC6E506E180A61DEEB1 /* EXAppleAuthenticationMappings.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 663337925169CB5C493A0FE71172B792 /* EXAppleAuthenticationMappings.h in Headers */ = {isa = PBXBuildFile; fileRef = B7A66C67DC4DECE559AE93BECB13E938 /* EXAppleAuthenticationMappings.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6656A3BDBB5732C65FA4EFE23ED34161 /* SDWebImageDownloader.h in Headers */ = {isa = PBXBuildFile; fileRef = B3F5DEBD532BBA42CE5F4B8F24C5A6CD /* SDWebImageDownloader.h */; settings = {ATTRIBUTES = (Project, ); }; }; 6664EF6453923DE49024DB69641F8109 /* FrameProcessor.h in Headers */ = {isa = PBXBuildFile; fileRef = C5C1FACAB4E7399CF7E9DA5FA30E0758 /* FrameProcessor.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 666F347B84B23221BC4D76B0BB3D521F /* RNFirebaseFirestoreCollectionReference.h in Headers */ = {isa = PBXBuildFile; fileRef = C8D4187F04A5CB8410455373AE01BFCC /* RNFirebaseFirestoreCollectionReference.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 666F347B84B23221BC4D76B0BB3D521F /* RNFirebaseFirestoreCollectionReference.h in Headers */ = {isa = PBXBuildFile; fileRef = 673CA4162C4C9FD06D79A99C02149D2F /* RNFirebaseFirestoreCollectionReference.h */; settings = {ATTRIBUTES = (Project, ); }; }; 66811E431F72A69005364E0433281D70 /* yuv.h in Headers */ = {isa = PBXBuildFile; fileRef = 6F944579685D689DAE1733447AB752E5 /* yuv.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 66821B19957B6374B817C91E73C9D601 /* EXPermissions.m in Sources */ = {isa = PBXBuildFile; fileRef = C3093E8DB076B814FC199B208E9B3C15 /* EXPermissions.m */; }; + 66821B19957B6374B817C91E73C9D601 /* EXPermissions.m in Sources */ = {isa = PBXBuildFile; fileRef = 64837325DA9D6A7135EAB9B8DE48E7E6 /* EXPermissions.m */; }; 66A03981890D9863F11B9D8D04A07AA2 /* dynamic-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = B550147615851379CE21691A77B5B21D /* dynamic-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 66C5C3110649460A466AD2F6AFAA171C /* UMReactFontManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 5E7CB605C99232859478956B9F5666B1 /* UMReactFontManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 66D0421E4DDA33160130778834F66E37 /* RNLocalize-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = FAE48DC6CFAB94B34462D824F058AFCB /* RNLocalize-dummy.m */; }; - 66D6E62D450BACF145A456166BB45C2B /* RNDeviceInfo.h in Headers */ = {isa = PBXBuildFile; fileRef = 59149DB4D7BD69A028948BDB37206DF2 /* RNDeviceInfo.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 66EDFE25C763A6E147A5B8AEC67A3449 /* RCTMultipartStreamReader.h in Headers */ = {isa = PBXBuildFile; fileRef = C90E0C7B1D9E78D0B532D1E356CCD82E /* RCTMultipartStreamReader.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 66C5C3110649460A466AD2F6AFAA171C /* UMReactFontManager.h in Headers */ = {isa = PBXBuildFile; fileRef = EEAB5A80CDF7B164E09CFE82EFD0A74F /* UMReactFontManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 66D0421E4DDA33160130778834F66E37 /* RNLocalize-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 9FA87C026ADD44DD88FCE72CA739EA3E /* RNLocalize-dummy.m */; }; + 66D6E62D450BACF145A456166BB45C2B /* RNDeviceInfo.h in Headers */ = {isa = PBXBuildFile; fileRef = 11B93378FF4BA7D70A5B6DF266EE4358 /* RNDeviceInfo.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 66EDFE25C763A6E147A5B8AEC67A3449 /* RCTMultipartStreamReader.h in Headers */ = {isa = PBXBuildFile; fileRef = 23B7C6A6D953E1B949A355CF8CC81241 /* RCTMultipartStreamReader.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 66EEB6F1DF23F5A10B2562852F58D32B /* SDImageCoderHelper.h in Headers */ = {isa = PBXBuildFile; fileRef = 27F8044BB7E4A1EC51400677033141C4 /* SDImageCoderHelper.h */; settings = {ATTRIBUTES = (Project, ); }; }; 671CCCC4FA52C454C17316202BD0F386 /* Barrier.h in Headers */ = {isa = PBXBuildFile; fileRef = ABC03988040C1E00B3432A7FE1422C53 /* Barrier.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 67213F11F20DF2020A3F928D6B627E80 /* SDImageAssetManager.m in Sources */ = {isa = PBXBuildFile; fileRef = B16642936BFFA1575F0F8B1C60743341 /* SDImageAssetManager.m */; }; + 67213F11F20DF2020A3F928D6B627E80 /* SDImageAssetManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 8C87F594BE17F7E0282B084DB701CB81 /* SDImageAssetManager.m */; }; 67304F639591EAB43001263B341483A1 /* rescaler_mips_dsp_r2.c in Sources */ = {isa = PBXBuildFile; fileRef = 3F53E7DE802643EE9148400CFA8D2F2B /* rescaler_mips_dsp_r2.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; 6730E006B7764F221BB7F81F7DB749F0 /* PromisesObjC-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 8F7387949E542BBA6DC178190C86EC38 /* PromisesObjC-dummy.m */; }; 673967B0EE7ECC4BCDC0A751DC0A828F /* FiberIOExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = 21C5FBC65D86618E8BB010733F011BE0 /* FiberIOExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 673BB15EBF0B152DD8D3B4CC04E13201 /* LNAnimator.h in Headers */ = {isa = PBXBuildFile; fileRef = 29338AFC017E7E5A79D48DB5F1F97991 /* LNAnimator.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 673BB15EBF0B152DD8D3B4CC04E13201 /* LNAnimator.h in Headers */ = {isa = PBXBuildFile; fileRef = C30E9ABC632F2958332FE681AD77591A /* LNAnimator.h */; settings = {ATTRIBUTES = (Project, ); }; }; 674B78DEE8CC679498E5DE48188B81FA /* FIRComponentContainerInternal.h in Headers */ = {isa = PBXBuildFile; fileRef = 5C74E586D5AE077F987D557B3AB770A4 /* FIRComponentContainerInternal.h */; settings = {ATTRIBUTES = (Project, ); }; }; 6757FE0A1CC1ADCC38E0BBDF5BE3C2A8 /* TimedDrivableExecutor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 4E7BAD83EB8173C6E85EE46585F74AB1 /* 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 = D50F4782B72EB86BC5530080AB5E192C /* CheckedMath.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 67679FD66E5E1E1F6427743215A9BFDA /* EXAV.h in Headers */ = {isa = PBXBuildFile; fileRef = E416310D18DD3D674787588A75E53E4D /* EXAV.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 67679FD66E5E1E1F6427743215A9BFDA /* EXAV.h in Headers */ = {isa = PBXBuildFile; fileRef = C0950CB23480E915E946BD4A5C8ABBEA /* EXAV.h */; settings = {ATTRIBUTES = (Project, ); }; }; 677978C384BC8E68F54A53338361E3C2 /* PThread.h in Headers */ = {isa = PBXBuildFile; fileRef = 42E30BF5CE842E55AEEC568063B8D31B /* PThread.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 677A083618AF312CC3CDA60EFA05BCB8 /* BugsnagSink.m in Sources */ = {isa = PBXBuildFile; fileRef = 3B45B6C3975F42178855A0EA49CAAF12 /* BugsnagSink.m */; }; + 677A083618AF312CC3CDA60EFA05BCB8 /* BugsnagSink.m in Sources */ = {isa = PBXBuildFile; fileRef = 700E1E96E2A4740123B8FB417A820909 /* BugsnagSink.m */; }; 679174798499AA4B6CF32E2F96B10D4A /* TOCroppedImageAttributes.m in Sources */ = {isa = PBXBuildFile; fileRef = 101039A0E2F69BBC8476AB61583B7249 /* TOCroppedImageAttributes.m */; }; - 67A39A15971E99E5454C253E2080289C /* BSG_KSDynamicLinker.c in Sources */ = {isa = PBXBuildFile; fileRef = 3B298DC760AAF3986A2D64997749D50B /* BSG_KSDynamicLinker.c */; }; - 67BDDCE0EF521A4394DD403549BC2986 /* EXImageLoader.m in Sources */ = {isa = PBXBuildFile; fileRef = BD9BD89BC0C5C60E9EAD7A81AEF71D12 /* EXImageLoader.m */; }; + 67A39A15971E99E5454C253E2080289C /* BSG_KSDynamicLinker.c in Sources */ = {isa = PBXBuildFile; fileRef = AE1D4F9079B9928925B40030D28090BD /* BSG_KSDynamicLinker.c */; }; + 67BDDCE0EF521A4394DD403549BC2986 /* EXImageLoader.m in Sources */ = {isa = PBXBuildFile; fileRef = 19B053085DA6EF5728AFC1F76197099A /* EXImageLoader.m */; }; 67F1415FB3DD965C1871B2A2CB74C8FC /* GlobalThreadPoolList.h in Headers */ = {isa = PBXBuildFile; fileRef = 11EA20EEA3BE11B46C97E00FE1D99E02 /* GlobalThreadPoolList.h */; settings = {ATTRIBUTES = (Project, ); }; }; 67F172904F7959C4715F3CFE9B1B4B10 /* FIRInstallations.m in Sources */ = {isa = PBXBuildFile; fileRef = C5702E4D9BEDFB43F6AA03BCC523ABAB /* FIRInstallations.m */; }; 68169597FBE0AB5B54FC67E15019A84C /* SKObjectHash.h in Headers */ = {isa = PBXBuildFile; fileRef = 4CBC91A275622E387F639E5BDDA38294 /* SKObjectHash.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 68305A7D8906C121D6E084CF228B4598 /* UMModuleRegistryAdapter.h in Headers */ = {isa = PBXBuildFile; fileRef = 42361CCA7EE61E9ECF248240D46300FA /* UMModuleRegistryAdapter.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 68305A7D8906C121D6E084CF228B4598 /* UMModuleRegistryAdapter.h in Headers */ = {isa = PBXBuildFile; fileRef = 026346E1EF45B14D6A4896FC4B250C40 /* UMModuleRegistryAdapter.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6843B2F1D94E9E148304314D61C1717E /* SDWebImageDownloaderDecryptor.h in Headers */ = {isa = PBXBuildFile; fileRef = FB4894EB93A32A29593D7C21C5BC5206 /* SDWebImageDownloaderDecryptor.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 684AE69A17E2DD66B5DA5411EF613B6B /* SDImageGraphics.h in Headers */ = {isa = PBXBuildFile; fileRef = 2032067482139E870F3D76AEBECF70D2 /* SDImageGraphics.h */; settings = {ATTRIBUTES = (Project, ); }; }; 6871111D26354F50F583D2187D9397E6 /* Libgen.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D81C2D6AAB73DE4B91831859669C32E4 /* Libgen.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - 688FA3D713B354BBB54CD152A7B7BF54 /* EXAppleAuthenticationButton.m in Sources */ = {isa = PBXBuildFile; fileRef = 43E4F1558AC479BE196BDD1CFC6902BA /* EXAppleAuthenticationButton.m */; }; + 688FA3D713B354BBB54CD152A7B7BF54 /* EXAppleAuthenticationButton.m in Sources */ = {isa = PBXBuildFile; fileRef = 38B043FC39B1D9FF6E5BCE40BA273F59 /* EXAppleAuthenticationButton.m */; }; 689CA5357FD9275EE7FC85FBC8F66370 /* GMock.h in Headers */ = {isa = PBXBuildFile; fileRef = 37F05CAA072B1B41891EB96F94580E6D /* GMock.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 68A75E9D1078739344B33B3737E61D48 /* ReactNativeShareExtension.h in Headers */ = {isa = PBXBuildFile; fileRef = E0AD1427763970DC8ED1AC36E05D631A /* ReactNativeShareExtension.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 68B32248A4087D4D903A357B01BF8738 /* RCTConvert+Transform.h in Headers */ = {isa = PBXBuildFile; fileRef = 12EDE432BD3D8860F80EBFF04A6C53E4 /* RCTConvert+Transform.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 68C7196D1EE46E00BBE92E8A229915CE /* REAAlwaysNode.h in Headers */ = {isa = PBXBuildFile; fileRef = BB307728748153F595011FB99B180AD5 /* REAAlwaysNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 68A75E9D1078739344B33B3737E61D48 /* ReactNativeShareExtension.h in Headers */ = {isa = PBXBuildFile; fileRef = E10645E04E00D679C0847AA3A4B1D7C4 /* ReactNativeShareExtension.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 68B32248A4087D4D903A357B01BF8738 /* RCTConvert+Transform.h in Headers */ = {isa = PBXBuildFile; fileRef = 9CA1F1822C820511B079449E3589F64D /* RCTConvert+Transform.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 68C7196D1EE46E00BBE92E8A229915CE /* REAAlwaysNode.h in Headers */ = {isa = PBXBuildFile; fileRef = EBC4106BF941C1E24DE8147C1955EF6D /* REAAlwaysNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; 68D2769B6ADE197D4C3196196FEB0412 /* SpookyHashV2.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 6C48287496A17E92102556696A3E7006 /* 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 = A00A1F7DBCE854801805786CF75FE432 /* NetOps.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 68FA08AFB0147FC1574CEF32F3C4695F /* RCTKeyboardObserver.h in Headers */ = {isa = PBXBuildFile; fileRef = 86063991790753F559A821BD48B65DF7 /* RCTKeyboardObserver.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 68FC649D07E74F02849E2344498C1E39 /* RCTNetworking.h in Headers */ = {isa = PBXBuildFile; fileRef = 4E6A5B0627CF2430FBEEDDDF9D3C6E43 /* RCTNetworking.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 68FA08AFB0147FC1574CEF32F3C4695F /* RCTKeyboardObserver.h in Headers */ = {isa = PBXBuildFile; fileRef = F4B09EB2C56502336DCA5CA60C0FA235 /* RCTKeyboardObserver.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 68FC649D07E74F02849E2344498C1E39 /* RCTNetworking.h in Headers */ = {isa = PBXBuildFile; fileRef = FB3155D2A8179FCA4521BD598B5232AC /* RCTNetworking.h */; settings = {ATTRIBUTES = (Project, ); }; }; 6901050EF0902C7A013436C58A9B248F /* SysFile.cpp in Sources */ = {isa = PBXBuildFile; fileRef = EDE501DB07D92629B99BFC74828DDE8D /* 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 = 730E4E0BC41E24A628932A3852D22DD5 /* FlipperCppBridgingResponder.h */; settings = {ATTRIBUTES = (Project, ); }; }; 69524FD0848A58F018B7677B110D7BCF /* GDTCORReachability_Private.h in Headers */ = {isa = PBXBuildFile; fileRef = F111A9E7C9207F0FD2FF36F1DBE8EE09 /* GDTCORReachability_Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; @@ -1448,11 +1461,11 @@ 6954C7E327E3C06A6AA626163C0C4B69 /* FIROptions.h in Headers */ = {isa = PBXBuildFile; fileRef = 67124FDA9468FB603B07247B6743BB45 /* FIROptions.h */; settings = {ATTRIBUTES = (Project, ); }; }; 69C4123A15898007F90AC7D2B778DD73 /* GDTCORDataFuture.m in Sources */ = {isa = PBXBuildFile; fileRef = 1299B516202C6B6DD5D3B44DDCAB43AF /* GDTCORDataFuture.m */; }; 69E5F7365CB3D10FF7898098C3146A99 /* F14Table.h in Headers */ = {isa = PBXBuildFile; fileRef = F53A6E69750806523F38D485292B973C /* F14Table.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 69F787055B26C7E2B61B5B9B80F3C272 /* BSG_KSMach_Arm64.c in Sources */ = {isa = PBXBuildFile; fileRef = FE86AD7E797D9914BE9A74EC7BC13ADF /* BSG_KSMach_Arm64.c */; }; + 69F787055B26C7E2B61B5B9B80F3C272 /* BSG_KSMach_Arm64.c in Sources */ = {isa = PBXBuildFile; fileRef = 19E7A2A4E41D61738906A56A8E94902C /* BSG_KSMach_Arm64.c */; }; 69FEE4B83120F441AB20A039513A796E /* ExceptionWrapper.h in Headers */ = {isa = PBXBuildFile; fileRef = 5062F65CF90760ACE346693A81DC753F /* ExceptionWrapper.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6A03046C71CF85B2E59E2FBEFA35C326 /* RNCSliderManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 60B2F43322E7CC4D115FE92140100910 /* RNCSliderManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6A47866FA2B12335E271AF455D52025E /* BSG_KSCrash.m in Sources */ = {isa = PBXBuildFile; fileRef = C7B7295CBF6EF405A44F84AAE4205705 /* BSG_KSCrash.m */; }; - 6A4FE90A1CC535DAA809C5525490B85E /* QBImagePickerController.h in Headers */ = {isa = PBXBuildFile; fileRef = B913B0DE28EC59A4F79F6DB78A261708 /* QBImagePickerController.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6A03046C71CF85B2E59E2FBEFA35C326 /* RNCSliderManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 11604FDD5EC9FBC4D21992042188DD12 /* RNCSliderManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6A47866FA2B12335E271AF455D52025E /* BSG_KSCrash.m in Sources */ = {isa = PBXBuildFile; fileRef = D0FFC0CFDACFBB27D8CD29CD96BB83D6 /* BSG_KSCrash.m */; }; + 6A4FE90A1CC535DAA809C5525490B85E /* QBImagePickerController.h in Headers */ = {isa = PBXBuildFile; fileRef = B8F98B09CE1B8A8C25952C0834F6C886 /* QBImagePickerController.h */; settings = {ATTRIBUTES = (Project, ); }; }; 6A6811BCCAFE9B118E3913633F9D1A9D /* FIRComponent.h in Headers */ = {isa = PBXBuildFile; fileRef = 6BCC25095D2CE9236C0C794B87DB2275 /* FIRComponent.h */; settings = {ATTRIBUTES = (Project, ); }; }; 6A789FEDD6D65DEB0888A4AB486DB224 /* pb_common.c in Sources */ = {isa = PBXBuildFile; fileRef = CD9B56B3AE03BAFCDD4CC21C2991FF4D /* pb_common.c */; settings = {COMPILER_FLAGS = "-fno-objc-arc -fno-objc-arc -fno-objc-arc"; }; }; 6A7BB4319F8D74B5D1D1C1D8FEA3C588 /* Unicode.h in Headers */ = {isa = PBXBuildFile; fileRef = B65582303CA5F442057542B5A3E6C957 /* Unicode.h */; settings = {ATTRIBUTES = (Project, ); }; }; @@ -1462,93 +1475,91 @@ 6AC9857D5FAB49484D467CE13309EF44 /* SKDescriptorMapper.h in Headers */ = {isa = PBXBuildFile; fileRef = A663E5F2A25FF966FAAE28EB64263EE5 /* SKDescriptorMapper.h */; settings = {ATTRIBUTES = (Project, ); }; }; 6AF606892AF0C31C6F0EADDA8900C803 /* FKUserDefaultsSwizzleUtility.h in Headers */ = {isa = PBXBuildFile; fileRef = 422866F2343B4FA12000754B30B2F006 /* FKUserDefaultsSwizzleUtility.h */; settings = {ATTRIBUTES = (Project, ); }; }; 6B20F0EEC49A5600388DD9F9EE9CA2D1 /* GULReachabilityChecker+Internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 010B5109BD821A3F8B3B29CFCDE19C3A /* GULReachabilityChecker+Internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6B217CCE28CC0B8DA7822706B41E3E8C /* UIImage+MemoryCacheCost.h in Headers */ = {isa = PBXBuildFile; fileRef = AF5CE5148857621B9A277B87101F41BF /* UIImage+MemoryCacheCost.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6B257CAC5E2C34DDAF304C790E898733 /* REATransitionAnimation.h in Headers */ = {isa = PBXBuildFile; fileRef = 93E8E380CB23AE9CCFCB94F089475E53 /* REATransitionAnimation.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6B2A4C18AEA7A928A2E33A7B5C6BB708 /* BSG_KSCrashDoctor.h in Headers */ = {isa = PBXBuildFile; fileRef = 6702D43F6FF76BC785818390BF2715CF /* BSG_KSCrashDoctor.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6B2C45537C87B11EF65E69E9F333F4F4 /* SDImageGIFCoder.m in Sources */ = {isa = PBXBuildFile; fileRef = 18D02EE20BF587B8F1FD8003EE186FD8 /* SDImageGIFCoder.m */; }; + 6B257CAC5E2C34DDAF304C790E898733 /* REATransitionAnimation.h in Headers */ = {isa = PBXBuildFile; fileRef = F4716D0D64532F6E34E33873158CD06E /* REATransitionAnimation.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6B2A4C18AEA7A928A2E33A7B5C6BB708 /* BSG_KSCrashDoctor.h in Headers */ = {isa = PBXBuildFile; fileRef = 86EFF9B0108428BA2CCCD99017815624 /* BSG_KSCrashDoctor.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6B2C45537C87B11EF65E69E9F333F4F4 /* SDImageGIFCoder.m in Sources */ = {isa = PBXBuildFile; fileRef = 0D0FDF41D4C7385A156979B710531C43 /* SDImageGIFCoder.m */; }; 6B67B6200914575EE45FB7C1F2A18716 /* Flowables.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B486B15520686D88CF9A960BBE1BB153 /* 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 = EC5E84BFDB9AAF8206A9A237A394252E /* Observer.h */; settings = {ATTRIBUTES = (Project, ); }; }; 6B6CD41EA0E92DE12D6390B15A0C6D74 /* firebasecore.nanopb.c in Sources */ = {isa = PBXBuildFile; fileRef = F2E76887F71660FFCDC6651E1CEB12AC /* firebasecore.nanopb.c */; }; - 6B99A522B85248A477007A2F54CEBA1E /* NSBezierPath+SDRoundedCorners.m in Sources */ = {isa = PBXBuildFile; fileRef = 48FF178F4A6064362BE104052C28F435 /* NSBezierPath+SDRoundedCorners.m */; }; + 6B99A522B85248A477007A2F54CEBA1E /* NSBezierPath+SDRoundedCorners.m in Sources */ = {isa = PBXBuildFile; fileRef = DD5D01DBFEAF61F0C7CC9A8C1B30C162 /* NSBezierPath+SDRoundedCorners.m */; }; 6BB0A0E40EDC7AB4948869DCFB90D4E2 /* muxi.h in Headers */ = {isa = PBXBuildFile; fileRef = F8E0F8EAFEF34E092F06B406FE9E3B18 /* muxi.h */; settings = {ATTRIBUTES = (Project, ); }; }; 6BEC4D1F3B47EAED77B9E07F0EA70256 /* GDTCOREvent_Private.h in Headers */ = {isa = PBXBuildFile; fileRef = FAA8F78A3513D80C50FF65E18B5F8F0A /* GDTCOREvent_Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; 6BF37FE9E8ABB36E08295C0B612C29B0 /* String.h in Headers */ = {isa = PBXBuildFile; fileRef = 31A6F042C824B8C234E02AF82D6074C4 /* String.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6BFEA5716AA863598AB805E81B5BFE45 /* RNFirebaseEvents.h in Headers */ = {isa = PBXBuildFile; fileRef = DA8A3EE127539AED404FDA1002228B72 /* RNFirebaseEvents.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6BFEA5716AA863598AB805E81B5BFE45 /* RNFirebaseEvents.h in Headers */ = {isa = PBXBuildFile; fileRef = 2754641E5E1C3BA1D28BFF8DF52FC106 /* RNFirebaseEvents.h */; settings = {ATTRIBUTES = (Project, ); }; }; 6C1BF50C54FFCDABA052C0D60E4AA1CB /* quant_levels_utils.h in Headers */ = {isa = PBXBuildFile; fileRef = 0B699E2A67EEA22C814FEAB92F07069D /* quant_levels_utils.h */; settings = {ATTRIBUTES = (Project, ); }; }; 6C24EBB7821ECE451CC18A7AD9F1C368 /* vlog_is_on.h in Headers */ = {isa = PBXBuildFile; fileRef = B13F3CC7402172EA1283D8E1704C45E6 /* vlog_is_on.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6C293AAE8A665126DB65576FB61F2C2E /* NativeExpressComponent.h in Headers */ = {isa = PBXBuildFile; fileRef = 2CF59DE05A098DAA833C7A70753F25BC /* NativeExpressComponent.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6C293AAE8A665126DB65576FB61F2C2E /* NativeExpressComponent.h in Headers */ = {isa = PBXBuildFile; fileRef = 00E3A5686CE7C3369D636DFA716C9BB0 /* NativeExpressComponent.h */; settings = {ATTRIBUTES = (Project, ); }; }; 6C2AEAC146ADE8FD2C8F6FC813463A9F /* EvictingCacheMap.h in Headers */ = {isa = PBXBuildFile; fileRef = 419AFAD3BACA493568A21704D1085C63 /* EvictingCacheMap.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6C2C52BDBEAAC3411053D5BD41B4DC82 /* QBSlomoIconView.h in Headers */ = {isa = PBXBuildFile; fileRef = 049121CD6C0B1D64E58E3C9027BDCEFB /* QBSlomoIconView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6C2C52BDBEAAC3411053D5BD41B4DC82 /* QBSlomoIconView.h in Headers */ = {isa = PBXBuildFile; fileRef = 6966F7D983FC80CC395542046F2CBC5C /* QBSlomoIconView.h */; settings = {ATTRIBUTES = (Project, ); }; }; 6C70DA166CC635856E26D25356B5A6FD /* SocketFastOpen.h in Headers */ = {isa = PBXBuildFile; fileRef = 5859B658E09A55DFE853367E281C57CE /* SocketFastOpen.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6C848B57000ECB333F2141484B5061F8 /* YGEnums.h in Headers */ = {isa = PBXBuildFile; fileRef = CC8F9EEB184C73EAF0EDBFFB9A9448F2 /* YGEnums.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6C9CA546126A96EBB44E0EB01CA0C597 /* RCTInputAccessoryShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = D93AE0391E8B04BF035C5947E9A419FE /* RCTInputAccessoryShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6CA4114F7B18865EB558884C622ECAA5 /* RCTView+SafeAreaCompat.h in Headers */ = {isa = PBXBuildFile; fileRef = 6A3900AA83F87E3377256675111C8DFD /* RCTView+SafeAreaCompat.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6CDBAF244B152AB69B35CD781B81F6E5 /* EXVideoThumbnailsModule.m in Sources */ = {isa = PBXBuildFile; fileRef = F3A088F5E94959F5608F4899D57DA206 /* EXVideoThumbnailsModule.m */; }; - 6CE4D23FE50DC0994EFB182F5FE54B87 /* RCTRawTextViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = FE19B7DAAB2672D88B1F5E74DE62B517 /* RCTRawTextViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6CFCAB7E767E1BBE28175576FD06FC09 /* RCTLinkingPlugins.h in Headers */ = {isa = PBXBuildFile; fileRef = 3C867FCCE49877A00F3EF1D8BFF334BF /* RCTLinkingPlugins.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6D16844C8F96A2DD292833AA84CD155F /* REAPropsNode.m in Sources */ = {isa = PBXBuildFile; fileRef = D194CD066A6620297A9ABEF104160B18 /* REAPropsNode.m */; }; + 6C848B57000ECB333F2141484B5061F8 /* YGEnums.h in Headers */ = {isa = PBXBuildFile; fileRef = E651C920E7D985973C23534C9C7D50F4 /* YGEnums.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6C9CA546126A96EBB44E0EB01CA0C597 /* RCTInputAccessoryShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = 1234D762A2CB0BFC75543A7CFE6CB8F5 /* RCTInputAccessoryShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6CA4114F7B18865EB558884C622ECAA5 /* RCTView+SafeAreaCompat.h in Headers */ = {isa = PBXBuildFile; fileRef = 43071553AC045D2CD70F487D1D378897 /* RCTView+SafeAreaCompat.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6CDBAF244B152AB69B35CD781B81F6E5 /* EXVideoThumbnailsModule.m in Sources */ = {isa = PBXBuildFile; fileRef = 0DA218512ECDA548220EBC5D4723BD8D /* EXVideoThumbnailsModule.m */; }; + 6CE4D23FE50DC0994EFB182F5FE54B87 /* RCTRawTextViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 6EDBCA5FD95AB321FE8A8C344BA44126 /* RCTRawTextViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6CFCAB7E767E1BBE28175576FD06FC09 /* RCTLinkingPlugins.h in Headers */ = {isa = PBXBuildFile; fileRef = 4FD80BB7AF33EAFDC716C40AA889522F /* RCTLinkingPlugins.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6D16844C8F96A2DD292833AA84CD155F /* REAPropsNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 68E366A8676F4931B436DC3BCB3205A3 /* REAPropsNode.m */; }; 6D3150889C73DAD4E43A477FE1892785 /* README.md in Sources */ = {isa = PBXBuildFile; fileRef = BED4D12B7CB1907D3DD20AD65D6968DF /* README.md */; }; - 6D35AB896CC748B13AC4B3C3972EE181 /* REAAllTransitions.h in Headers */ = {isa = PBXBuildFile; fileRef = EDCA066DC697E9BEF2EEF64778751C22 /* REAAllTransitions.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6D35AB896CC748B13AC4B3C3972EE181 /* REAAllTransitions.h in Headers */ = {isa = PBXBuildFile; fileRef = 9519ACFDFF2FFC75797D69BF67A4C342 /* REAAllTransitions.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6D6BE3F9307133BD33AA5369A0A212E3 /* SDWeakProxy.h in Headers */ = {isa = PBXBuildFile; fileRef = 9054BED36DA34AD256BAA55AC56F757E /* SDWeakProxy.h */; settings = {ATTRIBUTES = (Project, ); }; }; 6D72A391A5E8B931A40E0EEE1122CE92 /* FIRInstallationsStoredItem.m in Sources */ = {isa = PBXBuildFile; fileRef = 8A6B3A9C0BA27C92014529507E9122A9 /* FIRInstallationsStoredItem.m */; }; - 6D8104F1766905FA5D32740A209F2A31 /* READebugNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 26D34E8EF25EA2FB1249DD3B286FD598 /* READebugNode.m */; }; + 6D8104F1766905FA5D32740A209F2A31 /* READebugNode.m in Sources */ = {isa = PBXBuildFile; fileRef = D2331A3DB4A7F7F2EA09871F7949E3B5 /* READebugNode.m */; }; 6D904A25444A6BB07820E09B40280DB4 /* Dirent.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9B5FF22642EC02DAD95385F97DE51F8C /* 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 = 74DE5ECD6B64E6F47DF433971EAD8225 /* EXKeepAwake.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6DB976F647E681AB06E97EDB58F98C41 /* RNCMaskedView-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = B83F19BE55D1F77902A11954FA99A98B /* RNCMaskedView-dummy.m */; }; + 6DB135CE25243C7A87B72013CF246917 /* EXKeepAwake.h in Headers */ = {isa = PBXBuildFile; fileRef = 1279C4ABA374EFA8A9057FF167E8435B /* EXKeepAwake.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6DB976F647E681AB06E97EDB58F98C41 /* RNCMaskedView-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = E50204785706C0FB755F40E85186379D /* RNCMaskedView-dummy.m */; }; 6DCD55BA285E5153356D0FB6617AF4D0 /* FlowableObserveOnOperator.h in Headers */ = {isa = PBXBuildFile; fileRef = 5239E8274D8C6BBA02745A0F60FBA5C7 /* FlowableObserveOnOperator.h */; settings = {ATTRIBUTES = (Project, ); }; }; 6E0920954B6E212D8FED37C2A25D5CD1 /* FBLPromise+Delay.h in Headers */ = {isa = PBXBuildFile; fileRef = B6F485C63D0E6C4AD0BFBD1FF878458B /* FBLPromise+Delay.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6EB2103944BC372A4EE0748B94A2BCA4 /* KeyboardTrackingViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 6FA0DAC29FA8635BEA326384C7007408 /* KeyboardTrackingViewManager.m */; }; - 6EC20FB3628ED3D4DA15AEE1BCCFA383 /* UMViewManagerAdapterClassesRegistry.m in Sources */ = {isa = PBXBuildFile; fileRef = C600E0C9557D33A1A03EDF81C56E1C6D /* UMViewManagerAdapterClassesRegistry.m */; }; - 6ECC55AD73F0F5815E451EAD8D434D0D /* YGNodePrint.h in Headers */ = {isa = PBXBuildFile; fileRef = BE91CEE35AB92D55B46F5AE10BF32F0C /* YGNodePrint.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6EDB4E90EFB2396C768AA9ECB68B9E98 /* RCTSinglelineTextInputView.h in Headers */ = {isa = PBXBuildFile; fileRef = 267F6C74F5F2AB98971FC8EA2F47B183 /* RCTSinglelineTextInputView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6F07790D881EFAD49AA9EFE75FADA672 /* RCTFileReaderModule.mm in Sources */ = {isa = PBXBuildFile; fileRef = EA00899B601D90EE6586A95E2062D486 /* 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 = 041999B01F33F5728EADE2E9A551CF9B /* RNFirebaseUtil.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6EB2103944BC372A4EE0748B94A2BCA4 /* KeyboardTrackingViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 85F2264BEB9F97800F262A70B774113F /* KeyboardTrackingViewManager.m */; }; + 6EC20FB3628ED3D4DA15AEE1BCCFA383 /* UMViewManagerAdapterClassesRegistry.m in Sources */ = {isa = PBXBuildFile; fileRef = 93E30264A1328C537A036A978AFBF847 /* UMViewManagerAdapterClassesRegistry.m */; }; + 6ECC55AD73F0F5815E451EAD8D434D0D /* YGNodePrint.h in Headers */ = {isa = PBXBuildFile; fileRef = 32354813AD17F8B119F088F385ED3A21 /* YGNodePrint.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6EDB4E90EFB2396C768AA9ECB68B9E98 /* RCTSinglelineTextInputView.h in Headers */ = {isa = PBXBuildFile; fileRef = 6669BBABA3CA6F813B03FA1C2B330DD1 /* RCTSinglelineTextInputView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6F07790D881EFAD49AA9EFE75FADA672 /* RCTFileReaderModule.mm in Sources */ = {isa = PBXBuildFile; fileRef = F6BC12CCAC36E171F1E235CC58124D72 /* 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 = F868C93B3C86FF0080F9EAE49E858ADE /* RNFirebaseUtil.h */; settings = {ATTRIBUTES = (Project, ); }; }; 6F55D5181CC9A51E052914C9FB3FE77F /* Format.h in Headers */ = {isa = PBXBuildFile; fileRef = DD3DACC72CC97E3AC947BE53B8DB5D12 /* Format.h */; settings = {ATTRIBUTES = (Project, ); }; }; 6F88D197CC1AA3E0B50D93FD5F7CF071 /* Future.h in Headers */ = {isa = PBXBuildFile; fileRef = D14DC96327A1C1B943C69538D8D33BF1 /* Future.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6FADD2923098EDB7083BACF1DF28880E /* EXWebBrowser-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 7F0600C755BC4C06B2F73F1604FE74D4 /* EXWebBrowser-dummy.m */; }; - 6FB0A78F16C8DC9FCA25121E22A34AD5 /* SDWebImageManager.h in Headers */ = {isa = PBXBuildFile; fileRef = C6A3C5875C4FA522C69652AFDFA30B60 /* SDWebImageManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6FADD2923098EDB7083BACF1DF28880E /* EXWebBrowser-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 02358F229DE8AC7C2942F97A400A0B38 /* EXWebBrowser-dummy.m */; }; 6FB624CE84ABA6F5B472A098FD3B96CB /* iterator_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = 867927D4402F4B8C40812057FCAF3150 /* iterator_enc.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; 6FBDDAF47F6FB7758B11DD8F5B8B3436 /* ThreadedExecutor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = ABFF9C7A054206F034417F827D639CD3 /* 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 = 8573BA2D023860A9F6D970B57450563C /* PriorityUnboundedBlockingQueue.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6FFF1148634D9472933210CBFC2E6E65 /* REAJSCallNode.h in Headers */ = {isa = PBXBuildFile; fileRef = AB48E873BEAA1DD110680782677F158D /* REAJSCallNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6FFF1148634D9472933210CBFC2E6E65 /* REAJSCallNode.h in Headers */ = {isa = PBXBuildFile; fileRef = BFEA78FD1A11C6A8C6F0FDE796F4010B /* REAJSCallNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; 7003449F5AD5ED5357D584E2C927D1C9 /* filters_neon.c in Sources */ = {isa = PBXBuildFile; fileRef = EB30AF4296B7DF688702EF6329B3212C /* filters_neon.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 701656AAE9EA2EB14ACF8B21B996906B /* RCTCustomInputController.m in Sources */ = {isa = PBXBuildFile; fileRef = 2874635C8ACF2F545342C9694BF49DC3 /* RCTCustomInputController.m */; }; - 7024078DAC57D90432E6111E82E7BC2B /* BSG_KSCrashSentry_User.c in Sources */ = {isa = PBXBuildFile; fileRef = 4B7280DC6FED85AD9589A66AC5647B62 /* BSG_KSCrashSentry_User.c */; }; + 701656AAE9EA2EB14ACF8B21B996906B /* RCTCustomInputController.m in Sources */ = {isa = PBXBuildFile; fileRef = 65A8DB6AFE39F2A7B99B1F4F48ED63D7 /* RCTCustomInputController.m */; }; + 7024078DAC57D90432E6111E82E7BC2B /* BSG_KSCrashSentry_User.c in Sources */ = {isa = PBXBuildFile; fileRef = 1D6F792707429EAB0641A6D0DDAC97FE /* BSG_KSCrashSentry_User.c */; }; 70499203E2E4E13465AA6BA667887CC1 /* GlobalShutdownSocketSet.h in Headers */ = {isa = PBXBuildFile; fileRef = 75DA4BB71C1326F66B176CCA5A426509 /* GlobalShutdownSocketSet.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7051713F98CC30823562EB071DC39C96 /* SDImageIOAnimatedCoder.h in Headers */ = {isa = PBXBuildFile; fileRef = 7E62C990994B163B1E63FABB01328E5E /* SDImageIOAnimatedCoder.h */; settings = {ATTRIBUTES = (Project, ); }; }; 707B2CC24985C389209CE40429E62D49 /* FIRInstallationsStore.h in Headers */ = {isa = PBXBuildFile; fileRef = 2FF492AE67C415F581B90EE78BE0ED44 /* FIRInstallationsStore.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 70917AA85229371846B2BA9C6982B2D5 /* RCTRedBoxSetEnabled.m in Sources */ = {isa = PBXBuildFile; fileRef = B6650A0AD796D6E7B79B515E7D756EF7 /* 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 = 81AFDEF547C5C5756ED77C489BE02B72 /* 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 = FE081383A92435653EE42E2C8C4EAB5D /* FlipperStep.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 70B22AAE6D8044176F9BAFA0F2511167 /* SDFileAttributeHelper.m in Sources */ = {isa = PBXBuildFile; fileRef = 1E1CFFFAB8A4A2D75524936EE293EC91 /* SDFileAttributeHelper.m */; }; + 70B22AAE6D8044176F9BAFA0F2511167 /* SDFileAttributeHelper.m in Sources */ = {isa = PBXBuildFile; fileRef = 36EC21E539621DCC9EB876104EBA996B /* SDFileAttributeHelper.m */; }; 70C947372918C45265E8AA6243FAE044 /* StreamFragmentAccumulator.h in Headers */ = {isa = PBXBuildFile; fileRef = BFDB400359D9801EC7F5B043C1BE7FB5 /* StreamFragmentAccumulator.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 70CA057375CA861D8A3729FED91030B3 /* LongLivedObject.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9BB449E0F6493A29C62B20ED4EB2BF00 /* LongLivedObject.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 70CA057375CA861D8A3729FED91030B3 /* LongLivedObject.cpp in Sources */ = {isa = PBXBuildFile; fileRef = EF2F4C2510566B811AD1F0B4FFDE78A5 /* LongLivedObject.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; 70DC9B10E6304A69135CCBE2AB263499 /* hu.lproj in Resources */ = {isa = PBXBuildFile; fileRef = D4F46B602F0430A1FBBB1734A3404C7F /* hu.lproj */; }; - 70FD47128E14984FA9DABB052B73161E /* REACallFuncNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 1BE6C709B2CDA1C8F74B0EB1C19753A3 /* REACallFuncNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 71048C5E632D1CD5ADE2BFCAD39D0D0D /* RCTVibration.h in Headers */ = {isa = PBXBuildFile; fileRef = A6D61A98BE3838A974047F5F353B5506 /* RCTVibration.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 70FD47128E14984FA9DABB052B73161E /* REACallFuncNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 1536A2517FBDC7303862D1460299D00D /* REACallFuncNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 71048C5E632D1CD5ADE2BFCAD39D0D0D /* RCTVibration.h in Headers */ = {isa = PBXBuildFile; fileRef = B86ECB3152FE8BC4D9C224274DC407B8 /* RCTVibration.h */; settings = {ATTRIBUTES = (Project, ); }; }; 713B6CFB2FEB27D47C3E3C5F2D908A70 /* AsyncSignalHandler.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 62B8EF8AF12E78C2AF1A636E291CB5C5 /* 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 = C2456B070C41806D7B609717DA4AE773 /* ProducerConsumerQueue.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 718F3327BD8BC6C1649C8AF752369610 /* RCTSettingsManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 33D551B60F8530F4356EB55964B4FA03 /* RCTSettingsManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 718F3327BD8BC6C1649C8AF752369610 /* RCTSettingsManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 219931B3E45A613A5805F42527116231 /* RCTSettingsManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; 71A171A31038A2903EE7E79423EB1506 /* FlipperKitLayoutPlugin.mm in Sources */ = {isa = PBXBuildFile; fileRef = A55529A02D9F5950F616EA52CC95D4A8 /* 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 = 66149099245ABA812984423B04B2B2E9 /* GULNetworkURLSession.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 71A8F1F7B8F1C500E5DB54E7568768BF /* RNSScreenStack.h in Headers */ = {isa = PBXBuildFile; fileRef = 876083BCCE2D2CC8E94DE4899EB6ADAD /* RNSScreenStack.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 71B0ADC6C2DC2E47E30351AE0747533A /* log.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3CCC75DE3E19DBDCDC976CB51121AA6A /* 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 = 792E8146D665B9BE40716A7239F38CB7 /* RNNativeViewHandler.m */; }; - 71BFB0C1F7C39D377180BE4A26405164 /* RNNotificationParser.h in Headers */ = {isa = PBXBuildFile; fileRef = 3978E0817217815A03BD8559CBC212A0 /* RNNotificationParser.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 72089BD4C4AB1DEC21AC8B8C15BE2ED0 /* SDDeviceHelper.m in Sources */ = {isa = PBXBuildFile; fileRef = 8C4A42E529DA8C82241503BA7483D779 /* SDDeviceHelper.m */; }; - 720F10A6F132AD7458D8B1BD85DE5BB2 /* RCTUIManagerUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = 3C4A7193D1505AB4E7B8EEB458479E5B /* RCTUIManagerUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 71A8F1F7B8F1C500E5DB54E7568768BF /* RNSScreenStack.h in Headers */ = {isa = PBXBuildFile; fileRef = 212E462CD956DCFF5391D39795C41FC0 /* RNSScreenStack.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 71B0ADC6C2DC2E47E30351AE0747533A /* log.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D3780A9E809F0C5A16D713F2E0F0ECB2 /* 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 = 20C41C56D086BEEA0D2C3001A5805B71 /* RNNativeViewHandler.m */; }; + 71BFB0C1F7C39D377180BE4A26405164 /* RNNotificationParser.h in Headers */ = {isa = PBXBuildFile; fileRef = F3BFB553EE581EF66B7540E20EB2B2D8 /* RNNotificationParser.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 72089BD4C4AB1DEC21AC8B8C15BE2ED0 /* SDDeviceHelper.m in Sources */ = {isa = PBXBuildFile; fileRef = 95CB55A7B0A49266F5B1D14830566C37 /* SDDeviceHelper.m */; }; + 720F10A6F132AD7458D8B1BD85DE5BB2 /* RCTUIManagerUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = 5336120F44EB40D62631E5D977203C7F /* RCTUIManagerUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; 721713500B4D40C033B10C063E735067 /* TimeoutQueue.h in Headers */ = {isa = PBXBuildFile; fileRef = 8507EE48E0C9C50B5318C5CF50122148 /* TimeoutQueue.h */; settings = {ATTRIBUTES = (Project, ); }; }; 722BD6977E9660D59526BB0AD44148F8 /* FlipperKitReactPlugin.h in Headers */ = {isa = PBXBuildFile; fileRef = 4D448B892838AD09C2D3EF63EA7EA406 /* FlipperKitReactPlugin.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 725BA7CAA30F06AEDC2A790CB990123E /* REAValueNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 842878067937A44B227D66C01C43030D /* REAValueNode.m */; }; - 725BC4B216ECC3B13922602F90FD5DDC /* RNFlingHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = C5079FCBD5EEF4C3D19A4559DF39DA35 /* RNFlingHandler.m */; }; - 7284BF438F4A908AFDB3AEA753D92D54 /* UMSingletonModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 3849EEFE0D7DD1DDED58F4F9AF3B84B4 /* UMSingletonModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 729543A16C2009AED104FB4361519B63 /* SDDisplayLink.m in Sources */ = {isa = PBXBuildFile; fileRef = 433B2105FDE53C5CBB3D124CBA9AF726 /* SDDisplayLink.m */; }; - 72A1DCEA3136CEF0217A05E9CC9D768F /* RCTBackedTextInputDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = 08ABEBB9725655CC6ED26B3DEDB4CA00 /* RCTBackedTextInputDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 725BA7CAA30F06AEDC2A790CB990123E /* REAValueNode.m in Sources */ = {isa = PBXBuildFile; fileRef = B067FB353840014C51AFE3B3786E0A4C /* REAValueNode.m */; }; + 725BC4B216ECC3B13922602F90FD5DDC /* RNFlingHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = E3B0CBE9F74F2050E6523049D4DA30BF /* RNFlingHandler.m */; }; + 7284BF438F4A908AFDB3AEA753D92D54 /* UMSingletonModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 5C52F6682F729545F3391BA73094232A /* UMSingletonModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 729543A16C2009AED104FB4361519B63 /* SDDisplayLink.m in Sources */ = {isa = PBXBuildFile; fileRef = 18E617FD1CB69EA7B27B6351957EFB23 /* SDDisplayLink.m */; }; + 72A1DCEA3136CEF0217A05E9CC9D768F /* RCTBackedTextInputDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = 38AE59C5F76AE8294DEE93C2A2934A1F /* RCTBackedTextInputDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; }; 72A89D0E917A84710512EBBC8A498DBE /* bit_writer_utils.h in Headers */ = {isa = PBXBuildFile; fileRef = 0D65795EAEBDB3248E4FFEFD8AE28B5B /* bit_writer_utils.h */; settings = {ATTRIBUTES = (Project, ); }; }; 72C57949DABD3BDC557C1B6AAAA05918 /* Pods-ShareRocketChatRN-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 9C44288E4F9D989101F85D6BC24EA9B5 /* Pods-ShareRocketChatRN-dummy.m */; }; - 72F03A33B89D23334A2BF8C1544CB64B /* RCTSinglelineTextInputViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 124072C8CF5B3C82CAF4ECD605BC4C4E /* RCTSinglelineTextInputViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 72F03A33B89D23334A2BF8C1544CB64B /* RCTSinglelineTextInputViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 5A7DCFB3F575C0CBEB1478EE7B915259 /* RCTSinglelineTextInputViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; 72F98D47E908D160397D2109949F8901 /* GDTCORTransport.h in Headers */ = {isa = PBXBuildFile; fileRef = 51F04E2D9A8DF407264771A7B6DB295D /* GDTCORTransport.h */; settings = {ATTRIBUTES = (Project, ); }; }; 730CF59059356078E40500B6BB498E2C /* OpenSSLThreading.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 05672D7B2C6130AF07E326DF8EF6CDE0 /* 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 = 2744D69B7CA848FB0307E86A45438935 /* RNCAppearanceProvider.m */; }; - 73112C1488A872BEA689E089D0B0E0FD /* RNSScreenStack.m in Sources */ = {isa = PBXBuildFile; fileRef = 6B41E4FCC74576391ADB7ACBFD2CB539 /* RNSScreenStack.m */; }; + 730DC14773375905F03EC77556A60EE7 /* RNCAppearanceProvider.m in Sources */ = {isa = PBXBuildFile; fileRef = 087220498ABB5A8FD1700F9DB776AF7E /* RNCAppearanceProvider.m */; }; + 73112C1488A872BEA689E089D0B0E0FD /* RNSScreenStack.m in Sources */ = {isa = PBXBuildFile; fileRef = 1887071717657DDAFB53BA65C7B5EE7B /* RNSScreenStack.m */; }; 73326E676CD26D5A4B3B135758C839A2 /* nl.lproj in Resources */ = {isa = PBXBuildFile; fileRef = 6DCAAFCFD9C40302456BE418A600C478 /* nl.lproj */; }; 735677185EDE464C255FC2E8C20CB400 /* fixed-dtoa.cc in Sources */ = {isa = PBXBuildFile; fileRef = D175DEB9DCB303F9ECF104A3CCA72AE1 /* fixed-dtoa.cc */; settings = {COMPILER_FLAGS = "-Wno-unreachable-code"; }; }; 7375257DD805DCD78B8073530A459F64 /* Builtins.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 49B2130667FC877ECE76F0F609B82F7F /* 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"; }; }; @@ -1557,247 +1568,243 @@ 73C1987309FC66BA1F1ED22729624B83 /* RSocketResponder.h in Headers */ = {isa = PBXBuildFile; fileRef = D02D05DFF66D5FB7319CA280942F9426 /* RSocketResponder.h */; settings = {ATTRIBUTES = (Project, ); }; }; 73C360D38190B223621C837277090BF2 /* SharedPromise-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 501527DF2B51A182FCF38F92501CA6FD /* SharedPromise-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; 73CE42ADD9095E1C00FD06E526EEF697 /* EDFThreadPoolExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = 2BE8A21AE787CA0316CAB8B12808184C /* EDFThreadPoolExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 73F47C0D665D977282E99C099016D971 /* BSG_KSObjCApple.h in Headers */ = {isa = PBXBuildFile; fileRef = 41CB39FD5D11539EAE2ECF837C19AC7F /* BSG_KSObjCApple.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 73FC0DD23312E359AAF2BA654EAF7B6F /* NSData+ImageContentType.h in Headers */ = {isa = PBXBuildFile; fileRef = F8A31A8DA974B49272E80FBD49044CBB /* NSData+ImageContentType.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 73F47C0D665D977282E99C099016D971 /* BSG_KSObjCApple.h in Headers */ = {isa = PBXBuildFile; fileRef = 318B64AE25ED8CA579ED1FD92C0473CC /* BSG_KSObjCApple.h */; settings = {ATTRIBUTES = (Project, ); }; }; 73FE47BDC5B749B3E3CFBF41F35F23B1 /* GDTCORUploadPackage.m in Sources */ = {isa = PBXBuildFile; fileRef = 6D93EFFAB3C9CF568E8586640851F355 /* GDTCORUploadPackage.m */; }; - 74025B9922DF7341E15B5DAA6EDBC05A /* React-jsiexecutor-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = BFDC408389CB2C71CCB52D6A88B529F1 /* React-jsiexecutor-dummy.m */; }; + 74025B9922DF7341E15B5DAA6EDBC05A /* React-jsiexecutor-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 83C56E34D9977B3F182946FBCA36820E /* React-jsiexecutor-dummy.m */; }; 741AF7E0277F291C9A0D1BD934784DE5 /* TimerFDTimeoutManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 06800ED7F45E9EEE33317363307DAF0E /* TimerFDTimeoutManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 74300D3787589F62BD7ED937C2C6B714 /* UIImageView+WebCache.h in Headers */ = {isa = PBXBuildFile; fileRef = A6247BFFD6345418184A0A399334C902 /* UIImageView+WebCache.h */; settings = {ATTRIBUTES = (Project, ); }; }; 743DB1E02A7BB6C13E5E07719EB4764D /* DoubleConversion-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 1F34CDAA5FAE8D10A8A77EBE52B29E3A /* DoubleConversion-dummy.m */; }; 743E12102CBDF56F168BB165085C8ED9 /* Demangle.h in Headers */ = {isa = PBXBuildFile; fileRef = 1096C62987E060CDB91A9A0667807111 /* Demangle.h */; settings = {ATTRIBUTES = (Project, ); }; }; 744569ED9F08B38A12D22F2F9FC0424C /* SocketAddress.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 022760F1F3F03EEEF53CBA1B3AEB597A /* 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 = 8924A173226D2B10DDD893B3319E05A5 /* 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 = 9CF2193318F09D8D55E14A40590398F6 /* 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 = AF9BBCCCA38CF3024A8E55E70FC480AC /* 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 = B8236816F9EF6C835ADEF7EBD8A51FEE /* 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 = D94FCB502C78D02BF63E1CE32E8E6C5D /* 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 = 304742E7A35470A67B5DC35A03BAD9E6 /* 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 = 2FB541B83A2F7F69060002F122465ABB /* 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 = 03B3B8A2D8AA371D0684A81EAD100DCF /* Core-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; 74BFEE5FD90DDCCFB94D28F70F9F952F /* raw_logging.h in Headers */ = {isa = PBXBuildFile; fileRef = 6DF471E434E4FFF4F5E34CFB225CD970 /* raw_logging.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 74D294644A5BAD6AFCC3AB3E1D464F48 /* RCTPicker.m in Sources */ = {isa = PBXBuildFile; fileRef = 2955E1F0E269B00A6DF445737D241CC5 /* 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 = 2C8937263FFB2C59A5E5A48194035D49 /* RCTObjcExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 74D294644A5BAD6AFCC3AB3E1D464F48 /* RCTPicker.m in Sources */ = {isa = PBXBuildFile; fileRef = 91A5A630626CC57ADDEFEBE5275192C9 /* 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 = 7B263EEBD8CB0393F6D1B28D8E743068 /* RCTObjcExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7511831132AD02DF13E76422ABD73F09 /* SDWebImageManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 700D61B93A014530A83DDAD4C2C6BC55 /* SDWebImageManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; 75333439D6AC33E0F7ADAE8F60E86FD8 /* FireForgetThroughputTcp.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 4509075B648B1A4ABBF5CC9C07CA000D /* 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 = D1D70E1B0FB4018A3A748137894CFA0F /* 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 = B2D4DDB8592A5368609B572269B0F1D2 /* EXFileSystemLocalFileHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 75778E70621A1A6EE9A2FA787A37D730 /* RCTImageView.mm in Sources */ = {isa = PBXBuildFile; fileRef = D16CF1F5F589134A5AD03CAAF6FF4E3A /* 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 = BA9ED6B28A9A074873F964B7DBA69E26 /* 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 = 1CDBDB451C7853A08F67B5013F43D8EC /* EXFileSystemLocalFileHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 75778E70621A1A6EE9A2FA787A37D730 /* RCTImageView.mm in Sources */ = {isa = PBXBuildFile; fileRef = ADB4B73DED1F16EE49890B2A31F437E4 /* 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 = 43EE0B73152C4977E13E9D53721F35B0 /* FirebaseCoreDiagnostics-dummy.m */; }; 757FD90124B6536FA19702EAB1BB9355 /* FIRInstallationsErrors.h in Headers */ = {isa = PBXBuildFile; fileRef = 2B55A15A4DD10CFE1C54130E09F18C61 /* FIRInstallationsErrors.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 75B8BADAC91B540F69B4C9B2B452FF29 /* BSG_KSBacktrace_Private.h in Headers */ = {isa = PBXBuildFile; fileRef = 713882D8685596882A1DA0DCAC5ACF8C /* BSG_KSBacktrace_Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 75C38367AD41BCC14148B858141FD9A2 /* RNUserDefaults.m in Sources */ = {isa = PBXBuildFile; fileRef = 28E7299B4D7DC027AEA6FF8027B16E29 /* RNUserDefaults.m */; }; - 76110E4538EEE7713CF6399084C6A08A /* REAEventNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 8A21DF5AF76A2B8062D40CB737C1DADA /* REAEventNode.m */; }; + 75B8BADAC91B540F69B4C9B2B452FF29 /* BSG_KSBacktrace_Private.h in Headers */ = {isa = PBXBuildFile; fileRef = 4E6AD46A5FCC5FED2D096C94C7DE5DA0 /* BSG_KSBacktrace_Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 75C38367AD41BCC14148B858141FD9A2 /* RNUserDefaults.m in Sources */ = {isa = PBXBuildFile; fileRef = 3D2FE0071CB8D5CA9CCC04EA01CD661B /* RNUserDefaults.m */; }; + 76110E4538EEE7713CF6399084C6A08A /* REAEventNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 0F6027A1B0EC49F593EF0E034F4D51C4 /* REAEventNode.m */; }; 763CD444AF9E7EA395CFD53721D810A8 /* Math.h in Headers */ = {isa = PBXBuildFile; fileRef = AD220AA276D5E0A82C411E0A45B1435A /* Math.h */; settings = {ATTRIBUTES = (Project, ); }; }; 764F640B2C505140321DA60CF2074D08 /* tree_dec.c in Sources */ = {isa = PBXBuildFile; fileRef = 224B0F633CF99533D589753DA8AB82B0 /* tree_dec.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 765E1045CE05FBCD4A3B66341064888F /* SDImageAssetManager.h in Headers */ = {isa = PBXBuildFile; fileRef = E58ABE3A117EE7B01E6E6D36BE5510F2 /* SDImageAssetManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 766B635C7BE0CCE6707FFB964463D053 /* RCTWeakProxy.m in Sources */ = {isa = PBXBuildFile; fileRef = 920FAF2B438559869A6D0190293E50AC /* 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 = 83B78F749963DCB88F05E67EA16225F4 /* 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 = C44304169C35B4A7A519B1A1DCBDA0AB /* Windows.h */; settings = {ATTRIBUTES = (Project, ); }; }; 76764823DEFD4B7F2880A19721C6313A /* stop_watch.h in Headers */ = {isa = PBXBuildFile; fileRef = E042208C2048F997332FF45C2670A035 /* stop_watch.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7683D1EAD5E3D44A358E26F35D3654CB /* RCTAnimatedImage.h in Headers */ = {isa = PBXBuildFile; fileRef = 26F32BCDDA6E518EC2F330306560C1D7 /* RCTAnimatedImage.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 76BCF1FCF8D56F43523423D46A8098A5 /* RCTImageEditingManager.h in Headers */ = {isa = PBXBuildFile; fileRef = DEB1C53ABC82E6C91B3D561E55026863 /* RCTImageEditingManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7683D1EAD5E3D44A358E26F35D3654CB /* RCTAnimatedImage.h in Headers */ = {isa = PBXBuildFile; fileRef = 5CA400AF4AA1898D16063CD1F4799A3F /* RCTAnimatedImage.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 76BCF1FCF8D56F43523423D46A8098A5 /* RCTImageEditingManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 25E6C85722864CE68C2A101629DD1411 /* RCTImageEditingManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; 76CC28957C425E9D74DFA32D3F73953A /* ieee.h in Headers */ = {isa = PBXBuildFile; fileRef = DCCFD8434CA50603862B2768CC4A129A /* ieee.h */; settings = {ATTRIBUTES = (Project, ); }; }; 76E11DFAA4DC6209C6D3CC2CBF3EFA8A /* Time.h in Headers */ = {isa = PBXBuildFile; fileRef = 4B5210B14A763C0C46E3464166BFBBEB /* Time.h */; settings = {ATTRIBUTES = (Project, ); }; }; 76EBE6CD51BEEE22F89845516E86EBAA /* SDWebImageWebPCoder.h in Headers */ = {isa = PBXBuildFile; fileRef = D7ACEA4E132D42CE98697B34DC036A3F /* SDWebImageWebPCoder.h */; settings = {ATTRIBUTES = (Project, ); }; }; 76EEE05A743A33A2A0FAC336D130C2C9 /* GDTCORStorageProtocol.h in Headers */ = {isa = PBXBuildFile; fileRef = 34B1FFB6141C73209C4E5A15B39EDEA7 /* GDTCORStorageProtocol.h */; settings = {ATTRIBUTES = (Project, ); }; }; 76FD2A79BEF913421A313ED50295DF11 /* RequestResponseRequester.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A4B54DB3D9E006EB704E1D1E39532C22 /* 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 = B1B61F997B01F01E1EB62509328A65C4 /* RCTCustomKeyboardViewController.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 771A42B5F74050C824EF6A90710BDB46 /* BugsnagSession.h in Headers */ = {isa = PBXBuildFile; fileRef = B72142B3DCD694D56D81DDC466849790 /* BugsnagSession.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 77622F1A0ABB1224B6239F7ADE18F4CB /* ARTSolidColor.m in Sources */ = {isa = PBXBuildFile; fileRef = 7B070620454ABD843CBAC84F6D6C3662 /* ARTSolidColor.m */; }; + 7715D82AD9F3D0E93C1F5DFE32102B53 /* RCTCustomKeyboardViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = 8900AAAA738BF04DCE5E1B94E2DC9332 /* RCTCustomKeyboardViewController.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 771A42B5F74050C824EF6A90710BDB46 /* BugsnagSession.h in Headers */ = {isa = PBXBuildFile; fileRef = E7D31FF6221AF2CC2A559B30707B918A /* BugsnagSession.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 77622F1A0ABB1224B6239F7ADE18F4CB /* ARTSolidColor.m in Sources */ = {isa = PBXBuildFile; fileRef = FEF28775DEFA2385EB86C92F748330A6 /* ARTSolidColor.m */; }; 776799F6076113258BCCED1723ED4382 /* ThreadName.h in Headers */ = {isa = PBXBuildFile; fileRef = 2C98A1F038692A38FFDA4138201117EC /* ThreadName.h */; settings = {ATTRIBUTES = (Project, ); }; }; 77744A82C948F3D83862E0015E612602 /* muxinternal.c in Sources */ = {isa = PBXBuildFile; fileRef = 3A09FC1F6FE2C60C12E163DDE81961C9 /* muxinternal.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 777B202C8582C5E0780E559C0ED4F862 /* UMReactLogHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = 3472323B1AEFB0C13EE49F7103F6F7E0 /* UMReactLogHandler.m */; }; + 777B202C8582C5E0780E559C0ED4F862 /* UMReactLogHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = A5F3EEF0E74F17391ECE9AAB545B80A6 /* UMReactLogHandler.m */; }; 77ACCFEBB20441467E34B9600FF1FAB2 /* utilities.cc in Sources */ = {isa = PBXBuildFile; fileRef = 1E8829A45C391249A921EAA2ECB324A1 /* utilities.cc */; settings = {COMPILER_FLAGS = "-Wno-shorten-64-to-32"; }; }; 77B27E8A50F6A983B614BDBEE2B4C702 /* ro.lproj in Resources */ = {isa = PBXBuildFile; fileRef = 27C71620694D8BFBA545CB1B9B57506C /* ro.lproj */; }; 77B293EF5067D13B9EB06AAB2F947B77 /* Flowable.h in Headers */ = {isa = PBXBuildFile; fileRef = 77972F8869294C4A4D5DD271E126CABC /* Flowable.h */; settings = {ATTRIBUTES = (Project, ); }; }; 77B3698D829519200039FAB0F98E726F /* CodingDetail.h in Headers */ = {isa = PBXBuildFile; fileRef = 4F5DD97F8E6E4C0708077F62E6A6E922 /* CodingDetail.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 77B46A28B3F86102E403AAB54A83DC0F /* RCTPerfMonitor.mm in Sources */ = {isa = PBXBuildFile; fileRef = 934A92F5F919E8F07588C83383514BDA /* 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 = 94B935719C753F605BEFC3442F21321C /* ARTShadow.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 77B46A28B3F86102E403AAB54A83DC0F /* RCTPerfMonitor.mm in Sources */ = {isa = PBXBuildFile; fileRef = 825FA67B5A05BA2C03A27AB6B3F518B0 /* 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 = 00921F7873CACBCE0A54AEDD40B739E1 /* ARTShadow.h */; settings = {ATTRIBUTES = (Project, ); }; }; 77EF2F92B9062A1EECCB6E0C9C275D88 /* UIImage+CropRotate.h in Headers */ = {isa = PBXBuildFile; fileRef = 5ABEC9560BE067BBE7FBDF9DBE45B2F9 /* UIImage+CropRotate.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 78319D0098C1839D14DD35C5F572DDCF /* CxxModule.h in Headers */ = {isa = PBXBuildFile; fileRef = D466A4F271A3AC7DCC2FF8D781077753 /* CxxModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 78319D0098C1839D14DD35C5F572DDCF /* CxxModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 44C204F08D7FDCB716039E9B06AD5BFE /* CxxModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; 7841E1B4F2C70023205BC38857EE74D6 /* Combine.h in Headers */ = {isa = PBXBuildFile; fileRef = FD427A3E7446688D2E946889E162EF7C /* Combine.h */; settings = {ATTRIBUTES = (Project, ); }; }; 785BC4CF4809020AF5132A2626189D3B /* mux.h in Headers */ = {isa = PBXBuildFile; fileRef = 818C77783BD22EAC8309ADF4787BA66F /* mux.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 785CAF95D72E52A3CB51D19B161EF757 /* RNDateTimePicker-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 617926486224D0C074E090159BA81200 /* RNDateTimePicker-dummy.m */; }; + 785CAF95D72E52A3CB51D19B161EF757 /* RNDateTimePicker-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 0790CCAD0E750D1F50CAEE0E3F6EBFA9 /* RNDateTimePicker-dummy.m */; }; 7882CEFF17C5B91821AD080799F6FB5D /* IPAddressV6.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 6A52D76A1966F86A98A1D54378299FD7 /* 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 = B82323AB272218CE115A7186AA94D3B7 /* UIView+Yoga.m */; }; - 788C6BB15A2BE63266654114F27DFC9F /* JSDeltaBundleClient.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 6B26DEFDF2E6A80D97F00BBDFE7FF911 /* 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 = 134E75B44815EFD151A2D9B70BD40986 /* RNSScreen.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 788C6BB15A2BE63266654114F27DFC9F /* JSDeltaBundleClient.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 61555E5E0F798D1371B9A807803E31E1 /* 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 = 2E3FBB4B21D8F7FB43EB51557DF76628 /* RNSScreen.h */; settings = {ATTRIBUTES = (Project, ); }; }; 78BB6FDBF3F970AB072D30BEC80DB9B0 /* PackedSyncPtr.h in Headers */ = {isa = PBXBuildFile; fileRef = 8B091310AD634FF79967BBCB2BEB5DC0 /* PackedSyncPtr.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 78BF0D15DB0070EF5BFCF034FDBA9A7B /* JSBundleType.h in Headers */ = {isa = PBXBuildFile; fileRef = 43172E33D97ACB9262B3896A1C8EEA25 /* JSBundleType.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 78BF0D15DB0070EF5BFCF034FDBA9A7B /* JSBundleType.h in Headers */ = {isa = PBXBuildFile; fileRef = 61E428D9FD42017082055B0D52355133 /* JSBundleType.h */; settings = {ATTRIBUTES = (Project, ); }; }; 78CA63676DC67FB7253C5FFD5F3F7566 /* Assume.cpp in Sources */ = {isa = PBXBuildFile; fileRef = CABFBEA32CA29594155D5329465B93FB /* 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 = 106F6B8D6E0E1D4159EFC59CA49D35ED /* RCTSegmentedControl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 78F927721FF33D4B9A04BF10E78C536E /* UMModuleRegistryProvider.m in Sources */ = {isa = PBXBuildFile; fileRef = 094B2079D554B45CE52B8DB78B37ADE8 /* UMModuleRegistryProvider.m */; }; - 790322F76C8B7D9855BAB016FF42BBD7 /* REAPropsNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 5027F0CC646A6516D16F1A731BCE3023 /* REAPropsNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 78DAC16D9A5B8098D88681C436F3C6B2 /* RCTSegmentedControl.h in Headers */ = {isa = PBXBuildFile; fileRef = 4B80933D1A235F6C228F81689B5C40A1 /* RCTSegmentedControl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 78F927721FF33D4B9A04BF10E78C536E /* UMModuleRegistryProvider.m in Sources */ = {isa = PBXBuildFile; fileRef = 0097D11539DB09FDF8537B5F03892D6A /* UMModuleRegistryProvider.m */; }; + 790322F76C8B7D9855BAB016FF42BBD7 /* REAPropsNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 9AED82AC0992CA90E633CE53D498FFD5 /* REAPropsNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; 7925BA5117C9FA8B8B85A031330AAA42 /* AsymmetricMemoryBarrier.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F5AE5ACA4257806B3925AD54D3C082CB /* 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 = 085AB487C8EB644BA63C60DAF68D9AC4 /* RCTURLRequestDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 794567009289677F590846BBC3EC0ADF /* EXFilePermissionModule.m in Sources */ = {isa = PBXBuildFile; fileRef = 22067950C5C6A4A4DC87C7D141E6E076 /* EXFilePermissionModule.m */; }; + 7934D62F5DF4DC847EB6890EF8C9FB77 /* RCTURLRequestDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = 4207E3CFE2B8D22E118EEB6161388B41 /* RCTURLRequestDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 794567009289677F590846BBC3EC0ADF /* EXFilePermissionModule.m in Sources */ = {isa = PBXBuildFile; fileRef = F32C9DEFD7D2E12BCD98F3FE66EFBB50 /* EXFilePermissionModule.m */; }; 7949FD6EB727E69406421858C3A31123 /* CMakeLists.txt in Sources */ = {isa = PBXBuildFile; fileRef = 56A76614CC57F364D865AE803573465F /* CMakeLists.txt */; }; 7951728F21A13BEC0D339F17249D5804 /* Observables.cpp in Sources */ = {isa = PBXBuildFile; fileRef = E8182F724D11E8A5321A5333A8531239 /* 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 = B3B7A14B0CD3520FAB6E3F14C46070CC /* IPAddressSource.h */; settings = {ATTRIBUTES = (Project, ); }; }; 7998B28E952A9C7FB43756166ABEBF61 /* stl_logging.h in Headers */ = {isa = PBXBuildFile; fileRef = BB45A219ED8EC0A299CA36811D99FF2B /* stl_logging.h */; settings = {ATTRIBUTES = (Project, ); }; }; 79A9269A8CDE8C5B66FBA6E2C4303509 /* fixed-dtoa.h in Headers */ = {isa = PBXBuildFile; fileRef = 8AE41E7F1254E66C3663DDF781E9762A /* fixed-dtoa.h */; settings = {ATTRIBUTES = (Project, ); }; }; 79B1AC4695CB8BE38445A32F9D7AB8C9 /* de.lproj in Resources */ = {isa = PBXBuildFile; fileRef = 48585445AE235AEDCD0FB7DD230879A2 /* de.lproj */; }; - 79B7DEC0DCB3E71EE1D41FB02653FBD5 /* RCTRootContentView.m in Sources */ = {isa = PBXBuildFile; fileRef = 35D65F11FB88FBD45804F6317971486A /* 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 = 2F0325724007B72AFA7EE715258DDB4F /* 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 = 161D5036C6E1E9D09858BC871CC4520E /* CancellationToken-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 79C687418816B577E9622D673D38A213 /* RCTRedBoxExtraDataViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = FDD46653AD02B0C0FB80E8DD6D577764 /* 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 = 2B8651236CC6FA4973221A47C3851521 /* 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 = 54105DAE291928E7EAE8CCB1DA55853B /* IOBufQueue.h */; settings = {ATTRIBUTES = (Project, ); }; }; 79E0AD4F4180F0958392212CA49E755F /* FIRInstallationsHTTPError.m in Sources */ = {isa = PBXBuildFile; fileRef = A7D831E76894EA3AC47480A98214CEF4 /* FIRInstallationsHTTPError.m */; }; - 79E4E9207266A429AE14B16726F40034 /* REAConcatNode.m in Sources */ = {isa = PBXBuildFile; fileRef = C6F1748B403E6E5764097A0DFD44854C /* REAConcatNode.m */; }; + 79E4E9207266A429AE14B16726F40034 /* REAConcatNode.m in Sources */ = {isa = PBXBuildFile; fileRef = D55A9BEA525ECC99503941E43AD92B6E /* REAConcatNode.m */; }; 7A0EB74832117D4542A2518BDAFAD9E4 /* FBCxxFollyDynamicConvert.h in Headers */ = {isa = PBXBuildFile; fileRef = BE84F26DA698B446FF77833AEF40D482 /* FBCxxFollyDynamicConvert.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7A161C90FAC2B1D71FB86C4B45CF885B /* RCTSafeAreaViewLocalData.h in Headers */ = {isa = PBXBuildFile; fileRef = CB369CFCAECE6DD313C9B476C0BE97F6 /* RCTSafeAreaViewLocalData.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7A245D980616242AD065C7FF0609C46A /* SDWebImageDownloaderDecryptor.h in Headers */ = {isa = PBXBuildFile; fileRef = 87F1EBB941B35CC24467F4DC20EF659B /* SDWebImageDownloaderDecryptor.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7A2C9312883FF8E666D535E21FE728A6 /* RCTModalManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 63BDBC2D3708BDA03D43E9A7001DDB9D /* RCTModalManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 7A161C90FAC2B1D71FB86C4B45CF885B /* RCTSafeAreaViewLocalData.h in Headers */ = {isa = PBXBuildFile; fileRef = 6F29E665FBF0798C3DD682B569A0FAC8 /* RCTSafeAreaViewLocalData.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7A2C9312883FF8E666D535E21FE728A6 /* RCTModalManager.m in Sources */ = {isa = PBXBuildFile; fileRef = A7141C293676555BF0CC52A4D0E555B8 /* 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 = 3E7064B173A25FBB44D8EF835F3D27C6 /* ScopeGuard.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7A4168BC23C43D1A9C747C037A13AD9F /* SDImageLoader.h in Headers */ = {isa = PBXBuildFile; fileRef = FBDBD188870AB892C69DFBC5EF887A83 /* SDImageLoader.h */; settings = {ATTRIBUTES = (Project, ); }; }; 7A5135422A29083A9AA96DBDDCE35D93 /* ScheduledRSocketResponder.h in Headers */ = {isa = PBXBuildFile; fileRef = 43BE5D34C125EE2F7DE250FDD2B61547 /* ScheduledRSocketResponder.h */; settings = {ATTRIBUTES = (Project, ); }; }; 7A78222EA8111E0D5019C2D5F945758A /* SKStateUpdateCPPWrapper.h in Headers */ = {isa = PBXBuildFile; fileRef = 1EFA54296C3CB620F743547DD8A9297B /* SKStateUpdateCPPWrapper.h */; settings = {ATTRIBUTES = (Project, ); }; }; 7A7834A2F72C293E7AC78093E1B67C6E /* CacheLocality.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2CB20BD04177E56CACE67BEA86275FAF /* 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 = FF7A46FBAAA619DA4120EFA07966DA0E /* ARTSurfaceViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7AD0DBA9E15F69157618464E1122115E /* REAValueNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 4E3187C6C948132009DB5543F9704A1D /* REAValueNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7AECC3D50F123A379D48712223BB9D53 /* RCTConvert+REATransition.h in Headers */ = {isa = PBXBuildFile; fileRef = F8198A7A6C2B189CB145A78371FA8AA4 /* RCTConvert+REATransition.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7B393E70142C67758A4E74068C761221 /* RCTComponentData.h in Headers */ = {isa = PBXBuildFile; fileRef = 040AA9DAA7862B475B2E5120A5EEF914 /* RCTComponentData.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7B3EA463A77078AD28811472889B32F6 /* RCTDecayAnimation.h in Headers */ = {isa = PBXBuildFile; fileRef = AC9588F1D3452A95C29AADEAE2654DAC /* RCTDecayAnimation.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7AB70076D594A0A054F93D465F06268A /* ARTSurfaceViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 893713BF698F9D6CD7BB26EA5372A990 /* ARTSurfaceViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7AD0DBA9E15F69157618464E1122115E /* REAValueNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 13793D27D9663EE2DFE9483A184CEDF5 /* REAValueNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7AECC3D50F123A379D48712223BB9D53 /* RCTConvert+REATransition.h in Headers */ = {isa = PBXBuildFile; fileRef = 05949F61F0C1FBC29880B1B893FB0545 /* RCTConvert+REATransition.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7B393E70142C67758A4E74068C761221 /* RCTComponentData.h in Headers */ = {isa = PBXBuildFile; fileRef = EC746D19C478B48C7F576E1613A76E3B /* RCTComponentData.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7B3EA463A77078AD28811472889B32F6 /* RCTDecayAnimation.h in Headers */ = {isa = PBXBuildFile; fileRef = 76DADF74CB705D187B99638538FC19E4 /* RCTDecayAnimation.h */; settings = {ATTRIBUTES = (Project, ); }; }; 7B5442DCEF1DE4B2012EAF97871F3036 /* SlowFingerprint.h in Headers */ = {isa = PBXBuildFile; fileRef = 2263EA0BAD7D92061F727D33ABCC9D99 /* SlowFingerprint.h */; settings = {ATTRIBUTES = (Project, ); }; }; 7B6F6115673E71640B69E46F867EA6F7 /* Promise.h in Headers */ = {isa = PBXBuildFile; fileRef = A03C51391E5DCC85F63CF0BB0B9149F5 /* Promise.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7B8176A0EC34E5A6E599C6B07EAE5D58 /* react-native-cameraroll-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 39CDDF3FC6F08B54E8F1E21067DD7181 /* react-native-cameraroll-dummy.m */; }; + 7B8176A0EC34E5A6E599C6B07EAE5D58 /* react-native-cameraroll-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = A036BF858B9C45767DF6C1955C9BE6A2 /* react-native-cameraroll-dummy.m */; }; 7B867BDB50330206036412351BCA3A62 /* CancellationToken.h in Headers */ = {isa = PBXBuildFile; fileRef = 0D15813CBCD75E6248C5684A453D7F43 /* CancellationToken.h */; settings = {ATTRIBUTES = (Project, ); }; }; 7B8F82EB921486F892E840153E3EA908 /* FBLPromisePrivate.h in Headers */ = {isa = PBXBuildFile; fileRef = 445E1C327EF4E1176AC0B5382418D5FF /* FBLPromisePrivate.h */; settings = {ATTRIBUTES = (Project, ); }; }; 7B9F31AF2CFDDAA733DC57561E908CB5 /* SharedPromise.h in Headers */ = {isa = PBXBuildFile; fileRef = CDFF1BCD3977B0B17731B5CBD3F6C5E1 /* SharedPromise.h */; settings = {ATTRIBUTES = (Project, ); }; }; 7BCC08DBECE42EBE69A54DBA30F6B549 /* MoveWrapper.h in Headers */ = {isa = PBXBuildFile; fileRef = D6B54BC0573F5256560D14D4C6B500A4 /* MoveWrapper.h */; settings = {ATTRIBUTES = (Project, ); }; }; 7BFF4D65ECEFB20ACBDD2BBC2D01CF8E /* diy-fp.h in Headers */ = {isa = PBXBuildFile; fileRef = 2A469D3C7285FE42D9BAFA2CB009D58A /* diy-fp.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7C0DB549FA227C02A2B1E6AED3A5B15F /* React-jsi-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = A1361018C52F1CE31D87BA70147752DA /* React-jsi-dummy.m */; }; + 7C0DB549FA227C02A2B1E6AED3A5B15F /* React-jsi-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 014A3DC181408BEE2897FF34FE2B8E46 /* React-jsi-dummy.m */; }; 7C1666EB58E8990F4CE28BC7508AE115 /* FlowableConcatOperators.h in Headers */ = {isa = PBXBuildFile; fileRef = 2D2F29E9273B0EF4FE4CC44B6380CDE5 /* FlowableConcatOperators.h */; settings = {ATTRIBUTES = (Project, ); }; }; 7C2AD3B775432BCF22E34431FC8F3EFE /* Assume.h in Headers */ = {isa = PBXBuildFile; fileRef = 999D010364128751CC3731B3050F4617 /* Assume.h */; settings = {ATTRIBUTES = (Project, ); }; }; 7C2D89A79A5CCE2428023B7CDC78BBBC /* YGLayout.m in Sources */ = {isa = PBXBuildFile; fileRef = 340CF216836AE1108FD997C37A4833D6 /* YGLayout.m */; }; 7C4DA271EB10F9E06486E8335DA8F4BD /* RSocketRequester.h in Headers */ = {isa = PBXBuildFile; fileRef = FC645CA549A188CF71F5B24852F61F73 /* RSocketRequester.h */; settings = {ATTRIBUTES = (Project, ); }; }; 7C4DBA9981D6328F8478F72A41244350 /* GDTCCTUploader.h in Headers */ = {isa = PBXBuildFile; fileRef = 5C2795AF2B789927A411944CEFE2E4A9 /* GDTCCTUploader.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7CA0E37B9E08810873F89B684905C1AA /* RCTModalHostView.m in Sources */ = {isa = PBXBuildFile; fileRef = F6D9633881EF5E6D8E4F89C510C6968F /* RCTModalHostView.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 7CCFEA95B919EC2A0D5B7A413D55859F /* EXAppleAuthenticationMappings.m in Sources */ = {isa = PBXBuildFile; fileRef = 62381861DE4FD973F0A21B9ACADB2F15 /* EXAppleAuthenticationMappings.m */; }; + 7CA0E37B9E08810873F89B684905C1AA /* RCTModalHostView.m in Sources */ = {isa = PBXBuildFile; fileRef = 57F76DEC4BA22FD0CB95C78A9D7F80A5 /* RCTModalHostView.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 7CCFEA95B919EC2A0D5B7A413D55859F /* EXAppleAuthenticationMappings.m in Sources */ = {isa = PBXBuildFile; fileRef = ED2936B1CF7F8C8B4285CFE09F1D1156 /* EXAppleAuthenticationMappings.m */; }; 7CD1703B557168ABA37AE8C1A0238E5D /* SKTapListenerImpl.h in Headers */ = {isa = PBXBuildFile; fileRef = 9EA4C48C4AD14F4DC80C97F8432ED85C /* SKTapListenerImpl.h */; settings = {ATTRIBUTES = (Project, ); }; }; 7CF643F3FC2F33A94A2EDC7F942752D3 /* ProtocolVersion.h in Headers */ = {isa = PBXBuildFile; fileRef = 401B0063B340C5EA59BE881F792B4CFA /* ProtocolVersion.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7CFEA0A6052051C538AD0B0F49158099 /* RNFirebaseInstanceId.h in Headers */ = {isa = PBXBuildFile; fileRef = BD4ECE5FE09353799C30DF0C2A06044D /* RNFirebaseInstanceId.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7CFF3687BC9FE4EC0FCE4DE43AC06B06 /* ARTGroup.h in Headers */ = {isa = PBXBuildFile; fileRef = 3EAC43B84F9547719B73E62784E57016 /* ARTGroup.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7D0FC1CD6DE38EB0602240ED6DA589E1 /* BSGOutOfMemoryWatchdog.m in Sources */ = {isa = PBXBuildFile; fileRef = 956FA2E8F3CB9BCD8C901DE0C9995E5F /* BSGOutOfMemoryWatchdog.m */; }; + 7CFEA0A6052051C538AD0B0F49158099 /* RNFirebaseInstanceId.h in Headers */ = {isa = PBXBuildFile; fileRef = 190A889778918EFAD08E3046A4E784F1 /* RNFirebaseInstanceId.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7CFF3687BC9FE4EC0FCE4DE43AC06B06 /* ARTGroup.h in Headers */ = {isa = PBXBuildFile; fileRef = 132512A9488538200230AE9B85864B1B /* ARTGroup.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7D0FC1CD6DE38EB0602240ED6DA589E1 /* BSGOutOfMemoryWatchdog.m in Sources */ = {isa = PBXBuildFile; fileRef = B87CB92FBA80CAC31896794FF4B9EFA4 /* BSGOutOfMemoryWatchdog.m */; }; 7D2A357365A1488E3468A15CC26CA428 /* RecordIO-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = C349907DDF23F683261B00548458E2B7 /* RecordIO-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; 7D32CB346A8A737EF45F15BB54F57AFD /* rescaler_utils.c in Sources */ = {isa = PBXBuildFile; fileRef = 77E53093581EE1B8FB2BC260A53B5387 /* rescaler_utils.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; 7D34A100ED6377A6117EC9F1CB8291AB /* Conv.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8C0BBC13610A1FC0E0DEFCC8F79316D3 /* 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 = 674EC145D39681FBE369F624154EC4BD /* 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 = 8374BECF9023BBF87F380775FA231776 /* UTF8String.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7D74C0F449D31806561D458B8955CC9C /* UMModuleRegistryConsumer.h in Headers */ = {isa = PBXBuildFile; fileRef = 3F96DF6D6BA0CF581CC46C988CF8122B /* UMModuleRegistryConsumer.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7DD76BAFD20760145E437E105C5CC283 /* RCTTextView.h in Headers */ = {isa = PBXBuildFile; fileRef = F8103D0961FA2AD9D3D3475D5F5BB421 /* RCTTextView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7DE0EFE6AB2647D5FACD08AF590EA581 /* UIColor+SDHexString.h in Headers */ = {isa = PBXBuildFile; fileRef = C8E57C46428DDC0632FE24C7BF610613 /* UIColor+SDHexString.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7DE5523222AE9F4374CE11C62EC4CE68 /* RCTHTTPRequestHandler.mm in Sources */ = {isa = PBXBuildFile; fileRef = B9F916A9CD68EB11468EC27D469A2F29 /* 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"; }; }; + 7D74C0F449D31806561D458B8955CC9C /* UMModuleRegistryConsumer.h in Headers */ = {isa = PBXBuildFile; fileRef = 60DF8A0824672D3D82D31FFA66C40175 /* UMModuleRegistryConsumer.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7DD76BAFD20760145E437E105C5CC283 /* RCTTextView.h in Headers */ = {isa = PBXBuildFile; fileRef = 8924ACA12AAF6E1269144BCD0D55495B /* RCTTextView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7DE5523222AE9F4374CE11C62EC4CE68 /* RCTHTTPRequestHandler.mm in Sources */ = {isa = PBXBuildFile; fileRef = 94B7035A8CBF7ED9FB4B21339F78291C /* 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 = 983D32ADFA0F12582AC7AEF1116188AA /* utils.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7E1CC457B4F2BD98BFA3743DD222329F /* BugsnagUser.h in Headers */ = {isa = PBXBuildFile; fileRef = 9916466C8411EAC9AAC96756257A4EBE /* BugsnagUser.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7E1CC457B4F2BD98BFA3743DD222329F /* BugsnagUser.h in Headers */ = {isa = PBXBuildFile; fileRef = DB32E526E1445FE7B012C65BD6376240 /* BugsnagUser.h */; settings = {ATTRIBUTES = (Project, ); }; }; 7E5F55DE3AC17BA4FA9D94CFBB23A89E /* FBLPromise+Retry.m in Sources */ = {isa = PBXBuildFile; fileRef = 2D8F07A79BD6CB0BEC7D9F73FF2AFA41 /* FBLPromise+Retry.m */; }; 7E6785216D5A27AA388421B8CB226AA1 /* enc_sse2.c in Sources */ = {isa = PBXBuildFile; fileRef = 12CD80C83BEB69E40871C0FC92B59C60 /* enc_sse2.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; 7E78EAD1C901860BE15DA026345506C1 /* GDTCCTCompressionHelper.m in Sources */ = {isa = PBXBuildFile; fileRef = A290C036AC4B6583D27A54150D182839 /* GDTCCTCompressionHelper.m */; }; - 7E796C7B6B601FA5CFA6D5154D7B17C1 /* REATransition.m in Sources */ = {isa = PBXBuildFile; fileRef = D406E3712049C5BE639C6990990E7FEF /* REATransition.m */; }; - 7E7E6C3DC5E177A0D7D6FEF93C8A428D /* RCTBaseTextViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = F31B10DD59C3075F35A0B2716A3B6DFB /* RCTBaseTextViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7E796C7B6B601FA5CFA6D5154D7B17C1 /* REATransition.m in Sources */ = {isa = PBXBuildFile; fileRef = 9C0A1BB3D5CF3B3B97C66C9A585B4776 /* REATransition.m */; }; + 7E7E6C3DC5E177A0D7D6FEF93C8A428D /* RCTBaseTextViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = B09E491F61B4BE049237FB2E5CDB0F56 /* RCTBaseTextViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; 7E83979670FE945E28099C8EED37EB44 /* GULSecureCoding.h in Headers */ = {isa = PBXBuildFile; fileRef = 9670ACB4681120F7A7AC533E13305D1C /* GULSecureCoding.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7E945B7F9DF2DF5E9B4FADE31A4378FA /* RCTPackagerConnection.h in Headers */ = {isa = PBXBuildFile; fileRef = C94E090C7AA8B2A12C7852C77FF192F2 /* RCTPackagerConnection.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7E99CC8D8F66D2BADE6A8D3A09292927 /* CoreModulesPlugins.h in Headers */ = {isa = PBXBuildFile; fileRef = A3EB9FAAF052112714D0C5942EFF1010 /* CoreModulesPlugins.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7EAB54DB31F8AD2AA68AFE3659D27E89 /* ARTShape.h in Headers */ = {isa = PBXBuildFile; fileRef = 43F70EEC92DC6532FEB97B8FB47495B5 /* ARTShape.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7E945B7F9DF2DF5E9B4FADE31A4378FA /* RCTPackagerConnection.h in Headers */ = {isa = PBXBuildFile; fileRef = 55AED8C8BD4D71E6494BD85030045A2B /* RCTPackagerConnection.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7E99CC8D8F66D2BADE6A8D3A09292927 /* CoreModulesPlugins.h in Headers */ = {isa = PBXBuildFile; fileRef = CD96AC991B3CE727227BB3420D9CD294 /* CoreModulesPlugins.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7EAB54DB31F8AD2AA68AFE3659D27E89 /* ARTShape.h in Headers */ = {isa = PBXBuildFile; fileRef = 1E21A9098DB891F78979916E9D051107 /* ARTShape.h */; settings = {ATTRIBUTES = (Project, ); }; }; 7EB2258E75A0CFAEB893EFE5CAB78DAE /* ConcurrentSkipList-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = E4EB2A16DD94B5CDABFF811E330D2FC8 /* ConcurrentSkipList-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; 7EC87131595CE695AC853CF457AC1477 /* GULSceneDelegateSwizzler_Private.h in Headers */ = {isa = PBXBuildFile; fileRef = DE643715043E724596EFD68C71AEC4C9 /* GULSceneDelegateSwizzler_Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7EC96E3BBC648DE9280DD2DFC1A85DC4 /* FBReactNativeSpec-generated.mm in Sources */ = {isa = PBXBuildFile; fileRef = 688D0ABC174C6A9DB209984CF35D97C7 /* 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 = 5EEBBF2B34ED0914BFAEA5DEDD08585C /* RecoverableError.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7EF07F5D301B2A8C165F1B15A8EFB2CF /* RAMBundleRegistry.h in Headers */ = {isa = PBXBuildFile; fileRef = 90B17DBDA0609D754ECFFCA38F7E5BDD /* RAMBundleRegistry.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7EC96E3BBC648DE9280DD2DFC1A85DC4 /* FBReactNativeSpec-generated.mm in Sources */ = {isa = PBXBuildFile; fileRef = 55EFC35BEA41B74034867F1151BAA50B /* 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 = 7686CE6070F2C405E2CFCFA2E6755B98 /* RecoverableError.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7EF07F5D301B2A8C165F1B15A8EFB2CF /* RAMBundleRegistry.h in Headers */ = {isa = PBXBuildFile; fileRef = 06C409AFE8FEA001361BA0AA4211B64D /* RAMBundleRegistry.h */; settings = {ATTRIBUTES = (Project, ); }; }; 7F26FFEED6990F7DE6542F85864BF163 /* AsymmetricMemoryBarrier.h in Headers */ = {isa = PBXBuildFile; fileRef = 558DC40DA7E7A651E3445C0FD7432C12 /* AsymmetricMemoryBarrier.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7F2FF85FC360BEEB533BB12DEC940E61 /* SDAnimatedImage.h in Headers */ = {isa = PBXBuildFile; fileRef = 16A19D3BA60E31A56CD6F95F12C0CD07 /* SDAnimatedImage.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7F587E5E97E38B24059D626558F1FAF8 /* REATransitionAnimation.m in Sources */ = {isa = PBXBuildFile; fileRef = B7931EC6A86AD2739772BCE8C2756096 /* REATransitionAnimation.m */; }; + 7F587E5E97E38B24059D626558F1FAF8 /* REATransitionAnimation.m in Sources */ = {isa = PBXBuildFile; fileRef = 0F8EBCA3681FC7E917B0E2DFAA50C6AD /* REATransitionAnimation.m */; }; 7F7C5C9EDDB5F08624115724D21E0DA0 /* FIRInstallationsIIDTokenStore.h in Headers */ = {isa = PBXBuildFile; fileRef = CAA4AADB1DAB0DCA0397F9D410A72638 /* FIRInstallationsIIDTokenStore.h */; settings = {ATTRIBUTES = (Project, ); }; }; 804663488445831432C6D6B04C2DAD1E /* ScheduledFrameProcessor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 23FB5D71EDB1CE3FC9227ACB4D929D62 /* 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 = 4B85BFB057BF705D4CEA4E38A4925154 /* JSCExecutorFactory.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 806A978726204E5605965748326D6627 /* JSCExecutorFactory.h in Headers */ = {isa = PBXBuildFile; fileRef = F7B387CEF9B7DC1323039E764E7290AC /* JSCExecutorFactory.h */; settings = {ATTRIBUTES = (Project, ); }; }; 8070AA7AE73618DDBA207E20AA25953C /* HardwareConcurrency.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 74F33A435A3CB7082ECC0809627A0A01 /* 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 = 24B4674663B10F5919335B67C8807E6E /* RCTAnimationType.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 80924E3636CD65EEFFA53B4C7F187373 /* RCTLinkingManager.h in Headers */ = {isa = PBXBuildFile; fileRef = AC0BB14BEB73A57DC8B734160F84C2FF /* RCTLinkingManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 80736038E8A66A4AF36DE75D3422AFE5 /* RCTAnimationType.h in Headers */ = {isa = PBXBuildFile; fileRef = DBE35416D83D1B94DB65A1759A98C57C /* RCTAnimationType.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 80924E3636CD65EEFFA53B4C7F187373 /* RCTLinkingManager.h in Headers */ = {isa = PBXBuildFile; fileRef = DE06A06FE5187FC2B9612FB0A7C41939 /* RCTLinkingManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; 80A07F3FC502FC926DED2369A414C9B3 /* Optional.h in Headers */ = {isa = PBXBuildFile; fileRef = 5490A4EF5B776FDB6A7B0FE97DF2CD88 /* Optional.h */; settings = {ATTRIBUTES = (Project, ); }; }; 80C026B0E39AC1F1703DF72A313A900B /* cost_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = C4D8C35912F68FCA0375BED2E0356D22 /* cost_enc.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; 80CDAEE930D06D1D2D6BCD00DEBE8108 /* StreamStateMachineBase.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3E102A439D6647D41F701D80646B9C05 /* 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 = E47E6EAC5683C505E27D3E812F06FF0A /* Utility.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 80D7D1F640862031BC32186EEA10A65E /* RCTConvert+Transform.m in Sources */ = {isa = PBXBuildFile; fileRef = 418F58C2275BDE975AAB7658A777A532 /* 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 = A38031CF428F811D52F5E8700628EF3E /* RCTImageLoaderProtocol.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 80D7D1F640862031BC32186EEA10A65E /* RCTConvert+Transform.m in Sources */ = {isa = PBXBuildFile; fileRef = A2587F7227146F6F4E2C2FEA2D245017 /* 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 = 2E53AA22994BC70E4C865791B17953DA /* RCTImageLoaderProtocol.h */; settings = {ATTRIBUTES = (Project, ); }; }; 81071E43B116BEE100693E96C1F9FE77 /* Replaceable.h in Headers */ = {isa = PBXBuildFile; fileRef = C4A8F789C199D44C73E456AC70D39B21 /* Replaceable.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 81308D5B41DDC98C59C1102B81D5EE4E /* MethodCall.h in Headers */ = {isa = PBXBuildFile; fileRef = 3DBF61F838B1097FD62D7591FEB07A99 /* MethodCall.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 81308D5B41DDC98C59C1102B81D5EE4E /* MethodCall.h in Headers */ = {isa = PBXBuildFile; fileRef = F879F8013DC94DDB6A651CD089574CE5 /* MethodCall.h */; settings = {ATTRIBUTES = (Project, ); }; }; 813E4CB01E4386CA919F5664F7E9D09E /* FKPortForwardingCommon.h in Headers */ = {isa = PBXBuildFile; fileRef = 07BCE99FA93A40DB52862B5658D00310 /* FKPortForwardingCommon.h */; settings = {ATTRIBUTES = (Project, ); }; }; 8145C77FDDC575D33B405FF7F421A215 /* lossless_enc_neon.c in Sources */ = {isa = PBXBuildFile; fileRef = 95863CF5020F6DBEE7687DD1B985A9DB /* lossless_enc_neon.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; 81561CA2BD7111B1F6C3D3EC67550617 /* StaticTracepoint-ELFx86.h in Headers */ = {isa = PBXBuildFile; fileRef = AD9B104B3FCAD3FE5DB05E65638A8A0D /* StaticTracepoint-ELFx86.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 815D8ABBA7979021C12E9297F0E5B795 /* RCTAnimatedNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 59A38D76ECF6D3A2CF7979FB90B2B2E4 /* 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 = 31A23BF4764F4A6B16A512C5E4A2B191 /* 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 = C6C22D1FEE3B00F2917C4C24433E46B6 /* FlipperConnection.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 817F80FAD6CAC88EA2EA12B86A15C086 /* UMLogManager.h in Headers */ = {isa = PBXBuildFile; fileRef = A70BC19B9CE70FBC2F3A251A3BCC2C56 /* UMLogManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 817F80FAD6CAC88EA2EA12B86A15C086 /* UMLogManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 3646527743CE2F902987E585B9697E4F /* UMLogManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; 818FFA62B7ED6D4F27667F6428290F80 /* FBLPromise+Race.h in Headers */ = {isa = PBXBuildFile; fileRef = 3CAD289A64AE0C76D0C35AD49B6B4AF8 /* FBLPromise+Race.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 819836474963B13AE93DBA37FF26CF91 /* RNCAsyncStorage-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 67919E9EA3B4D9F98265CA9D9D1E588E /* RNCAsyncStorage-dummy.m */; }; + 819836474963B13AE93DBA37FF26CF91 /* RNCAsyncStorage-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 4B7E3E56833975B9944ADCE7C22117DE /* RNCAsyncStorage-dummy.m */; }; 819F83D63B167874E2EE18604EFDA365 /* bignum.cc in Sources */ = {isa = PBXBuildFile; fileRef = 70F31B995F9074BFE8C5A64966B80CF4 /* bignum.cc */; settings = {COMPILER_FLAGS = "-Wno-unreachable-code"; }; }; 81CDD761CE987A83E4B9D0308E37CBBC /* F14Set-fwd.h in Headers */ = {isa = PBXBuildFile; fileRef = D0494757B3C1C765F02ABA217A56E0DF /* F14Set-fwd.h */; settings = {ATTRIBUTES = (Project, ); }; }; 81CE0E950350389881B94CF765F8EA83 /* cct.nanopb.h in Headers */ = {isa = PBXBuildFile; fileRef = B3ECD8473F4F6935F6753CC01AFD9B20 /* cct.nanopb.h */; settings = {ATTRIBUTES = (Project, ); }; }; 81DC789630EA64FE7CCB43BD80426A0C /* SoftRealTimeExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = 0D525395ABBADE7600560BDA60B7A6FB /* SoftRealTimeExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; 81E1D7AABE1CC4754D5E22DBE883CA12 /* TOCroppedImageAttributes.h in Headers */ = {isa = PBXBuildFile; fileRef = F121CFABC992758DF1463276E3F11DD9 /* TOCroppedImageAttributes.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 81F1D8104C6D7CE7780E40807E43438B /* REABlockNode.m in Sources */ = {isa = PBXBuildFile; fileRef = CDD98338FF52785F209DFBB76641F9F9 /* REABlockNode.m */; }; + 81F1D8104C6D7CE7780E40807E43438B /* REABlockNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 68A7667113C27C43A8AE50CDE437706A /* REABlockNode.m */; }; 81FC60A335BDB739D75D24ED623A8264 /* enc.c in Sources */ = {isa = PBXBuildFile; fileRef = 1ECBA4FA2EE40C8C14FC14A12567D8FE /* enc.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 8210666640C5B1AF7DAB2FBA2292A1D1 /* ReactNativeShareExtension.m in Sources */ = {isa = PBXBuildFile; fileRef = 54D49797DB034BD9AFCF33501341C011 /* ReactNativeShareExtension.m */; }; + 8210666640C5B1AF7DAB2FBA2292A1D1 /* ReactNativeShareExtension.m in Sources */ = {isa = PBXBuildFile; fileRef = 0DB7857045518792C326351B1DBEB75D /* ReactNativeShareExtension.m */; }; 82231D09FD382B02393BB0898E36EE4C /* RelaxedConcurrentPriorityQueue.h in Headers */ = {isa = PBXBuildFile; fileRef = AE369C5E433C27D42FD6CD3C3066D454 /* RelaxedConcurrentPriorityQueue.h */; settings = {ATTRIBUTES = (Project, ); }; }; 823F08603B32859CE18D9E3D37357A54 /* SocketFileDescriptorMap.h in Headers */ = {isa = PBXBuildFile; fileRef = FF91004CA8D43870E149DF688938A87C /* SocketFileDescriptorMap.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 824AAEAA18CFB3DE727999EC5D6C961A /* JSIDynamic.h in Headers */ = {isa = PBXBuildFile; fileRef = 5A86E589764F933047B0A925C146591B /* JSIDynamic.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 824AAEAA18CFB3DE727999EC5D6C961A /* JSIDynamic.h in Headers */ = {isa = PBXBuildFile; fileRef = C3E5869E1588794267E6340A86F54539 /* JSIDynamic.h */; settings = {ATTRIBUTES = (Project, ); }; }; 825A977B244746D1AB62EE93F5ABD142 /* GDTCOREvent+NetworkConnectionInfo.m in Sources */ = {isa = PBXBuildFile; fileRef = DC8DDA75D168B91F80255E52FE9015C3 /* GDTCOREvent+NetworkConnectionInfo.m */; }; - 828546C2D849220CBE4FC2C7CDAA4240 /* NSTextStorage+FontScaling.m in Sources */ = {isa = PBXBuildFile; fileRef = 91A3294E0CAE80277F6BA9F07BE963ED /* NSTextStorage+FontScaling.m */; }; + 828546C2D849220CBE4FC2C7CDAA4240 /* NSTextStorage+FontScaling.m in Sources */ = {isa = PBXBuildFile; fileRef = 33B6127CA909C10B3039F6A36F103041 /* NSTextStorage+FontScaling.m */; }; 829168B41AB0527695E68C1D5380C266 /* JSONSchema.h in Headers */ = {isa = PBXBuildFile; fileRef = 7DA0A76583DF71D03B06B268C8E1BD8E /* JSONSchema.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 829DD372488FC133D2BFEC4D238098D3 /* RNFirebaseStorage.h in Headers */ = {isa = PBXBuildFile; fileRef = C229DD1D2670A9D83AB53E37B472BE4C /* RNFirebaseStorage.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 82B3ACF24FBA461B54C393C8E8057A62 /* UMErrorCodes.m in Sources */ = {isa = PBXBuildFile; fileRef = 49F37D41ACDCF417C3F20711F4D42ECC /* UMErrorCodes.m */; }; + 829DD372488FC133D2BFEC4D238098D3 /* RNFirebaseStorage.h in Headers */ = {isa = PBXBuildFile; fileRef = CEB0D77A507A7BC67665B0AE8F76407E /* RNFirebaseStorage.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 82B3ACF24FBA461B54C393C8E8057A62 /* UMErrorCodes.m in Sources */ = {isa = PBXBuildFile; fileRef = 8BC50CC11FB102E9AF6A708BB3EEDCC6 /* UMErrorCodes.m */; }; 82BC85853B48599CF7034D4978C66459 /* SKNodeDescriptor.h in Headers */ = {isa = PBXBuildFile; fileRef = 3DA962609E253ADFE3AD2A762D7D940C /* SKNodeDescriptor.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 82BE17CA11C38578EE02F5D438CA1EFB /* EXFileSystemAssetLibraryHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = 9AE3E53F317299930F0492639EF01984 /* EXFileSystemAssetLibraryHandler.m */; }; + 82BE17CA11C38578EE02F5D438CA1EFB /* EXFileSystemAssetLibraryHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = 1D84C39AB078DE44B1581D23560B8248 /* EXFileSystemAssetLibraryHandler.m */; }; 82E00AB632629A007250F0155CA70AF1 /* FIROptionsInternal.h in Headers */ = {isa = PBXBuildFile; fileRef = 292BCA39737346379D2062A64AAFD7FE /* FIROptionsInternal.h */; settings = {ATTRIBUTES = (Project, ); }; }; 82FAD75153594152D13166FA9C918B07 /* utils.h in Headers */ = {isa = PBXBuildFile; fileRef = 7D2A072D667BE41643EDC97BAC2D32FF /* utils.h */; settings = {ATTRIBUTES = (Project, ); }; }; 83136AA76652C7045CA261184E60A544 /* DynamicParser-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 8D4C87CD983A96E736323386CF3F2224 /* DynamicParser-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8323A813DA9029D2C9EB445A8FCD3E89 /* RCTImageShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = CE6120ADA01F94B73B9EC7AB04DE0BE4 /* RCTImageShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8344C1B23A7DCE5793D982D670EDED41 /* BSG_KSSignalInfo.c in Sources */ = {isa = PBXBuildFile; fileRef = 1EC15084DB3363D73309F2FFC704EC04 /* BSG_KSSignalInfo.c */; }; + 8323A813DA9029D2C9EB445A8FCD3E89 /* RCTImageShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = 6D1EA97BF3175816CC0EBC6D033B4D09 /* RCTImageShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8344C1B23A7DCE5793D982D670EDED41 /* BSG_KSSignalInfo.c in Sources */ = {isa = PBXBuildFile; fileRef = 3128089847F295173218573240CA62E0 /* BSG_KSSignalInfo.c */; }; 83473148D1A03C53409742D811D3583F /* QueuedImmediateExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = D6EEC3EE71DE1B866B0F12A7B9BA3943 /* QueuedImmediateExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; 8355F5AC1AF62C88E8E0CC029ED7862C /* color_cache_utils.c in Sources */ = {isa = PBXBuildFile; fileRef = 940927AF80BB56C30EFE4B1F381620E4 /* color_cache_utils.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 8361085C392B248183522DFE3B2CE5DD /* JSBundleType.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 6E498CD5CA0351C79B920D298531B9D9 /* 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 = 475E65892171D3E2755B509923A9E710 /* 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 = B9EA65F8D084036C2753D98F4C662779 /* Asm.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 837C128041DAC467276F9B865D3DCA1C /* RCTUITextView.h in Headers */ = {isa = PBXBuildFile; fileRef = F86499206B3CCEFEDBF06F69F36D7B91 /* RCTUITextView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 837C128041DAC467276F9B865D3DCA1C /* RCTUITextView.h in Headers */ = {isa = PBXBuildFile; fileRef = 156869A8B62C20E749C3CE92925A920D /* RCTUITextView.h */; settings = {ATTRIBUTES = (Project, ); }; }; 8393DC193D20A5423A5F36D502C399CA /* FBLPromise+Then.m in Sources */ = {isa = PBXBuildFile; fileRef = 4EF5DD97AACA1860EB375EF5D474B603 /* FBLPromise+Then.m */; }; - 83D981D69D42BD8850D6FE8DD2D18CB8 /* RNCSafeAreaProvider.m in Sources */ = {isa = PBXBuildFile; fileRef = B3648D2D15D59DC311C3D5148E86B72A /* RNCSafeAreaProvider.m */; }; + 83D981D69D42BD8850D6FE8DD2D18CB8 /* RNCSafeAreaProvider.m in Sources */ = {isa = PBXBuildFile; fileRef = 491897499B0006206DACF8971EFC2E9A /* RNCSafeAreaProvider.m */; }; 841BEEABB39AFCE2F1A9B9A2F800B860 /* FLEXUtility.h in Headers */ = {isa = PBXBuildFile; fileRef = F6F1532B40383A3DB8C604FF6B96655F /* FLEXUtility.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8439EA0A5BDF6C5C7BD5988ECC8ED470 /* ARTPattern.m in Sources */ = {isa = PBXBuildFile; fileRef = 5AE8FFCD5A5113CC66524CC9F466CEB7 /* ARTPattern.m */; }; - 844702018C1EEA417EC5B7EC5010D8D8 /* BSG_KSCrashSentry_MachException.h in Headers */ = {isa = PBXBuildFile; fileRef = A3A2A3F1F5208C1B538ADD5DFDB74382 /* BSG_KSCrashSentry_MachException.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 84569A9460D3479F61EACCA135F8995A /* BugsnagLogger.h in Headers */ = {isa = PBXBuildFile; fileRef = 6AC3F7E4DAF9A0BCDF52264CFFE374A8 /* BugsnagLogger.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8463BA54CDE10E89F565BD48AF5D85B4 /* SDImageIOAnimatedCoder.m in Sources */ = {isa = PBXBuildFile; fileRef = 9AEE6076F5BF5AECC6C41B7DD7149A05 /* SDImageIOAnimatedCoder.m */; }; - 846B52FFC3BDD2D2568D127BDEE7FC9B /* BugsnagCrashReport.m in Sources */ = {isa = PBXBuildFile; fileRef = 047E3082BDAAFDB754C2F948E1FB9C07 /* BugsnagCrashReport.m */; }; - 846D662EF516396FA7314B3E2E1BD174 /* RCTObjcExecutor.mm in Sources */ = {isa = PBXBuildFile; fileRef = F52F69A8A78568067E27D7CA98BE4C69 /* RCTObjcExecutor.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 8439EA0A5BDF6C5C7BD5988ECC8ED470 /* ARTPattern.m in Sources */ = {isa = PBXBuildFile; fileRef = 712F53208F9FE0886B389CD72E923EFE /* ARTPattern.m */; }; + 844702018C1EEA417EC5B7EC5010D8D8 /* BSG_KSCrashSentry_MachException.h in Headers */ = {isa = PBXBuildFile; fileRef = 0D23C8446A63613DDE65863DB9A8961D /* BSG_KSCrashSentry_MachException.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 84569A9460D3479F61EACCA135F8995A /* BugsnagLogger.h in Headers */ = {isa = PBXBuildFile; fileRef = 46C31A2BA6F70DAA95C855900A0815DD /* BugsnagLogger.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8463BA54CDE10E89F565BD48AF5D85B4 /* SDImageIOAnimatedCoder.m in Sources */ = {isa = PBXBuildFile; fileRef = B9182C7B43C9EA92F371808DB25BE9FC /* SDImageIOAnimatedCoder.m */; }; + 846B52FFC3BDD2D2568D127BDEE7FC9B /* BugsnagCrashReport.m in Sources */ = {isa = PBXBuildFile; fileRef = 13AB55238B4874EF9DC2114874CF65B3 /* BugsnagCrashReport.m */; }; + 846D662EF516396FA7314B3E2E1BD174 /* RCTObjcExecutor.mm in Sources */ = {isa = PBXBuildFile; fileRef = E0D3D9D8A043C05C3D18F9A7A572F996 /* 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 = 858E89073FD01DA1518836643725F960 /* FIRInstallationsIIDTokenStore.m */; }; 84A7473B9A205B904527095ED5D3DA74 /* RequestResponseThroughputTcp.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 79402E701A69C8DF3E730013CE270EE8 /* 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 = ABAB5A64E39FD3A82EEDA09B578377C8 /* SDImageCachesManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; 85114B4F37CDF58D3E92F188AE212B93 /* Pods-RocketChatRN-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 6EDDB0BF77E0162298A4164C90A4F5EB /* Pods-RocketChatRN-dummy.m */; }; 85139AAA0A570EBB566C5015CE3C2EA5 /* HeterogeneousAccess-fwd.h in Headers */ = {isa = PBXBuildFile; fileRef = 19CA29DD3AFD6634378EC428704EAC63 /* HeterogeneousAccess-fwd.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8517F23398DC828BCCD67BA41DE24E38 /* RCTVirtualTextViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 3DC83B2F3CD5791A8779CE94324B6B47 /* RCTVirtualTextViewManager.m */; }; + 8517F23398DC828BCCD67BA41DE24E38 /* RCTVirtualTextViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = C0000B38299D5F22C8F43DF382FF1EDD /* RCTVirtualTextViewManager.m */; }; 854011E8B4665CCA7D3CE510F229C6C0 /* AtomicStruct.h in Headers */ = {isa = PBXBuildFile; fileRef = 53F8CC267E4F45BDC0AE8A7DF8F1875A /* AtomicStruct.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 85455233A524A6D36F12FB9D3A3E6129 /* RNFirebaseDatabase.m in Sources */ = {isa = PBXBuildFile; fileRef = FE96DC8BB3D1E56398BB5DC38C611909 /* RNFirebaseDatabase.m */; }; + 85455233A524A6D36F12FB9D3A3E6129 /* RNFirebaseDatabase.m in Sources */ = {isa = PBXBuildFile; fileRef = 6EDC66F482CB24D6058DE1A85DDB886A /* RNFirebaseDatabase.m */; }; 8547302CC4693C69F676D0FAF738DF38 /* cost_enc.h in Headers */ = {isa = PBXBuildFile; fileRef = 3EE1D577BC7E2701CD1769E1578C3F2E /* cost_enc.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8562DF2BC796D7D23CE5DD44BC407C01 /* RNNotificationCenterListener.m in Sources */ = {isa = PBXBuildFile; fileRef = 3C705C1315A99F2E22859FD59954D434 /* RNNotificationCenterListener.m */; }; - 858BDD4EA403C4818D6DCBC21F38DC41 /* DispatchMessageQueueThread.h in Headers */ = {isa = PBXBuildFile; fileRef = B61566486D10B9EFC3DC1FD535454F71 /* DispatchMessageQueueThread.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8562DF2BC796D7D23CE5DD44BC407C01 /* RNNotificationCenterListener.m in Sources */ = {isa = PBXBuildFile; fileRef = B9FB9C8FD441AEF1F1C7A7B31A94754E /* RNNotificationCenterListener.m */; }; + 858BDD4EA403C4818D6DCBC21F38DC41 /* DispatchMessageQueueThread.h in Headers */ = {isa = PBXBuildFile; fileRef = C3ADB50DAA4E351BC5620570DD152692 /* DispatchMessageQueueThread.h */; settings = {ATTRIBUTES = (Project, ); }; }; 859CF4DDB4DF8D8BE39DB5AB5FE349B9 /* FutureDAG.h in Headers */ = {isa = PBXBuildFile; fileRef = 0BC9EB36FA9896389542A9FC6195B19B /* FutureDAG.h */; settings = {ATTRIBUTES = (Project, ); }; }; 85C1168B650CAACD421980E5F1416548 /* FIRInstallationsLogger.h in Headers */ = {isa = PBXBuildFile; fileRef = 2C6742C7BEBBD69BBBB16472408F518B /* FIRInstallationsLogger.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 85D1E23F3C30060DC22262360CA05CD0 /* BSG_KSBacktrace.h in Headers */ = {isa = PBXBuildFile; fileRef = 912327CD24447113DCBE5E0204334FC2 /* BSG_KSBacktrace.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 85D1E23F3C30060DC22262360CA05CD0 /* BSG_KSBacktrace.h in Headers */ = {isa = PBXBuildFile; fileRef = 3B5F8EF60EF2A23C717DF05557342770 /* BSG_KSBacktrace.h */; settings = {ATTRIBUTES = (Project, ); }; }; 85EF72DD40BCFC53D8722FBF1315AA1C /* Payload.h in Headers */ = {isa = PBXBuildFile; fileRef = 5D032924FB29978E9F59D492EF7813E6 /* Payload.h */; settings = {ATTRIBUTES = (Project, ); }; }; 860728470F4EBC05ED4ED9EED2FACA48 /* FIRInstallationsErrorUtil.h in Headers */ = {isa = PBXBuildFile; fileRef = 400DBB6ED3B273ABFFDB48A492E31FCF /* FIRInstallationsErrorUtil.h */; settings = {ATTRIBUTES = (Project, ); }; }; 86413B6185C68AF825C32E586B8BF4B0 /* Phase.h in Headers */ = {isa = PBXBuildFile; fileRef = DCA8E435EF07B58FECF3BF2DE95D69B6 /* Phase.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 86558F39467D99DD75427289BF7D6D19 /* UIView+WebCacheOperation.m in Sources */ = {isa = PBXBuildFile; fileRef = 14678CD44F55B1A64B7CCF96F5E94126 /* UIView+WebCacheOperation.m */; }; - 866019462A8D0A9F1B3CE6E15B47294D /* RCTRedBox.mm in Sources */ = {isa = PBXBuildFile; fileRef = A657A818C7D66B71AF1E3C4B05C4962C /* 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 = 0553A531F07D4AE16DD483083B42D7A9 /* NativeModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 86558F39467D99DD75427289BF7D6D19 /* UIView+WebCacheOperation.m in Sources */ = {isa = PBXBuildFile; fileRef = D69C504BE239B2F7184FE45A1300E08C /* UIView+WebCacheOperation.m */; }; + 866019462A8D0A9F1B3CE6E15B47294D /* RCTRedBox.mm in Sources */ = {isa = PBXBuildFile; fileRef = 8A96509ECA1FBAF6C8E58DEDF54D065C /* 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 = BEDA20293B86A27BA5072659F10607FF /* NativeModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; 8712A013B77EFFFE014DA5E077E5AD8F /* PTProtocol.h in Headers */ = {isa = PBXBuildFile; fileRef = 3A9797F59D2A40E6912254EAD970F4F7 /* PTProtocol.h */; settings = {ATTRIBUTES = (Project, ); }; }; 8771DE0E347F59255E887573DD7F53F8 /* SKMacros.h in Headers */ = {isa = PBXBuildFile; fileRef = 5A5DEB2B58509094B3E9E367677E5F22 /* SKMacros.h */; settings = {ATTRIBUTES = (Project, ); }; }; 87726AEFF151E25755DBEEB384C7E2A4 /* UnboundedBlockingQueue.h in Headers */ = {isa = PBXBuildFile; fileRef = D80B707F80D383336E128EF112233BA6 /* UnboundedBlockingQueue.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 87768AD792BACA0E657CEA3829636F66 /* RNFirebaseFunctions.m in Sources */ = {isa = PBXBuildFile; fileRef = 852FE4D4C630CDD04A0F67358C135738 /* RNFirebaseFunctions.m */; }; - 87873D084F83703DE3C009D5A2A0C043 /* UMSingletonModule.m in Sources */ = {isa = PBXBuildFile; fileRef = E970F038C92A074F5CDFDFED75311D5C /* UMSingletonModule.m */; }; + 87768AD792BACA0E657CEA3829636F66 /* RNFirebaseFunctions.m in Sources */ = {isa = PBXBuildFile; fileRef = 25299E74E57A0AC8BAFDBED3EBCA680F /* RNFirebaseFunctions.m */; }; + 87873D084F83703DE3C009D5A2A0C043 /* UMSingletonModule.m in Sources */ = {isa = PBXBuildFile; fileRef = 5D44C7DE7261D40B856C623576AFF1E9 /* UMSingletonModule.m */; }; 8799A7E7AF7D5000F6488DC84D14E692 /* rescaler_neon.c in Sources */ = {isa = PBXBuildFile; fileRef = 822D4EB1CE679526E7E91CB7FB31A3CD /* rescaler_neon.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; 879A2F12063F7F3EC23F4BB0AC979758 /* FBLPromise.m in Sources */ = {isa = PBXBuildFile; fileRef = 152014191CA2BD50E3C9D7E4E22D9CFD /* FBLPromise.m */; }; 87A323D292E1CDF36C181E54CB70C413 /* QuotientMultiSet-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 27487DDA42910A33F1B7210A7350CA6A /* QuotientMultiSet-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; 87BE04CBC078520DB22E157E03434C37 /* SKHiddenWindow.m in Sources */ = {isa = PBXBuildFile; fileRef = 5B4516089BB11FCA44421395E3EC6C69 /* 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 = E1A6DDD38250927F90533C1838189EAE /* BSG_KSCrashSentry_NSException.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 87C72733BA76222A5C56FA47429534E5 /* RCTRefreshControlManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 91C9001DC2995C2676B8F6DFFC44F09A /* 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 = 04368F41390E638813991BAD65E58B7B /* RCTEventDispatcher.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 87CB66C902F11F7A98F8495131A29A63 /* RNSScreenStackHeaderConfig.m in Sources */ = {isa = PBXBuildFile; fileRef = 2905F5558875923B7AF4A82D78A04C68 /* RNSScreenStackHeaderConfig.m */; }; - 87D1C8D0E94309AE54E7909240E8B83A /* FFFastImageViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = C42295A853EA3272C33CC1007B5EA749 /* FFFastImageViewManager.m */; }; - 87D604BE8872A45E434BCCBA813103F4 /* UMUserNotificationCenterProxyInterface.h in Headers */ = {isa = PBXBuildFile; fileRef = AE8ED7807A76E21DB0AB58FBD57A8F9F /* UMUserNotificationCenterProxyInterface.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 87EBEDB6463EBB931CB123175B4DB568 /* ARTRenderable.m in Sources */ = {isa = PBXBuildFile; fileRef = BCC9E8E36491D208809DBABC0A43343D /* ARTRenderable.m */; }; - 885EA3B1BA03C6F70CD3DD6FF81A6E97 /* UIImage+MemoryCacheCost.m in Sources */ = {isa = PBXBuildFile; fileRef = 1571AEAE2EF0732E6D6067B2390563D0 /* UIImage+MemoryCacheCost.m */; }; + 87C6E86E0A3326D7EF29AC082930360B /* BSG_KSCrashSentry_NSException.h in Headers */ = {isa = PBXBuildFile; fileRef = 47DF6A5E8E22CBC99575166076BBFF9C /* BSG_KSCrashSentry_NSException.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 87C72733BA76222A5C56FA47429534E5 /* RCTRefreshControlManager.m in Sources */ = {isa = PBXBuildFile; fileRef = D6C8C121D48F259FEB693D05B24AF852 /* 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 = F55ECEF025F79E3E7E6BAF4979AC34FE /* RCTEventDispatcher.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 87CB66C902F11F7A98F8495131A29A63 /* RNSScreenStackHeaderConfig.m in Sources */ = {isa = PBXBuildFile; fileRef = 0D677C7EB0FF4DC9417331352B0AD105 /* RNSScreenStackHeaderConfig.m */; }; + 87D1C8D0E94309AE54E7909240E8B83A /* FFFastImageViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 4919EAAE3570A94883BB9DFCC0A8654D /* FFFastImageViewManager.m */; }; + 87D604BE8872A45E434BCCBA813103F4 /* UMUserNotificationCenterProxyInterface.h in Headers */ = {isa = PBXBuildFile; fileRef = 232D6AF246FE0EF63B77AA187D35FF44 /* UMUserNotificationCenterProxyInterface.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 87E25D38EAFF2A33FA859D22936433C0 /* SDImageCacheDefine.h in Headers */ = {isa = PBXBuildFile; fileRef = F167CFFD284B0FFF442ACF950541A2E5 /* SDImageCacheDefine.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 87EBEDB6463EBB931CB123175B4DB568 /* ARTRenderable.m in Sources */ = {isa = PBXBuildFile; fileRef = A81BF880660132943B1E49E251DD074A /* ARTRenderable.m */; }; + 885EA3B1BA03C6F70CD3DD6FF81A6E97 /* UIImage+MemoryCacheCost.m in Sources */ = {isa = PBXBuildFile; fileRef = 679F1C294EE4D54382BF793EEED1ABFA /* UIImage+MemoryCacheCost.m */; }; 88601CA34DF66C7A443806B033497F04 /* StringKeyedUnorderedMap.h in Headers */ = {isa = PBXBuildFile; fileRef = FD21676449E7EEF83007E2106E0355B9 /* StringKeyedUnorderedMap.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 887C97BFF8FE6AAB23F2B7A4F365901E /* react-native-safe-area-context-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 7FB0C95DF7E2E303FFFE3017E48AF553 /* react-native-safe-area-context-dummy.m */; }; + 887C97BFF8FE6AAB23F2B7A4F365901E /* react-native-safe-area-context-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = B7A2911494A89522CAD7B3C4E310BFE5 /* react-native-safe-area-context-dummy.m */; }; 887DC1F1F3429DD83EDC126591F3B6A8 /* OpenSSLCertUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = E7DE151FDBF6BE2826DC87D2617C7B5D /* OpenSSLCertUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; 88A7546CD0CC5EF28061417BEF92362D /* filter_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = 2BBD251041467488C62CAACF77FC7EE2 /* filter_enc.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; 88E0E54C89590D83D5BFA15F1331204B /* HazptrObj.h in Headers */ = {isa = PBXBuildFile; fileRef = 8A4E7BBCA6F5507E82249086A6ED9455 /* HazptrObj.h */; settings = {ATTRIBUTES = (Project, ); }; }; @@ -1808,366 +1815,363 @@ 892372828F1C3FB28FAE3D384E5C32F4 /* FrameHeader.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B873736FEBF203C4811DE9024673CA18 /* 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 = 10E27EE0A11AA474165B731B0190E8C4 /* CertificateUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; 894C64E73E77B4F3B56C3D49CA9C59F2 /* Random.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2FE243CEBF31283F9B48FD56D86CE803 /* 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 = 3763AB04A89529750855C4C3533760D9 /* BugsnagHandledState.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8962AB8A9C9B86593534D61FD3B4915F /* RCTFileRequestHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 8006576A15E920884603E8789CAB9F3C /* RCTFileRequestHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 896B6ABB97CB90770CC46B3066F4C004 /* EXAppleAuthenticationRequest.m in Sources */ = {isa = PBXBuildFile; fileRef = 4831228447E518D4B8D8BFB7333FFE97 /* EXAppleAuthenticationRequest.m */; }; + 8958D59AAD95E09EE3548561B75CAA72 /* BugsnagHandledState.h in Headers */ = {isa = PBXBuildFile; fileRef = 9442B35307D98C612F326A2F3D6F5A1A /* BugsnagHandledState.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8962AB8A9C9B86593534D61FD3B4915F /* RCTFileRequestHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = B3BFAA648A1F49C682608DAE064C7EE4 /* RCTFileRequestHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 896B6ABB97CB90770CC46B3066F4C004 /* EXAppleAuthenticationRequest.m in Sources */ = {isa = PBXBuildFile; fileRef = 10B05F8A962EFF81475D49929A49373A /* EXAppleAuthenticationRequest.m */; }; 89A1C44FF67BFE028336E28D48080B42 /* Parallel-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 18774485D964BA179328A4121E1BACED /* Parallel-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; 89C3A612CD4ADB81C44209858A136F74 /* cost_sse2.c in Sources */ = {isa = PBXBuildFile; fileRef = 9D122ABD895F3D0DD67C634D2BC3AC88 /* cost_sse2.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; + 89FF6B6C4AA4FDAB376D7373078CBA26 /* SDAnimatedImageView.h in Headers */ = {isa = PBXBuildFile; fileRef = 792BF75F2B73DBDBCA89D430142AA25A /* SDAnimatedImageView.h */; settings = {ATTRIBUTES = (Project, ); }; }; 8A1373FBD88F35501478391992C5376C /* huffman_utils.c in Sources */ = {isa = PBXBuildFile; fileRef = 8D01AA4AAB14EE732D7B5D7F545D5AED /* huffman_utils.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; 8A16248DE23D916CBBBFA8DF54392450 /* Observables.h in Headers */ = {isa = PBXBuildFile; fileRef = 930B64E9A37A12B0B46B8A195AE76A2C /* Observables.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8A5B3D6D40DFFDC77EFB3CC4B479600E /* RCTTextSelection.m in Sources */ = {isa = PBXBuildFile; fileRef = 98E83548474CF2527CD74F317FE6A0D3 /* RCTTextSelection.m */; }; - 8A6AB74E5D979D543445E1AC15D30957 /* EXKeepAwake-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = E9102DC33F063D111268F43954462C5F /* EXKeepAwake-dummy.m */; }; - 8A7203DC25E6E40E7ED95BD4ECE3AD5C /* jsi.h in Headers */ = {isa = PBXBuildFile; fileRef = 34D5C6524B5EECBE4308D60A0177C1B9 /* jsi.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8A5B3D6D40DFFDC77EFB3CC4B479600E /* RCTTextSelection.m in Sources */ = {isa = PBXBuildFile; fileRef = AF40E8187338935662AB479227DD9BA0 /* RCTTextSelection.m */; }; + 8A6AB74E5D979D543445E1AC15D30957 /* EXKeepAwake-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = A7521A5B7DF154770C60A3652B33D089 /* EXKeepAwake-dummy.m */; }; + 8A7203DC25E6E40E7ED95BD4ECE3AD5C /* jsi.h in Headers */ = {isa = PBXBuildFile; fileRef = 699B7632AC09FCB0701F60DB2E4C7967 /* jsi.h */; settings = {ATTRIBUTES = (Project, ); }; }; 8A77D5E1942F02C90AEEF3957255C924 /* FlipperResponder.h in Headers */ = {isa = PBXBuildFile; fileRef = 81113C05310AA610F499A9D3D80DCDF2 /* FlipperResponder.h */; settings = {ATTRIBUTES = (Project, ); }; }; 8A77DDEE62494C3D749EBBAB907565D1 /* FIRInstallationsErrorUtil.m in Sources */ = {isa = PBXBuildFile; fileRef = 2407279E734F1C65AA5D6D485EB3F4EE /* FIRInstallationsErrorUtil.m */; }; - 8A8390D6CD5D28CB550DA998FDAAF223 /* RCTBridge.m in Sources */ = {isa = PBXBuildFile; fileRef = ABF3E02DF86394EF28191B22D5FB3F12 /* 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 = ECE9D044A0D0A72C4ABBDE19C8C41E14 /* RNPanHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8AAE349C589934222F73539BBD48FA2F /* JSCExecutorFactory.mm in Sources */ = {isa = PBXBuildFile; fileRef = 093068FC0E267C91415EDE13698C369A /* 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 = 137FE58F1CDB2EC5FF9EF933090BAFAE /* 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 = BEDE4FBD021F20A454182E3ECE0E08DD /* RNPanHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8AAE349C589934222F73539BBD48FA2F /* JSCExecutorFactory.mm in Sources */ = {isa = PBXBuildFile; fileRef = 4488D4C64E5B8944241131213438A309 /* 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 = 3957078C9B055BE3CAE3EC2D92A5C3A2 /* tree_enc.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 8ACC17FDF17D071CB95330A1E1850858 /* BugsnagSessionTrackingPayload.m in Sources */ = {isa = PBXBuildFile; fileRef = 25BDBD014796225914C8BE9790EEAF48 /* BugsnagSessionTrackingPayload.m */; }; - 8ADC78D6C0CCBE0336F0FE0F53340F1A /* YGEnums.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 6A32CB6BF5B614879CA8331936310E6A /* 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 = ADF426CEFF5DA0F624BC223B7779A349 /* BugsnagSessionTrackingPayload.m */; }; + 8ADC78D6C0CCBE0336F0FE0F53340F1A /* YGEnums.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 508389C53318E4312B3FE5BF0AEAEB2D /* 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 = 83F11EE95BDA3D4C8755C4D66D0B74D6 /* Init.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8B06017BE3E8E65F2B4C459B94742090 /* REAUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = 854D1744DD389D5D8C1ACE4FA1387DE9 /* REAUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8B0E5441C89B63D6E7B68E74DE638616 /* ARTNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 68F052FA093CABB36D1690961D6FAD17 /* ARTNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8B06017BE3E8E65F2B4C459B94742090 /* REAUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = 1C63379B39A97FAEF69035BFB3D2E30D /* REAUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8B0E5441C89B63D6E7B68E74DE638616 /* ARTNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 9D69A9CA01FD4A1D10E9F992B60BAB56 /* ARTNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; 8B185D7F0B0EB26DF0FB3A62580B1068 /* Singleton.h in Headers */ = {isa = PBXBuildFile; fileRef = F0CB75F2570E2B32699A77004E0331CA /* Singleton.h */; settings = {ATTRIBUTES = (Project, ); }; }; 8B1A6727A64798A9A7D8B7AF7C25CCA4 /* Unistd.h in Headers */ = {isa = PBXBuildFile; fileRef = 11EAE715397E8FE0FA3CB97ED5895596 /* Unistd.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8B1CB4DE5C9EF20B3719DFE780F2ED88 /* BSG_KSArchSpecific.h in Headers */ = {isa = PBXBuildFile; fileRef = 57F56536E891B238679FB9405792E45F /* BSG_KSArchSpecific.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8B1CB4DE5C9EF20B3719DFE780F2ED88 /* BSG_KSArchSpecific.h in Headers */ = {isa = PBXBuildFile; fileRef = B0402D91F9F427FCE7015844415B7E01 /* BSG_KSArchSpecific.h */; settings = {ATTRIBUTES = (Project, ); }; }; 8B1FBC37AF98101724B7B6AA22A23490 /* Core.h in Headers */ = {isa = PBXBuildFile; fileRef = 18F92F00169D229BE1AD59EB4983621D /* Core.h */; settings = {ATTRIBUTES = (Project, ); }; }; 8B445DA6E9CADE8458DD316E4B83DE93 /* Demangle.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 734D1B63F33711F47A4D575E64F45DE7 /* 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 = 2498A4DA779B27626860F0C820BF4D36 /* EXDownloadDelegate.m */; }; - 8B544C209EA7679C75EE239C93C0B563 /* SDWebImageOperation.m in Sources */ = {isa = PBXBuildFile; fileRef = 874DD879EBBA0887150F2F86F07E12C7 /* SDWebImageOperation.m */; }; + 8B4A5EFA46C771631880F96C6D857763 /* EXDownloadDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = 25CEE608A8368A58E6EBAA490E1B1212 /* EXDownloadDelegate.m */; }; + 8B544C209EA7679C75EE239C93C0B563 /* SDWebImageOperation.m in Sources */ = {isa = PBXBuildFile; fileRef = AC5EE4CAEE5EB08A574D75553DC5F91A /* SDWebImageOperation.m */; }; 8B808C168BCC293074E1671A5CAB5432 /* GDTCOREvent+NetworkConnectionInfo.h in Headers */ = {isa = PBXBuildFile; fileRef = A3CB03B43186E240E4CADCA45981997C /* GDTCOREvent+NetworkConnectionInfo.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8B8C528BACC409B0720831CF1AE7E240 /* RCTWebSocketModule.h in Headers */ = {isa = PBXBuildFile; fileRef = D388AAA7C7F5EDA01A9A47721D674723 /* RCTWebSocketModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8B8C528BACC409B0720831CF1AE7E240 /* RCTWebSocketModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 868848EE008D5B6B2D4B9C56EF508588 /* RCTWebSocketModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; 8B930FB85F7CB02FF575EB90CF55350F /* Array.h in Headers */ = {isa = PBXBuildFile; fileRef = 4D3297C00E401A07F17B6B3F6A899B52 /* Array.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8BA01965AE0F888BE823F704AB0EB6A7 /* RNCSafeAreaProviderManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 75837F0DE68E61DE16C1B5C9520E90BF /* RNCSafeAreaProviderManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8BA01965AE0F888BE823F704AB0EB6A7 /* RNCSafeAreaProviderManager.h in Headers */ = {isa = PBXBuildFile; fileRef = D6F9CB4C309F68636C64074C5475CB51 /* RNCSafeAreaProviderManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; 8BA04E1FA3708A51146E5A1218DA87B3 /* FIRHeartbeatInfo.h in Headers */ = {isa = PBXBuildFile; fileRef = 0225409427FFE99591DCBD4FEDDA3EDB /* FIRHeartbeatInfo.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8BB881B01F898C5F3A979090A41AF7FD /* LNInterpolation.h in Headers */ = {isa = PBXBuildFile; fileRef = 4069652AA03B0E7510525C531D945EC2 /* LNInterpolation.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8BB9AE1787FD9D7C8F5388013BBCD2DD /* EXConstants.m in Sources */ = {isa = PBXBuildFile; fileRef = 1642B5970EA2D1E7F8CA2E2121764DEB /* EXConstants.m */; }; - 8BDC780EFAEC1B9826D9B25A85BE47E2 /* RNCAppearanceProviderManager.m in Sources */ = {isa = PBXBuildFile; fileRef = B0F818123E207CD4DD66F14D8EE99606 /* RNCAppearanceProviderManager.m */; }; - 8C00041F49471316D4EC654B1C21A905 /* YGConfig.cpp in Sources */ = {isa = PBXBuildFile; fileRef = E8DB26D72064B358DEF28E118D4717F5 /* 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 = ACA4BBCB6F88E1B04C71884CEAFA064F /* LNInterpolation.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8BB9AE1787FD9D7C8F5388013BBCD2DD /* EXConstants.m in Sources */ = {isa = PBXBuildFile; fileRef = F99F1E1E90A8C2BBEEF517DBF4DF16A2 /* EXConstants.m */; }; + 8BDC780EFAEC1B9826D9B25A85BE47E2 /* RNCAppearanceProviderManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 119A86EF874A697FF838E52CD77370EB /* RNCAppearanceProviderManager.m */; }; + 8C00041F49471316D4EC654B1C21A905 /* YGConfig.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BE191BB1F9A0D534ECCF9AC72F80AA03 /* 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 = 62E41265E83423F7653CB43B816218D3 /* ScheduledExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; 8C0A640F7F5FA4D7E162DE9284F16BAA /* vp8i_enc.h in Headers */ = {isa = PBXBuildFile; fileRef = 768582E960B57142E27773A93762C7E9 /* vp8i_enc.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8C69C078920DA50B9E88B45647B20738 /* RCTPointerEvents.h in Headers */ = {isa = PBXBuildFile; fileRef = 560D612F81C9E8306A80EFA23F21AFF3 /* RCTPointerEvents.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8C69C078920DA50B9E88B45647B20738 /* RCTPointerEvents.h in Headers */ = {isa = PBXBuildFile; fileRef = 156687D4952C66CA95FC142C1F806D61 /* RCTPointerEvents.h */; settings = {ATTRIBUTES = (Project, ); }; }; 8C908950962F392DD1C6D0F749224A8C /* ru.lproj in Resources */ = {isa = PBXBuildFile; fileRef = 72AAC3CFCD9D5F65A049D400362D9B50 /* ru.lproj */; }; 8CA624564BD56CDA821A6C12FB87DF65 /* filters_mips_dsp_r2.c in Sources */ = {isa = PBXBuildFile; fileRef = 4E0B54BC3A206AD1A540ECB89440B2A5 /* filters_mips_dsp_r2.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; 8CBA61340D8457775EC61BAC42083002 /* AtomicHashMap-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 4AB231ED9A140087BF5AA534E8D4B5E5 /* AtomicHashMap-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; 8CC74E310D402BA29146B705FACCBDB5 /* OpenSSLHash.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 882DEC08C6332CC1D2DB9FE03ACB481D /* 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 = 6E1C039B9169CD68726A5B2C2A4FE067 /* RCTCxxMethod.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8CD181EB78A6900601F244D3312CB8E4 /* QBVideoIconView.m in Sources */ = {isa = PBXBuildFile; fileRef = FABD8E76822F5C6BF39C74CB704D5A8B /* QBVideoIconView.m */; }; - 8CD195F8D4797EA381A36F563A0E5F0D /* RNFirebaseAdMobRewardedVideo.h in Headers */ = {isa = PBXBuildFile; fileRef = 0E3265C42333A48771EC37248BBC59B3 /* RNFirebaseAdMobRewardedVideo.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8CC80E0DEBC0B93E7BC4D5BA8A06D287 /* RCTCxxMethod.h in Headers */ = {isa = PBXBuildFile; fileRef = 6DF1C826BE5F262719D3FD06E82CBC45 /* RCTCxxMethod.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8CD181EB78A6900601F244D3312CB8E4 /* QBVideoIconView.m in Sources */ = {isa = PBXBuildFile; fileRef = 4F4F57B098C6AA5F9B85E76499C5DCD9 /* QBVideoIconView.m */; }; + 8CD195F8D4797EA381A36F563A0E5F0D /* RNFirebaseAdMobRewardedVideo.h in Headers */ = {isa = PBXBuildFile; fileRef = 9181CD547B312286C9B74399143DF4E4 /* RNFirebaseAdMobRewardedVideo.h */; settings = {ATTRIBUTES = (Project, ); }; }; 8CE299B1BBEBA23B44CDDFD5C12C61CA /* Futex.h in Headers */ = {isa = PBXBuildFile; fileRef = 87FB6F51543C5D49366322E741CBF6E6 /* Futex.h */; settings = {ATTRIBUTES = (Project, ); }; }; 8CE9ED65324F42982FC8FDFDD56649EE /* SKTapListenerImpl.m in Sources */ = {isa = PBXBuildFile; fileRef = BA6A2D8828FE7F15C161DF91C6F515C3 /* 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 = 53BA2EEBDACA3F00B86D18D7ED315D3E /* RCTTextShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8D0EE2AEB43B05F35365B75908E3740A /* RCTTextShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = 785228C5185FAFB6F3841D742E180506 /* RCTTextShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; 8D105DB328C60025F6EE3BECF043717B /* SpookyHashV2.cpp in Sources */ = {isa = PBXBuildFile; fileRef = C861EC7F1643CD0F174E5FCE7F99FF56 /* 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 = E721562F74F04D176D6F843613186636 /* EXImageLoader.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8D1B7E50CCEA46357C7172266EDE1D76 /* EXAppleAuthentication-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = DE6F9E64C16924524823CD9584DAF35A /* EXAppleAuthentication-dummy.m */; }; + 8D1767AB59653E8540E79B2D42F2E7CF /* EXImageLoader.h in Headers */ = {isa = PBXBuildFile; fileRef = 66BC2755707DD9BBE0D3BCAC8B6E6314 /* EXImageLoader.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8D1B7E50CCEA46357C7172266EDE1D76 /* EXAppleAuthentication-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 582C2A4462B529E5726252F83E30AAFA /* EXAppleAuthentication-dummy.m */; }; 8D396CB6D3FF882946FDF08D7DFD7701 /* FLEXNetworkRecorder.h in Headers */ = {isa = PBXBuildFile; fileRef = 9222696D078C54E7767955037B7E493F /* FLEXNetworkRecorder.h */; settings = {ATTRIBUTES = (Project, ); }; }; 8D4F75714A2F85B5F2ECE9860162E0C9 /* double-conversion.cc in Sources */ = {isa = PBXBuildFile; fileRef = A7F6197D13E90F383CF5855CEAE4E528 /* double-conversion.cc */; settings = {COMPILER_FLAGS = "-Wno-unreachable-code"; }; }; - 8D624EDC48442DF2E2C1044345D16790 /* RCTConvert+Text.m in Sources */ = {isa = PBXBuildFile; fileRef = E17B60C58DF1CD7EBC60C27183ECCBB2 /* RCTConvert+Text.m */; }; - 8D9795A39176DCECC68A4E251BDBEED3 /* RCTSettingsPlugins.h in Headers */ = {isa = PBXBuildFile; fileRef = 78912319CEF3413E7D31B12DDCF6E9D0 /* RCTSettingsPlugins.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8DA59E9D05B63A3D98033CCA9DA2B103 /* RCTBorderDrawing.m in Sources */ = {isa = PBXBuildFile; fileRef = 5A81C8324F3038F8CCD8CC6BD84FBE51 /* 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 = 4DD6B706D7C83809F01C6C0B11777F78 /* CompactValue.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8D624EDC48442DF2E2C1044345D16790 /* RCTConvert+Text.m in Sources */ = {isa = PBXBuildFile; fileRef = DB6FE7776E3827BB6846BBC6741A7928 /* RCTConvert+Text.m */; }; + 8D9795A39176DCECC68A4E251BDBEED3 /* RCTSettingsPlugins.h in Headers */ = {isa = PBXBuildFile; fileRef = 2F0C67D3A613AAE0E62B18C637A57394 /* RCTSettingsPlugins.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8DA59E9D05B63A3D98033CCA9DA2B103 /* RCTBorderDrawing.m in Sources */ = {isa = PBXBuildFile; fileRef = 12D03474B370C62E4FCAEDB9AAD78165 /* 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 = 89EE65AC3EC2EAE0411369C8BF245F24 /* CompactValue.h */; settings = {ATTRIBUTES = (Project, ); }; }; 8DD2BAF772C271D2D4FAEA77CBFE0CE2 /* SysTime.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2B3F4CBE63D26B3507E66BF620BF409E /* 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 = B590FADFAE58C8461150A0542F547B12 /* Sleeper.h */; settings = {ATTRIBUTES = (Project, ); }; }; 8DE4C3A8FD9E0E1115308E2A4896FA8A /* GULMutableDictionary.m in Sources */ = {isa = PBXBuildFile; fileRef = 494B8F92D84B22C8489D80D4FDA8FC33 /* GULMutableDictionary.m */; }; 8DEF96274F9BA17DDE42AC2EAE1EC1AE /* UIImage+WebP.m in Sources */ = {isa = PBXBuildFile; fileRef = 18775CCD233F50176F12695DA5A375C2 /* UIImage+WebP.m */; }; - 8DF60389EB9916428918923DC8086F1A /* TurboModuleUtils.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 0A3317667F31F7168FA5A80542BA6B0B /* 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 = 82505B6EB86B278B705E2B164F5A4D51 /* 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 = D2D404CA10C2CEAD6387E107DD9E948C /* endian_inl_utils.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8E24982870C8E41C148791A47D487770 /* UIButton+WebCache.h in Headers */ = {isa = PBXBuildFile; fileRef = 2134642023B5EEA4EDF1B56B7AACAAE6 /* UIButton+WebCache.h */; settings = {ATTRIBUTES = (Project, ); }; }; 8E3E30DA44DAC307FF0AFFC9F890E9AE /* SysMembarrier.h in Headers */ = {isa = PBXBuildFile; fileRef = DE363B43B15D99CB6921593B3870A813 /* SysMembarrier.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8E5BB2DDE8FBB037C835BEBEB5A8814E /* RCTSurfaceStage.m in Sources */ = {isa = PBXBuildFile; fileRef = B3622350A596E3E5F6990B705F2C4E34 /* 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 = 401D6E755CD3B998E73591B856E4DA14 /* RNDateTimePicker.m */; }; + 8E5BB2DDE8FBB037C835BEBEB5A8814E /* RCTSurfaceStage.m in Sources */ = {isa = PBXBuildFile; fileRef = CA2BF4BBCDF6539C646099A203B17AD1 /* 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 = 79DA77C222099A6FB5A493355E54E9CF /* RNDateTimePicker.m */; }; 8ECAAD611878CFA4CA1E91A5ACC7FC41 /* dec_mips_dsp_r2.c in Sources */ = {isa = PBXBuildFile; fileRef = FAE8D97D54BF3960347DC80964A857B4 /* dec_mips_dsp_r2.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; 8EEEE5C24101D8A3A86527DA4A7B8D05 /* FBLPromise+Retry.h in Headers */ = {isa = PBXBuildFile; fileRef = D925282B7F947BB672A38DA74BF07041 /* FBLPromise+Retry.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8EFE2147CC39B1A59725A0A336CBFCD6 /* SDAnimatedImageView.h in Headers */ = {isa = PBXBuildFile; fileRef = 82C01AE34B43424EA0DE03555983062D /* SDAnimatedImageView.h */; settings = {ATTRIBUTES = (Project, ); }; }; 8F026D24EEBFE343FDBAC023E9D56938 /* quant_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = 3AB87183B9900CD53A4C415F658014FF /* quant_enc.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; 8F0E822E61D22F4B1F22B72D68D3B3A7 /* DefaultKeepAliveExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = 704C5E5BC0BAABAC4C0DC243FD8FFA9A /* DefaultKeepAliveExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; 8F1C53837C62D18AB63C32DF23B69F05 /* TcpConnectionFactory.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D225FDC6130767EEC967DD4409EA7219 /* 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 = D81CAB99456950B46A500274DF8DBFAF /* RNNotificationsStore.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8F49598262406F32631A122B489AF25E /* ModuleRegistry.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 12CD988AB5526B4808905AE557BF0F4D /* 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 = C9632E2040F40F5BFC7BE04BD414A025 /* RNNotificationsStore.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8F49598262406F32631A122B489AF25E /* ModuleRegistry.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F55F340203A7C818FDDE9F3705310908 /* 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 = 35F18838412262166EBA0E797B231CC3 /* Overload.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8F89587395083D23F1F53F8F8CE7AABE /* RNCommandsHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = BC0B68D6DE8ED8D2C98B906BF4672B2F /* RNCommandsHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8F89587395083D23F1F53F8F8CE7AABE /* RNCommandsHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 550F7B33D97D673FC5789E786A40D16F /* RNCommandsHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; 8FA27A3BC06AD1CED8F5389442861A4B /* RecordIO.h in Headers */ = {isa = PBXBuildFile; fileRef = FC3C5BF456C03582D51729D8F77A34D9 /* RecordIO.h */; settings = {ATTRIBUTES = (Project, ); }; }; 8FB10A988A6DE8AB4FF13B4642AFFF82 /* SKViewDescriptor.mm in Sources */ = {isa = PBXBuildFile; fileRef = CFA0A7F0958E5927766B69BC0F318661 /* 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 = 6988A2C472E936589B7F837072850348 /* RCTVirtualTextShadowView.m */; }; + 8FBCED1491F348D833730523C6E63790 /* RCTVirtualTextShadowView.m in Sources */ = {isa = PBXBuildFile; fileRef = 3285D9B72175CF0C2521DD29C3BAE674 /* RCTVirtualTextShadowView.m */; }; 8FDC510019D77E1C0D7BA688F8C55E7E /* ManualTimekeeper.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 85387473295C9E38C32880334B230F74 /* 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 = F1A9580C819BC6B80BEA8F9EB5C50B6F /* SDWebImageCompat.h */; settings = {ATTRIBUTES = (Project, ); }; }; 9006761B0D2F13AE8D9DFB4362DA3631 /* SysMembarrier.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 80B52EAF8F2F8CB6936A987840B87648 /* 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 = E974C64B2F6DDAA335304461A064BA87 /* RCTTurboModuleManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 903509784A2416BE966209CFDACA4076 /* RCTTurboModuleManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 413B555D063451CA6495EEDD7CC94227 /* RCTTurboModuleManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; 9035970046360BBEAB0136DF92759704 /* File-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = A06DA5A6AC0A8948FDFC4B13C43D8CF9 /* File-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; 903F10B3A802BE1A7C55CE787D766035 /* logging.h in Headers */ = {isa = PBXBuildFile; fileRef = 12D7348ECB9E178985096E40F683606A /* logging.h */; settings = {ATTRIBUTES = (Project, ); }; }; 904E61CACB3A8BE0AC1D58731CDEF5E7 /* CPortability.h in Headers */ = {isa = PBXBuildFile; fileRef = C53FBAFE6757A0CC37B98D6A097FBFD0 /* CPortability.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 90544C74C36B85E098F17E2974C49C2E /* REAModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 571BAD26D9BC6F164E5EB00F633B8668 /* REAModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 905873241B5AF3ED7969719250E32487 /* RNGestureHandlerButton.h in Headers */ = {isa = PBXBuildFile; fileRef = 71A81006D808932FC42B12786BECA152 /* RNGestureHandlerButton.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9062E6AF8DE81E533095420BDE289902 /* RNCSafeAreaShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = 1A7AEEC1C24F87D64A9A5FB6FD6B6539 /* RNCSafeAreaShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 90544C74C36B85E098F17E2974C49C2E /* REAModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 98B48B57988B4C1C778A2FAAD4DF8C40 /* REAModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 905873241B5AF3ED7969719250E32487 /* RNGestureHandlerButton.h in Headers */ = {isa = PBXBuildFile; fileRef = A5AF3C392D5CFECECBC5E3221C393D3F /* RNGestureHandlerButton.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9062E6AF8DE81E533095420BDE289902 /* RNCSafeAreaShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = D420AE4BA9B45717CC7950B4CC063655 /* RNCSafeAreaShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; 9065DD549003066B9A069F40D2485CEC /* lossless_enc_mips32.c in Sources */ = {isa = PBXBuildFile; fileRef = D7971971246FE9195A5102CBE10BCDA3 /* lossless_enc_mips32.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 906C4E8BBA2D21500EAE0AC78DE17092 /* jsilib-windows.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 55A1D43E300473C503149B12A5DF80D5 /* 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"; }; }; + 906BCD291B4D2E061B4901A35B433424 /* SDInternalMacros.h in Headers */ = {isa = PBXBuildFile; fileRef = FB321BADAFA9397745118AE2D9F5D006 /* SDInternalMacros.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 906C4E8BBA2D21500EAE0AC78DE17092 /* jsilib-windows.cpp in Sources */ = {isa = PBXBuildFile; fileRef = CA52F3E3FE3237E33EED21A84E91E617 /* 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 = 12E7DBE9A6D2E2B64628A51D714E14E5 /* 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 = 072440311BE630265E8A9BA9FE4B579C /* RNFirebaseLinks.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 90A33EC5C2A670669E33DBCE1BBFB53C /* RCTTextView.m in Sources */ = {isa = PBXBuildFile; fileRef = 9A8D977AFC2C5F8CB3A5F09188EB520E /* RCTTextView.m */; }; - 90A4FA2B12B95941392C6AB91DC061D3 /* RCTInspectorDevServerHelper.h in Headers */ = {isa = PBXBuildFile; fileRef = 3F7005D6F70287937B451E5C38FB180B /* RCTInspectorDevServerHelper.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 90971B47C3418E340CF56D3D9E529587 /* RNFirebaseLinks.h in Headers */ = {isa = PBXBuildFile; fileRef = 8E22610E8AFEC617EB54D9239AF48133 /* RNFirebaseLinks.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 90A33EC5C2A670669E33DBCE1BBFB53C /* RCTTextView.m in Sources */ = {isa = PBXBuildFile; fileRef = 62F5544F3B0E6E40B0BE63A40E428E64 /* RCTTextView.m */; }; + 90A4FA2B12B95941392C6AB91DC061D3 /* RCTInspectorDevServerHelper.h in Headers */ = {isa = PBXBuildFile; fileRef = 191FF3A1FAFCAFC9296631904C6E3D49 /* RCTInspectorDevServerHelper.h */; settings = {ATTRIBUTES = (Project, ); }; }; 90C95F7220758ED79831C1CF363000DC /* SSLSessionImpl.h in Headers */ = {isa = PBXBuildFile; fileRef = EA4D0250CBC2EC2C46D159B60763884B /* SSLSessionImpl.h */; settings = {ATTRIBUTES = (Project, ); }; }; 90D47A2F7D1BA712F1391D2371AE5C77 /* Common.h in Headers */ = {isa = PBXBuildFile; fileRef = E0EC7AA68FB61CD52889F9C776977CCA /* Common.h */; settings = {ATTRIBUTES = (Project, ); }; }; 90DB84A6D6895BDE8742C4B4D3A683E1 /* TurnSequencer.h in Headers */ = {isa = PBXBuildFile; fileRef = 05D86D6DAA63D4275173FC63FD7F89BC /* TurnSequencer.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 90E82D5D145841FBCB0ACDE8334222B8 /* NSImage+Compatibility.h in Headers */ = {isa = PBXBuildFile; fileRef = E7C5136987B75A558800AA09668F379D /* NSImage+Compatibility.h */; settings = {ATTRIBUTES = (Project, ); }; }; 910C6F324CE795FE033EA8C7ECC59865 /* PThread.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 26100ED62D912528C0C01D6903A8A230 /* 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 = 0A8028BCC58743A6AB3702379DF66EB6 /* RCTRawTextShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 911AA4796FD946BD3588E55F4CC55238 /* RCTUIImageViewAnimated.h in Headers */ = {isa = PBXBuildFile; fileRef = 0AEBB74E46017DCAE9ED28A67AE68D17 /* RCTUIImageViewAnimated.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 911A4A5CD56BAFF86A1671DDD8843603 /* RCTRawTextShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = AA29A83E3F33D4D1A190DA06EEE1623F /* RCTRawTextShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 911AA4796FD946BD3588E55F4CC55238 /* RCTUIImageViewAnimated.h in Headers */ = {isa = PBXBuildFile; fileRef = 16555BDC20B5B1863AA97229A58A197E /* RCTUIImageViewAnimated.h */; settings = {ATTRIBUTES = (Project, ); }; }; 9120D7BE95FE6542993581EABF38B0DC /* FirebaseInstallations-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 042DF8DFEEB1D8E5580AAC6A366BDAB8 /* FirebaseInstallations-dummy.m */; }; - 913763F48A4D2A547A34E25D0905E3C9 /* RCTRootViewInternal.h in Headers */ = {isa = PBXBuildFile; fileRef = EB0503C4040CB6D5AB321E65307863ED /* RCTRootViewInternal.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 913763F48A4D2A547A34E25D0905E3C9 /* RCTRootViewInternal.h in Headers */ = {isa = PBXBuildFile; fileRef = 2E7BFCBEA87A5744BCEABEF955612D99 /* RCTRootViewInternal.h */; settings = {ATTRIBUTES = (Project, ); }; }; 9154E2A2238ACBBA0FAC221758119C43 /* GULReachabilityChecker.m in Sources */ = {isa = PBXBuildFile; fileRef = A720EAE100FC5497152E570CB00FF846 /* GULReachabilityChecker.m */; }; - 916D0F1BB6A524F34140B43CBF9105F5 /* RCTPerformanceLogger.h in Headers */ = {isa = PBXBuildFile; fileRef = 5BED72909D9D39B0BB048E44A539BCCF /* RCTPerformanceLogger.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 916D0F1BB6A524F34140B43CBF9105F5 /* RCTPerformanceLogger.h in Headers */ = {isa = PBXBuildFile; fileRef = 72E198311F24C1FB49B976D9D5A22732 /* RCTPerformanceLogger.h */; settings = {ATTRIBUTES = (Project, ); }; }; 916FA53C203CDD1276B204C0641E914C /* ConnectionSet.h in Headers */ = {isa = PBXBuildFile; fileRef = B082F6023D863668CCEB187F071F3F4F /* ConnectionSet.h */; settings = {ATTRIBUTES = (Project, ); }; }; 91A4E3F7372B8CFEFF1DE35BAE442288 /* DiscriminatedPtrDetail.h in Headers */ = {isa = PBXBuildFile; fileRef = CCFE30DC291A9D63B08F1394853162E3 /* DiscriminatedPtrDetail.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 91AD65151392B739A1EAFE57B0742A42 /* RCTTextDecorationLineType.h in Headers */ = {isa = PBXBuildFile; fileRef = 3B0BB472098B8C1333572351A2D915B6 /* RCTTextDecorationLineType.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 91AD65151392B739A1EAFE57B0742A42 /* RCTTextDecorationLineType.h in Headers */ = {isa = PBXBuildFile; fileRef = 6FC9F99A5B1B339B1B270C73A9317012 /* RCTTextDecorationLineType.h */; settings = {ATTRIBUTES = (Project, ); }; }; 91BBF552A2FF6BB3042AA2B96075C326 /* FIRErrors.h in Headers */ = {isa = PBXBuildFile; fileRef = D0788E90FE9CCC58D3C63AF5F144EE74 /* FIRErrors.h */; settings = {ATTRIBUTES = (Project, ); }; }; 91BED5DEF72E7A2E92556E30A48337E3 /* StreamResponder.h in Headers */ = {isa = PBXBuildFile; fileRef = 2EECC37A5384ADA3A0EA2363ED1312A5 /* StreamResponder.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 91FE289F51F96156C8ED18CF9888F106 /* RCTAppearance.mm in Sources */ = {isa = PBXBuildFile; fileRef = 52F3D7704D7909815C5F8B22E38B57D8 /* 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 = 5D43CF61D8784FE6287055564C6F9EB4 /* RCTBackedTextInputDelegateAdapter.m */; }; - 92131AB83F381B6DDCBB859816480676 /* BugsnagSessionTrackingApiClient.m in Sources */ = {isa = PBXBuildFile; fileRef = ECF4AFAE13A35FFC1A16CE050FFC238B /* BugsnagSessionTrackingApiClient.m */; }; - 923F86F7077D0C0DFABA10FB37D562E7 /* RCTNativeModule.mm in Sources */ = {isa = PBXBuildFile; fileRef = 0EA2652DADB72FFC3372DC4610D94043 /* 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 = D32A6891FB41D3CC2908430B13AB1EFE /* 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 = 05DB8FC8A4E23D049196E1228AAC5402 /* RCTBackedTextInputDelegateAdapter.m */; }; + 92131AB83F381B6DDCBB859816480676 /* BugsnagSessionTrackingApiClient.m in Sources */ = {isa = PBXBuildFile; fileRef = 2C1299DBD1706104A23932D328B02DFB /* BugsnagSessionTrackingApiClient.m */; }; + 923F86F7077D0C0DFABA10FB37D562E7 /* RCTNativeModule.mm in Sources */ = {isa = PBXBuildFile; fileRef = 99471A1A0B8A1DC5E335BB60103415FA /* 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 = F7B741A0FE2C31556C7176BDAB4BD8FD /* ProgramOptions.h */; settings = {ATTRIBUTES = (Project, ); }; }; 9296946BE070ADED28DA5560FBA45DF9 /* Folly-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 41B38A2014725CA6308DABFB8F503F4B /* Folly-dummy.m */; }; 92AA74D1F05BBE5402796AA8225D8834 /* alpha_processing_sse2.c in Sources */ = {isa = PBXBuildFile; fileRef = 85F8F0AB972F155D2DB653D0022B587F /* alpha_processing_sse2.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; 92AFAE33AD485646B3E7EB8772215A18 /* Invoke.h in Headers */ = {isa = PBXBuildFile; fileRef = C2556B078588E78F3AEEC4FFA1F34A01 /* Invoke.h */; settings = {ATTRIBUTES = (Project, ); }; }; 92DF9D03171AB34F00DD37988294E67A /* YGLayout+Private.h in Headers */ = {isa = PBXBuildFile; fileRef = CFBE33C6DE3AED52E50119C3A4223A23 /* YGLayout+Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 92E0F28150B20AB70F5302620AA6AB4D /* RNCSafeAreaViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 93B71F85D013AD75E8796FA20E4D523C /* RNCSafeAreaViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 92F22C6A1C5543C01988F3D6A1B500BE /* REATransition.h in Headers */ = {isa = PBXBuildFile; fileRef = E38F69EED7E21E41AD71AFA75F839F10 /* REATransition.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 93020820AD3A13558AE142066790F4B3 /* BSG_KSLogger.m in Sources */ = {isa = PBXBuildFile; fileRef = F14592AC28964F7719B2E418774F7A9B /* BSG_KSLogger.m */; }; - 934AED685CDCF090D5ED160925EF0D71 /* RCTVirtualTextViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 57171E8592D216A0BCACF19A6FCE78FB /* RCTVirtualTextViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 934EE39A7D777FEAB83179E8B78FBD49 /* RCTSlider.m in Sources */ = {isa = PBXBuildFile; fileRef = 835EC2AB03939CB3829F05F29BF62A32 /* 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 = 235CB33ECE9E46D4D8063E8B101D6DC2 /* RNCSafeAreaViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 92F22C6A1C5543C01988F3D6A1B500BE /* REATransition.h in Headers */ = {isa = PBXBuildFile; fileRef = 7DC5154565FB95E2BE6043062A2E46AD /* REATransition.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 93020820AD3A13558AE142066790F4B3 /* BSG_KSLogger.m in Sources */ = {isa = PBXBuildFile; fileRef = 28304FBADAA1DE586D58C92C0673E75A /* BSG_KSLogger.m */; }; + 934AED685CDCF090D5ED160925EF0D71 /* RCTVirtualTextViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 722BE3870D0E12A2F6B24031E137F07D /* RCTVirtualTextViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 934EE39A7D777FEAB83179E8B78FBD49 /* RCTSlider.m in Sources */ = {isa = PBXBuildFile; fileRef = EB1533A0CD974D86B26F4A4E5A77366D /* 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 = 9CA65634937D623281544E5A6F9CDD6D /* lossless_enc_mips_dsp_r2.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 938629F70F1435EDFA4638D7421C6AD4 /* RCTNativeAnimatedModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 80B980A2DC985D47E5B4F3CF526DFD78 /* RCTNativeAnimatedModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 938629F70F1435EDFA4638D7421C6AD4 /* RCTNativeAnimatedModule.h in Headers */ = {isa = PBXBuildFile; fileRef = FF4714A3879493644B3D4DC29109E32F /* RCTNativeAnimatedModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; 939AF54C8251EC34E539FB93C1766A4F /* AsyncTimeout.h in Headers */ = {isa = PBXBuildFile; fileRef = 1E7F01BCB84D8C9EBBA34737EF2962AC /* AsyncTimeout.h */; settings = {ATTRIBUTES = (Project, ); }; }; 93A0E9A6CC99BE8D70FD6F259C9D5891 /* quant_dec.c in Sources */ = {isa = PBXBuildFile; fileRef = 56F60D5152237E7C75B595341DC35946 /* quant_dec.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 93B4CF41B4F92A4904AE83D9FD29AC5A /* BSG_KSCrashReport.h in Headers */ = {isa = PBXBuildFile; fileRef = 557D849BDD58B5EDD349B0A4B70B353F /* BSG_KSCrashReport.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 93ED1C2CEDC4EF1236212F0C80858B6E /* SDImageFrame.h in Headers */ = {isa = PBXBuildFile; fileRef = B63947E2B5A38C4724077A19011B71D3 /* SDImageFrame.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 93B4CF41B4F92A4904AE83D9FD29AC5A /* BSG_KSCrashReport.h in Headers */ = {isa = PBXBuildFile; fileRef = 94B1AD85F33D74C18253627654D39221 /* BSG_KSCrashReport.h */; settings = {ATTRIBUTES = (Project, ); }; }; 93F0C82780EBEC79DB8700ED1CF96F8D /* GroupVarint.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A22F5E839A95C087BA61B4F175D21FA0 /* 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 = 4130B32047215C733F9E8513CEBCCE71 /* RCTCustomInputController.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 93FCE248F90CE025EE8B96598B4E1722 /* RCTCustomInputController.h in Headers */ = {isa = PBXBuildFile; fileRef = 48A95C1610D450A725E7176E5F26A44C /* RCTCustomInputController.h */; settings = {ATTRIBUTES = (Project, ); }; }; 94392DDD913E886B02C132A930C1FDC8 /* FBLPromise+Then.h in Headers */ = {isa = PBXBuildFile; fileRef = E834EC534E31B1E93EE000507BF09A87 /* FBLPromise+Then.h */; settings = {ATTRIBUTES = (Project, ); }; }; 9439847058CC81B6D2C14449CAF757A2 /* F14Map-fwd.h in Headers */ = {isa = PBXBuildFile; fileRef = 7A5E39873A6677F27B80EDDAA5E8AC81 /* F14Map-fwd.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 94495C8601E753AB823E75829956C014 /* Compression.h in Headers */ = {isa = PBXBuildFile; fileRef = 6A97BA1C32F0EB20E5033FB242187B5D /* Compression.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 94495C8601E753AB823E75829956C014 /* Compression.h in Headers */ = {isa = PBXBuildFile; fileRef = A246E9F82AE2BBDA19FB7D56CBB32A17 /* Compression.h */; settings = {ATTRIBUTES = (Project, ); }; }; 94717BAE4332BC8022BB19CDB3E538C0 /* IndexedMemPool.h in Headers */ = {isa = PBXBuildFile; fileRef = FC5A3E541C208102CA0FA2FE082E6974 /* IndexedMemPool.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 949933AD121308CF99120816674FF6D3 /* Bugsnag.m in Sources */ = {isa = PBXBuildFile; fileRef = B15C487F4DC80F8BE99777A46A89376A /* Bugsnag.m */; }; + 9493BDB77B9DBE1604961046C351611B /* SDImageCoder.h in Headers */ = {isa = PBXBuildFile; fileRef = 00D71C6B7C575E7010F9C45456E08673 /* SDImageCoder.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 949933AD121308CF99120816674FF6D3 /* Bugsnag.m in Sources */ = {isa = PBXBuildFile; fileRef = 7AC093452642F039FE07351294D1D94E /* Bugsnag.m */; }; 94A072B9A08448DC0F01CA2573467148 /* HHWheelTimer.h in Headers */ = {isa = PBXBuildFile; fileRef = A11250059B012F3F12F7779B77BDD89E /* HHWheelTimer.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 94C039AE0D8233E82EBBF8CD60D104E1 /* react-native-webview-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 1A00D7608C84CD3E9E40FFA4EAE992A4 /* react-native-webview-dummy.m */; }; + 94C039AE0D8233E82EBBF8CD60D104E1 /* react-native-webview-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 6232CFE8A5FED9D0E581F5B00179C313 /* react-native-webview-dummy.m */; }; 94D2057D96B17B5338176E0EAC6D6118 /* bit_reader_utils.h in Headers */ = {isa = PBXBuildFile; fileRef = FE14511732DF9092162809773043F4D5 /* bit_reader_utils.h */; settings = {ATTRIBUTES = (Project, ); }; }; 94F848D36732CD838F5B99C4A1D7DDC5 /* FIRInstallationsHTTPError.h in Headers */ = {isa = PBXBuildFile; fileRef = A660E3609C26A84984902A21A8F5F053 /* FIRInstallationsHTTPError.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 951BCD0242FD1AD0318E94EF9F9749B8 /* SDMemoryCache.m in Sources */ = {isa = PBXBuildFile; fileRef = C8C8F2005685BA0606C2E4D9A04FA8D0 /* SDMemoryCache.m */; }; - 95220E2ABB7A7857B237C2D80C60F6A9 /* BugsnagErrorReportApiClient.h in Headers */ = {isa = PBXBuildFile; fileRef = 1676FC615941B3942BB2D9289298A715 /* BugsnagErrorReportApiClient.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 951BCD0242FD1AD0318E94EF9F9749B8 /* SDMemoryCache.m in Sources */ = {isa = PBXBuildFile; fileRef = 78A2D37DD7BFBBF51787FC6E94FB6A57 /* SDMemoryCache.m */; }; + 95220E2ABB7A7857B237C2D80C60F6A9 /* BugsnagErrorReportApiClient.h in Headers */ = {isa = PBXBuildFile; fileRef = 1B29820901D0645F926FEDA287854125 /* BugsnagErrorReportApiClient.h */; settings = {ATTRIBUTES = (Project, ); }; }; 953B94BD133A7467F4F38C0B944D76E1 /* filters_utils.h in Headers */ = {isa = PBXBuildFile; fileRef = E6401BB5120D214F07F0A4AFD853413E /* filters_utils.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 953FC9B45339E991D954682AE264CCD2 /* EXAppleAuthenticationButton.h in Headers */ = {isa = PBXBuildFile; fileRef = 906EAEFB0C5A8EE1E65224A170387B98 /* EXAppleAuthenticationButton.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 95425C77DA0714BA59332C5423094907 /* RCTEventAnimation.h in Headers */ = {isa = PBXBuildFile; fileRef = D18F95E7F3C8C615CDFB0C61CE2BA37D /* RCTEventAnimation.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 953FC9B45339E991D954682AE264CCD2 /* EXAppleAuthenticationButton.h in Headers */ = {isa = PBXBuildFile; fileRef = 9CF163AA457BF8E4BF0F5D320F33EDDB /* EXAppleAuthenticationButton.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 95425C77DA0714BA59332C5423094907 /* RCTEventAnimation.h in Headers */ = {isa = PBXBuildFile; fileRef = AF71F1C43B5C9DFF04B6B15E9A6940A9 /* RCTEventAnimation.h */; settings = {ATTRIBUTES = (Project, ); }; }; 9563C62CBE3FBA3E6607079FBEEABC84 /* Fixture.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 287BBF5036A97E7A194DC153ECBD3AAA /* 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 = 0519EC5A4AFFBE2BB26D2B7BA7702EDB /* GoogleDataTransport-dummy.m */; }; - 95B68C33D8A3CA6C685E64643173F8C2 /* RNFetchBlobProgress.m in Sources */ = {isa = PBXBuildFile; fileRef = 7CA58CB6C1F0627723A8061FDB5F32DA /* RNFetchBlobProgress.m */; }; + 95B68C33D8A3CA6C685E64643173F8C2 /* RNFetchBlobProgress.m in Sources */ = {isa = PBXBuildFile; fileRef = A7AA527D7FE5D0F6C82B2404F06A5960 /* RNFetchBlobProgress.m */; }; 95D26AA5A6FF5AB6CB7AAD85FBC462D4 /* zh-Hant.lproj in Resources */ = {isa = PBXBuildFile; fileRef = 181B1B487AC9DD3DC3B97011195CDEF3 /* zh-Hant.lproj */; }; 95F1E18B1B527539D5BC182C5A5CD857 /* Format.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8D47A14870CDE9E0FCF0FCEA6367E86F /* 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 = C4F1DF0D45EFB894C49030EFCEC3E5C1 /* RNGestureHandler-dummy.m */; }; + 960B81835CCACE99EAF6D7301646A57D /* RNGestureHandler-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = E93179E4068DA43969A26650ABD7C0AC /* RNGestureHandler-dummy.m */; }; 9648DE8BFD642A580258906D5C4A72AE /* anim_decode.c in Sources */ = {isa = PBXBuildFile; fileRef = F16FB127DE5B1DF19AA57A28FC72C1F6 /* anim_decode.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 964D4EB6DCD5294ECB1B2274765D9318 /* RCTConvert+CoreLocation.h in Headers */ = {isa = PBXBuildFile; fileRef = 7E0E27B24E2B25BC67038E12CDDC0EBD /* RCTConvert+CoreLocation.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 964D4EB6DCD5294ECB1B2274765D9318 /* RCTConvert+CoreLocation.h in Headers */ = {isa = PBXBuildFile; fileRef = 9CD076F60F79CD89DA9BEE202F59A9A3 /* RCTConvert+CoreLocation.h */; settings = {ATTRIBUTES = (Project, ); }; }; 9688F6896053FCA3235E23B12FBA2925 /* Poly.h in Headers */ = {isa = PBXBuildFile; fileRef = E03322878A67943BE822E153E5246303 /* Poly.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9690E06E3CF2942C7D7DE920D72633DE /* SDAssociatedObject.h in Headers */ = {isa = PBXBuildFile; fileRef = 3D6A10E15B062A93E4B205F47161AD9B /* SDAssociatedObject.h */; settings = {ATTRIBUTES = (Project, ); }; }; 9699F0953E11FA6A675DCD375DB58C3E /* Flipper-RSocket-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = CA73F5963360C0AA13E2C4B6B8163309 /* Flipper-RSocket-dummy.m */; }; 96A00C011A72200F5C719AA69C379BFB /* color_cache_utils.h in Headers */ = {isa = PBXBuildFile; fileRef = 07B717D9C7622FEE492A55061400A1CC /* color_cache_utils.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 96B16CBD2DD52DA614AC23267995DCE9 /* UMPermissionsMethodsDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = 423C28B97E7DA33075093A150B611AE6 /* UMPermissionsMethodsDelegate.m */; }; + 96B16CBD2DD52DA614AC23267995DCE9 /* UMPermissionsMethodsDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = BFD11B5FDE9ED168815BBE7C6FFABCB9 /* UMPermissionsMethodsDelegate.m */; }; 96B1848EDA12E024991DC71441FB7728 /* lossless_enc_sse2.c in Sources */ = {isa = PBXBuildFile; fileRef = 05FD1CADBA934C110DFE16A11C133F0B /* lossless_enc_sse2.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 96B2D8B5FD04F1BFBFD24962C834C7FA /* RCTInputAccessoryViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = B16549F7FED2D0ACB373B44ACA8AC112 /* RCTInputAccessoryViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 96B2D8B5FD04F1BFBFD24962C834C7FA /* RCTInputAccessoryViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 0949276B5398E3DE89E7AA787164CA6B /* RCTInputAccessoryViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; 9704F9F1F14DAD1518EDEB3FAB732873 /* FIRDiagnosticsData.h in Headers */ = {isa = PBXBuildFile; fileRef = 6549206A02B2CB128166634A1466CF38 /* FIRDiagnosticsData.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 970FA39BE3980D80C3BF24070B42C3EB /* RCTBlobManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 1D4D41211C446BE6090144A856378B10 /* RCTBlobManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 970FA39BE3980D80C3BF24070B42C3EB /* RCTBlobManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 477696EE8AF422E97A4C7E1FBAA61078 /* RCTBlobManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; 9734201F36FA9C8328F2A14634BB11E3 /* cached-powers.cc in Sources */ = {isa = PBXBuildFile; fileRef = 7B95F5390A986683EFD138AD4BE0C152 /* cached-powers.cc */; settings = {COMPILER_FLAGS = "-Wno-unreachable-code"; }; }; - 9738E4C9D8B2C022206D0C3A64B10653 /* RCTScrollEvent.h in Headers */ = {isa = PBXBuildFile; fileRef = 64E7F1F10D01964468F070DE8D4DF3A6 /* RCTScrollEvent.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9738E4C9D8B2C022206D0C3A64B10653 /* RCTScrollEvent.h in Headers */ = {isa = PBXBuildFile; fileRef = D274AB23ADE37587DD0CFD72700BE333 /* RCTScrollEvent.h */; settings = {ATTRIBUTES = (Project, ); }; }; 974D3D1D89E9AB50079AF4A57373410F /* SysResource.h in Headers */ = {isa = PBXBuildFile; fileRef = A7B6C083F3FBB943D1EE24157A1F8E5D /* SysResource.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9782D88D88768F2CDF72ED3ED1C70E00 /* RCTFPSGraph.m in Sources */ = {isa = PBXBuildFile; fileRef = 6741F01CF2C988A856EB20335F1192E4 /* 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 = C65DE3A05F1889FCBA86E8368027A1AD /* 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 = CD727DB3448D14B384860C6235420DD0 /* 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 = CC2AA0F5BD26F0F491F2F094178E76CA /* 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 = 1B0A3C699074BA5A89960FEB3303B723 /* FirebaseCore-dummy.m */; }; 9796980DC5E2693A40E90235CE55CA24 /* FIRConfigurationInternal.h in Headers */ = {isa = PBXBuildFile; fileRef = 1B15765A033F56AA45539C76C571546A /* FIRConfigurationInternal.h */; settings = {ATTRIBUTES = (Project, ); }; }; 97B5917244291105CFF124F9A9547419 /* AsyncUDPSocket.cpp in Sources */ = {isa = PBXBuildFile; fileRef = E9D6678BAD6B949AC3107BB4F1F2F20E /* 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 = 6895A751BF74448383933A3B163C1BC0 /* GULSwizzler.m */; }; 982335F379D5B4FBF9B32E73DD9B5154 /* WarmResumeManager.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 820116149E7F0B0D49DD0A6E6984027D /* 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 = 136C438561B6D5CB3D1286C9153B7C31 /* ARTText.m */; }; - 9840746F00CF232B1D6DFD8A1718E10C /* JSIDynamic.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 226258FFBB4B604235CD4E538EFD58C3 /* 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 = 27022965E30076F988DA9D6535E05F09 /* REAAlwaysNode.m */; }; - 988D75C014F94B7584204ACED46F3975 /* RNFirebaseAdMobBannerManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 5A4F53AB3445FE3C43E2B355A096F6D5 /* RNFirebaseAdMobBannerManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 983D6CA5B3B54C113AA7BD7A2CF3095C /* ARTText.m in Sources */ = {isa = PBXBuildFile; fileRef = EF70A307184FCF86D6BF324F32546930 /* ARTText.m */; }; + 9840746F00CF232B1D6DFD8A1718E10C /* JSIDynamic.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D1799F590A945B2052C32F94A995465E /* 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 = 6CF43B31E190BC61E79AEC9711B7F496 /* REAAlwaysNode.m */; }; + 988D75C014F94B7584204ACED46F3975 /* RNFirebaseAdMobBannerManager.h in Headers */ = {isa = PBXBuildFile; fileRef = F920E5D26F2F6711D709A39866FB9A0A /* RNFirebaseAdMobBannerManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 988EB4AACD480182DA7844DBB5F793AE /* SDAsyncBlockOperation.h in Headers */ = {isa = PBXBuildFile; fileRef = B9E16A1627374EC1824A246EEC40C717 /* SDAsyncBlockOperation.h */; settings = {ATTRIBUTES = (Project, ); }; }; 98A6067DF7B3EDF22221CC59D86D6060 /* GlobalExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = 0AE130A027B7F43833C7C43F403F665A /* GlobalExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; 98BC38F964FA856EBFF4A1910983AD93 /* FIRCoreDiagnosticsConnector.m in Sources */ = {isa = PBXBuildFile; fileRef = 753BDE10DDED75830C20C2C67239AFB6 /* FIRCoreDiagnosticsConnector.m */; }; - 98F4394CA1EE78DF275BDC48DA4339EA /* ARTNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 07C4828CD0AFEB81ABBE1417846D2AAB /* ARTNode.m */; }; - 98F5499FC548222E238209963B115D3B /* RCTSurfaceDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = 5787EFC5AEE0F00EE6CA2F88DF3F334D /* RCTSurfaceDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 98F4394CA1EE78DF275BDC48DA4339EA /* ARTNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 2A445D57406D89161D847FE6F493ED4B /* ARTNode.m */; }; + 98F5499FC548222E238209963B115D3B /* RCTSurfaceDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = 78EE734148AADC58A891BBB0E623DDE9 /* RCTSurfaceDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; }; 9910F5FE4D2C0D432E4ABF9C0054E469 /* Pods-RocketChatRN-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = D70D9EBB5B766C22C2364940119C9F1B /* Pods-RocketChatRN-umbrella.h */; settings = {ATTRIBUTES = (Project, ); }; }; 991C9DFB4E1EBB20D56E31715E457B50 /* lossless.c in Sources */ = {isa = PBXBuildFile; fileRef = 6F75B49F38575EBEFE4DAC7ED4CC9EF1 /* lossless.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 992CB0C6A03D842795BDF2045C33951E /* RNDocumentPicker.m in Sources */ = {isa = PBXBuildFile; fileRef = 21FA8F5FC5A5FA3D930E63232DACA794 /* RNDocumentPicker.m */; }; + 992CB0C6A03D842795BDF2045C33951E /* RNDocumentPicker.m in Sources */ = {isa = PBXBuildFile; fileRef = 87D7C7C971E7E0DA4B32416966950A17 /* RNDocumentPicker.m */; }; 993DEE091D2ECD262F17F281E60653C7 /* thread_utils.h in Headers */ = {isa = PBXBuildFile; fileRef = 160D5029DBA2C42C89315C3F98DE573A /* thread_utils.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 99422D209EA8F36C23CB01190A614AEB /* ja.lproj in Resources */ = {isa = PBXBuildFile; fileRef = C45617988D2E356E57BF3F7A0FE0E174 /* ja.lproj */; }; + 99422D209EA8F36C23CB01190A614AEB /* ja.lproj in Resources */ = {isa = PBXBuildFile; fileRef = 6D344A054FDE1477792585264715B486 /* ja.lproj */; }; 9951C53F8DF76B21CDD26CE830B47FBE /* Bits.h in Headers */ = {isa = PBXBuildFile; fileRef = 78123FF997D6AA4CC2BFABF1F0A93100 /* Bits.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 995C13DB63AB4E9744F9C574B39F789A /* RNBridgeModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 79815458817C4C36E6AD52E9F494CCCD /* RNBridgeModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 995C13DB63AB4E9744F9C574B39F789A /* RNBridgeModule.h in Headers */ = {isa = PBXBuildFile; fileRef = FEF30937C7417CE5CEB42200DA9287A4 /* RNBridgeModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; 99678E001CBB1408805660436395E723 /* DelayedDestruction.h in Headers */ = {isa = PBXBuildFile; fileRef = D91B29BF814BA82AA00D7CF512DC6069 /* DelayedDestruction.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 996D4ABCD9CAB8072567D11BB4A77972 /* RCTDefines.h in Headers */ = {isa = PBXBuildFile; fileRef = 16086B523FED7F06189654E0468CA934 /* RCTDefines.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9A1CAC0112D863F86569C7123C0E65ED /* RCTBaseTextInputView.h in Headers */ = {isa = PBXBuildFile; fileRef = AD3342661710A1005E85BC5965CB60F6 /* RCTBaseTextInputView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 996D4ABCD9CAB8072567D11BB4A77972 /* RCTDefines.h in Headers */ = {isa = PBXBuildFile; fileRef = 1E7C3B2B241134A08DEAD77648CFB6D7 /* RCTDefines.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9A1CAC0112D863F86569C7123C0E65ED /* RCTBaseTextInputView.h in Headers */ = {isa = PBXBuildFile; fileRef = DC6592B4391775FBC8ED0AF7FD7C660B /* RCTBaseTextInputView.h */; settings = {ATTRIBUTES = (Project, ); }; }; 9A563C719409A7F1D2A79F1A491DCCB1 /* types.h in Headers */ = {isa = PBXBuildFile; fileRef = 93BBD2DCE145C7DACA7A580FA1AC0F60 /* types.h */; settings = {ATTRIBUTES = (Project, ); }; }; 9A6584332A48346E435E1681FAF817BF /* alpha_processing_neon.c in Sources */ = {isa = PBXBuildFile; fileRef = 3254163C10759D309B2575E574C6828A /* alpha_processing_neon.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 9AAB02F415E5FC4AA386B4B262881EEF /* RCTComponentEvent.h in Headers */ = {isa = PBXBuildFile; fileRef = AEF51B0C250F3801E5F3D379897E6638 /* RCTComponentEvent.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9AB480E0617FAB77DFDCDF1E49FDFABA /* jsilib-posix.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D4991175000D7060B41FF0388F84CD7B /* 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 = D0A3C68B487A7AA617560F9733EB33FE /* RCTComponentEvent.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9AB480E0617FAB77DFDCDF1E49FDFABA /* jsilib-posix.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 4959DB2E841802837EE55AADD8292050 /* 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 = D633C6BF035437D71F6FB57994AC25E7 /* FlipperStateUpdateListener.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9AE25D78D388B01F02FAF32C7D81B390 /* RNCCameraRollManager.m in Sources */ = {isa = PBXBuildFile; fileRef = F95EDB6F891DB33312838AF3CFEBCE5D /* RNCCameraRollManager.m */; }; + 9AE25D78D388B01F02FAF32C7D81B390 /* RNCCameraRollManager.m in Sources */ = {isa = PBXBuildFile; fileRef = CC7F9315E3352B0D9A7BBDE3D06FB105 /* RNCCameraRollManager.m */; }; 9AEE62323E7D508CCE862B14ADE42BDA /* FKPortForwardingServer.h in Headers */ = {isa = PBXBuildFile; fileRef = FB37D546EB0080A6541C5BD705C2E52F /* FKPortForwardingServer.h */; settings = {ATTRIBUTES = (Project, ); }; }; 9AF3AC333D8D973E63790414985BCCB4 /* FBLPromise+All.m in Sources */ = {isa = PBXBuildFile; fileRef = 0FACA78D90AB953F871C42892796C3B0 /* FBLPromise+All.m */; }; 9B4D7BA740D6D143C5135BEA996C504F /* MPMCPipelineDetail.h in Headers */ = {isa = PBXBuildFile; fileRef = 1ABF60825E26576EBCDB04028A7ACF8E /* MPMCPipelineDetail.h */; settings = {ATTRIBUTES = (Project, ); }; }; 9B5F3A51D09EF1FFC6732A3E9664F8EF /* Conv.h in Headers */ = {isa = PBXBuildFile; fileRef = A976C24D3A149D5463B2AC6009B2DEA9 /* Conv.h */; settings = {ATTRIBUTES = (Project, ); }; }; 9B68BF491BB75FAAA081B710C4A019B5 /* UIColor+SKSonarValueCoder.h in Headers */ = {isa = PBXBuildFile; fileRef = 222E9654CA1C5DC25162987035779AAB /* UIColor+SKSonarValueCoder.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9B6F64DDBE87EB44B326E289C0A1379F /* RCTTextShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = 53BA2EEBDACA3F00B86D18D7ED315D3E /* RCTTextShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9B7D1422B56339A28AD9D4F4113A4C54 /* RCTStyleAnimatedNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 71FC861FA342057264415C3E6A5BF805 /* 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 = 67DE68077134FE64C136C6E93320E3E3 /* RCTProfileTrampoline-x86_64.S */; }; + 9B6F64DDBE87EB44B326E289C0A1379F /* RCTTextShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = 785228C5185FAFB6F3841D742E180506 /* RCTTextShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9B7D1422B56339A28AD9D4F4113A4C54 /* RCTStyleAnimatedNode.m in Sources */ = {isa = PBXBuildFile; fileRef = C1BA7C0A7B250DD8A9CDA8A914A6094D /* 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 = A4795321C69CF82E180EB5008B2DDB9E /* RCTProfileTrampoline-x86_64.S */; }; 9B9F376651B01626682667F916263D33 /* GDTCOREvent.h in Headers */ = {isa = PBXBuildFile; fileRef = 0686C0EC9AF0D66EFC1B412EB9124045 /* GDTCOREvent.h */; settings = {ATTRIBUTES = (Project, ); }; }; 9BA3070F2D82AB8E6B229971E126D4B2 /* upsampling_msa.c in Sources */ = {isa = PBXBuildFile; fileRef = D2A120CA34815BB3A1C46C26AA00E5BC /* upsampling_msa.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 9BA8D8C40A0F28214F8BF4B31C15A8F8 /* EXAudioRecordingPermissionRequester.m in Sources */ = {isa = PBXBuildFile; fileRef = 3486F0BAF3DFB19D0DC2AB86584B4982 /* EXAudioRecordingPermissionRequester.m */; }; + 9BA8D8C40A0F28214F8BF4B31C15A8F8 /* EXAudioRecordingPermissionRequester.m in Sources */ = {isa = PBXBuildFile; fileRef = 009F1A08CB0A50EA5E3CAB30B726B94B /* EXAudioRecordingPermissionRequester.m */; }; 9BD1674F1714F428A9214FBECF3A70CB /* FBLPromises.h in Headers */ = {isa = PBXBuildFile; fileRef = 54206605F2A52BE5BA373E192791E240 /* FBLPromises.h */; settings = {ATTRIBUTES = (Project, ); }; }; 9BD2D2FA032357A4E0957F26F2857EF7 /* EventBaseLocal.cpp in Sources */ = {isa = PBXBuildFile; fileRef = C617BD7A6A238D72724BEC1D456C125E /* 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 = 6ABBF6A6D0FACB32AD2FDE3C593A3775 /* RCTModalHostViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9BEC9CCAE8723F6FCEBAFF8AFDFE2089 /* EXAudioSessionManager.h in Headers */ = {isa = PBXBuildFile; fileRef = AFB2F99EB1D0F838AAD992D65571C7EB /* EXAudioSessionManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9BEC51D393D8EA15CDD2F5111C372E3C /* RCTModalHostViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = F7C63095C9483BE20BF327642FCFA2F5 /* RCTModalHostViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9BEC9CCAE8723F6FCEBAFF8AFDFE2089 /* EXAudioSessionManager.h in Headers */ = {isa = PBXBuildFile; fileRef = E48A225EE28C7E04CBEA32486A3DF3D1 /* EXAudioSessionManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; 9C3FA983775EB1772439679760DDCD26 /* F14Set.h in Headers */ = {isa = PBXBuildFile; fileRef = 4A8A447263A0ADCDDC5832F1711C99F3 /* F14Set.h */; settings = {ATTRIBUTES = (Project, ); }; }; 9C51952E3EB004507F8D0CE623D3C837 /* F14MapFallback.h in Headers */ = {isa = PBXBuildFile; fileRef = 7553ED96421EBDED21160EA3D14231C7 /* F14MapFallback.h */; settings = {ATTRIBUTES = (Project, ); }; }; 9C5F0C01FF4777F79659AD5434CD88E2 /* GoogleDataTransportCCTSupport-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = F4C456EFAF93A0A1D60547394235DAA4 /* GoogleDataTransportCCTSupport-dummy.m */; }; 9C6A5C8A1A300380603454BBB6B72200 /* PasswordInFile.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9A95DD3EB3F6CB78E76B32197DA83AD4 /* 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 = 8933F929FA40BDE07338D3050D54C5CD /* SDImageTransformer.m */; }; - 9C7B992227884E45708C42CB4298926C /* SDWebImageDownloaderOperation.h in Headers */ = {isa = PBXBuildFile; fileRef = 131281C3CA3CBEF8B374B1DA5946C719 /* SDWebImageDownloaderOperation.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9C86D160EAD50FDAE70F149EC8944D0B /* BSG_KSLogger.h in Headers */ = {isa = PBXBuildFile; fileRef = 1A0B8792CF6208F57C912BB7C29B4FCB /* BSG_KSLogger.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9CA86B6E4ED4E03CDBD1845A76675841 /* RCTModalHostViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = 5C14E98BA965F968CFF8E6D76B8CD33C /* RCTModalHostViewController.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9CBD1E29C594B829B142A09CA0012957 /* QBAlbumCell.h in Headers */ = {isa = PBXBuildFile; fileRef = 2C514716EB275CDB666C4007580DC233 /* QBAlbumCell.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9CCBAE2F7B397CCE5B2F4A0389610216 /* RCTSliderManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 5613065B221600F128B6FF6153943DAD /* RCTSliderManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9CE4BBBC558CE96AEB10D5D105E1026E /* UMModuleRegistry.h in Headers */ = {isa = PBXBuildFile; fileRef = FC60657ABF083F4E205C72EFD4A89ED6 /* UMModuleRegistry.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9C6C20D5C4BE8F71CA3D3F1E8F3587AE /* SDImageTransformer.m in Sources */ = {isa = PBXBuildFile; fileRef = 51890F9C01601CCC053E579463C52B0C /* SDImageTransformer.m */; }; + 9C86D160EAD50FDAE70F149EC8944D0B /* BSG_KSLogger.h in Headers */ = {isa = PBXBuildFile; fileRef = 428E22FE6E3F4BDB53C8B9ACA6B13938 /* BSG_KSLogger.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9CA86B6E4ED4E03CDBD1845A76675841 /* RCTModalHostViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = 13E446B7980C89510B45F4AC8D1DBA16 /* RCTModalHostViewController.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9CBD1E29C594B829B142A09CA0012957 /* QBAlbumCell.h in Headers */ = {isa = PBXBuildFile; fileRef = A7CAAD1ED4F12E5B2F74362B2A7C67E2 /* QBAlbumCell.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9CCBAE2F7B397CCE5B2F4A0389610216 /* RCTSliderManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 57826D5215B3A7BD6F723B49B7080785 /* RCTSliderManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9CE4BBBC558CE96AEB10D5D105E1026E /* UMModuleRegistry.h in Headers */ = {isa = PBXBuildFile; fileRef = CE5D5C6FCCCC0DEA7E9C7F3B7EDEED30 /* UMModuleRegistry.h */; settings = {ATTRIBUTES = (Project, ); }; }; 9CEF58684C0371C5723617778FDCAE9C /* String.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F85897453E0E73C94F5F641AF96E26FA /* 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 = 4B52B751D77ED694DEA2432467C4AB0E /* diy-fp.cc */; settings = {COMPILER_FLAGS = "-Wno-unreachable-code"; }; }; - 9D37636BA7F0F4817392EBDD054CE8BD /* RCTUIManager.h in Headers */ = {isa = PBXBuildFile; fileRef = E53AEEF65E5EA757BE3F9EE86AD64F87 /* RCTUIManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9D40193CB85DBCD47F289B51589CE632 /* RCTMultilineTextInputViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 6D4994A75D45527F7F5930F67C8B5BEB /* RCTMultilineTextInputViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9D43DF78A03C487B9901718BC83F99B3 /* RCTJavaScriptLoader.mm in Sources */ = {isa = PBXBuildFile; fileRef = AC06E8BB8CABAFF99B9F61176E5F56DA /* 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 = A277DF5B66397F66164BD142D7155F5E /* 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 = 4771CCC3D05E5289CEBBA3375D768D88 /* RNRotationHandler.m */; }; - 9D7DB8C63567BA4261B7F1C2D66253D3 /* Private.h in Headers */ = {isa = PBXBuildFile; fileRef = 2C4AD36AF9A99718600B5ECBED9C08F9 /* Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9D37636BA7F0F4817392EBDD054CE8BD /* RCTUIManager.h in Headers */ = {isa = PBXBuildFile; fileRef = D9A49EBCBD7B4004ACAFC5E5691F8EE8 /* RCTUIManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9D40193CB85DBCD47F289B51589CE632 /* RCTMultilineTextInputViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = D217CFE89B9E5B40B749EA8A663694A2 /* RCTMultilineTextInputViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9D43DF78A03C487B9901718BC83F99B3 /* RCTJavaScriptLoader.mm in Sources */ = {isa = PBXBuildFile; fileRef = 1DAF91F53F6948D0D5A58CA5E32D0DE5 /* RCTJavaScriptLoader.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 9D51497EC2D05F3283426C9523C8394D /* SDWebImageDownloaderRequestModifier.h in Headers */ = {isa = PBXBuildFile; fileRef = E8272C83E7406895D3FF58AA4451AC95 /* SDWebImageDownloaderRequestModifier.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9D69DBE4C6CD55904653B09557C7F472 /* RCTSettingsPlugins.mm in Sources */ = {isa = PBXBuildFile; fileRef = AC6C66141EB68FB0DF7B8B82D9435216 /* 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 = 69624FADA2965423910E0A13E16D897F /* RNRotationHandler.m */; }; + 9D7DB8C63567BA4261B7F1C2D66253D3 /* Private.h in Headers */ = {isa = PBXBuildFile; fileRef = 3EDB6D361FBC4C557F4B41919CD34F03 /* Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; 9D8A2D740406E1048CB8E1A98A994667 /* ConnectionContextStore.h in Headers */ = {isa = PBXBuildFile; fileRef = 9F67E3B28CF2EB033B8DF3FB2E30B46B /* ConnectionContextStore.h */; settings = {ATTRIBUTES = (Project, ); }; }; 9D8D4EA0BAF1DF8818D1DCC72529B339 /* AsyncSocket.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 6676BE95A0304CF6A7BEB240331C4C8D /* 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 = B76EB25240F6DF11F9866520FD1C8839 /* raw_logging.h */; settings = {ATTRIBUTES = (Project, ); }; }; 9DA425D4E355C44431E6DCB6C10328DE /* SSLErrors.cpp in Sources */ = {isa = PBXBuildFile; fileRef = C438EEE3355895D23EA3E76753FF02C6 /* 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 = EB8FADF2D99C656B2A39992CC07D3C26 /* RNCSlider.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9E04D8058BC6847CAC65773EED54D05C /* RNFirebaseFirestoreDocumentReference.h in Headers */ = {isa = PBXBuildFile; fileRef = B2A65FAA3A125CE2669673364E022301 /* RNFirebaseFirestoreDocumentReference.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9DE38323C633F51207B437E17263CBEC /* SDWebImageDownloaderResponseModifier.h in Headers */ = {isa = PBXBuildFile; fileRef = 3FB9F58959D458A4778A50E45AD6CBEF /* SDWebImageDownloaderResponseModifier.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9DE9270C04172DD40D69B6D9546516B9 /* RNCSlider.h in Headers */ = {isa = PBXBuildFile; fileRef = A3EDD26FB84042F2AF97833D63518172 /* RNCSlider.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9E04D8058BC6847CAC65773EED54D05C /* RNFirebaseFirestoreDocumentReference.h in Headers */ = {isa = PBXBuildFile; fileRef = C3E090A4891088B0395C87EA07C77B16 /* RNFirebaseFirestoreDocumentReference.h */; settings = {ATTRIBUTES = (Project, ); }; }; 9E2A037E4D6EF9CD80A27514CB192F30 /* FBLPromiseError.m in Sources */ = {isa = PBXBuildFile; fileRef = D8E6A9062F6922C1F19C0FE487B5C685 /* FBLPromiseError.m */; }; - 9E44726B3E6CED0E7F3B229765C52343 /* RCTLayout.h in Headers */ = {isa = PBXBuildFile; fileRef = FA69A99024BDCBE4333176094838F08B /* RCTLayout.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9E58367E443DD0FD20CD406075AC1BAF /* RCTPlatform.h in Headers */ = {isa = PBXBuildFile; fileRef = 0E07A1EA86C3DEBCE81DC09370DFC974 /* RCTPlatform.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9E622B9D79EE00F811C5B02B4FC12342 /* BSG_KSCrashReportFilter.h in Headers */ = {isa = PBXBuildFile; fileRef = CA16BF55FDA9DBC46F00C4AF3230C6D5 /* BSG_KSCrashReportFilter.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9E44726B3E6CED0E7F3B229765C52343 /* RCTLayout.h in Headers */ = {isa = PBXBuildFile; fileRef = B096F2B0A044D9B4E531C0A85DB9698C /* RCTLayout.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9E58367E443DD0FD20CD406075AC1BAF /* RCTPlatform.h in Headers */ = {isa = PBXBuildFile; fileRef = E8D327EEDF399F295F136B6152D3F9CB /* RCTPlatform.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9E622B9D79EE00F811C5B02B4FC12342 /* BSG_KSCrashReportFilter.h in Headers */ = {isa = PBXBuildFile; fileRef = 83FC675644CE3B3C8013873E836AFB44 /* BSG_KSCrashReportFilter.h */; settings = {ATTRIBUTES = (Project, ); }; }; 9E7028FA0F2ABF7D93770A85B5558BAC /* ScheduledFrameTransport.cpp in Sources */ = {isa = PBXBuildFile; fileRef = EE36919341A524F6869FDFFF1B326CC3 /* 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 = AC147D64E4CB195E28D96464BB18ACD6 /* SysMman.h */; settings = {ATTRIBUTES = (Project, ); }; }; 9EA5C0B783EB521B73FAFDBF1BF1642A /* Shell.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 84887842153D8E6D48F397114335F4A0 /* 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 = 0FDC6B990073E8B1A8B035C2933F316A /* 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 = 3A30E79178D6FA0359C8D0889910DDD0 /* FBLPromise+Always.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9F126C1826371F586DAD449F9B02AC69 /* UIView+WebCache.m in Sources */ = {isa = PBXBuildFile; fileRef = DB39F9CF2B97369F70DE7538C2026439 /* UIView+WebCache.m */; }; - 9F1D654311A7953EE6DE9BE7600544C3 /* RCTTouchHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = C0A3B1DB40C9E348BFB3FE22BA06305C /* RCTTouchHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9F126C1826371F586DAD449F9B02AC69 /* UIView+WebCache.m in Sources */ = {isa = PBXBuildFile; fileRef = EA60C36F2633ACD90522EC25F34E1E51 /* UIView+WebCache.m */; }; + 9F1D654311A7953EE6DE9BE7600544C3 /* RCTTouchHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 77A500EDCB6B70D13DC0361DEEE1B687 /* RCTTouchHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; 9F306FCB67D6ADDA635F9D9A81D22BFA /* Cursor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = CC685F7EE31C2D674B7F7C2FA09D3C1C /* 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 = 69E84637B197F201A5C192376A7F6D80 /* SDImageGIFCoder.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9F5B9F9DE3D91E7196A1649FA52EEDAA /* SDAnimatedImagePlayer.m in Sources */ = {isa = PBXBuildFile; fileRef = 9C6C0395078634D7C1B9E8CF716DE049 /* SDAnimatedImagePlayer.m */; }; + 9F5B9F9DE3D91E7196A1649FA52EEDAA /* SDAnimatedImagePlayer.m in Sources */ = {isa = PBXBuildFile; fileRef = 50FBB239ECC5D997D96FB4D43BD76245 /* SDAnimatedImagePlayer.m */; }; 9F69F8135343C51A14ECEC3DE3FEC05F /* format_constants.h in Headers */ = {isa = PBXBuildFile; fileRef = F093CCFA514D482A086778DEBBB51F33 /* format_constants.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9F7405607659697C93649510BB7FBC5B /* RCTCxxUtils.mm in Sources */ = {isa = PBXBuildFile; fileRef = 5A8E5DA5F58F53A59DF787F4DBDA183C /* 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 = 329D53AA3B2CB48810229043407F62BB /* 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 = 4D9974CBD930078B900874EECD585316 /* 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 = 2AC7952E4EB82FDF80EE45F4F7C9817C /* 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 = 0E1555A71B1B88690357F182AE3E27EA /* EXVideoPlayerViewControllerDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9FCA0C85E502C92ACFA86EABD32B2224 /* react-native-orientation-locker-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 60BC1B16DBA95BF0B4A0A58D8D19924C /* react-native-orientation-locker-dummy.m */; }; - A02478583635DC43AF9D1BA278F4ABDD /* RNFetchBlobNetwork.h in Headers */ = {isa = PBXBuildFile; fileRef = FD61AA0240C1699452A5688EF562C34A /* RNFetchBlobNetwork.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A02936B34ECF830DE1E1034B359D50C0 /* Yoga.h in Headers */ = {isa = PBXBuildFile; fileRef = 16EDF9F4F68DD8A45FAF7D7434479632 /* Yoga.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A031A8D4C70ABFA2E6794E0A997A259C /* react-native-background-timer-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 4D11220ABDB67C6C08B65828ED1B9A50 /* react-native-background-timer-dummy.m */; }; + 9F8FA661BDBEB4BB9B95E9CF05A4A88A /* RCTDivisionAnimatedNode.m in Sources */ = {isa = PBXBuildFile; fileRef = CABA6F93F6472AC7B667512C26819F35 /* 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 = B43C3E2D661BFB7286547B6494BCC258 /* EXVideoPlayerViewControllerDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9FCA0C85E502C92ACFA86EABD32B2224 /* react-native-orientation-locker-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 67A8DB554686638B37240B1872C5680F /* react-native-orientation-locker-dummy.m */; }; + A02478583635DC43AF9D1BA278F4ABDD /* RNFetchBlobNetwork.h in Headers */ = {isa = PBXBuildFile; fileRef = DEB3479887188EAFB1998B464C6ADEB3 /* RNFetchBlobNetwork.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A02936B34ECF830DE1E1034B359D50C0 /* Yoga.h in Headers */ = {isa = PBXBuildFile; fileRef = DB6735B38020BAF443720BEF9222ADE0 /* Yoga.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A031A8D4C70ABFA2E6794E0A997A259C /* react-native-background-timer-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 372DB417B8F87A158C454137856913C5 /* react-native-background-timer-dummy.m */; }; A059C81E5903478539477CD5EF45FA2B /* TypeInfo.h in Headers */ = {isa = PBXBuildFile; fileRef = 41FE12E33CA973C1CA3D422181BB6C86 /* TypeInfo.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A06691A45194C29EF1D311E2C72EE52F /* RNCWebView.h in Headers */ = {isa = PBXBuildFile; fileRef = 813969899FF7A97B2580ECA23BEF72A2 /* RNCWebView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A06FEF799AA13ED077FFB3494AEDD1DB /* EXLocalAuthentication-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = ED55C10A7DA7EE91F2EF2FBF40E36ED5 /* EXLocalAuthentication-dummy.m */; }; - A0BF45E5F3EAE179E31DC5E47DDD313D /* BitUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = D6E511CDA073D7085B98A69C0BF9E92B /* BitUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A0E05E18B7340C52E3407E9F710973B3 /* en.lproj in Resources */ = {isa = PBXBuildFile; fileRef = 5CA21ACF7962D1714E14223EB2D8BCDF /* en.lproj */; }; - A0F47781BEEC2952B78510FD30C65D7D /* RCTMaskedView.h in Headers */ = {isa = PBXBuildFile; fileRef = 55A754F94E16C39635E2AF9354FBFA4B /* RCTMaskedView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A108D0C39E6723A4722696896373F561 /* RNCAsyncStorageDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = BE2A853BA7F9A576904BEA2F920D162A /* RNCAsyncStorageDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A06691A45194C29EF1D311E2C72EE52F /* RNCWebView.h in Headers */ = {isa = PBXBuildFile; fileRef = 741197283CA157345932A937948D1B9A /* RNCWebView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A06FEF799AA13ED077FFB3494AEDD1DB /* EXLocalAuthentication-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = A03A8F6DD32DB385864D9A186CDA2E4F /* EXLocalAuthentication-dummy.m */; }; + A0BF45E5F3EAE179E31DC5E47DDD313D /* BitUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = AF418F68F0F15D466B7CE3C7187E7C91 /* BitUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A0E05E18B7340C52E3407E9F710973B3 /* en.lproj in Resources */ = {isa = PBXBuildFile; fileRef = 675C095EBCEA9AD4F768FCF263B6F1B5 /* en.lproj */; }; + A0F47781BEEC2952B78510FD30C65D7D /* RCTMaskedView.h in Headers */ = {isa = PBXBuildFile; fileRef = AE41CBA7D7724FB150597E80EEE32D54 /* RCTMaskedView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A108D0C39E6723A4722696896373F561 /* RNCAsyncStorageDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = EF4B8F7C058E572DCBD603D8A4AD2E5E /* RNCAsyncStorageDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; }; A110C4BDF27CB8ADE103964E9B1D0CC3 /* FBLPromise+Catch.h in Headers */ = {isa = PBXBuildFile; fileRef = 01AEDCFC3ED04DFFE39D6F80D460287A /* FBLPromise+Catch.h */; settings = {ATTRIBUTES = (Project, ); }; }; A112F0DEF56645CF1EA28BFCCAFF8332 /* Promise-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = E096B85EA81BD0F719205C885724C82B /* Promise-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; A123B51082FE44EDECB490C88DE3DFA3 /* GDTCORTransformer_Private.h in Headers */ = {isa = PBXBuildFile; fileRef = 58A8142F2BD32A0A573F388E0EB7C982 /* GDTCORTransformer_Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; A134CBE0553F5F3339A4A20A87F18E3C /* filters_utils.c in Sources */ = {isa = PBXBuildFile; fileRef = DE99BB1443E28E0AB813383FDDAB4BB7 /* filters_utils.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; + A13E4C4D56442F5E2F209E1F3DC55BAF /* NSButton+WebCache.h in Headers */ = {isa = PBXBuildFile; fileRef = C41134D489B1012CFE2822E772D00509 /* NSButton+WebCache.h */; settings = {ATTRIBUTES = (Project, ); }; }; A1471032678B3AD024125ABA40B35D15 /* MallctlHelper.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 29E9C1CBBFB95DE4094DBF41CFB75549 /* 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 = 0C5479F774B6CA1B2BC9515C2724511F /* RCTTypedModuleConstants.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A1582553685734DA47129C215578CE99 /* RCTTypedModuleConstants.h in Headers */ = {isa = PBXBuildFile; fileRef = AAEC32AC425688FBB8601407BC3EDCE9 /* RCTTypedModuleConstants.h */; settings = {ATTRIBUTES = (Project, ); }; }; A15EBE154B437F49646D3509D0113685 /* Format-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = C4CA6DE0516D51CDB6B6CDE905DA3D78 /* Format-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A15EDE1DE8C6DCDFCE68CFF7C31BAF24 /* RCTRootView.m in Sources */ = {isa = PBXBuildFile; fileRef = B71CC676F795E509843A7A323A901A01 /* 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 = 8314C783AAAD40DF3EC8B2AB3571FDCD /* RNCommandsHandler.m */; }; + A15EDE1DE8C6DCDFCE68CFF7C31BAF24 /* RCTRootView.m in Sources */ = {isa = PBXBuildFile; fileRef = AFEE683D106C72392F7771B6BC5A8E3F /* 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 = CA654CC2D3556857A8BA944DF2C6E89C /* RNCommandsHandler.m */; }; A1BD3EF5F8E40C42F8C2E6311902DF10 /* PTProtocol.m in Sources */ = {isa = PBXBuildFile; fileRef = 2724C31E54B001AE871AF4177D6E4099 /* PTProtocol.m */; }; A1CA7EBFC2566496011ABF1D36B56A03 /* SysFile.h in Headers */ = {isa = PBXBuildFile; fileRef = F9DA532F1B119E3069F870EED104B2FB /* SysFile.h */; settings = {ATTRIBUTES = (Project, ); }; }; A1D4663851C21E6CE831427D256B8221 /* Instructions.h in Headers */ = {isa = PBXBuildFile; fileRef = D8B731924D7E9A3A0E303495DAB9B40A /* Instructions.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A20814ED32ACFBE1A68407431BFA4038 /* RCTSettingsManager.mm in Sources */ = {isa = PBXBuildFile; fileRef = A26A7EF563377345BE162F627EAD070F /* 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 = 513CCD42219FDB82C128464C0AD3C6CF /* RCTImagePlugins.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A21AA461DFBE94B5DA7E5BEB211CE665 /* RCTConvert+FFFastImage.m in Sources */ = {isa = PBXBuildFile; fileRef = 3149899EA1140A5AAE52CCD55745C11B /* RCTConvert+FFFastImage.m */; }; - A22002A0C7C80FCF08FED28DB6F224E1 /* BSG_KSObjC.h in Headers */ = {isa = PBXBuildFile; fileRef = 91031C2D142B91C4659188043CFBB59E /* BSG_KSObjC.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A20814ED32ACFBE1A68407431BFA4038 /* RCTSettingsManager.mm in Sources */ = {isa = PBXBuildFile; fileRef = 5E3F476E74DD223B1A141DE6F15D76E9 /* 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 = D9AD525BD78EE273535FA726D075393C /* RCTImagePlugins.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A21AA461DFBE94B5DA7E5BEB211CE665 /* RCTConvert+FFFastImage.m in Sources */ = {isa = PBXBuildFile; fileRef = 71EAB343DAEF9715E19AF441DAF4D377 /* RCTConvert+FFFastImage.m */; }; + A22002A0C7C80FCF08FED28DB6F224E1 /* BSG_KSObjC.h in Headers */ = {isa = PBXBuildFile; fileRef = 10AFB724F1BD20A55EBE95DD3FA755C0 /* BSG_KSObjC.h */; settings = {ATTRIBUTES = (Project, ); }; }; A27018554691D73B87FDF4C4F38FFA5E /* Unicode.cpp in Sources */ = {isa = PBXBuildFile; fileRef = C85B32CE09C0680D191A596247D33DBE /* 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 = C33745890C9F91ADF6EB4AB0EB5ECE70 /* 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 = 0A68C5D28DBCE392CF63F916CC3F7262 /* 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 = 229E2B54AB29984EC08EBB7E55115D30 /* MemoryIdler.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A2AC30DF5EA70858EE380D76BB0D7697 /* SDWebImageCacheKeyFilter.h in Headers */ = {isa = PBXBuildFile; fileRef = 4C79CE516CD630657363DDBDCA522425 /* SDWebImageCacheKeyFilter.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A2D4FC56C5FBD42F95A12900620C2A65 /* SDAsyncBlockOperation.h in Headers */ = {isa = PBXBuildFile; fileRef = 76421776D82B4D7F763F40B43681EE6B /* SDAsyncBlockOperation.h */; settings = {ATTRIBUTES = (Project, ); }; }; A2FB46DA4CC36021A5ECDACECFFC780F /* CallstackHelper.h in Headers */ = {isa = PBXBuildFile; fileRef = 3151A27F8EB83157C77B704A82CEAB27 /* CallstackHelper.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A3045BF0AB3663CF2F6AE4A494A26561 /* SDWebImageCacheSerializer.h in Headers */ = {isa = PBXBuildFile; fileRef = C83DD93FD4E6AE1433C2F04BA609814C /* SDWebImageCacheSerializer.h */; settings = {ATTRIBUTES = (Project, ); }; }; A30A244FB2E4A6C5EB09D2C8567E9F5B /* GULLoggerLevel.h in Headers */ = {isa = PBXBuildFile; fileRef = 2EF43FFB9533324103690B426A450B35 /* GULLoggerLevel.h */; settings = {ATTRIBUTES = (Project, ); }; }; A30E24B8DAB4E9B313DEC9A9B3F70A3C /* PropagateConst.h in Headers */ = {isa = PBXBuildFile; fileRef = 7C65F5B0700270E45B94C5E35FFBD4D8 /* PropagateConst.h */; settings = {ATTRIBUTES = (Project, ); }; }; A3235E29BA5E0D51FA6508C3DBD5AE17 /* ThreadName.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 761200C677DC6FC1D4743B8A10AC55B3 /* ThreadName.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; A33402260339194D8E4F42EFF7FD03AA /* TOCropScrollView.h in Headers */ = {isa = PBXBuildFile; fileRef = A810AEA1B09EFAD2784CE0CB999EBC89 /* TOCropScrollView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A3377E75A6E4A4461B63CFAAC884C5F3 /* UMAppLoaderProvider.h in Headers */ = {isa = PBXBuildFile; fileRef = 2E04D3A647F36E8B028E2D8851475024 /* UMAppLoaderProvider.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A33A3974F5C9C762E24A8248D8300565 /* UIImage+Extension.h in Headers */ = {isa = PBXBuildFile; fileRef = 2E31D2EDC5ECA24821ED9B416DBC9795 /* UIImage+Extension.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A3377E75A6E4A4461B63CFAAC884C5F3 /* UMAppLoaderProvider.h in Headers */ = {isa = PBXBuildFile; fileRef = B51908D587BB63DC563FC6F15AC054C8 /* UMAppLoaderProvider.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A33A3974F5C9C762E24A8248D8300565 /* UIImage+Extension.h in Headers */ = {isa = PBXBuildFile; fileRef = E77C6EF35804E2DA91EAB8864DBFBC87 /* UIImage+Extension.h */; settings = {ATTRIBUTES = (Project, ); }; }; A33AEAE53F5DA1DBE42A13F0F7180FD1 /* GULOriginalIMPConvenienceMacros.h in Headers */ = {isa = PBXBuildFile; fileRef = B8440B56243829CB710E5A438AC1A9CF /* GULOriginalIMPConvenienceMacros.h */; settings = {ATTRIBUTES = (Project, ); }; }; A348E879FA3330E1712179F5B4FAC236 /* vp8l_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = F62789A845A410353364C9043AA03482 /* vp8l_enc.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; A372D39001A447E659CDFBC16C14DCBE /* CacheLocality.h in Headers */ = {isa = PBXBuildFile; fileRef = B6FA701B21708A73117560B03415D018 /* CacheLocality.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A389B2C547392252B058625077DD86C9 /* RCTMultiplicationAnimatedNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 0615D3DFC82C26757E1BD398535DAACC /* RCTMultiplicationAnimatedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A389B2C547392252B058625077DD86C9 /* RCTMultiplicationAnimatedNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 73EE8687E6D48FEE79F189234F943459 /* RCTMultiplicationAnimatedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; A38E1CD55FB4C876BFA4BFFFAE20F7D3 /* FrameSerializer_v1_0.h in Headers */ = {isa = PBXBuildFile; fileRef = 833332B1E0595783A9D2377B0749EAC3 /* FrameSerializer_v1_0.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A393F9F256FD061ADB964F68150EA99B /* React-CoreModules-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = DE1A9DCFA71D2A144B640AFE2807BA7F /* React-CoreModules-dummy.m */; }; - A3B77A398A9F20922A25D059D4FCF451 /* RCTComponent.h in Headers */ = {isa = PBXBuildFile; fileRef = AEF05B137E6222CA20F7C962A1AE1E34 /* RCTComponent.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A3C5B95F92F2124418433EE74AF6D2E1 /* UMModuleRegistryHolderReactModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 9BF31BBF6F96CABF7114F9C5DABEBDCD /* UMModuleRegistryHolderReactModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A3C99329F26A99A80CC933452619226F /* RCTRefreshControlManager.h in Headers */ = {isa = PBXBuildFile; fileRef = E3E3D986F55303FD249D648C662FC6A5 /* RCTRefreshControlManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A393F9F256FD061ADB964F68150EA99B /* React-CoreModules-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 76D660193F2384193780B23275856585 /* React-CoreModules-dummy.m */; }; + A3B77A398A9F20922A25D059D4FCF451 /* RCTComponent.h in Headers */ = {isa = PBXBuildFile; fileRef = CA067CF703D09999E06B5ABC63FE518D /* RCTComponent.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A3C5B95F92F2124418433EE74AF6D2E1 /* UMModuleRegistryHolderReactModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 1DC3A38291602404DF9C037F60F8033F /* UMModuleRegistryHolderReactModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A3C99329F26A99A80CC933452619226F /* RCTRefreshControlManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 136E655496E176517522A7487C4759A4 /* RCTRefreshControlManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; A3FEE631937CCE97FD38F800E98895A7 /* UIView+SKInvalidation.mm in Sources */ = {isa = PBXBuildFile; fileRef = AEE163705C89AC21A131F39B79D0F63B /* 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 = 08942B0A179F3F1363C8C8572C592955 /* frame_dec.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; A42C59477BEC3A7A4D2CEBD6BC4A4F1E /* yuv_mips_dsp_r2.c in Sources */ = {isa = PBXBuildFile; fileRef = 605E9B6EC7A5EF37450BA6FA70F98A66 /* yuv_mips_dsp_r2.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; A43091390B40A7894AFABD8004B03FF6 /* GULHeartbeatDateStorage.h in Headers */ = {isa = PBXBuildFile; fileRef = F28F650D8D9AD88285C4A89116F9DB5B /* GULHeartbeatDateStorage.h */; settings = {ATTRIBUTES = (Project, ); }; }; A444AC14D1AB1CEDE00F63E32EA7F7E0 /* ObservableConcatOperators.h in Headers */ = {isa = PBXBuildFile; fileRef = A4EA72A930B146D8E06004CA5968769F /* ObservableConcatOperators.h */; settings = {ATTRIBUTES = (Project, ); }; }; A4576BBC57A17E26132B2DEFB9B1B5A6 /* SKViewControllerDescriptor.h in Headers */ = {isa = PBXBuildFile; fileRef = 5D82F2C393E23EC158471DF71457891E /* SKViewControllerDescriptor.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A4764E8EC572725B1EC20DE1F38F9ADB /* UMPermissionsInterface.h in Headers */ = {isa = PBXBuildFile; fileRef = BE4AC730FBA061A5322A81174F81411B /* UMPermissionsInterface.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A4AC2B3B0958347F35A3AE14A82BE595 /* RCTWrapperViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = B2A5B2891ADB13F1C0DE555A9C630A6F /* RCTWrapperViewController.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A4764E8EC572725B1EC20DE1F38F9ADB /* UMPermissionsInterface.h in Headers */ = {isa = PBXBuildFile; fileRef = FB8DD48B45AF9489F3422CCD27B9D3BF /* UMPermissionsInterface.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A48573BC990762DA98475AA4E59F4C55 /* UIButton+WebCache.h in Headers */ = {isa = PBXBuildFile; fileRef = 6064C286A06D68E762BC7DBF84D30658 /* UIButton+WebCache.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A4AC2B3B0958347F35A3AE14A82BE595 /* RCTWrapperViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = DDF37CD605C26917BAB25ADD66F85E0E /* RCTWrapperViewController.h */; settings = {ATTRIBUTES = (Project, ); }; }; A4B2A83F3F46087317BDA98ECA699248 /* Select64.h in Headers */ = {isa = PBXBuildFile; fileRef = 0A9C8AA219AAFDA477CA1004291AB179 /* Select64.h */; settings = {ATTRIBUTES = (Project, ); }; }; A4DF3AB01471BD888F4FD4EC2E9A21BE /* FIRComponent.m in Sources */ = {isa = PBXBuildFile; fileRef = 78F1AEF54D5F3A4102B848FA30901EA1 /* FIRComponent.m */; }; - A4ECFE935BBAB8F950062E28430507FC /* QBVideoIconView.h in Headers */ = {isa = PBXBuildFile; fileRef = 5FD47A2CFA0C7E037D8822F94D6775F8 /* QBVideoIconView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A4ECFE935BBAB8F950062E28430507FC /* QBVideoIconView.h in Headers */ = {isa = PBXBuildFile; fileRef = 95CEC13D041A8788A3A6DBBB8224F596 /* QBVideoIconView.h */; settings = {ATTRIBUTES = (Project, ); }; }; A4F849F5F0D9CD393F337409679534FC /* PTUSBHub.h in Headers */ = {isa = PBXBuildFile; fileRef = BF0C8319C7932A1BA4AE4B9C93D231B4 /* PTUSBHub.h */; settings = {ATTRIBUTES = (Project, ); }; }; A50388445DF10ADD6B22876F3F69E902 /* ssim.c in Sources */ = {isa = PBXBuildFile; fileRef = 98F3BE2618A790DD0537B38C7D8A4152 /* ssim.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; A530BB82BAF0C755B99BFCE96AC93639 /* BaselinesTcp.cpp in Sources */ = {isa = PBXBuildFile; fileRef = C2D12D9CB52D0A5C33E123C91F9F277C /* 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 = 203227B7E5F123C2C18C807954C432A9 /* ARTShapeManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A574026171CFEEC0EECDE544E2C1330B /* RNNotificationCenter.h in Headers */ = {isa = PBXBuildFile; fileRef = 648C3C9B39B77082CA8AE80E2173EBD5 /* RNNotificationCenter.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A578B94A41F41F9D07A358C7D2874C0C /* UIView+WebCacheOperation.h in Headers */ = {isa = PBXBuildFile; fileRef = C8A26A69F3EF4F2DE018599DA2868F89 /* UIView+WebCacheOperation.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A58985DB55A027C61BECD8DC75FEF204 /* RCTTextAttributes.m in Sources */ = {isa = PBXBuildFile; fileRef = 95DEEB975C251DC0DD518B4F697B113D /* RCTTextAttributes.m */; }; - A589A7984EA7376E70C72AF061F51B43 /* UMDefines.h in Headers */ = {isa = PBXBuildFile; fileRef = EC4A6E943C7DAEEA950D96EE96271C15 /* UMDefines.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A56297DE41EC440968388D0F4A94F43B /* ARTShapeManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 43CD7B746747F2A250267511076E9D08 /* ARTShapeManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A574026171CFEEC0EECDE544E2C1330B /* RNNotificationCenter.h in Headers */ = {isa = PBXBuildFile; fileRef = 69A2F3EC12693E34204C481C3C8E7977 /* RNNotificationCenter.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A58985DB55A027C61BECD8DC75FEF204 /* RCTTextAttributes.m in Sources */ = {isa = PBXBuildFile; fileRef = ADD684420F0E3B1C8F6DE6C07F842F82 /* RCTTextAttributes.m */; }; + A589A7984EA7376E70C72AF061F51B43 /* UMDefines.h in Headers */ = {isa = PBXBuildFile; fileRef = 1CC9BB09BFD4F1A9FD8FF6C35AB5F8DB /* UMDefines.h */; settings = {ATTRIBUTES = (Project, ); }; }; A58D964A05070A1687AEF98D527B41B3 /* GFlags.h in Headers */ = {isa = PBXBuildFile; fileRef = CBDC3ABDE410DD0CCD5E9C1C8EF6BD1C /* GFlags.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A5A3684A5E0E259D2E9CFA5D438958C0 /* RCTUITextField.h in Headers */ = {isa = PBXBuildFile; fileRef = 90D34DFF04C9FC93FBC548E5C5BC1EC1 /* RCTUITextField.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A5A3684A5E0E259D2E9CFA5D438958C0 /* RCTUITextField.h in Headers */ = {isa = PBXBuildFile; fileRef = 0413E64D3D0161176688283A1DC4E85F /* RCTUITextField.h */; settings = {ATTRIBUTES = (Project, ); }; }; A5CBB0D2840E7F615A3402D241CA4A5F /* GULAppEnvironmentUtil.h in Headers */ = {isa = PBXBuildFile; fileRef = 95E32B303715252400E8F8151E2127BE /* GULAppEnvironmentUtil.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A5E0249E14EF89BD7EE9DC4EB19DDC64 /* UIView+WebCache.h in Headers */ = {isa = PBXBuildFile; fileRef = A39A26BA33C5E32A2591D22BC6F9B47F /* UIView+WebCache.h */; settings = {ATTRIBUTES = (Project, ); }; }; A5F7A295CE8D9AB5DE3F0B75200DD1A2 /* io_dec.c in Sources */ = {isa = PBXBuildFile; fileRef = 2EF9D1B841C6204A2EC5D0DFE011FE80 /* io_dec.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; A602F94288003EADC14BAE8B862E7B77 /* ScopedEventBaseThread.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B735C9F34C8311507D047A8CFB61DC62 /* 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 = 24A7EE7C1875E720E6FD85B5EEE4C368 /* RCTModuleData.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - A60866B211E10A251823755E039D280D /* QBAssetCell.h in Headers */ = {isa = PBXBuildFile; fileRef = 4036DA66AEAADDE67F7AF5FF9DD0B667 /* QBAssetCell.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A62AA3FA69C27BD3BA6787EF1D06B5BC /* RCTExceptionsManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 26E2B81D847EE92831E2B4214E2580F8 /* RCTExceptionsManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A6742224DEEE6116B21884597417C6A4 /* EXAppleAuthenticationRequest.h in Headers */ = {isa = PBXBuildFile; fileRef = 4CD8D621D244624D31D23B1C91014A93 /* EXAppleAuthenticationRequest.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A603B60A6B2B711F9E90CB714A876743 /* RCTModuleData.mm in Sources */ = {isa = PBXBuildFile; fileRef = 3AFC24C975DF60D33325002D50551F2D /* RCTModuleData.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + A60866B211E10A251823755E039D280D /* QBAssetCell.h in Headers */ = {isa = PBXBuildFile; fileRef = F91C8A02C11CEDBF8B71E7580A4C7325 /* QBAssetCell.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A62AA3FA69C27BD3BA6787EF1D06B5BC /* RCTExceptionsManager.h in Headers */ = {isa = PBXBuildFile; fileRef = E5528A4BB07AD017B9DD85E146CC365B /* RCTExceptionsManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A6742224DEEE6116B21884597417C6A4 /* EXAppleAuthenticationRequest.h in Headers */ = {isa = PBXBuildFile; fileRef = A54BBF829F3B2564E6F4C54D40B2E31E /* EXAppleAuthenticationRequest.h */; settings = {ATTRIBUTES = (Project, ); }; }; A6776FF2CD328909E8600FDCF823B0D8 /* json_patch.h in Headers */ = {isa = PBXBuildFile; fileRef = 85C9BABF3B59E5A42C45C1499E076A58 /* json_patch.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A6819EA409E0033334420B790115A46E /* UMReactNativeAdapter.m in Sources */ = {isa = PBXBuildFile; fileRef = B97BDA6F53DC963FFDAB0486599E7CE5 /* UMReactNativeAdapter.m */; }; - A6AFA852779611E471E81FB7FB479423 /* BSG_KSCrashReportFields.h in Headers */ = {isa = PBXBuildFile; fileRef = 6986DCB9B08399021A0D79977F8DD2AD /* BSG_KSCrashReportFields.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A6819EA409E0033334420B790115A46E /* UMReactNativeAdapter.m in Sources */ = {isa = PBXBuildFile; fileRef = 75C8CC500EF18715756735BA84F6B23D /* UMReactNativeAdapter.m */; }; + A6AFA852779611E471E81FB7FB479423 /* BSG_KSCrashReportFields.h in Headers */ = {isa = PBXBuildFile; fileRef = 7419193FF4A667D9EEC16DD23D6FD3AE /* BSG_KSCrashReportFields.h */; settings = {ATTRIBUTES = (Project, ); }; }; A6BABFFFD02CC5A923F1B76BE536EA3B /* BlockingQueue.h in Headers */ = {isa = PBXBuildFile; fileRef = D647297D553EC57B4A4D190486B9EE5E /* BlockingQueue.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A6CAEE624647B633DA1FE379F3335BD9 /* JSExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = 025E0CDFD18867BDA9A8DB9B3184A6C1 /* JSExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A6E5A41B5330A56303AC69C291ED1DB6 /* REAFunctionNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 1A1D9610A449D2388F01014781CD204A /* REAFunctionNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A6CAEE624647B633DA1FE379F3335BD9 /* JSExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = 1A6C82A164E50B21DB858AE0EC8D013D /* JSExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A6E5A41B5330A56303AC69C291ED1DB6 /* REAFunctionNode.h in Headers */ = {isa = PBXBuildFile; fileRef = C66923D07A4E755E225E655983497FAE /* REAFunctionNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; A70100EBBD9722DAA244ECEF1BDCCF92 /* File.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1E5823A98AFDC2E88398046ECD303BAD /* 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 = F43EF1693B9096B253592907C9C4B687 /* AsyncTransport.h */; settings = {ATTRIBUTES = (Project, ); }; }; A73A92EE393BA7EFB5EF12271CD5AE1C /* ResumeManager.h in Headers */ = {isa = PBXBuildFile; fileRef = D281DAF4DC50DA1C18025F627BAF319D /* ResumeManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; A74265F5E9D3396D998C4D41384D939E /* QuotientMultiSet.h in Headers */ = {isa = PBXBuildFile; fileRef = 68858AAD305821B0E28BAA93C995B30C /* QuotientMultiSet.h */; settings = {ATTRIBUTES = (Project, ); }; }; A748C7204AF3ED67608DB14125036794 /* SafeAssert.h in Headers */ = {isa = PBXBuildFile; fileRef = 36E1B5B2CFFF00267506ED80195F616B /* SafeAssert.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A75253B6013C5FAD19A4DEF9805308C9 /* RCTUITextView.h in Headers */ = {isa = PBXBuildFile; fileRef = F86499206B3CCEFEDBF06F69F36D7B91 /* RCTUITextView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A7556B80E5501E08DA08A33C9535A31D /* RCTAsyncLocalStorage.h in Headers */ = {isa = PBXBuildFile; fileRef = AD296C57DB3D2B54D892B4F48C13E137 /* RCTAsyncLocalStorage.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A75253B6013C5FAD19A4DEF9805308C9 /* RCTUITextView.h in Headers */ = {isa = PBXBuildFile; fileRef = 156869A8B62C20E749C3CE92925A920D /* RCTUITextView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A7556B80E5501E08DA08A33C9535A31D /* RCTAsyncLocalStorage.h in Headers */ = {isa = PBXBuildFile; fileRef = 01E4117FE7EA1D36E5017B0F7E24C4C0 /* RCTAsyncLocalStorage.h */; settings = {ATTRIBUTES = (Project, ); }; }; A75F67BAE109D953729054CA3FCE37CB /* Flipper-PeerTalk-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 0A492A3D9D89118A05A744C52DF693A9 /* Flipper-PeerTalk-dummy.m */; }; A7721978FA34EA5CD4BB6F8FD361657D /* filters_sse2.c in Sources */ = {isa = PBXBuildFile; fileRef = 7C745A79AF19F774C0B130D70815EC58 /* filters_sse2.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; A7774B196AF28DD549E0CDF4807F7B08 /* ConnectionAcceptor.h in Headers */ = {isa = PBXBuildFile; fileRef = 5737A805379DB8158A0D0548C1324DC8 /* ConnectionAcceptor.h */; settings = {ATTRIBUTES = (Project, ); }; }; A791685400809D96C26DFA3858AD4DA0 /* SetupResumeAcceptor.h in Headers */ = {isa = PBXBuildFile; fileRef = 0688E1BF1908E81DBF8C7C1D4D8AD3BA /* SetupResumeAcceptor.h */; settings = {ATTRIBUTES = (Project, ); }; }; A7A7525768BA7795D9437CCCC3E9523A /* RangeSse42.h in Headers */ = {isa = PBXBuildFile; fileRef = F06CE60C9D286F1F3036A2362259489A /* RangeSse42.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A7AC684A30CC732372746DC226BC7D7F /* RCTModalHostViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = E198EDF62D4D911560F20BC10B47319D /* 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 = 2CCE0261D8E1FAB467E72EAF18BE5367 /* 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 = 201FBE1E6F0A8284A98B38DCA976AD1C /* 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 = B34A9F6EDA96558160E687E2DDA559D2 /* RNVectorIconsManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A7CFFB6114517AB27EA824EDAF6F1055 /* RCTDeviceInfo.h in Headers */ = {isa = PBXBuildFile; fileRef = 8E787D7856136E44A7AEABFC6D199618 /* RCTDeviceInfo.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A7D57A898342D32D6D087A8B3B880AFF /* UMReactLogHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 12D61B0E0EB973297C194764B16CFAC9 /* UMReactLogHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A7C6CA4554F58BB1C409F0F4A97C1656 /* RNVectorIconsManager.h in Headers */ = {isa = PBXBuildFile; fileRef = F35D05315FC6B6B6EDA9DF179E993EE9 /* RNVectorIconsManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A7CFFB6114517AB27EA824EDAF6F1055 /* RCTDeviceInfo.h in Headers */ = {isa = PBXBuildFile; fileRef = FDF07E2256DA17120878011408E9FFC6 /* RCTDeviceInfo.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A7D57A898342D32D6D087A8B3B880AFF /* UMReactLogHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 843B6C30CF16C180A1CB3FEB045188A0 /* UMReactLogHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; A7FE4D8E743D00ECB115E087D53587C7 /* cost.c in Sources */ = {isa = PBXBuildFile; fileRef = EAEF300CF4467F2E2E3B0C0D3A4D115F /* cost.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; A814790EEE1DB78F2C8EDC04096D870D /* Fcntl.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 823CDE1E20E25209A991C64E100926EF /* 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 = 7AE2F69002D726C18C6E21B84BAD19E0 /* FIRInstallationsItem.m */; }; @@ -2175,248 +2179,248 @@ A83DF000E730CC16B797CA08DB29B9CA /* FlowableDoOperator.h in Headers */ = {isa = PBXBuildFile; fileRef = 29227B5772A6FCF4BEFAE1D7C92803A2 /* FlowableDoOperator.h */; settings = {ATTRIBUTES = (Project, ); }; }; A85E3E09CE5A1C1FCBE000C05F72FC0D /* MemoryMapping.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 4412B653F20312FC38D099057A287C9D /* MemoryMapping.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; A8702F584104386DBB13FB3B877CC8F9 /* TOCropView.m in Sources */ = {isa = PBXBuildFile; fileRef = 5E70FF84FAD05DBBCAD01E729DAE8311 /* TOCropView.m */; }; - A8850F1916921859A3847D004162D497 /* RCTSinglelineTextInputView.h in Headers */ = {isa = PBXBuildFile; fileRef = 267F6C74F5F2AB98971FC8EA2F47B183 /* RCTSinglelineTextInputView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A8B6D15DA68092B480483FE020894204 /* EXFileSystemAssetLibraryHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 65D682C26CA14926B14CC0283B7F7337 /* EXFileSystemAssetLibraryHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A8B8BEB2134D3E68B9907C5A48A04A03 /* RNGestureHandlerDirection.h in Headers */ = {isa = PBXBuildFile; fileRef = 61641261A2D33040F051EBEF497D174F /* RNGestureHandlerDirection.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A8BE07ED93A4F36C2658BC2D58944C35 /* RCTWeakProxy.h in Headers */ = {isa = PBXBuildFile; fileRef = 5050A1FCDE105C0CA29E4FD8D2768331 /* RCTWeakProxy.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A8E01CE5F1EEE7260BF5757057CEF643 /* BSGSerialization.m in Sources */ = {isa = PBXBuildFile; fileRef = 37895F3BEBC6FBAE7B69AC1E9B664C63 /* BSGSerialization.m */; }; + A8850F1916921859A3847D004162D497 /* RCTSinglelineTextInputView.h in Headers */ = {isa = PBXBuildFile; fileRef = 6669BBABA3CA6F813B03FA1C2B330DD1 /* RCTSinglelineTextInputView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A8B6D15DA68092B480483FE020894204 /* EXFileSystemAssetLibraryHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = E866F2020E5230470DC35024A47C9A0D /* EXFileSystemAssetLibraryHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A8B8BEB2134D3E68B9907C5A48A04A03 /* RNGestureHandlerDirection.h in Headers */ = {isa = PBXBuildFile; fileRef = 329DC7A633BAB76938D6214F8A7A7D35 /* RNGestureHandlerDirection.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A8BE07ED93A4F36C2658BC2D58944C35 /* RCTWeakProxy.h in Headers */ = {isa = PBXBuildFile; fileRef = F06427FA5DBE7CDEE87B2B2DA8EF2E48 /* RCTWeakProxy.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A8E01CE5F1EEE7260BF5757057CEF643 /* BSGSerialization.m in Sources */ = {isa = PBXBuildFile; fileRef = 118E42AF1BC7F24909BA337877CE0805 /* BSGSerialization.m */; }; A8F65854124450A07A7180E05C65D284 /* YGLayoutExtensions.swift in Sources */ = {isa = PBXBuildFile; fileRef = 380CC79E918E3BBE9C8BAFCE026DFC7E /* YGLayoutExtensions.swift */; }; - A9102589774A3FD3F3808AB2F0F83ACA /* RNNativeViewHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 94C0242D134E88E6F06939B09DB92DE1 /* RNNativeViewHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A91E2FEF560C2FB37C85DD84F1B01CFF /* SDImageIOAnimatedCoderInternal.h in Headers */ = {isa = PBXBuildFile; fileRef = 48BFF4507769ED087BF273D65AA632EC /* SDImageIOAnimatedCoderInternal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A925E1BBAE734866DD93941974FCB644 /* YGConfig.h in Headers */ = {isa = PBXBuildFile; fileRef = B5B719F0E723B85512C67960D063CAFF /* YGConfig.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A96C68C0C268482DDD4103E565FF1C77 /* REABezierNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 6D63D68250D517F7A8A6FB42EDD1F2EB /* REABezierNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A9102589774A3FD3F3808AB2F0F83ACA /* RNNativeViewHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = ABA5AE74FC77D8005BB3AB05665EC8D9 /* RNNativeViewHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A925E1BBAE734866DD93941974FCB644 /* YGConfig.h in Headers */ = {isa = PBXBuildFile; fileRef = 3F7E080C7767A10A417F5E5A45BEC454 /* YGConfig.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A96C68C0C268482DDD4103E565FF1C77 /* REABezierNode.h in Headers */ = {isa = PBXBuildFile; fileRef = BCD5BDEE49BAB38CF958DC41A38F7E28 /* REABezierNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; A976416CE94836C67A780BDA4CC35100 /* AsyncSSLSocket.h in Headers */ = {isa = PBXBuildFile; fileRef = 7B8B862A2BB8DD3C2F5379C018818357 /* AsyncSSLSocket.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A99A29500A84A17672C54F80F175DCEC /* RCTBorderDrawing.h in Headers */ = {isa = PBXBuildFile; fileRef = 37B394D80684978604DE1A7BBE048EE9 /* RCTBorderDrawing.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A99A29500A84A17672C54F80F175DCEC /* RCTBorderDrawing.h in Headers */ = {isa = PBXBuildFile; fileRef = 729BD433E983E03BE1D0DC9F7C1BEDF2 /* RCTBorderDrawing.h */; settings = {ATTRIBUTES = (Project, ); }; }; A9C22AB6A1DFF4957F5564EE589A4A64 /* DelayedDestructionBase.h in Headers */ = {isa = PBXBuildFile; fileRef = 43289003F43ADD8130C473D9EE7B1E19 /* DelayedDestructionBase.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A9E69DA1D793E8F8FDBBA1BF0892E119 /* BSG_KSCrashIdentifier.m in Sources */ = {isa = PBXBuildFile; fileRef = A6B6585247FA2579ED5CCC001FF52D48 /* BSG_KSCrashIdentifier.m */; }; + A9E69DA1D793E8F8FDBBA1BF0892E119 /* BSG_KSCrashIdentifier.m in Sources */ = {isa = PBXBuildFile; fileRef = 12E989223DA58403D8F25F90FBFE8DCB /* BSG_KSCrashIdentifier.m */; }; AA0833E0CD30D0CC1E832C8D53373D1E /* ChannelRequester.cpp in Sources */ = {isa = PBXBuildFile; fileRef = C995004C50B3E13137FD7EC58C6EB255 /* 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 = 7C9A64743CE64AB168ABC1325EEA9023 /* RCTAppState.h */; settings = {ATTRIBUTES = (Project, ); }; }; + AA395570884B9EDD2EFF69F413B2EE8B /* RCTAppState.h in Headers */ = {isa = PBXBuildFile; fileRef = BECF7B9FB0FFFF7788B6C688A498DAC2 /* RCTAppState.h */; settings = {ATTRIBUTES = (Project, ); }; }; AA41B806DDD2464BA472118CA6EB6576 /* SaturatingSemaphore.h in Headers */ = {isa = PBXBuildFile; fileRef = DBD5194ABAD450816C36C5AB50F85835 /* SaturatingSemaphore.h */; settings = {ATTRIBUTES = (Project, ); }; }; - AA49DBEB959622BC320A0C55CBB53722 /* RCTInputAccessoryView.m in Sources */ = {isa = PBXBuildFile; fileRef = 2DF42191E5D0F0270A08953BE5753EBA /* RCTInputAccessoryView.m */; }; - AA5F944B8A228102EAB6BF9BF25031DA /* EXRemoteNotificationPermissionRequester.h in Headers */ = {isa = PBXBuildFile; fileRef = 7C6406852A37DF0AEA527CEAEB1001E0 /* EXRemoteNotificationPermissionRequester.h */; settings = {ATTRIBUTES = (Project, ); }; }; + AA49DBEB959622BC320A0C55CBB53722 /* RCTInputAccessoryView.m in Sources */ = {isa = PBXBuildFile; fileRef = 096554FD575819BD9B6AA44AA32074DE /* RCTInputAccessoryView.m */; }; + AA5F944B8A228102EAB6BF9BF25031DA /* EXRemoteNotificationPermissionRequester.h in Headers */ = {isa = PBXBuildFile; fileRef = 764A81F1BEE39F8E3E25CA0BA171EDDE /* EXRemoteNotificationPermissionRequester.h */; settings = {ATTRIBUTES = (Project, ); }; }; AA71EAB157D4DA18A57F72BBE833E954 /* FIRInstallationsStoredAuthToken.h in Headers */ = {isa = PBXBuildFile; fileRef = 3718C0542EF040AFC08106C65C8BAA2D /* FIRInstallationsStoredAuthToken.h */; settings = {ATTRIBUTES = (Project, ); }; }; AA98E5E760C605F57551D3D6192E5225 /* mips_macro.h in Headers */ = {isa = PBXBuildFile; fileRef = 6A10B06A83720999590D42AF776AB280 /* mips_macro.h */; settings = {ATTRIBUTES = (Project, ); }; }; - AAA397302AB9735FEE54E85069DF673B /* RNFetchBlobNetwork.m in Sources */ = {isa = PBXBuildFile; fileRef = 75C81C87FF4DB6BF91F3159D1B5ECF78 /* RNFetchBlobNetwork.m */; }; - AAC20D7627D16FE0093FD265E896DEA1 /* RCTUIManagerObserverCoordinator.mm in Sources */ = {isa = PBXBuildFile; fileRef = 31544FA1A34C77D66C793534B5D01D8F /* 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 = FD2915E38674C2C900EFA33041163379 /* EXReactNativeUserNotificationCenterProxy.m */; }; + AAA397302AB9735FEE54E85069DF673B /* RNFetchBlobNetwork.m in Sources */ = {isa = PBXBuildFile; fileRef = 252073097B750D2CAB7B88D7EDE405FD /* RNFetchBlobNetwork.m */; }; + AAC20D7627D16FE0093FD265E896DEA1 /* RCTUIManagerObserverCoordinator.mm in Sources */ = {isa = PBXBuildFile; fileRef = 37DE4B02A082C8089801E554E38E5D0E /* 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 = 391CA92AF38B070C9D48198DA95E01F1 /* EXReactNativeUserNotificationCenterProxy.m */; }; AAEC54ADA9A9C0A6DD785E903782EFB3 /* ssim_sse2.c in Sources */ = {isa = PBXBuildFile; fileRef = 6443C7E41F5A8260ADC4DBB27F17EBC9 /* ssim_sse2.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - AAEDC523773D6B13C078505D8B0973C0 /* RCTGIFImageDecoder.h in Headers */ = {isa = PBXBuildFile; fileRef = 1B4B04C675AD000807C98844D4BCB30A /* RCTGIFImageDecoder.h */; settings = {ATTRIBUTES = (Project, ); }; }; + AAEDC523773D6B13C078505D8B0973C0 /* RCTGIFImageDecoder.h in Headers */ = {isa = PBXBuildFile; fileRef = 297C1427D1883C033093F4F85675077B /* RCTGIFImageDecoder.h */; settings = {ATTRIBUTES = (Project, ); }; }; AAF05BFDD102FD660418FD7AE198030D /* analysis_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = 4F165263816B6742FF0626215E359693 /* analysis_enc.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; AB04017D38E62DF07CEBA7D22022A0DD /* vlog_is_on.h in Headers */ = {isa = PBXBuildFile; fileRef = D9F226710D2D92BC84B6A5765349E167 /* vlog_is_on.h */; settings = {ATTRIBUTES = (Project, ); }; }; AB0C50C0B3F909061C6A5A0892C77B3B /* symbolize.cc in Sources */ = {isa = PBXBuildFile; fileRef = 66A0546317DA4C87DFE514042A8B1530 /* symbolize.cc */; settings = {COMPILER_FLAGS = "-Wno-shorten-64-to-32"; }; }; AB0D233175695AD5A5CFF80D84E56874 /* anim_encode.c in Sources */ = {isa = PBXBuildFile; fileRef = 088370164BB99DF2DADD633FC502F026 /* anim_encode.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - AB21B48DF0CEA00D94C8AF2781E9A2A3 /* RCTInspectorPackagerConnection.h in Headers */ = {isa = PBXBuildFile; fileRef = FC6F87B7F612DF3143D29D6AE4896240 /* RCTInspectorPackagerConnection.h */; settings = {ATTRIBUTES = (Project, ); }; }; - AB59C6234A9993C6BE675204C9AB2EE6 /* EXImageLoader-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 14DB85DA281E7406A95457602CC430B7 /* EXImageLoader-dummy.m */; }; + AB21B48DF0CEA00D94C8AF2781E9A2A3 /* RCTInspectorPackagerConnection.h in Headers */ = {isa = PBXBuildFile; fileRef = 72BA2D973062321833DC71EA631B9A46 /* RCTInspectorPackagerConnection.h */; settings = {ATTRIBUTES = (Project, ); }; }; + AB59C6234A9993C6BE675204C9AB2EE6 /* EXImageLoader-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 8DA8A1E1E53484F0F3E701C78D6DCA8F /* EXImageLoader-dummy.m */; }; AB5FA629662137136E8341AD06FC1978 /* fixed-dtoa.h in Headers */ = {isa = PBXBuildFile; fileRef = 471F523A97739A5A43D77C7D24F81237 /* fixed-dtoa.h */; settings = {ATTRIBUTES = (Project, ); }; }; AB66FEE1AD76390C20E69570385B29AD /* fast-dtoa.cc in Sources */ = {isa = PBXBuildFile; fileRef = 10D8024A3E862301166AF1F823758DFE /* fast-dtoa.cc */; settings = {COMPILER_FLAGS = "-Wno-unreachable-code"; }; }; - AB6B1C527596D3144A8E068B20847368 /* RNFirebaseDatabaseReference.m in Sources */ = {isa = PBXBuildFile; fileRef = A1C749454E7A224BF2E84D8812788E93 /* RNFirebaseDatabaseReference.m */; }; - AB71242585E87C1ABAFF732A17092713 /* RNGestureHandlerModule.h in Headers */ = {isa = PBXBuildFile; fileRef = E9CB0FF20BC5770F5B661AE9BD63A55E /* RNGestureHandlerModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; + AB6B1C527596D3144A8E068B20847368 /* RNFirebaseDatabaseReference.m in Sources */ = {isa = PBXBuildFile; fileRef = 510C01E26D94D8122E44BA05A2766DAB /* RNFirebaseDatabaseReference.m */; }; + AB71242585E87C1ABAFF732A17092713 /* RNGestureHandlerModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 4B2C5CF3A41C270913C7F523DC4F09EF /* RNGestureHandlerModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; ABCD3CDD7AD0B48F038E8BDF3399A5FD /* IOThreadPoolExecutor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 6119ED8AAB4AB85F6BAA8F27EB5C2C2A /* 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 = 63E30E444F516DDBA667711E50C18E59 /* SKDispatchQueue.h */; settings = {ATTRIBUTES = (Project, ); }; }; ABE92E6DD473C1C3130AFCA71ACCF240 /* Benchmark.h in Headers */ = {isa = PBXBuildFile; fileRef = ECA1B40348C9BBE28F7C3E9A1A7C5931 /* Benchmark.h */; settings = {ATTRIBUTES = (Project, ); }; }; ABF126106FD8D877441956C3AF553EEF /* pb_common.h in Headers */ = {isa = PBXBuildFile; fileRef = D93DD89F6DEFF2301FFFDCD8B263150D /* pb_common.h */; settings = {ATTRIBUTES = (Project, ); }; }; ABF8D2E2E1BB9810CDDE4BD97264E33F /* SKEnvironmentVariables.m in Sources */ = {isa = PBXBuildFile; fileRef = 5448E1EBD4A4EC32710F6DCB92875E3E /* 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 = 9D0D62EBA38E1AF2F71F055E9DDC77A9 /* FBLPromise+Reduce.m */; }; - AC123C0D22624AB059F2EDB2C55A4115 /* NSValue+Interpolation.h in Headers */ = {isa = PBXBuildFile; fileRef = 37A782E342242AD117AB051759601D63 /* NSValue+Interpolation.h */; settings = {ATTRIBUTES = (Project, ); }; }; + AC123C0D22624AB059F2EDB2C55A4115 /* NSValue+Interpolation.h in Headers */ = {isa = PBXBuildFile; fileRef = 8B3D4A840C5ADC51C6C3DDBF09DE5D29 /* NSValue+Interpolation.h */; settings = {ATTRIBUTES = (Project, ); }; }; AC2903679DA7B6240539795ABD3F3FBA /* RSocketStateMachine.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 29A7D37421922AE17AD3190FEF825B11 /* 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 = 94DC221720C39FEF83E7E829A7AFB235 /* Semaphore.h */; settings = {ATTRIBUTES = (Project, ); }; }; - AC2E600E71A57F53043FCCCA443D8E3C /* RCTInterpolationAnimatedNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 2F453AB8650E5E04AF66A8676A2B8967 /* 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 = 52AD4D8731F8C93D59E1B21EFC16995F /* 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 = D83A0EF7A0565FE92CFDCBD14BB075BE /* AtomicReadMostlyMainPtr.h */; settings = {ATTRIBUTES = (Project, ); }; }; - AC352F1ACD856937CFBF55A36C6E6D30 /* RCTRootView.h in Headers */ = {isa = PBXBuildFile; fileRef = 36CBBA01812843981C3B21BD724C267F /* RCTRootView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + AC352F1ACD856937CFBF55A36C6E6D30 /* RCTRootView.h in Headers */ = {isa = PBXBuildFile; fileRef = 13F2CAD9162D050C6960CDA99D8FA813 /* RCTRootView.h */; settings = {ATTRIBUTES = (Project, ); }; }; AC3624864E7F8698E97EF22EF270A5F1 /* Subscription.h in Headers */ = {isa = PBXBuildFile; fileRef = 55458DAFBE268090431885279A793745 /* Subscription.h */; settings = {ATTRIBUTES = (Project, ); }; }; AC3905F52FE0809F628BCC0CF306E76F /* picture_tools_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = 382DF59437BD2A2071FCEA0EECB84C6E /* picture_tools_enc.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - ACB6DBC72055A867888113D9CD5B715C /* RCTSwitchManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 55C8AA679A3AD6B024B4E86F3ADE1654 /* 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 = 035F8DF3FA0EA1570EF9C1E43CA9AE75 /* 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 = 62B6DE4D2D46CFDBBE1E1CE8DD67B7E4 /* SKNamed.h */; settings = {ATTRIBUTES = (Project, ); }; }; - AD0DA245B890349D01A915A669A813DC /* REASetNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 3C4D934407C0DE63D6FCEF3662980C0D /* REASetNode.m */; }; - AD15E974D8793EA9FA3799E5793CC334 /* RNCSafeAreaViewEdges.h in Headers */ = {isa = PBXBuildFile; fileRef = 690389F5E10DA39DE49214507DD19D78 /* RNCSafeAreaViewEdges.h */; settings = {ATTRIBUTES = (Project, ); }; }; + AD0DA245B890349D01A915A669A813DC /* REASetNode.m in Sources */ = {isa = PBXBuildFile; fileRef = BBAA5BA723F4CAF2352845BC16A24E44 /* REASetNode.m */; }; + AD15E974D8793EA9FA3799E5793CC334 /* RNCSafeAreaViewEdges.h in Headers */ = {isa = PBXBuildFile; fileRef = B803F2945A9EC1D4D6F4A508E76A39FD /* RNCSafeAreaViewEdges.h */; settings = {ATTRIBUTES = (Project, ); }; }; AD2FCDFC407F22399AA03C8D219CB35A /* MPMCQueue.h in Headers */ = {isa = PBXBuildFile; fileRef = F1300F6438D6713BC5B1068611D50052 /* MPMCQueue.h */; settings = {ATTRIBUTES = (Project, ); }; }; - AD766F8E538630FCAA9DD71EAE9F86D2 /* BSG_KSCrashReportFilterCompletion.h in Headers */ = {isa = PBXBuildFile; fileRef = 938A92659A2B571EE3FA5B905DDD2A1B /* BSG_KSCrashReportFilterCompletion.h */; settings = {ATTRIBUTES = (Project, ); }; }; - AD8B355E377543CD09CE6F54DF1FF9F4 /* RCTModuleData.h in Headers */ = {isa = PBXBuildFile; fileRef = 4D38B1CF0BD847B29727942342B11073 /* RCTModuleData.h */; settings = {ATTRIBUTES = (Project, ); }; }; - AD96A58A131956BB8C9879F48A442247 /* SDGraphicsImageRenderer.m in Sources */ = {isa = PBXBuildFile; fileRef = 87214272F27375D3F241FF271FEDB77A /* SDGraphicsImageRenderer.m */; }; - ADDDC9248A6F312AD540F1D3E1D2F888 /* UMEventEmitter.h in Headers */ = {isa = PBXBuildFile; fileRef = 554B22F03906055DC4B73FDEE5372239 /* UMEventEmitter.h */; settings = {ATTRIBUTES = (Project, ); }; }; + AD766F8E538630FCAA9DD71EAE9F86D2 /* BSG_KSCrashReportFilterCompletion.h in Headers */ = {isa = PBXBuildFile; fileRef = 7CC7EB7774595B40CC66AF9C91DA7E4E /* BSG_KSCrashReportFilterCompletion.h */; settings = {ATTRIBUTES = (Project, ); }; }; + AD8B355E377543CD09CE6F54DF1FF9F4 /* RCTModuleData.h in Headers */ = {isa = PBXBuildFile; fileRef = ADC8662D2B225266F38ACAE80CCE4755 /* RCTModuleData.h */; settings = {ATTRIBUTES = (Project, ); }; }; + AD96A58A131956BB8C9879F48A442247 /* SDGraphicsImageRenderer.m in Sources */ = {isa = PBXBuildFile; fileRef = 4B88BC78BEF6D9D5545EED4ADAAE9F03 /* SDGraphicsImageRenderer.m */; }; + ADDDC9248A6F312AD540F1D3E1D2F888 /* UMEventEmitter.h in Headers */ = {isa = PBXBuildFile; fileRef = 486877CB108264C0CFC7D7AFDB47BF05 /* UMEventEmitter.h */; settings = {ATTRIBUTES = (Project, ); }; }; AE026FA2E0FD35314CAB62FA85B127D3 /* VirtualExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = F605404C83D4809573DBE2B341C7A3F0 /* VirtualExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; AE3574F9F3880AC0BB6A51947E420FEB /* Access.h in Headers */ = {isa = PBXBuildFile; fileRef = 43A7859468E03E02E0496C59CBF6861D /* Access.h */; settings = {ATTRIBUTES = (Project, ); }; }; - AE35F51C28C993A1ED2EFAD1C5B4A08C /* REAFunctionNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 0F0512CBCDA1447DCD89511D30DA8FCF /* REAFunctionNode.m */; }; - AE5A86615D0136412F914D9EB421D86F /* RCTEventDispatcher.m in Sources */ = {isa = PBXBuildFile; fileRef = 95549270A926FC4112B9DB87B1B81B07 /* 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 = 8794386314BC0C939B3CB5F62BEF3F43 /* RNFetchBlob.h */; settings = {ATTRIBUTES = (Project, ); }; }; - AE99249C668CAF3BC44DABC8BA941249 /* React-cxxreact-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 418793307BC38610A8688BBDC0102CF2 /* React-cxxreact-dummy.m */; }; + AE35F51C28C993A1ED2EFAD1C5B4A08C /* REAFunctionNode.m in Sources */ = {isa = PBXBuildFile; fileRef = EDA997DA46A6869B2F24BFFCE01E1DBC /* REAFunctionNode.m */; }; + AE5A86615D0136412F914D9EB421D86F /* RCTEventDispatcher.m in Sources */ = {isa = PBXBuildFile; fileRef = 4837ADC18FC3FDBAA05379BDC872B182 /* 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 = D68C945A45AF0954542789114D907B4C /* RNFetchBlob.h */; settings = {ATTRIBUTES = (Project, ); }; }; + AE99249C668CAF3BC44DABC8BA941249 /* React-cxxreact-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 1A2E3BFE91AA2D838D063275BE067CC8 /* React-cxxreact-dummy.m */; }; AE9BAD5416D1788A60DA1E7F3ED08F51 /* dec_neon.c in Sources */ = {isa = PBXBuildFile; fileRef = 55446750D23DEC41D551540FA5A25403 /* dec_neon.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; AEB27C1EC087D6AAD63447C482C26AB7 /* RSocketException.h in Headers */ = {isa = PBXBuildFile; fileRef = B5E8CFFCDC8FD47203CE9765D7EAC259 /* RSocketException.h */; settings = {ATTRIBUTES = (Project, ); }; }; - AEC4034BDBC291C3369745C3115A90D8 /* RCTMultipartDataTask.m in Sources */ = {isa = PBXBuildFile; fileRef = 828FBD145761D75B0E31ABC077DB5116 /* 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 = 22523B8328A113E5BFC3B03C112318A3 /* 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 = A3655DA0C714FD3F0A52EAB3408EA589 /* HardwareConcurrency.h */; settings = {ATTRIBUTES = (Project, ); }; }; - AED86CD66E589042814E7FA334BE0790 /* BSG_KSCrashState.h in Headers */ = {isa = PBXBuildFile; fileRef = 9587AC33DF69DBB7AC794A5FFF90F085 /* BSG_KSCrashState.h */; settings = {ATTRIBUTES = (Project, ); }; }; + AED86CD66E589042814E7FA334BE0790 /* BSG_KSCrashState.h in Headers */ = {isa = PBXBuildFile; fileRef = 94D850A63ACBA225AC020102A47C5349 /* BSG_KSCrashState.h */; settings = {ATTRIBUTES = (Project, ); }; }; AEF02D003A6C637C4E79B072ADE0A70D /* bignum.h in Headers */ = {isa = PBXBuildFile; fileRef = DB3E6CDDFD013761E504645ACB4550AC /* bignum.h */; settings = {ATTRIBUTES = (Project, ); }; }; - AEF42982A3A95308AF9611FC36E58B26 /* RCTNativeAnimatedModule.mm in Sources */ = {isa = PBXBuildFile; fileRef = F5E0495E51B25D3727E20E65FAC40054 /* 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 = 14A94FE58DC768AA3FE9299715DA6EF2 /* 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 = F4DB2D4FEA0D4D5F688A3E11A90F2F72 /* ScopedTraceSection.h */; settings = {ATTRIBUTES = (Project, ); }; }; - AF1D206C1E91A995683BA28C56E6E8EC /* LNInterpolable.m in Sources */ = {isa = PBXBuildFile; fileRef = F9E2008C989F4237835E3833036DF057 /* LNInterpolable.m */; }; + AF1D206C1E91A995683BA28C56E6E8EC /* LNInterpolable.m in Sources */ = {isa = PBXBuildFile; fileRef = 6A35C307642B049F4D1461ACB8C35E86 /* LNInterpolable.m */; }; AF3ABFF1553A775B32EB8EFC443D7305 /* SysResource.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9743CAC8A3D833F16EAF621477B8F637 /* 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 = 9AA7F46614DE4962D1B776D0893B3684 /* 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 = 56329E2231A05D55C0A5FF45601A5F03 /* BannerComponent.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B01E94A5DB2F0ACF14D31760C121B225 /* UIImage+MultiFormat.m in Sources */ = {isa = PBXBuildFile; fileRef = F6CE2FC04ED6483FE6A99948553E7C25 /* UIImage+MultiFormat.m */; }; + AFA1747D7903B71E12ED58F61E2A35F4 /* BannerComponent.h in Headers */ = {isa = PBXBuildFile; fileRef = 6CF8DF9486ADB690C43C6843FBD675D6 /* BannerComponent.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B01C36FAD05AC43B3637B8D0AB9459D9 /* UIImage+ExtendedCacheData.h in Headers */ = {isa = PBXBuildFile; fileRef = 6697DB0C2CED532AD0B53577480A84E3 /* UIImage+ExtendedCacheData.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B01E94A5DB2F0ACF14D31760C121B225 /* UIImage+MultiFormat.m in Sources */ = {isa = PBXBuildFile; fileRef = 20890F63B71F0D4B2162B5C9F2807E0F /* UIImage+MultiFormat.m */; }; B0293EF73AFB370CF8D66F32A68DFBFD /* UICollectionView+SKInvalidation.mm in Sources */ = {isa = PBXBuildFile; fileRef = 11660FFD2D5E05362E022517E8D47E88 /* 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 = 4AC69B228C927726F100BCC549ECD230 /* FIRInstallationsItem+RegisterInstallationAPI.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B042D39C0C78EEB53F92CD779043E7F6 /* RCTI18nUtil.m in Sources */ = {isa = PBXBuildFile; fileRef = 2D1897FAFE5D5F8C700B53AD1E489BE0 /* 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 = 5D23D21EB4044F0DCF536F1F68A0615F /* RCTProgressViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B042D39C0C78EEB53F92CD779043E7F6 /* RCTI18nUtil.m in Sources */ = {isa = PBXBuildFile; fileRef = 467241756A34BCF9F5DE1B2D76062086 /* 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 = 2D38BC1365EFC740D026D894B50F8F4B /* RCTProgressViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; B05521F41DF6AD44A22725CBD8B1C16F /* Framer.cpp in Sources */ = {isa = PBXBuildFile; fileRef = CD8946FED6F5245C8C8B92D24FE2EDCF /* 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 = 9B0B2A2470ADB5772F4AB8C99FFF4076 /* Portability.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B0881CA09218A618A785683BE4C79CC8 /* ARTGroupManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 2C2F1EF0A75899E0297AE7C0ED554440 /* ARTGroupManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B0881CA09218A618A785683BE4C79CC8 /* ARTGroupManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 3A6AC2C3226991D005019717AE015C45 /* ARTGroupManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; B0ED107F3AAF83FDD3035D0B3D864953 /* GCDAsyncUdpSocket.h in Headers */ = {isa = PBXBuildFile; fileRef = 4FFFB836871837E3F0F105DF572CA9D8 /* GCDAsyncUdpSocket.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B11CA48DA91BE9D78A09D892242DB4C8 /* RNJitsiMeetViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = A836149B7ADFE67BA66D94796213734B /* RNJitsiMeetViewManager.m */; }; - B1208ABEFA22504998B800C8C953EEED /* RNTapHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = E84D0FB226B76CEC903DA2F88387ADFE /* RNTapHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B12AD0D904923BBD956FF1A6D89EF7E8 /* Color+Interpolation.m in Sources */ = {isa = PBXBuildFile; fileRef = CB96AF637F193EB9518FE01E94128B9C /* Color+Interpolation.m */; }; - B13C0BF250F77AAB2226545533D79A54 /* RCTImageViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = E24952E40FC2451E5EF180170FA299D5 /* RCTImageViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B15A90827FD84A3A1F79DE8E2630486E /* RCTSurfacePresenterStub.m in Sources */ = {isa = PBXBuildFile; fileRef = C0CDD00DDFA68C0DF72E3957B9D462CF /* 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 = B862F9B12681D41BF10EE0EBB5E23658 /* RNJitsiMeetViewManager.m */; }; + B1208ABEFA22504998B800C8C953EEED /* RNTapHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = E1C86DCAEA35DB7EF574F26C31F9F1ED /* RNTapHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B12AD0D904923BBD956FF1A6D89EF7E8 /* Color+Interpolation.m in Sources */ = {isa = PBXBuildFile; fileRef = E9A745D1EE5A7A4991E265DBB7F47D76 /* Color+Interpolation.m */; }; + B13C0BF250F77AAB2226545533D79A54 /* RCTImageViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 14C93CE3A3DFC7CAAF264012E42B4CDC /* RCTImageViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B15A90827FD84A3A1F79DE8E2630486E /* RCTSurfacePresenterStub.m in Sources */ = {isa = PBXBuildFile; fileRef = 51346FC0571E153FB9138F156D84D7C4 /* 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 = 37E57BF0ADE4302F482B1DB7DA3957F2 /* SpookyHashV2.h */; settings = {ATTRIBUTES = (Project, ); }; }; B19C8210EF9AE5488C1603055CF085D0 /* GDTCCTPrioritizer.h in Headers */ = {isa = PBXBuildFile; fileRef = 72BF1AAEF5436D10A0081BBBEC48C39F /* GDTCCTPrioritizer.h */; settings = {ATTRIBUTES = (Project, ); }; }; B19F61D3F34687101A8E5B7BE2B4EAF3 /* TcpConnectionAcceptor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 62F8ACF7B212F46D44231884C7929C5F /* 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 = 48927A4D44559D7320D6AACB0EC86314 /* ThreadedRepeatingFunctionRunner.h */; settings = {ATTRIBUTES = (Project, ); }; }; B1C753FE90549D728716F43E12DDADC0 /* ThreadCachedArena.h in Headers */ = {isa = PBXBuildFile; fileRef = AC4EB289D6F2CCA5B3D2B476B9D57A49 /* ThreadCachedArena.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B1DC50C9C897484260DE304B56E3FBDC /* RCTScrollView.h in Headers */ = {isa = PBXBuildFile; fileRef = 8A4DEC464191F28F0E9ADFCAF7A6F699 /* RCTScrollView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B1E5D2A6D98AFFA7757879EF1D62694F /* RCTInputAccessoryViewContent.h in Headers */ = {isa = PBXBuildFile; fileRef = 71531F4D01A58061478E016FA6E16A8B /* RCTInputAccessoryViewContent.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B1DC50C9C897484260DE304B56E3FBDC /* RCTScrollView.h in Headers */ = {isa = PBXBuildFile; fileRef = 9B308CD0792C54830C61CB851D9F8EA2 /* RCTScrollView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B1E5D2A6D98AFFA7757879EF1D62694F /* RCTInputAccessoryViewContent.h in Headers */ = {isa = PBXBuildFile; fileRef = 61FFFEA945BB4074669BE0FC675DB87D /* RCTInputAccessoryViewContent.h */; settings = {ATTRIBUTES = (Project, ); }; }; B20E2104DD60A194165542B0AA180628 /* MasterPtr.h in Headers */ = {isa = PBXBuildFile; fileRef = 3BDEFCD869A4F4674CE7CF0D6E3AA523 /* MasterPtr.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B21ED47165915C21EF394F4CA8C6DE71 /* RNFetchBlobRequest.m in Sources */ = {isa = PBXBuildFile; fileRef = 6F5684FFDE03F8CF2C40486769C419CF /* RNFetchBlobRequest.m */; }; - B23E67E4C9BE3A1C7B6E94B36BBA23A4 /* RCTConvert+RNNotifications.m in Sources */ = {isa = PBXBuildFile; fileRef = F2C3E67B7EB1144D81752B5938C9B7DC /* RCTConvert+RNNotifications.m */; }; - B2679FA44A18368E0569B37207A535C5 /* REAOperatorNode.m in Sources */ = {isa = PBXBuildFile; fileRef = D3F91A5AC125245092B53FBCC0CFA84F /* REAOperatorNode.m */; }; + B21ED47165915C21EF394F4CA8C6DE71 /* RNFetchBlobRequest.m in Sources */ = {isa = PBXBuildFile; fileRef = ED89A604A4896CB788F8BBFB19CDBC67 /* RNFetchBlobRequest.m */; }; + B23E67E4C9BE3A1C7B6E94B36BBA23A4 /* RCTConvert+RNNotifications.m in Sources */ = {isa = PBXBuildFile; fileRef = E5BF776F5AA6FDB065E29C3947EE33A0 /* RCTConvert+RNNotifications.m */; }; + B2679FA44A18368E0569B37207A535C5 /* REAOperatorNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 717981A8C10CAF4407754DA1FE68F149 /* REAOperatorNode.m */; }; B286814FE12B03656F533F95A27E6699 /* SKStateUpdateCPPWrapper.mm in Sources */ = {isa = PBXBuildFile; fileRef = 3608FA6C0F3B192297FA0C37931AF755 /* 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 = ACB4201D7961B401EC845571B7E1E960 /* 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 = AD6619459190D5772FFED9BDD939E82D /* RCTShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B29473DF36DAF4E8EBD4667D6DBC717D /* RCTMaskedViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = A64E076FD356846B65E9A99A0C063A4D /* 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 = DE281431DE2725390C8E80DFA7F3ECA9 /* RCTShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; B2ADBA919A83F3489D1643A24A241C8B /* FIRConfiguration.m in Sources */ = {isa = PBXBuildFile; fileRef = B40E16E4E7EE49A482B38CA021F3E602 /* FIRConfiguration.m */; }; - B2D7E5D0798F269609AD21592B9F9843 /* RCTImageURLLoaderWithAttribution.h in Headers */ = {isa = PBXBuildFile; fileRef = 07AA1343D184912CDFB622E045546DFF /* RCTImageURLLoaderWithAttribution.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B2D7E5D0798F269609AD21592B9F9843 /* RCTImageURLLoaderWithAttribution.h in Headers */ = {isa = PBXBuildFile; fileRef = 7DEF68E13AEC93637B382CE7A47271FB /* RCTImageURLLoaderWithAttribution.h */; settings = {ATTRIBUTES = (Project, ); }; }; B2EF5C82BC611CBDF4B346F0502EF1CF /* YGLayout.h in Headers */ = {isa = PBXBuildFile; fileRef = C6BF76A651423C1B5D83A11E5FC23681 /* YGLayout.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B3182D6C3C0A4B073C751F68DB727998 /* RCTInputAccessoryViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = B16549F7FED2D0ACB373B44ACA8AC112 /* RCTInputAccessoryViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B31FD9F623593C92C57AAD4C85353B96 /* RCTCxxConvert.m in Sources */ = {isa = PBXBuildFile; fileRef = C04CAF1C9D2A557190D23C05A5E1215A /* RCTCxxConvert.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + B3182D6C3C0A4B073C751F68DB727998 /* RCTInputAccessoryViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 0949276B5398E3DE89E7AA787164CA6B /* RCTInputAccessoryViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B31FD9F623593C92C57AAD4C85353B96 /* RCTCxxConvert.m in Sources */ = {isa = PBXBuildFile; fileRef = 79E9108E881442C8CC274962D6041082 /* 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 = 6196966892C9BE70A8483E42D92929AF /* Random-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; B3DA463FE22DD22C783EA37F931CEFC9 /* FIRLogger.m in Sources */ = {isa = PBXBuildFile; fileRef = 791F9B8D660CCC66392DF7B3E7A1CC8E /* FIRLogger.m */; }; B3F14FDA0D22D6BBA1A8665801D74FDA /* ScheduledSubscription.h in Headers */ = {isa = PBXBuildFile; fileRef = A96C888C80D9DA21FF6DF2F4A7BFFD81 /* ScheduledSubscription.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B3F297ECCAE6B3DCAE6CECB743F916B3 /* CxxNativeModule.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 276C646216FB007F4DA63A5EA1E23167 /* 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 = 22DC540653AA6DEFE018F0E96892639A /* BSG_KSString.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B41D1BE775A5E1E71F079E1661B1553C /* EXAV.m in Sources */ = {isa = PBXBuildFile; fileRef = B6704FC3280FC62B58879C7FD72A1BB7 /* EXAV.m */; }; - B43D4373ACC84F4651349E2C0584EA84 /* RCTAnimationDriver.h in Headers */ = {isa = PBXBuildFile; fileRef = AA531003DDE8FDDEBA57CA4EAB5089AD /* RCTAnimationDriver.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B4681C085E07706AAD0AC18E0183E0ED /* RNGestureHandlerRegistry.m in Sources */ = {isa = PBXBuildFile; fileRef = A32DD059BD65EAF034E7A33D7CE1B88C /* RNGestureHandlerRegistry.m */; }; - B46D8BAE4C9ACE396EE6E38D21C53C39 /* FFFastImageSource.m in Sources */ = {isa = PBXBuildFile; fileRef = 998AF8A34DBB39420D04028C3FFCBF77 /* FFFastImageSource.m */; }; - B4739208CCD185642B0D5DCC2FC489E0 /* DeviceUID.m in Sources */ = {isa = PBXBuildFile; fileRef = CBAB0F47CDDDF4B890096A8A31547545 /* DeviceUID.m */; }; - B4BA80755C5810BA53BB0E7D0F5367B4 /* Compression.m in Sources */ = {isa = PBXBuildFile; fileRef = 8455501E57C734BAE091778D44D2E199 /* Compression.m */; }; + B3F297ECCAE6B3DCAE6CECB743F916B3 /* CxxNativeModule.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D659810DBF3098763A0330404C481861 /* 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 = FADCB19DDD8851D0D167270D30A74E2B /* BSG_KSString.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B41D1BE775A5E1E71F079E1661B1553C /* EXAV.m in Sources */ = {isa = PBXBuildFile; fileRef = 3D566A28BB25AE718B3973068E7680C8 /* EXAV.m */; }; + B43D4373ACC84F4651349E2C0584EA84 /* RCTAnimationDriver.h in Headers */ = {isa = PBXBuildFile; fileRef = 0D7E51FB5AD15ED2B782EC8ABDA4F405 /* RCTAnimationDriver.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B4681C085E07706AAD0AC18E0183E0ED /* RNGestureHandlerRegistry.m in Sources */ = {isa = PBXBuildFile; fileRef = A7D58D0EA02BB76DC06B12ECBA7F98C2 /* RNGestureHandlerRegistry.m */; }; + B46D8BAE4C9ACE396EE6E38D21C53C39 /* FFFastImageSource.m in Sources */ = {isa = PBXBuildFile; fileRef = 86257A97ADDBD4BB3AC0EA25D1E1191B /* FFFastImageSource.m */; }; + B4739208CCD185642B0D5DCC2FC489E0 /* DeviceUID.m in Sources */ = {isa = PBXBuildFile; fileRef = CA1B7FEDA86A8D14935CADECB5540CBC /* DeviceUID.m */; }; + B4BA80755C5810BA53BB0E7D0F5367B4 /* Compression.m in Sources */ = {isa = PBXBuildFile; fileRef = A629B817ACAA496C88A066E80943A5D4 /* Compression.m */; }; B50672BBDED3036FC7ED6BF41CAA049D /* GULAppDelegateSwizzler.h in Headers */ = {isa = PBXBuildFile; fileRef = 06D222764BE5EFFDA1CB8E727535B257 /* GULAppDelegateSwizzler.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B508D8495B9D9A5641D2D5ABD0D079AF /* QBAssetsViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 8027FF476E99F0262910226C469925AA /* QBAssetsViewController.m */; }; + B508D8495B9D9A5641D2D5ABD0D079AF /* QBAssetsViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = F2C9551D85D1D5A383009812457FA039 /* QBAssetsViewController.m */; }; B54B8FEC222B2A26021ED66D627DC63C /* RWSpinLock.h in Headers */ = {isa = PBXBuildFile; fileRef = 04AEECEA2393B4EDABC37244F1239588 /* RWSpinLock.h */; settings = {ATTRIBUTES = (Project, ); }; }; B57AC832F696B961129F42E68DA0914F /* SKSearchResultNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 49FEA5D9BD36512D6DAF0305E454C21B /* SKSearchResultNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B61FD3AA8214DE7386C1FC11C8D29267 /* RCTConvert+UIBackgroundFetchResult.m in Sources */ = {isa = PBXBuildFile; fileRef = 3E41A3B00394163C9CBAF010F4ECE1B6 /* RCTConvert+UIBackgroundFetchResult.m */; }; + B5C0784534B4C81936855874560F230C /* SDWebImageCacheKeyFilter.h in Headers */ = {isa = PBXBuildFile; fileRef = 7FA6B50EAC9CA7DB8CF121FB5D7A5DFF /* SDWebImageCacheKeyFilter.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B61FD3AA8214DE7386C1FC11C8D29267 /* RCTConvert+UIBackgroundFetchResult.m in Sources */ = {isa = PBXBuildFile; fileRef = 35790A06CA6341A8862F31EE0036A964 /* RCTConvert+UIBackgroundFetchResult.m */; }; B625D5784F759BE494CD345370277911 /* AtomicHashArray-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 10AC0610BFD1233219F62C08EA9836D5 /* AtomicHashArray-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B63190A3185A392452E244869C86BA24 /* ARTSurfaceView.h in Headers */ = {isa = PBXBuildFile; fileRef = A8161AF7903D5BD9636CBDBFD812B802 /* ARTSurfaceView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B63190A3185A392452E244869C86BA24 /* ARTSurfaceView.h in Headers */ = {isa = PBXBuildFile; fileRef = A2F701C62B224B575C2C151A5CA544D0 /* ARTSurfaceView.h */; settings = {ATTRIBUTES = (Project, ); }; }; B63DAFB06AC2D02D95A8CF66D6E1FECA /* strtod.cc in Sources */ = {isa = PBXBuildFile; fileRef = 154F69A69C27A4D8693B7BB2D3BB1152 /* strtod.cc */; settings = {COMPILER_FLAGS = "-Wno-unreachable-code"; }; }; B6593DA8207ABB3E1214F7D025C2AEB0 /* FBLPromise+Delay.m in Sources */ = {isa = PBXBuildFile; fileRef = 4BFDEAE55F13AF514F755C6AEBAED37A /* FBLPromise+Delay.m */; }; - B67E435AC80EC2BAB981F94F5D607C59 /* YGStyle.h in Headers */ = {isa = PBXBuildFile; fileRef = DBEF8150E3FFC9506A7843EDB9AFD1BD /* YGStyle.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B6842E62885EBBE6CA0C133734CBD26A /* RNFetchBlobReqBuilder.h in Headers */ = {isa = PBXBuildFile; fileRef = 56053D89CCBFA0BA3CDE1D02E7595E6B /* RNFetchBlobReqBuilder.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B67E435AC80EC2BAB981F94F5D607C59 /* YGStyle.h in Headers */ = {isa = PBXBuildFile; fileRef = B06ACF2F89632A6B3EFC0D6EE70C3313 /* YGStyle.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B6842E62885EBBE6CA0C133734CBD26A /* RNFetchBlobReqBuilder.h in Headers */ = {isa = PBXBuildFile; fileRef = 9AB085AADF89EE159EE7B7C3A83EBE18 /* RNFetchBlobReqBuilder.h */; settings = {ATTRIBUTES = (Project, ); }; }; B68CCC3524E9472D12E6E84D5D64B33D /* FIRInstallationsStoredAuthToken.m in Sources */ = {isa = PBXBuildFile; fileRef = D0E746D98ECFB576C1CDE133CDE4A748 /* FIRInstallationsStoredAuthToken.m */; }; B6AFF1D2AC43774591A5DEED821AF788 /* ClientResumeStatusCallback.h in Headers */ = {isa = PBXBuildFile; fileRef = 015B8C320491CDF6FE6160D9DF5F206A /* ClientResumeStatusCallback.h */; settings = {ATTRIBUTES = (Project, ); }; }; B6C5B18E7D63F47D4127BEFAEB0E082E /* FIRVersion.h in Headers */ = {isa = PBXBuildFile; fileRef = DA41E96E699A7134DBAC6CB3C1D4635A /* FIRVersion.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B6E3A26C40D3CE8046F2A4E6F2E526D9 /* RCTSurfaceView+Internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 03415F6712E38CEF6B5BA9AC87327B01 /* RCTSurfaceView+Internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B6EA4E205997B8C4DE9F5EE2C46D4FB6 /* RCTAdditionAnimatedNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 86B6EA59C8167D6CAF1A59391D82DA84 /* RCTAdditionAnimatedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B6E3A26C40D3CE8046F2A4E6F2E526D9 /* RCTSurfaceView+Internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 6B4B783D440A37DF09E0B1A2960BA264 /* RCTSurfaceView+Internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B6EA4E205997B8C4DE9F5EE2C46D4FB6 /* RCTAdditionAnimatedNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 6E0B44A004F1EF63F6E963268DD21C2A /* RCTAdditionAnimatedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; B70227D69A6C4A9AAC333E9A6BC9B3BF /* GLog.h in Headers */ = {isa = PBXBuildFile; fileRef = 9A3FC0C9D81433252C2F08F2B3C9CB52 /* GLog.h */; settings = {ATTRIBUTES = (Project, ); }; }; B718BDD197AE1C7D0EDF9A1E4B642CA5 /* tr.lproj in Resources */ = {isa = PBXBuildFile; fileRef = 57077BC8832B77EB3280A03E94418B43 /* tr.lproj */; }; B759270B24D2CBE4F50041D28432CE75 /* HazptrObjLinked.h in Headers */ = {isa = PBXBuildFile; fileRef = 1D7A00734ABDED0D84DE85316BAF7397 /* HazptrObjLinked.h */; settings = {ATTRIBUTES = (Project, ); }; }; B767F6175EFBE5741993405BBEBE97D6 /* FBLPromise+Do.h in Headers */ = {isa = PBXBuildFile; fileRef = 6775920A939C775EF8140BAA7F286927 /* FBLPromise+Do.h */; settings = {ATTRIBUTES = (Project, ); }; }; B79379EE30EB5B9FAB3B9E5DDFAF509D /* lossless_enc_sse41.c in Sources */ = {isa = PBXBuildFile; fileRef = 9A01115DDCB89F5DB53C547F949CDE10 /* lossless_enc_sse41.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - B7960B2A4F1B3A056186D0BCD8F4EBAD /* EXReactNativeUserNotificationCenterProxy.h in Headers */ = {isa = PBXBuildFile; fileRef = C73F242C04336D7FF6A7E8E1A751127D /* EXReactNativeUserNotificationCenterProxy.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B7960B2A4F1B3A056186D0BCD8F4EBAD /* EXReactNativeUserNotificationCenterProxy.h in Headers */ = {isa = PBXBuildFile; fileRef = BAEDE1CCBE0BCB69157858C188FAE38F /* EXReactNativeUserNotificationCenterProxy.h */; settings = {ATTRIBUTES = (Project, ); }; }; B79E683059398347D30F641EB0D6D947 /* FIROptions.m in Sources */ = {isa = PBXBuildFile; fileRef = 9E28A07190E1AE72714AD7F02C6B71C2 /* FIROptions.m */; }; - B7ACE0423F22C8093B0347B15D5E6DF7 /* decorator.h in Headers */ = {isa = PBXBuildFile; fileRef = 750EE3CC561AB7E2DC7055E64BC1C283 /* decorator.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B7ACE0423F22C8093B0347B15D5E6DF7 /* decorator.h in Headers */ = {isa = PBXBuildFile; fileRef = 91AA6E03E106485D4765994A8DE247C8 /* decorator.h */; settings = {ATTRIBUTES = (Project, ); }; }; B7B02CF69AD8090F7EC4BDF6B106340B /* AsyncPipe.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 18174ECBCD33426D3D4DACD46232DB0B /* 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 = 6CA68C76334A6FC469D61CAF8A391766 /* vp8_dec.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - B7BDE180DE1B36F39AF1EB08FFBC40F9 /* react-native-notifications-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 0013155BD637465406EC7C9A5EBFD577 /* react-native-notifications-dummy.m */; }; - B7DBE33CE276F58E6F233BA4D78F093D /* BSG_KSCrashSentry_CPPException.mm in Sources */ = {isa = PBXBuildFile; fileRef = E38BCF23A3F366BF569AA51ED7A07FD0 /* BSG_KSCrashSentry_CPPException.mm */; }; - B7DFA107ED277F43F7F2BAC8F7E62403 /* RNFirebaseMessaging.h in Headers */ = {isa = PBXBuildFile; fileRef = 9BB894F231018CC975693BDF8F83262E /* RNFirebaseMessaging.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B7BDE180DE1B36F39AF1EB08FFBC40F9 /* react-native-notifications-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 9CA417C75F904BCF9CC1D2051C8884C8 /* react-native-notifications-dummy.m */; }; + B7DBE33CE276F58E6F233BA4D78F093D /* BSG_KSCrashSentry_CPPException.mm in Sources */ = {isa = PBXBuildFile; fileRef = FA344C3855C0E0D813CC3A07CD96FD9A /* BSG_KSCrashSentry_CPPException.mm */; }; + B7DFA107ED277F43F7F2BAC8F7E62403 /* RNFirebaseMessaging.h in Headers */ = {isa = PBXBuildFile; fileRef = 1A28F957568227D81348FE6BF5774559 /* RNFirebaseMessaging.h */; settings = {ATTRIBUTES = (Project, ); }; }; B7FD8E55781BD2B09D63E76DCDF4A3A2 /* FlipperDiagnosticsViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = AB6FD7FA8A7CF99124B42EAE0348214D /* 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 = 568D062A0FF6D94B39E569F10DE6AD41 /* REAClockNodes.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B80A5602ADDC9557632BB5C6BCB3DB03 /* UMErrorCodes.h in Headers */ = {isa = PBXBuildFile; fileRef = 512B8149A1DDC202F6AE37A0577E9EB2 /* UMErrorCodes.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B803FBAD88A96C3E5446FC5948528C39 /* REAClockNodes.h in Headers */ = {isa = PBXBuildFile; fileRef = 3FCBD9A198766DC5A90CE8EE2A7EEC25 /* REAClockNodes.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B80A5602ADDC9557632BB5C6BCB3DB03 /* UMErrorCodes.h in Headers */ = {isa = PBXBuildFile; fileRef = 308213306CADB3BB2BE07F5AB7B6C62C /* UMErrorCodes.h */; settings = {ATTRIBUTES = (Project, ); }; }; B8143F787828257EC3C64CF3782049B8 /* Hazptr.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 77FE10D1824E65E82C3519974520DF77 /* 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 = 87EF947C2BC99F143419A619075D6445 /* AsyncSignalHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B82032A92F84669EA74AA0D58915F302 /* RCTImageURLLoader.h in Headers */ = {isa = PBXBuildFile; fileRef = 6648E271EB48C91A24CD30B895D7B530 /* RCTImageURLLoader.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B82032A92F84669EA74AA0D58915F302 /* RCTImageURLLoader.h in Headers */ = {isa = PBXBuildFile; fileRef = 170701BBADABFC1E9E6393032F3AEF81 /* RCTImageURLLoader.h */; settings = {ATTRIBUTES = (Project, ); }; }; B8317134B45F9440FFFEFF835F1613A9 /* common_sse2.h in Headers */ = {isa = PBXBuildFile; fileRef = FA584A9A692794837A7D5B9895F4B148 /* common_sse2.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B833FB9D115B433EC0105072048CB9BF /* TurboModuleUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = 40CC5CEBEF1FD6B260ECFB4E7B4A77EC /* TurboModuleUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B83F8B847341E98718FA2955E7BD865A /* RCTProfile.m in Sources */ = {isa = PBXBuildFile; fileRef = 081E5EECE46CD1A347C6EF95EB9C8529 /* 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 = DE381473802F29281EA11A762D3463A0 /* RCTBaseTextInputShadowView.m */; }; + B833FB9D115B433EC0105072048CB9BF /* TurboModuleUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = 0840F831C696E2F3C6A6216E2C1FE3E7 /* TurboModuleUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B83F8B847341E98718FA2955E7BD865A /* RCTProfile.m in Sources */ = {isa = PBXBuildFile; fileRef = 6365446E5C18E379A60C23BE3F13AB88 /* 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 = 8553F718EA3BAA0C1A26F85C456334A5 /* RCTBaseTextInputShadowView.m */; }; B8502C80D8E6C9931169155C3D26010A /* ResumeIdentificationToken.h in Headers */ = {isa = PBXBuildFile; fileRef = 07EF8F24AB991394A0B0F3F56E87D22E /* ResumeIdentificationToken.h */; settings = {ATTRIBUTES = (Project, ); }; }; B85C42718BEFCF4BA75650A4251641CF /* GULLoggerCodes.h in Headers */ = {isa = PBXBuildFile; fileRef = A6A364F1EAA61FBF4BCF095078841037 /* GULLoggerCodes.h */; settings = {ATTRIBUTES = (Project, ); }; }; B860E187C366E80D3D751472B347400F /* FlipperKitReactPlugin.m in Sources */ = {isa = PBXBuildFile; fileRef = 6AA080C7BD9045A026E2CCFBF9120E84 /* 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 = 781386408A834FB314B5B80336788C98 /* SysSyscall.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B89E3A3447915DDB4DFD9C50DCE2D762 /* RCTURLRequestHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 2151AAB814BA4694A87F13FCB2CE314C /* RCTURLRequestHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B8CDBCB2063AD7729F98BB1F42114206 /* UIImage+Transform.m in Sources */ = {isa = PBXBuildFile; fileRef = 28449F76B89032B07C051A3E0089EC0B /* UIImage+Transform.m */; }; + B89E3A3447915DDB4DFD9C50DCE2D762 /* RCTURLRequestHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 451D0D92F2148140AEF5B245B955B7A4 /* RCTURLRequestHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B8CDBCB2063AD7729F98BB1F42114206 /* UIImage+Transform.m in Sources */ = {isa = PBXBuildFile; fileRef = E4796F6121A2ACD66D4EC63D00FED6E3 /* UIImage+Transform.m */; }; B8DFD92B4164576447420BA5B4E9657E /* GDTCORRegistrar.h in Headers */ = {isa = PBXBuildFile; fileRef = D0015689AC1ACED5608C4686630747EC /* GDTCORRegistrar.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B91776339604D97A896D26A18DD95CCC /* SDWebImageError.m in Sources */ = {isa = PBXBuildFile; fileRef = 50E24753E2BF7235A9180BA697DF606A /* SDWebImageError.m */; }; + B91776339604D97A896D26A18DD95CCC /* SDWebImageError.m in Sources */ = {isa = PBXBuildFile; fileRef = E5A932D638E8B5BFA3E4F591C0F9FFA1 /* SDWebImageError.m */; }; B91E70B671250005FA74AD2BC312CA08 /* libwebp-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = CF92919B59F5604713F163B30ACF5A7F /* libwebp-dummy.m */; }; B94722DA2E0A483D06286C0BDFE937B6 /* CustomizationPoint.h in Headers */ = {isa = PBXBuildFile; fileRef = 7BEE7C2366CEEFD94681B02B93483CFF /* CustomizationPoint.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B948BB6AB8F03C5EA60D9BCA3F8ADC54 /* RCTImagePlugins.mm in Sources */ = {isa = PBXBuildFile; fileRef = D4A7990730C79B33E94B1BD3679B751B /* 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 = 75D557C23935A8E80A7188A1DCF5E3BE /* RCTSurfaceHostingView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B9A3BE02909B5E7C23AA24C087C11A9E /* RCTMultilineTextInputView.h in Headers */ = {isa = PBXBuildFile; fileRef = C9C73D7D00469115D46057DBC13A85F7 /* RCTMultilineTextInputView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B9B73F905DA515472B22E42E9EE1954B /* RCTLinkingPlugins.mm in Sources */ = {isa = PBXBuildFile; fileRef = DBA6C305890D75EAECC073B075616CC6 /* 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 = 7C618878BFD5F90425C57D631F36882B /* RNFirebase-dummy.m */; }; + B948BB6AB8F03C5EA60D9BCA3F8ADC54 /* RCTImagePlugins.mm in Sources */ = {isa = PBXBuildFile; fileRef = EC10EAD1ADD133B64234EC22E156F4F3 /* 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 = 573404D65999E8662D177E005915F5FA /* RCTSurfaceHostingView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B9A3BE02909B5E7C23AA24C087C11A9E /* RCTMultilineTextInputView.h in Headers */ = {isa = PBXBuildFile; fileRef = 609FB1F9A3F3610061E577D5F90A57BA /* RCTMultilineTextInputView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B9B73F905DA515472B22E42E9EE1954B /* RCTLinkingPlugins.mm in Sources */ = {isa = PBXBuildFile; fileRef = 65BEB90BE7B53E88E5BBB269DB4117BE /* 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 = B0E0EE7ABBF7557AE52CBFDD38CE973B /* RNFirebase-dummy.m */; }; B9D989270BF39444739B9D53F28332CB /* cost_neon.c in Sources */ = {isa = PBXBuildFile; fileRef = 4B1B31D2AC8605E7CA304254F6F815DE /* cost_neon.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - B9E9A4C8414CC010B04907511592478C /* RNFirebaseCrashlytics.h in Headers */ = {isa = PBXBuildFile; fileRef = 42B0FA4D0C81A84BABD6BF79E80D54FD /* RNFirebaseCrashlytics.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B9EDCDF3FAC046611DB90A9950FC0F52 /* RNFirebaseFirestore.h in Headers */ = {isa = PBXBuildFile; fileRef = 456B93874F92763985E86C307582D5DE /* RNFirebaseFirestore.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B9E9A4C8414CC010B04907511592478C /* RNFirebaseCrashlytics.h in Headers */ = {isa = PBXBuildFile; fileRef = 82EB565C0F82A998B5CEA6A1F08709AE /* RNFirebaseCrashlytics.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B9EDCDF3FAC046611DB90A9950FC0F52 /* RNFirebaseFirestore.h in Headers */ = {isa = PBXBuildFile; fileRef = 36C6EFB7DF751CCA66B5AAAFEC78F70E /* RNFirebaseFirestore.h */; settings = {ATTRIBUTES = (Project, ); }; }; B9F471E76219FEF567A697FCAC6988A6 /* RecordIO.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1EF928F0135955C6628E8137331522C3 /* 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 = 811549BA5884DCB69CBD81DD7841462B /* RCTUtilsUIOverride.h */; settings = {ATTRIBUTES = (Project, ); }; }; - BA2CD348EC967C9A230CEBAC06ADEB71 /* UIResponder+FirstResponder.m in Sources */ = {isa = PBXBuildFile; fileRef = 74B387B68F9239F26E4E1D3379EC1140 /* UIResponder+FirstResponder.m */; }; + B9FB25A6662D91DE4E9F30FD760ECA2B /* RCTUtilsUIOverride.h in Headers */ = {isa = PBXBuildFile; fileRef = 95EA76A62A25B3C0A87966E01C27818F /* RCTUtilsUIOverride.h */; settings = {ATTRIBUTES = (Project, ); }; }; + BA2CD348EC967C9A230CEBAC06ADEB71 /* UIResponder+FirstResponder.m in Sources */ = {isa = PBXBuildFile; fileRef = 260F37D4A8E3C4253139756D5D412679 /* UIResponder+FirstResponder.m */; }; BA320783C2C9624896E06C34E9BF688F /* vp8i_dec.h in Headers */ = {isa = PBXBuildFile; fileRef = 2537A03F74E26F248FC9304254BCA826 /* vp8i_dec.h */; settings = {ATTRIBUTES = (Project, ); }; }; BA5E0CA71A36D82490FA1A0B3127E89D /* FIRComponentType.h in Headers */ = {isa = PBXBuildFile; fileRef = 3BF9A72ED1750E91CA64088BD18ED276 /* FIRComponentType.h */; settings = {ATTRIBUTES = (Project, ); }; }; BA884E615C31E28E4084698CB73A0AA8 /* SysStat.h in Headers */ = {isa = PBXBuildFile; fileRef = 31CA4A4746C7B9C11F6F7B92681A9B88 /* SysStat.h */; settings = {ATTRIBUTES = (Project, ); }; }; BA8AF0CCF12B99D7536C662611ADB1FD /* GDTCCTUploader.m in Sources */ = {isa = PBXBuildFile; fileRef = D887C9588B3363B0692499FB3E771513 /* GDTCCTUploader.m */; }; BA942A5A358D6A3A01F66E7C949FD930 /* vi.lproj in Resources */ = {isa = PBXBuildFile; fileRef = 17B16E05C4A91EA5C4A45ED944F1411A /* vi.lproj */; }; - BA997D0A220566AB86D6FF4BDE3FA2C0 /* SDImageCachesManagerOperation.m in Sources */ = {isa = PBXBuildFile; fileRef = 942C04CD3160AE3DFED89E1A2E902892 /* SDImageCachesManagerOperation.m */; }; - BAAF1FE5B7910872AF80471430B0D4FD /* RNReanimated-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 34F0B89001764776FAF3677B7137DC39 /* RNReanimated-dummy.m */; }; + BA997D0A220566AB86D6FF4BDE3FA2C0 /* SDImageCachesManagerOperation.m in Sources */ = {isa = PBXBuildFile; fileRef = 5B24F284A1BC4020648A52078D771409 /* SDImageCachesManagerOperation.m */; }; + BAAF1FE5B7910872AF80471430B0D4FD /* RNReanimated-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = BA2D585E516A138559369AA2E2257387 /* RNReanimated-dummy.m */; }; BAB34DC9AE18D51771AD2EFF9AE9E82E /* NetOps.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 812075657E590B5CDDA368DC0ABDE940 /* 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 = 9F805C09F19ACC63F9DA6181B3059F82 /* RCTProfileTrampoline-arm64.S */; }; - BB0753E38ECF0A3D20B3D17FDA002525 /* RCTBaseTextShadowView.m in Sources */ = {isa = PBXBuildFile; fileRef = B01F3DAB08F37744FF6F8C05B00B9C18 /* RCTBaseTextShadowView.m */; }; - BB0E48F804C4577F614C7C4144E7757A /* SDImageHEICCoder.h in Headers */ = {isa = PBXBuildFile; fileRef = 1B606C3DDAF2EFB94FD81B5B70B0A198 /* SDImageHEICCoder.h */; settings = {ATTRIBUTES = (Project, ); }; }; - BB6E05C3DE3BA57A47108822797DD27D /* RCTImageLoaderWithAttributionProtocol.h in Headers */ = {isa = PBXBuildFile; fileRef = A59E89BC17764FD67238AFCB3714E538 /* RCTImageLoaderWithAttributionProtocol.h */; settings = {ATTRIBUTES = (Project, ); }; }; + BAB4242AB0145F5AF6043535E7E14C07 /* RCTProfileTrampoline-arm64.S in Sources */ = {isa = PBXBuildFile; fileRef = BFEB54173ED83DC4030CA266F119B8D2 /* RCTProfileTrampoline-arm64.S */; }; + BB0753E38ECF0A3D20B3D17FDA002525 /* RCTBaseTextShadowView.m in Sources */ = {isa = PBXBuildFile; fileRef = ADEBEA78A5A2FA33F1C32DDB91846980 /* RCTBaseTextShadowView.m */; }; + BB6E05C3DE3BA57A47108822797DD27D /* RCTImageLoaderWithAttributionProtocol.h in Headers */ = {isa = PBXBuildFile; fileRef = B6CF0EE8C1645A913462FB59BEDFCCB3 /* RCTImageLoaderWithAttributionProtocol.h */; settings = {ATTRIBUTES = (Project, ); }; }; BB72C52113C41EE2194D3A3EA913DC69 /* webpi_dec.h in Headers */ = {isa = PBXBuildFile; fileRef = F1912D79F479F748F47918A3423B88C0 /* webpi_dec.h */; settings = {ATTRIBUTES = (Project, ); }; }; - BB8D91196242AFE19E79B921D659EE74 /* TurboModuleBinding.h in Headers */ = {isa = PBXBuildFile; fileRef = 4FA133FF443545FD679E492E568820B6 /* TurboModuleBinding.h */; settings = {ATTRIBUTES = (Project, ); }; }; - BB91AF0B1144084593E5017E91C3A237 /* SDDiskCache.h in Headers */ = {isa = PBXBuildFile; fileRef = FAA104852192F9F2689C07B555B3293D /* SDDiskCache.h */; settings = {ATTRIBUTES = (Project, ); }; }; + BB8D91196242AFE19E79B921D659EE74 /* TurboModuleBinding.h in Headers */ = {isa = PBXBuildFile; fileRef = 09A04ADE0053D599FD3C7F5E4EB1D387 /* TurboModuleBinding.h */; settings = {ATTRIBUTES = (Project, ); }; }; BBAB76A21C95354A81832F9C5F856D09 /* SKResponseInfo.m in Sources */ = {isa = PBXBuildFile; fileRef = A4A6152E441BA892D3155E0A5B3C5736 /* 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 = 8C1460D9084CFBCE271CE70F15C7785F /* 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"; }; }; BBB9BBD85FD78B7232142ADE3AD15BD0 /* SDImageWebPCoder.h in Headers */ = {isa = PBXBuildFile; fileRef = 288FA69B3B754B0FB6067DDECAD79A67 /* SDImageWebPCoder.h */; settings = {ATTRIBUTES = (Project, ); }; }; BBC83955233A742A5693B1C7A40E2E1D /* RequestResponseResponder.cpp in Sources */ = {isa = PBXBuildFile; fileRef = CBA203410526E873FD2BA6EA31CAC0CF /* 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 = 528FBF3A38050FAB0D15ACE839634B1B /* Try-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; BBEF57329313254ED8F52D89464F39C6 /* FlipperStep.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 7475678D43B3FABE4C3E6E70042FA89A /* 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 = 4921921C7C64404DD7FF84797378B2BD /* CallInvoker.h */; settings = {ATTRIBUTES = (Project, ); }; }; + BC09034C66F7BDEB05FC6DF3A6D2B7D2 /* CallInvoker.h in Headers */ = {isa = PBXBuildFile; fileRef = 97698FCE3D288E738184B1B75A32D7A2 /* CallInvoker.h */; settings = {ATTRIBUTES = (Project, ); }; }; BC254260B8604B20837E6C808B72014D /* TOCropScrollView.m in Sources */ = {isa = PBXBuildFile; fileRef = 6D44D139FA47494C9F2C3FD27FC9C14F /* TOCropScrollView.m */; }; BC383056F1DB2F7478B30CCF6FFE5F60 /* FIRLogger.h in Headers */ = {isa = PBXBuildFile; fileRef = F13C587249E9D10A20EDB69E61DBF834 /* FIRLogger.h */; settings = {ATTRIBUTES = (Project, ); }; }; - BC41EDFC95D158F607DE441FBD7205D3 /* RCTCxxModule.mm in Sources */ = {isa = PBXBuildFile; fileRef = 92CD58808BEC1B77743DB330D006FE17 /* RCTCxxModule.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - BC479BD3F6C3BF2BD1FBC876857618B5 /* QBVideoIndicatorView.h in Headers */ = {isa = PBXBuildFile; fileRef = 491AED04763753D48BB1E360F814442C /* QBVideoIndicatorView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - BC5B61B37C8BCD8467E30F6D9F15783C /* SDImageCacheDefine.m in Sources */ = {isa = PBXBuildFile; fileRef = B6B49746D7B4C1049D33AFCA620292EF /* SDImageCacheDefine.m */; }; + BC41EDFC95D158F607DE441FBD7205D3 /* RCTCxxModule.mm in Sources */ = {isa = PBXBuildFile; fileRef = E7749513D67CBE0A923D65AFFAC259E3 /* RCTCxxModule.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + BC479BD3F6C3BF2BD1FBC876857618B5 /* QBVideoIndicatorView.h in Headers */ = {isa = PBXBuildFile; fileRef = 2DA6FAC6C0E1D26442FDF849CB49F96B /* QBVideoIndicatorView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + BC5B61B37C8BCD8467E30F6D9F15783C /* SDImageCacheDefine.m in Sources */ = {isa = PBXBuildFile; fileRef = C51A4E95B315C339E2A51008F8D90AED /* SDImageCacheDefine.m */; }; BC618200543E0DFEF8921BCFBC97D579 /* AtomicNotification-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = A6F20E6C826970B299408713259A5FAB /* AtomicNotification-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; BC726EC62C981E8283E5D854F08EE647 /* SingletonRelaxedCounter.h in Headers */ = {isa = PBXBuildFile; fileRef = 67BC50D5F96759CF85CF5669EF447234 /* SingletonRelaxedCounter.h */; settings = {ATTRIBUTES = (Project, ); }; }; - BC96F7ECB77D069E3F7256A1284D7D22 /* RCTTiming.mm in Sources */ = {isa = PBXBuildFile; fileRef = 8703D2055FA62C7E75DC2CEC5F8A8D2A /* 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 = A40454307D55504010728E2F84CC410A /* RCTStatusBarManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + BC96F7ECB77D069E3F7256A1284D7D22 /* RCTTiming.mm in Sources */ = {isa = PBXBuildFile; fileRef = 333276E0DEE349E58047CEB243CBDAD6 /* 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 = CD29597D116D606D128EEE2B84D8A47E /* RCTStatusBarManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; BCD873A143E0D34BEC00AA959AD55659 /* Futex-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 7ADC07E6F8AB8508C61B7727E03C3273 /* Futex-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; BCDD72F20390EC6D23080FC948D4EC3B /* HazptrThreadPoolExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = 41286BF43643EC0D22E6495D126A94B9 /* HazptrThreadPoolExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; - BCE287AB23E636C9B4A9CA60EB400D52 /* KeyboardTrackingViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 077E104C263332DB4F4F7BD9DA062B78 /* KeyboardTrackingViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + BCE287AB23E636C9B4A9CA60EB400D52 /* KeyboardTrackingViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 17F6A57C57C11A1B1F8360CD7BEE32F2 /* KeyboardTrackingViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; BD0D4A0B32634B1D13D9E57BD4D4DAD8 /* Memory.h in Headers */ = {isa = PBXBuildFile; fileRef = 2AF7BDD7B589CE7CD8BC311B01574069 /* Memory.h */; settings = {ATTRIBUTES = (Project, ); }; }; BD1D9E289B85888E5A0DA85BFDB7A306 /* common_sse41.h in Headers */ = {isa = PBXBuildFile; fileRef = EEE3248F0F7589500C47384F04CAE609 /* common_sse41.h */; settings = {ATTRIBUTES = (Project, ); }; }; BD30D501178A064D19E7DB0BDEED207C /* GDTCORTransformer.m in Sources */ = {isa = PBXBuildFile; fileRef = C3A93A7C5F6A0F2C1EEDC9EDE3C12E12 /* GDTCORTransformer.m */; }; - BDADC8329AD00834CF153FD2DB953E04 /* RCTBackedTextInputDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = 08ABEBB9725655CC6ED26B3DEDB4CA00 /* RCTBackedTextInputDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; }; + BDADC8329AD00834CF153FD2DB953E04 /* RCTBackedTextInputDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = 38AE59C5F76AE8294DEE93C2A2934A1F /* RCTBackedTextInputDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; }; BDC1917353224F29E170FF5FFB75F6BE /* ManualExecutor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 6C22259A206D11BC58FAD50035C4E804 /* 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 = 975543F4DF1A3254A9BE804D71DF9D25 /* 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 = DCF9C0F901ECE09B6D592C8AC869357F /* FlipperResponderImpl.h */; settings = {ATTRIBUTES = (Project, ); }; }; BDFABD15A8D4DB4905425E02902B21C3 /* AtomicNotification.h in Headers */ = {isa = PBXBuildFile; fileRef = 063EE953E780320CB010F1F0C42E48E1 /* AtomicNotification.h */; settings = {ATTRIBUTES = (Project, ); }; }; BE13FFBC3ECD1D252D25888F6B0FF93A /* SKTapListener.h in Headers */ = {isa = PBXBuildFile; fileRef = 3494E2DD06E10CB2B5DAEE094A77E219 /* SKTapListener.h */; settings = {ATTRIBUTES = (Project, ); }; }; BE40EDBCF4471381FF28E7701C8FEA69 /* bit_reader_utils.c in Sources */ = {isa = PBXBuildFile; fileRef = 85AC1326A0F55B702F31FCB4E29C0D18 /* bit_reader_utils.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - BE495B8B88591823B448C899FCDC22A3 /* JSINativeModules.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 449186A1FD562F7DCB008783E13C8BCE /* 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 = C38D77E4FF706ACDC4472375DFF52014 /* 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 = 668B5E80E08960E464EB3C163D8D19AC /* 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 = 6AD306A52450FF701DE02555B3745972 /* json.h */; settings = {ATTRIBUTES = (Project, ); }; }; BEA7DD3B32ECCC8891AF8E6EB931B571 /* ParkingLot.h in Headers */ = {isa = PBXBuildFile; fileRef = 4E01C0EB45DFE73C38812AAD0C34E7E7 /* ParkingLot.h */; settings = {ATTRIBUTES = (Project, ); }; }; - BEAE3668C99FF6B70535D14ADBFC1971 /* RCTProfile.h in Headers */ = {isa = PBXBuildFile; fileRef = 209CA054AFC6D7B52A3633988433EACE /* RCTProfile.h */; settings = {ATTRIBUTES = (Project, ); }; }; + BEAE3668C99FF6B70535D14ADBFC1971 /* RCTProfile.h in Headers */ = {isa = PBXBuildFile; fileRef = 1DFF90256321A8BC2CD3C51BD1C11E00 /* RCTProfile.h */; settings = {ATTRIBUTES = (Project, ); }; }; BEB8A46866B0036585164D48371F67F3 /* rescaler_msa.c in Sources */ = {isa = PBXBuildFile; fileRef = EEB506DC9174101E862BE53F349EEE1B /* rescaler_msa.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; BEED64FF0DAE73F86741D0DF21B4CBD6 /* RSocketResponder.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 6C52B6578B5E021E9BF2AFFF4F6FEF84 /* 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 = 0A469974EB144681D75EE677799BD632 /* GDTCORReachability.m */; }; BF4FDCC4F1BC4069129114C5CC7C0E3D /* ReadMostlySharedPtr.h in Headers */ = {isa = PBXBuildFile; fileRef = 55057364D1B31884FD509434B07AFC70 /* ReadMostlySharedPtr.h */; settings = {ATTRIBUTES = (Project, ); }; }; - BF600203ED20170B32D07A27FE9D63D5 /* BugsnagNotifier.h in Headers */ = {isa = PBXBuildFile; fileRef = 9652CB5F5744FD7E236307D575339A15 /* BugsnagNotifier.h */; settings = {ATTRIBUTES = (Project, ); }; }; + BF600203ED20170B32D07A27FE9D63D5 /* BugsnagNotifier.h in Headers */ = {isa = PBXBuildFile; fileRef = 0B57FDB912A64CE327E7E3F4AEBF13EB /* BugsnagNotifier.h */; settings = {ATTRIBUTES = (Project, ); }; }; BF649BCAE7F16742B4A6781A42372DFC /* LifoSem.h in Headers */ = {isa = PBXBuildFile; fileRef = 88AE1DDDCF2704E074DA97D4881CCB17 /* LifoSem.h */; settings = {ATTRIBUTES = (Project, ); }; }; - BF8DD81AF5CA47EDA91EECC241516063 /* BSG_KSCrashType.c in Sources */ = {isa = PBXBuildFile; fileRef = 09AEF2D1F4A3A89E05BC42A67C9A9078 /* BSG_KSCrashType.c */; }; - BFA315F1B904E334EA552B6D6A6848F8 /* REAConcatNode.h in Headers */ = {isa = PBXBuildFile; fileRef = CB4578475007A74E070102107138CF00 /* REAConcatNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + BF8DD81AF5CA47EDA91EECC241516063 /* BSG_KSCrashType.c in Sources */ = {isa = PBXBuildFile; fileRef = E625D021E09C9F838D67D872B0F3B4C8 /* BSG_KSCrashType.c */; }; + BFA315F1B904E334EA552B6D6A6848F8 /* REAConcatNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 8372FF8B7ABBCACFD7717706CC40F8D1 /* REAConcatNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + BFC35AD1D40EB56B4DA583649E8F5D13 /* SDImageTransformer.h in Headers */ = {isa = PBXBuildFile; fileRef = 8F7B3DD8A8ADDB7D03896EBBEFEAD73F /* SDImageTransformer.h */; settings = {ATTRIBUTES = (Project, ); }; }; BFCC85691AED43515CACDCDB566E10EE /* logging.h in Headers */ = {isa = PBXBuildFile; fileRef = 8FC616C8356C77BB569FB79454D32E2D /* logging.h */; settings = {ATTRIBUTES = (Project, ); }; }; - BFD25A0DCB8C16E01937EF26DBA8E7B1 /* ARTBrush.m in Sources */ = {isa = PBXBuildFile; fileRef = BB2D3C3460F8F63518DD4E289F7D0265 /* ARTBrush.m */; }; - BFDBEDA2F9345FED6BF31A72192A415E /* REATransformNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 0B0EB0C1455E1309931489C3C4346DC9 /* REATransformNode.m */; }; - C0212109D1A2A2C10AAC8340C845DC73 /* RCTI18nManager.mm in Sources */ = {isa = PBXBuildFile; fileRef = 675B2C2AFE90C3AE02FB47A8366ECCD7 /* 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 = 72D72FC9A38216D6880CE47E00B26E86 /* ARTBrush.m */; }; + BFDBEDA2F9345FED6BF31A72192A415E /* REATransformNode.m in Sources */ = {isa = PBXBuildFile; fileRef = C39B56B0AB2AC1FB3B5ACE926A107F62 /* REATransformNode.m */; }; + C0212109D1A2A2C10AAC8340C845DC73 /* RCTI18nManager.mm in Sources */ = {isa = PBXBuildFile; fileRef = 70D8905F06D265CF84C6E91D7418C2E6 /* 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 = D6900D86A4145822B97D5B8BE8BC3265 /* DynamicBoundedQueue.h */; settings = {ATTRIBUTES = (Project, ); }; }; C06443B16AB8E3BFD89427A2B4B49DEB /* SKHiddenWindow.h in Headers */ = {isa = PBXBuildFile; fileRef = 249E431ECB7062A376A77BF1293AE447 /* SKHiddenWindow.h */; settings = {ATTRIBUTES = (Project, ); }; }; C07E5C729C5CDBA463F9B3244CB7557F /* ParallelMap.h in Headers */ = {isa = PBXBuildFile; fileRef = 0BCE56F98F0FD3F694163684BF304F9A /* ParallelMap.h */; settings = {ATTRIBUTES = (Project, ); }; }; @@ -2424,234 +2428,238 @@ C0A2023B19676FAABBBA6B2BC4D9F8F5 /* FrameTransportImpl.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 631395FF074A61F59CD06E7617BBDB84 /* 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 = D950CA442FCE71D20BAC91A8491BF8BF /* yuv_neon.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; C0A764E2A7162F96CDC19C3FBB3941BA /* Hash.h in Headers */ = {isa = PBXBuildFile; fileRef = 97D5B3A87EDE5E5EE3B834F94B26B292 /* Hash.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C0ACB39A2A62B6BE2B02F8A7AB97A14F /* RNFirebaseLinks.m in Sources */ = {isa = PBXBuildFile; fileRef = BB759F07AA4F96184B483DA4D5D1044A /* RNFirebaseLinks.m */; }; + C0ACB39A2A62B6BE2B02F8A7AB97A14F /* RNFirebaseLinks.m in Sources */ = {isa = PBXBuildFile; fileRef = 63285016609FF49B863E4ED8B264A4DF /* RNFirebaseLinks.m */; }; C0E488789FEA375C81FE2F74F4AA9D58 /* EventBaseThread.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FF0C368240181DC19A047556A75A06A1 /* 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 = 87BC5392A15D33DF52E1EA10F18A8449 /* 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"; }; }; + C0FCDF752209039DE050D739046CA841 /* RCTUIImageViewAnimated.m in Sources */ = {isa = PBXBuildFile; fileRef = 1868C7A428739E45D4F043D32EC030D8 /* 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"; }; }; C0FEA850E34B4915EAAE6772C2C0221B /* TOCropViewController-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 5C091FB67164F621B15BB83DF4194BE7 /* TOCropViewController-dummy.m */; }; - C10FBABE08506DAFC414E706F80196A9 /* RCTAutoInsetsProtocol.h in Headers */ = {isa = PBXBuildFile; fileRef = 70B3C3AE5C2CDC52BD74F7C527EF126E /* RCTAutoInsetsProtocol.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C10FBABE08506DAFC414E706F80196A9 /* RCTAutoInsetsProtocol.h in Headers */ = {isa = PBXBuildFile; fileRef = 2A2794ABC6F0F9A92B0C680B4D7DC350 /* RCTAutoInsetsProtocol.h */; settings = {ATTRIBUTES = (Project, ); }; }; C11DD2F2A0EC13794D0F91C78BD33660 /* BasicTransportCertificate.h in Headers */ = {isa = PBXBuildFile; fileRef = B49412CDE6DE2E211035FF09F182783B /* BasicTransportCertificate.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C13607802A82E097C94614A6F16A33AE /* RNVectorIcons-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 6473A1A5035B1F43BB549E01BEF8EB93 /* RNVectorIcons-dummy.m */; }; - C13EFBDE5744BB83A5A6033903378641 /* InspectorInterfaces.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 32D8F496A70588E5E81E35795E7BD3EB /* InspectorInterfaces.cpp */; }; - C1527E631CCA0A9E697CE853758205F9 /* RNPanHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = 92B4938E17DE6E0F57D621D9A0B535B6 /* RNPanHandler.m */; }; - C17FB5AEA62C5636EF99FC0311BF2FB3 /* BSG_KSCrashSentry_NSException.m in Sources */ = {isa = PBXBuildFile; fileRef = B09BEB8BF8B9A86ECDA18517AA7D8677 /* BSG_KSCrashSentry_NSException.m */; }; - C19100CFF6BD15D5AFE3EC100C926ADF /* RCTAnimationPlugins.h in Headers */ = {isa = PBXBuildFile; fileRef = A97B54AF94D69E660EA7DC1739BA3584 /* RCTAnimationPlugins.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C13607802A82E097C94614A6F16A33AE /* RNVectorIcons-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = A0663E6F04278F135C5BB5E4F5DA8156 /* RNVectorIcons-dummy.m */; }; + C13EFBDE5744BB83A5A6033903378641 /* InspectorInterfaces.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9B9161345C52D307F492A98B689B4C4D /* InspectorInterfaces.cpp */; }; + C1527E631CCA0A9E697CE853758205F9 /* RNPanHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = 47BED96EE84514335B2988730E69EE32 /* RNPanHandler.m */; }; + C17FB5AEA62C5636EF99FC0311BF2FB3 /* BSG_KSCrashSentry_NSException.m in Sources */ = {isa = PBXBuildFile; fileRef = A8DED098DA264CAECA3C1F977D252144 /* BSG_KSCrashSentry_NSException.m */; }; + C19100CFF6BD15D5AFE3EC100C926ADF /* RCTAnimationPlugins.h in Headers */ = {isa = PBXBuildFile; fileRef = 08ED769A31355E94E8B29A14CC12140F /* RCTAnimationPlugins.h */; settings = {ATTRIBUTES = (Project, ); }; }; C1E765069FBFC5049BDD3048CF48C443 /* Config.h in Headers */ = {isa = PBXBuildFile; fileRef = 0DEA16C84145A5C716890FD5A24439FB /* Config.h */; settings = {ATTRIBUTES = (Project, ); }; }; C2210BD937C3EFB00A98950CDF17E200 /* F14Map.h in Headers */ = {isa = PBXBuildFile; fileRef = 6DD62CAAA7E16DC81FADB221C0579481 /* F14Map.h */; settings = {ATTRIBUTES = (Project, ); }; }; C28013B0E6EE2B2312C28F6C894195C2 /* SmallLocks.h in Headers */ = {isa = PBXBuildFile; fileRef = E23A8B7A5F1AACF75628382B60FDC727 /* SmallLocks.h */; settings = {ATTRIBUTES = (Project, ); }; }; C280FBA6CB4B66759E107B5F44C4873B /* SingletonStackTrace.h in Headers */ = {isa = PBXBuildFile; fileRef = 56722B3CD28973C29746EFC85B194276 /* SingletonStackTrace.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C298975604349C2BB0E1BA4F33DC37C9 /* CoreModulesPlugins.mm in Sources */ = {isa = PBXBuildFile; fileRef = F413EB8549ECEB611157781FBA189FF5 /* 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 = F5DBA3F2E8CDCBEF00EBF286758F73E4 /* RCTSurfacePresenterStub.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C298975604349C2BB0E1BA4F33DC37C9 /* CoreModulesPlugins.mm in Sources */ = {isa = PBXBuildFile; fileRef = 60F5052B2993115C13F986CABC31AED6 /* 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 = 0550464CE86161D1E121046A5841DA4A /* RCTSurfacePresenterStub.h */; settings = {ATTRIBUTES = (Project, ); }; }; C2A20A2FC7C090819B293CF1B8AE1C79 /* TimeoutManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 5092168409DB8012F9B2825897B078FD /* TimeoutManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C2C92CE1A68EF439A391D8CB91F831AC /* RCTRawTextViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 9C99C09197F47A717D2D6F03FDACA5EA /* RCTRawTextViewManager.m */; }; - C2CD982B19A3149D14C0DD99C903BA27 /* RCTPickerManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 70BA231528C44BD9AB5D994D37520985 /* RCTPickerManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C2C92CE1A68EF439A391D8CB91F831AC /* RCTRawTextViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = AB0D8208F0206723646686CE2F7EDCD5 /* RCTRawTextViewManager.m */; }; + C2CD982B19A3149D14C0DD99C903BA27 /* RCTPickerManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 0F23A58D8E0D9A90535E8C7C0ECB2486 /* RCTPickerManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; C2D28B4B3FBFC6E8C78FF52F978104E4 /* AsyncSocketBase.h in Headers */ = {isa = PBXBuildFile; fileRef = 0A0DAB5825027912427BBC8195D3F162 /* AsyncSocketBase.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C2E7DC0C436E0EAA9FAF9517CAF48A97 /* RCTSegmentedControl.m in Sources */ = {isa = PBXBuildFile; fileRef = E613C10854AA0E97A10A1F81C1CE65B1 /* 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 = B9CFE2221F7454019D76A123B7E67452 /* 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 = 46CACAFDC7683A8955912C018E916497 /* filters.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; C35C08137C73A031B842E342644BA18C /* FormatTraits.h in Headers */ = {isa = PBXBuildFile; fileRef = CEB8AEED78C1A8EDC8CE62AB73EBFCB9 /* FormatTraits.h */; settings = {ATTRIBUTES = (Project, ); }; }; C375C167B744F2795615999A24BFDCF4 /* SingletonStackTrace.cpp in Sources */ = {isa = PBXBuildFile; fileRef = CAA843AAD8263F323CF147222124FAEE /* 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 = FFD4D97C2F3F13F89A50B8B6C6E52B07 /* 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 = 9EDE8B04F6E09D2755963245B947C89B /* RNPushKitEventListener.m */; }; - C3AF87D9D12C1AEC2EE36F4AAFCD8A97 /* RNNotificationEventHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = A53DBE7B1126235D0DFB30AD452911FA /* RNNotificationEventHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C3ACE4D0C00034561584FEFEAA6F9016 /* RNPushKitEventListener.m in Sources */ = {isa = PBXBuildFile; fileRef = 68CB741F2F5B84BBA0F11CE1031DF816 /* RNPushKitEventListener.m */; }; + C3AF87D9D12C1AEC2EE36F4AAFCD8A97 /* RNNotificationEventHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = DC584F4853C49B6A47A239ABA299F455 /* RNNotificationEventHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; C3BC1E0AA405968BB6EF6C6CFC4C639A /* AtomicSharedPtr.h in Headers */ = {isa = PBXBuildFile; fileRef = 1211C74ED88052FE47183F43521FDB6B /* AtomicSharedPtr.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C3D075B877A7097CA3E91A1A67E36A39 /* RCTFrameAnimation.h in Headers */ = {isa = PBXBuildFile; fileRef = 029C1BABC6D0EB3908C82817D94E6D87 /* RCTFrameAnimation.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C3D46DB31D5CA3166F7DB6B8CD502DBE /* RCTLayoutAnimationGroup.h in Headers */ = {isa = PBXBuildFile; fileRef = AFD37B29F35DDD37893B7883D8662A56 /* RCTLayoutAnimationGroup.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C3DF2BDF751ACE6F70AEA46E964F80CC /* RCTScrollView.m in Sources */ = {isa = PBXBuildFile; fileRef = 2B6B94978324A1717A292F62AC242F43 /* 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 = EDD536EDC605E381D750F904F141E0BA /* RCTFrameAnimation.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C3D46DB31D5CA3166F7DB6B8CD502DBE /* RCTLayoutAnimationGroup.h in Headers */ = {isa = PBXBuildFile; fileRef = 1F2049C2175DCE75DD718C8896B5B6FF /* RCTLayoutAnimationGroup.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C3DF2BDF751ACE6F70AEA46E964F80CC /* RCTScrollView.m in Sources */ = {isa = PBXBuildFile; fileRef = 21A4E6E4B5F7E89DC64A29C0181F1681 /* 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 = F5B9A005C14FA62387D3BB415960382A /* Fixture.h */; settings = {ATTRIBUTES = (Project, ); }; }; C3E14453F764B48F93D114B6F06DB8F8 /* SocketAddress.h in Headers */ = {isa = PBXBuildFile; fileRef = 7B7B73865CCB3765817B24DF3D68838F /* SocketAddress.h */; settings = {ATTRIBUTES = (Project, ); }; }; C4121604E1F1CE075F2594D362577B7E /* SKRequestInfo.h in Headers */ = {isa = PBXBuildFile; fileRef = 6A3A2CDB7464AA942E65D7943827F970 /* SKRequestInfo.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C4190620ED58E5958E162C56DF3BC389 /* JSIExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = 85D7EA372D091B41050D682B16FBD362 /* JSIExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C4190620ED58E5958E162C56DF3BC389 /* JSIExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = 602ED221728EAF1F970B09A19C83C3EA /* JSIExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; C4307E73DDD599B8D73C2F25D0D8C3B3 /* RSocket.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 7CD0C39047A1B7B83CFC0981F4638A13 /* 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 = 75C2E673BC4C602DC4840634FAA6E617 /* 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 = 11C02616B5C0A1629DE792B60F8EE355 /* WaitOptions.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C4700FC8D4591A4BEF06FBDB6F9D6812 /* BSG_KSMach_x86_32.c in Sources */ = {isa = PBXBuildFile; fileRef = 1E76B6BB36B2A3C42DDF3D7B633F5976 /* BSG_KSMach_x86_32.c */; }; + C4700FC8D4591A4BEF06FBDB6F9D6812 /* BSG_KSMach_x86_32.c in Sources */ = {isa = PBXBuildFile; fileRef = 5FDF0B99E17104D8D42E24B93857C087 /* BSG_KSMach_x86_32.c */; }; C470700CB17359170121D3848FE063BC /* Benchmarks.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 757AC54CDF7539E8394457D47402CCE9 /* 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"; }; }; - C47A8BDB0918FCB122CB5FAF28A4D5AD /* RCTBlobManager.mm in Sources */ = {isa = PBXBuildFile; fileRef = 24B6F7ED44E5EE98C4B53B63797D9E0D /* 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 = 09E6F1B93BCEDB39360721493C91D27F /* React-RCTAnimation-dummy.m */; }; + C47A8BDB0918FCB122CB5FAF28A4D5AD /* RCTBlobManager.mm in Sources */ = {isa = PBXBuildFile; fileRef = 1DCE4A565AF42911C714A82B3D102689 /* 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 = 4DD6EF9FFB6D58F494D3251F805BF0A0 /* React-RCTAnimation-dummy.m */; }; C4A377EE7504F7B0BEA766EFD9885DD8 /* Sse.h in Headers */ = {isa = PBXBuildFile; fileRef = 57A2682F160B9C465AE15810B9B19680 /* Sse.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C4C0690D0CC7D0EFC458CE9E1C67B9A2 /* RNJitsiMeetViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 2DCFC81374FB80B7085A8B149771FECD /* RNJitsiMeetViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C4C0690D0CC7D0EFC458CE9E1C67B9A2 /* RNJitsiMeetViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 20D04AAC9A737C5CF857361F435308B5 /* RNJitsiMeetViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C4C603BD962E852D3D6ACCDC7E1FA6D9 /* UIImageView+HighlightedWebCache.h in Headers */ = {isa = PBXBuildFile; fileRef = 23A407B3E1976B12EF9A6DECCB95E35B /* UIImageView+HighlightedWebCache.h */; settings = {ATTRIBUTES = (Project, ); }; }; C4CF1A9274B26F538346FA24265C245B /* ExceptionWrapper.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 4713EAEA9D6383DD7339BE8807484191 /* 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 = F96D58AFECF46661AD69F7873285F7D6 /* FlipperConnectionImpl.h */; settings = {ATTRIBUTES = (Project, ); }; }; C51C3D70CCB9260030FA831AF35788CC /* pb_decode.c in Sources */ = {isa = PBXBuildFile; fileRef = B591A431C729998F00CA050097C3BFE9 /* pb_decode.c */; settings = {COMPILER_FLAGS = "-fno-objc-arc -fno-objc-arc"; }; }; - C52EA3FB913ADE72343ED96051402BD4 /* SDWebImage-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 95FEEE73FE294BCF172DF9D75458CD19 /* SDWebImage-dummy.m */; }; - C53E701EF1D59823F42034EEDB90ED79 /* RCTConvertHelpers.h in Headers */ = {isa = PBXBuildFile; fileRef = 612968A96E8A41623D518BAAAAC894B7 /* RCTConvertHelpers.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C52EA3FB913ADE72343ED96051402BD4 /* SDWebImage-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = F86071C10ED414C07FFA2D7A0F3AA6D1 /* SDWebImage-dummy.m */; }; + C53E701EF1D59823F42034EEDB90ED79 /* RCTConvertHelpers.h in Headers */ = {isa = PBXBuildFile; fileRef = 4B0BDCD96533560254D9A26471FEED1F /* RCTConvertHelpers.h */; settings = {ATTRIBUTES = (Project, ); }; }; C54D5160B45A0C5EEF25E42C9361598B /* GULAppDelegateSwizzler_Private.h in Headers */ = {isa = PBXBuildFile; fileRef = F2CDF4230B4B34095A302F4F2B0B66A0 /* GULAppDelegateSwizzler_Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; C5754429324490E0B719A268D20FDD4F /* Tearable.h in Headers */ = {isa = PBXBuildFile; fileRef = 618261D3DCB248A7327BF46578D22BCD /* Tearable.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C57BE850AD61F126370C11804774D465 /* EXAVObject.h in Headers */ = {isa = PBXBuildFile; fileRef = E3FD50FC8643C8B1FDABAEB11FCC55B5 /* EXAVObject.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C581E04803E07B777CFAB982B06F6515 /* RCTCxxConvert.h in Headers */ = {isa = PBXBuildFile; fileRef = 6C5289DEFC56ED39BD71D8EC5B4C8A94 /* RCTCxxConvert.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C57BE850AD61F126370C11804774D465 /* EXAVObject.h in Headers */ = {isa = PBXBuildFile; fileRef = 6D66E9F00BE1EAFF7960FC6BA7708B8C /* EXAVObject.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C5802BF2D7023EA04E528D82B48D9901 /* SDGraphicsImageRenderer.h in Headers */ = {isa = PBXBuildFile; fileRef = B635DF33BB6AECF36841D30C5ECBEB8B /* SDGraphicsImageRenderer.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C581E04803E07B777CFAB982B06F6515 /* RCTCxxConvert.h in Headers */ = {isa = PBXBuildFile; fileRef = CE2D5D4ED26C35F734EA94744CEF59DA /* RCTCxxConvert.h */; settings = {ATTRIBUTES = (Project, ); }; }; C589A35739F4BFB30A730B9898674387 /* ScheduledSingleSubscription.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 704B64BA0F1BDDF94DFCB7B5179EB319 /* 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 = DD501F169A7952CB4CC3B224447AB103 /* double-conversion.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C5A63C751653FE433E1E8DE64CC61E39 /* RCTRootShadowView.m in Sources */ = {isa = PBXBuildFile; fileRef = 0D124C870BD1AD4EF03CD7AC69FA610F /* 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 = 4152E8E084F479AC464AB66097CCDDFD /* JSModulesUnbundle.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C61606AB4B09AD3974A7A65C762E5F1C /* SDDeviceHelper.h in Headers */ = {isa = PBXBuildFile; fileRef = 4B4B25C480CA6B76598CB40CEAF97417 /* SDDeviceHelper.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C67D0F5DEB6F068A8453FA1A2921CE32 /* RCTTVNavigationEventEmitter.mm in Sources */ = {isa = PBXBuildFile; fileRef = A844ABFB86195E29719BE7A3A70722D8 /* 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"; }; }; + C5A63C751653FE433E1E8DE64CC61E39 /* RCTRootShadowView.m in Sources */ = {isa = PBXBuildFile; fileRef = E6D98AED4B7AA4C281DC7EF695254416 /* 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 = 3CE01FEB50DC096AF2DFB8E73361EB85 /* JSModulesUnbundle.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C67D0F5DEB6F068A8453FA1A2921CE32 /* RCTTVNavigationEventEmitter.mm in Sources */ = {isa = PBXBuildFile; fileRef = C60788B4BE7B0625FB777C36587DA53D /* 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 = 093E9DA3FA192A5297614C0C463DBC19 /* 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 = A93A9E7A65732180621ADEFAE3CDD08A /* ObservingInputAccessoryView.m */; }; - C6896F42011DE55D6973292599D4A3E4 /* BugsnagReactNative.m in Sources */ = {isa = PBXBuildFile; fileRef = 4669A53C93BC1B653C57B87A2DD1CFFA /* BugsnagReactNative.m */; }; + C680AAB543D4CFDB99EF76CED42462E4 /* ObservingInputAccessoryView.m in Sources */ = {isa = PBXBuildFile; fileRef = A1813F22650AEFA76A175560FFED1162 /* ObservingInputAccessoryView.m */; }; + C6896F42011DE55D6973292599D4A3E4 /* BugsnagReactNative.m in Sources */ = {isa = PBXBuildFile; fileRef = ACFD73BE9A35CEA1289DA078EC4C6F01 /* BugsnagReactNative.m */; }; C69D82AAFB23D14F38C990FDD557510B /* FlipperKitLayoutPlugin.h in Headers */ = {isa = PBXBuildFile; fileRef = 32D55BCC259F3B2CF7742F3661A16058 /* FlipperKitLayoutPlugin.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C6A936FCFCA729233A8763BEE3CA052B /* RNNotifications.m in Sources */ = {isa = PBXBuildFile; fileRef = 98F4C41C33A646AB98C7D298B382D8D2 /* RNNotifications.m */; }; + C6A936FCFCA729233A8763BEE3CA052B /* RNNotifications.m in Sources */ = {isa = PBXBuildFile; fileRef = F23B25CE57184699A97E24551384BA90 /* RNNotifications.m */; }; C6B1A2F2FB22FD061CBDEBC73699BF85 /* Retrying.h in Headers */ = {isa = PBXBuildFile; fileRef = E11431493CDFEC7F972E8599788F793D /* Retrying.h */; settings = {ATTRIBUTES = (Project, ); }; }; C6CC8CC7678B10107D83F3250F05CA3E /* RSocketErrors.h in Headers */ = {isa = PBXBuildFile; fileRef = 96EE6A9F812A3C115B660CA48025BE38 /* RSocketErrors.h */; settings = {ATTRIBUTES = (Project, ); }; }; C6E3FFB8A72569EFE2929C9FCA7D9009 /* json.cpp in Sources */ = {isa = PBXBuildFile; fileRef = E31ED6E905AFD8BECDCF60354335DC24 /* 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 = 276BFC8506A1910A5AD973FEAEFB2BD6 /* React-RCTNetwork-dummy.m */; }; - C6F23BF09870212DD14AB8BB5BE54720 /* BSG_KSCrash.h in Headers */ = {isa = PBXBuildFile; fileRef = 7034C52AF5A115A04C42690DE056D075 /* BSG_KSCrash.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C6F9B4904ABB416A99C913DDF6EC210A /* RCTCxxBridge.mm in Sources */ = {isa = PBXBuildFile; fileRef = 35808B26E361D66266FCEDC142699F57 /* 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 = BA4668EB557AA660903EA29C83EBF83A /* React-RCTNetwork-dummy.m */; }; + C6F23BF09870212DD14AB8BB5BE54720 /* BSG_KSCrash.h in Headers */ = {isa = PBXBuildFile; fileRef = 973DF85DF9AE404CBBC25A0E5B4C06C8 /* BSG_KSCrash.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C6F9B4904ABB416A99C913DDF6EC210A /* RCTCxxBridge.mm in Sources */ = {isa = PBXBuildFile; fileRef = 211C567D4CEA45A5940C808708EAC12B /* 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 = 7C825ED21B535E55F3D0EEE80B078549 /* FrameHeader.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C6FF1B92FDD6FFE0C9F1C50A0A7C95D8 /* RCTProfileTrampoline-arm.S in Sources */ = {isa = PBXBuildFile; fileRef = 54A3463CC32DA92D00E4D68BA05B415E /* RCTProfileTrampoline-arm.S */; }; + C6FF1B92FDD6FFE0C9F1C50A0A7C95D8 /* RCTProfileTrampoline-arm.S in Sources */ = {isa = PBXBuildFile; fileRef = E726D0F6F7579BF0AE564E1DCC024151 /* RCTProfileTrampoline-arm.S */; }; C705373FEB64A9758E0642ADACF65A94 /* PriorityLifoSemMPMCQueue.h in Headers */ = {isa = PBXBuildFile; fileRef = E020A900A1ACF98213A0161DC618761B /* PriorityLifoSemMPMCQueue.h */; settings = {ATTRIBUTES = (Project, ); }; }; C716E94E1FC3FD317F9317D4B823F47B /* SKViewDescriptor.h in Headers */ = {isa = PBXBuildFile; fileRef = 149A84F1B702EB46F6EC1A6325AB9C43 /* SKViewDescriptor.h */; settings = {ATTRIBUTES = (Project, ); }; }; C722F120971D6AAD6A8DFC845041263A /* Fingerprint.h in Headers */ = {isa = PBXBuildFile; fileRef = 664A1E1DEBA57083FD1997F493C51AEB /* Fingerprint.h */; settings = {ATTRIBUTES = (Project, ); }; }; C72CC6BD3565CD3EC264AF9A1ACA561A /* Flipper-DoubleConversion-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = FC532428432E804195A4FCFA849F055A /* Flipper-DoubleConversion-dummy.m */; }; - C74CEEC16CE658ED09054C50F88A9BFA /* BugsnagSink.h in Headers */ = {isa = PBXBuildFile; fileRef = F3367CCC04776A1175C5A45EFB6529C8 /* BugsnagSink.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C74D336962240FCC776B8DC81312E56D /* RCTLog.mm in Sources */ = {isa = PBXBuildFile; fileRef = BF7626FC6716B8FFD496BE502D49929E /* 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 = 6F5705092A7E5EC01EFB09386E8FAEEF /* MessageQueueThreadCallInvoker.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C74CEEC16CE658ED09054C50F88A9BFA /* BugsnagSink.h in Headers */ = {isa = PBXBuildFile; fileRef = 9FB325EA319135F9DA515CD7A006ED3F /* BugsnagSink.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C74D336962240FCC776B8DC81312E56D /* RCTLog.mm in Sources */ = {isa = PBXBuildFile; fileRef = 8E0A02ABFB91E677BFFDBD8D9EB7D940 /* 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 = D27E76B79A0C3F8EAEFA9DCDDBCEC5B1 /* MessageQueueThreadCallInvoker.h */; settings = {ATTRIBUTES = (Project, ); }; }; C7A173E1725C1373814BB51FE821C9FC /* FIRInstallationsItem.h in Headers */ = {isa = PBXBuildFile; fileRef = 6DC15B5BDDC4879CFF2CD5A65DAF5B70 /* FIRInstallationsItem.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C7A3E57940443B5D7E81822829D93FD7 /* BugsnagSessionFileStore.h in Headers */ = {isa = PBXBuildFile; fileRef = 884E3962C61598FE083992ECDA7986DF /* BugsnagSessionFileStore.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C7A3E57940443B5D7E81822829D93FD7 /* BugsnagSessionFileStore.h in Headers */ = {isa = PBXBuildFile; fileRef = FA8EAA9C71DDEB34B6E5D073854CD31F /* BugsnagSessionFileStore.h */; settings = {ATTRIBUTES = (Project, ); }; }; C7A9C914D1147D6A5DD39398DF218798 /* ConnectionFactory.h in Headers */ = {isa = PBXBuildFile; fileRef = 8331554D3A413E7FCEE06A54CBD9353B /* ConnectionFactory.h */; settings = {ATTRIBUTES = (Project, ); }; }; C7AC334C71CD87B757084ED03CABC794 /* SequencedExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = C618383C9180ABFE3C78D4CD29ECA29B /* SequencedExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C7B54C967318F61468B5526684FC207A /* RNCMaskedViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 16820BBC6885750171296D2BFF8E857A /* RNCMaskedViewManager.m */; }; + C7B54C967318F61468B5526684FC207A /* RNCMaskedViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = B7B5A9901324BCA9C32318C069FE9783 /* RNCMaskedViewManager.m */; }; C7EBA3555289B8BBEDD910BDB3C7FCC5 /* SSLSessionImpl.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 7C98A071646EAE29F19D01679B12360B /* 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 = 4B16BF17465FB62E0B3AEEDF1623DC8C /* BugsnagNotifier.m */; }; + C7F5BB6C7FCAD904664AE2800AA4713C /* BugsnagNotifier.m in Sources */ = {isa = PBXBuildFile; fileRef = DB235A35325A6D3FAA0D69E5E99B322F /* BugsnagNotifier.m */; }; C805F6088C0BA02E7153F45BB0997ABA /* Flipper-Folly-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 36D65CCC06124AE710B6760C10754CDA /* Flipper-Folly-dummy.m */; }; C86859572C69BC64FFBD0CDE09D902BF /* Event.h in Headers */ = {isa = PBXBuildFile; fileRef = 9D28BC83B2BD12060727669AC9861AFF /* Event.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C8820AA0E2B0ABE921571E52B40F5A56 /* RCTUIManagerObserverCoordinator.h in Headers */ = {isa = PBXBuildFile; fileRef = 06A065E51F4D81504E316C27A77D26C1 /* RCTUIManagerObserverCoordinator.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C88239BAB97F0174A93D4CEBCD773F0F /* EXAppleAuthentication.h in Headers */ = {isa = PBXBuildFile; fileRef = 9882D646B43B77E05AD92A8392005D1F /* EXAppleAuthentication.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C8820AA0E2B0ABE921571E52B40F5A56 /* RCTUIManagerObserverCoordinator.h in Headers */ = {isa = PBXBuildFile; fileRef = EE78588B86575470EC01F1D67CFF2496 /* RCTUIManagerObserverCoordinator.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C88239BAB97F0174A93D4CEBCD773F0F /* EXAppleAuthentication.h in Headers */ = {isa = PBXBuildFile; fileRef = 116B302449CE440A21E2528007401B44 /* EXAppleAuthentication.h */; settings = {ATTRIBUTES = (Project, ); }; }; C8889525AB03223E9DDA3ED5DF1D31AD /* ja.lproj in Resources */ = {isa = PBXBuildFile; fileRef = 98BC1CE48D98190B5806B7BEF30C8ED3 /* ja.lproj */; }; C8A1E2B5B461F13C1F45D6B15FFD6DE8 /* FIRLoggerLevel.h in Headers */ = {isa = PBXBuildFile; fileRef = 149229419C1D7A7AE8C9644705ECAD82 /* FIRLoggerLevel.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C8ADB8A15F701A88C476DD0A3D66386E /* zh-Hans.lproj in Resources */ = {isa = PBXBuildFile; fileRef = 306C50F833A0809C36C0DD5B74E014D1 /* zh-Hans.lproj */; }; + C8ADB8A15F701A88C476DD0A3D66386E /* zh-Hans.lproj in Resources */ = {isa = PBXBuildFile; fileRef = F703EAFE90AEF7E802BEF5394112484B /* zh-Hans.lproj */; }; C8DC7F316AA448EFF2750D2E38A093BD /* IOBuf.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 6A1D97AFF083766F7924AE8E0EFCE04E /* 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 = 5FFF96ABF69D0252C424846E63667455 /* UMAppRecordInterface.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C935EA88458F6D63A29BBB247BC8EE2A /* UIImage+ForceDecode.m in Sources */ = {isa = PBXBuildFile; fileRef = 7E5138C96BF9E64D500B447348CB329D /* UIImage+ForceDecode.m */; }; - C940D03C9052AA2516156A393AFB5D41 /* RNFirebaseRemoteConfig.h in Headers */ = {isa = PBXBuildFile; fileRef = DCE394A0E0B69B37E3C5223460D02999 /* RNFirebaseRemoteConfig.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C94909826EB31FE3C9016B6E13C2FCF6 /* UMViewManagerAdapter.m in Sources */ = {isa = PBXBuildFile; fileRef = 42F5A0B87ADC713878A1F9951DA416B4 /* UMViewManagerAdapter.m */; }; + C90AFF718E45E2616D23519AC26AD09A /* UMAppRecordInterface.h in Headers */ = {isa = PBXBuildFile; fileRef = 2B8F0562C13ADD5D42DC1FD10F122F37 /* UMAppRecordInterface.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C935EA88458F6D63A29BBB247BC8EE2A /* UIImage+ForceDecode.m in Sources */ = {isa = PBXBuildFile; fileRef = 2D71622D3B17E49A160FEB716B01283C /* UIImage+ForceDecode.m */; }; + C940D03C9052AA2516156A393AFB5D41 /* RNFirebaseRemoteConfig.h in Headers */ = {isa = PBXBuildFile; fileRef = 15948571050FD31827612100B8318596 /* RNFirebaseRemoteConfig.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C94909826EB31FE3C9016B6E13C2FCF6 /* UMViewManagerAdapter.m in Sources */ = {isa = PBXBuildFile; fileRef = 6EF1AA06CE823061D52ADF10C6D10E02 /* UMViewManagerAdapter.m */; }; C996524E284ABF18068EFC4E43751D3D /* FlipperKit-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = EDD90116CC8A889E97D909D6A37CE4C1 /* FlipperKit-dummy.m */; }; - C9EDCC5CE69F87DCB8DC82E1C7455285 /* RCTErrorInfo.m in Sources */ = {isa = PBXBuildFile; fileRef = 326D36A3C74DC68345558AC3A851ADC9 /* 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 = FE19B7DAAB2672D88B1F5E74DE62B517 /* RCTRawTextViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C9EDCC5CE69F87DCB8DC82E1C7455285 /* RCTErrorInfo.m in Sources */ = {isa = PBXBuildFile; fileRef = 510C5D22CFBB0301BA66BCAF7BA31495 /* 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 = 6EDBCA5FD95AB321FE8A8C344BA44126 /* RCTRawTextViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; CA1B639183072FD3D497C782D81793C6 /* Subscriber.h in Headers */ = {isa = PBXBuildFile; fileRef = 418B8D4F6330C0269AF6A1223E9EC36A /* Subscriber.h */; settings = {ATTRIBUTES = (Project, ); }; }; - CA28EB9031E5E5659B2CA1F6BF10E4A2 /* RNFirebase.m in Sources */ = {isa = PBXBuildFile; fileRef = 1D32B0B459AAE9F44209A8B2B4D7350D /* RNFirebase.m */; }; - CA339FABE24CC2DB0B928D4BD89E2C1F /* BSG_KSCrashReportStore.h in Headers */ = {isa = PBXBuildFile; fileRef = E26EAC0D5FFC97756CB264A63EE8C6AD /* BSG_KSCrashReportStore.h */; settings = {ATTRIBUTES = (Project, ); }; }; - CA346BB90844C8A182A003AD3F622192 /* Instance.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 61227F156D2BAF36E0807BBD1DBC487C /* 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 = 2260CA770ABA3546238DEB503474FE5A /* RNFirebase.m */; }; + CA339FABE24CC2DB0B928D4BD89E2C1F /* BSG_KSCrashReportStore.h in Headers */ = {isa = PBXBuildFile; fileRef = 0FE5F65DB5679525ECA89DF642E89D41 /* BSG_KSCrashReportStore.h */; settings = {ATTRIBUTES = (Project, ); }; }; + CA346BB90844C8A182A003AD3F622192 /* Instance.cpp in Sources */ = {isa = PBXBuildFile; fileRef = EC41547B1A1B9C2CC524D664316F30F3 /* 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 = E9A57C7D5BCADD30378DD824EB5551C2 /* FireAndForgetResponder.h */; settings = {ATTRIBUTES = (Project, ); }; }; CA424AC6B355B3DFDFD75FC85D27D2B9 /* FIRInstallationsIDController.h in Headers */ = {isa = PBXBuildFile; fileRef = 0F2D3B9CF557114DC33DF027B49A13FB /* FIRInstallationsIDController.h */; settings = {ATTRIBUTES = (Project, ); }; }; - CA450AEB2A714A74FB125D41DEBE56C4 /* RCTAnimatedImage.m in Sources */ = {isa = PBXBuildFile; fileRef = 00E181409EB769E1E4567A58BB6438BC /* 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 = 1605C45A7EB80DD78D498C6ACE428CF4 /* Orientation.m */; }; + CA450AEB2A714A74FB125D41DEBE56C4 /* RCTAnimatedImage.m in Sources */ = {isa = PBXBuildFile; fileRef = 7FCB1E4C3CCF5E377D0545A0A22C52AB /* 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 = DA051E5A2D63F5A738B878BAD97D4958 /* Orientation.m */; }; CA6E8BCDD8BA3F3A19D47CFD4CA9E6E0 /* msa_macro.h in Headers */ = {isa = PBXBuildFile; fileRef = A0DF227EC04A4C40F7B84D88C1068EAD /* msa_macro.h */; settings = {ATTRIBUTES = (Project, ); }; }; CA7C3CCDF100231E301CFFE195B6FA17 /* utilities.cc in Sources */ = {isa = PBXBuildFile; fileRef = C5FBF2C655BDF50FBE56FB922C3EDC64 /* utilities.cc */; settings = {COMPILER_FLAGS = "-Wno-shorten-64-to-32"; }; }; CA7F2680DDBC7A3D04FBED8EF5242924 /* AtomicHashMap.h in Headers */ = {isa = PBXBuildFile; fileRef = 93C4D9135868E958AD1A54280FA2B248 /* AtomicHashMap.h */; settings = {ATTRIBUTES = (Project, ); }; }; CA8D0188358400F296BEF9AF39B41632 /* Exception.h in Headers */ = {isa = PBXBuildFile; fileRef = 48DE2235F7876B7D827E04FB10D92127 /* Exception.h */; settings = {ATTRIBUTES = (Project, ); }; }; CAA79EA2F883D11144D8FFD4130687FB /* SysStat.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 5678C9D9DB388DA83DB82B80263EC63E /* 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 = FE2D7DF4575D500D9A9592204018B389 /* SSLSession.h */; settings = {ATTRIBUTES = (Project, ); }; }; - CAC7B70AE74EBD9280EA43FCB75DE9B5 /* NativeToJsBridge.h in Headers */ = {isa = PBXBuildFile; fileRef = B1897F8260B9D094F9D17905153180F8 /* NativeToJsBridge.h */; settings = {ATTRIBUTES = (Project, ); }; }; - CAC7E02596426939C6B1169EB15CFA6A /* RNEventEmitter.m in Sources */ = {isa = PBXBuildFile; fileRef = D442A7464ADD235A918A775E8F1FE747 /* RNEventEmitter.m */; }; - CADB95A31F2F4B8A80B5C6C4D7F4DB38 /* RCTSurfaceSizeMeasureMode.mm in Sources */ = {isa = PBXBuildFile; fileRef = A66DACA6A2BC66D2AD2A1C50D43D9D59 /* 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 = 6CFCA17DB7AE639E1C1FF0528A2D9C85 /* NativeToJsBridge.h */; settings = {ATTRIBUTES = (Project, ); }; }; + CAC7E02596426939C6B1169EB15CFA6A /* RNEventEmitter.m in Sources */ = {isa = PBXBuildFile; fileRef = F7BF842F2D161BD3F11404C48C359F4D /* RNEventEmitter.m */; }; + CADB95A31F2F4B8A80B5C6C4D7F4DB38 /* RCTSurfaceSizeMeasureMode.mm in Sources */ = {isa = PBXBuildFile; fileRef = 06BFEF585249683DDB63A5FFCD6DB695 /* 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 = 6234151CD15BC62EA675A7907B1AE6C3 /* BitVectorCoding.h */; settings = {ATTRIBUTES = (Project, ); }; }; - CB0D74E997007796BD50F14F96295806 /* UMExportedModule.m in Sources */ = {isa = PBXBuildFile; fileRef = 6D24767B02EB893827AF0338BBB8ABFA /* UMExportedModule.m */; }; - CB53CB8940FA626EDC9DA002C71F0199 /* RNCAppearanceProviderManager.h in Headers */ = {isa = PBXBuildFile; fileRef = A7C9923AFC25F79D1EE735484960E4C2 /* RNCAppearanceProviderManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - CB75321A593E9F9CF14DC01E77D2B71F /* RNFirebaseFunctions.h in Headers */ = {isa = PBXBuildFile; fileRef = 22FAF742CB5CC4C9D7C3DC50F3094EAB /* RNFirebaseFunctions.h */; settings = {ATTRIBUTES = (Project, ); }; }; + CB0D74E997007796BD50F14F96295806 /* UMExportedModule.m in Sources */ = {isa = PBXBuildFile; fileRef = 0C6B81D69B35EC84BF3B585025BFA48B /* UMExportedModule.m */; }; + CB53CB8940FA626EDC9DA002C71F0199 /* RNCAppearanceProviderManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 66EA7B30251E087C9A48B9140A0D146F /* RNCAppearanceProviderManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + CB70CA7763BD4D2B937C291757D03F8B /* UIView+WebCacheOperation.h in Headers */ = {isa = PBXBuildFile; fileRef = 6316AB30742F032AA69752ABB984A17C /* UIView+WebCacheOperation.h */; settings = {ATTRIBUTES = (Project, ); }; }; + CB75321A593E9F9CF14DC01E77D2B71F /* RNFirebaseFunctions.h in Headers */ = {isa = PBXBuildFile; fileRef = 6348A4ACAEE5E3271B1A6A9A7DAA9154 /* RNFirebaseFunctions.h */; settings = {ATTRIBUTES = (Project, ); }; }; CB7AF504CF55228FE97BE27D1AA84EB7 /* TcpConnectionFactory.h in Headers */ = {isa = PBXBuildFile; fileRef = B10A80804D7B5437EBCF0938D2DFD31B /* TcpConnectionFactory.h */; settings = {ATTRIBUTES = (Project, ); }; }; - CBB4C50DABAB2D82A6DDA813CC909A1A /* RCTUITextField.m in Sources */ = {isa = PBXBuildFile; fileRef = 2444EE42E0284DE98A0E99D5624D1937 /* RCTUITextField.m */; }; + CBB4C50DABAB2D82A6DDA813CC909A1A /* RCTUITextField.m in Sources */ = {isa = PBXBuildFile; fileRef = D76E5D4D40B091BE48E35504FC2F21AB /* RCTUITextField.m */; }; CBD6C33EDA705688C4E4D90AB9F52DFD /* FBLPromise+Timeout.m in Sources */ = {isa = PBXBuildFile; fileRef = 0A5874AEF59E026C3AD3EDF6FE7090F0 /* FBLPromise+Timeout.m */; }; - CBDA33DF25A0B3889FDE9EAD72F6C6F2 /* RCTDevSettings.h in Headers */ = {isa = PBXBuildFile; fileRef = 5D7193CF5CA94828C6A59C143EB401FD /* RCTDevSettings.h */; settings = {ATTRIBUTES = (Project, ); }; }; - CC0C82C53785C1930CFE2B2816A38858 /* RCTImageEditingManager.mm in Sources */ = {isa = PBXBuildFile; fileRef = 2660850DDB2DA283DA5E458102EAF98A /* 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 = 87F5B9141D7DADA8D05A9CFFBDE907C6 /* UMCore-dummy.m */; }; - CC2E7A5892E595B5BA476ED0030918DC /* EXAudioRecordingPermissionRequester.h in Headers */ = {isa = PBXBuildFile; fileRef = E2AED86520903893606E05C7A2D91A43 /* EXAudioRecordingPermissionRequester.h */; settings = {ATTRIBUTES = (Project, ); }; }; - CC60FD647487AB617149066737938DBC /* SDAnimatedImageView+WebCache.h in Headers */ = {isa = PBXBuildFile; fileRef = F7678F697CCE24251E2DEEB64D3E414A /* SDAnimatedImageView+WebCache.h */; settings = {ATTRIBUTES = (Project, ); }; }; - CC6A0BE35082DBB5289101DECECF77D8 /* RCTCxxBridgeDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = CB247F3BE4B697A22587F15676F850EA /* RCTCxxBridgeDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; }; - CC7566760F4B12E3E0E4E0E37F7FEDC9 /* BSG_KSCrashReportWriter.h in Headers */ = {isa = PBXBuildFile; fileRef = F1E839D3BA68E28756EAAC8A5913028E /* BSG_KSCrashReportWriter.h */; settings = {ATTRIBUTES = (Project, ); }; }; - CC8C89F32092A2B0EA79F08C72D037AA /* RCTScrollContentShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = 73FDEBC4D7AB872C43D0B328CA04F2C4 /* RCTScrollContentShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + CBDA33DF25A0B3889FDE9EAD72F6C6F2 /* RCTDevSettings.h in Headers */ = {isa = PBXBuildFile; fileRef = 90753126CCBCB9603F6E5AEA8AF43BBE /* RCTDevSettings.h */; settings = {ATTRIBUTES = (Project, ); }; }; + CC0C82C53785C1930CFE2B2816A38858 /* RCTImageEditingManager.mm in Sources */ = {isa = PBXBuildFile; fileRef = DFAA4C02B9431D0A75FEBD39D72EFBAB /* 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 = 200635613A73F94C802EE45C3A6DE4E0 /* UMCore-dummy.m */; }; + CC2E7A5892E595B5BA476ED0030918DC /* EXAudioRecordingPermissionRequester.h in Headers */ = {isa = PBXBuildFile; fileRef = 5EF8A04887DBDC4DB6E94F8116E19F61 /* EXAudioRecordingPermissionRequester.h */; settings = {ATTRIBUTES = (Project, ); }; }; + CC6A0BE35082DBB5289101DECECF77D8 /* RCTCxxBridgeDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = 33EA3625C89AF9C55E037A6063FE914A /* RCTCxxBridgeDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; }; + CC7566760F4B12E3E0E4E0E37F7FEDC9 /* BSG_KSCrashReportWriter.h in Headers */ = {isa = PBXBuildFile; fileRef = 709CD2DECFBE92EBAA54F428848D1F81 /* BSG_KSCrashReportWriter.h */; settings = {ATTRIBUTES = (Project, ); }; }; + CC8C89F32092A2B0EA79F08C72D037AA /* RCTScrollContentShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = F5CCFB431F7C4C78274C702E5C5068EC /* RCTScrollContentShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; CCB6F59AABF0E21BC0F9A4A9021C9181 /* alpha_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = AC3CD90F37CA219F8D166586CE751D6A /* alpha_enc.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - CCBDDDE01F7D70E7A680F5C8A65FC3F1 /* TurboCxxModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 2306FB1ABBEFA9CE789F81A2FAC42EE6 /* TurboCxxModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; + CCBDDDE01F7D70E7A680F5C8A65FC3F1 /* TurboCxxModule.h in Headers */ = {isa = PBXBuildFile; fileRef = E90222C72A6406535921E464B42BFBC9 /* TurboCxxModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; CCD493CA845E56EFFB36328003F1B60A /* LockTraits.h in Headers */ = {isa = PBXBuildFile; fileRef = E80ADB1E43F05B829F2D1AB9967D3EA4 /* LockTraits.h */; settings = {ATTRIBUTES = (Project, ); }; }; CCE2222A3A80A75225E2F7E51A4BF168 /* UIImage+CropRotate.m in Sources */ = {isa = PBXBuildFile; fileRef = 1E71D20E66B64C5F1349B061C42EE2C7 /* UIImage+CropRotate.m */; }; - CD112F3E6CF0C8643C9C8AF17A5302E9 /* RCTImageDataDecoder.h in Headers */ = {isa = PBXBuildFile; fileRef = 5C4190CC70591447D20794606785FDE8 /* RCTImageDataDecoder.h */; settings = {ATTRIBUTES = (Project, ); }; }; - CD13075789AC57DE43330658CAA0DCD2 /* RCTAppState.mm in Sources */ = {isa = PBXBuildFile; fileRef = E6E736646CFBF4EBA7384B1E486EE94E /* 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 = 5590AA1C00F0472D5C2137DBFD262D8B /* UIImage+ExtendedCacheData.h */; settings = {ATTRIBUTES = (Project, ); }; }; + CD112F3E6CF0C8643C9C8AF17A5302E9 /* RCTImageDataDecoder.h in Headers */ = {isa = PBXBuildFile; fileRef = DB4A1BB82B6FDCE2D55B3B427C79E4F3 /* RCTImageDataDecoder.h */; settings = {ATTRIBUTES = (Project, ); }; }; + CD13075789AC57DE43330658CAA0DCD2 /* RCTAppState.mm in Sources */ = {isa = PBXBuildFile; fileRef = 38894E3C88DE686E681C02F992C59685 /* 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"; }; }; CD52A4AFC3FD3D2461A0A97D88D9013B /* Common.cpp in Sources */ = {isa = PBXBuildFile; fileRef = CD62D51A9B5534C7BFE6863D088B08FC /* 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 = D726DC19455D2E4EFCD7FE942BA02580 /* Types.h */; settings = {ATTRIBUTES = (Project, ); }; }; CD6E94CA433866EB0CE7F4274BC0D7C0 /* TimedDrivableExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = C3109FCC2F4243964C3D83291577711F /* TimedDrivableExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; - CD7DF4058DA2853BB82D8FD9E7E33F0E /* RCTRedBox.h in Headers */ = {isa = PBXBuildFile; fileRef = C8D1B31BC5FDE2E2292F2D47E7079016 /* RCTRedBox.h */; settings = {ATTRIBUTES = (Project, ); }; }; + CD7DF4058DA2853BB82D8FD9E7E33F0E /* RCTRedBox.h in Headers */ = {isa = PBXBuildFile; fileRef = AD6804036572C0AEBF851DCD33B1EA11 /* RCTRedBox.h */; settings = {ATTRIBUTES = (Project, ); }; }; CD804FB79353F1D929886460D8F8817E /* RSocketConnectionEvents.h in Headers */ = {isa = PBXBuildFile; fileRef = D77E534BE1CD173935AFB52C39C8707E /* RSocketConnectionEvents.h */; settings = {ATTRIBUTES = (Project, ); }; }; - CD973F58FC399073BDFBBC113C88728A /* RCTBlobPlugins.mm in Sources */ = {isa = PBXBuildFile; fileRef = F6093427BE39449CF4B7B503DE60F1CA /* 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 = 293F3A5861041C8FCB16C201994E495A /* 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 = DD29E6E8E8CB4743522F65BD6C3DDCB2 /* FrameTransportImpl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - CDBF9E5042AA209F0DC26458C3E0A33A /* EXConstants.h in Headers */ = {isa = PBXBuildFile; fileRef = 05E0A0D2314B170BE1F42E0C84F1599A /* EXConstants.h */; settings = {ATTRIBUTES = (Project, ); }; }; - CDD8EF76014DBDD339CB5EB4289FD974 /* RCTMultipartStreamReader.m in Sources */ = {isa = PBXBuildFile; fileRef = 33663800333B2DE3B96EF0EC3C8A7306 /* 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 = AE710147FA7C87A097FC7A3D6E6FC6B9 /* EXConstants.h */; settings = {ATTRIBUTES = (Project, ); }; }; + CDD8EF76014DBDD339CB5EB4289FD974 /* RCTMultipartStreamReader.m in Sources */ = {isa = PBXBuildFile; fileRef = 445B5D874D9279FC5543322472F105D8 /* 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 = 4D45168709ADC376EA8B431E1DDA9015 /* json_pointer.h */; settings = {ATTRIBUTES = (Project, ); }; }; CE0C6EB5F386C798A10DE6CF9D9D3163 /* SKHighlightOverlay.h in Headers */ = {isa = PBXBuildFile; fileRef = 881F444B09AAEEE836F18BB0EE44916A /* SKHighlightOverlay.h */; settings = {ATTRIBUTES = (Project, ); }; }; - CE246B49EC4C8A293BE0DA3A8282AB7F /* QBImagePickerController.m in Sources */ = {isa = PBXBuildFile; fileRef = B0308D260F31194A500BE1434E9FC9BF /* QBImagePickerController.m */; }; - CE25C95BBF3F1E5830A8EF8E1F7A9929 /* RootView.m in Sources */ = {isa = PBXBuildFile; fileRef = 9DD6B4AD935BF557920D22C91DE77005 /* RootView.m */; }; + CE240EA868180FE4ECA7DDFF4A387514 /* SDWebImageDownloaderConfig.h in Headers */ = {isa = PBXBuildFile; fileRef = DB52526C36BC5C432E60D08D5715CD9D /* SDWebImageDownloaderConfig.h */; settings = {ATTRIBUTES = (Project, ); }; }; + CE246B49EC4C8A293BE0DA3A8282AB7F /* QBImagePickerController.m in Sources */ = {isa = PBXBuildFile; fileRef = 011F9539823FF372ADF8DDED69488A4C /* QBImagePickerController.m */; }; + CE25C95BBF3F1E5830A8EF8E1F7A9929 /* RootView.m in Sources */ = {isa = PBXBuildFile; fileRef = 79010F55B58205B366B018393D416C39 /* RootView.m */; }; CE3A139FD95866808065114C3CE2F2F5 /* Cast.h in Headers */ = {isa = PBXBuildFile; fileRef = 809EC9165948C2BAF546C95AD86A48B6 /* Cast.h */; settings = {ATTRIBUTES = (Project, ); }; }; CE5150E60AB674AB60524EF055A64D8D /* ConcurrentBitSet.h in Headers */ = {isa = PBXBuildFile; fileRef = 58CE32F77928341D12176EB9E0F9248A /* ConcurrentBitSet.h */; settings = {ATTRIBUTES = (Project, ); }; }; CE535C17252BAFF7F01344DCD59DE2AD /* AsyncServerSocket.h in Headers */ = {isa = PBXBuildFile; fileRef = 711E5A29559B0895B88DC7DA2EC244D8 /* AsyncServerSocket.h */; settings = {ATTRIBUTES = (Project, ); }; }; - CE535CDEB9D6DBBB9E70C19F3BE1369E /* RNCSafeAreaViewMode.h in Headers */ = {isa = PBXBuildFile; fileRef = 89B66AA65776D5D011CDADCFCB4F1093 /* RNCSafeAreaViewMode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - CE5B0C859F1EC24A652A91AAECC40B5C /* RCTImageCache.h in Headers */ = {isa = PBXBuildFile; fileRef = E707EF4A9F0B2CF92BFFC42E09E49239 /* RCTImageCache.h */; settings = {ATTRIBUTES = (Project, ); }; }; - CE7B88EEC6948188535038D487BC28B4 /* React-RCTBlob-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = DFE199A94F260A920AA2102D8E7655CF /* React-RCTBlob-dummy.m */; }; + CE535CDEB9D6DBBB9E70C19F3BE1369E /* RNCSafeAreaViewMode.h in Headers */ = {isa = PBXBuildFile; fileRef = 1A6CF2D002AFB3235B3239C9F964B9A0 /* RNCSafeAreaViewMode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + CE5B0C859F1EC24A652A91AAECC40B5C /* RCTImageCache.h in Headers */ = {isa = PBXBuildFile; fileRef = C14E739F3F6B19F2164BDAA53543E8B1 /* RCTImageCache.h */; settings = {ATTRIBUTES = (Project, ); }; }; + CE7B88EEC6948188535038D487BC28B4 /* React-RCTBlob-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 1C1855B280861CA49944DD6264214F3E /* React-RCTBlob-dummy.m */; }; CE8B8A61CC8002F9B980D10E9FECD1B5 /* FIRInstallationsAPIService.h in Headers */ = {isa = PBXBuildFile; fileRef = 86CC666650265ECF3DD15EDCF8418BA2 /* FIRInstallationsAPIService.h */; settings = {ATTRIBUTES = (Project, ); }; }; - CE8CF5C0C2C84E7FA4BDE6058199BD86 /* RCTSurfaceRootShadowViewDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = B3AC8C4510805B6693BC08157D72D931 /* RCTSurfaceRootShadowViewDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; }; + CE8CF5C0C2C84E7FA4BDE6058199BD86 /* RCTSurfaceRootShadowViewDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = BAED4468D05D161445D0F7A31E853712 /* RCTSurfaceRootShadowViewDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; }; + CE92DF0BA0CC96BD819D5395E3F5D4AB /* NSBezierPath+SDRoundedCorners.h in Headers */ = {isa = PBXBuildFile; fileRef = 8DA2CB45D21859F95DD55D1AADC9C04B /* NSBezierPath+SDRoundedCorners.h */; settings = {ATTRIBUTES = (Project, ); }; }; CEAC4026292553F61925463F50AAD811 /* StreamsWriter.cpp in Sources */ = {isa = PBXBuildFile; fileRef = AE389898517E134B6C210F47469C4FDC /* 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 = 53987FF53060DC7928984443DC058F56 /* FIRInstallationsStatus.h */; settings = {ATTRIBUTES = (Project, ); }; }; - CECC1FBE7FC467B747E6C2BA8B0CCFE0 /* SDWebImagePrefetcher.h in Headers */ = {isa = PBXBuildFile; fileRef = D1DA016AD9C4ABE9530E299EE9495FD8 /* SDWebImagePrefetcher.h */; settings = {ATTRIBUTES = (Project, ); }; }; - CEDAFDB3B3EA3DCE1E62FF82FCD516E3 /* RNFetchBlobProgress.h in Headers */ = {isa = PBXBuildFile; fileRef = 1413FFFF6ADE74BB4EC379BF8CDCAFBD /* RNFetchBlobProgress.h */; settings = {ATTRIBUTES = (Project, ); }; }; + CEDAFDB3B3EA3DCE1E62FF82FCD516E3 /* RNFetchBlobProgress.h in Headers */ = {isa = PBXBuildFile; fileRef = 8DA21CF66F10294ADF736D5CA5E81706 /* RNFetchBlobProgress.h */; settings = {ATTRIBUTES = (Project, ); }; }; + CEE0D3B7FFD05BE2465C81B2684F976A /* SDWebImageCompat.h in Headers */ = {isa = PBXBuildFile; fileRef = 4D95D1860729A449E53146FB33AEB650 /* SDWebImageCompat.h */; settings = {ATTRIBUTES = (Project, ); }; }; CEF123E9C8B4FD3D3654297488F5C198 /* GDTCORUploadCoordinator.m in Sources */ = {isa = PBXBuildFile; fileRef = AC42E8A852293278C6758BA9966495F7 /* GDTCORUploadCoordinator.m */; }; - CEF6DC752682E4243AC785B96B9158C4 /* RNBridgeModule.m in Sources */ = {isa = PBXBuildFile; fileRef = 70BBF9B79ED5994105858E2CF4EFF638 /* RNBridgeModule.m */; }; - CF2D3F2E3A348ADF3DBD9EF35343E212 /* EXAV-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 86159C8534820A22070AD2CBF12AF275 /* EXAV-dummy.m */; }; + CEF6DC752682E4243AC785B96B9158C4 /* RNBridgeModule.m in Sources */ = {isa = PBXBuildFile; fileRef = 4DC84E745BE05BFB6B02C10D85B2CB44 /* RNBridgeModule.m */; }; + CEFA85387A5815500FDB776E71D8925D /* SDAssociatedObject.h in Headers */ = {isa = PBXBuildFile; fileRef = 2952E27BF9F0CFCCA04A79B288B61238 /* SDAssociatedObject.h */; settings = {ATTRIBUTES = (Project, ); }; }; + CF0F0EE11DEB7BDA2FB659D3F65ADE64 /* UIImage+GIF.h in Headers */ = {isa = PBXBuildFile; fileRef = CAA69E1BFFDBE31AAE6AB019733C887E /* UIImage+GIF.h */; settings = {ATTRIBUTES = (Project, ); }; }; + CF2D3F2E3A348ADF3DBD9EF35343E212 /* EXAV-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 88EBF81B8F7873445389E00FDC5FCDDE /* EXAV-dummy.m */; }; CF414AEB4CBAD8DF30894113E61CD76B /* AtomicLinkedList.h in Headers */ = {isa = PBXBuildFile; fileRef = 719DDB7B841C4CBCCF38804EA3ADD44E /* AtomicLinkedList.h */; settings = {ATTRIBUTES = (Project, ); }; }; CF44D440631F5B8957AD89ADED1F1D10 /* FlipperDiagnosticsViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = 5AFE1689B228874B6E1B0D1D4AB2D9BC /* FlipperDiagnosticsViewController.h */; settings = {ATTRIBUTES = (Project, ); }; }; - CF48FE22C5AA6A7005BC079B79517D56 /* RCTDisplayLink.h in Headers */ = {isa = PBXBuildFile; fileRef = B20198EFA4160D60463C44CAC66050AB /* RCTDisplayLink.h */; settings = {ATTRIBUTES = (Project, ); }; }; - CF4DF7F6E87AA3A94C5A5FBE827815D8 /* RCTImageLoader.h in Headers */ = {isa = PBXBuildFile; fileRef = 595D8F4E3C8DC70C61DEEE557893DE27 /* RCTImageLoader.h */; settings = {ATTRIBUTES = (Project, ); }; }; + CF48FE22C5AA6A7005BC079B79517D56 /* RCTDisplayLink.h in Headers */ = {isa = PBXBuildFile; fileRef = AD8629C1590BC91E6D89DD35DBA5D904 /* RCTDisplayLink.h */; settings = {ATTRIBUTES = (Project, ); }; }; + CF4DF7F6E87AA3A94C5A5FBE827815D8 /* RCTImageLoader.h in Headers */ = {isa = PBXBuildFile; fileRef = 47DC97CD2BEF59C115D143CF75DD164D /* RCTImageLoader.h */; settings = {ATTRIBUTES = (Project, ); }; }; CF80B9F4958D0C931B081B404CE9284E /* GDTCORUploadPackage.h in Headers */ = {isa = PBXBuildFile; fileRef = AA21E5249C04715DB601081A3584269E /* GDTCORUploadPackage.h */; settings = {ATTRIBUTES = (Project, ); }; }; - CF8A9457FD8A625D62F1C5B42B5CDB88 /* YGLayout.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2148262530D07D32B42FD8E37018A73A /* 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 = D00754C442A7521A277AED36CF599A9A /* 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 = 9E57E533E30A43A5232CD36E33390556 /* MacAddress.h */; settings = {ATTRIBUTES = (Project, ); }; }; CF9F05AC93CD70E3F63B06ACFE0E4F30 /* GDTCORAssert.h in Headers */ = {isa = PBXBuildFile; fileRef = 82BB41D75E00673F2C570791310E59A2 /* GDTCORAssert.h */; settings = {ATTRIBUTES = (Project, ); }; }; - CFA7D57801B17592FB386DD9D64B0B4A /* RCTLocalAssetImageLoader.mm in Sources */ = {isa = PBXBuildFile; fileRef = 786509F4FA686BA87CF7D9D1756FE1E3 /* 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 = 3DE4BD99927633465141F54CC59CC0CF /* 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 = 54BAA365514E4531F9A6F30FDD09B7CD /* lossless_sse2.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - D0108264911D29A92E4A0F784F7D000A /* UIResponder+FirstResponder.h in Headers */ = {isa = PBXBuildFile; fileRef = 2294975A06913B08D41195CE013BB1C8 /* UIResponder+FirstResponder.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D017A2D31E3E20C791F6F44D7A01B8A6 /* RNCSafeAreaProviderManager.m in Sources */ = {isa = PBXBuildFile; fileRef = E555307E8E5A077248C236B23FD72B3D /* RNCSafeAreaProviderManager.m */; }; + D0108264911D29A92E4A0F784F7D000A /* UIResponder+FirstResponder.h in Headers */ = {isa = PBXBuildFile; fileRef = F65E4A14C98B1F2F8CC5765A052B9CFA /* UIResponder+FirstResponder.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D017A2D31E3E20C791F6F44D7A01B8A6 /* RNCSafeAreaProviderManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 5CE3EFC7D18F69D1E674D1A862A3C23E /* RNCSafeAreaProviderManager.m */; }; D02983F9F8E968E99F28AC389A5C34EF /* FlipperPlugin.h in Headers */ = {isa = PBXBuildFile; fileRef = 1D821F450106BEC44B12802D4CF95277 /* FlipperPlugin.h */; settings = {ATTRIBUTES = (Project, ); }; }; D034FC411932B8C3C8F83C7E9D7687EA /* RangeCommon.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FA17742F16077F42413F16F266817EAC /* 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 = 65AF201D1A2210CCBBA39FB03570C461 /* SystraceSection.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D0667C2FF38D83D7109D27C016A9D8F2 /* SystraceSection.h in Headers */ = {isa = PBXBuildFile; fileRef = 51681A4FBE814BE04C9821B1BE05FF53 /* SystraceSection.h */; settings = {ATTRIBUTES = (Project, ); }; }; D0CC2110764169A031BB05D078F35A7F /* AsyncUDPServerSocket.h in Headers */ = {isa = PBXBuildFile; fileRef = C611ECDB782023017C5311E0E1882107 /* AsyncUDPServerSocket.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D0E1D34AF074E0454077772E3BF6B079 /* BSGConnectivity.m in Sources */ = {isa = PBXBuildFile; fileRef = EF5486049EDC1824356D857F5C0F6915 /* BSGConnectivity.m */; }; + D0E1D34AF074E0454077772E3BF6B079 /* BSGConnectivity.m in Sources */ = {isa = PBXBuildFile; fileRef = E3AC80F6DEE183DD7CF938F00BAE732E /* BSGConnectivity.m */; }; D1249775C6575028B25BE687B4F0C982 /* FKUserDefaultsPlugin.m in Sources */ = {isa = PBXBuildFile; fileRef = DCE9904090A911013AD90075AB8884C2 /* 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 = D6CBA639BC0A106017274FB55FAA013A /* quant_levels_utils.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - D18081D33C6AD5B2343DCBBC2CF61BB2 /* RCTTextView.h in Headers */ = {isa = PBXBuildFile; fileRef = F8103D0961FA2AD9D3D3475D5F5BB421 /* RCTTextView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D18081D33C6AD5B2343DCBBC2CF61BB2 /* RCTTextView.h in Headers */ = {isa = PBXBuildFile; fileRef = 8924ACA12AAF6E1269144BCD0D55495B /* RCTTextView.h */; settings = {ATTRIBUTES = (Project, ); }; }; D199E0C3F8DF1441C00AAAE2E597A99B /* Future-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = DF671BAA08D1EA42C0975602D70C3688 /* Future-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D1A09E1E3713069EE95C7B2D1CF845BF /* RCTEventEmitter.m in Sources */ = {isa = PBXBuildFile; fileRef = 381EE808730B845CBEACA73A6C0A99BB /* 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 = 6CBD4994018FA1DC151E3369D0986690 /* RCTEventEmitter.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + D1BD97AD13B56426DAA26A2468DA440C /* SDImageAssetManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 0543D000A1973D9F088EDAC9C9FC2797 /* SDImageAssetManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; D1C6F6705A1FE1010070DCC4A3102D3F /* Foreach.h in Headers */ = {isa = PBXBuildFile; fileRef = 9D9830840C80FE492AE46EEB8E178D46 /* Foreach.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D1DEC09BFB8020649801F18884526D9D /* SDImageCoder.m in Sources */ = {isa = PBXBuildFile; fileRef = 23B988FF7781A76A0B6F07682B8E3871 /* SDImageCoder.m */; }; - D20919318EC23971CB63831D24F3955B /* RCTReconnectingWebSocket.m in Sources */ = {isa = PBXBuildFile; fileRef = A546E06EEC18CC5AB5459E96314B48FF /* RCTReconnectingWebSocket.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + D1DEC09BFB8020649801F18884526D9D /* SDImageCoder.m in Sources */ = {isa = PBXBuildFile; fileRef = C0BDE6661197138B7F27DBEA70D7413C /* SDImageCoder.m */; }; + D20919318EC23971CB63831D24F3955B /* RCTReconnectingWebSocket.m in Sources */ = {isa = PBXBuildFile; fileRef = BE0FF235482A59A4D7088558559F5A66 /* 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 = BC34FC3BC5FBC0454E09F0942A1E2962 /* yuv.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - D23230B6BDBF204F574436EC80D5795B /* UIImage+Metadata.h in Headers */ = {isa = PBXBuildFile; fileRef = 1480D363919A35F1E19FE10FC4D6B113 /* UIImage+Metadata.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D29943598FA75CCE4393E3AB70854DB6 /* experiments-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = FA26F5CD6039D854B695DE1B9100EB5E /* experiments-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D29D44E4839A3581CC7F03BFC1497A51 /* BSG_KSCrashContext.h in Headers */ = {isa = PBXBuildFile; fileRef = E1302BA0F105DBBB6C1DD6892800572C /* BSG_KSCrashContext.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D29F28485DEE738B6FA3CCF80F59FAB2 /* RNLongPressHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = A22087B248A717DD8210B86F366BCBA8 /* RNLongPressHandler.m */; }; - D2B279573F702220400EB7E904392303 /* RCTLog.h in Headers */ = {isa = PBXBuildFile; fileRef = 033AEAAFCE60615AF48A038283404C6B /* RCTLog.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D29943598FA75CCE4393E3AB70854DB6 /* experiments-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = E205CB84D03BBD7E0E565811D3164D88 /* experiments-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D29D44E4839A3581CC7F03BFC1497A51 /* BSG_KSCrashContext.h in Headers */ = {isa = PBXBuildFile; fileRef = 3CE8B337A02FD6186B3CE7AEA07AE380 /* BSG_KSCrashContext.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D29F28485DEE738B6FA3CCF80F59FAB2 /* RNLongPressHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = EADE9F3CC8C4D432074313BD08A7C56D /* RNLongPressHandler.m */; }; + D2A983A6F32EA1B5199960179F79261B /* SDImageCodersManager.h in Headers */ = {isa = PBXBuildFile; fileRef = A6B65A06905EF54F40604862EE0F13D8 /* SDImageCodersManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D2B279573F702220400EB7E904392303 /* RCTLog.h in Headers */ = {isa = PBXBuildFile; fileRef = B1C240F0D5FAD5625752B46A494B4C5E /* RCTLog.h */; settings = {ATTRIBUTES = (Project, ); }; }; D2E11DF07AAD7072CC507F7E383B4FE3 /* pb.h in Headers */ = {isa = PBXBuildFile; fileRef = F4E2E67AA46EC78C7A9CB72800AEEC2B /* pb.h */; settings = {ATTRIBUTES = (Project, ); }; }; D2EF73B37E88FF241247DD0776642D6F /* Subscription.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9346E24A80AF7765A8BE8B33BAE93F5C /* 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 = 83CFF644F37AB474C65E4D5EB0CD86FE /* SDImageIOCoder.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D343EFB9E30EB3366E9FC4842C03757E /* RCTNetworkTask.h in Headers */ = {isa = PBXBuildFile; fileRef = 2D2D1751ACFF90E1CCB30E85EEEB3C24 /* RCTNetworkTask.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D343EFB9E30EB3366E9FC4842C03757E /* RCTNetworkTask.h in Headers */ = {isa = PBXBuildFile; fileRef = 0C3D5B22C76B93E520B9CCDF06C95291 /* RCTNetworkTask.h */; settings = {ATTRIBUTES = (Project, ); }; }; D3461F25CB195DE12347CFB156107C31 /* Payload.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 93778A3F3CA3D98E90562F56F9D95611 /* 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 = 795879AD145A8FC49CE63D2F23335CD9 /* RCTTextViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D3579009269FEC6A34542333B942C9FB /* UMExportedModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 82FFF75FB306AB23B867834650F67403 /* UMExportedModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D34EA63B7BC10C3B54AC07BB3DE56978 /* RCTTextViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = FF69B0975F1DCD7AEFAD2F90486ED57D /* RCTTextViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D3579009269FEC6A34542333B942C9FB /* UMExportedModule.h in Headers */ = {isa = PBXBuildFile; fileRef = E1BF00A498E8F2B330789DA0C9B84C5F /* UMExportedModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; D39505AA86E323C96932E3A04B1A0351 /* alpha_processing.c in Sources */ = {isa = PBXBuildFile; fileRef = EF85D2C72A3C34E909C3195AC4283D33 /* alpha_processing.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - D39629D5BD5717BD08135885F724851C /* BugsnagCrashSentry.m in Sources */ = {isa = PBXBuildFile; fileRef = CD70D2AA3F9709DFA32D80C23A668901 /* BugsnagCrashSentry.m */; }; - D39901BEC90B8BE64935C7372BE4D371 /* RCTConstants.m in Sources */ = {isa = PBXBuildFile; fileRef = 1701BB16E424CF991A1E406CC52B285A /* 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 = F279545A0943A45D78742438434BFE7E /* BugsnagCrashSentry.m */; }; + D39901BEC90B8BE64935C7372BE4D371 /* RCTConstants.m in Sources */ = {isa = PBXBuildFile; fileRef = AAB8791040F75B9ED1111A26A19615DB /* 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 = 165CCAFE6A06D409004F8CAF07494C97 /* yuv_sse2.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - D3B5E7CD68B29084575732B1464A24CD /* pl.lproj in Resources */ = {isa = PBXBuildFile; fileRef = 8E76D6C44A81A38F97B20CB129A923D3 /* pl.lproj */; }; - D3BBAAEC1BB62E99D63C32C6742A60ED /* UMLogManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 1749F6851479091C87395887DCD61E51 /* UMLogManager.m */; }; - D3BE4AC7988B7A740B423AF784E299E1 /* ARTSurfaceView.m in Sources */ = {isa = PBXBuildFile; fileRef = 5048C882B6B24ACED251F005937C600C /* ARTSurfaceView.m */; }; + D3B5E7CD68B29084575732B1464A24CD /* pl.lproj in Resources */ = {isa = PBXBuildFile; fileRef = 3EBDE28092167B49EB3B497865336224 /* pl.lproj */; }; + D3BBAAEC1BB62E99D63C32C6742A60ED /* UMLogManager.m in Sources */ = {isa = PBXBuildFile; fileRef = C0AFC2A3F699ACD26839D82946D8B10D /* UMLogManager.m */; }; + D3BE4AC7988B7A740B423AF784E299E1 /* ARTSurfaceView.m in Sources */ = {isa = PBXBuildFile; fileRef = CF24F12DAB81E975DC3CDA46DA641907 /* ARTSurfaceView.m */; }; D3C108FFA4787ECDB0A68E07CDF2BDBA /* FlowableOperator.h in Headers */ = {isa = PBXBuildFile; fileRef = 245D2AFC8ED9BFDBA2EF29D68EBC985B /* FlowableOperator.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D3C839E16CBE186C0BE387F94B00165D /* RCTDeviceInfo.mm in Sources */ = {isa = PBXBuildFile; fileRef = D97E945EAB5262C724CF49D188714044 /* 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 = 32D6CEEE188F5E019A0E0D332B9CDF02 /* REAParamNode.m */; }; + D3C839E16CBE186C0BE387F94B00165D /* RCTDeviceInfo.mm in Sources */ = {isa = PBXBuildFile; fileRef = 9F0713994162CEDC5CE861D95FB38CAA /* 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 = 0F43B4E4107DC5E86D54B2C3C3D3958F /* REAParamNode.m */; }; D4040F200D00D6261963F43CBE89C880 /* KeepaliveTimer.cpp in Sources */ = {isa = PBXBuildFile; fileRef = DB3029A06A7EE04F47FD16BC1EF44748 /* 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 = EDEFE166DD7CD1DDB8170EB2EDC5647C /* RCTBackedTextInputDelegateAdapter.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D411323A01E0FB6595BFB07200F5BAA0 /* RCTBackedTextInputDelegateAdapter.h in Headers */ = {isa = PBXBuildFile; fileRef = 8A134C867AFCCA54CF0D6394079E8BBE /* RCTBackedTextInputDelegateAdapter.h */; settings = {ATTRIBUTES = (Project, ); }; }; D41E53EF9B0E35CDFF682EDEAA2B70AD /* Iterators.h in Headers */ = {isa = PBXBuildFile; fileRef = A6E160FB766104FB176D30B9193996EF /* Iterators.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D4492AA35116BD68F0668FD3DBC22437 /* RNGestureHandlerManager.h in Headers */ = {isa = PBXBuildFile; fileRef = EB9D4B812F643F74A25D57EA9EB4B7C5 /* RNGestureHandlerManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D4492AA35116BD68F0668FD3DBC22437 /* RNGestureHandlerManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 8FD0DFA6661DE03F251336C50BA56578 /* RNGestureHandlerManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; D44F4B162A48877F712281A9ACDD787D /* EventBaseManager.h in Headers */ = {isa = PBXBuildFile; fileRef = C108660121E046B1BDEF96A2F71B2A5E /* EventBaseManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D46DB93B022EA46CE68A0AC363D5BAC4 /* RCTStatusBarManager.mm in Sources */ = {isa = PBXBuildFile; fileRef = BE5EBF9B9E5EF12CBD5AD12B3E6B42B2 /* 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 = 887C85C30BFFB73C5ACCE12EB42C4735 /* RCTStyleAnimatedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D46DB93B022EA46CE68A0AC363D5BAC4 /* RCTStatusBarManager.mm in Sources */ = {isa = PBXBuildFile; fileRef = 2FE202FE8BDE8756A41A567D0E8DF692 /* 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 = D250F0883792162B480F14F15C08D081 /* RCTStyleAnimatedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; D49C2B5AD12F94C14929E9614A269641 /* ThreadLocal.h in Headers */ = {isa = PBXBuildFile; fileRef = 5E82C8E592B07968E3A2267B265BAE21 /* ThreadLocal.h */; settings = {ATTRIBUTES = (Project, ); }; }; D4CCA1BA396882B6AC8AE5EF772DB855 /* Baton.h in Headers */ = {isa = PBXBuildFile; fileRef = B523F4277C8B2D610E8E1299460A3CF9 /* Baton.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D4EE7FF64A89536083DBE4FCB3D2C5FD /* BugsnagReactNative.h in Headers */ = {isa = PBXBuildFile; fileRef = 2475A083CA7E9531F5DF98EB4E5E1B57 /* BugsnagReactNative.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D4EF29669510C233A73C4D1BF709A3F5 /* QBAssetsViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = FCA944816518E50AC3DD696784739696 /* QBAssetsViewController.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D4EE7FF64A89536083DBE4FCB3D2C5FD /* BugsnagReactNative.h in Headers */ = {isa = PBXBuildFile; fileRef = AF165617754A4A94907ED4B9931CD212 /* BugsnagReactNative.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D4EF29669510C233A73C4D1BF709A3F5 /* QBAssetsViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = F48ECF1191ACC5304D8488328ECFF95D /* QBAssetsViewController.h */; settings = {ATTRIBUTES = (Project, ); }; }; D4F870A3745DAC99F9D1DE10267A3FDC /* Codel.h in Headers */ = {isa = PBXBuildFile; fileRef = 713A81815B3885B08757A419B2659FE6 /* Codel.h */; settings = {ATTRIBUTES = (Project, ); }; }; D50276F979C7915BC1E670A13F14C468 /* FlipperRSocketResponder.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FE820CDC63138126A93DFA9D1289691C /* 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 = 6B4BC528B33441223AA224532206DC3C /* PublisherBase.h */; settings = {ATTRIBUTES = (Project, ); }; }; @@ -2660,287 +2668,285 @@ D548578B0B4BAB40AA2F67986DD948C2 /* upsampling_mips_dsp_r2.c in Sources */ = {isa = PBXBuildFile; fileRef = 0D21BF6BCB829FC04D2BC3A16759D75A /* upsampling_mips_dsp_r2.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; D55F976F4368D978B696E3A99B3665E4 /* StreamStateMachineBase.h in Headers */ = {isa = PBXBuildFile; fileRef = 62E800E6D8B687A321154741B20EE305 /* StreamStateMachineBase.h */; settings = {ATTRIBUTES = (Project, ); }; }; D56AEDCA89023A1E7C86652FEE5B716B /* DistributedMutex.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1E3DA206C09B3DF568B673F2FAD2FCB1 /* DistributedMutex.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - D59D6B91B38D40385B5671A02C789FFD /* SDImageCache.h in Headers */ = {isa = PBXBuildFile; fileRef = F9AC5E09B6219F4FAECA474AD5900E6A /* SDImageCache.h */; settings = {ATTRIBUTES = (Project, ); }; }; D5B67F8483C8FB4C3B5356D28C3374D7 /* Sockets.h in Headers */ = {isa = PBXBuildFile; fileRef = 02CAE9298A2C4E7810DCC16EA4120CD2 /* Sockets.h */; settings = {ATTRIBUTES = (Project, ); }; }; D5C7E82437FE04F2CD8A96072D2E9593 /* FIRInstallationsAPIService.m in Sources */ = {isa = PBXBuildFile; fileRef = 72F93B35E7840328A0BE89C021462A46 /* FIRInstallationsAPIService.m */; }; - D5EB936081DE1ABD23F6EF6E9A31D4A9 /* RNGestureHandlerModule.m in Sources */ = {isa = PBXBuildFile; fileRef = 4CFDB601BC80758537EFDD2CD961C812 /* RNGestureHandlerModule.m */; }; + D5EB936081DE1ABD23F6EF6E9A31D4A9 /* RNGestureHandlerModule.m in Sources */ = {isa = PBXBuildFile; fileRef = 39EA084BB2A4266A7CF778C94C6DF124 /* RNGestureHandlerModule.m */; }; D6147C5ED241AC483FF409EE1CAD9E12 /* FIRInstallationsItem+RegisterInstallationAPI.m in Sources */ = {isa = PBXBuildFile; fileRef = DBC153CADA88D1B0EDF1F9180048460C /* FIRInstallationsItem+RegisterInstallationAPI.m */; }; - D633250EED186E817206A31F4E170C99 /* RCTVirtualTextShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = 187879FBE986DDC8A947A11CEDC57826 /* RCTVirtualTextShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D63D855F5E5694B1078376751720F336 /* UMModuleRegistryAdapter.m in Sources */ = {isa = PBXBuildFile; fileRef = 86CF0BC0CA68A46963CF070AD7302459 /* UMModuleRegistryAdapter.m */; }; - D64F6039BAB8836544F7C0A4B8D04F32 /* event.h in Headers */ = {isa = PBXBuildFile; fileRef = 951BC93835E6D048000E726EC9375F42 /* event.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D633250EED186E817206A31F4E170C99 /* RCTVirtualTextShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = 8D7295B454566C4A4DB062AAF1C5D94B /* RCTVirtualTextShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D63D855F5E5694B1078376751720F336 /* UMModuleRegistryAdapter.m in Sources */ = {isa = PBXBuildFile; fileRef = 4D0771F19766B40C0526619A98BEDEA7 /* UMModuleRegistryAdapter.m */; }; + D63E8D24C60EFE8B5B1D85CD8003C1A0 /* SDFileAttributeHelper.h in Headers */ = {isa = PBXBuildFile; fileRef = EED2AAD6B55F43BE137678CC34902005 /* SDFileAttributeHelper.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D64F6039BAB8836544F7C0A4B8D04F32 /* event.h in Headers */ = {isa = PBXBuildFile; fileRef = 975B45C783D99F78182782A13C67F00E /* event.h */; settings = {ATTRIBUTES = (Project, ); }; }; D657B1508E0606220A7DAFC0D6614475 /* EliasFanoCoding.h in Headers */ = {isa = PBXBuildFile; fileRef = D6085E200587F025BD81BAAE6C3A3232 /* EliasFanoCoding.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D65D905E1500A2BDD75E310C0E2C97FA /* RCTJSStackFrame.h in Headers */ = {isa = PBXBuildFile; fileRef = 85402553C855BA51F1055005117A39FF /* RCTJSStackFrame.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D6889E1CF5492CAF58DE17FB57EB93BA /* RCTTextAttributes.h in Headers */ = {isa = PBXBuildFile; fileRef = 396BCC1103806DB62E13A01085BFDB9A /* RCTTextAttributes.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D65D905E1500A2BDD75E310C0E2C97FA /* RCTJSStackFrame.h in Headers */ = {isa = PBXBuildFile; fileRef = B0897776AFCF780ACA05469D1693C30D /* RCTJSStackFrame.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D6889E1CF5492CAF58DE17FB57EB93BA /* RCTTextAttributes.h in Headers */ = {isa = PBXBuildFile; fileRef = 4A566499049C1F44790724F96962AE1C /* RCTTextAttributes.h */; settings = {ATTRIBUTES = (Project, ); }; }; D69223C42741872E5B2A529FA5828F8E /* pb_encode.c in Sources */ = {isa = PBXBuildFile; fileRef = 81554050354D000790D952969A22BEFD /* pb_encode.c */; settings = {COMPILER_FLAGS = "-fno-objc-arc -fno-objc-arc"; }; }; - D6BE43E386E838E2F1C713789DFF481D /* ARTText.h in Headers */ = {isa = PBXBuildFile; fileRef = EEB527A333FF5A4AEF63DF312B770FA7 /* ARTText.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D71EEB365C42671A5A3E1D412C6118A4 /* RCTDivisionAnimatedNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 5FAEB419F66E1976F7843B1EC7F1F451 /* RCTDivisionAnimatedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D6BE43E386E838E2F1C713789DFF481D /* ARTText.h in Headers */ = {isa = PBXBuildFile; fileRef = 48BBE9DE98509E29FD0517D37E242CE9 /* ARTText.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D6EE21E0A81DC7E63751687071790BD2 /* SDImageLoadersManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 8FCF04EC25DF8DDE61BA20A55F00221F /* SDImageLoadersManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D71EEB365C42671A5A3E1D412C6118A4 /* RCTDivisionAnimatedNode.h in Headers */ = {isa = PBXBuildFile; fileRef = E67603E5319D2A076DD7532744C6EB24 /* RCTDivisionAnimatedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; D72503B8233647DFAB18589EFE0F1091 /* ExecutorWithPriority.h in Headers */ = {isa = PBXBuildFile; fileRef = 9C059CB14AB6A27102E06C7874764793 /* ExecutorWithPriority.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D7356315BF8062584A1CE7E4ACD15EF1 /* BSG_KSMach.c in Sources */ = {isa = PBXBuildFile; fileRef = D032D6FEA72FCE92B1AC6AAF34468012 /* BSG_KSMach.c */; }; + D7356315BF8062584A1CE7E4ACD15EF1 /* BSG_KSMach.c in Sources */ = {isa = PBXBuildFile; fileRef = 7FE0AA1E207FD887A7D730C551A2DF1A /* BSG_KSMach.c */; }; D7386042B011F13F43898B1B9A5DEE54 /* Merge.h in Headers */ = {isa = PBXBuildFile; fileRef = C49C77B14C7A4ED1DE03E4400210D47C /* Merge.h */; settings = {ATTRIBUTES = (Project, ); }; }; D73C476373DBCB99DBDA5E3D9583A35A /* GULNetworkConstants.m in Sources */ = {isa = PBXBuildFile; fileRef = B81FD2C473D887F59427BE78B558C91C /* GULNetworkConstants.m */; }; - D74FFDC85A25F62F1B5AE4B8AB0B65D0 /* RNGestureHandlerRegistry.h in Headers */ = {isa = PBXBuildFile; fileRef = 1912C5AEC1649E0A26A6C8D886057FB6 /* RNGestureHandlerRegistry.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D74FFDC85A25F62F1B5AE4B8AB0B65D0 /* RNGestureHandlerRegistry.h in Headers */ = {isa = PBXBuildFile; fileRef = 996FDEC30EB0580430CF5ED5D554EA05 /* RNGestureHandlerRegistry.h */; settings = {ATTRIBUTES = (Project, ); }; }; D7690664E9554486C6A08570CCA16219 /* alpha_dec.c in Sources */ = {isa = PBXBuildFile; fileRef = 365636C1858BBACEADB5F99BE4C9864C /* alpha_dec.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; D76D243B815E6B6FBC1319E69838AC67 /* Singleton-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = FC6047C7715AC0C09653607C8FEC3E33 /* Singleton-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; D77CF59BDB5FC2113CF820C1C8CEC5DC /* FLEXNetworkObserver.mm in Sources */ = {isa = PBXBuildFile; fileRef = 1F4B3E6B4F39F0C0A8D6F8349CA8D6AB /* 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"; }; }; D7873A208EED0E3E763413036FCEABB7 /* TOCropViewControllerTransitioning.m in Sources */ = {isa = PBXBuildFile; fileRef = 51674CEE544BAFE4827F0D6B40061039 /* TOCropViewControllerTransitioning.m */; }; D7E5C384A3818E74886E35808F0E358B /* RValueReferenceWrapper.h in Headers */ = {isa = PBXBuildFile; fileRef = D4F0F8AE60A7F903304667D6C24687EF /* RValueReferenceWrapper.h */; settings = {ATTRIBUTES = (Project, ); }; }; D7EE17DC61F2C233EA1F0DB1D29A9473 /* NamedThreadFactory.h in Headers */ = {isa = PBXBuildFile; fileRef = 9701A78261BEDC2C84BE15AC12B2DF21 /* NamedThreadFactory.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D81AC0C4DC01BB7B898EF80BA080B002 /* RNCAssetsLibraryRequestHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = 382504A213EAEA9F7B9E6159D87B51D8 /* RNCAssetsLibraryRequestHandler.m */; }; + D81AC0C4DC01BB7B898EF80BA080B002 /* RNCAssetsLibraryRequestHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = DB0616CD128BDB76F5EB428C77F48A37 /* RNCAssetsLibraryRequestHandler.m */; }; D82111A4E6432431C15468B9E171C02B /* SerialExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = C78AC8F8193767D450E7E8B4E33C3393 /* SerialExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; D82A9BB2212B45FA75D895A40645B283 /* QueuedImmediateExecutor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9E85A19C773A4016CCFBA95A003F7AE7 /* 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 = 260532C1B60BB9AC2E87BAA0D001146C /* GroupVarintDetail.h */; settings = {ATTRIBUTES = (Project, ); }; }; D86127EDB743996C7268E4EC78797A46 /* FBLPromise+Always.m in Sources */ = {isa = PBXBuildFile; fileRef = 9D3F042F12358CA20535695129D757E0 /* FBLPromise+Always.m */; }; + D88BE8A09092572D594C0337AD2C039C /* SDImageHEICCoder.h in Headers */ = {isa = PBXBuildFile; fileRef = 2448764A175B560A796BE14DE72879B9 /* SDImageHEICCoder.h */; settings = {ATTRIBUTES = (Project, ); }; }; D88C31D279C21999DD8E5D38378AF5F4 /* GULNetworkURLSession.m in Sources */ = {isa = PBXBuildFile; fileRef = F09F1807E45B0D81EF2C3805D8F0CC04 /* GULNetworkURLSession.m */; }; - D8A4FDD0CECED20763327BBFCBD15B23 /* RCTImageSource.h in Headers */ = {isa = PBXBuildFile; fileRef = 0ACC86BFC387731739DC830B7201E00D /* RCTImageSource.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D8A85963A2D21C1579FAB3528EE4157D /* RCTPackagerClient.m in Sources */ = {isa = PBXBuildFile; fileRef = F5AD7442235FB6BDB4ED75B9F5F8A9DB /* 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 = A92E58613D509249E06AED4B27E88E0D /* RCTImageSource.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D8A85963A2D21C1579FAB3528EE4157D /* RCTPackagerClient.m in Sources */ = {isa = PBXBuildFile; fileRef = 31E9DD0C540F21C1682C294155AE278C /* 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 = BB7F42A922D4DCFF8096E3C184E06556 /* TimekeeperScheduledExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D8BE1C65E30421034BDF3B754E368854 /* UMAppLifecycleListener.h in Headers */ = {isa = PBXBuildFile; fileRef = 4CB1F7A50693D9CF3D1B8F89276D0618 /* UMAppLifecycleListener.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D8C07DB43458BB67C3DE4C4ECC0074A4 /* NSDataBigString.mm in Sources */ = {isa = PBXBuildFile; fileRef = 035AED08D71C220C5E407091F2A6CC0F /* 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 = E481E4C8F8218D44428C1C7ED1AF79F3 /* RNCSafeAreaView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D9161027757C44A3F0538F626A0F1C75 /* RCTRawTextShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = 0A8028BCC58743A6AB3702379DF66EB6 /* RCTRawTextShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D92CAE62ECAFE549B7CADB800BE130C3 /* RNJitsiMeetView.m in Sources */ = {isa = PBXBuildFile; fileRef = 911B53B91157F66224EA02E8A8FA0B7F /* RNJitsiMeetView.m */; }; - D93D8D29DA246204947AA3E291D57A71 /* RCTModalHostView.h in Headers */ = {isa = PBXBuildFile; fileRef = EF3CF074EFB514AB39C2972DA32E2ABA /* RCTModalHostView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D942DF7B87B23857D907B43E8D40B6C8 /* RCTInputAccessoryShadowView.m in Sources */ = {isa = PBXBuildFile; fileRef = D40BCDA9810F056BB68B0CE6A9A38580 /* RCTInputAccessoryShadowView.m */; }; - D942F947E98B998E31292371B94924C1 /* RNFlingHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = AEA925593969061E24617E29F3435905 /* RNFlingHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D9818AAFEEE3ADE3426F8CEFD018BF08 /* TurboModuleBinding.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3B468DA312920E115DBC601B9DD70210 /* 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 = CCD0F420A8164C8556D141806692A281 /* 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 = 5962B2E1763F0298920CAE87F9F6365D /* 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 = C0A320184E361CD4261DBE4243AFAC31 /* BSG_KSMach_Arm.c */; }; - D9CE5C4ED521A9CCCEE7E5371A8FEC83 /* SDWebImageOptionsProcessor.m in Sources */ = {isa = PBXBuildFile; fileRef = F56B5CF5EB9A68ABE832746E0B370670 /* SDWebImageOptionsProcessor.m */; }; - D9DF18476953552CD71C30DABF23E52E /* BugsnagSession.m in Sources */ = {isa = PBXBuildFile; fileRef = 71AE41B49320B7D195F1396292016E9B /* BugsnagSession.m */; }; - D9E85C15A4C7B9BC786776755CBE4E10 /* RCTFrameAnimation.m in Sources */ = {isa = PBXBuildFile; fileRef = 14979149F23DF62C17F9E7A21EE83969 /* 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 = 9B210DEA7F13EE96BA6DA8B363A2EFD3 /* EXHaptics-dummy.m */; }; - DA28A006984C9041039EA6EEB0F8195F /* SDWebImageOptionsProcessor.h in Headers */ = {isa = PBXBuildFile; fileRef = 2533E13A6E27DC148740766B9E66FAB2 /* SDWebImageOptionsProcessor.h */; settings = {ATTRIBUTES = (Project, ); }; }; - DA2A500F2405B86DEEDCB9FC6C8CC0B6 /* BSG_KSSystemInfo.m in Sources */ = {isa = PBXBuildFile; fileRef = 21F2D742801090DEBF0FE24B3991700C /* BSG_KSSystemInfo.m */; }; + D8BE1C65E30421034BDF3B754E368854 /* UMAppLifecycleListener.h in Headers */ = {isa = PBXBuildFile; fileRef = 2770335EEDFE5580A891C85517D01FBC /* UMAppLifecycleListener.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D8C07DB43458BB67C3DE4C4ECC0074A4 /* NSDataBigString.mm in Sources */ = {isa = PBXBuildFile; fileRef = 7624436CBC0E8626F97E01E75CC8153E /* 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 = D411AA4649BB99BC6B74804C19F46E1E /* RNCSafeAreaView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D9161027757C44A3F0538F626A0F1C75 /* RCTRawTextShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = AA29A83E3F33D4D1A190DA06EEE1623F /* RCTRawTextShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D92CAE62ECAFE549B7CADB800BE130C3 /* RNJitsiMeetView.m in Sources */ = {isa = PBXBuildFile; fileRef = 6C46334BCA482341224CBD6F985BBA8E /* RNJitsiMeetView.m */; }; + D93D8D29DA246204947AA3E291D57A71 /* RCTModalHostView.h in Headers */ = {isa = PBXBuildFile; fileRef = 60F8CD471528CA1B2153C497681181DF /* RCTModalHostView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D942DF7B87B23857D907B43E8D40B6C8 /* RCTInputAccessoryShadowView.m in Sources */ = {isa = PBXBuildFile; fileRef = 7F59DCCDC1C23753DE418FEAE620D632 /* RCTInputAccessoryShadowView.m */; }; + D942F947E98B998E31292371B94924C1 /* RNFlingHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 9C5BC0B9B1C8D8959DBC75666862E4B7 /* RNFlingHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D9818AAFEEE3ADE3426F8CEFD018BF08 /* TurboModuleBinding.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 60CE2DB18C78571E37CA81E831D99F3D /* 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 = E467F6389545E7EF2C34977C096EE289 /* 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 = 3977B723678582324CAE299A9A867B7E /* 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 = 9E6A9DCA4ED720A2E4EC9B6E9AB6A01F /* BSG_KSMach_Arm.c */; }; + D9CE5C4ED521A9CCCEE7E5371A8FEC83 /* SDWebImageOptionsProcessor.m in Sources */ = {isa = PBXBuildFile; fileRef = B1B14D59DA08249468CFCB53C23BC6C0 /* SDWebImageOptionsProcessor.m */; }; + D9DF18476953552CD71C30DABF23E52E /* BugsnagSession.m in Sources */ = {isa = PBXBuildFile; fileRef = 557BD8421208AFAB1AAF766F4A4B99DE /* BugsnagSession.m */; }; + D9E85C15A4C7B9BC786776755CBE4E10 /* RCTFrameAnimation.m in Sources */ = {isa = PBXBuildFile; fileRef = 079AB77EDD953DCF82A8C9EDD5677892 /* 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 = 50703713C580250670B68B264D2FF5D9 /* EXHaptics-dummy.m */; }; + D9EF1EACEF391E2D098EDDD48B5C1F7B /* SDAnimatedImageView+WebCache.h in Headers */ = {isa = PBXBuildFile; fileRef = FD8C98C03E189AC8EA90F9C6621B52C5 /* SDAnimatedImageView+WebCache.h */; settings = {ATTRIBUTES = (Project, ); }; }; + DA2A500F2405B86DEEDCB9FC6C8CC0B6 /* BSG_KSSystemInfo.m in Sources */ = {isa = PBXBuildFile; fileRef = 737E68F840664F7F96841913D5BFB4D2 /* BSG_KSSystemInfo.m */; }; DA3E756FDDBB22F63B92675EE270BFD9 /* cpu.c in Sources */ = {isa = PBXBuildFile; fileRef = 5ACAACE3DEF9B42B05A7E23CB9EB6DEC /* cpu.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; DA5203CF64B1E9D5DAA840D3417F241E /* StaticTracepoint.h in Headers */ = {isa = PBXBuildFile; fileRef = A0D3291B6110B268D394A23BB9189970 /* StaticTracepoint.h */; settings = {ATTRIBUTES = (Project, ); }; }; - DA553EAB5D6042B76746804E1EAB9AAC /* RNSScreen.m in Sources */ = {isa = PBXBuildFile; fileRef = 7A37CA79C6B36FB48C96D5E545155E9C /* RNSScreen.m */; }; + DA553EAB5D6042B76746804E1EAB9AAC /* RNSScreen.m in Sources */ = {isa = PBXBuildFile; fileRef = B63C5C2599926AFDC26C0A3D48BCC8BE /* RNSScreen.m */; }; DA6126735254CBAD81AE08F7B1ED78B7 /* DrivableExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = 0EC05AA3F51FFF6F2DA357A81C9C31CE /* DrivableExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; - DA74636CD45F5B96E9705928A634522D /* BSG_KSCrashSentry_Private.h in Headers */ = {isa = PBXBuildFile; fileRef = F6E605DA6AFD3BC9439BAE111882C82E /* BSG_KSCrashSentry_Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; + DA74636CD45F5B96E9705928A634522D /* BSG_KSCrashSentry_Private.h in Headers */ = {isa = PBXBuildFile; fileRef = E6B34594D7FE35E2F2B9EF061D6A4174 /* BSG_KSCrashSentry_Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; DA8E7E9B1199739DD8242F7D627AA01D /* FBLPromise.h in Headers */ = {isa = PBXBuildFile; fileRef = 941D82A7D647586A28F6DB4755B80869 /* FBLPromise.h */; settings = {ATTRIBUTES = (Project, ); }; }; - DA9EE774CF939AFC136CFF0C1418CBD4 /* RNRotationHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 9DB214EB8B00630F1D5159C416C5A867 /* RNRotationHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; + DA9EE774CF939AFC136CFF0C1418CBD4 /* RNRotationHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 24CBB92E375EA7A225F7FEDCDD7936A5 /* RNRotationHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; DAAE0E3FED2202C7C92F463A7C4BAA2E /* CertificateUtils.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2D36006052769CE515737F1DB51F04D2 /* 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 = 31EE61B5B2C4934ACFE959BCEB6D5CAA /* RNFetchBlobFS.m */; }; + DAB77630ECE8FFDE64A9BEFBD0B44DFF /* RNFetchBlobFS.m in Sources */ = {isa = PBXBuildFile; fileRef = 315E30612ACC9C13920085075E20ECF5 /* RNFetchBlobFS.m */; }; DAFC2F91BEA931FB9BA022CB9B77CA90 /* backward_references_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = FDB002D534600214F4271BBA8E723272 /* backward_references_enc.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; DB23770DDD223F6F66DD3161FEED485E /* cached-powers.h in Headers */ = {isa = PBXBuildFile; fileRef = FCBB5CDE0891A424562D3C9DCB1D606E /* cached-powers.h */; settings = {ATTRIBUTES = (Project, ); }; }; DB5A7C7920EAF6928FBD7479829670B3 /* FIRConfiguration.h in Headers */ = {isa = PBXBuildFile; fileRef = 1A3FD508A386252F71C815C4EA55471C /* FIRConfiguration.h */; settings = {ATTRIBUTES = (Project, ); }; }; - DB7453AA7276EAE43F16788C031FC022 /* RNGestureHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = CB0136873C962E55A307219684FD01DA /* RNGestureHandler.m */; }; - DB802AF253B585166A65DE3AF2807ACA /* IOS7Polyfill.h in Headers */ = {isa = PBXBuildFile; fileRef = FC0FBCEDAA524F547423E330109EF828 /* IOS7Polyfill.h */; settings = {ATTRIBUTES = (Project, ); }; }; - DB961B674D484615508DB15C8C03E3A7 /* SDImageCacheConfig.h in Headers */ = {isa = PBXBuildFile; fileRef = CCF4D0A31596C7ACCD7B68399DBE7374 /* SDImageCacheConfig.h */; settings = {ATTRIBUTES = (Project, ); }; }; - DB9717086AE45CE81AA97C3D12CDE9C7 /* rn-fetch-blob-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 70D2F1DE32D8D83ED283D13D70AE9546 /* rn-fetch-blob-dummy.m */; }; - DB98C51FFD075C2E920AE1CFE2B57068 /* ARTGroupManager.m in Sources */ = {isa = PBXBuildFile; fileRef = A6CB24B50A72644E27C2B50F6A4FD641 /* ARTGroupManager.m */; }; - DB99B89B363F703C56CC1CA9540AC911 /* SDAnimatedImageView.m in Sources */ = {isa = PBXBuildFile; fileRef = D35AA32383740911279CBEFB0A7CED01 /* SDAnimatedImageView.m */; }; - DBB5DF09AA103C6B5C2410567FC0F306 /* RNGestureHandlerButton.m in Sources */ = {isa = PBXBuildFile; fileRef = 229D455DAF28AED347F98E3AA7A9215F /* RNGestureHandlerButton.m */; }; - DBB7C961CF22090D0F1F8FB705151A2D /* REANodesManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 721AB46BD809C2987EF958E95073BFF2 /* REANodesManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + DB7453AA7276EAE43F16788C031FC022 /* RNGestureHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = C2C113C82B064D9F09A75FF1B1E8A2FB /* RNGestureHandler.m */; }; + DB802AF253B585166A65DE3AF2807ACA /* IOS7Polyfill.h in Headers */ = {isa = PBXBuildFile; fileRef = DA4CEC5047545E3556229DF8CB6541BC /* IOS7Polyfill.h */; settings = {ATTRIBUTES = (Project, ); }; }; + DB9717086AE45CE81AA97C3D12CDE9C7 /* rn-fetch-blob-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 3313BDB4C4B1E90E23206E02F7FC3565 /* rn-fetch-blob-dummy.m */; }; + DB98C51FFD075C2E920AE1CFE2B57068 /* ARTGroupManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 9EBC1EB2B9F5C4AF5CA545985640E087 /* ARTGroupManager.m */; }; + DB99B89B363F703C56CC1CA9540AC911 /* SDAnimatedImageView.m in Sources */ = {isa = PBXBuildFile; fileRef = 594263C5F8C23C0F6549C3D357EAA8D9 /* SDAnimatedImageView.m */; }; + DBB5DF09AA103C6B5C2410567FC0F306 /* RNGestureHandlerButton.m in Sources */ = {isa = PBXBuildFile; fileRef = 5ACC6896DC9C198D03B1183295897EFC /* RNGestureHandlerButton.m */; }; + DBB7C961CF22090D0F1F8FB705151A2D /* REANodesManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 23FC904C31EFF26791961F1234B41F0C /* REANodesManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; DBBFB726B54D132205F42D6FD8E81979 /* GDTCCTPrioritizer.m in Sources */ = {isa = PBXBuildFile; fileRef = F59E426C20672DB4A39D2D32BC4D53FB /* GDTCCTPrioritizer.m */; }; - DBD6857FB4D7DF12D570243ECD9C73AD /* RCTSwitch.h in Headers */ = {isa = PBXBuildFile; fileRef = 4B9AEFF14A0B7431D172233187A20862 /* RCTSwitch.h */; settings = {ATTRIBUTES = (Project, ); }; }; - DBFAFC7FD12442E27B09353B999EACC3 /* YGNodePrint.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 0C16D5592AAF54FDAD9945573AAF7295 /* 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 = 80448D56DD2B463BCDBFBB3E5763237E /* RCTBridgeDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; }; - DC138CE0F250720A264B598D27AB4C84 /* UMUtilitiesInterface.h in Headers */ = {isa = PBXBuildFile; fileRef = 762BEEE67A6C2BA66BC01DC9BDDEBEE5 /* UMUtilitiesInterface.h */; settings = {ATTRIBUTES = (Project, ); }; }; - DC22B9ED9AEC92C3C5BB77EBB9B54CA4 /* RCTModuloAnimatedNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 5910B455F2DD57F89C0663BA82E590FB /* 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 = 9A07EB1BB471CCBD3DDB3373E225CFD6 /* RNFirebaseDatabase.h */; settings = {ATTRIBUTES = (Project, ); }; }; + DBD6857FB4D7DF12D570243ECD9C73AD /* RCTSwitch.h in Headers */ = {isa = PBXBuildFile; fileRef = 35CB5326695BA15ACEB3979E9AF3C1F6 /* RCTSwitch.h */; settings = {ATTRIBUTES = (Project, ); }; }; + DBFAFC7FD12442E27B09353B999EACC3 /* YGNodePrint.cpp in Sources */ = {isa = PBXBuildFile; fileRef = EADED44A7E13FCE5B69DB97D9FC27441 /* 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 = CBBDBC408FFFE7DC971C3C44329E3DB3 /* RCTBridgeDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; }; + DC138CE0F250720A264B598D27AB4C84 /* UMUtilitiesInterface.h in Headers */ = {isa = PBXBuildFile; fileRef = 90A2374AB985D9E724E7505FAF895F2F /* UMUtilitiesInterface.h */; settings = {ATTRIBUTES = (Project, ); }; }; + DC22B9ED9AEC92C3C5BB77EBB9B54CA4 /* RCTModuloAnimatedNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 0BDC48158257177D1F6962E8131E1367 /* 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 = 5C27A8387D44E157028D30D55AF1AC7D /* RNFirebaseDatabase.h */; settings = {ATTRIBUTES = (Project, ); }; }; DC28E96BA8BC8E051CA66420F836DDB5 /* idec_dec.c in Sources */ = {isa = PBXBuildFile; fileRef = B744243DDD3E90CBDBBEE7F8B7F2B4BB /* idec_dec.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - DC83F9A19E21E99237CA1E1903EE6DFD /* RNBackgroundTimer.m in Sources */ = {isa = PBXBuildFile; fileRef = 3826C185CC437E8F905232507D722145 /* RNBackgroundTimer.m */; }; - DC91434903C0446DBE4EC705CEBBB6DE /* SDDisplayLink.h in Headers */ = {isa = PBXBuildFile; fileRef = DC45F7A3D4A7E67D6A6C04602CF64F57 /* SDDisplayLink.h */; settings = {ATTRIBUTES = (Project, ); }; }; + DC83F9A19E21E99237CA1E1903EE6DFD /* RNBackgroundTimer.m in Sources */ = {isa = PBXBuildFile; fileRef = 94678CA3241175099C6B297014249FDB /* RNBackgroundTimer.m */; }; DCB90D8D8966F8964BA8B9A333F44E4F /* Base.lproj in Resources */ = {isa = PBXBuildFile; fileRef = 087E38FA9ADF56CBFB0A88F271CD2D97 /* Base.lproj */; }; DCC79093B0298C5C73431BAB4A5CD43A /* IPAddress.h in Headers */ = {isa = PBXBuildFile; fileRef = FC68EA81DFB6AFC80791473DFEFA648E /* IPAddress.h */; settings = {ATTRIBUTES = (Project, ); }; }; - DCDCE485909B5CE0B0BC06693D89E54E /* SDImageTransformer.h in Headers */ = {isa = PBXBuildFile; fileRef = 73C7E748D6247016CD225AF20049FBC9 /* SDImageTransformer.h */; settings = {ATTRIBUTES = (Project, ); }; }; DD0172C138C004D1206227573AB94742 /* Uri.h in Headers */ = {isa = PBXBuildFile; fileRef = 744FDBFE85D90D5ECFA859B3F358AA90 /* Uri.h */; settings = {ATTRIBUTES = (Project, ); }; }; - DD0ED0194269A9546678AE2F538F3017 /* SDImageFrame.m in Sources */ = {isa = PBXBuildFile; fileRef = B3734B6DEF352FA194A23D8BF4EB7C2B /* SDImageFrame.m */; }; - DD1BC3892CC8386218B2AC5A82F6D729 /* ReactNativeKeyboardInput-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 759ADEA0F49999ED003E12B3140CEA1C /* ReactNativeKeyboardInput-dummy.m */; }; - DD31E664C8D93EBC57110B8E97E90E9C /* NSImage+Compatibility.m in Sources */ = {isa = PBXBuildFile; fileRef = 311652007C95DA14AF3C4E1583B6843E /* NSImage+Compatibility.m */; }; + DD0ED0194269A9546678AE2F538F3017 /* SDImageFrame.m in Sources */ = {isa = PBXBuildFile; fileRef = 9C23991C3FDE1C776B675DA6C6CD438D /* SDImageFrame.m */; }; + DD1BC3892CC8386218B2AC5A82F6D729 /* ReactNativeKeyboardInput-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = B9D8FDF66E36BB4042F0B2DDF2F724FE /* ReactNativeKeyboardInput-dummy.m */; }; + DD31E664C8D93EBC57110B8E97E90E9C /* NSImage+Compatibility.m in Sources */ = {isa = PBXBuildFile; fileRef = C13162978A24E5E967EEE703E95D17ED /* NSImage+Compatibility.m */; }; DD4C7A9E5CA5013D7786CFA9D177B890 /* FixedString.h in Headers */ = {isa = PBXBuildFile; fileRef = B9940970BDE50BD21BE9ABF71AFB8E2A /* FixedString.h */; settings = {ATTRIBUTES = (Project, ); }; }; - DD5E5AE9110DDEC1969C9AEB96A26D7A /* BSG_KSCrashDoctor.m in Sources */ = {isa = PBXBuildFile; fileRef = 6EB757A79FF3B69AD6B9E4791A7020F0 /* BSG_KSCrashDoctor.m */; }; + DD5E5AE9110DDEC1969C9AEB96A26D7A /* BSG_KSCrashDoctor.m in Sources */ = {isa = PBXBuildFile; fileRef = 29589E6E9E730FD0965264637DE985D5 /* BSG_KSCrashDoctor.m */; }; DD62E087ABC9059C2E7E3104FF8A8835 /* GULLogger.h in Headers */ = {isa = PBXBuildFile; fileRef = 193E2251E77EFDE11012242D727DC062 /* GULLogger.h */; settings = {ATTRIBUTES = (Project, ); }; }; - DD631AAE5B18CDDA00ED19CF2081DDB3 /* RNFirebaseInstanceId.m in Sources */ = {isa = PBXBuildFile; fileRef = BEE2BAEED37A6A2D75DE4F8C9C7D1970 /* RNFirebaseInstanceId.m */; }; - DD8331D4F1339F9333C4665A0589D24B /* BugsnagApiClient.h in Headers */ = {isa = PBXBuildFile; fileRef = 6F77194E54C6A747E949B4AAA15A0675 /* BugsnagApiClient.h */; settings = {ATTRIBUTES = (Project, ); }; }; - DDE256F5734BB9FFB186080C5B47E01F /* RCTSinglelineTextInputViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 124072C8CF5B3C82CAF4ECD605BC4C4E /* RCTSinglelineTextInputViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + DD631AAE5B18CDDA00ED19CF2081DDB3 /* RNFirebaseInstanceId.m in Sources */ = {isa = PBXBuildFile; fileRef = 4A2AA9ED3472A469364C9039E4696788 /* RNFirebaseInstanceId.m */; }; + DD8331D4F1339F9333C4665A0589D24B /* BugsnagApiClient.h in Headers */ = {isa = PBXBuildFile; fileRef = DA555520E55808EAFC7410EECA5D6856 /* BugsnagApiClient.h */; settings = {ATTRIBUTES = (Project, ); }; }; + DDE256F5734BB9FFB186080C5B47E01F /* RCTSinglelineTextInputViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 5A7DCFB3F575C0CBEB1478EE7B915259 /* RCTSinglelineTextInputViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; DDE321B7B9538F10B934152A17769962 /* FBLPromise+Timeout.h in Headers */ = {isa = PBXBuildFile; fileRef = 0D083D91DCF05A1194D88C22CACAC0A4 /* FBLPromise+Timeout.h */; settings = {ATTRIBUTES = (Project, ); }; }; DDEECFFF302A446DF9F1194D17A36925 /* FutureSplitter.h in Headers */ = {isa = PBXBuildFile; fileRef = AB62F1932D4F21CA1B738E66C407D3A5 /* FutureSplitter.h */; settings = {ATTRIBUTES = (Project, ); }; }; - DE0EEF1A731CE26A87DF2824C0EA61B3 /* RCTErrorCustomizer.h in Headers */ = {isa = PBXBuildFile; fileRef = FE2D90C34D9C0A9A6644DEAEDC0436CB /* RCTErrorCustomizer.h */; settings = {ATTRIBUTES = (Project, ); }; }; + DE0EEF1A731CE26A87DF2824C0EA61B3 /* RCTErrorCustomizer.h in Headers */ = {isa = PBXBuildFile; fileRef = 1F89EA536C6C65EA83A27CD06AB074FE /* RCTErrorCustomizer.h */; settings = {ATTRIBUTES = (Project, ); }; }; DE362CD58EB6E55028F789361187A702 /* ThreadCachedArena.cpp in Sources */ = {isa = PBXBuildFile; fileRef = E49BDF8511EA64309A578D4B1B2DEE45 /* 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 = 44F9B6AFD75F2837103BC8793D42A32A /* RCTWebSocketExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; + DE3C8E08E38361EC13B19AF977A7F012 /* RCTWebSocketExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = FAFEF6C60948663BA51B3996AE82FE4E /* RCTWebSocketExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; DE9795B12DC6F34813DDA08D4B8BA982 /* FrameType.h in Headers */ = {isa = PBXBuildFile; fileRef = AE1DDA6462CAE7ECA09C1514C6480BDB /* FrameType.h */; settings = {ATTRIBUTES = (Project, ); }; }; DEBFD8640231926B88FE3CD4FDDDF381 /* ManualExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = C594763EE856BA417805AA977CDF305E /* ManualExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; DEDBA7D5E0A65DE6FE7B04A4E3B87CDD /* StaticConst.h in Headers */ = {isa = PBXBuildFile; fileRef = 9BF0A5227479C231AA36262A1AE5569A /* StaticConst.h */; settings = {ATTRIBUTES = (Project, ); }; }; - DEE4EA1E653EC166B12DE85CB96230FD /* ARTRadialGradient.h in Headers */ = {isa = PBXBuildFile; fileRef = A724BD0C25F5146F814C94E6A142AE77 /* ARTRadialGradient.h */; settings = {ATTRIBUTES = (Project, ); }; }; + DEE4EA1E653EC166B12DE85CB96230FD /* ARTRadialGradient.h in Headers */ = {isa = PBXBuildFile; fileRef = 1E19BE1737EE6C285809F2BB8451B5DF /* ARTRadialGradient.h */; settings = {ATTRIBUTES = (Project, ); }; }; DF404DA0B392DB192D47AC020D531A9A /* Demangle.h in Headers */ = {isa = PBXBuildFile; fileRef = 40C99E3CD223EBC64465DFCAF6F3E771 /* Demangle.h */; settings = {ATTRIBUTES = (Project, ); }; }; DF7078E5269EF7551228DFC3F9501FEC /* FrameFlags.cpp in Sources */ = {isa = PBXBuildFile; fileRef = DE65E4C5199AB765432132DFD5B72525 /* 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 = EDD81CB684516A2C3CE6651B54126EB0 /* PolyDetail.h */; settings = {ATTRIBUTES = (Project, ); }; }; DF8D5DA3700432625CCA28276EBC56FE /* RangeCommon.h in Headers */ = {isa = PBXBuildFile; fileRef = 362F533612F39ED0A116F12242EB3851 /* RangeCommon.h */; settings = {ATTRIBUTES = (Project, ); }; }; - DF9256449C0F2EFC90E1BFC1763DB46F /* RCTAlertManager.mm in Sources */ = {isa = PBXBuildFile; fileRef = BD5F3EF6EB0059568C5D5E1ACE4D16DF /* 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 = 8F720EC32BC0BA1F12D5E70A9617F5BC /* RNFirebasePerformance.m */; }; + DF9256449C0F2EFC90E1BFC1763DB46F /* RCTAlertManager.mm in Sources */ = {isa = PBXBuildFile; fileRef = FCE9A9C4C8B59B9F1DCD731805B34181 /* 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 = 36A376FF467EC3CDC4C7116372284927 /* RNFirebasePerformance.m */; }; DFA2F79F9121657E2DF8E7DDE482828C /* ThreadCachedInts.h in Headers */ = {isa = PBXBuildFile; fileRef = 0672A1C17F80DFD5A9341B19DD72461F /* ThreadCachedInts.h */; settings = {ATTRIBUTES = (Project, ); }; }; - DFB1AFA14DA04F33017F0086D60693CF /* NSButton+WebCache.h in Headers */ = {isa = PBXBuildFile; fileRef = 69BD22B376ED5AF2061DF89B1D183BBB /* NSButton+WebCache.h */; settings = {ATTRIBUTES = (Project, ); }; }; - DFFC4019C4EF86FD6A5A8A62F767ADDE /* BugsnagCollections.h in Headers */ = {isa = PBXBuildFile; fileRef = 3F82FA274BA7E705C804627258FC1AFD /* BugsnagCollections.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E00AE219C77E8D17BBBF9A091E04A29D /* FFFastImageView.h in Headers */ = {isa = PBXBuildFile; fileRef = C6C36B4CF0EFE6B9FBE55B0E968F387A /* FFFastImageView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + DFFC4019C4EF86FD6A5A8A62F767ADDE /* BugsnagCollections.h in Headers */ = {isa = PBXBuildFile; fileRef = DA8BC124F2E327FF1FAFEB594EA867F0 /* BugsnagCollections.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E00AE219C77E8D17BBBF9A091E04A29D /* FFFastImageView.h in Headers */ = {isa = PBXBuildFile; fileRef = E628938263C2178EBF71B1FA2E84FBF6 /* FFFastImageView.h */; settings = {ATTRIBUTES = (Project, ); }; }; E00BC402FDDAB7D225D87AB8410D1B1A /* DecoratedAsyncTransportWrapper.h in Headers */ = {isa = PBXBuildFile; fileRef = 86AC27475EFFAFF90ED461FD8F0DEC1F /* DecoratedAsyncTransportWrapper.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E00FAD0FDB26AF9FE9B56ED65F8587EB /* LNInterpolable.h in Headers */ = {isa = PBXBuildFile; fileRef = 73AA7F6FDD0109D9B53978B88A0903BA /* LNInterpolable.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E00FAD0FDB26AF9FE9B56ED65F8587EB /* LNInterpolable.h in Headers */ = {isa = PBXBuildFile; fileRef = 284B9B89A1F33F4189DF7F7A93A6AD3D /* LNInterpolable.h */; settings = {ATTRIBUTES = (Project, ); }; }; E0362698CD153611761F5468EE9F1CB5 /* FlipperRSocketResponder.h in Headers */ = {isa = PBXBuildFile; fileRef = E6DF44FB4D4D204EDF10E6845C6C59D9 /* FlipperRSocketResponder.h */; settings = {ATTRIBUTES = (Project, ); }; }; E050964E1AB1383EA71092C52BA08CAC /* Syslog.h in Headers */ = {isa = PBXBuildFile; fileRef = ECE4810BC3C59E5A850326AF4F5FB19C /* Syslog.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E053534668BD0F090E588EA79CAC026A /* BSG_KSObjC.c in Sources */ = {isa = PBXBuildFile; fileRef = 2F6E770107F0F9662E99148E09934317 /* BSG_KSObjC.c */; }; - E087DB435044D30051DCE1885634E2C9 /* UIImageView+HighlightedWebCache.m in Sources */ = {isa = PBXBuildFile; fileRef = DA0B7541A49C2650D4598D443197E8C8 /* UIImageView+HighlightedWebCache.m */; }; + E053534668BD0F090E588EA79CAC026A /* BSG_KSObjC.c in Sources */ = {isa = PBXBuildFile; fileRef = ACA9379001E5C2076EFC437494FBF2BE /* BSG_KSObjC.c */; }; + E087DB435044D30051DCE1885634E2C9 /* UIImageView+HighlightedWebCache.m in Sources */ = {isa = PBXBuildFile; fileRef = 4A66F8075DD9275EB8E3E2D3F3C8CA70 /* UIImageView+HighlightedWebCache.m */; }; E0A65AF86EC06BDC7937CA9CB9972285 /* demangle.cc in Sources */ = {isa = PBXBuildFile; fileRef = F785BAF95304001F5E6B0B6185D7BB7E /* demangle.cc */; settings = {COMPILER_FLAGS = "-Wno-shorten-64-to-32"; }; }; E0A95348DFCA5B73FAE577A45F6822FD /* Function.h in Headers */ = {isa = PBXBuildFile; fileRef = 398877019437A0142F23A0EA7B2F5B8C /* Function.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E0C46A52452ABB7A82187CF8BADC033D /* RNDateTimePicker.h in Headers */ = {isa = PBXBuildFile; fileRef = 00D1A29C97764FB371DCC4BB85B342F6 /* RNDateTimePicker.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E0D24084E545AFDA689960BB764202E3 /* RCTScrollContentShadowView.m in Sources */ = {isa = PBXBuildFile; fileRef = D43403F0933FFC1A5067920E9A1085A0 /* 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 = A5B1AD30F29FFCA73FADF2C224811D06 /* RCTSurfaceView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E10071787CB631AD444940A8906FF5F9 /* YGNode.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 6CDB31BDF2D8BFC7451FA2DE3DEAEEB8 /* 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 = 155BD20FEC2D6644EBC5AD7D346012B5 /* RNDateTimePicker.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E0D24084E545AFDA689960BB764202E3 /* RCTScrollContentShadowView.m in Sources */ = {isa = PBXBuildFile; fileRef = AC90E40536A4150AAD8796714CC5221C /* 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 = 9A43BCBEA831533C3913F04BC78B4C33 /* RCTSurfaceView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E10071787CB631AD444940A8906FF5F9 /* YGNode.cpp in Sources */ = {isa = PBXBuildFile; fileRef = C44F0DD346E6E691E805C3357725F999 /* YGNode.cpp */; settings = {COMPILER_FLAGS = "-fno-omit-frame-pointer -fexceptions -Wall -Werror -std=c++1y -fPIC -fno-objc-arc"; }; }; + E102CFF1546031E99D8ED019337D349C /* SDWebImageDownloaderOperation.h in Headers */ = {isa = PBXBuildFile; fileRef = 9EC6AB611780C8DEB792590428B46134 /* SDWebImageDownloaderOperation.h */; settings = {ATTRIBUTES = (Project, ); }; }; E11E13EF27F699205C8B6E7CA84524E0 /* ar.lproj in Resources */ = {isa = PBXBuildFile; fileRef = DE7E37E9E3C94914A6B940F786C071BB /* ar.lproj */; }; E1266B55B38842C13A05CFD3DF2E4C0D /* StaticSingletonManager.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F45C7EFA0D2C146F8C8BE384EE03B7CF /* 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 = F91B915CE87D11F1EC02D7B6AE542EC5 /* RCTTextShadowView.m */; }; - E155D2FA7860A20F4D688252FEE7C5EF /* RCTSpringAnimation.h in Headers */ = {isa = PBXBuildFile; fileRef = 07AF9A5578F23EBDE628D7A0CD44EE44 /* RCTSpringAnimation.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E19B575090355E623900BC4E520EE66A /* REATransitionManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 74CB6B32052B4980712DC85AF207A391 /* REATransitionManager.m */; }; + E13457FACFBE0A02A510B6A2FA0976A9 /* RCTTextShadowView.m in Sources */ = {isa = PBXBuildFile; fileRef = 769B15941AB9A886CBC4D62243ECB089 /* RCTTextShadowView.m */; }; + E155D2FA7860A20F4D688252FEE7C5EF /* RCTSpringAnimation.h in Headers */ = {isa = PBXBuildFile; fileRef = FBD8E3F4B4ED49CD6910E86F1AE7885D /* RCTSpringAnimation.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E19B575090355E623900BC4E520EE66A /* REATransitionManager.m in Sources */ = {isa = PBXBuildFile; fileRef = C4B2C5709C514C2A60E9E90B11DD4F53 /* REATransitionManager.m */; }; E1B270459C9A3A1F331BAB2B69F8B319 /* Align.h in Headers */ = {isa = PBXBuildFile; fileRef = 6EF5403BF740F93C1CDC1335EB3741F9 /* Align.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E1C92AEEAF907D9FBB3D536670867DE4 /* UMAppLoaderProvider.m in Sources */ = {isa = PBXBuildFile; fileRef = 107E6EA09D55A51A08CC1346FF70D5AC /* UMAppLoaderProvider.m */; }; + E1C92AEEAF907D9FBB3D536670867DE4 /* UMAppLoaderProvider.m in Sources */ = {isa = PBXBuildFile; fileRef = 9F95B7430831BB3264E99F2ECD0494D4 /* UMAppLoaderProvider.m */; }; E1C98A18F4F7534AC0A3D36EDB71822B /* GDTCOREventDataObject.h in Headers */ = {isa = PBXBuildFile; fileRef = 88BB7BA6E4C7D37135B581C10BA17555 /* GDTCOREventDataObject.h */; settings = {ATTRIBUTES = (Project, ); }; }; E1E6C85C75FFE608F8639A084D7ADD81 /* Stdio.h in Headers */ = {isa = PBXBuildFile; fileRef = F56E6BCC902E5A6906931A4FEDCB7224 /* Stdio.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E200867DC2C7080B4818C3CC6A4A0B18 /* RCTInspector.mm in Sources */ = {isa = PBXBuildFile; fileRef = 89720CB68A82B2FF5B98EE4FA09BF861 /* 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 = F041A1ED81DB509451BEAB1A0A955539 /* 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 = C686E607286AB7E08B8E8B083E7C3B51 /* SKInvalidation.h */; settings = {ATTRIBUTES = (Project, ); }; }; E22214E4EF2CE522B3E8311CF4A002F9 /* FrameTransport.h in Headers */ = {isa = PBXBuildFile; fileRef = 2EB8D45C0E97E90D087657FC89EDEF81 /* FrameTransport.h */; settings = {ATTRIBUTES = (Project, ); }; }; E265227A4C1DB2311EFF7D1A481C37A6 /* SSLOptions.h in Headers */ = {isa = PBXBuildFile; fileRef = CE89012333BC726EDF5F257C32C6E23C /* SSLOptions.h */; settings = {ATTRIBUTES = (Project, ); }; }; E275864857518C091CD5FF4CEEE87FB0 /* PTChannel.h in Headers */ = {isa = PBXBuildFile; fileRef = 578E7DE2903207C8DC9A9E617D70D24E /* PTChannel.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E289DD56FB9A64EB8AA6A75ACA0F9CD3 /* RCTLayoutAnimation.m in Sources */ = {isa = PBXBuildFile; fileRef = 6B6C97675A37EFAC4203BE9D24797F2D /* 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 = C3601DDF73E4E0C163E9C1038E282EC0 /* RNDeviceInfo-dummy.m */; }; - E2E5AC3481B7CEC723E71F315B175F36 /* RCTUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = 52D70E6A6AE650734FECF0BA7B5B3005 /* RCTUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E2E63F80091EF95DB669379D32B18540 /* RCTDataRequestHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 7C389B355B317DAF3433694C53E04F99 /* RCTDataRequestHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E2FF9B95985AF9F0893B58D3A56E8F8E /* RCTNetworkPlugins.mm in Sources */ = {isa = PBXBuildFile; fileRef = 8E77041415D1CD541F3146A37A299F94 /* 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"; }; }; + E289DD56FB9A64EB8AA6A75ACA0F9CD3 /* RCTLayoutAnimation.m in Sources */ = {isa = PBXBuildFile; fileRef = AB17B74C4F0476D139535A28C1FAD564 /* 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 = A1FEA8F5E246D542705C116C20E9EE8E /* RNDeviceInfo-dummy.m */; }; + E2E5AC3481B7CEC723E71F315B175F36 /* RCTUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = D51449D4A44F7D5B052ACFB57D074E72 /* RCTUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E2E63F80091EF95DB669379D32B18540 /* RCTDataRequestHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 93E842ACF5DDF109E79EB438534ADF14 /* RCTDataRequestHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E2FF9B95985AF9F0893B58D3A56E8F8E /* RCTNetworkPlugins.mm in Sources */ = {isa = PBXBuildFile; fileRef = B7A6BF06A279724ECA7634343AFB76DC /* 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 = 9CE30C981AFECA8F5C7649212D790153 /* RequestResponseRequester.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E30DBF6F24A1AA672DB410F688B108B5 /* RCTInputAccessoryView.h in Headers */ = {isa = PBXBuildFile; fileRef = 02EACCEF85C6401CE759EC23BFD20E25 /* RCTInputAccessoryView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E35C6D7DE7A931B32026F76A9CD0ADF1 /* UIImageView+HighlightedWebCache.h in Headers */ = {isa = PBXBuildFile; fileRef = 21687532BBF95813285D4614E00325D8 /* UIImageView+HighlightedWebCache.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E30DBF6F24A1AA672DB410F688B108B5 /* RCTInputAccessoryView.h in Headers */ = {isa = PBXBuildFile; fileRef = 13CC2D28BDC280DC4C8E82643F75B4B9 /* RCTInputAccessoryView.h */; settings = {ATTRIBUTES = (Project, ); }; }; E36CE82EE6E8EB310110289E09673AA7 /* Likely.h in Headers */ = {isa = PBXBuildFile; fileRef = CCD31D2478D8ED31D3995A308550CD8E /* Likely.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E39E3634C4CA7E2E69BB72A8AF9DF0DC /* RCTKeyCommandsManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 879C4675A42A906C9C1BAC3DFB52488A /* RCTKeyCommandsManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E3BEB1D6134538FEB6EF8E1F561712D1 /* REAOperatorNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 28BBE692349E857ED55046519762BAA7 /* REAOperatorNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E3C2AA2EF8BF87E30448B374DC2AC287 /* CxxNativeModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 03C971251727F36F630D77196BF3442A /* CxxNativeModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E39E3634C4CA7E2E69BB72A8AF9DF0DC /* RCTKeyCommandsManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 07A912C18DDE4C25DF54EFA9ED83B6A0 /* RCTKeyCommandsManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E3BEB1D6134538FEB6EF8E1F561712D1 /* REAOperatorNode.h in Headers */ = {isa = PBXBuildFile; fileRef = EB7B259697BB5166461D289E034DE3BA /* REAOperatorNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E3C2AA2EF8BF87E30448B374DC2AC287 /* CxxNativeModule.h in Headers */ = {isa = PBXBuildFile; fileRef = B9EFE79B1E1A98E02D5E2E0A8D011ED1 /* CxxNativeModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; E3D417E505AF2104EB996901585FD373 /* UninitializedMemoryHacks.h in Headers */ = {isa = PBXBuildFile; fileRef = D3D5F57863D6E4968D27A62227156915 /* UninitializedMemoryHacks.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E3D899247BA051EF2CCED618D78F98BD /* EXPermissions.h in Headers */ = {isa = PBXBuildFile; fileRef = 86AC22B4BB409F1E101B286CF2109DB4 /* EXPermissions.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E3D899247BA051EF2CCED618D78F98BD /* EXPermissions.h in Headers */ = {isa = PBXBuildFile; fileRef = 9E2782C076229A3A4F57ABBE803EECBE /* EXPermissions.h */; settings = {ATTRIBUTES = (Project, ); }; }; E3DEE879EF45B3369CCA589810AC4F9D /* Pretty.h in Headers */ = {isa = PBXBuildFile; fileRef = 117D6F285FFB893278988CB329E1BA68 /* Pretty.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E3EF52EAA4DDBA2C5783321F550DC1EC /* RCTTouchHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = 41949BFA1C03419EA1DBC94919B131BF /* 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 = 8C0FCA294C4FAA53822A596DB70AD113 /* 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 = 54F0EBC3C7D804136FA44144E2525C9C /* String-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E3F93C06523AB7C891246F4F5AD44B0D /* BSG_KSSysCtl.h in Headers */ = {isa = PBXBuildFile; fileRef = 0E942DCB54F046D2146E9F69DC7E1335 /* BSG_KSSysCtl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E3FCFE46DD5FB40E8C723A5AB913D248 /* Utils.h in Headers */ = {isa = PBXBuildFile; fileRef = D8C74FA13B259036623D80DFFD327CA9 /* Utils.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E3FFAD5E1E8EB56B739FE7117329E4AA /* REACondNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 85155F53DD15AAF844D7921324350B39 /* REACondNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E3F93C06523AB7C891246F4F5AD44B0D /* BSG_KSSysCtl.h in Headers */ = {isa = PBXBuildFile; fileRef = 75B0968693C493BAEFE99F0982B10496 /* BSG_KSSysCtl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E3FCFE46DD5FB40E8C723A5AB913D248 /* Utils.h in Headers */ = {isa = PBXBuildFile; fileRef = B7C738501213DF7BA864DB8C722B5F55 /* Utils.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E3FFAD5E1E8EB56B739FE7117329E4AA /* REACondNode.h in Headers */ = {isa = PBXBuildFile; fileRef = C2D4EB37DBC86E89625C75AB59DF4C7C /* REACondNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; E432F1ADFEA6AF93027885C4153879EB /* zh-Hans.lproj in Resources */ = {isa = PBXBuildFile; fileRef = AE2B51D72A10BBBF6FEAAA9CD98C67A5 /* zh-Hans.lproj */; }; E4346CBB30A1CE0D0CCFC60AB0111070 /* Aligned.h in Headers */ = {isa = PBXBuildFile; fileRef = 2D3D68E6A6FD5EAFBF6E6CF0344C747D /* Aligned.h */; settings = {ATTRIBUTES = (Project, ); }; }; E435A140ED65F86C87BCE291EDA0F8FE /* StringKeyedUnorderedSet.h in Headers */ = {isa = PBXBuildFile; fileRef = B9C0C1A7183EF88CCC354BB8A1419EFC /* StringKeyedUnorderedSet.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E4371B1E44E185F3F7756EE3FFC0D0D4 /* RNLongPressHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 1E0E785CEC2D81D047949A009814CE8F /* RNLongPressHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E4371B1E44E185F3F7756EE3FFC0D0D4 /* RNLongPressHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 3DF56B9AFF929D69C47E7F571A6525C8 /* RNLongPressHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; E44CC82BF34E84E10A31CF56B0A6337A /* SKYogaKitHelper.h in Headers */ = {isa = PBXBuildFile; fileRef = B473A7ADF0E19BB8A0272C25026C4DE5 /* SKYogaKitHelper.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E46F43ADFBAD3F9789D0F8A633EF8A2B /* RCTRedBoxSetEnabled.h in Headers */ = {isa = PBXBuildFile; fileRef = 5C2D2383D87C2AA4BF53D7569872A92E /* RCTRedBoxSetEnabled.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E46F43ADFBAD3F9789D0F8A633EF8A2B /* RCTRedBoxSetEnabled.h in Headers */ = {isa = PBXBuildFile; fileRef = B77946B7B7F16FECC6DFCFA73EA557D7 /* RCTRedBoxSetEnabled.h */; settings = {ATTRIBUTES = (Project, ); }; }; E490A09CBBCE0CDE87FE320AACBA49B5 /* Async.h in Headers */ = {isa = PBXBuildFile; fileRef = D11D6FBDB64F3E56C9FBE59F31698518 /* Async.h */; settings = {ATTRIBUTES = (Project, ); }; }; E49188CCEC47F2B014FEF6031EED26C5 /* PTPrivate.h in Headers */ = {isa = PBXBuildFile; fileRef = 74C310DC3306E164BCE850AA3DB4439C /* PTPrivate.h */; settings = {ATTRIBUTES = (Project, ); }; }; E49C99B16AE53555FE7A7CB8A8BE5382 /* FIRComponentContainer.h in Headers */ = {isa = PBXBuildFile; fileRef = A686518110E3EF511C07B43C54066949 /* FIRComponentContainer.h */; settings = {ATTRIBUTES = (Project, ); }; }; E4A5D4B6B6E51731DC54DCEF2061BC80 /* PTUSBHub.m in Sources */ = {isa = PBXBuildFile; fileRef = 6B0729204974CFA3C66706EA274FBF54 /* PTUSBHub.m */; }; E4A62623BCCFF4670E75A06222D71804 /* FBLPromise+Any.m in Sources */ = {isa = PBXBuildFile; fileRef = 194FDA7D4FB1A675A8B7C35218D609FB /* FBLPromise+Any.m */; }; E4A838167C6B85DD73C925E657D83B30 /* ChannelResponder.h in Headers */ = {isa = PBXBuildFile; fileRef = BD6E1BB5617BB3C9B9EF365E5F0203B4 /* ChannelResponder.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E4C0666D63FE7DC33BD914E34AAF77BF /* SDImageCoderHelper.h in Headers */ = {isa = PBXBuildFile; fileRef = 39C2B4A45BAEFA2B83291B29E21C89F4 /* SDImageCoderHelper.h */; settings = {ATTRIBUTES = (Project, ); }; }; E4D6FC3D6058A2F376C5C6D38B9C8442 /* FingerprintPolynomial.h in Headers */ = {isa = PBXBuildFile; fileRef = CF4E34DDFF9D97702ED9739067447CC8 /* FingerprintPolynomial.h */; settings = {ATTRIBUTES = (Project, ); }; }; E4D838084D6CC4D8518F1896EB83CCE4 /* MallocImpl.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 688F773A73569EE7691493F2EC65617B /* MallocImpl.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; E4FE62A73A78E2082178236455F1A718 /* Shell.h in Headers */ = {isa = PBXBuildFile; fileRef = B583011EC779284025BD8BC1EBE6A7C3 /* Shell.h */; settings = {ATTRIBUTES = (Project, ); }; }; E54627196D731B399218E48C6FA9CF9C /* FBDefines.h in Headers */ = {isa = PBXBuildFile; fileRef = 9EDAEB7D91BA29518EE5F8AD1DC515B9 /* FBDefines.h */; settings = {ATTRIBUTES = (Project, ); }; }; E547BCB79227691987B5794BFB30C99D /* StackTraceUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = 217FB6AD97DF7CD2EF569E3A2676DC8D /* StackTraceUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E554598FD317EE9149AB8454AA9059F8 /* RNScreens-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = C4F76CE918BDF24D3B02B9768F7BCB3B /* RNScreens-dummy.m */; }; - E56618D37F0F6C8E1894028F83D901E7 /* RCTDatePickerManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 32A66B75467762CA4BE821738EB96B6D /* 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 = C844BF9C6186707B9A73B3D28E631584 /* RNScreens-dummy.m */; }; + E56618D37F0F6C8E1894028F83D901E7 /* RCTDatePickerManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 54161D29392E345441AA956C2FB76506 /* 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 = 2FA7FAF71D780486BCBC9CF348A92AFC /* SDImageWebPCoder.m */; }; E5AC340EBD1517A25C5CD160306456FA /* TOCropToolbar.m in Sources */ = {isa = PBXBuildFile; fileRef = CB53773BBF77C128A533EB2861B17953 /* TOCropToolbar.m */; }; - E5CC97DD2276BCDD567C0F159E753813 /* SDImageLoader.m in Sources */ = {isa = PBXBuildFile; fileRef = 47589F57C14460D5BDC99E69B4E10519 /* SDImageLoader.m */; }; - E5EC406439D4AF312D4EB82CF3EAFDF9 /* RCTNetworkTask.mm in Sources */ = {isa = PBXBuildFile; fileRef = 00738B77A5CE05C854F2D2638BD918C2 /* 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 = F1A053F801616ED4AD79D36175CDEF89 /* RNGestureHandlerManager.m */; }; + E5CC97DD2276BCDD567C0F159E753813 /* SDImageLoader.m in Sources */ = {isa = PBXBuildFile; fileRef = F96EF64A44E8970497DDC90707CE5836 /* SDImageLoader.m */; }; + E5EC406439D4AF312D4EB82CF3EAFDF9 /* RCTNetworkTask.mm in Sources */ = {isa = PBXBuildFile; fileRef = 3B96B6057DCEA9A6E71122E0606928F1 /* 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 = D501F2EDE2698FD9A2CF24928AB10B2D /* RNGestureHandlerManager.m */; }; E5FF1743F9D79897E8139453D5C34C92 /* AsyncPipe.h in Headers */ = {isa = PBXBuildFile; fileRef = 4BB48F690B5F5C5245ADDEFC1C2B0144 /* AsyncPipe.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E6335683CD8324A549F41BBB5F393D3A /* ARTShape.m in Sources */ = {isa = PBXBuildFile; fileRef = 15C31B504AFEF2F1081FAA0B4C5C45FE /* ARTShape.m */; }; + E6335683CD8324A549F41BBB5F393D3A /* ARTShape.m in Sources */ = {isa = PBXBuildFile; fileRef = 14CD3FC365738EB6C10A99DD724BC984 /* ARTShape.m */; }; E636F64793DF12561685F8A8C80F63FF /* stl_logging.h in Headers */ = {isa = PBXBuildFile; fileRef = 8D117A13E94F82321D8B4159140BC45B /* stl_logging.h */; settings = {ATTRIBUTES = (Project, ); }; }; E67F1572C88EAE81A75D56813DC25A81 /* Init.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BA0C002C7BB5AB0659612B13B3F68B59 /* 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 = 7C30C30074F4C0A197B79ED68957C6ED /* RNFastImage-dummy.m */; }; + E6B28EC2EAA76DA7CBCA209D55786E4C /* RNFastImage-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 93CE9A1E0DD380608A483F45CDFD4880 /* RNFastImage-dummy.m */; }; E6C3AC1533E09AB22822D392C9B9CFCC /* FIRDependency.m in Sources */ = {isa = PBXBuildFile; fileRef = 9E5F817AABF49567F3399B48908C5949 /* FIRDependency.m */; }; E6E661E87351F35E9363075A0879E1B8 /* UIView+Yoga.h in Headers */ = {isa = PBXBuildFile; fileRef = E9EC0706590ECF7C9BB06ADB9A20367F /* UIView+Yoga.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E6EEA57B39231F94F387361EDBC11C38 /* RNNotifications.h in Headers */ = {isa = PBXBuildFile; fileRef = 8E2F48AAC45A184290900EF2E16526FA /* RNNotifications.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E6F7B9CEE9EFBFBE390A29BFBC562255 /* RCTLayout.m in Sources */ = {isa = PBXBuildFile; fileRef = F5A35DF865955D1D0F752C21439DD2BB /* 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 = 98838DD15580B0FED5C489DFEE193B57 /* RNNotifications.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E6F7B9CEE9EFBFBE390A29BFBC562255 /* RCTLayout.m in Sources */ = {isa = PBXBuildFile; fileRef = ED7F52EA8E9D5ED153FEB67355F9C6D6 /* 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 = 46F4719382C42FA298DC8726823D9D46 /* dec_sse2.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - E707A2FAC0C36218BA2830206A0D76B0 /* NSButton+WebCache.m in Sources */ = {isa = PBXBuildFile; fileRef = DE1A03993F221E91A060D8EF328972C0 /* NSButton+WebCache.m */; }; + E707A2FAC0C36218BA2830206A0D76B0 /* NSButton+WebCache.m in Sources */ = {isa = PBXBuildFile; fileRef = E84082D55677B5A881FBE68FD01FBDFA /* NSButton+WebCache.m */; }; E71ABA1C157CF07D0AB0F5123F4B3DF8 /* FlipperUtil.m in Sources */ = {isa = PBXBuildFile; fileRef = 2E38B6606BBB78AB1FF04F7074200380 /* 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 = 311D3552CE0BEA00664B89CA15F9E487 /* DynamicConverter.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E72DABDE93F1A7CE6ABCABB7826FC731 /* TurboModule.h in Headers */ = {isa = PBXBuildFile; fileRef = EAC5057FC760FBFD55BC580C40F920CE /* TurboModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E72DABDE93F1A7CE6ABCABB7826FC731 /* TurboModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 274E9CA3F19C4A5A90B7C3123C3ADE1A /* TurboModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; E7584AD4F81B71B32D045FCA44EBC026 /* SKDescriptorMapper.mm in Sources */ = {isa = PBXBuildFile; fileRef = 8449A83B76B6D20EA14E5B02BF02BD30 /* 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 = 612BBADAE25F5CC04DCF32929D459F74 /* RCTBaseTextInputView.m */; }; - E79CC0FEF54CA45A7593ADEDEFEDF2F7 /* REABlockNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 7C5BF9AA9C782B87608E0F4E3255B3AA /* REABlockNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E76931DBEBF9716593668E19CED50263 /* RCTBaseTextInputView.m in Sources */ = {isa = PBXBuildFile; fileRef = 8EA6D7A458D18ED3D28C44B821858E70 /* RCTBaseTextInputView.m */; }; + E79CC0FEF54CA45A7593ADEDEFEDF2F7 /* REABlockNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 53BE9593DD3B59D4F27CCEEEEE01CD82 /* REABlockNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; E79E09130D1B077C25C4840E4C51B025 /* HazptrRec.h in Headers */ = {isa = PBXBuildFile; fileRef = CA23BBA18B09DFADF204605037FA6989 /* HazptrRec.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E7A5F444042456C0ED617E5BD78C8D41 /* YGFloatOptional.h in Headers */ = {isa = PBXBuildFile; fileRef = D10621A800B7B97AA6F5E01BCDFACEA6 /* YGFloatOptional.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E7A5F444042456C0ED617E5BD78C8D41 /* YGFloatOptional.h in Headers */ = {isa = PBXBuildFile; fileRef = 5E9164152232BD9BCA6DA1580B915619 /* YGFloatOptional.h */; settings = {ATTRIBUTES = (Project, ); }; }; E7A62D6CDBAA229E65AE672373925C76 /* fa.lproj in Resources */ = {isa = PBXBuildFile; fileRef = 7975F4555AD3757824FA4466A2497A85 /* fa.lproj */; }; E7B341F66C139B10A13B3829F1EF50BF /* F14Policy.h in Headers */ = {isa = PBXBuildFile; fileRef = C1AF7046F4295200DA1091E98F1B557F /* F14Policy.h */; settings = {ATTRIBUTES = (Project, ); }; }; E7BD9FFCE36687BDCA52879B12903E20 /* ExecutorWithPriority.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F17EAB6EC5ABDB09AAC7D5AE5ED78FFD /* 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"; }; }; + E7C136798440E586E451194FB447B02B /* SDAnimatedImagePlayer.h in Headers */ = {isa = PBXBuildFile; fileRef = AFC773FB089807C6B296B5993EBAE0BA /* SDAnimatedImagePlayer.h */; settings = {ATTRIBUTES = (Project, ); }; }; E7C35E716B800BD4F5E87951BB2B21B6 /* strtod.h in Headers */ = {isa = PBXBuildFile; fileRef = 85F7C760A276EBFC7EA9BBA94C4EA357 /* strtod.h */; settings = {ATTRIBUTES = (Project, ); }; }; E7D2340812F03790C705D669D0BECD8D /* json.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8BF3FE3E84F42D1F8138AC883498CA26 /* 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 = E75FF60B158B1B011137F71422617F65 /* RCTConvert.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E81B4FD413363CBA1C3EF0C8871AF34F /* REACallFuncNode.m in Sources */ = {isa = PBXBuildFile; fileRef = FF4202637A81AEA50739266A3B02FCCA /* REACallFuncNode.m */; }; + E800B9775C2890021CD5E850C1902AE5 /* RCTConvert.h in Headers */ = {isa = PBXBuildFile; fileRef = 5CCFF5CD2190A19D027A776722CA4AD3 /* RCTConvert.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E81B4FD413363CBA1C3EF0C8871AF34F /* REACallFuncNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 00C920FE6A7C2E00A87998E93213D845 /* REACallFuncNode.m */; }; E82C91CC8CEB33B774DB5E1C9E5D8FB8 /* MicroSpinLock.h in Headers */ = {isa = PBXBuildFile; fileRef = 12E9A42573FF35B5739794EE14DB0D7D /* MicroSpinLock.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E853513BCE291CEE0B0E1CA5D20B1809 /* RNFirebaseAnalytics.h in Headers */ = {isa = PBXBuildFile; fileRef = E6EEFCFD363248FF906BA5F5B0A32E75 /* RNFirebaseAnalytics.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E853513BCE291CEE0B0E1CA5D20B1809 /* RNFirebaseAnalytics.h in Headers */ = {isa = PBXBuildFile; fileRef = BC650A70C91226CF525858855AE2EF24 /* RNFirebaseAnalytics.h */; settings = {ATTRIBUTES = (Project, ); }; }; E86715E049DB72C646A5223D1367BA05 /* AsyncTransportCertificate.h in Headers */ = {isa = PBXBuildFile; fileRef = 6F40837B384672DDFC34288BFFD5EC34 /* AsyncTransportCertificate.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E88CCC48841EDF21CCE4162898C3A67A /* RCTBaseTextShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = 969B6F69D32F2EB84CFA0A410BDA47DF /* RCTBaseTextShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E893729E87251274E6D1D3B51566E3B4 /* RNCAppearance.m in Sources */ = {isa = PBXBuildFile; fileRef = 122E04F7E1EC2E9AFE681E66A2D5D1FC /* RNCAppearance.m */; }; - E8995EBE55A6CB262BBBE43F5A8C476D /* BSG_KSCrashReport.c in Sources */ = {isa = PBXBuildFile; fileRef = 15DF0AD1F4D72162B8B16CBE2821BB68 /* BSG_KSCrashReport.c */; }; - E89D296821E52EC4446DEA0176A80531 /* RCTActivityIndicatorViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = C0DD9DF6859C411D62FA7DB0B4ADAB70 /* RCTActivityIndicatorViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E88CCC48841EDF21CCE4162898C3A67A /* RCTBaseTextShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = 1C1CA5FFC31390049418CEB7C731C099 /* RCTBaseTextShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E893729E87251274E6D1D3B51566E3B4 /* RNCAppearance.m in Sources */ = {isa = PBXBuildFile; fileRef = F63CF6D8A75D7791060392A80D1FF74D /* RNCAppearance.m */; }; + E8995EBE55A6CB262BBBE43F5A8C476D /* BSG_KSCrashReport.c in Sources */ = {isa = PBXBuildFile; fileRef = B978B14C05594E588D93AFF8AB53CE0A /* BSG_KSCrashReport.c */; }; + E89D296821E52EC4446DEA0176A80531 /* RCTActivityIndicatorViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 3497C53C154E585DC539075DEAE714FB /* RCTActivityIndicatorViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; E8A3095A649700DAC4035399D6F9253F /* FIRInstallationsLogger.m in Sources */ = {isa = PBXBuildFile; fileRef = 06F8EBA16B75A578F19F3C024272E7DB /* FIRInstallationsLogger.m */; }; - E8A6ABDCF3C0C5876058B074C4E29BB6 /* UMJavaScriptContextProvider.h in Headers */ = {isa = PBXBuildFile; fileRef = BB6917060CD8E3BCC7BAC43AAF2FDFEE /* UMJavaScriptContextProvider.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E8A6ABDCF3C0C5876058B074C4E29BB6 /* UMJavaScriptContextProvider.h in Headers */ = {isa = PBXBuildFile; fileRef = 4435D53A1F514AE77A346D607F70F3A3 /* UMJavaScriptContextProvider.h */; settings = {ATTRIBUTES = (Project, ); }; }; E8BEE2CF803308491014F4084284C941 /* MallocImpl.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F7FA9C670FDACA6DAD2C7B0BC088A8CB /* 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 = F0CC2A5C60683A04E50F08667B3742AC /* BugsnagKSCrashSysInfoParser.m */; }; + E8CEFACE95B22A5EE6355422706B5E1A /* BugsnagKSCrashSysInfoParser.m in Sources */ = {isa = PBXBuildFile; fileRef = F8571A632FF52A4D8BB24D54FD871303 /* BugsnagKSCrashSysInfoParser.m */; }; E8E57DC7FD3E1405D821BA98E547E940 /* CancellationToken.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 28CE9608E7A72C33778634272680ABCE /* 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 = D8CF38A9D65D586F07E4D1801E49DEF4 /* GDTCORDataFuture.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E909C3B354A842A014E4C9C2F341F55C /* BSG_KSCrashReportStore.m in Sources */ = {isa = PBXBuildFile; fileRef = BA402C1554FE2BDBAB76A90DFB51A5C1 /* BSG_KSCrashReportStore.m */; }; - E930EFA4028C347FB207A0C4EF2AB204 /* RNNotificationCenterListener.h in Headers */ = {isa = PBXBuildFile; fileRef = E8B20DC75F836A5E02E9E2ECB20ABDED /* RNNotificationCenterListener.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E909C3B354A842A014E4C9C2F341F55C /* BSG_KSCrashReportStore.m in Sources */ = {isa = PBXBuildFile; fileRef = 48E7E03C4B61425FE65E20EB8E88F881 /* BSG_KSCrashReportStore.m */; }; + E930EFA4028C347FB207A0C4EF2AB204 /* RNNotificationCenterListener.h in Headers */ = {isa = PBXBuildFile; fileRef = 488EA45EBA343D1BD2A4E6DAA324BD75 /* RNNotificationCenterListener.h */; settings = {ATTRIBUTES = (Project, ); }; }; E9420AC963BB88173D440157F5C2F49B /* ConsumerBase.h in Headers */ = {isa = PBXBuildFile; fileRef = 167F569B180CD0BCC576258711BEB603 /* ConsumerBase.h */; settings = {ATTRIBUTES = (Project, ); }; }; E955BABD4485D7B2B958836126D6196A /* Cursor.h in Headers */ = {isa = PBXBuildFile; fileRef = 66B721BD26A928F014758863ABC256CD /* Cursor.h */; settings = {ATTRIBUTES = (Project, ); }; }; E9724524AA9D6AF0B15DE2A0E50866CC /* ColdClass.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 188016977A4BCB7C17AA39C769EC6872 /* 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 = 0A3AF7F862CC74712717A4D37F702C87 /* 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 = 076D49CBA83759E8A47F4244DA64417A /* 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 = 2DDE527B11E155E4BB506DEC931D0CBD /* webp_enc.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - E99670DE6BBAD7C09E618409533D1080 /* EXDownloadDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = CB37AA76C764D977AF9EA4B1FA538F9D /* EXDownloadDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E9A3CC8E413540C894C020ABF96AD215 /* BSG_KSFileUtils.c in Sources */ = {isa = PBXBuildFile; fileRef = 555614C4441CCF93180DF6410C9F48EA /* BSG_KSFileUtils.c */; }; + E99670DE6BBAD7C09E618409533D1080 /* EXDownloadDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = 5E95CCB65EA66A6DA10DA4AC44B761D1 /* EXDownloadDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E9A3CC8E413540C894C020ABF96AD215 /* BSG_KSFileUtils.c in Sources */ = {isa = PBXBuildFile; fileRef = 800C3A1045AE80D098764718B680BD2D /* BSG_KSFileUtils.c */; }; E9A824AE0E78956A27149966A7E03D42 /* SKViewControllerDescriptor.m in Sources */ = {isa = PBXBuildFile; fileRef = 0B4C7BCE8DE1F357EC2A2E9C1BEB2D53 /* 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 = C14E45FD9623CC58C10518AD113563CE /* ReactCommon-dummy.m */; }; - E9ACBB81BB2D21567E75CB08C2B132A4 /* RNLocalize.h in Headers */ = {isa = PBXBuildFile; fileRef = D94271F55B4B4578FBF5D306CDE13760 /* RNLocalize.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E9B3CCF9119F1CA395816741CFF9A3F1 /* JSCRuntime.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 78545C54F7F735A7E71AC86B01AB3CD3 /* 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 = 082248F149CA01E5F5092279617FFF33 /* RCTActivityIndicatorView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E9CB3E4BBC56D018906CC137FDCC2218 /* BugsnagSessionTracker.h in Headers */ = {isa = PBXBuildFile; fileRef = 4A5D8F44DCDE87F173CBE63A075DB058 /* BugsnagSessionTracker.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E9AA3E90817EB0A8CD2A00F94D3F005D /* ReactCommon-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 019388B2AD000029A641B277E52D3A7D /* ReactCommon-dummy.m */; }; + E9ACBB81BB2D21567E75CB08C2B132A4 /* RNLocalize.h in Headers */ = {isa = PBXBuildFile; fileRef = 95E4686E8313303F58C784A42B8EB400 /* RNLocalize.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E9B3CCF9119F1CA395816741CFF9A3F1 /* JSCRuntime.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3D1619F7D2598DD15A2839483CE4BF9E /* 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 = F2F37C5F3075E0A85D6D52321252AADA /* RCTActivityIndicatorView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E9CB3E4BBC56D018906CC137FDCC2218 /* BugsnagSessionTracker.h in Headers */ = {isa = PBXBuildFile; fileRef = 879CBC951898F167B87A604EA6A12D15 /* BugsnagSessionTracker.h */; settings = {ATTRIBUTES = (Project, ); }; }; EA0FBF913FD0E76C393BC35D6CF6F339 /* SysUio.h in Headers */ = {isa = PBXBuildFile; fileRef = 76328581CF6F60674D9292C4EC0DCE3F /* SysUio.h */; settings = {ATTRIBUTES = (Project, ); }; }; EA1177A39135D58784EC37A4E968A7C4 /* SKButtonDescriptor.mm in Sources */ = {isa = PBXBuildFile; fileRef = 4E8C8594A79A3396703CAEB947C0E080 /* 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 = AA7CF873064A7554B34BAC6A3F9E7DEB /* UnboundedQueue.h */; settings = {ATTRIBUTES = (Project, ); }; }; - EA4E9E8232435EE430E8A5864860B289 /* UIImage+ForceDecode.h in Headers */ = {isa = PBXBuildFile; fileRef = C8896265D038C4A8BC58E1851B938227 /* UIImage+ForceDecode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - EA6CE73D410804EC6E57F5220D5163D2 /* RCTTrackingAnimatedNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 87A15D379D5A6FF0CA7347DCFDE9F8DD /* 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 = 580F6E5E1D33658F91C91269E63E48B8 /* 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 = DC07F7F25F7586236F6C78AE12515F9F /* SpinLock.h */; settings = {ATTRIBUTES = (Project, ); }; }; - EA87C832CF6E91F3233B9E41993D100D /* UIImage+Resize.m in Sources */ = {isa = PBXBuildFile; fileRef = B53AA8B5C803FAFC7AB1D0090127D684 /* UIImage+Resize.m */; }; + EA87C832CF6E91F3233B9E41993D100D /* UIImage+Resize.m in Sources */ = {isa = PBXBuildFile; fileRef = DB1CBA66AF986F90E2BF03987ED44F69 /* UIImage+Resize.m */; }; EAA2B4C60F7BDB41A80308A76A4D9848 /* FlipperStateUpdateListener.h in Headers */ = {isa = PBXBuildFile; fileRef = 892713889486EA2800AA0E9C659FEF2C /* FlipperStateUpdateListener.h */; settings = {ATTRIBUTES = (Project, ); }; }; EABBB15709D35D5F8EA21BC4880847C9 /* UICollectionView+SKInvalidation.h in Headers */ = {isa = PBXBuildFile; fileRef = 861E52E0F513A697B05B52BAB1712F11 /* UICollectionView+SKInvalidation.h */; settings = {ATTRIBUTES = (Project, ); }; }; EABEB2DE7ADB678B7E0DCFFBB64EA5F5 /* AtFork.h in Headers */ = {isa = PBXBuildFile; fileRef = 7C0E589628171911A1111FDFEA643A78 /* AtFork.h */; settings = {ATTRIBUTES = (Project, ); }; }; EAC3C6074678F577E47481233D845A7F /* OpenSSLVersionFinder.h in Headers */ = {isa = PBXBuildFile; fileRef = CF73B714894B60C06E72E372750D3331 /* OpenSSLVersionFinder.h */; settings = {ATTRIBUTES = (Project, ); }; }; - EAE7EB64A517307EEDACB23392569599 /* BSG_KSCrashSentry_MachException.c in Sources */ = {isa = PBXBuildFile; fileRef = 902655D099DB95E0ABE2787457DD2742 /* BSG_KSCrashSentry_MachException.c */; }; - EB15609268E86B4D0F86331DBA9B9028 /* REABezierNode.m in Sources */ = {isa = PBXBuildFile; fileRef = FC173FDB05B7BEFFF5A3A8234F36C097 /* REABezierNode.m */; }; - EB25A6FBE311C5DDA2C62825FC450926 /* FBReactNativeSpec.h in Headers */ = {isa = PBXBuildFile; fileRef = F01F18AEA282CB9E34DD14D19C2D63A1 /* FBReactNativeSpec.h */; settings = {ATTRIBUTES = (Project, ); }; }; + EAE7EB64A517307EEDACB23392569599 /* BSG_KSCrashSentry_MachException.c in Sources */ = {isa = PBXBuildFile; fileRef = 1A268979E01721FDB835889EC1A77B28 /* BSG_KSCrashSentry_MachException.c */; }; + EB15609268E86B4D0F86331DBA9B9028 /* REABezierNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 828360F2C5EBD150D6C1422C8205CFE7 /* REABezierNode.m */; }; + EB25A6FBE311C5DDA2C62825FC450926 /* FBReactNativeSpec.h in Headers */ = {isa = PBXBuildFile; fileRef = C6DEBA0649BC2A802F9FBEB21DBB6DE5 /* FBReactNativeSpec.h */; settings = {ATTRIBUTES = (Project, ); }; }; EB2C44784270DFBA3B582FB79FB0B4CA /* alpha_processing_mips_dsp_r2.c in Sources */ = {isa = PBXBuildFile; fileRef = 1697E071BD485DD567399534761FB4C2 /* alpha_processing_mips_dsp_r2.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; EB3971376915EF8F6758C39F0A90EF35 /* GULReachabilityChecker.h in Headers */ = {isa = PBXBuildFile; fileRef = BBE5EFCABEB336804CDA1C119FB28B51 /* GULReachabilityChecker.h */; settings = {ATTRIBUTES = (Project, ); }; }; - EBA79B0AE533BE87BCF47925BEEF5A58 /* RNGestureHandlerEvents.m in Sources */ = {isa = PBXBuildFile; fileRef = AB19388EE5EB2981E1C9A9DF67E6FF9C /* RNGestureHandlerEvents.m */; }; - EBA878971E9F0642C4A9BB01CC1CF5CF /* EXKeepAwake.m in Sources */ = {isa = PBXBuildFile; fileRef = B9FB1155EF84D6AC90960986987D4C56 /* EXKeepAwake.m */; }; + EBA79B0AE533BE87BCF47925BEEF5A58 /* RNGestureHandlerEvents.m in Sources */ = {isa = PBXBuildFile; fileRef = D400D934A2849471466218B8F60D46C6 /* RNGestureHandlerEvents.m */; }; + EBA878971E9F0642C4A9BB01CC1CF5CF /* EXKeepAwake.m in Sources */ = {isa = PBXBuildFile; fileRef = 01CAEC0CCF45F48DFFB7270BDEEE1EB7 /* EXKeepAwake.m */; }; EBB0B32AE8A9FE7267668D1F2DF10CE4 /* FramedReader.h in Headers */ = {isa = PBXBuildFile; fileRef = DB7324CC6440821330D5AB267227CF47 /* FramedReader.h */; settings = {ATTRIBUTES = (Project, ); }; }; - EBC0F9270448ECBF6E1A9B635E245FD0 /* RCTMaskedView.m in Sources */ = {isa = PBXBuildFile; fileRef = 756E6084FBDF051F9DC7F4553649C4B0 /* 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 = A63CE8D3C5D5A13906556F9595209227 /* 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 = 2CA6F654F7CF1E6F99A19DC2E57C9CC2 /* pb_decode.h */; settings = {ATTRIBUTES = (Project, ); }; }; EBEB8E966F0000E5B9996ECAAA718A72 /* fa-IR.lproj in Resources */ = {isa = PBXBuildFile; fileRef = 123D42F2364ADFC74FCB4B75098452B2 /* fa-IR.lproj */; }; - EBFD540945522362ECEE6BE93F273482 /* RNFirebaseAdMobBannerManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 066FD3A91B0F1517F1463DB5F7CABA38 /* RNFirebaseAdMobBannerManager.m */; }; + EBFD540945522362ECEE6BE93F273482 /* RNFirebaseAdMobBannerManager.m in Sources */ = {isa = PBXBuildFile; fileRef = FB1D49F917FE2E2982946838B08AA1AC /* RNFirebaseAdMobBannerManager.m */; }; EC60D5885663C26EC9E47C3CBEC60DF1 /* Sockets.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3ED322C4DA7FFE66A84B029B0A0F8B14 /* 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 = 2ADFFB1471FE2E15D6E606ADFC40A14E /* GULSceneDelegateSwizzler.h */; settings = {ATTRIBUTES = (Project, ); }; }; - EC6FEA75CC5E02F4EC760C49A764BF56 /* REAStyleNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 4AD6C8ED2DA49566A7EF6CBB775EA267 /* REAStyleNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + EC6FEA75CC5E02F4EC760C49A764BF56 /* REAStyleNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 3D88C1D1AB6DDE903F51E028CAA6D0A5 /* REAStyleNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; EC90A4E51EF3B2F0B3EBC17E4880A9C2 /* SetupResumeAcceptor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D9105437915529F5B93662FFE4F8C5AB /* 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 = DA2BF1C1B987C3DE8074663DD5C69C64 /* 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 = 02C81FEA3987E502AC2FE0D8F1CA6DE2 /* RCTScrollContentViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + ECBA10F950524D80B5078713F5AD858F /* RCTScrollContentViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = ADE2CC5B996CC3ACF2BFCB35026C18EA /* RCTScrollContentViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; ED241C44D1BE21C144A33B37AD586BD7 /* EventHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 89AB6E474FACC815694CD925415864A5 /* EventHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; ED368130DB855003BACEA28F8A340D7A /* OpenSSLPtrTypes.h in Headers */ = {isa = PBXBuildFile; fileRef = CD130C92244E30DD5B03966D954ABBA4 /* OpenSSLPtrTypes.h */; settings = {ATTRIBUTES = (Project, ); }; }; - ED429D2623150E0DB78AE2FF534E555D /* BSG_KSBacktrace.c in Sources */ = {isa = PBXBuildFile; fileRef = 17BF13DD148057E6199EEF5D184DF394 /* BSG_KSBacktrace.c */; }; + ED429D2623150E0DB78AE2FF534E555D /* BSG_KSBacktrace.c in Sources */ = {isa = PBXBuildFile; fileRef = 0E9656B6E38543AFA92FD375694AA063 /* BSG_KSBacktrace.c */; }; ED62691B003B2C54B15DD706EBD7FA6B /* histogram_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = 233894ECB8BBAA48D27FF8FFCE1B143F /* histogram_enc.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; ED95751FEA58215AFA04947C656EF88D /* ColdResumeHandler.cpp in Sources */ = {isa = PBXBuildFile; fileRef = E790B8EA7C4CAC702EAFB5FC27534D19 /* 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 = D9274FD89581B52AE591700F394D0E7A /* SDImageLoadersManager.m */; }; + EDC979A9D849201D6DBC483E8B92354A /* UIColor+SDHexString.h in Headers */ = {isa = PBXBuildFile; fileRef = 771BFFF07D9F4769D5A8B659E9E01666 /* UIColor+SDHexString.h */; settings = {ATTRIBUTES = (Project, ); }; }; + EDD81D5D065ECC3489D1E01E230664E5 /* SDImageLoadersManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 370BF6933A1D93E0D3E88C028131E57F /* SDImageLoadersManager.m */; }; EDDC688091DA36B599E3070AF38C8E58 /* SKScrollViewDescriptor.h in Headers */ = {isa = PBXBuildFile; fileRef = EA0396D3F432432F9B9F518FCADFBED3 /* SKScrollViewDescriptor.h */; settings = {ATTRIBUTES = (Project, ); }; }; - EE12DC119553B31EDCD3458F6E314E08 /* RCTActivityIndicatorViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = AF9C9C70D76802E90418693DC909EBB5 /* 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 = 3DDECD684136C17D1282F66070325249 /* 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 = C2C3BA5452DF3C79CF3586FD7F42D79F /* demangle.cc */; settings = {COMPILER_FLAGS = "-Wno-shorten-64-to-32"; }; }; EE545CCD58E4A2E2390092397FF90035 /* DestructorCheck.h in Headers */ = {isa = PBXBuildFile; fileRef = AD1783DEF94BD003B7142CE78AEC498B /* DestructorCheck.h */; settings = {ATTRIBUTES = (Project, ); }; }; EE7F301F7EB3117BC1E77E72245E3FDA /* Sse.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D0C2BF3F5C45A731E60EC8AFB9F98F12 /* 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 = 3BFC378E35DFD38F87AC7213983ACA3F /* 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 = D674B7043399AE923A8080EB3E0DD7B3 /* RCTBackedTextInputViewProtocol.h */; settings = {ATTRIBUTES = (Project, ); }; }; + EEC8F25A4CD8C7F41690C1DBFE4D31D4 /* RCTBackedTextInputViewProtocol.h in Headers */ = {isa = PBXBuildFile; fileRef = 94026BAA4E4E9401D51BCAF032C4F65E /* RCTBackedTextInputViewProtocol.h */; settings = {ATTRIBUTES = (Project, ); }; }; EECE8417F87A642504A215B21A1BD894 /* Malloc.h in Headers */ = {isa = PBXBuildFile; fileRef = 255BCEE432582E3F2C689BDA7BE538E4 /* Malloc.h */; settings = {ATTRIBUTES = (Project, ); }; }; EEEE7946609F4EB86E6A6971970E1A7C /* DistributedMutexSpecializations.h in Headers */ = {isa = PBXBuildFile; fileRef = 02057BFC1C42DD60C7390331C635D854 /* DistributedMutexSpecializations.h */; settings = {ATTRIBUTES = (Project, ); }; }; EEF97C679BEE5F2A9C7F7D95720C9AF6 /* lossless_enc_msa.c in Sources */ = {isa = PBXBuildFile; fileRef = 631F1241AC9687C84BEA7F2B9A6BB421 /* lossless_enc_msa.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; @@ -2951,185 +2957,180 @@ EF627458DF9DF92352237F2364F8D8B7 /* FIRCoreDiagnostics.m in Sources */ = {isa = PBXBuildFile; fileRef = BDC43C756C3C42122F1233A36382BFD4 /* FIRCoreDiagnostics.m */; }; EF6ED61C297982CF31DF19548C24548C /* FIRAppInternal.h in Headers */ = {isa = PBXBuildFile; fileRef = 8D4CDCA061F91341EAB5C84F1240915D /* FIRAppInternal.h */; settings = {ATTRIBUTES = (Project, ); }; }; EF78A78AAD79DFDE72D424FF8F35DB23 /* GlobalExecutor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = AFB017F3173CA155D67E4F2D5C68D4E9 /* 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 = 874E66AD127D6AABA1479A242A5DF47A /* SDGraphicsImageRenderer.h */; settings = {ATTRIBUTES = (Project, ); }; }; - EF8E20FC60FEDE81B71F5AE86978AACA /* RCTSurfaceRootShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = 578E76A091CE645BF475F243B3511735 /* RCTSurfaceRootShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + EF8E20FC60FEDE81B71F5AE86978AACA /* RCTSurfaceRootShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = 4E5616F0EB35B1DF2940951F0F7B92CE /* RCTSurfaceRootShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; EFD68E385A78185DD955ABACB421ED01 /* MapUtil.h in Headers */ = {isa = PBXBuildFile; fileRef = 48EF4C8B5B8E6AC7B3B8A8E4EC37313B /* MapUtil.h */; settings = {ATTRIBUTES = (Project, ); }; }; - EFDA25149EA9A68F536F11701E46BDA4 /* UIView+React.h in Headers */ = {isa = PBXBuildFile; fileRef = 60124DCD1F20F3DFE9902D3F831F0CFA /* UIView+React.h */; settings = {ATTRIBUTES = (Project, ); }; }; + EFDA25149EA9A68F536F11701E46BDA4 /* UIView+React.h in Headers */ = {isa = PBXBuildFile; fileRef = 5A97357E1BB30BEA08AA2A2D702C5EE3 /* UIView+React.h */; settings = {ATTRIBUTES = (Project, ); }; }; EFDDDA86D58A5A3B5A5C52CD2E4684D8 /* random_utils.h in Headers */ = {isa = PBXBuildFile; fileRef = 3BADE06D6084A945F5CA9C74E12346D3 /* random_utils.h */; settings = {ATTRIBUTES = (Project, ); }; }; - EFFA7E6647BD21D78B6DAF725C5E62E5 /* SDWeakProxy.h in Headers */ = {isa = PBXBuildFile; fileRef = 393A3EC9791AAD4CA73A390DC97CBD6A /* SDWeakProxy.h */; settings = {ATTRIBUTES = (Project, ); }; }; EFFF616FD9B0B9494F7242A085F23A95 /* NotificationQueue.h in Headers */ = {isa = PBXBuildFile; fileRef = 0E90ABA43547076CF75FFE95114B3CD8 /* NotificationQueue.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F01494E1D98DEC7F2602E362E9CDD818 /* RCTRootContentView.h in Headers */ = {isa = PBXBuildFile; fileRef = EA772201825DCD0D0BD240A7017BAF9F /* RCTRootContentView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F01494E1D98DEC7F2602E362E9CDD818 /* RCTRootContentView.h in Headers */ = {isa = PBXBuildFile; fileRef = 1989F090528758E27F7161706F8B361A /* RCTRootContentView.h */; settings = {ATTRIBUTES = (Project, ); }; }; F026131495373C5DE569B201034D9101 /* cost_mips32.c in Sources */ = {isa = PBXBuildFile; fileRef = 7AC126BC129D538B800F33EC28D5D75A /* cost_mips32.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; F029DBE2241C707F43B4AEF3919C8C0C /* NestedCommandLineApp.h in Headers */ = {isa = PBXBuildFile; fileRef = 108FFC228C1812512805FE28F3585E1A /* NestedCommandLineApp.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F02C80E50A42C5C5D22B26EC7C971239 /* RNPinchHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = B345A3B464A66FC1F84CD8C067A5243E /* RNPinchHandler.m */; }; + F02C80E50A42C5C5D22B26EC7C971239 /* RNPinchHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = 57E822B1A9FA7DC3935F090255E3FE1C /* RNPinchHandler.m */; }; F062B79236AA526A32FA60C8582C91A7 /* AtFork.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FFBD976BE791AD9DDF1BC7B789CF0041 /* 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 = 7B755882455E18414CD2AF4E615548B3 /* SDImageHEICCoder.m */; }; + F06D028A6F88B5E5C99E9486691C1816 /* SDImageHEICCoder.m in Sources */ = {isa = PBXBuildFile; fileRef = 5645770560E1721D6A2068A2709B5B7F /* SDImageHEICCoder.m */; }; F089F83DA2C72E81AD2B58C6535A6626 /* Executor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1A5652151D82DE56E6CE3D4428217CE5 /* 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"; }; }; - F08E1F3162FAE93CE66909E4583887AB /* SDImageGraphics.h in Headers */ = {isa = PBXBuildFile; fileRef = EFBD4A456ED89497B04A66A5DFD19923 /* SDImageGraphics.h */; settings = {ATTRIBUTES = (Project, ); }; }; F0A43A4B163BF7CDF1684938F768C1D5 /* Synchronized.h in Headers */ = {isa = PBXBuildFile; fileRef = 64DD08219E980D9E770DFBC6257F8F08 /* Synchronized.h */; settings = {ATTRIBUTES = (Project, ); }; }; F0F6A3B9FC5593A2B135B3C15359DC36 /* GDTCCTCompressionHelper.h in Headers */ = {isa = PBXBuildFile; fileRef = A87DE3CF8DDFDB1D63FA6F3678C624F8 /* GDTCCTCompressionHelper.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F1077AB8D86DD9D6C3C84F7EB71B01FD /* SDWebImageCacheKeyFilter.m in Sources */ = {isa = PBXBuildFile; fileRef = A4A38F32B082EE0D0EA4116F164EDFCA /* SDWebImageCacheKeyFilter.m */; }; + F1077AB8D86DD9D6C3C84F7EB71B01FD /* SDWebImageCacheKeyFilter.m in Sources */ = {isa = PBXBuildFile; fileRef = 791EF85493741457ADCCC411F079EED5 /* SDWebImageCacheKeyFilter.m */; }; F1270B3BF10D921BCFC9023E8D24D71D /* LockFreeRingBuffer.h in Headers */ = {isa = PBXBuildFile; fileRef = 3B986BC6E10518C6271D2246B808BA2A /* LockFreeRingBuffer.h */; settings = {ATTRIBUTES = (Project, ); }; }; F128E5421AFDD733B6EA5E6DC0BDBBBF /* dec_sse41.c in Sources */ = {isa = PBXBuildFile; fileRef = 7A7C6D8E16697B9813BEB8DE1975BA7E /* dec_sse41.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; F13D5204BA38F81E8AABCCEEFF2EBB49 /* EventBaseThread.h in Headers */ = {isa = PBXBuildFile; fileRef = CA3941A14A20F28719058AA8F389EEDC /* EventBaseThread.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F15168851413744B3EF7AADCD0B323B2 /* RCTMacros.h in Headers */ = {isa = PBXBuildFile; fileRef = D464809C3C3854D1F9775A805FC36A2C /* RCTMacros.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F15C77BBB508B9EE00B7C25733685310 /* NSTextStorage+FontScaling.h in Headers */ = {isa = PBXBuildFile; fileRef = 16BEFE6A5F51633D8AE6553FDE7F2B38 /* NSTextStorage+FontScaling.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F14AEB46631F4B9EE89D67F568E6713F /* SDWebImagePrefetcher.h in Headers */ = {isa = PBXBuildFile; fileRef = E69F73F0F050189060AEDD9232B2CAFD /* SDWebImagePrefetcher.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F15168851413744B3EF7AADCD0B323B2 /* RCTMacros.h in Headers */ = {isa = PBXBuildFile; fileRef = A7D84183EF4181F8322902ED969165C0 /* RCTMacros.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F15C77BBB508B9EE00B7C25733685310 /* NSTextStorage+FontScaling.h in Headers */ = {isa = PBXBuildFile; fileRef = C676779F45FF6BC42177BCB13DF550B3 /* NSTextStorage+FontScaling.h */; settings = {ATTRIBUTES = (Project, ); }; }; F15DE35EBA4CB4B476438C0692A0950A /* FIRHeartbeatInfo.m in Sources */ = {isa = PBXBuildFile; fileRef = CD69B1BA273ECED47476DB724711B422 /* FIRHeartbeatInfo.m */; }; F161334CFD6395BBE0856CEBF4DE186B /* WaitOptions.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B5E4040453D8C7A7AD4D19C06C47AF6B /* 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 = 5857793AC1B20D235A93893B55D4E024 /* vp8_dec.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F1D29EEE977196CF2060E83F8D6DC9F4 /* ARTSolidColor.h in Headers */ = {isa = PBXBuildFile; fileRef = 86E393A367FE82ABC7B17ECBE2B0B1E2 /* ARTSolidColor.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F1D29EEE977196CF2060E83F8D6DC9F4 /* ARTSolidColor.h in Headers */ = {isa = PBXBuildFile; fileRef = 77A8132F5B05840EEA012A5B0835CD43 /* ARTSolidColor.h */; settings = {ATTRIBUTES = (Project, ); }; }; F1D8204CAEC154C28A303A0B0E0D8B7A /* TimeoutManager.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3CF20FC977818063C4962F1A51D72E83 /* 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 = 8D12E7F5CECBA2EC6D11887658B661A2 /* EXVideoView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F1E9F4F61494F37A09D095B3675E4A8F /* RCTAnimatedNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 1B2948ABDB21DABAE59D9D6DFF951012 /* RCTAnimatedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F20C9E3E4D0BE9C8724AFD7556F663C8 /* RCTConstants.h in Headers */ = {isa = PBXBuildFile; fileRef = 0A0CD1151988E642F6763E1E0FEBC062 /* RCTConstants.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F232397B38A23317C4A05F4975207C25 /* BugsnagFileStore.m in Sources */ = {isa = PBXBuildFile; fileRef = F48F0353F4F7EE6357B920EF17DCE593 /* BugsnagFileStore.m */; }; - F242BAB0E83DD4405CC1FCE0D2D9B7BA /* RNCWKProcessPoolManager.m in Sources */ = {isa = PBXBuildFile; fileRef = E282F321953E292EEE8FEE03D7E56028 /* RNCWKProcessPoolManager.m */; }; - F252EE542CF5FAC448CADE1D81F56DF6 /* RCTCustomKeyboardViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 4CAE3FAD576DFEF9531504E3694317A5 /* RCTCustomKeyboardViewController.m */; }; + F1E1333AEA9A20A7D09582045666A987 /* EXVideoView.h in Headers */ = {isa = PBXBuildFile; fileRef = 94D5B38B9DB2B6F88C585A961A08DA72 /* EXVideoView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F1E9F4F61494F37A09D095B3675E4A8F /* RCTAnimatedNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 54929942CD3B304BCBACED3577A551D5 /* RCTAnimatedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F20C9E3E4D0BE9C8724AFD7556F663C8 /* RCTConstants.h in Headers */ = {isa = PBXBuildFile; fileRef = 73C5B2ACE4F0154BAB393D453FC8E258 /* RCTConstants.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F232397B38A23317C4A05F4975207C25 /* BugsnagFileStore.m in Sources */ = {isa = PBXBuildFile; fileRef = C8372AC96207D4A27A40EE1FA0BC8EEC /* BugsnagFileStore.m */; }; + F242BAB0E83DD4405CC1FCE0D2D9B7BA /* RNCWKProcessPoolManager.m in Sources */ = {isa = PBXBuildFile; fileRef = C367AE07D1F067F9C856D65ECF9B89FC /* RNCWKProcessPoolManager.m */; }; + F252EE542CF5FAC448CADE1D81F56DF6 /* RCTCustomKeyboardViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 4ACA0D1B0261A4F4E5C355640D74D97F /* RCTCustomKeyboardViewController.m */; }; F255767A43EB01B5324B1B7536288503 /* AtomicHashUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = F7EDC18F664B0FDA4C2400EB74F4144F /* AtomicHashUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; F25A24D58F9DB18D19FA4AF42B7466B0 /* FIRInstallationsSingleOperationPromiseCache.m in Sources */ = {isa = PBXBuildFile; fileRef = 1F169A2F5C7C92F36CCF25CEF693D9EB /* FIRInstallationsSingleOperationPromiseCache.m */; }; - F262E5F995D10548509FDF5E5834B607 /* RCTAnimationPlugins.mm in Sources */ = {isa = PBXBuildFile; fileRef = C1A63DDB109BA4203505D76411BFC8F3 /* 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 = E1B54E64A0E9F806D85B7AA1EDA7F1CF /* 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 = 675B3C63734646BDAEB1A3033BC02E0B /* strtod.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F272955FEB837F77CA7044A8841831DB /* SDAnimatedImagePlayer.h in Headers */ = {isa = PBXBuildFile; fileRef = 1DAE28EC73109D44B9C46C23181E60BC /* SDAnimatedImagePlayer.h */; settings = {ATTRIBUTES = (Project, ); }; }; F2A8DA1AC957383ED61BC129CBFEE9AE /* fast-dtoa.cc in Sources */ = {isa = PBXBuildFile; fileRef = E656F2916FF54534E4646F7D2B1C5400 /* fast-dtoa.cc */; settings = {COMPILER_FLAGS = "-Wno-unreachable-code"; }; }; - F2C1EAB86A623FD0E3AE7D85B984C89E /* RCTBaseTextViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 77B684152044F95724A69EDE979113A0 /* RCTBaseTextViewManager.m */; }; - F2DC4D68D95807B1FAB1279790CB7918 /* RNTapHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = 25F57D1BC4A85048563BB3D7FD14366B /* RNTapHandler.m */; }; - F2F6974CB2911E6E418367E261E1CB4A /* UMReactNativeAdapter.h in Headers */ = {isa = PBXBuildFile; fileRef = BB81AFF45CB95797F486992B1E8100EA /* UMReactNativeAdapter.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F2C1EAB86A623FD0E3AE7D85B984C89E /* RCTBaseTextViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = FAF75F2BC4C588B84E1F34EBC56716E7 /* RCTBaseTextViewManager.m */; }; + F2DC4D68D95807B1FAB1279790CB7918 /* RNTapHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = 802DED528A3120C56B740F3E6778385B /* RNTapHandler.m */; }; + F2F6974CB2911E6E418367E261E1CB4A /* UMReactNativeAdapter.h in Headers */ = {isa = PBXBuildFile; fileRef = E484C17206B331EDA9C9BFDA944A5385 /* UMReactNativeAdapter.h */; settings = {ATTRIBUTES = (Project, ); }; }; F32F2C636023C27F22172F64D4D1936D /* EventUtil.h in Headers */ = {isa = PBXBuildFile; fileRef = C8DD038465A9BEFEA0B2B73AB0D535AA /* EventUtil.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F3636AAE48C74951140FBFEF7AD11D19 /* RCTValueAnimatedNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 2DB92C8FC3FC92540D11087C99286E40 /* RCTValueAnimatedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F3636AAE48C74951140FBFEF7AD11D19 /* RCTValueAnimatedNode.h in Headers */ = {isa = PBXBuildFile; fileRef = B8213C1146F242DC3EF093DFBB0A945E /* RCTValueAnimatedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; F3A009B81FF8A92B347826968ED9AF1E /* demux.c in Sources */ = {isa = PBXBuildFile; fileRef = 830FD88C94F259C1A38BAE2C9E877464 /* demux.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; F3B34CBCC961EF36E3ACA1228C478F39 /* FlipperConnectionManager.h in Headers */ = {isa = PBXBuildFile; fileRef = D5F7BCB867E244067BE6D14F9FAFFAB1 /* FlipperConnectionManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; F3B80E2B758010DEDA95D8CD4B00CB84 /* OpenSSL.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 4F0E80F5B80651483B200226F1AC7F0C /* 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"; }; }; F3C03C6D0A470FA009D6AE2B42CFA79D /* Fcntl.h in Headers */ = {isa = PBXBuildFile; fileRef = A5B7013E4DAFADF0380625AF4FB5EDF9 /* Fcntl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F40D4C45C56E709102FC28245D674082 /* SDInternalMacros.m in Sources */ = {isa = PBXBuildFile; fileRef = 9FCAF078C3CB21E5E988A1FA178661F2 /* SDInternalMacros.m */; }; + F40D4C45C56E709102FC28245D674082 /* SDInternalMacros.m in Sources */ = {isa = PBXBuildFile; fileRef = 801B6580E775822080DE883164D5DBAE /* SDInternalMacros.m */; }; F4227A5A22C299DB2F673D8875C42BAD /* picture_psnr_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = 96DFA5E6B7BD7B64B68398EF8B746DB5 /* picture_psnr_enc.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; F42591F023436E2D251408E0F6DC9E9F /* GTest.h in Headers */ = {isa = PBXBuildFile; fileRef = C7DC09936FA681FD6534B67D460E6377 /* GTest.h */; settings = {ATTRIBUTES = (Project, ); }; }; F43EF5DB5AC2D8D783DCCDD92DEF2232 /* HHWheelTimer-fwd.h in Headers */ = {isa = PBXBuildFile; fileRef = EB99404986864F2D05D2FC2B60B4B753 /* HHWheelTimer-fwd.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F458466F3BF75C1058975EECD1F9FD6D /* MessageQueueThread.h in Headers */ = {isa = PBXBuildFile; fileRef = A6635C4C480B1A9D8C117CA1FCC87D13 /* MessageQueueThread.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F489673F5E89F0C8C8621528F0F3BD78 /* RCTSurface.mm in Sources */ = {isa = PBXBuildFile; fileRef = 95F07232DD6C43A691C9B7768164DA05 /* 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 = A6D148BA049F78A1798D79165B0A7455 /* MessageQueueThread.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F489673F5E89F0C8C8621528F0F3BD78 /* RCTSurface.mm in Sources */ = {isa = PBXBuildFile; fileRef = 56D1AA8F50179674979BBEC1A3F9AE6A /* 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 = 01317DD0FBC67A8D7591529633AF3EC2 /* 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 = 3A14A135D0D1EBAB15A05123FDC4C6BD /* ColdResumeHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; F49F1B5A4B1DA201D133771E9923D648 /* webp_dec.c in Sources */ = {isa = PBXBuildFile; fileRef = A27CB91DABE5DA552B926FF662C52DD2 /* webp_dec.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - F4A5AF62639EE12B25A134CC761AE115 /* RCTSourceCode.h in Headers */ = {isa = PBXBuildFile; fileRef = E86A3DEE59098AEA0F18200A1B624959 /* RCTSourceCode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F4A5AF62639EE12B25A134CC761AE115 /* RCTSourceCode.h in Headers */ = {isa = PBXBuildFile; fileRef = F788F960F2FE8AE7C3E9DF1D29939E78 /* RCTSourceCode.h */; settings = {ATTRIBUTES = (Project, ); }; }; F4E86361F0A277D41AF92EEC1D515841 /* FIRInstallationsSingleOperationPromiseCache.h in Headers */ = {isa = PBXBuildFile; fileRef = C597DD708F8111E3F8A0C470DFC62F00 /* FIRInstallationsSingleOperationPromiseCache.h */; settings = {ATTRIBUTES = (Project, ); }; }; F4F2AD90553CB120BC682940433493B8 /* lossless.h in Headers */ = {isa = PBXBuildFile; fileRef = 47870AF521D3DC75A055CAC41A8A11D3 /* lossless.h */; settings = {ATTRIBUTES = (Project, ); }; }; F4FA192DF8E95C26C55DAC65EE6B310F /* EmitterFlowable.h in Headers */ = {isa = PBXBuildFile; fileRef = D1D081B8E8C632A44F45A426E3345E74 /* EmitterFlowable.h */; settings = {ATTRIBUTES = (Project, ); }; }; F506CCC7C34A049D1253C979B7807514 /* SKNetworkReporter.h in Headers */ = {isa = PBXBuildFile; fileRef = C189539BA2A4A2E7C6039B950C1B63FC /* SKNetworkReporter.h */; settings = {ATTRIBUTES = (Project, ); }; }; F5106A9D245E7C593DA00BD467654ADF /* Chrono.h in Headers */ = {isa = PBXBuildFile; fileRef = 6B49F4886F558A20270FB1B28A61A7F2 /* Chrono.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F518CDF6FC7F5085F4C33D36E71E6B35 /* RNCAppearance.h in Headers */ = {isa = PBXBuildFile; fileRef = EC9F9FB50FE02D6165060C3BB45997DD /* RNCAppearance.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F518CDF6FC7F5085F4C33D36E71E6B35 /* RNCAppearance.h in Headers */ = {isa = PBXBuildFile; fileRef = B836EF8DCDD813AF20196405111B4CFB /* RNCAppearance.h */; settings = {ATTRIBUTES = (Project, ); }; }; F52336859BB9F756E055C93AE2968A87 /* TOCropView.h in Headers */ = {isa = PBXBuildFile; fileRef = 6F1ECE604E7ADB398D87DEC9A211AF72 /* TOCropView.h */; settings = {ATTRIBUTES = (Project, ); }; }; F5292BB5CF2C799435F4B1E53237DFA4 /* CString.h in Headers */ = {isa = PBXBuildFile; fileRef = 5210F187C4D7354884092134D73C6EB0 /* CString.h */; settings = {ATTRIBUTES = (Project, ); }; }; F555F8C238747A97FF295FA277B84567 /* lossless_common.h in Headers */ = {isa = PBXBuildFile; fileRef = 75CAF893E56A3E68A2D0CE06985393DF /* lossless_common.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F5569D7601768A0E8A97A9EDE6CCE8E0 /* RNNotificationsStore.m in Sources */ = {isa = PBXBuildFile; fileRef = 22E30478C4160A8365B501CC0D700C84 /* RNNotificationsStore.m */; }; + F5569D7601768A0E8A97A9EDE6CCE8E0 /* RNNotificationsStore.m in Sources */ = {isa = PBXBuildFile; fileRef = 467975DF49FA8AE7AFE680622496B593 /* RNNotificationsStore.m */; }; F557D614321C8F93BE3F898A9BCAA82A /* ParkingLot.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 23FBFEF2ED0201D52F50C20C8BFE4A8B /* 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"; }; }; F5978CC4D77598D1A49F9D24FA00C184 /* EventCount.h in Headers */ = {isa = PBXBuildFile; fileRef = 8919BF37BBF0ED23EB9EF0C3029F1AA1 /* EventCount.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F5BC03175EE7232A1912FE3CDDCD970A /* QBVideoIndicatorView.m in Sources */ = {isa = PBXBuildFile; fileRef = B93E931A811386F363040FE7E7792B66 /* QBVideoIndicatorView.m */; }; - F5E977F9F31FB31665D9BB76A04FFF46 /* UIImage+Transform.h in Headers */ = {isa = PBXBuildFile; fileRef = 7DBB41E2265A85A4A5A23B38A7B6E88E /* UIImage+Transform.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F5BC03175EE7232A1912FE3CDDCD970A /* QBVideoIndicatorView.m in Sources */ = {isa = PBXBuildFile; fileRef = 91D4639CCF8AA8BFAE1C6D04362F0DBD /* QBVideoIndicatorView.m */; }; F6086ADBCBE0EF97E2FEAD8C5415439D /* MemoryIdler.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 14B3C2BFC1E0AFF93FB0ACAF2513E787 /* 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 = 501080DAE21711CE6E8FADCE54B0D5D5 /* UIColor+SDHexString.m */; }; - F629573D9A6915E4B81534F7AEFF6C94 /* BugsnagConfiguration.m in Sources */ = {isa = PBXBuildFile; fileRef = 2D64575D372A7F5A5C6B1E7CAA66CD49 /* BugsnagConfiguration.m */; }; - F64B30462C3E89F7E2EF6BB6F90F0B57 /* BugsnagHandledState.m in Sources */ = {isa = PBXBuildFile; fileRef = 2D8409785A38DCC8B6E9EFC8DDF80F5E /* BugsnagHandledState.m */; }; + F60BE74EC0CAAE86DF95B244A4C5151B /* UIColor+SDHexString.m in Sources */ = {isa = PBXBuildFile; fileRef = F37ECB64502A0D830FF2CF8F85A68B42 /* UIColor+SDHexString.m */; }; + F629573D9A6915E4B81534F7AEFF6C94 /* BugsnagConfiguration.m in Sources */ = {isa = PBXBuildFile; fileRef = 87C7E9F876B44CFB7BCD2DB3330F4511 /* BugsnagConfiguration.m */; }; + F64B30462C3E89F7E2EF6BB6F90F0B57 /* BugsnagHandledState.m in Sources */ = {isa = PBXBuildFile; fileRef = CF3FD070471CF5A9316F47805256A4F6 /* BugsnagHandledState.m */; }; F657530EEA9AC9426F2F7045A997234F /* Singleton.cpp in Sources */ = {isa = PBXBuildFile; fileRef = AC846AEF3261BACC05944DB052148106 /* 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 = 7E124D38A17FD4250EBC351A8C9F437C /* 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 = EC3D5971D31870ED99985B1E42FB92C8 /* 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 = ED89F458A2CA581F83FA7C1B223BFF63 /* GULUserDefaults.h */; settings = {ATTRIBUTES = (Project, ); }; }; F680A09D6874079978F4C5CAD3748BF4 /* fr.lproj in Resources */ = {isa = PBXBuildFile; fileRef = 9AF79998E78893179131B1D456AD4AB5 /* fr.lproj */; }; - F69B2A01BCC45CE52653888D2D954540 /* RCTDevLoadingView.h in Headers */ = {isa = PBXBuildFile; fileRef = FA9DD52D3ED759F100B2EDAFDF5E699C /* RCTDevLoadingView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F6CA15782A2C0C1E88AD0B2314B7655D /* TurboModule.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 0EF2C04C9FBCE8D759B215220D6D7AE3 /* 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 = A20E0FF6E32A8014393A252BE69DCB70 /* 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 = 82AE80253AFBC545D11E8DAD3CD5DCC8 /* RCTDevLoadingView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F6CA15782A2C0C1E88AD0B2314B7655D /* TurboModule.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 29B38072416B901FA476EE882CF93A28 /* 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 = 1756A88F6DBB44BAD5C3CAE0F5EB6FD3 /* 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 = 4F4C3DDEFA9C202FF1A5B1F8644FBA4D /* 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 = 59211E17E611B8A20CE3C0D35EB995C4 /* TLSDefinitions.h */; settings = {ATTRIBUTES = (Project, ); }; }; F714A528842E6AC83C6A9282ABE869CD /* Exception.h in Headers */ = {isa = PBXBuildFile; fileRef = 969742EA463838E22D79466329ED84EA /* Exception.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F718E29630F179BE5B516894C8601FBA /* RCTSinglelineTextInputViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = F7AE66658B6D58193498536A962DE0A1 /* RCTSinglelineTextInputViewManager.m */; }; + F718E29630F179BE5B516894C8601FBA /* RCTSinglelineTextInputViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = E47100F23244066B9AD6894496AC87A0 /* RCTSinglelineTextInputViewManager.m */; }; F75DC605FC8D1F7681541CE667AB7CB4 /* huffman_encode_utils.h in Headers */ = {isa = PBXBuildFile; fileRef = AC810F6424D64F2673FB3991806617EC /* huffman_encode_utils.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F76B9F350B7C4018D1A20BBAB9D61AEB /* RCTTouchEvent.h in Headers */ = {isa = PBXBuildFile; fileRef = 3DC4C8830B7C0D76E6F9DEF1FE64BC05 /* RCTTouchEvent.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F7792BF3636610713062788116665BF3 /* RNCSafeAreaViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 799C66ABBD581DDD88595D23EE45D9DD /* RNCSafeAreaViewManager.m */; }; - F78CCFD0E705F38836EC90A08A0D099E /* event.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D3E09970D79DFEC086D95A80EEF6D680 /* 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 = 7BFD569DDAA4E13A2C31FE824026A992 /* RCTTouchEvent.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F7792BF3636610713062788116665BF3 /* RNCSafeAreaViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 46D5095CD1417D745D56DE8A24297F6B /* RNCSafeAreaViewManager.m */; }; + F78CCFD0E705F38836EC90A08A0D099E /* event.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 13A02F286E0993491012177E63DC267A /* 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 = 4B571F3F029DD2D6D83D36652A5A26DE /* 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 = 7EA9E7E0A8E853CA0F94059F56F6E222 /* ScheduledFrameTransport.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F7957488A7E05B294D0FDCB86F08DE8B /* react-native-slider-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = B2AAE58A26E1DF2320BB3B2AD7277A1E /* react-native-slider-dummy.m */; }; - F7A599510F9FFC45C84600ECE6EB69A7 /* experiments.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 81AD6C487CCEAA0F5DAFF49CC9DDD9F9 /* 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 = E317F58825157FE70AF972818D4D8EBB /* react-native-slider-dummy.m */; }; + F7A599510F9FFC45C84600ECE6EB69A7 /* experiments.cpp in Sources */ = {isa = PBXBuildFile; fileRef = CC08FF1981C31A110913C70E1FDEEDFC /* 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 = 4EE50DF2753D29D083173EACF2387EAA /* syntax_enc.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; F7ACA0219D0817840C5BDC9A69E4BF5C /* Conv.cpp in Sources */ = {isa = PBXBuildFile; fileRef = CD35DEE35B20109018E8DAA45E5264E7 /* 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 = 2AB253740B78D4B6FC3BA8FB6859F65E /* BitIteratorDetail.h */; settings = {ATTRIBUTES = (Project, ); }; }; F83D6DC16A3DDE2C67D8E9F41EF111A9 /* yuv_mips32.c in Sources */ = {isa = PBXBuildFile; fileRef = A5465A0CACF72BF7759D145CF9FDB9F5 /* yuv_mips32.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; F868B0F2EB72D34861497F45B6754CFD /* CString.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 35E4046ECB7E16B188B82CD52EB5578C /* 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 = 223ECB752B780279A2762E33A0D366C0 /* 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 = CACF2B685B649906EB9892ADAC750941 /* 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 = E8D48D9E754A19671CCA6F4DCCC43B75 /* 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"; }; }; F8DB5DE2E38CD1A3156CE3DE8EDB3FB5 /* pt-BR.lproj in Resources */ = {isa = PBXBuildFile; fileRef = D0BB7E5B597F81C13326CDB06D9B74C7 /* pt-BR.lproj */; }; F8DF4276E3FB3B7C5B8439933EF119CF /* FLEXNetworkRecorder.mm in Sources */ = {isa = PBXBuildFile; fileRef = 13557C0B7A0B2B1C2F2818AEAF31F414 /* 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 = CC268622DF95F0EB5FF95B5D1027B2AD /* RCTBaseTextInputShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F91923107338828C1B57FC4D410102FD /* RCTBaseTextInputShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = 2C6F3978CA685DFEFB1773CCB1B9CE28 /* RCTBaseTextInputShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; F9231F6B75F9828C1E7E7BACA93EC40C /* CpuId.h in Headers */ = {isa = PBXBuildFile; fileRef = 5EB737C1B839F683C08D055F496DC54C /* CpuId.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F93061647B578E8C3199EE4628107A1E /* RCTImageViewManager.mm in Sources */ = {isa = PBXBuildFile; fileRef = 10BC9BB79CE745F5F7AA23B9ACEDFC2A /* 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 = FE5FB221275BC08195438E6A375AF4EB /* 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 = BC4A4DFD5C2B5E942C4C4F8D60E0C9FE /* MicroSpinLock.h */; settings = {ATTRIBUTES = (Project, ); }; }; F96192C5BD1E33227FEF89509259CDCF /* GULKeychainUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = 8E6373AA654AB7C0358CCE7BFE827109 /* GULKeychainUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F96D1655C792D82A40819E223055836E /* TurboCxxModule.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1D14771DAF845523B655DB9144C5891D /* 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 = 49065EA13CF906BAB7811E5CE8A95B97 /* 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 = 88F577B012AF7393F7179A8A5A123DAF /* ProxyLockable.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F99C6EF148A5F929C6714A10414821BB /* react-native-jitsi-meet-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = FDF5377FFC3A9BA9CC53D6C97ADD2E4E /* react-native-jitsi-meet-dummy.m */; }; + F99C6EF148A5F929C6714A10414821BB /* react-native-jitsi-meet-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = A90DDACC59AD11DBAF2AFC2B338DFBC4 /* react-native-jitsi-meet-dummy.m */; }; F9C79E07315E4101EE1E6284DBE96B6D /* json_patch.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 5E61C8595E6BF0B87BDBC62507DE05D8 /* 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 = 96C64DD2767B07BC03C0ADB071CBADFC /* DeferFlowable.h */; settings = {ATTRIBUTES = (Project, ); }; }; - FA0913FA65B2D27FCAFE7E072BCDA6B8 /* RCTSafeAreaViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 0021AAD20B41A86FC16C442527F9535C /* RCTSafeAreaViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + FA0913FA65B2D27FCAFE7E072BCDA6B8 /* RCTSafeAreaViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 9BBE83C00E1454A6987265E27BEF4559 /* RCTSafeAreaViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; FA14342E79B4712BB89BFD6F442A6A64 /* enc_msa.c in Sources */ = {isa = PBXBuildFile; fileRef = 3C169D4829984F2E758F0715F2FA405D /* enc_msa.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - FA261EF55BDA4678D08512DF89105B12 /* RNSScreenStackHeaderConfig.h in Headers */ = {isa = PBXBuildFile; fileRef = 96425385B1223999EC8995BC6E3AFA06 /* RNSScreenStackHeaderConfig.h */; settings = {ATTRIBUTES = (Project, ); }; }; + FA261EF55BDA4678D08512DF89105B12 /* RNSScreenStackHeaderConfig.h in Headers */ = {isa = PBXBuildFile; fileRef = 5FB6901D181CD76F365D0B8CA453FCEB /* RNSScreenStackHeaderConfig.h */; settings = {ATTRIBUTES = (Project, ); }; }; FA4153C149EF3F1DDED6E4846513C67F /* ThriftStreamShim.h in Headers */ = {isa = PBXBuildFile; fileRef = 22EA2EFC4D37975856FABA3B17A53CA7 /* ThriftStreamShim.h */; settings = {ATTRIBUTES = (Project, ); }; }; - FA41B3CEA87D34E244EA46A8F06EBCD1 /* BannerComponent.m in Sources */ = {isa = PBXBuildFile; fileRef = 3D71F8CB11FA9EFCE632EF2ADC483214 /* BannerComponent.m */; }; + FA41B3CEA87D34E244EA46A8F06EBCD1 /* BannerComponent.m in Sources */ = {isa = PBXBuildFile; fileRef = BEC3AFB0C3F4A99C632502870555D838 /* BannerComponent.m */; }; FA4347EF4A800F16CE57D834D4859D8D /* CocoaAsyncSocket-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 1B43351F49906948085795035177EACE /* CocoaAsyncSocket-dummy.m */; }; - FA6CDEB2A292F61C8FA52F4239629B79 /* RNVectorIconsManager.m in Sources */ = {isa = PBXBuildFile; fileRef = DF7B0433CB697E740BA7B259FE091C76 /* RNVectorIconsManager.m */; }; + FA6CDEB2A292F61C8FA52F4239629B79 /* RNVectorIconsManager.m in Sources */ = {isa = PBXBuildFile; fileRef = B58818128D71948C8EBF51C9ADC8345C /* RNVectorIconsManager.m */; }; FA7B91BBFE85B37005DA2A166EA97D07 /* bignum-dtoa.cc in Sources */ = {isa = PBXBuildFile; fileRef = 444C4CB3BA6D072ECE05A85E7B4AD55F /* bignum-dtoa.cc */; settings = {COMPILER_FLAGS = "-Wno-unreachable-code"; }; }; FAE7FB7F49C39C5CC3B15E412575429D /* sorted_vector_types.h in Headers */ = {isa = PBXBuildFile; fileRef = 1D9460FFFD360C196CCAEFA156B82B71 /* sorted_vector_types.h */; settings = {ATTRIBUTES = (Project, ); }; }; FB0F92706EF1B0B3F1CCF387BAFC3433 /* RSocketStats.cpp in Sources */ = {isa = PBXBuildFile; fileRef = C482C4730A3D930704DB1E78CED3AA3E /* 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 = 699E3A51920E2B9318649B379A34C156 /* InlineExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; - FB3DE01BC34DE183A41B48871808F975 /* RCTSourceCode.mm in Sources */ = {isa = PBXBuildFile; fileRef = C1D5A570574B92F76B7BD7A8A1BDF5A3 /* 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 = 011B2F1FDDCC3FFFCB54972D1C18B1EB /* 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 = 2C589B0E36FF0F86584B6C9F7A250535 /* 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 = C56C1693BDC084EDD80C7D26ADD67C9E /* 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 = 8F20EA7B3F5905572DE6CF16610A8A2C /* RNCAsyncStorage.h */; settings = {ATTRIBUTES = (Project, ); }; }; - FB813826D2D03C2BB7AAC1130C477D8F /* RCTParserUtils.m in Sources */ = {isa = PBXBuildFile; fileRef = 78292FDA999C9C32726C8A5E4C3A1CE8 /* 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 = DD6E18E641FA8579A9370B09BE6F7866 /* 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 = C343B2786CEE68D3AB66F5D59A12F86F /* RNCAsyncStorage.h */; settings = {ATTRIBUTES = (Project, ); }; }; + FB813826D2D03C2BB7AAC1130C477D8F /* RCTParserUtils.m in Sources */ = {isa = PBXBuildFile; fileRef = B262D82F6BD4B463D3577BE73FB17FBE /* 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 = 94096471176B5A63422BD7DDAC6122E6 /* AtomicUnorderedMapUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; - FB92EE439043A66D7DA98BFDC70A3E17 /* SDInternalMacros.h in Headers */ = {isa = PBXBuildFile; fileRef = 6BD12214F5826815CB7FDB5BED2E67ED /* SDInternalMacros.h */; settings = {ATTRIBUTES = (Project, ); }; }; - FB9DEAA3FF6C672E354650B1ECAF88D1 /* RNCSafeAreaViewLocalData.h in Headers */ = {isa = PBXBuildFile; fileRef = F7A0FBDCCD90814E8084C90BA1BAA2AB /* RNCSafeAreaViewLocalData.h */; settings = {ATTRIBUTES = (Project, ); }; }; - FBBA5CBD3A64DB549CC7D70A8158B368 /* SDImageCachesManagerOperation.h in Headers */ = {isa = PBXBuildFile; fileRef = BFC7C2CDFD20C9563CC341F59F84CCAC /* SDImageCachesManagerOperation.h */; settings = {ATTRIBUTES = (Project, ); }; }; + FB90E24396C26ED6126824A52A788876 /* SDDiskCache.h in Headers */ = {isa = PBXBuildFile; fileRef = 54BBCFBF9867A2D6114CDC91D4345CE7 /* SDDiskCache.h */; settings = {ATTRIBUTES = (Project, ); }; }; + FB9DEAA3FF6C672E354650B1ECAF88D1 /* RNCSafeAreaViewLocalData.h in Headers */ = {isa = PBXBuildFile; fileRef = AD0B04DF894CA0F11A1EFF61329BAAC5 /* RNCSafeAreaViewLocalData.h */; settings = {ATTRIBUTES = (Project, ); }; }; FBC0D2805C929A4C5832392FC8E13163 /* ThreadFactory.h in Headers */ = {isa = PBXBuildFile; fileRef = 486B9CD622145C39FA6B9A49869C4CA8 /* ThreadFactory.h */; settings = {ATTRIBUTES = (Project, ); }; }; FBD7C4826F1DD46AE003317225C0D984 /* raw_logging.cc in Sources */ = {isa = PBXBuildFile; fileRef = C4D02AD3FB4B53CDBE474C4BCC0F2D7E /* raw_logging.cc */; settings = {COMPILER_FLAGS = "-Wno-shorten-64-to-32"; }; }; FBED05764440E7FEF17C007B2437FB0D /* FIRVersion.m in Sources */ = {isa = PBXBuildFile; fileRef = EB8616166244CC3EEF891C531B942EBA /* FIRVersion.m */; }; - FBED8C83DADC53ED21AFE070E8625622 /* RCTReloadCommand.m in Sources */ = {isa = PBXBuildFile; fileRef = D1C1E335ECAE091937087AEF551B8518 /* 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 = 92A1BAE7EC0FE27F54294005FB25DC2C /* 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 = E023960F905CAC763C2EFD745F313EC4 /* Partial.h */; settings = {ATTRIBUTES = (Project, ); }; }; - FC26ECFC0E452C0B1FC7543F2EBC89C8 /* RCTMultilineTextInputView.m in Sources */ = {isa = PBXBuildFile; fileRef = 0FBCF12118BE36F18E343B01FE292CBC /* RCTMultilineTextInputView.m */; }; + FC26ECFC0E452C0B1FC7543F2EBC89C8 /* RCTMultilineTextInputView.m in Sources */ = {isa = PBXBuildFile; fileRef = A6C8222EFA36663530D99FE0CE80ECF8 /* RCTMultilineTextInputView.m */; }; FC6B3ABED8B138EF2E98AD6E2819FBF0 /* PasswordInFile.h in Headers */ = {isa = PBXBuildFile; fileRef = 77C278422DC579B6055C42FC6492DFDD /* PasswordInFile.h */; settings = {ATTRIBUTES = (Project, ); }; }; - FC759D82AFEEBB0CDCFA7B4D29B2D9CF /* RCTTVNavigationEventEmitter.h in Headers */ = {isa = PBXBuildFile; fileRef = 96989709EBA4251565F487F8F55924DA /* RCTTVNavigationEventEmitter.h */; settings = {ATTRIBUTES = (Project, ); }; }; + FC759D82AFEEBB0CDCFA7B4D29B2D9CF /* RCTTVNavigationEventEmitter.h in Headers */ = {isa = PBXBuildFile; fileRef = 192C49840EFB37F6BF22E13BD1FEE7B1 /* RCTTVNavigationEventEmitter.h */; settings = {ATTRIBUTES = (Project, ); }; }; FC75D51E54C6036FB1E4A073F39DE7B2 /* ScheduledSubscriber.h in Headers */ = {isa = PBXBuildFile; fileRef = AECBEE636EB2D64798479F9B3CD4FA9B /* ScheduledSubscriber.h */; settings = {ATTRIBUTES = (Project, ); }; }; FC775095597914294ABF7C56BF70052A /* FIRComponentContainer.m in Sources */ = {isa = PBXBuildFile; fileRef = 97A4EA46F14A54B737026EC7D1B2CCAE /* FIRComponentContainer.m */; }; - FC87714A41923AA16685BCF5EA2F22F7 /* SDImageCodersManager.m in Sources */ = {isa = PBXBuildFile; fileRef = D65D4E79DCD9838F91437CD602771ADD /* SDImageCodersManager.m */; }; - FC98D260B0CFC32AFF56A78B6D25EEFA /* DeviceUID.h in Headers */ = {isa = PBXBuildFile; fileRef = 5FF124BFE4789E564508AA5A571693E7 /* DeviceUID.h */; settings = {ATTRIBUTES = (Project, ); }; }; - FC98E27E7370D5E45EE6140BE503DD6E /* Yoga-internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 30E7AB436B129FA770A942480C3CCFD1 /* Yoga-internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - FCA9C6B6B3DC07E4BC8A9ECC0A5E19C8 /* React-Core-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = E6F633DA233010259078C80B210B8CB0 /* React-Core-dummy.m */; }; + FC87714A41923AA16685BCF5EA2F22F7 /* SDImageCodersManager.m in Sources */ = {isa = PBXBuildFile; fileRef = EE58664FCD565913AE6871C3D5B803C3 /* SDImageCodersManager.m */; }; + FC98D260B0CFC32AFF56A78B6D25EEFA /* DeviceUID.h in Headers */ = {isa = PBXBuildFile; fileRef = 5F6F803080EC7233FE2E0366B906B720 /* DeviceUID.h */; settings = {ATTRIBUTES = (Project, ); }; }; + FC98E27E7370D5E45EE6140BE503DD6E /* Yoga-internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 8E6470A46B1B5072E89C06A9CF8C471D /* Yoga-internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; + FCA9C6B6B3DC07E4BC8A9ECC0A5E19C8 /* React-Core-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 92600053C1570D4B99BA29B10E6E558E /* React-Core-dummy.m */; }; FCC4D9CA0739EB52E8ACD925155F5C8F /* GULNSData+zlib.h in Headers */ = {isa = PBXBuildFile; fileRef = AF2B8CA91FAF518D816F9D608C6514A4 /* GULNSData+zlib.h */; settings = {ATTRIBUTES = (Project, ); }; }; - FCC5B2ABD1B7DB7019EF1DF3AF45565F /* RCTUIManager.m in Sources */ = {isa = PBXBuildFile; fileRef = C4819B006A4CB7BDE21A5A4D9D1239BF /* 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 = 66A213075DBB0B320DB019C68BC2A999 /* 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 = 9FCE117B9000CC7F18A99493B9FD2771 /* 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 = E4717C28EB9B27DF783198B758A4CF07 /* RNDeviceInfo.m */; }; + FCDC5F5AF807DB5781447F7EC845B581 /* RNDeviceInfo.m in Sources */ = {isa = PBXBuildFile; fileRef = 478A8F266F78C102886EA488C4B0E0E1 /* RNDeviceInfo.m */; }; FCE3A33F83836596ACAE1381D52942AB /* Cursor-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = EE2991BE8BD32C230B39899B8AAB4CA9 /* Cursor-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - FD0A3452882955D51AE629E3813489BA /* RCTBundleURLProvider.m in Sources */ = {isa = PBXBuildFile; fileRef = DF22B26A42CCFCCA352128CBD25F0A45 /* 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 = 533A436110B2A43D96258CDCDC425754 /* EXUserNotificationPermissionRequester.m */; }; - FD309F3148AABB6FF5CE94800C8CEEC5 /* RCTMultilineTextInputViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 6D4994A75D45527F7F5930F67C8B5BEB /* RCTMultilineTextInputViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - FD4075015771EB548EE8ADB386FA5E20 /* REANode.m in Sources */ = {isa = PBXBuildFile; fileRef = 35FF01812EF4A19AF5A496A538F75336 /* REANode.m */; }; - FD8440A64A1004A0B0E3D18D6E2AFAD2 /* BSG_KSCrashAdvanced.h in Headers */ = {isa = PBXBuildFile; fileRef = ADE10929ECA897064616AF907B1E46F7 /* BSG_KSCrashAdvanced.h */; settings = {ATTRIBUTES = (Project, ); }; }; + FD0A3452882955D51AE629E3813489BA /* RCTBundleURLProvider.m in Sources */ = {isa = PBXBuildFile; fileRef = 3FF3FF75DD075F7CA62B764F72CEBD64 /* 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 = EA5B235566D917469402608226FD6112 /* EXUserNotificationPermissionRequester.m */; }; + FD309F3148AABB6FF5CE94800C8CEEC5 /* RCTMultilineTextInputViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = D217CFE89B9E5B40B749EA8A663694A2 /* RCTMultilineTextInputViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + FD4075015771EB548EE8ADB386FA5E20 /* REANode.m in Sources */ = {isa = PBXBuildFile; fileRef = C996BE03A7BA2CDC4E8EB2B86081FB7A /* REANode.m */; }; + FD8440A64A1004A0B0E3D18D6E2AFAD2 /* BSG_KSCrashAdvanced.h in Headers */ = {isa = PBXBuildFile; fileRef = 701CC102E35E467BDCF858727E4F0D79 /* BSG_KSCrashAdvanced.h */; settings = {ATTRIBUTES = (Project, ); }; }; FDD5FCFCFF3A1F08C968E2B47BEEF20A /* SSLErrors.h in Headers */ = {isa = PBXBuildFile; fileRef = 12B2B27F837989ABA1A2A07BDA1C4149 /* SSLErrors.h */; settings = {ATTRIBUTES = (Project, ); }; }; FDD98AFFE343DEF1281990CB755B5933 /* Demangle.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46D770330A5BDDAA6FCDCF618C6EA47F /* 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 = 9370A3A3860C554622DA5C821883ABF1 /* 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 = B88BF0F6E8E0D9231FE0B18A655A9D4C /* SDmetamacros.h */; settings = {ATTRIBUTES = (Project, ); }; }; - FE568F942AC8C78A9288A55D7EDAD5C6 /* RCTPackagerConnection.mm in Sources */ = {isa = PBXBuildFile; fileRef = 92D5EA8127BD486680F99368655E6E32 /* 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 = C7801D1469FE2CF9E5087267BBB71BBF /* 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 = B46F3DC8D803A6ABEDBB0D57180B5093 /* CancelingSubscriber.h */; settings = {ATTRIBUTES = (Project, ); }; }; FE5B55CC4A37EF0D7B2C1E92CAF12F99 /* NetworkSocket.h in Headers */ = {isa = PBXBuildFile; fileRef = 7957D5180559E76A9D30C43440B199E0 /* NetworkSocket.h */; settings = {ATTRIBUTES = (Project, ); }; }; - FE7D0BE1B4F581460DB11DCED18BCE1B /* RNCAssetsLibraryRequestHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 96AA26E861DA5B0E29D148F918CC770E /* RNCAssetsLibraryRequestHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; + FE7D0BE1B4F581460DB11DCED18BCE1B /* RNCAssetsLibraryRequestHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 7C76F6872D692AF01A093C9AF06DC19B /* RNCAssetsLibraryRequestHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; FE9B01DC938E8FF1AE38579797F5CBB0 /* EnvUtil.h in Headers */ = {isa = PBXBuildFile; fileRef = C9561D2C0C8BB162D69476064062DDAF /* EnvUtil.h */; settings = {ATTRIBUTES = (Project, ); }; }; FEE81DDBC8EE950322B4DFBC3C91A8F5 /* FIRDependency.h in Headers */ = {isa = PBXBuildFile; fileRef = BAED703E7AA2427C8BB0AE4748AC34C7 /* FIRDependency.h */; settings = {ATTRIBUTES = (Project, ); }; }; FF20886F669DA038DCB2D84F30D71D5E /* IOBufQueue.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2E105AEEC4F98A6688022793332EF421 /* 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 = 9470C0122B1CEFE0E5EB0E44CB510B68 /* FFFastImageSource.h */; settings = {ATTRIBUTES = (Project, ); }; }; + FF217BF4F60D6ABBE53FF634B951F784 /* FFFastImageSource.h in Headers */ = {isa = PBXBuildFile; fileRef = D14357FAA97904A82A822AF6ADDE9B66 /* FFFastImageSource.h */; settings = {ATTRIBUTES = (Project, ); }; }; FF25A72AFBFDD3B1F8A677B56EE3F6C6 /* rescaler_sse2.c in Sources */ = {isa = PBXBuildFile; fileRef = E865E5F7D3DCA436B02BC22EA8D2291B /* rescaler_sse2.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - FF26719BB69A2F1411F3516CE44D4912 /* RCTAdditionAnimatedNode.m in Sources */ = {isa = PBXBuildFile; fileRef = C18252439B490C91FC5F74CCC76918A3 /* 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 = 15BC50236B6BFC8A12A25EA5714EEE3C /* UMViewManagerAdapterClassesRegistry.h */; settings = {ATTRIBUTES = (Project, ); }; }; - FF60B7B41824DC680D901D24F8DB2F78 /* EXFileSystemLocalFileHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = 0E3C14843CFD8E90981B9685A9A32E31 /* EXFileSystemLocalFileHandler.m */; }; - FF6C3E3D7803F7C47C69F0D1971E6E0B /* RCTVersion.h in Headers */ = {isa = PBXBuildFile; fileRef = E38BAD38A31B5ED29F98169234AC11AF /* RCTVersion.h */; settings = {ATTRIBUTES = (Project, ); }; }; + FF26719BB69A2F1411F3516CE44D4912 /* RCTAdditionAnimatedNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 7D664B087A294B3328938907EF3E8A93 /* 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 = 4CDE974C6A3448610A705D1840228F96 /* UMViewManagerAdapterClassesRegistry.h */; settings = {ATTRIBUTES = (Project, ); }; }; + FF35D631BBD7CE3793F2585E076ABE37 /* UIImage+ForceDecode.h in Headers */ = {isa = PBXBuildFile; fileRef = 715B9CFD01E3E361C5BD4C73114E7931 /* UIImage+ForceDecode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + FF60B7B41824DC680D901D24F8DB2F78 /* EXFileSystemLocalFileHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = 4315336C79990A97C6FB023C7F26E713 /* EXFileSystemLocalFileHandler.m */; }; + FF6C3E3D7803F7C47C69F0D1971E6E0B /* RCTVersion.h in Headers */ = {isa = PBXBuildFile; fileRef = ED585EDDA1FD3A410BC1A7519DE62690 /* RCTVersion.h */; settings = {ATTRIBUTES = (Project, ); }; }; FF8366ADAE423B2AFB5753C39F314128 /* alpha_processing_sse41.c in Sources */ = {isa = PBXBuildFile; fileRef = 7BBC3B23E8EE049BC21430020FE0977C /* alpha_processing_sse41.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - FF9E21A6087B13223BBAD7DE03C03FB7 /* REASetNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 70FE932D7EE0A2E6E295FF0F651AC85F /* REASetNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - FFA5B034E4A506917A5D5ECDF9E13251 /* SDImageLoadersManager.h in Headers */ = {isa = PBXBuildFile; fileRef = D7603F1BAF85E5C25B87E41D2D5AC5D1 /* SDImageLoadersManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + FF9E21A6087B13223BBAD7DE03C03FB7 /* REASetNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 892ECBB32033CF5319C2A79BFA0DF6A4 /* REASetNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + FFB9245D233A3C0CCA0F2A43466826E2 /* SDImageHEICCoderInternal.h in Headers */ = {isa = PBXBuildFile; fileRef = 6AF4A3D6A542CE9E60A67A05D478C9F5 /* SDImageHEICCoderInternal.h */; settings = {ATTRIBUTES = (Project, ); }; }; FFC03B7D8F37AE0403024D9BD66DB19C /* vp8li_dec.h in Headers */ = {isa = PBXBuildFile; fileRef = 120F2F5591146C7F60A5E7F5D1050B47 /* vp8li_dec.h */; settings = {ATTRIBUTES = (Project, ); }; }; FFE8ABF8136FB927DC4744C89D988D59 /* GULKeychainUtils.m in Sources */ = {isa = PBXBuildFile; fileRef = 83E57D81AC9B27761CE40C566F67EB80 /* GULKeychainUtils.m */; }; FFF5AE518B8DA538253C4191FD313308 /* CPUThreadPoolExecutor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 0BF59E237AF5DB0D099095014DA0DC64 /* CPUThreadPoolExecutor.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; @@ -6087,1693 +6088,1653 @@ /* Begin PBXFileReference section */ 0004ADA1CA081B030684FB19EC77BEC2 /* ThreadPoolExecutor.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = ThreadPoolExecutor.cpp; path = folly/executors/ThreadPoolExecutor.cpp; sourceTree = ""; }; - 0004CD2B1C7A554C35DAB64B5EBAE612 /* EXConstants.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = EXConstants.xcconfig; sourceTree = ""; }; - 0013155BD637465406EC7C9A5EBFD577 /* react-native-notifications-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "react-native-notifications-dummy.m"; sourceTree = ""; }; - 0021AAD20B41A86FC16C442527F9535C /* RCTSafeAreaViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSafeAreaViewManager.h; sourceTree = ""; }; - 003EAF4329308F1EC6185DA44A1D66DC /* UMUtilities.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = UMUtilities.m; path = UMCore/UMUtilities.m; sourceTree = ""; }; - 00738B77A5CE05C854F2D2638BD918C2 /* RCTNetworkTask.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTNetworkTask.mm; sourceTree = ""; }; 0082E5271A0A42B9A35B2F9EBBE28914 /* GULSceneDelegateSwizzler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GULSceneDelegateSwizzler.m; path = GoogleUtilities/SceneDelegateSwizzler/GULSceneDelegateSwizzler.m; sourceTree = ""; }; - 008D4EEA0505267E416DCDEBB6A3CB34 /* KeyCommands-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "KeyCommands-prefix.pch"; sourceTree = ""; }; + 00921F7873CACBCE0A54AEDD40B739E1 /* ARTShadow.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ARTShadow.h; path = ios/ARTShadow.h; sourceTree = ""; }; + 0097D11539DB09FDF8537B5F03892D6A /* UMModuleRegistryProvider.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = UMModuleRegistryProvider.m; sourceTree = ""; }; 009CF839932EDA691FF3C5786F28642F /* Latch.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Latch.h; path = rsocket/benchmarks/Latch.h; sourceTree = ""; }; - 009E1A7B40B535EB77ACA21024028C42 /* RCTPicker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTPicker.h; sourceTree = ""; }; - 00A208973A5C820DB58EA49C7ADFEB32 /* RCTDatePicker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTDatePicker.h; sourceTree = ""; }; - 00D1A29C97764FB371DCC4BB85B342F6 /* RNDateTimePicker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNDateTimePicker.h; path = ios/RNDateTimePicker.h; sourceTree = ""; }; - 00E181409EB769E1E4567A58BB6438BC /* RCTAnimatedImage.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTAnimatedImage.m; sourceTree = ""; }; - 00E976495F86A5FC584B964CB92ADF63 /* React.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = React.xcconfig; sourceTree = ""; }; + 009F1A08CB0A50EA5E3CAB30B726B94B /* EXAudioRecordingPermissionRequester.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXAudioRecordingPermissionRequester.m; path = EXAV/EXAudioRecordingPermissionRequester.m; sourceTree = ""; }; + 00C920FE6A7C2E00A87998E93213D845 /* REACallFuncNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REACallFuncNode.m; sourceTree = ""; }; + 00D71C6B7C575E7010F9C45456E08673 /* SDImageCoder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageCoder.h; path = SDWebImage/Core/SDImageCoder.h; sourceTree = ""; }; + 00D7E51B3E6D16C666589649A5730D0B /* UIImage+MemoryCacheCost.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIImage+MemoryCacheCost.h"; path = "SDWebImage/Core/UIImage+MemoryCacheCost.h"; sourceTree = ""; }; + 00E3A5686CE7C3369D636DFA716C9BB0 /* NativeExpressComponent.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = NativeExpressComponent.h; sourceTree = ""; }; + 00F51CB288113EE1922EB726BFE070F6 /* RCTValueAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTValueAnimatedNode.m; sourceTree = ""; }; 010B5109BD821A3F8B3B29CFCDE19C3A /* GULReachabilityChecker+Internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "GULReachabilityChecker+Internal.h"; path = "GoogleUtilities/Reachability/GULReachabilityChecker+Internal.h"; sourceTree = ""; }; + 011B2F1FDDCC3FFFCB54972D1C18B1EB /* RCTSourceCode.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTSourceCode.mm; sourceTree = ""; }; + 011F9539823FF372ADF8DDED69488A4C /* QBImagePickerController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = QBImagePickerController.m; path = ios/QBImagePicker/QBImagePicker/QBImagePickerController.m; sourceTree = ""; }; 012242E4480B29DF1D5791EC61C27FEE /* libreact-native-notifications.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libreact-native-notifications.a"; path = "libreact-native-notifications.a"; sourceTree = BUILT_PRODUCTS_DIR; }; 012D2366D2C172885416EEAAB9F76A32 /* CallOnce.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CallOnce.h; path = folly/synchronization/CallOnce.h; sourceTree = ""; }; 01317DD0FBC67A8D7591529633AF3EC2 /* GlobalThreadPoolList.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = GlobalThreadPoolList.cpp; path = folly/executors/GlobalThreadPoolList.cpp; sourceTree = ""; }; + 014A3DC181408BEE2897FF34FE2B8E46 /* React-jsi-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-jsi-dummy.m"; sourceTree = ""; }; 015B8C320491CDF6FE6160D9DF5F206A /* ClientResumeStatusCallback.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ClientResumeStatusCallback.h; path = rsocket/internal/ClientResumeStatusCallback.h; sourceTree = ""; }; + 0169CA62EDDE06816622F7F21E2D6C0C /* UMTaskConsumerInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMTaskConsumerInterface.h; path = UMTaskManagerInterface/UMTaskConsumerInterface.h; sourceTree = ""; }; + 01833D28E65227B47ACD0B88434E1A07 /* UMTaskInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMTaskInterface.h; path = UMTaskManagerInterface/UMTaskInterface.h; sourceTree = ""; }; + 019388B2AD000029A641B277E52D3A7D /* ReactCommon-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "ReactCommon-dummy.m"; sourceTree = ""; }; 01AEDCFC3ED04DFFE39D6F80D460287A /* FBLPromise+Catch.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FBLPromise+Catch.h"; path = "Sources/FBLPromises/include/FBLPromise+Catch.h"; sourceTree = ""; }; - 01AF6B3F7CCE670710F45E8B5157C55F /* SDWebImageIndicator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageIndicator.h; path = SDWebImage/Core/SDWebImageIndicator.h; sourceTree = ""; }; - 01C8D2F0DA3AC1453C4A4E1AAEBEDAF0 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; + 01CAEC0CCF45F48DFFB7270BDEEE1EB7 /* EXKeepAwake.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXKeepAwake.m; path = EXKeepAwake/EXKeepAwake.m; sourceTree = ""; }; 01CF13B9D679B7BC88155AD55F3DD540 /* Pods-RocketChatRN.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-RocketChatRN.release.xcconfig"; sourceTree = ""; }; 01DF912D12F8A8AF95935A4DEEABA8F0 /* opensslv.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = opensslv.h; path = ios/include/openssl/opensslv.h; sourceTree = ""; }; - 01E29E1E919123FA73529DB1E40266E0 /* RCTKeyCommandsManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCTKeyCommandsManager.m; path = ios/KeyCommands/RCTKeyCommandsManager.m; sourceTree = ""; }; + 01E4117FE7EA1D36E5017B0F7E24C4C0 /* RCTAsyncLocalStorage.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTAsyncLocalStorage.h; path = React/CoreModules/RCTAsyncLocalStorage.h; sourceTree = ""; }; + 01F4F7D53CF25246E7BCE70691A4403B /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; 02057BFC1C42DD60C7390331C635D854 /* DistributedMutexSpecializations.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DistributedMutexSpecializations.h; path = folly/synchronization/DistributedMutexSpecializations.h; sourceTree = ""; }; - 020B4A74E08D3438BA845901F7EAE0C1 /* UMTaskServiceInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMTaskServiceInterface.h; path = UMTaskManagerInterface/UMTaskServiceInterface.h; sourceTree = ""; }; 0225409427FFE99591DCBD4FEDDA3EDB /* FIRHeartbeatInfo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRHeartbeatInfo.h; path = FirebaseCore/Sources/Private/FIRHeartbeatInfo.h; sourceTree = ""; }; 022760F1F3F03EEEF53CBA1B3AEB597A /* SocketAddress.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = SocketAddress.cpp; path = folly/SocketAddress.cpp; sourceTree = ""; }; - 0231B9765D9737322AAC9865EC423544 /* RNFirebaseRemoteConfig.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNFirebaseRemoteConfig.m; sourceTree = ""; }; + 02358F229DE8AC7C2942F97A400A0B38 /* EXWebBrowser-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "EXWebBrowser-dummy.m"; sourceTree = ""; }; 024F789B72FA8D92CC84DCD82857AD1C /* picture_csp_enc.c */ = {isa = PBXFileReference; includeInIndex = 1; name = picture_csp_enc.c; path = src/enc/picture_csp_enc.c; sourceTree = ""; }; - 025E0CDFD18867BDA9A8DB9B3184A6C1 /* JSExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = JSExecutor.h; sourceTree = ""; }; - 025E645C19027FF11B2AD002927427AD /* RCTUIUtils.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTUIUtils.m; sourceTree = ""; }; - 026D365C03F0738EBB8705648566148D /* EXAVPlayerData.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXAVPlayerData.h; path = EXAV/EXAVPlayerData.h; sourceTree = ""; }; + 026346E1EF45B14D6A4896FC4B250C40 /* UMModuleRegistryAdapter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMModuleRegistryAdapter.h; sourceTree = ""; }; + 0283A3002F44757BA1B3AF6061982331 /* react-native-document-picker-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "react-native-document-picker-prefix.pch"; sourceTree = ""; }; + 0288216AD777E20758A9407FEBC14AB8 /* RCTImageLoader.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTImageLoader.mm; sourceTree = ""; }; 029B3D446838960B31BCBD02394F100C /* Stdlib.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Stdlib.h; path = folly/portability/Stdlib.h; sourceTree = ""; }; - 029C1BABC6D0EB3908C82817D94E6D87 /* RCTFrameAnimation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTFrameAnimation.h; sourceTree = ""; }; - 02BC12FC7B6F443A4F115B707678242C /* ARTTextFrame.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ARTTextFrame.h; path = ios/ARTTextFrame.h; sourceTree = ""; }; - 02C81FEA3987E502AC2FE0D8F1CA6DE2 /* RCTScrollContentViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTScrollContentViewManager.h; sourceTree = ""; }; - 02CA029FB79AF696A740D09145194B3B /* ObservingInputAccessoryView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ObservingInputAccessoryView.h; path = lib/ObservingInputAccessoryView.h; sourceTree = ""; }; 02CAE9298A2C4E7810DCC16EA4120CD2 /* Sockets.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Sockets.h; path = folly/portability/Sockets.h; sourceTree = ""; }; - 02EACCEF85C6401CE759EC23BFD20E25 /* RCTInputAccessoryView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTInputAccessoryView.h; sourceTree = ""; }; + 02DB79CDC0B9E865F7A2FAED587BBCFE /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; + 02F4BD7B00C8135F8D62498B738ABDDA /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; + 02F6C9E569ED0CDDA7D3B52CF67FE997 /* react-native-jitsi-meet.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = "react-native-jitsi-meet.podspec"; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; 02F896E427E81E60D05E4F642B7D77FB /* GDTCORPlatform.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GDTCORPlatform.m; path = GoogleDataTransport/GDTCORLibrary/GDTCORPlatform.m; sourceTree = ""; }; - 03055D7A42E5E850114489ED90D99F78 /* RCTInputAccessoryViewContent.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTInputAccessoryViewContent.m; sourceTree = ""; }; - 032664ABA202E30892CBB23A17DB14F3 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; - 0339FF0394421A78EC4E62FACD4BBDEB /* JSIExecutor.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = JSIExecutor.cpp; path = jsireact/JSIExecutor.cpp; sourceTree = ""; }; - 033AEAAFCE60615AF48A038283404C6B /* RCTLog.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTLog.h; sourceTree = ""; }; - 03415F6712E38CEF6B5BA9AC87327B01 /* RCTSurfaceView+Internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RCTSurfaceView+Internal.h"; sourceTree = ""; }; - 035AED08D71C220C5E407091F2A6CC0F /* NSDataBigString.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = NSDataBigString.mm; sourceTree = ""; }; + 033F019538DDE7D294F0051C7E1C4514 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; + 035F8DF3FA0EA1570EF9C1E43CA9AE75 /* RCTSwitchManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSwitchManager.m; sourceTree = ""; }; + 03638B0C01AF832F3970C20F5A684465 /* RCTConvert+ART.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "RCTConvert+ART.h"; path = "ios/RCTConvert+ART.h"; sourceTree = ""; }; 03B3B8A2D8AA371D0684A81EAD100DCF /* Core-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "Core-inl.h"; path = "folly/gen/Core-inl.h"; sourceTree = ""; }; 03BCAE262C2C98BC754ECFA00DD34E2D /* buffer_compat.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = buffer_compat.h; path = src/event2/buffer_compat.h; sourceTree = ""; }; 03BFDE2AEA3E71063E0597E9870ED535 /* pem2.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = pem2.h; path = ios/include/openssl/pem2.h; sourceTree = ""; }; - 03C971251727F36F630D77196BF3442A /* CxxNativeModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = CxxNativeModule.h; sourceTree = ""; }; - 03D7B85BCC7288374F354DCD44FC86E9 /* RCTKeyCommands.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTKeyCommands.m; sourceTree = ""; }; - 03EFB66160C26CFADD86A2D0EF4170B2 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; + 03D0F30AE308D4259F67334FF1D3969B /* RCTComponentData.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTComponentData.m; sourceTree = ""; }; 03FBD72B129570234DDB4A6856B7A3FD /* 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 = ""; }; - 040AA9DAA7862B475B2E5120A5EEF914 /* RCTComponentData.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTComponentData.h; sourceTree = ""; }; - 041293840B618AC2B9040C82E56A4EC6 /* RCTDiffClampAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTDiffClampAnimatedNode.m; sourceTree = ""; }; - 041999B01F33F5728EADE2E9A551CF9B /* RNFirebaseUtil.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNFirebaseUtil.h; path = RNFirebase/RNFirebaseUtil.h; sourceTree = ""; }; + 0413E64D3D0161176688283A1DC4E85F /* RCTUITextField.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTUITextField.h; sourceTree = ""; }; 041A3AB9D3FA721EE3FA6A1C010E3C97 /* lossless_msa.c */ = {isa = PBXFileReference; includeInIndex = 1; name = lossless_msa.c; path = src/dsp/lossless_msa.c; sourceTree = ""; }; + 04285C5707B3DA7F659E7F985E5A4F61 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; 042DF8DFEEB1D8E5580AAC6A366BDAB8 /* FirebaseInstallations-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "FirebaseInstallations-dummy.m"; sourceTree = ""; }; - 04368F41390E638813991BAD65E58B7B /* RCTEventDispatcher.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTEventDispatcher.h; sourceTree = ""; }; + 045CE851EBDF3C903F0B03627EC25C0C /* UMAppLoader-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "UMAppLoader-prefix.pch"; sourceTree = ""; }; 0461463C7C51A58FADE5719B78D3486F /* ui_compat.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ui_compat.h; path = ios/include/openssl/ui_compat.h; sourceTree = ""; }; - 047E3082BDAAFDB754C2F948E1FB9C07 /* BugsnagCrashReport.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagCrashReport.m; sourceTree = ""; }; - 0489DFAD8CDFB314CDC540B95FD79C84 /* react-native-notifications.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "react-native-notifications.xcconfig"; sourceTree = ""; }; - 049121CD6C0B1D64E58E3C9027BDCEFB /* QBSlomoIconView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = QBSlomoIconView.h; path = ios/QBImagePicker/QBImagePicker/QBSlomoIconView.h; sourceTree = ""; }; + 049220A983DD98D10CD3B951DD39C6B4 /* RNPushKit.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNPushKit.h; path = RNNotifications/RNPushKit.h; sourceTree = ""; }; + 04A422BC8833BA57C417BBD13984BBA9 /* BugsnagReactNative-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "BugsnagReactNative-dummy.m"; sourceTree = ""; }; 04AEECEA2393B4EDABC37244F1239588 /* RWSpinLock.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RWSpinLock.h; path = folly/synchronization/RWSpinLock.h; sourceTree = ""; }; - 050293ECCB39238309F20D196347F57D /* React-RCTText.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-RCTText.xcconfig"; sourceTree = ""; }; + 04E9EA8890CC70D63158E0944A315B35 /* RNReanimated.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RNReanimated.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; 0519EC5A4AFFBE2BB26D2B7BA7702EDB /* GoogleDataTransport-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "GoogleDataTransport-dummy.m"; sourceTree = ""; }; + 05255BC744941A25A1961830419487AC /* RCTSliderManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSliderManager.m; sourceTree = ""; }; 052E73AD9356D481A265F7E0FAA85B84 /* ms.lproj */ = {isa = PBXFileReference; includeInIndex = 1; name = ms.lproj; path = "Objective-C/TOCropViewController/Resources/ms.lproj"; sourceTree = ""; }; - 0553A531F07D4AE16DD483083B42D7A9 /* NativeModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = NativeModule.h; sourceTree = ""; }; + 0543D000A1973D9F088EDAC9C9FC2797 /* SDImageAssetManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageAssetManager.h; path = SDWebImage/Private/SDImageAssetManager.h; sourceTree = ""; }; + 0550464CE86161D1E121046A5841DA4A /* RCTSurfacePresenterStub.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSurfacePresenterStub.h; sourceTree = ""; }; + 055F1FB54BFD80FFBFF62315A5BB21A5 /* SDWebImageManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWebImageManager.m; path = SDWebImage/Core/SDWebImageManager.m; sourceTree = ""; }; 05672D7B2C6130AF07E326DF8EF6CDE0 /* OpenSSLThreading.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = OpenSSLThreading.cpp; path = folly/ssl/detail/OpenSSLThreading.cpp; sourceTree = ""; }; + 05949F61F0C1FBC29880B1B893FB0545 /* RCTConvert+REATransition.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RCTConvert+REATransition.h"; sourceTree = ""; }; 059D07B656F170281E4608441D5988EB /* FrameSerializer.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = FrameSerializer.cpp; path = rsocket/framing/FrameSerializer.cpp; sourceTree = ""; }; 05A7B5AFD49681298FBC68113C18BFE9 /* srtp.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = srtp.h; path = ios/include/openssl/srtp.h; sourceTree = ""; }; 05D86D6DAA63D4275173FC63FD7F89BC /* TurnSequencer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TurnSequencer.h; path = folly/detail/TurnSequencer.h; sourceTree = ""; }; - 05E0A0D2314B170BE1F42E0C84F1599A /* EXConstants.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXConstants.h; path = EXConstants/EXConstants.h; sourceTree = ""; }; + 05DB8FC8A4E23D049196E1228AAC5402 /* RCTBackedTextInputDelegateAdapter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTBackedTextInputDelegateAdapter.m; sourceTree = ""; }; + 05FCC769D72BD7FD4A361B16CE5B87D3 /* MaterialCommunityIcons.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = MaterialCommunityIcons.ttf; path = Fonts/MaterialCommunityIcons.ttf; sourceTree = ""; }; 05FD1CADBA934C110DFE16A11C133F0B /* lossless_enc_sse2.c */ = {isa = PBXFileReference; includeInIndex = 1; name = lossless_enc_sse2.c; path = src/dsp/lossless_enc_sse2.c; sourceTree = ""; }; - 0615D3DFC82C26757E1BD398535DAACC /* RCTMultiplicationAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTMultiplicationAnimatedNode.h; sourceTree = ""; }; - 0633D4BC2B6C74F5592307ACB6CA753E /* EXVideoThumbnails-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "EXVideoThumbnails-dummy.m"; sourceTree = ""; }; 063EE953E780320CB010F1F0C42E48E1 /* AtomicNotification.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AtomicNotification.h; path = folly/synchronization/AtomicNotification.h; sourceTree = ""; }; 06489499588BFA8FD5E63DD6375CD533 /* libFolly.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libFolly.a; path = libFolly.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 0660A4AF44B1A8B709A1A279D0F0352C /* React-jsiexecutor.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = "React-jsiexecutor.podspec"; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - 066BB0768735A88992CD059E35B6F38F /* react-native-jitsi-meet.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = "react-native-jitsi-meet.podspec"; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - 066FD3A91B0F1517F1463DB5F7CABA38 /* RNFirebaseAdMobBannerManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNFirebaseAdMobBannerManager.m; sourceTree = ""; }; + 065576DC7B13712EB9E7F21B3FE1E0B4 /* EXLocalAuthentication.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = EXLocalAuthentication.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 065CA76DC9A9623CBEA4AE67EF82CE52 /* BSG_KSSystemCapabilities.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSSystemCapabilities.h; sourceTree = ""; }; + 065E410EED9B34228BDF3AA55B9E85CF /* SDWebImageDownloaderDecryptor.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWebImageDownloaderDecryptor.m; path = SDWebImage/Core/SDWebImageDownloaderDecryptor.m; sourceTree = ""; }; 0672A1C17F80DFD5A9341B19DD72461F /* ThreadCachedInts.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ThreadCachedInts.h; path = folly/synchronization/detail/ThreadCachedInts.h; sourceTree = ""; }; 06800ED7F45E9EEE33317363307DAF0E /* TimerFDTimeoutManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TimerFDTimeoutManager.h; path = folly/experimental/TimerFDTimeoutManager.h; sourceTree = ""; }; 0686C0EC9AF0D66EFC1B412EB9124045 /* GDTCOREvent.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCOREvent.h; path = GoogleDataTransport/GDTCORLibrary/Public/GDTCOREvent.h; sourceTree = ""; }; 0688E1BF1908E81DBF8C7C1D4D8AD3BA /* SetupResumeAcceptor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SetupResumeAcceptor.h; path = rsocket/internal/SetupResumeAcceptor.h; sourceTree = ""; }; - 069507335A033B9D3A7F90B470BDB266 /* RNNotificationUtils.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNNotificationUtils.m; path = RNNotifications/RNNotificationUtils.m; sourceTree = ""; }; - 06A065E51F4D81504E316C27A77D26C1 /* RCTUIManagerObserverCoordinator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTUIManagerObserverCoordinator.h; sourceTree = ""; }; - 06AAD9D0F4DA3DB3A4910B53E9778504 /* ReactNativeKeyboardInput.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = ReactNativeKeyboardInput.xcconfig; sourceTree = ""; }; + 06BFEF585249683DDB63A5FFCD6DB695 /* RCTSurfaceSizeMeasureMode.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTSurfaceSizeMeasureMode.mm; sourceTree = ""; }; + 06C409AFE8FEA001361BA0AA4211B64D /* RAMBundleRegistry.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RAMBundleRegistry.h; sourceTree = ""; }; 06D222764BE5EFFDA1CB8E727535B257 /* GULAppDelegateSwizzler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULAppDelegateSwizzler.h; path = GoogleUtilities/AppDelegateSwizzler/Private/GULAppDelegateSwizzler.h; sourceTree = ""; }; 06EA43809DB273039C5E47565F2C72B1 /* camellia.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = camellia.h; path = ios/include/openssl/camellia.h; sourceTree = ""; }; 06F8EBA16B75A578F19F3C024272E7DB /* FIRInstallationsLogger.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstallationsLogger.m; path = FirebaseInstallations/Source/Library/FIRInstallationsLogger.m; sourceTree = ""; }; - 06FB3CE26855FB694C1788270CD863E2 /* RCTImageBlurUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageBlurUtils.h; path = Libraries/Image/RCTImageBlurUtils.h; sourceTree = ""; }; 06FC5C9CF96D60C50FCD47D339C91951 /* libnanopb.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libnanopb.a; path = libnanopb.a; sourceTree = BUILT_PRODUCTS_DIR; }; 06FE4534A33746E9A14498E2181A341F /* FlipperConnectionManagerImpl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FlipperConnectionManagerImpl.h; path = xplat/Flipper/FlipperConnectionManagerImpl.h; sourceTree = ""; }; - 071EAC1216B90DC198CDBCF0BD16D771 /* UMReactNativeAdapter-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "UMReactNativeAdapter-dummy.m"; sourceTree = ""; }; - 072440311BE630265E8A9BA9FE4B579C /* RNFirebaseLinks.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNFirebaseLinks.h; sourceTree = ""; }; + 06FF96511A3C3A8824ADBA61056687CA /* BSG_KSCrashSentry_Signal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashSentry_Signal.h; sourceTree = ""; }; + 072B9E791180B7D7FE19C97C893B6653 /* RNFetchBlobConst.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNFetchBlobConst.h; path = ios/RNFetchBlobConst.h; sourceTree = ""; }; 072C64D0E7E5B999D84E772A74C31778 /* dynamic.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = dynamic.h; path = folly/dynamic.h; sourceTree = ""; }; + 0743141D8418C1A30DAD5A62843860FB /* RCTPropsAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTPropsAnimatedNode.h; sourceTree = ""; }; 0769ED595B1401CF902DB671F1E66530 /* ScopeGuard.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = ScopeGuard.cpp; path = folly/ScopeGuard.cpp; sourceTree = ""; }; - 077B84BC0E5BCB688AF3980FA3447CFC /* RCTDatePicker.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTDatePicker.m; sourceTree = ""; }; - 077E104C263332DB4F4F7BD9DA062B78 /* KeyboardTrackingViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = KeyboardTrackingViewManager.h; path = lib/KeyboardTrackingViewManager.h; sourceTree = ""; }; - 078ACB560B9DF301B22DB27AC0251D1B /* BSG_KSJSONCodecObjC.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BSG_KSJSONCodecObjC.m; sourceTree = ""; }; - 079F6E76299A18536226AD3A42E9764F /* React-Core.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-Core.xcconfig"; sourceTree = ""; }; - 07AA1343D184912CDFB622E045546DFF /* RCTImageURLLoaderWithAttribution.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageURLLoaderWithAttribution.h; path = Libraries/Image/RCTImageURLLoaderWithAttribution.h; sourceTree = ""; }; - 07AF9A5578F23EBDE628D7A0CD44EE44 /* RCTSpringAnimation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSpringAnimation.h; sourceTree = ""; }; + 076D49CBA83759E8A47F4244DA64417A /* RCTInspectorPackagerConnection.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTInspectorPackagerConnection.m; sourceTree = ""; }; + 0790CCAD0E750D1F50CAEE0E3F6EBFA9 /* RNDateTimePicker-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNDateTimePicker-dummy.m"; sourceTree = ""; }; + 079AB77EDD953DCF82A8C9EDD5677892 /* RCTFrameAnimation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTFrameAnimation.m; sourceTree = ""; }; + 07A912C18DDE4C25DF54EFA9ED83B6A0 /* RCTKeyCommandsManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTKeyCommandsManager.h; path = ios/KeyCommands/RCTKeyCommandsManager.h; sourceTree = ""; }; 07B717D9C7622FEE492A55061400A1CC /* 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 = ""; }; + 07B9D1C1C458EDCC710AF4C3881744F3 /* EXLocalAuthentication.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXLocalAuthentication.h; path = EXLocalAuthentication/EXLocalAuthentication.h; sourceTree = ""; }; 07BCE1AE056CAF0D6339A46A3F531494 /* modes.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = modes.h; path = ios/include/openssl/modes.h; sourceTree = ""; }; 07BCE99FA93A40DB52862B5658D00310 /* FKPortForwardingCommon.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FKPortForwardingCommon.h; path = iOS/FlipperKit/FKPortForwarding/FKPortForwardingCommon.h; sourceTree = ""; }; - 07C4828CD0AFEB81ABBE1417846D2AAB /* ARTNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = ARTNode.m; path = ios/ARTNode.m; sourceTree = ""; }; + 07D2B9A5E19E6952441CA5E2EDE964E4 /* RNDateTimePicker.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RNDateTimePicker.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; 07EF8F24AB991394A0B0F3F56E87D22E /* ResumeIdentificationToken.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ResumeIdentificationToken.h; path = rsocket/framing/ResumeIdentificationToken.h; sourceTree = ""; }; + 08059AC4183ADBABDD17776B88788A08 /* SDWebImageError.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageError.h; path = SDWebImage/Core/SDWebImageError.h; sourceTree = ""; }; + 080B4680A156478BF9518255124A7C76 /* UMAccelerometerInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMAccelerometerInterface.h; path = UMSensorsInterface/UMAccelerometerInterface.h; sourceTree = ""; }; 080E1E929CA7373B755FD57255F88E0F /* CocoaAsyncSocket-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "CocoaAsyncSocket-prefix.pch"; sourceTree = ""; }; - 080EC6C50A948DD67F2B8A2304C6EB5F /* LNAnimator.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = LNAnimator.m; sourceTree = ""; }; - 081E5EECE46CD1A347C6EF95EB9C8529 /* RCTProfile.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTProfile.m; sourceTree = ""; }; - 082248F149CA01E5F5092279617FFF33 /* RCTActivityIndicatorView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTActivityIndicatorView.h; sourceTree = ""; }; - 08286E5500972EC4C7AFF7710EB30701 /* YGNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YGNode.h; path = yoga/YGNode.h; sourceTree = ""; }; - 085AB487C8EB644BA63C60DAF68D9AC4 /* RCTURLRequestDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTURLRequestDelegate.h; sourceTree = ""; }; + 0840F831C696E2F3C6A6216E2C1FE3E7 /* TurboModuleUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TurboModuleUtils.h; path = turbomodule/core/TurboModuleUtils.h; sourceTree = ""; }; 085AD3D2DD563788E6C7AD22A0ABAD84 /* RSocketTransport.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RSocketTransport.h; path = rsocket/transports/RSocketTransport.h; sourceTree = ""; }; + 087220498ABB5A8FD1700F9DB776AF7E /* RNCAppearanceProvider.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCAppearanceProvider.m; path = ios/Appearance/RNCAppearanceProvider.m; sourceTree = ""; }; 087E38FA9ADF56CBFB0A88F271CD2D97 /* Base.lproj */ = {isa = PBXFileReference; includeInIndex = 1; name = Base.lproj; path = "Objective-C/TOCropViewController/Resources/Base.lproj"; sourceTree = ""; }; 088370164BB99DF2DADD633FC502F026 /* anim_encode.c */ = {isa = PBXFileReference; includeInIndex = 1; name = anim_encode.c; path = src/mux/anim_encode.c; sourceTree = ""; }; - 08841ACBAD03EBFF0D2F52BD702B6CDA /* RCTShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTShadowView.m; sourceTree = ""; }; 08942B0A179F3F1363C8C8572C592955 /* frame_dec.c */ = {isa = PBXFileReference; includeInIndex = 1; name = frame_dec.c; path = src/dec/frame_dec.c; sourceTree = ""; }; - 08ABEBB9725655CC6ED26B3DEDB4CA00 /* RCTBackedTextInputDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBackedTextInputDelegate.h; sourceTree = ""; }; 08D1FFC2980C1ED72AE9A4C44A0544C3 /* libreact-native-document-picker.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libreact-native-document-picker.a"; path = "libreact-native-document-picker.a"; sourceTree = BUILT_PRODUCTS_DIR; }; - 093068FC0E267C91415EDE13698C369A /* JSCExecutorFactory.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = JSCExecutorFactory.mm; sourceTree = ""; }; + 08DDE9FE6DA89816C9D2D808455CFC86 /* UMViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = UMViewManager.m; path = UMCore/UMViewManager.m; sourceTree = ""; }; + 08ED769A31355E94E8B29A14CC12140F /* RCTAnimationPlugins.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTAnimationPlugins.h; path = Libraries/NativeAnimation/RCTAnimationPlugins.h; sourceTree = ""; }; 093E9DA3FA192A5297614C0C463DBC19 /* Unistd.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = Unistd.cpp; path = folly/portability/Unistd.cpp; sourceTree = ""; }; - 094B2079D554B45CE52B8DB78B37ADE8 /* UMModuleRegistryProvider.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = UMModuleRegistryProvider.m; sourceTree = ""; }; - 09A01FEB7B8297EBB01FB336C4B31A7F /* RNCSliderManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCSliderManager.m; path = ios/RNCSliderManager.m; sourceTree = ""; }; - 09AEF2D1F4A3A89E05BC42A67C9A9078 /* BSG_KSCrashType.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSCrashType.c; sourceTree = ""; }; + 0949276B5398E3DE89E7AA787164CA6B /* RCTInputAccessoryViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTInputAccessoryViewManager.h; sourceTree = ""; }; + 095516377AB8DD4947052A1C89D7D3B7 /* RNGestureHandler.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNGestureHandler.xcconfig; sourceTree = ""; }; + 096554FD575819BD9B6AA44AA32074DE /* RCTInputAccessoryView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTInputAccessoryView.m; sourceTree = ""; }; + 09A04ADE0053D599FD3C7F5E4EB1D387 /* TurboModuleBinding.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TurboModuleBinding.h; path = turbomodule/core/TurboModuleBinding.h; sourceTree = ""; }; + 09B37705AC1DB27483F491055BB8BA47 /* RCTSafeAreaShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSafeAreaShadowView.h; sourceTree = ""; }; 09B5856105EF7C6447B9EC57E7E36B34 /* libEXKeepAwake.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libEXKeepAwake.a; path = libEXKeepAwake.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 09CF615CD864B0E7013EFE0697D54749 /* QBSlomoIconView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = QBSlomoIconView.m; path = ios/QBImagePicker/QBImagePicker/QBSlomoIconView.m; sourceTree = ""; }; + 09DD8BB15FFE71AEB378FE3CFC19A219 /* BugsnagSessionTracker.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagSessionTracker.m; sourceTree = ""; }; 09DED66FCFC8C3AAC38BEDE2A70464FD /* en.lproj */ = {isa = PBXFileReference; includeInIndex = 1; name = en.lproj; path = "Objective-C/TOCropViewController/Resources/en.lproj"; sourceTree = ""; }; - 09E6F1B93BCEDB39360721493C91D27F /* React-RCTAnimation-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-RCTAnimation-dummy.m"; sourceTree = ""; }; - 0A0CD1151988E642F6763E1E0FEBC062 /* RCTConstants.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTConstants.h; sourceTree = ""; }; + 09F2E4C3C70FFCBA21F0A8C53FBCD359 /* EXLocalAuthentication.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXLocalAuthentication.m; path = EXLocalAuthentication/EXLocalAuthentication.m; sourceTree = ""; }; + 09FB5B11084F8AE4D8C395522E7DD90C /* RCTLayoutAnimationGroup.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTLayoutAnimationGroup.m; sourceTree = ""; }; 0A0DAB5825027912427BBC8195D3F162 /* AsyncSocketBase.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AsyncSocketBase.h; path = folly/io/async/AsyncSocketBase.h; sourceTree = ""; }; - 0A3317667F31F7168FA5A80542BA6B0B /* TurboModuleUtils.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = TurboModuleUtils.cpp; path = turbomodule/core/TurboModuleUtils.cpp; sourceTree = ""; }; - 0A3AF7F862CC74712717A4D37F702C87 /* RCTInspectorPackagerConnection.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTInspectorPackagerConnection.m; sourceTree = ""; }; - 0A3B08539A1E5B0286CB3F069942B8C7 /* RCTJavaScriptExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTJavaScriptExecutor.h; sourceTree = ""; }; 0A469974EB144681D75EE677799BD632 /* GDTCORReachability.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GDTCORReachability.m; path = GoogleDataTransport/GDTCORLibrary/GDTCORReachability.m; sourceTree = ""; }; 0A492A3D9D89118A05A744C52DF693A9 /* Flipper-PeerTalk-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Flipper-PeerTalk-dummy.m"; sourceTree = ""; }; 0A51B5944DAB19F25618C50A23CAAF4D /* String.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = String.h; path = folly/gen/String.h; sourceTree = ""; }; 0A5874AEF59E026C3AD3EDF6FE7090F0 /* FBLPromise+Timeout.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "FBLPromise+Timeout.m"; path = "Sources/FBLPromises/FBLPromise+Timeout.m"; sourceTree = ""; }; - 0A8028BCC58743A6AB3702379DF66EB6 /* RCTRawTextShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTRawTextShadowView.h; sourceTree = ""; }; + 0A68C5D28DBCE392CF63F916CC3F7262 /* RCTKeyboardObserver.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTKeyboardObserver.mm; sourceTree = ""; }; 0A8700F9216F84EC4EEF704759982EBB /* OpenSSLUtils.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = OpenSSLUtils.cpp; path = folly/io/async/ssl/OpenSSLUtils.cpp; sourceTree = ""; }; - 0A8F55A8C8BB50C6855CDE1204DD1AFF /* SDWebImageDownloaderConfig.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWebImageDownloaderConfig.m; path = SDWebImage/Core/SDWebImageDownloaderConfig.m; sourceTree = ""; }; - 0A9937D7A360E83F8CA7E0155AF042E5 /* SDAssociatedObject.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDAssociatedObject.m; path = SDWebImage/Private/SDAssociatedObject.m; sourceTree = ""; }; 0A9C8AA219AAFDA477CA1004291AB179 /* Select64.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Select64.h; path = folly/experimental/Select64.h; sourceTree = ""; }; - 0AC9C1DB7C04328B5BB8E33489022D4E /* BugsnagApiClient.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagApiClient.m; sourceTree = ""; }; - 0ACC86BFC387731739DC830B7201E00D /* RCTImageSource.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTImageSource.h; sourceTree = ""; }; + 0AB4F00648ECDD7EB9847E2E41DE63DB /* UIImage+Resize.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIImage+Resize.h"; path = "ios/src/UIImage+Resize.h"; sourceTree = ""; }; 0AD1D003B598514E16C0786487FABBB2 /* Pods-ShareRocketChatRN-acknowledgements.markdown */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; path = "Pods-ShareRocketChatRN-acknowledgements.markdown"; sourceTree = ""; }; 0AE130A027B7F43833C7C43F403F665A /* GlobalExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GlobalExecutor.h; path = folly/executors/GlobalExecutor.h; sourceTree = ""; }; 0AE7D0770D2BE30C5BDABB080AA8E015 /* FlipperCppBridgingResponder.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = FlipperCppBridgingResponder.mm; path = iOS/FlipperKit/CppBridge/FlipperCppBridgingResponder.mm; sourceTree = ""; }; - 0AEBB74E46017DCAE9ED28A67AE68D17 /* RCTUIImageViewAnimated.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTUIImageViewAnimated.h; path = Libraries/Image/RCTUIImageViewAnimated.h; sourceTree = ""; }; - 0B0A67F61C92A74A973F3AD157FF31AE /* ReactCommon.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = ReactCommon.xcconfig; sourceTree = ""; }; - 0B0EB0C1455E1309931489C3C4346DC9 /* REATransformNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REATransformNode.m; sourceTree = ""; }; + 0AF1AD54C5CF460203BD0AA933CE0D69 /* RCTVibrationPlugins.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTVibrationPlugins.mm; sourceTree = ""; }; 0B20C7AD4C0DAFD0A549410FB953D3C7 /* ApplyTuple.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ApplyTuple.h; path = folly/functional/ApplyTuple.h; sourceTree = ""; }; + 0B217D51308A68DF44C777F4D508D308 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; 0B31005ABA816DF2BAF8B73B5030CBC2 /* FIRComponentType.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRComponentType.m; path = FirebaseCore/Sources/FIRComponentType.m; sourceTree = ""; }; 0B38F44E67E4A3E8B7610532B8694EC3 /* Arena.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Arena.h; path = folly/memory/Arena.h; sourceTree = ""; }; - 0B3D37D4AD8CFFB551561CAB8EFED1F7 /* RNFirebaseDatabaseReference.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNFirebaseDatabaseReference.h; sourceTree = ""; }; + 0B431477ACB5A85264BFD888CE0845BB /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; 0B4C7BCE8DE1F357EC2A2E9C1BEB2D53 /* SKViewControllerDescriptor.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SKViewControllerDescriptor.m; path = iOS/Plugins/FlipperKitLayoutPlugin/FlipperKitLayoutPlugin/descriptors/SKViewControllerDescriptor.m; sourceTree = ""; }; - 0B54E1D7B3FDC8FE90C21E035DC2B477 /* ARTTextManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = ARTTextManager.m; sourceTree = ""; }; - 0B64EEB3F7933A5B2098647909E0ED92 /* UMCore.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMCore.xcconfig; sourceTree = ""; }; + 0B57FDB912A64CE327E7E3F4AEBF13EB /* BugsnagNotifier.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagNotifier.h; sourceTree = ""; }; 0B699E2A67EEA22C814FEAB92F07069D /* 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 = ""; }; - 0B7FF6573344CDA68FFC6BB1457E8553 /* NSDataBigString.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = NSDataBigString.h; sourceTree = ""; }; - 0BA71B3682336787CBEDC68D8B7DEFCD /* RCTDecayAnimation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTDecayAnimation.m; sourceTree = ""; }; + 0BA9BC34F99DC62F2FC25B815203955B /* RCTConvert.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTConvert.m; sourceTree = ""; }; 0BC9EB36FA9896389542A9FC6195B19B /* FutureDAG.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FutureDAG.h; path = folly/experimental/FutureDAG.h; sourceTree = ""; }; 0BCE56F98F0FD3F694163684BF304F9A /* ParallelMap.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ParallelMap.h; path = folly/gen/ParallelMap.h; sourceTree = ""; }; - 0BD21030CD3C2076216E327F1F2AB1A2 /* RCTScrollableProtocol.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTScrollableProtocol.h; sourceTree = ""; }; - 0BF0F433723BD9A207365B72398890D4 /* react-native-cameraroll-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "react-native-cameraroll-prefix.pch"; sourceTree = ""; }; - 0BF107D5D9DB209E57E52C2D601BFC40 /* EXAudioSessionManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXAudioSessionManager.m; path = EXAV/EXAudioSessionManager.m; sourceTree = ""; }; + 0BD770BE826215295C464B2BD109D4F0 /* RCTConvertHelpers.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTConvertHelpers.mm; sourceTree = ""; }; + 0BDC48158257177D1F6962E8131E1367 /* RCTModuloAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTModuloAnimatedNode.m; sourceTree = ""; }; 0BF59E237AF5DB0D099095014DA0DC64 /* CPUThreadPoolExecutor.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = CPUThreadPoolExecutor.cpp; path = folly/executors/CPUThreadPoolExecutor.cpp; sourceTree = ""; }; - 0BFB651D0748DF11336DEDB9ED0D4468 /* RCTScrollContentView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTScrollContentView.h; sourceTree = ""; }; - 0C16D5592AAF54FDAD9945573AAF7295 /* YGNodePrint.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = YGNodePrint.cpp; path = yoga/YGNodePrint.cpp; sourceTree = ""; }; - 0C17DAEB767685E151CBEEE677106E5A /* EXRemoteNotificationPermissionRequester.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = EXRemoteNotificationPermissionRequester.m; sourceTree = ""; }; - 0C1D0B760CCF24755B2727D31B9EDCE0 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; 0C278AB3E6FCF15F4728074C278D384B /* SocketFastOpen.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = SocketFastOpen.cpp; path = folly/detail/SocketFastOpen.cpp; sourceTree = ""; }; - 0C4E83823B124CE4BEA4F71B475706AD /* Instance.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = Instance.h; sourceTree = ""; }; - 0C5479F774B6CA1B2BC9515C2724511F /* RCTTypedModuleConstants.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTypedModuleConstants.h; sourceTree = ""; }; + 0C3D5B22C76B93E520B9CCDF06C95291 /* RCTNetworkTask.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTNetworkTask.h; path = Libraries/Network/RCTNetworkTask.h; sourceTree = ""; }; 0C5ABBDFB0EB3AB7D3EA468CF07FA3BC /* fast-dtoa.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "fast-dtoa.h"; path = "double-conversion/fast-dtoa.h"; sourceTree = ""; }; - 0C63A47DAF16CD2A0834B1A35401355C /* UIImage+GIF.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIImage+GIF.m"; path = "SDWebImage/Core/UIImage+GIF.m"; sourceTree = ""; }; - 0C69A4C9BEE6C6DB95D331757A1B845D /* RNPushKitEventHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNPushKitEventHandler.m; path = RNNotifications/RNPushKitEventHandler.m; sourceTree = ""; }; - 0C7E521014162B0C14C9EB7404009500 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; - 0C879FAF890CC44C742103804933655E /* BSGOutOfMemoryWatchdog.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSGOutOfMemoryWatchdog.h; sourceTree = ""; }; - 0C87E1F4965B92CF2B0D2DECD11DAE13 /* RNBootSplash-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNBootSplash-prefix.pch"; sourceTree = ""; }; + 0C6B81D69B35EC84BF3B585025BFA48B /* UMExportedModule.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = UMExportedModule.m; path = UMCore/UMExportedModule.m; sourceTree = ""; }; 0C89CA7C949CC2297DDA1B574D639836 /* FBLPromise+Async.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "FBLPromise+Async.m"; path = "Sources/FBLPromises/FBLPromise+Async.m"; sourceTree = ""; }; + 0C8A5ACEDCFCD0396BDDE985B5B2700A /* RNGestureHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNGestureHandler.h; path = ios/RNGestureHandler.h; sourceTree = ""; }; 0CA4586504E0FD172DD164A3A4F5FD53 /* AsyncSocket.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AsyncSocket.h; path = folly/io/async/AsyncSocket.h; sourceTree = ""; }; - 0CB1410A921E227EA20B80E650DF64E8 /* RNPushKitEventHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNPushKitEventHandler.h; path = RNNotifications/RNPushKitEventHandler.h; sourceTree = ""; }; - 0CBE6A03E32FC26465FCF0F3AF1DFDEB /* FBReactNativeSpec.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = FBReactNativeSpec.xcconfig; sourceTree = ""; }; + 0CA9509B1F8F03C4F5576D2175D6CF93 /* RCTViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTViewManager.m; sourceTree = ""; }; + 0CAE368C8A53780368D62B25F3EC15CC /* EXWebBrowser.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = EXWebBrowser.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; 0CCDADBF1E0BCF5E4B4986AC4DA0A3F9 /* ManualTimekeeper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ManualTimekeeper.h; path = folly/futures/ManualTimekeeper.h; sourceTree = ""; }; + 0CEF4454A8598F68A23B09EE381083DD /* RNImageCropPicker.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNImageCropPicker.xcconfig; sourceTree = ""; }; 0D083D91DCF05A1194D88C22CACAC0A4 /* FBLPromise+Timeout.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FBLPromise+Timeout.h"; path = "Sources/FBLPromises/include/FBLPromise+Timeout.h"; sourceTree = ""; }; - 0D124C870BD1AD4EF03CD7AC69FA610F /* RCTRootShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTRootShadowView.m; sourceTree = ""; }; + 0D0FDF41D4C7385A156979B710531C43 /* SDImageGIFCoder.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageGIFCoder.m; path = SDWebImage/Core/SDImageGIFCoder.m; sourceTree = ""; }; 0D15813CBCD75E6248C5684A453D7F43 /* CancellationToken.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CancellationToken.h; path = folly/CancellationToken.h; sourceTree = ""; }; + 0D1E7B3AAB592A39BB127BDA3FA92FC9 /* EXVideoPlayerViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = EXVideoPlayerViewController.h; sourceTree = ""; }; 0D21BF6BCB829FC04D2BC3A16759D75A /* upsampling_mips_dsp_r2.c */ = {isa = PBXFileReference; includeInIndex = 1; name = upsampling_mips_dsp_r2.c; path = src/dsp/upsampling_mips_dsp_r2.c; sourceTree = ""; }; + 0D23C8446A63613DDE65863DB9A8961D /* BSG_KSCrashSentry_MachException.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashSentry_MachException.h; sourceTree = ""; }; + 0D506BAB8ED343238D0B812184000603 /* BugsnagMetaData.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagMetaData.h; sourceTree = ""; }; 0D525395ABBADE7600560BDA60B7A6FB /* SoftRealTimeExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SoftRealTimeExecutor.h; path = folly/executors/SoftRealTimeExecutor.h; sourceTree = ""; }; 0D589AAC9C2027007645B7D5BDA05231 /* GDTCORPlatform.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCORPlatform.h; path = GoogleDataTransport/GDTCORLibrary/Public/GDTCORPlatform.h; sourceTree = ""; }; + 0D624D60ED21A60D148726AD24981930 /* EXKeepAwake.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = EXKeepAwake.xcconfig; sourceTree = ""; }; 0D65795EAEBDB3248E4FFEFD8AE28B5B /* 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 = ""; }; - 0DC4753856349A20BF60E239F3DE0374 /* ReactNativeART-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "ReactNativeART-dummy.m"; sourceTree = ""; }; - 0DC98997424B18CC73CB93D3C00FFEDB /* RNCSafeAreaProvider.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCSafeAreaProvider.h; path = ios/SafeAreaView/RNCSafeAreaProvider.h; sourceTree = ""; }; + 0D677C7EB0FF4DC9417331352B0AD105 /* RNSScreenStackHeaderConfig.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNSScreenStackHeaderConfig.m; path = ios/RNSScreenStackHeaderConfig.m; sourceTree = ""; }; + 0D7E51FB5AD15ED2B782EC8ABDA4F405 /* RCTAnimationDriver.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTAnimationDriver.h; sourceTree = ""; }; + 0DA218512ECDA548220EBC5D4723BD8D /* EXVideoThumbnailsModule.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXVideoThumbnailsModule.m; path = EXVideoThumbnails/EXVideoThumbnailsModule.m; sourceTree = ""; }; + 0DB7857045518792C326351B1DBEB75D /* ReactNativeShareExtension.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = ReactNativeShareExtension.m; path = ios/ReactNativeShareExtension.m; sourceTree = ""; }; + 0DE8FD68C12095C34E9DB34D506F06B0 /* QBSlomoIconView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = QBSlomoIconView.m; path = ios/QBImagePicker/QBImagePicker/QBSlomoIconView.m; sourceTree = ""; }; 0DEA16C84145A5C716890FD5A24439FB /* Config.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Config.h; path = folly/portability/Config.h; sourceTree = ""; }; - 0DFBE72CD90D262E7A6933E7E30E47E9 /* BSG_KSMachApple.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSMachApple.h; sourceTree = ""; }; - 0E07A1EA86C3DEBCE81DC09370DFC974 /* RCTPlatform.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTPlatform.h; path = React/CoreModules/RCTPlatform.h; sourceTree = ""; }; - 0E1555A71B1B88690357F182AE3E27EA /* EXVideoPlayerViewControllerDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = EXVideoPlayerViewControllerDelegate.h; sourceTree = ""; }; - 0E3265C42333A48771EC37248BBC59B3 /* RNFirebaseAdMobRewardedVideo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNFirebaseAdMobRewardedVideo.h; sourceTree = ""; }; - 0E3C14843CFD8E90981B9685A9A32E31 /* EXFileSystemLocalFileHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXFileSystemLocalFileHandler.m; path = EXFileSystem/EXFileSystemLocalFileHandler.m; sourceTree = ""; }; - 0E42CC7555AD8E8F6B67AFD7B4427870 /* MaterialIcons.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = MaterialIcons.ttf; path = Fonts/MaterialIcons.ttf; sourceTree = ""; }; - 0E4627AF647F69A0666BB332B99DFB32 /* React-jsinspector.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-jsinspector.xcconfig"; sourceTree = ""; }; - 0E8F0C8A8EA584A96DEEF4825A115884 /* UMFontScalerInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMFontScalerInterface.h; path = UMFontInterface/UMFontScalerInterface.h; sourceTree = ""; }; + 0E054B45EF98F3699A1A102C4A72AEC1 /* SDImageCache.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageCache.m; path = SDWebImage/Core/SDImageCache.m; sourceTree = ""; }; 0E90ABA43547076CF75FFE95114B3CD8 /* NotificationQueue.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = NotificationQueue.h; path = folly/io/async/NotificationQueue.h; sourceTree = ""; }; - 0E942DCB54F046D2146E9F69DC7E1335 /* BSG_KSSysCtl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSSysCtl.h; sourceTree = ""; }; - 0EA2652DADB72FFC3372DC4610D94043 /* RCTNativeModule.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTNativeModule.mm; sourceTree = ""; }; + 0E9656B6E38543AFA92FD375694AA063 /* BSG_KSBacktrace.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSBacktrace.c; sourceTree = ""; }; 0EC05AA3F51FFF6F2DA357A81C9C31CE /* DrivableExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DrivableExecutor.h; path = folly/executors/DrivableExecutor.h; sourceTree = ""; }; - 0EF2C04C9FBCE8D759B215220D6D7AE3 /* TurboModule.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = TurboModule.cpp; path = turbomodule/core/TurboModule.cpp; sourceTree = ""; }; - 0F0512CBCDA1447DCD89511D30DA8FCF /* REAFunctionNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REAFunctionNode.m; sourceTree = ""; }; - 0F10B8B6674550EA000A3ABB3BCA9273 /* UMModuleRegistryProvider.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMModuleRegistryProvider.h; sourceTree = ""; }; + 0EDC966D5F288AF64A01C3BF698E0A5E /* BugsnagCollections.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagCollections.m; sourceTree = ""; }; + 0EF5E543404D4EB3CA8D67FB8B099920 /* LongLivedObject.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = LongLivedObject.h; path = turbomodule/core/LongLivedObject.h; sourceTree = ""; }; + 0F0A7636B11BE0C89E122CA2C9F175B5 /* FFFastImageViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FFFastImageViewManager.h; path = ios/FastImage/FFFastImageViewManager.h; sourceTree = ""; }; + 0F23A58D8E0D9A90535E8C7C0ECB2486 /* RCTPickerManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTPickerManager.h; sourceTree = ""; }; 0F2D3B9CF557114DC33DF027B49A13FB /* FIRInstallationsIDController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstallationsIDController.h; path = FirebaseInstallations/Source/Library/InstallationsIDController/FIRInstallationsIDController.h; sourceTree = ""; }; - 0F40B52FC2DFDB13480B387C4F29CA0F /* EXVideoPlayerViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = EXVideoPlayerViewController.m; sourceTree = ""; }; + 0F34BB7CBA420C7AC1B6C2A580D80420 /* React-RCTAnimation.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = "React-RCTAnimation.podspec"; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 0F43B4E4107DC5E86D54B2C3C3D3958F /* REAParamNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REAParamNode.m; sourceTree = ""; }; + 0F6027A1B0EC49F593EF0E034F4D51C4 /* REAEventNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REAEventNode.m; sourceTree = ""; }; 0F897454653A2D3E345A1AA30CB71ED7 /* Flipper-DoubleConversion.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Flipper-DoubleConversion.xcconfig"; sourceTree = ""; }; + 0F8EBCA3681FC7E917B0E2DFAA50C6AD /* REATransitionAnimation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REATransitionAnimation.m; sourceTree = ""; }; + 0F96951AC94234573E82080F6A13DEE2 /* UMAppDelegateWrapper.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = UMAppDelegateWrapper.m; path = UMCore/UMAppDelegateWrapper.m; sourceTree = ""; }; + 0FA9B2C2D5754D63FD96CB78C1559C15 /* UMTaskServiceInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMTaskServiceInterface.h; path = UMTaskManagerInterface/UMTaskServiceInterface.h; sourceTree = ""; }; 0FACA78D90AB953F871C42892796C3B0 /* FBLPromise+All.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "FBLPromise+All.m"; path = "Sources/FBLPromises/FBLPromise+All.m"; sourceTree = ""; }; - 0FBCF12118BE36F18E343B01FE292CBC /* RCTMultilineTextInputView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTMultilineTextInputView.m; sourceTree = ""; }; - 0FBF585EBA9B386402A60BD79F70A534 /* SimpleLineIcons.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = SimpleLineIcons.ttf; path = Fonts/SimpleLineIcons.ttf; sourceTree = ""; }; 0FD3E4CFE5DBDA98213FB9D73FDC4C26 /* GULNSData+zlib.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "GULNSData+zlib.m"; path = "GoogleUtilities/NSData+zlib/GULNSData+zlib.m"; sourceTree = ""; }; 0FDC6B990073E8B1A8B035C2933F316A /* FBCxxFollyDynamicConvert.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = FBCxxFollyDynamicConvert.mm; path = iOS/FlipperKit/FBCxxFollyDynamicConvert/FBCxxFollyDynamicConvert.mm; sourceTree = ""; }; - 0FEB237EFA588675D5F1D8F4365EE764 /* SDWebImageDownloaderOperation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWebImageDownloaderOperation.m; path = SDWebImage/Core/SDWebImageDownloaderOperation.m; sourceTree = ""; }; + 0FE5F65DB5679525ECA89DF642E89D41 /* BSG_KSCrashReportStore.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashReportStore.h; sourceTree = ""; }; 101039A0E2F69BBC8476AB61583B7249 /* TOCroppedImageAttributes.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = TOCroppedImageAttributes.m; path = "Objective-C/TOCropViewController/Models/TOCroppedImageAttributes.m"; sourceTree = ""; }; - 104C42A61B3D6157224ED06DBE2DF1F4 /* SDDiskCache.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDDiskCache.m; path = SDWebImage/Core/SDDiskCache.m; sourceTree = ""; }; - 106F6B8D6E0E1D4159EFC59CA49D35ED /* RCTSegmentedControl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSegmentedControl.h; sourceTree = ""; }; - 107E6EA09D55A51A08CC1346FF70D5AC /* UMAppLoaderProvider.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = UMAppLoaderProvider.m; path = UMAppLoader/UMAppLoaderProvider.m; sourceTree = ""; }; - 10814B74CDE15DC6EB1F5120B83AF3C0 /* SDWebImageDownloaderRequestModifier.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageDownloaderRequestModifier.h; path = SDWebImage/Core/SDWebImageDownloaderRequestModifier.h; sourceTree = ""; }; 1087704F8AB27E2FC8CEA11CCA45BA10 /* ReentrantAllocator.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = ReentrantAllocator.cpp; path = folly/memory/ReentrantAllocator.cpp; sourceTree = ""; }; 108FFC228C1812512805FE28F3585E1A /* NestedCommandLineApp.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = NestedCommandLineApp.h; path = folly/experimental/NestedCommandLineApp.h; sourceTree = ""; }; 1096C62987E060CDB91A9A0667807111 /* Demangle.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Demangle.h; path = folly/detail/Demangle.h; sourceTree = ""; }; - 10A12DBED3913027E742D5A12B53ADD7 /* Yoga.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = Yoga.modulemap; sourceTree = ""; }; 10AC0610BFD1233219F62C08EA9836D5 /* AtomicHashArray-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "AtomicHashArray-inl.h"; path = "folly/AtomicHashArray-inl.h"; sourceTree = ""; }; - 10BC9BB79CE745F5F7AA23B9ACEDFC2A /* RCTImageViewManager.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTImageViewManager.mm; sourceTree = ""; }; + 10AFB724F1BD20A55EBE95DD3FA755C0 /* BSG_KSObjC.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSObjC.h; sourceTree = ""; }; + 10B05F8A962EFF81475D49929A49373A /* EXAppleAuthenticationRequest.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXAppleAuthenticationRequest.m; path = EXAppleAuthentication/EXAppleAuthenticationRequest.m; sourceTree = ""; }; + 10C0B7CC1D09FF9456E6432C3AAEB02D /* RCTScrollEvent.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTScrollEvent.m; sourceTree = ""; }; 10D8024A3E862301166AF1F823758DFE /* fast-dtoa.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = "fast-dtoa.cc"; path = "double-conversion/fast-dtoa.cc"; sourceTree = ""; }; 10E27EE0A11AA474165B731B0190E8C4 /* CertificateUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CertificateUtils.h; path = xplat/Flipper/CertificateUtils.h; sourceTree = ""; }; - 110E77A6AB839639D0BB6E6E11CA239A /* RNRootView-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNRootView-prefix.pch"; sourceTree = ""; }; - 11124971ECBA9E121883A6EF7A92CE49 /* BSG_KSCrashSentry.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSCrashSentry.c; sourceTree = ""; }; - 11145ABC1368532AD8C8BAA8E947BA5F /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; + 10E7A69DA6A55396675CCA922EB93C4B /* RCTComponentEvent.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTComponentEvent.m; sourceTree = ""; }; + 1127F85247DE1FD3C77B7099CEC8B530 /* UMReactNativeAdapter.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMReactNativeAdapter.xcconfig; sourceTree = ""; }; 113CABA82A1AFDABBD9BD0633DB77BE6 /* SingleWriterFixedHashMap.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SingleWriterFixedHashMap.h; path = folly/experimental/SingleWriterFixedHashMap.h; sourceTree = ""; }; + 11604FDD5EC9FBC4D21992042188DD12 /* RNCSliderManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCSliderManager.h; path = ios/RNCSliderManager.h; sourceTree = ""; }; 11660FFD2D5E05362E022517E8D47E88 /* UICollectionView+SKInvalidation.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = "UICollectionView+SKInvalidation.mm"; path = "iOS/Plugins/FlipperKitLayoutPlugin/FlipperKitLayoutPlugin/UICollectionView+SKInvalidation.mm"; sourceTree = ""; }; + 116B302449CE440A21E2528007401B44 /* EXAppleAuthentication.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXAppleAuthentication.h; path = EXAppleAuthentication/EXAppleAuthentication.h; sourceTree = ""; }; 117D6F285FFB893278988CB329E1BA68 /* Pretty.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Pretty.h; path = folly/lang/Pretty.h; sourceTree = ""; }; - 11893D7D91D9CBDF71B033F695F52827 /* UMTaskConsumerInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMTaskConsumerInterface.h; path = UMTaskManagerInterface/UMTaskConsumerInterface.h; sourceTree = ""; }; - 119FA8BE700BB585F326E8DDDBE2097B /* BSG_KSCrashCallCompletion.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BSG_KSCrashCallCompletion.m; sourceTree = ""; }; + 117DB187AEB1789099734D5233BE55B9 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; + 118E42AF1BC7F24909BA337877CE0805 /* BSGSerialization.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BSGSerialization.m; sourceTree = ""; }; + 119A86EF874A697FF838E52CD77370EB /* RNCAppearanceProviderManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCAppearanceProviderManager.m; path = ios/Appearance/RNCAppearanceProviderManager.m; sourceTree = ""; }; 11B81A5FEB883D4AA13766110CDCE04B /* bufferevent_compat.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = bufferevent_compat.h; path = src/event2/bufferevent_compat.h; sourceTree = ""; }; + 11B93378FF4BA7D70A5B6DF266EE4358 /* RNDeviceInfo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNDeviceInfo.h; path = ios/RNDeviceInfo/RNDeviceInfo.h; sourceTree = ""; }; 11C02616B5C0A1629DE792B60F8EE355 /* WaitOptions.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = WaitOptions.h; path = folly/synchronization/WaitOptions.h; sourceTree = ""; }; + 11D2E193F815FCC16109E3E518583288 /* RCTAsyncLocalStorage.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTAsyncLocalStorage.mm; sourceTree = ""; }; + 11DBD2E827F7F79844C5E1DCCEDD3BCD /* UMImageLoaderInterface.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMImageLoaderInterface.xcconfig; sourceTree = ""; }; 11EA20EEA3BE11B46C97E00FE1D99E02 /* GlobalThreadPoolList.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GlobalThreadPoolList.h; path = folly/executors/GlobalThreadPoolList.h; sourceTree = ""; }; 11EAE715397E8FE0FA3CB97ED5895596 /* Unistd.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Unistd.h; path = folly/portability/Unistd.h; sourceTree = ""; }; 120F2F5591146C7F60A5E7F5D1050B47 /* vp8li_dec.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = vp8li_dec.h; path = src/dec/vp8li_dec.h; sourceTree = ""; }; - 1210196EDCC2368A83CE532E53CAB073 /* EXLocalAuthentication.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXLocalAuthentication.m; path = EXLocalAuthentication/EXLocalAuthentication.m; sourceTree = ""; }; 1211C74ED88052FE47183F43521FDB6B /* AtomicSharedPtr.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AtomicSharedPtr.h; path = folly/concurrency/AtomicSharedPtr.h; sourceTree = ""; }; - 122E04F7E1EC2E9AFE681E66A2D5D1FC /* RNCAppearance.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCAppearance.m; path = ios/Appearance/RNCAppearance.m; sourceTree = ""; }; + 1231FB4D14B77E0E66B8591FC93D3067 /* Octicons.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = Octicons.ttf; path = Fonts/Octicons.ttf; sourceTree = ""; }; + 1234D762A2CB0BFC75543A7CFE6CB8F5 /* RCTInputAccessoryShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTInputAccessoryShadowView.h; sourceTree = ""; }; 123D42F2364ADFC74FCB4B75098452B2 /* fa-IR.lproj */ = {isa = PBXFileReference; includeInIndex = 1; name = "fa-IR.lproj"; path = "Objective-C/TOCropViewController/Resources/fa-IR.lproj"; sourceTree = ""; }; - 124072C8CF5B3C82CAF4ECD605BC4C4E /* RCTSinglelineTextInputViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSinglelineTextInputViewManager.h; sourceTree = ""; }; - 126199C73856BB1169A9044CA9A5649D /* RCTSurfaceRootView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSurfaceRootView.h; sourceTree = ""; }; 12685E77FBCB9CBCC8C7CBA44526FD02 /* SwappableEventBase.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SwappableEventBase.h; path = rsocket/internal/SwappableEventBase.h; sourceTree = ""; }; 126CB7FE81224259DFF1F3CE6B1112D3 /* GroupVarint.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GroupVarint.h; path = folly/GroupVarint.h; sourceTree = ""; }; - 12760B2ADEEB617BF703F0D43FEFCC77 /* RCTView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTView.h; sourceTree = ""; }; + 1279C4ABA374EFA8A9057FF167E8435B /* EXKeepAwake.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXKeepAwake.h; path = EXKeepAwake/EXKeepAwake.h; sourceTree = ""; }; 1299B516202C6B6DD5D3B44DDCAB43AF /* GDTCORDataFuture.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GDTCORDataFuture.m; path = GoogleDataTransport/GDTCORLibrary/GDTCORDataFuture.m; sourceTree = ""; }; 12B2B27F837989ABA1A2A07BDA1C4149 /* SSLErrors.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SSLErrors.h; path = folly/io/async/ssl/SSLErrors.h; sourceTree = ""; }; + 12C15A8BB31648A1D34690B78BC5735C /* RNCMaskedView.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNCMaskedView.xcconfig; sourceTree = ""; }; 12CD80C83BEB69E40871C0FC92B59C60 /* enc_sse2.c */ = {isa = PBXFileReference; includeInIndex = 1; name = enc_sse2.c; path = src/dsp/enc_sse2.c; sourceTree = ""; }; - 12CD988AB5526B4808905AE557BF0F4D /* ModuleRegistry.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = ModuleRegistry.cpp; sourceTree = ""; }; + 12D03474B370C62E4FCAEDB9AAD78165 /* RCTBorderDrawing.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTBorderDrawing.m; sourceTree = ""; }; 12D3717C18660E0F2A02FEC09AFC1346 /* dtls1.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = dtls1.h; path = ios/include/openssl/dtls1.h; sourceTree = ""; }; - 12D61B0E0EB973297C194764B16CFAC9 /* UMReactLogHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMReactLogHandler.h; sourceTree = ""; }; + 12D38373AB43F2527570A9F95C0148FE /* RCTWebSocketExecutor.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTWebSocketExecutor.mm; sourceTree = ""; }; 12D7348ECB9E178985096E40F683606A /* logging.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = logging.h; path = src/glog/logging.h; sourceTree = ""; }; 12E7DBE9A6D2E2B64628A51D714E14E5 /* TimekeeperScheduledExecutor.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = TimekeeperScheduledExecutor.cpp; path = folly/executors/TimekeeperScheduledExecutor.cpp; sourceTree = ""; }; + 12E989223DA58403D8F25F90FBFE8DCB /* BSG_KSCrashIdentifier.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BSG_KSCrashIdentifier.m; sourceTree = ""; }; 12E9A42573FF35B5739794EE14DB0D7D /* MicroSpinLock.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MicroSpinLock.h; path = folly/MicroSpinLock.h; sourceTree = ""; }; + 12E9A93D13DA9FBBB4E97F2E712C7DBF /* Foundation.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = Foundation.ttf; path = Fonts/Foundation.ttf; sourceTree = ""; }; 12EC624D805F2A2DF72612BAE59EF11A /* RSocketServer.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = RSocketServer.cpp; path = rsocket/RSocketServer.cpp; sourceTree = ""; }; 12ED3A017DA113F5FB9A727B91D58167 /* Flipper-Glog-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Flipper-Glog-dummy.m"; sourceTree = ""; }; - 12EDE432BD3D8860F80EBFF04A6C53E4 /* RCTConvert+Transform.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RCTConvert+Transform.h"; sourceTree = ""; }; - 12FC96FD85B0EE6C53FFF770B8B474F5 /* UMViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = UMViewManager.m; path = UMCore/UMViewManager.m; sourceTree = ""; }; + 12F285178BDD6B391BDB1020A4DCDE13 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; + 13001F964D6B21E722744820848AADB7 /* RCTTypedModuleConstants.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTTypedModuleConstants.mm; sourceTree = ""; }; 130335B611EDD6AFF8824641E06138D6 /* libEXVideoThumbnails.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libEXVideoThumbnails.a; path = libEXVideoThumbnails.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 131281C3CA3CBEF8B374B1DA5946C719 /* SDWebImageDownloaderOperation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageDownloaderOperation.h; path = SDWebImage/Core/SDWebImageDownloaderOperation.h; sourceTree = ""; }; - 131CD649B2B7FE421F563A3FE5F15B97 /* RCTLocalAssetImageLoader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTLocalAssetImageLoader.h; path = Libraries/Image/RCTLocalAssetImageLoader.h; sourceTree = ""; }; + 132512A9488538200230AE9B85864B1B /* ARTGroup.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ARTGroup.h; path = ios/ARTGroup.h; sourceTree = ""; }; 133D0B8106A5DF5A97A1EC55698B5430 /* vlog_is_on.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = vlog_is_on.cc; path = src/vlog_is_on.cc; sourceTree = ""; }; 134809788D95B1424C9966E8E30A136E /* IPAddressV4.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = IPAddressV4.cpp; path = folly/IPAddressV4.cpp; sourceTree = ""; }; - 134E75B44815EFD151A2D9B70BD40986 /* RNSScreen.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNSScreen.h; path = ios/RNSScreen.h; sourceTree = ""; }; + 134E16391744A20EC630C21C6A5E930E /* UMFileSystemInterface.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMFileSystemInterface.xcconfig; sourceTree = ""; }; 13557C0B7A0B2B1C2F2818AEAF31F414 /* FLEXNetworkRecorder.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = FLEXNetworkRecorder.mm; path = iOS/Plugins/FlipperKitNetworkPlugin/SKIOSNetworkPlugin/FLEXNetworkLib/FLEXNetworkRecorder.mm; sourceTree = ""; }; - 136C438561B6D5CB3D1286C9153B7C31 /* ARTText.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = ARTText.m; path = ios/ARTText.m; sourceTree = ""; }; + 136E655496E176517522A7487C4759A4 /* RCTRefreshControlManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTRefreshControlManager.h; sourceTree = ""; }; + 13793D27D9663EE2DFE9483A184CEDF5 /* REAValueNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REAValueNode.h; sourceTree = ""; }; + 137FE58F1CDB2EC5FF9EF933090BAFAE /* RCTBridge.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTBridge.m; sourceTree = ""; }; 1381B07386B17DB1B283F6B3EC16F8CA /* Hazptr-fwd.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "Hazptr-fwd.h"; path = "folly/synchronization/Hazptr-fwd.h"; sourceTree = ""; }; + 13A02F286E0993491012177E63DC267A /* event.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = event.cpp; sourceTree = ""; }; + 13A121E1C5CEF11DC3036020F0D9B306 /* RCTAccessibilityManager.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTAccessibilityManager.mm; sourceTree = ""; }; + 13AB55238B4874EF9DC2114874CF65B3 /* BugsnagCrashReport.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagCrashReport.m; sourceTree = ""; }; + 13AC71B6253B71FA0A15698F5F7817BE /* React-CoreModules.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-CoreModules.xcconfig"; sourceTree = ""; }; 13C8C8B254851998F9289F71229B28A2 /* libFirebaseInstallations.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libFirebaseInstallations.a; path = libFirebaseInstallations.a; sourceTree = BUILT_PRODUCTS_DIR; }; + 13CC2D28BDC280DC4C8E82643F75B4B9 /* RCTInputAccessoryView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTInputAccessoryView.h; sourceTree = ""; }; 13CCEE65A81AC4AEFAF2C7B869CEC702 /* id.lproj */ = {isa = PBXFileReference; includeInIndex = 1; name = id.lproj; path = "Objective-C/TOCropViewController/Resources/id.lproj"; sourceTree = ""; }; + 13CFFC02BC55E77948F98BD3E18ADF15 /* ARTTextManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = ARTTextManager.m; sourceTree = ""; }; + 13E446B7980C89510B45F4AC8D1DBA16 /* RCTModalHostViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTModalHostViewController.h; sourceTree = ""; }; + 13F2CAD9162D050C6960CDA99D8FA813 /* RCTRootView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTRootView.h; sourceTree = ""; }; 1401893E9BDAAECA1EF9DEB558623B65 /* ocsp.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ocsp.h; path = ios/include/openssl/ocsp.h; sourceTree = ""; }; - 1413FFFF6ADE74BB4EC379BF8CDCAFBD /* RNFetchBlobProgress.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNFetchBlobProgress.h; path = ios/RNFetchBlobProgress.h; sourceTree = ""; }; - 14491B988359F95819D696C672587578 /* RCTModuloAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTModuloAnimatedNode.h; sourceTree = ""; }; - 14678CD44F55B1A64B7CCF96F5E94126 /* UIView+WebCacheOperation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIView+WebCacheOperation.m"; path = "SDWebImage/Core/UIView+WebCacheOperation.m"; sourceTree = ""; }; - 1480D363919A35F1E19FE10FC4D6B113 /* UIImage+Metadata.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIImage+Metadata.h"; path = "SDWebImage/Core/UIImage+Metadata.h"; sourceTree = ""; }; + 14258755F986E21328B0012F754CD726 /* react-native-appearance-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "react-native-appearance-dummy.m"; sourceTree = ""; }; + 145F4DF6B52C9A75A68E1E67CAA81C7A /* Color+Interpolation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Color+Interpolation.h"; sourceTree = ""; }; 149229419C1D7A7AE8C9644705ECAD82 /* FIRLoggerLevel.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRLoggerLevel.h; path = FirebaseCore/Sources/Public/FIRLoggerLevel.h; sourceTree = ""; }; - 14979149F23DF62C17F9E7A21EE83969 /* RCTFrameAnimation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTFrameAnimation.m; sourceTree = ""; }; 149A84F1B702EB46F6EC1A6325AB9C43 /* SKViewDescriptor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SKViewDescriptor.h; path = iOS/Plugins/FlipperKitLayoutPlugin/FlipperKitLayoutPlugin/descriptors/SKViewDescriptor.h; sourceTree = ""; }; + 14A94FE58DC768AA3FE9299715DA6EF2 /* RCTNativeAnimatedModule.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTNativeAnimatedModule.mm; sourceTree = ""; }; 14AD00F6794B75E13769E36734C64BAB /* TcpDuplexConnection.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = TcpDuplexConnection.cpp; path = rsocket/transports/tcp/TcpDuplexConnection.cpp; sourceTree = ""; }; - 14B051DDE46778264E83099E407929F4 /* BugsnagMetaData.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagMetaData.m; sourceTree = ""; }; 14B3C2BFC1E0AFF93FB0ACAF2513E787 /* MemoryIdler.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = MemoryIdler.cpp; path = folly/detail/MemoryIdler.cpp; sourceTree = ""; }; - 14DB85DA281E7406A95457602CC430B7 /* EXImageLoader-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "EXImageLoader-dummy.m"; sourceTree = ""; }; - 14DE5E20048BA83B6CF49A1811EE2017 /* SDWebImageDownloaderDecryptor.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWebImageDownloaderDecryptor.m; path = SDWebImage/Core/SDWebImageDownloaderDecryptor.m; sourceTree = ""; }; - 14E9E31486EBBBC68C0749E85DD654F7 /* SDImageCachesManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageCachesManager.m; path = SDWebImage/Core/SDImageCachesManager.m; sourceTree = ""; }; + 14C93CE3A3DFC7CAAF264012E42B4CDC /* RCTImageViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageViewManager.h; path = Libraries/Image/RCTImageViewManager.h; sourceTree = ""; }; + 14CD3FC365738EB6C10A99DD724BC984 /* ARTShape.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = ARTShape.m; path = ios/ARTShape.m; sourceTree = ""; }; + 14CEEBE2C3B7E3508FC4A255944CB04F /* UMBarCodeScannerProviderInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMBarCodeScannerProviderInterface.h; path = UMBarCodeScannerInterface/UMBarCodeScannerProviderInterface.h; sourceTree = ""; }; + 14F7B3A9167028C7088E419A2FDCC1AA /* React-RCTLinking-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-RCTLinking-dummy.m"; sourceTree = ""; }; 152014191CA2BD50E3C9D7E4E22D9CFD /* FBLPromise.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBLPromise.m; path = Sources/FBLPromises/FBLPromise.m; sourceTree = ""; }; + 1536A2517FBDC7303862D1460299D00D /* REACallFuncNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REACallFuncNode.h; sourceTree = ""; }; + 15373706DB87B83C8D3203CAA194A599 /* RCTView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTView.h; sourceTree = ""; }; 153DF6367AD0FF17144D2F56B391560A /* Ordering.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Ordering.h; path = folly/lang/Ordering.h; sourceTree = ""; }; 154F69A69C27A4D8693B7BB2D3BB1152 /* strtod.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = strtod.cc; path = "double-conversion/strtod.cc"; sourceTree = ""; }; - 156000D09829F9412CE412849106C412 /* BridgeJSCallInvoker.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = BridgeJSCallInvoker.cpp; path = callinvoker/ReactCommon/BridgeJSCallInvoker.cpp; sourceTree = ""; }; + 155BD20FEC2D6644EBC5AD7D346012B5 /* RNDateTimePicker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNDateTimePicker.h; path = ios/RNDateTimePicker.h; sourceTree = ""; }; + 156687D4952C66CA95FC142C1F806D61 /* RCTPointerEvents.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTPointerEvents.h; sourceTree = ""; }; + 156869A8B62C20E749C3CE92925A920D /* RCTUITextView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTUITextView.h; sourceTree = ""; }; 156F5E2F004918518437A6AE68B03312 /* GDTCORRegistrar_Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCORRegistrar_Private.h; path = GoogleDataTransport/GDTCORLibrary/Private/GDTCORRegistrar_Private.h; sourceTree = ""; }; - 1571AEAE2EF0732E6D6067B2390563D0 /* UIImage+MemoryCacheCost.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIImage+MemoryCacheCost.m"; path = "SDWebImage/Core/UIImage+MemoryCacheCost.m"; sourceTree = ""; }; 1571EDF5F318A19407F937B26350F11C /* HazptrHolder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = HazptrHolder.h; path = folly/synchronization/HazptrHolder.h; sourceTree = ""; }; - 1578EE1C0EA94CFE091DEC4F00AE2E2C /* JSCRuntime.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = JSCRuntime.h; sourceTree = ""; }; 158180CFDF1271C01C71F98CB153D36C /* FIRAnalyticsConnector.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = FIRAnalyticsConnector.framework; path = Frameworks/FIRAnalyticsConnector.framework; sourceTree = ""; }; 15912309AA610251329D74FA111DE5CA /* libRNLocalize.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libRNLocalize.a; path = libRNLocalize.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 15BC50236B6BFC8A12A25EA5714EEE3C /* UMViewManagerAdapterClassesRegistry.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMViewManagerAdapterClassesRegistry.h; sourceTree = ""; }; - 15C31B504AFEF2F1081FAA0B4C5C45FE /* ARTShape.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = ARTShape.m; path = ios/ARTShape.m; sourceTree = ""; }; + 15948571050FD31827612100B8318596 /* RNFirebaseRemoteConfig.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNFirebaseRemoteConfig.h; sourceTree = ""; }; 15DD8D53302593BBF07E4AAAE29BCED8 /* Uri.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = Uri.cpp; path = folly/Uri.cpp; sourceTree = ""; }; - 15DF0AD1F4D72162B8B16CBE2821BB68 /* BSG_KSCrashReport.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSCrashReport.c; sourceTree = ""; }; - 1605C45A7EB80DD78D498C6ACE428CF4 /* Orientation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = Orientation.m; path = iOS/RCTOrientation/Orientation.m; sourceTree = ""; }; - 1606FAF1B7E71C3407C25835E69D6CF9 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; - 16086B523FED7F06189654E0468CA934 /* RCTDefines.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTDefines.h; sourceTree = ""; }; 160D5029DBA2C42C89315C3F98DE573A /* thread_utils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = thread_utils.h; path = src/utils/thread_utils.h; sourceTree = ""; }; 161719886E740E1380CA97BC1D44C8D6 /* FileUtil.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = FileUtil.cpp; path = folly/FileUtil.cpp; sourceTree = ""; }; 161D5036C6E1E9D09858BC871CC4520E /* CancellationToken-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "CancellationToken-inl.h"; path = "folly/CancellationToken-inl.h"; sourceTree = ""; }; - 1642B5970EA2D1E7F8CA2E2121764DEB /* EXConstants.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXConstants.m; path = EXConstants/EXConstants.m; sourceTree = ""; }; 1649E224C4DDA3C3C93A193AFE08D20B /* ScheduledRSocketResponder.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = ScheduledRSocketResponder.cpp; path = rsocket/internal/ScheduledRSocketResponder.cpp; sourceTree = ""; }; + 16555BDC20B5B1863AA97229A58A197E /* RCTUIImageViewAnimated.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTUIImageViewAnimated.h; path = Libraries/Image/RCTUIImageViewAnimated.h; sourceTree = ""; }; 165CCAFE6A06D409004F8CAF07494C97 /* yuv_sse2.c */ = {isa = PBXFileReference; includeInIndex = 1; name = yuv_sse2.c; path = src/dsp/yuv_sse2.c; sourceTree = ""; }; - 16663CF894AFA1FC253A61AE2AC172FB /* RCTAsyncLocalStorage.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTAsyncLocalStorage.mm; sourceTree = ""; }; - 1676FC615941B3942BB2D9289298A715 /* BugsnagErrorReportApiClient.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagErrorReportApiClient.h; sourceTree = ""; }; - 167E5DDA48F3A4D87178E63BE121B4F0 /* BSG_KSCrashSentry_User.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashSentry_User.h; sourceTree = ""; }; 167F569B180CD0BCC576258711BEB603 /* ConsumerBase.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ConsumerBase.h; path = rsocket/statemachine/ConsumerBase.h; sourceTree = ""; }; - 16820BBC6885750171296D2BFF8E857A /* RNCMaskedViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCMaskedViewManager.m; path = ios/RNCMaskedViewManager.m; sourceTree = ""; }; 1697E071BD485DD567399534761FB4C2 /* 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 = ""; }; - 16A19D3BA60E31A56CD6F95F12C0CD07 /* SDAnimatedImage.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDAnimatedImage.h; path = SDWebImage/Core/SDAnimatedImage.h; sourceTree = ""; }; - 16BEFE6A5F51633D8AE6553FDE7F2B38 /* NSTextStorage+FontScaling.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "NSTextStorage+FontScaling.h"; sourceTree = ""; }; + 169BB7B537AA1A84AD89C605599A9CA3 /* EXVideoThumbnails.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = EXVideoThumbnails.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 16AB3CD3F70D507EA705BBD047DC1CD7 /* FontAwesome5_Solid.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = FontAwesome5_Solid.ttf; path = Fonts/FontAwesome5_Solid.ttf; sourceTree = ""; }; 16D54EB99B8C1F9762F4535A8E6B7A3F /* krb5_asn.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = krb5_asn.h; path = ios/include/openssl/krb5_asn.h; sourceTree = ""; }; 16E9F31EC059F2E6FADBF7D544CCCA1D /* libReactNativeKeyboardInput.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libReactNativeKeyboardInput.a; path = libReactNativeKeyboardInput.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 16EDF9F4F68DD8A45FAF7D7434479632 /* Yoga.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Yoga.h; path = yoga/Yoga.h; sourceTree = ""; }; - 1701BB16E424CF991A1E406CC52B285A /* RCTConstants.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTConstants.m; sourceTree = ""; }; - 1711B188EC11F4C1FEAD7932A4A1A3DE /* EXFileSystem.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXFileSystem.m; path = EXFileSystem/EXFileSystem.m; sourceTree = ""; }; - 1749F6851479091C87395887DCD61E51 /* UMLogManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = UMLogManager.m; sourceTree = ""; }; - 1754C542BA03C7EB47091AA16D3D4B49 /* RNFirebaseMessaging.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNFirebaseMessaging.m; sourceTree = ""; }; + 170701BBADABFC1E9E6393032F3AEF81 /* RCTImageURLLoader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageURLLoader.h; path = Libraries/Image/RCTImageURLLoader.h; sourceTree = ""; }; + 1709E356773919EDA9B878732D63D36E /* React-jsinspector-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-jsinspector-prefix.pch"; sourceTree = ""; }; + 1756A88F6DBB44BAD5C3CAE0F5EB6FD3 /* RCTFrameUpdate.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTFrameUpdate.m; sourceTree = ""; }; + 1759CEB888E5987814F821AFE339BFAF /* RCTConvert+CoreLocation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RCTConvert+CoreLocation.m"; sourceTree = ""; }; + 1763107E641AC6DA72EA44F5A2132AC6 /* react-native-background-timer.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = "react-native-background-timer.podspec"; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 176BCE4DA8EDE6EDCBEEF5A622C2C38E /* UMPermissionsInterface-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "UMPermissionsInterface-dummy.m"; sourceTree = ""; }; + 17702DBAFDF2C4C69C7D85A543D652CC /* RCTClipboard.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTClipboard.h; path = React/CoreModules/RCTClipboard.h; sourceTree = ""; }; 17772905A5DCAAE05D22C2CC78ABB63D /* libReactNativeKeyboardTrackingView.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libReactNativeKeyboardTrackingView.a; path = libReactNativeKeyboardTrackingView.a; sourceTree = BUILT_PRODUCTS_DIR; }; 179EE663681A5C6AC6022428A4F16E0D /* Stdlib.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = Stdlib.cpp; path = folly/portability/Stdlib.cpp; sourceTree = ""; }; 17A61121C03A8D3B576632439432AB57 /* SKSwizzle.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = SKSwizzle.mm; path = iOS/Plugins/FlipperKitLayoutPlugin/FlipperKitLayoutPlugin/utils/SKSwizzle.mm; sourceTree = ""; }; 17B16E05C4A91EA5C4A45ED944F1411A /* vi.lproj */ = {isa = PBXFileReference; includeInIndex = 1; name = vi.lproj; path = "Objective-C/TOCropViewController/Resources/vi.lproj"; sourceTree = ""; }; - 17BC9E5C4DEB82B74B5BFC4E7C56357F /* BugsnagSessionTrackingApiClient.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagSessionTrackingApiClient.h; sourceTree = ""; }; - 17BF13DD148057E6199EEF5D184DF394 /* BSG_KSBacktrace.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSBacktrace.c; sourceTree = ""; }; + 17B6E203796A439F6B5F9DAFEF0C70A3 /* LICENSE.md */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE.md; sourceTree = ""; }; + 17C4D754119B450DA4F8E6BDD55537D4 /* RNCAsyncStorage-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNCAsyncStorage-prefix.pch"; sourceTree = ""; }; 17C8CD40EE467EAD8F86B969DF4605D1 /* GULHeartbeatDateStorage.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GULHeartbeatDateStorage.m; path = GoogleUtilities/Environment/GULHeartbeatDateStorage.m; sourceTree = ""; }; + 17F6A57C57C11A1B1F8360CD7BEE32F2 /* KeyboardTrackingViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = KeyboardTrackingViewManager.h; path = lib/KeyboardTrackingViewManager.h; sourceTree = ""; }; 1808AE5719BA2B98B8645C66770AEC9E /* rand.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = rand.h; path = ios/include/openssl/rand.h; sourceTree = ""; }; 18162DE6C50E2863BE3AA20B43A71F52 /* SKIOSNetworkAdapter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SKIOSNetworkAdapter.h; path = iOS/Plugins/FlipperKitNetworkPlugin/SKIOSNetworkPlugin/SKIOSNetworkAdapter.h; sourceTree = ""; }; 18174ECBCD33426D3D4DACD46232DB0B /* AsyncPipe.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = AsyncPipe.cpp; path = folly/io/async/AsyncPipe.cpp; sourceTree = ""; }; 181B1B487AC9DD3DC3B97011195CDEF3 /* zh-Hant.lproj */ = {isa = PBXFileReference; includeInIndex = 1; name = "zh-Hant.lproj"; path = "Objective-C/TOCropViewController/Resources/zh-Hant.lproj"; sourceTree = ""; }; 182EBC33A94F4200EED630D4051AEA48 /* enc_sse41.c */ = {isa = PBXFileReference; includeInIndex = 1; name = enc_sse41.c; path = src/dsp/enc_sse41.c; sourceTree = ""; }; - 183E61566B54F596580EB43C7A97F866 /* ARTRenderableManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = ARTRenderableManager.m; sourceTree = ""; }; - 18462B43FFBDF05E68BAB2E07C605FB9 /* React-RCTSettings-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-RCTSettings-dummy.m"; sourceTree = ""; }; 184A6523686F370AC7BCF0D35228EA46 /* bio.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = bio.h; path = ios/include/openssl/bio.h; sourceTree = ""; }; - 185705258B307AF0CBC2F59ED6261B25 /* UMCore.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = UMCore.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 185CD58BED2B02551383ABB98EB8B447 /* RCTTextViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTTextViewManager.m; sourceTree = ""; }; + 1868C7A428739E45D4F043D32EC030D8 /* RCTUIImageViewAnimated.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTUIImageViewAnimated.m; sourceTree = ""; }; 18774485D964BA179328A4121E1BACED /* Parallel-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "Parallel-inl.h"; path = "folly/gen/Parallel-inl.h"; sourceTree = ""; }; 18775CCD233F50176F12695DA5A375C2 /* UIImage+WebP.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIImage+WebP.m"; path = "SDWebImageWebPCoder/Classes/UIImage+WebP.m"; sourceTree = ""; }; - 187879FBE986DDC8A947A11CEDC57826 /* RCTVirtualTextShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTVirtualTextShadowView.h; sourceTree = ""; }; + 187C95183B76EDED4819676F4FCAA8B7 /* SDWebImageTransition.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageTransition.h; path = SDWebImage/Core/SDWebImageTransition.h; sourceTree = ""; }; 188016977A4BCB7C17AA39C769EC6872 /* ColdClass.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = ColdClass.cpp; path = folly/lang/ColdClass.cpp; sourceTree = ""; }; + 1887071717657DDAFB53BA65C7B5EE7B /* RNSScreenStack.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNSScreenStack.m; path = ios/RNSScreenStack.m; sourceTree = ""; }; + 18A34D18A67341C128316BCECAD79394 /* BSG_KSCrashSentry.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSCrashSentry.c; sourceTree = ""; }; 18C2278F9B58199F6BD826C6265E25FE /* HazptrUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = HazptrUtils.h; path = folly/synchronization/detail/HazptrUtils.h; sourceTree = ""; }; - 18D02EE20BF587B8F1FD8003EE186FD8 /* SDImageGIFCoder.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageGIFCoder.m; path = SDWebImage/Core/SDImageGIFCoder.m; sourceTree = ""; }; + 18DC5708BAE034786152C1250EFBB451 /* RCTVersion.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTVersion.m; sourceTree = ""; }; + 18E617FD1CB69EA7B27B6351957EFB23 /* SDDisplayLink.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDDisplayLink.m; path = SDWebImage/Private/SDDisplayLink.m; sourceTree = ""; }; 18ED57B25C62135D25FAC8C5ADBBFB06 /* SanitizeThread.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SanitizeThread.h; path = folly/synchronization/SanitizeThread.h; sourceTree = ""; }; 18F92F00169D229BE1AD59EB4983621D /* Core.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Core.h; path = folly/gen/Core.h; sourceTree = ""; }; 18FDDE8F1626879AA0CDFAA2EFBF1F66 /* GDTCOREvent.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GDTCOREvent.m; path = GoogleDataTransport/GDTCORLibrary/GDTCOREvent.m; sourceTree = ""; }; + 190A889778918EFAD08E3046A4E784F1 /* RNFirebaseInstanceId.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNFirebaseInstanceId.h; sourceTree = ""; }; 190E5765B6F1778741A8C7C37B763282 /* seed.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = seed.h; path = ios/include/openssl/seed.h; sourceTree = ""; }; - 1912C5AEC1649E0A26A6C8D886057FB6 /* RNGestureHandlerRegistry.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNGestureHandlerRegistry.h; path = ios/RNGestureHandlerRegistry.h; sourceTree = ""; }; + 191D953F452F4470BA07837CE5D05115 /* RNCAsyncStorage.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RNCAsyncStorage.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 191FF3A1FAFCAFC9296631904C6E3D49 /* RCTInspectorDevServerHelper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTInspectorDevServerHelper.h; sourceTree = ""; }; + 19298D512AA0D99DDA14EB516B188814 /* jsi.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = jsi.cpp; sourceTree = ""; }; + 192C49840EFB37F6BF22E13BD1FEE7B1 /* RCTTVNavigationEventEmitter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTTVNavigationEventEmitter.h; path = React/CoreModules/RCTTVNavigationEventEmitter.h; sourceTree = ""; }; + 193492E67D4FBEB6D91CAE5E97067526 /* react-native-orientation-locker-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "react-native-orientation-locker-prefix.pch"; sourceTree = ""; }; 193E2251E77EFDE11012242D727DC062 /* GULLogger.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULLogger.h; path = GoogleUtilities/Logger/Private/GULLogger.h; sourceTree = ""; }; 194FDA7D4FB1A675A8B7C35218D609FB /* FBLPromise+Any.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "FBLPromise+Any.m"; path = "Sources/FBLPromises/FBLPromise+Any.m"; sourceTree = ""; }; - 198A5250D407D50D33F2AAC0B8048876 /* EXFileSystem.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXFileSystem.h; path = EXFileSystem/EXFileSystem.h; sourceTree = ""; }; - 199009BB4DC631CE1BED656007525A3B /* RCTProgressViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTProgressViewManager.m; sourceTree = ""; }; - 1996D9C230EB0924BA74B49833FEC80B /* React-RCTImage-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-RCTImage-prefix.pch"; sourceTree = ""; }; + 1989F090528758E27F7161706F8B361A /* RCTRootContentView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTRootContentView.h; sourceTree = ""; }; + 19A5C1BAF8428B34150303C337E44879 /* RNFetchBlobConst.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNFetchBlobConst.m; path = ios/RNFetchBlobConst.m; sourceTree = ""; }; + 19B053085DA6EF5728AFC1F76197099A /* EXImageLoader.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXImageLoader.m; path = EXImageLoader/EXImageLoader.m; sourceTree = ""; }; 19CA29DD3AFD6634378EC428704EAC63 /* HeterogeneousAccess-fwd.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "HeterogeneousAccess-fwd.h"; path = "folly/container/HeterogeneousAccess-fwd.h"; sourceTree = ""; }; - 19EB35F2F254B311138218F74DE97208 /* BSG_KSCrashIdentifier.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashIdentifier.h; sourceTree = ""; }; + 19D04EC0207EFCCC2041840F5352AD2A /* RCTTypeSafety-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RCTTypeSafety-dummy.m"; sourceTree = ""; }; + 19D7D6F0E17D927BBE30DCDE0FCE37FB /* RCTInvalidating.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTInvalidating.h; sourceTree = ""; }; + 19E7A2A4E41D61738906A56A8E94902C /* BSG_KSMach_Arm64.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSMach_Arm64.c; sourceTree = ""; }; 19FE8475B1C7C573050BCE46DB1A637C /* histogram_enc.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = histogram_enc.h; path = src/enc/histogram_enc.h; sourceTree = ""; }; - 1A007ACDD8283948E99A5DD959DE9242 /* NSError+BSG_SimpleConstructor.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "NSError+BSG_SimpleConstructor.m"; sourceTree = ""; }; - 1A00D7608C84CD3E9E40FFA4EAE992A4 /* react-native-webview-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "react-native-webview-dummy.m"; sourceTree = ""; }; - 1A0B8792CF6208F57C912BB7C29B4FCB /* BSG_KSLogger.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSLogger.h; sourceTree = ""; }; - 1A18989B04E0616980D292BD374E4DD7 /* UMFontScalersManagerInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMFontScalersManagerInterface.h; path = UMFontInterface/UMFontScalersManagerInterface.h; sourceTree = ""; }; - 1A1D9610A449D2388F01014781CD204A /* REAFunctionNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REAFunctionNode.h; sourceTree = ""; }; + 1A252F8F2A3346D5D48322B8C0E7524E /* UMModuleRegistryDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMModuleRegistryDelegate.h; sourceTree = ""; }; + 1A268979E01721FDB835889EC1A77B28 /* BSG_KSCrashSentry_MachException.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSCrashSentry_MachException.c; sourceTree = ""; }; + 1A28F957568227D81348FE6BF5774559 /* RNFirebaseMessaging.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNFirebaseMessaging.h; sourceTree = ""; }; 1A2BACA8327C003E2D06D71AADC414D3 /* glog.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = glog.xcconfig; sourceTree = ""; }; - 1A3B2D322C2010B68E5E905B86DF2C62 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; + 1A2E3BFE91AA2D838D063275BE067CC8 /* React-cxxreact-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-cxxreact-dummy.m"; sourceTree = ""; }; + 1A3B7763382C804E1C2BF90289FC018D /* NSData+ImageContentType.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSData+ImageContentType.h"; path = "SDWebImage/Core/NSData+ImageContentType.h"; sourceTree = ""; }; 1A3FD508A386252F71C815C4EA55471C /* FIRConfiguration.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRConfiguration.h; path = FirebaseCore/Sources/Public/FIRConfiguration.h; sourceTree = ""; }; + 1A50A89720C38C6F8D00510AC3D00E66 /* EXAudioSessionManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXAudioSessionManager.m; path = EXAV/EXAudioSessionManager.m; sourceTree = ""; }; 1A5652151D82DE56E6CE3D4428217CE5 /* Executor.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = Executor.cpp; path = folly/Executor.cpp; sourceTree = ""; }; 1A581425163E8074315E70D041B14F97 /* CoreCachedSharedPtr.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CoreCachedSharedPtr.h; path = folly/concurrency/CoreCachedSharedPtr.h; sourceTree = ""; }; - 1A6472F58B3F93C36DF8E6328DB2BC31 /* React-RCTNetwork-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-RCTNetwork-prefix.pch"; sourceTree = ""; }; - 1A7AEEC1C24F87D64A9A5FB6FD6B6539 /* RNCSafeAreaShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCSafeAreaShadowView.h; path = ios/SafeAreaView/RNCSafeAreaShadowView.h; sourceTree = ""; }; - 1A7B039C29307375F1B0ABD08E3E46AF /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; + 1A6C82A164E50B21DB858AE0EC8D013D /* JSExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = JSExecutor.h; sourceTree = ""; }; + 1A6CF2D002AFB3235B3239C9F964B9A0 /* RNCSafeAreaViewMode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCSafeAreaViewMode.h; path = ios/SafeAreaView/RNCSafeAreaViewMode.h; sourceTree = ""; }; 1ABF60825E26576EBCDB04028A7ACF8E /* MPMCPipelineDetail.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MPMCPipelineDetail.h; path = folly/detail/MPMCPipelineDetail.h; sourceTree = ""; }; 1AD3488E3ED1D9E978C1DBD1D5FF8006 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; name = README.md; path = rsocket/README.md; sourceTree = ""; }; 1B0A3C699074BA5A89960FEB3303B723 /* FirebaseCore-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "FirebaseCore-dummy.m"; sourceTree = ""; }; 1B11D8F6B10DE245DD594083479F5770 /* FIRInstallationsIDController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstallationsIDController.m; path = FirebaseInstallations/Source/Library/InstallationsIDController/FIRInstallationsIDController.m; sourceTree = ""; }; 1B15765A033F56AA45539C76C571546A /* FIRConfigurationInternal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRConfigurationInternal.h; path = FirebaseCore/Sources/Private/FIRConfigurationInternal.h; sourceTree = ""; }; - 1B2948ABDB21DABAE59D9D6DFF951012 /* RCTAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTAnimatedNode.h; sourceTree = ""; }; + 1B29820901D0645F926FEDA287854125 /* BugsnagErrorReportApiClient.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagErrorReportApiClient.h; sourceTree = ""; }; 1B43351F49906948085795035177EACE /* CocoaAsyncSocket-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "CocoaAsyncSocket-dummy.m"; sourceTree = ""; }; + 1B48034B35121007E76DEFC40B7D903A /* RCTReloadCommand.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTReloadCommand.h; sourceTree = ""; }; 1B4884B99063BB48B97948B437FE8022 /* Arena-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "Arena-inl.h"; path = "folly/memory/Arena-inl.h"; sourceTree = ""; }; - 1B4B04C675AD000807C98844D4BCB30A /* RCTGIFImageDecoder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTGIFImageDecoder.h; path = Libraries/Image/RCTGIFImageDecoder.h; sourceTree = ""; }; - 1B606C3DDAF2EFB94FD81B5B70B0A198 /* SDImageHEICCoder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageHEICCoder.h; path = SDWebImage/Core/SDImageHEICCoder.h; sourceTree = ""; }; - 1B68E7E8F81A7A29F567BCAF59647574 /* RCTSubtractionAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSubtractionAnimatedNode.m; sourceTree = ""; }; 1B68E9A3C2EB364D589D3580A9545F9B /* InitThreadFactory.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = InitThreadFactory.h; path = folly/executors/thread_factory/InitThreadFactory.h; sourceTree = ""; }; - 1B87F8E16A65AB0AA58EBDC9AC6B343F /* UMInternalModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMInternalModule.h; sourceTree = ""; }; + 1B8503DBB6CE226E6F22A2D205D7FF46 /* RCTAppearance.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTAppearance.h; path = React/CoreModules/RCTAppearance.h; sourceTree = ""; }; + 1B95F55FF707C060F41F30735F0725FA /* EXFileSystem.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXFileSystem.m; path = EXFileSystem/EXFileSystem.m; sourceTree = ""; }; + 1BA46722248C528CD847FC598DE62F76 /* UMTaskLaunchReason.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMTaskLaunchReason.h; path = UMTaskManagerInterface/UMTaskLaunchReason.h; sourceTree = ""; }; + 1BA8516AF19B9C00C4B38AA2037B3C35 /* UMSensorsInterface.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = UMSensorsInterface.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; 1BCDAE4A50DD905C59990F40625FB0A5 /* FlipperClient+Testing.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FlipperClient+Testing.h"; path = "iOS/FlipperKit/FlipperClient+Testing.h"; sourceTree = ""; }; - 1BE06198C27F8E9E487826A3D1389423 /* RCTSRWebSocket.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCTSRWebSocket.m; path = Libraries/WebSocket/RCTSRWebSocket.m; sourceTree = ""; }; - 1BE6C709B2CDA1C8F74B0EB1C19753A3 /* REACallFuncNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REACallFuncNode.h; sourceTree = ""; }; + 1BE9A8CD55DC781F4413E34D62808E82 /* RNFirebaseAnalytics.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNFirebaseAnalytics.m; sourceTree = ""; }; + 1BEC1EB9E1D3680227515B298D3F4F4E /* react-native-document-picker.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "react-native-document-picker.xcconfig"; sourceTree = ""; }; + 1C0A236EABB777058D78D5E1E78FC676 /* EXPermissions.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = EXPermissions.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 1C1855B280861CA49944DD6264214F3E /* React-RCTBlob-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-RCTBlob-dummy.m"; sourceTree = ""; }; + 1C1CA5FFC31390049418CEB7C731C099 /* RCTBaseTextShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBaseTextShadowView.h; sourceTree = ""; }; + 1C2DA79642A223E0B8CB8DCAE42D5F97 /* RCTSwitchManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSwitchManager.h; sourceTree = ""; }; 1C2F553968BECCD33FC32D449D56D607 /* asn1_mac.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = asn1_mac.h; path = ios/include/openssl/asn1_mac.h; sourceTree = ""; }; 1C542A328D40D8A36A2C63FC74562276 /* kssl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = kssl.h; path = ios/include/openssl/kssl.h; sourceTree = ""; }; + 1C63379B39A97FAEF69035BFB3D2E30D /* REAUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = REAUtils.h; path = ios/REAUtils.h; sourceTree = ""; }; 1C9B9530FE73925539BBC1D217AA9D62 /* ObservableDoOperator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ObservableDoOperator.h; path = yarpl/observable/ObservableDoOperator.h; sourceTree = ""; }; + 1CC9BB09BFD4F1A9FD8FF6C35AB5F8DB /* UMDefines.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMDefines.h; path = UMCore/UMDefines.h; sourceTree = ""; }; + 1CDBDB451C7853A08F67B5013F43D8EC /* EXFileSystemLocalFileHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXFileSystemLocalFileHandler.h; path = EXFileSystem/EXFileSystemLocalFileHandler.h; sourceTree = ""; }; + 1CE30CC6099EAD1AC1D7DC029C409682 /* Yoga.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = Yoga.xcconfig; sourceTree = ""; }; 1CEB8D4B56C3DFCB24548D0163C9D41E /* nanopb-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "nanopb-prefix.pch"; sourceTree = ""; }; + 1CF01376D9C0B8D19424414D36C50DCC /* EXAVPlayerData.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXAVPlayerData.m; path = EXAV/EXAVPlayerData.m; sourceTree = ""; }; + 1CF7CEE1C42E8D00C7C092FD3DC9283E /* RNFetchBlobReqBuilder.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNFetchBlobReqBuilder.m; path = ios/RNFetchBlobReqBuilder.m; sourceTree = ""; }; + 1CFF36678EC0BC917B348604CF042798 /* QBAlbumsViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = QBAlbumsViewController.m; path = ios/QBImagePicker/QBImagePicker/QBAlbumsViewController.m; sourceTree = ""; }; 1D13110FBB2938986FEAE408B775B7B4 /* filters_msa.c */ = {isa = PBXFileReference; includeInIndex = 1; name = filters_msa.c; path = src/dsp/filters_msa.c; sourceTree = ""; }; - 1D14771DAF845523B655DB9144C5891D /* TurboCxxModule.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = TurboCxxModule.cpp; path = turbomodule/core/TurboCxxModule.cpp; sourceTree = ""; }; - 1D32B0B459AAE9F44209A8B2B4D7350D /* RNFirebase.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNFirebase.m; path = RNFirebase/RNFirebase.m; sourceTree = ""; }; - 1D33A07A03A476E1AFF9662BAA20BB2B /* React-CoreModules-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-CoreModules-prefix.pch"; sourceTree = ""; }; - 1D4D41211C446BE6090144A856378B10 /* RCTBlobManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTBlobManager.h; path = Libraries/Blob/RCTBlobManager.h; sourceTree = ""; }; + 1D6F792707429EAB0641A6D0DDAC97FE /* BSG_KSCrashSentry_User.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSCrashSentry_User.c; sourceTree = ""; }; 1D7A00734ABDED0D84DE85316BAF7397 /* HazptrObjLinked.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = HazptrObjLinked.h; path = folly/synchronization/HazptrObjLinked.h; sourceTree = ""; }; 1D806D7DD73FF9FA103135069EAF9863 /* ScheduledSubscription.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = ScheduledSubscription.cpp; path = rsocket/internal/ScheduledSubscription.cpp; sourceTree = ""; }; 1D821F450106BEC44B12802D4CF95277 /* FlipperPlugin.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FlipperPlugin.h; path = iOS/FlipperKit/FlipperPlugin.h; sourceTree = ""; }; + 1D84C39AB078DE44B1581D23560B8248 /* EXFileSystemAssetLibraryHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXFileSystemAssetLibraryHandler.m; path = EXFileSystem/EXFileSystemAssetLibraryHandler.m; sourceTree = ""; }; 1D9460FFFD360C196CCAEFA156B82B71 /* sorted_vector_types.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = sorted_vector_types.h; path = folly/sorted_vector_types.h; sourceTree = ""; }; - 1DAE28EC73109D44B9C46C23181E60BC /* SDAnimatedImagePlayer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDAnimatedImagePlayer.h; path = SDWebImage/Core/SDAnimatedImagePlayer.h; sourceTree = ""; }; - 1DB63DF1A95876A2FAC34C050BCC3855 /* BugsnagCrashSentry.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagCrashSentry.h; sourceTree = ""; }; - 1DD31C9CD7C36C6C05AA5884262620D1 /* RCTModuleMethod.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTModuleMethod.h; sourceTree = ""; }; + 1DAF91F53F6948D0D5A58CA5E32D0DE5 /* RCTJavaScriptLoader.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTJavaScriptLoader.mm; sourceTree = ""; }; + 1DC3A38291602404DF9C037F60F8033F /* UMModuleRegistryHolderReactModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMModuleRegistryHolderReactModule.h; sourceTree = ""; }; + 1DCE4A565AF42911C714A82B3D102689 /* RCTBlobManager.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTBlobManager.mm; sourceTree = ""; }; + 1DE06F29316C24D20AC38BA5C68A1D8C /* UIImage+ExtendedCacheData.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIImage+ExtendedCacheData.m"; path = "SDWebImage/Core/UIImage+ExtendedCacheData.m"; sourceTree = ""; }; 1DEC1C372EEDAE6E243ECADA6B9B8564 /* tag.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = tag.h; path = src/event2/tag.h; sourceTree = ""; }; - 1E0E785CEC2D81D047949A009814CE8F /* RNLongPressHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNLongPressHandler.h; sourceTree = ""; }; - 1E1749F8D2A7A46634E4C9E76C88DA67 /* RCTSlider.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSlider.h; sourceTree = ""; }; - 1E1CFFFAB8A4A2D75524936EE293EC91 /* SDFileAttributeHelper.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDFileAttributeHelper.m; path = SDWebImage/Private/SDFileAttributeHelper.m; sourceTree = ""; }; - 1E2AA7FC7161AAC1C25764F3B0C67935 /* RNCAsyncStorage.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RNCAsyncStorage.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 1DFF90256321A8BC2CD3C51BD1C11E00 /* RCTProfile.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTProfile.h; sourceTree = ""; }; + 1E19BE1737EE6C285809F2BB8451B5DF /* ARTRadialGradient.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = ARTRadialGradient.h; sourceTree = ""; }; + 1E21A9098DB891F78979916E9D051107 /* ARTShape.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ARTShape.h; path = ios/ARTShape.h; sourceTree = ""; }; + 1E28E449FF97CFFC696F2A7853D0E4C3 /* RNNotificationCenter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNNotificationCenter.m; path = RNNotifications/RNNotificationCenter.m; sourceTree = ""; }; 1E3DA206C09B3DF568B673F2FAD2FCB1 /* DistributedMutex.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = DistributedMutex.cpp; path = folly/synchronization/DistributedMutex.cpp; sourceTree = ""; }; - 1E4C989A33D90A61D1AFE1A7A4E7A113 /* SDWebImageCacheSerializer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageCacheSerializer.h; path = SDWebImage/Core/SDWebImageCacheSerializer.h; sourceTree = ""; }; 1E5823A98AFDC2E88398046ECD303BAD /* File.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = File.cpp; path = folly/File.cpp; sourceTree = ""; }; 1E71D20E66B64C5F1349B061C42EE2C7 /* UIImage+CropRotate.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIImage+CropRotate.m"; path = "Objective-C/TOCropViewController/Categories/UIImage+CropRotate.m"; sourceTree = ""; }; - 1E76B6BB36B2A3C42DDF3D7B633F5976 /* BSG_KSMach_x86_32.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSMach_x86_32.c; sourceTree = ""; }; + 1E7C3B2B241134A08DEAD77648CFB6D7 /* RCTDefines.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTDefines.h; sourceTree = ""; }; 1E7F01BCB84D8C9EBBA34737EF2962AC /* AsyncTimeout.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AsyncTimeout.h; path = folly/io/async/AsyncTimeout.h; sourceTree = ""; }; - 1E83938C524F8F5A17A8F7FD3FDD03B6 /* RCTTurboModuleManager.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTTurboModuleManager.mm; sourceTree = ""; }; - 1E84BABFA46907C3092C5F2ABC995C29 /* BugsnagConfiguration.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagConfiguration.h; sourceTree = ""; }; 1E8829A45C391249A921EAA2ECB324A1 /* utilities.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = utilities.cc; path = src/utilities.cc; sourceTree = ""; }; - 1EBCB9F825BB74349DA8464E4078D6CD /* SDWebImage.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = SDWebImage.xcconfig; sourceTree = ""; }; - 1EC15084DB3363D73309F2FFC704EC04 /* BSG_KSSignalInfo.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSSignalInfo.c; sourceTree = ""; }; + 1E9E1AF5720FF021B30236E13D6388F7 /* RCTRefreshableProtocol.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTRefreshableProtocol.h; sourceTree = ""; }; + 1EC71A35AFECF54C8539BF3186408413 /* UMCameraInterface.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMCameraInterface.xcconfig; sourceTree = ""; }; 1ECBA4FA2EE40C8C14FC14A12567D8FE /* enc.c */ = {isa = PBXFileReference; includeInIndex = 1; name = enc.c; path = src/dsp/enc.c; sourceTree = ""; }; - 1EF403D5ED7B4AC1BD1B459C3D9B0A38 /* YGMacros.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YGMacros.h; path = yoga/YGMacros.h; sourceTree = ""; }; 1EF928F0135955C6628E8137331522C3 /* RecordIO.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = RecordIO.cpp; path = folly/io/RecordIO.cpp; sourceTree = ""; }; 1EFA54296C3CB620F743547DD8A9297B /* SKStateUpdateCPPWrapper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SKStateUpdateCPPWrapper.h; path = iOS/FlipperKit/SKStateUpdateCPPWrapper.h; sourceTree = ""; }; 1F169A2F5C7C92F36CCF25CEF693D9EB /* FIRInstallationsSingleOperationPromiseCache.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstallationsSingleOperationPromiseCache.m; path = FirebaseInstallations/Source/Library/InstallationsIDController/FIRInstallationsSingleOperationPromiseCache.m; sourceTree = ""; }; 1F17B1D8B12505C59B68DEF70AA852D5 /* AsyncSocketException.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AsyncSocketException.h; path = folly/io/async/AsyncSocketException.h; sourceTree = ""; }; + 1F2049C2175DCE75DD718C8896B5B6FF /* RCTLayoutAnimationGroup.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTLayoutAnimationGroup.h; sourceTree = ""; }; 1F34CDAA5FAE8D10A8A77EBE52B29E3A /* DoubleConversion-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "DoubleConversion-dummy.m"; sourceTree = ""; }; + 1F4830428FD4A5E894279DE690CBA5CD /* ImageCropPicker.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = ImageCropPicker.m; path = ios/src/ImageCropPicker.m; sourceTree = ""; }; 1F4B3E6B4F39F0C0A8D6F8349CA8D6AB /* FLEXNetworkObserver.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = FLEXNetworkObserver.mm; path = iOS/Plugins/FlipperKitNetworkPlugin/SKIOSNetworkPlugin/FLEXNetworkLib/FLEXNetworkObserver.mm; sourceTree = ""; }; 1F6CEAA5D418CC1CED2D2ACE01D78B26 /* RWSpinLock.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RWSpinLock.h; path = folly/RWSpinLock.h; sourceTree = ""; }; - 1F6F2CFA01EC3575434B192A4A609F3A /* BSG_KSSingleton.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSSingleton.h; sourceTree = ""; }; + 1F89EA536C6C65EA83A27CD06AB074FE /* RCTErrorCustomizer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTErrorCustomizer.h; sourceTree = ""; }; 1F8E40CA30A2750FBC8296C9FE83154B /* ClockGettimeWrappers.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ClockGettimeWrappers.h; path = folly/ClockGettimeWrappers.h; sourceTree = ""; }; 1F93898804FCC4161FCECF761209EF52 /* FKUserDefaultsSwizzleUtility.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FKUserDefaultsSwizzleUtility.m; path = iOS/Plugins/FlipperKitUserDefaultsPlugin/FKUserDefaultsSwizzleUtility.m; sourceTree = ""; }; - 1FAE064E6AFB8845B5FF3B9D0AFC6863 /* Yoga.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = Yoga.xcconfig; sourceTree = ""; }; - 1FC9F360C6E2DE922732719E9CF39F59 /* BugsnagFileStore.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagFileStore.h; sourceTree = ""; }; + 200635613A73F94C802EE45C3A6DE4E0 /* UMCore-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "UMCore-dummy.m"; sourceTree = ""; }; 201FBE1E6F0A8284A98B38DCA976AD1C /* AtomicNotification.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = AtomicNotification.cpp; path = folly/synchronization/AtomicNotification.cpp; sourceTree = ""; }; 202722AA0D229A11350F6DC0F267A0BA /* libRNBootSplash.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libRNBootSplash.a; path = libRNBootSplash.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 203227B7E5F123C2C18C807954C432A9 /* ARTShapeManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = ARTShapeManager.h; sourceTree = ""; }; + 2032067482139E870F3D76AEBECF70D2 /* SDImageGraphics.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageGraphics.h; path = SDWebImage/Core/SDImageGraphics.h; sourceTree = ""; }; 203874E0A88009B0AA2F01295E927BF8 /* FlipperInitConfig.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FlipperInitConfig.h; path = xplat/Flipper/FlipperInitConfig.h; sourceTree = ""; }; 205617F2BA6572C4FB0072874D254967 /* FBLPromise+Testing.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FBLPromise+Testing.h"; path = "Sources/FBLPromises/include/FBLPromise+Testing.h"; sourceTree = ""; }; 2071F71A875AD0A9F66C109B903EE168 /* Unicode.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = Unicode.cpp; path = folly/Unicode.cpp; sourceTree = ""; }; - 209CA054AFC6D7B52A3633988433EACE /* RCTProfile.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTProfile.h; sourceTree = ""; }; + 20890F63B71F0D4B2162B5C9F2807E0F /* UIImage+MultiFormat.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIImage+MultiFormat.m"; path = "SDWebImage/Core/UIImage+MultiFormat.m"; sourceTree = ""; }; + 209AFC471B9B4BF54D5E586DCF8E06B2 /* RNFirebase.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RNFirebase.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 20C41C56D086BEEA0D2C3001A5805B71 /* RNNativeViewHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNNativeViewHandler.m; sourceTree = ""; }; + 20D04AAC9A737C5CF857361F435308B5 /* RNJitsiMeetViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNJitsiMeetViewManager.h; path = ios/RNJitsiMeetViewManager.h; sourceTree = ""; }; 20F0360096A49ED0E255A9341B07C0A3 /* FlipperClient.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FlipperClient.h; path = xplat/Flipper/FlipperClient.h; sourceTree = ""; }; + 20F82DAE42B6D6E69AB9C92BA1FF5FDD /* react-native-safe-area-context.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "react-native-safe-area-context.xcconfig"; sourceTree = ""; }; + 21134F497393F62143AF30FAC168E662 /* BugsnagFileStore.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagFileStore.h; sourceTree = ""; }; + 211C567D4CEA45A5940C808708EAC12B /* RCTCxxBridge.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTCxxBridge.mm; sourceTree = ""; }; + 212402EFA8EC8E5B84B51D8B6A8BFF3B /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; 21290654BD889919D322EFF3B3F075C5 /* FIRDiagnosticsData.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRDiagnosticsData.m; path = FirebaseCore/Sources/FIRDiagnosticsData.m; sourceTree = ""; }; - 2134642023B5EEA4EDF1B56B7AACAAE6 /* UIButton+WebCache.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIButton+WebCache.h"; path = "SDWebImage/Core/UIButton+WebCache.h"; sourceTree = ""; }; - 2148262530D07D32B42FD8E37018A73A /* YGLayout.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = YGLayout.cpp; path = yoga/YGLayout.cpp; sourceTree = ""; }; - 2151AAB814BA4694A87F13FCB2CE314C /* RCTURLRequestHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTURLRequestHandler.h; sourceTree = ""; }; - 215B5C61A1572BEF192E6E40890740CB /* UMFaceDetectorInterface.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = UMFaceDetectorInterface.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - 21687532BBF95813285D4614E00325D8 /* UIImageView+HighlightedWebCache.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIImageView+HighlightedWebCache.h"; path = "SDWebImage/Core/UIImageView+HighlightedWebCache.h"; sourceTree = ""; }; + 212E462CD956DCFF5391D39795C41FC0 /* RNSScreenStack.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNSScreenStack.h; path = ios/RNSScreenStack.h; sourceTree = ""; }; + 213BA18ACEF77710E9161A51FCB156A4 /* subscription.md */ = {isa = PBXFileReference; includeInIndex = 1; name = subscription.md; path = docs/subscription.md; sourceTree = ""; }; + 2148797ECE55FE444A64B2DC92E6B71D /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; + 214F75E0C1D6794C8A998E9B77AAA69E /* BugsnagBreadcrumb.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagBreadcrumb.m; sourceTree = ""; }; + 215427389590D7CA8681B2760C5628F8 /* SDImageCoderHelper.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageCoderHelper.m; path = SDWebImage/Core/SDImageCoderHelper.m; sourceTree = ""; }; + 216DF5C441FD73380BA2454F45BE4D14 /* instrumentation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = instrumentation.h; sourceTree = ""; }; 217FB6AD97DF7CD2EF569E3A2676DC8D /* StackTraceUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = StackTraceUtils.h; path = rsocket/internal/StackTraceUtils.h; sourceTree = ""; }; - 218422C5163CBAD686311A3CF0701DF7 /* RNFirebaseAdMobRewardedVideo.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNFirebaseAdMobRewardedVideo.m; sourceTree = ""; }; + 21896A0E5A77DDB3232CDEF7D8507DF1 /* ARTBrush.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = ARTBrush.h; sourceTree = ""; }; 218CBF55D7DCB97ECFF83FA91CF6946B /* GoogleUtilities-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "GoogleUtilities-prefix.pch"; sourceTree = ""; }; + 219931B3E45A613A5805F42527116231 /* RCTSettingsManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTSettingsManager.h; path = Libraries/Settings/RCTSettingsManager.h; sourceTree = ""; }; + 21A4E6E4B5F7E89DC64A29C0181F1681 /* RCTScrollView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTScrollView.m; sourceTree = ""; }; 21C5FBC65D86618E8BB010733F011BE0 /* FiberIOExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FiberIOExecutor.h; path = folly/executors/FiberIOExecutor.h; sourceTree = ""; }; 21C84F6D1366D920F804707536A54084 /* FIRInstallationsStore.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstallationsStore.m; path = FirebaseInstallations/Source/Library/InstallationsStore/FIRInstallationsStore.m; sourceTree = ""; }; - 21DBB7108A9FA1EEFCA9735DD0E85D7D /* Orientation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Orientation.h; path = iOS/RCTOrientation/Orientation.h; sourceTree = ""; }; - 21DF973E0B0381E6F81ACD448A537C4E /* RNUserDefaults-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNUserDefaults-prefix.pch"; sourceTree = ""; }; - 21F2D742801090DEBF0FE24B3991700C /* BSG_KSSystemInfo.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BSG_KSSystemInfo.m; sourceTree = ""; }; - 21FA8F5FC5A5FA3D930E63232DACA794 /* RNDocumentPicker.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNDocumentPicker.m; path = ios/RNDocumentPicker/RNDocumentPicker.m; sourceTree = ""; }; + 21E22075986CC9418A285BB180999C59 /* SDWebImageOptionsProcessor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageOptionsProcessor.h; path = SDWebImage/Core/SDWebImageOptionsProcessor.h; sourceTree = ""; }; + 21F177EFEF22345D597A4CC3E0A136B9 /* SDAnimatedImageRep.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDAnimatedImageRep.h; path = SDWebImage/Core/SDAnimatedImageRep.h; sourceTree = ""; }; 21FE4D900ED58E6E62B988CFE1D0A798 /* utils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = utils.h; path = "double-conversion/utils.h"; sourceTree = ""; }; 220361FF3B2778F8F38C2C4DCC5B49FD /* libEXConstants.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libEXConstants.a; path = libEXConstants.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 22067950C5C6A4A4DC87C7D141E6E076 /* EXFilePermissionModule.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXFilePermissionModule.m; path = EXFileSystem/EXFilePermissionModule.m; sourceTree = ""; }; 222E9654CA1C5DC25162987035779AAB /* UIColor+SKSonarValueCoder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIColor+SKSonarValueCoder.h"; path = "iOS/Plugins/FlipperKitLayoutPlugin/FlipperKitLayoutPlugin/UIColor+SKSonarValueCoder.h"; sourceTree = ""; }; 223ECB752B780279A2762E33A0D366C0 /* ProtocolVersion.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = ProtocolVersion.cpp; path = rsocket/framing/ProtocolVersion.cpp; sourceTree = ""; }; 224B0F633CF99533D589753DA8AB82B0 /* tree_dec.c */ = {isa = PBXFileReference; includeInIndex = 1; name = tree_dec.c; path = src/dec/tree_dec.c; sourceTree = ""; }; 22503E55D13A05D557E5314F522C5630 /* demux.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = demux.h; path = src/webp/demux.h; sourceTree = ""; }; - 226258FFBB4B604235CD4E538EFD58C3 /* JSIDynamic.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = JSIDynamic.cpp; sourceTree = ""; }; + 22523B8328A113E5BFC3B03C112318A3 /* RCTMultipartDataTask.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTMultipartDataTask.m; sourceTree = ""; }; + 2260CA770ABA3546238DEB503474FE5A /* RNFirebase.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNFirebase.m; path = RNFirebase/RNFirebase.m; sourceTree = ""; }; 2263EA0BAD7D92061F727D33ABCC9D99 /* SlowFingerprint.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SlowFingerprint.h; path = folly/detail/SlowFingerprint.h; sourceTree = ""; }; 2266B9FB963B08C9EC349C28D1DD1637 /* File.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = File.h; path = folly/gen/File.h; sourceTree = ""; }; - 2294975A06913B08D41195CE013BB1C8 /* UIResponder+FirstResponder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIResponder+FirstResponder.h"; path = "lib/UIResponder+FirstResponder.h"; sourceTree = ""; }; - 229BD827D7F4F590318CD67644EB6FDE /* installation.md */ = {isa = PBXFileReference; includeInIndex = 1; name = installation.md; path = docs/installation.md; sourceTree = ""; }; - 229D455DAF28AED347F98E3AA7A9215F /* RNGestureHandlerButton.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNGestureHandlerButton.m; path = ios/RNGestureHandlerButton.m; sourceTree = ""; }; + 227CB7EDB6CE0BD93BA21EFE897D3AEE /* RCTPicker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTPicker.h; sourceTree = ""; }; + 228982F3D54A22FFDF10D1183691C680 /* SDDiskCache.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDDiskCache.m; path = SDWebImage/Core/SDDiskCache.m; sourceTree = ""; }; 229E2B54AB29984EC08EBB7E55115D30 /* MemoryIdler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MemoryIdler.h; path = folly/detail/MemoryIdler.h; sourceTree = ""; }; 22AC901C615FFB0A63B6E8F228C6A7F7 /* GDTCORRegistrar.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GDTCORRegistrar.m; path = GoogleDataTransport/GDTCORLibrary/GDTCORRegistrar.m; sourceTree = ""; }; - 22AE0F027BA8E662707B93E6A49025BC /* REATransitionValues.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REATransitionValues.h; sourceTree = ""; }; - 22DC540653AA6DEFE018F0E96892639A /* BSG_KSString.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSString.h; sourceTree = ""; }; - 22E30478C4160A8365B501CC0D700C84 /* RNNotificationsStore.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNNotificationsStore.m; path = RNNotifications/RNNotificationsStore.m; sourceTree = ""; }; 22EA2EFC4D37975856FABA3B17A53CA7 /* ThriftStreamShim.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ThriftStreamShim.h; path = yarpl/flowable/ThriftStreamShim.h; sourceTree = ""; }; - 22F817D447B0FBFC5E919D280677C049 /* EXWebBrowser.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = EXWebBrowser.xcconfig; sourceTree = ""; }; - 22FAF742CB5CC4C9D7C3DC50F3094EAB /* RNFirebaseFunctions.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNFirebaseFunctions.h; sourceTree = ""; }; + 22ED5EC342654ED25ABF836C2666043D /* BSG_KSSysCtl.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSSysCtl.c; sourceTree = ""; }; + 22EEFDC1FF381CE63EEEE36D980DE498 /* FBReactNativeSpec.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = FBReactNativeSpec.xcconfig; sourceTree = ""; }; 22FFDAA8BCFC22C1488A725107778ACF /* enc_mips_dsp_r2.c */ = {isa = PBXFileReference; includeInIndex = 1; name = enc_mips_dsp_r2.c; path = src/dsp/enc_mips_dsp_r2.c; sourceTree = ""; }; - 2306FB1ABBEFA9CE789F81A2FAC42EE6 /* TurboCxxModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TurboCxxModule.h; path = turbomodule/core/TurboCxxModule.h; sourceTree = ""; }; + 232D6AF246FE0EF63B77AA187D35FF44 /* UMUserNotificationCenterProxyInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMUserNotificationCenterProxyInterface.h; path = UMPermissionsInterface/UMUserNotificationCenterProxyInterface.h; sourceTree = ""; }; 233894ECB8BBAA48D27FF8FFCE1B143F /* histogram_enc.c */ = {isa = PBXFileReference; includeInIndex = 1; name = histogram_enc.c; path = src/enc/histogram_enc.c; sourceTree = ""; }; 2338BCF400AD9C25F4563792E4535745 /* MPMCPipeline.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MPMCPipeline.h; path = folly/MPMCPipeline.h; sourceTree = ""; }; - 234B1411B48C8BE2215721F896C6B79A /* SDWebImageDefine.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageDefine.h; path = SDWebImage/Core/SDWebImageDefine.h; sourceTree = ""; }; - 23920DCA27BEDAE8BD8AAC64F3753841 /* React-RCTVibration.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-RCTVibration.xcconfig"; sourceTree = ""; }; - 2394FD30544F1A0E0D6827F674CAFF38 /* RCTDatePickerManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTDatePickerManager.h; sourceTree = ""; }; - 23B988FF7781A76A0B6F07682B8E3871 /* SDImageCoder.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageCoder.m; path = SDWebImage/Core/SDImageCoder.m; sourceTree = ""; }; + 235CB33ECE9E46D4D8063E8B101D6DC2 /* RNCSafeAreaViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCSafeAreaViewManager.h; path = ios/SafeAreaView/RNCSafeAreaViewManager.h; sourceTree = ""; }; + 2364233793BEFB6E9F7C4FD57080BCBB /* react-native-cameraroll.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "react-native-cameraroll.xcconfig"; sourceTree = ""; }; + 23A407B3E1976B12EF9A6DECCB95E35B /* UIImageView+HighlightedWebCache.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIImageView+HighlightedWebCache.h"; path = "SDWebImage/Core/UIImageView+HighlightedWebCache.h"; sourceTree = ""; }; + 23B3BDE3B10C6430AEFC0C93E3FABCBF /* RCTConvert+ART.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "RCTConvert+ART.m"; path = "ios/RCTConvert+ART.m"; sourceTree = ""; }; + 23B7C6A6D953E1B949A355CF8CC81241 /* RCTMultipartStreamReader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTMultipartStreamReader.h; sourceTree = ""; }; + 23BF18B6DA1A3CBB7A34C06EC9328DBF /* UMModuleRegistryHolderReactModule.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = UMModuleRegistryHolderReactModule.m; sourceTree = ""; }; 23EEA0044B9B84D5163474C480831759 /* enc_neon.c */ = {isa = PBXFileReference; includeInIndex = 1; name = enc_neon.c; path = src/dsp/enc_neon.c; sourceTree = ""; }; - 23F91F7ECFFD18675908FE501CA1B836 /* RCTMultiplicationAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTMultiplicationAnimatedNode.m; sourceTree = ""; }; 23FB5D71EDB1CE3FC9227ACB4D929D62 /* ScheduledFrameProcessor.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = ScheduledFrameProcessor.cpp; path = rsocket/framing/ScheduledFrameProcessor.cpp; sourceTree = ""; }; 23FBFEF2ED0201D52F50C20C8BFE4A8B /* ParkingLot.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = ParkingLot.cpp; path = folly/synchronization/ParkingLot.cpp; sourceTree = ""; }; - 23FC3234B2DB57E1ED7030BCE13BB424 /* NSError+BSG_SimpleConstructor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "NSError+BSG_SimpleConstructor.h"; sourceTree = ""; }; + 23FC904C31EFF26791961F1234B41F0C /* REANodesManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = REANodesManager.h; path = ios/REANodesManager.h; sourceTree = ""; }; 2407279E734F1C65AA5D6D485EB3F4EE /* FIRInstallationsErrorUtil.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstallationsErrorUtil.m; path = FirebaseInstallations/Source/Library/Errors/FIRInstallationsErrorUtil.m; sourceTree = ""; }; - 241396C8A411DEA5271976B765D0DB6B /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; 242758B9EDFF146ABE411909CAC8F130 /* libreact-native-appearance.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libreact-native-appearance.a"; path = "libreact-native-appearance.a"; sourceTree = BUILT_PRODUCTS_DIR; }; - 24289386D837C7C24973A780A5CFC145 /* RCTConvert+Text.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "RCTConvert+Text.h"; path = "Libraries/Text/RCTConvert+Text.h"; sourceTree = ""; }; - 2444EE42E0284DE98A0E99D5624D1937 /* RCTUITextField.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTUITextField.m; sourceTree = ""; }; + 2444484AED9986F4FC30861022F76884 /* FBReactNativeSpec.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = FBReactNativeSpec.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; 244810D219B6E98BEDE760339F52EC1C /* EventBaseManager.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = EventBaseManager.cpp; path = folly/io/async/EventBaseManager.cpp; sourceTree = ""; }; + 2448764A175B560A796BE14DE72879B9 /* SDImageHEICCoder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageHEICCoder.h; path = SDWebImage/Core/SDImageHEICCoder.h; sourceTree = ""; }; + 244A265A15C21DFF21DF1B853FBEF726 /* UMFontManagerInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMFontManagerInterface.h; path = UMFontInterface/UMFontManagerInterface.h; sourceTree = ""; }; 245D2AFC8ED9BFDBA2EF29D68EBC985B /* FlowableOperator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FlowableOperator.h; path = yarpl/flowable/FlowableOperator.h; sourceTree = ""; }; - 2475A083CA7E9531F5DF98EB4E5E1B57 /* BugsnagReactNative.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = BugsnagReactNative.h; path = cocoa/BugsnagReactNative.h; sourceTree = ""; }; 248B4CE1C7DDAE021DD958A76F7AFA3E /* Subprocess.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = Subprocess.cpp; path = folly/Subprocess.cpp; sourceTree = ""; }; - 2498A4DA779B27626860F0C820BF4D36 /* EXDownloadDelegate.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXDownloadDelegate.m; path = EXFileSystem/EXDownloadDelegate.m; sourceTree = ""; }; 249E431ECB7062A376A77BF1293AE447 /* SKHiddenWindow.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SKHiddenWindow.h; path = iOS/Plugins/FlipperKitLayoutPlugin/FlipperKitLayoutPlugin/utils/SKHiddenWindow.h; sourceTree = ""; }; - 24A7EE7C1875E720E6FD85B5EEE4C368 /* RCTModuleData.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTModuleData.mm; sourceTree = ""; }; - 24B4674663B10F5919335B67C8807E6E /* RCTAnimationType.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTAnimationType.h; sourceTree = ""; }; - 24B6F7ED44E5EE98C4B53B63797D9E0D /* RCTBlobManager.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTBlobManager.mm; sourceTree = ""; }; + 24CBB92E375EA7A225F7FEDCDD7936A5 /* RNRotationHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNRotationHandler.h; sourceTree = ""; }; + 24FAB53EC793E84129BEFE10FC504C99 /* rn-extensions-share-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "rn-extensions-share-prefix.pch"; sourceTree = ""; }; + 24FD9402A309DB035AF586983A13E6F3 /* EXLocalAuthentication-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "EXLocalAuthentication-prefix.pch"; sourceTree = ""; }; 2512C05B6417269BA0C18DFB826A09D6 /* ExceptionString.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ExceptionString.h; path = folly/ExceptionString.h; sourceTree = ""; }; - 251536CB04DA819939DE200CBD5BA105 /* YGLayout.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YGLayout.h; path = yoga/YGLayout.h; sourceTree = ""; }; - 2533E13A6E27DC148740766B9E66FAB2 /* SDWebImageOptionsProcessor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageOptionsProcessor.h; path = SDWebImage/Core/SDWebImageOptionsProcessor.h; sourceTree = ""; }; + 252073097B750D2CAB7B88D7EDE405FD /* RNFetchBlobNetwork.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNFetchBlobNetwork.m; path = ios/RNFetchBlobNetwork.m; sourceTree = ""; }; + 25299E74E57A0AC8BAFDBED3EBCA680F /* RNFirebaseFunctions.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNFirebaseFunctions.m; sourceTree = ""; }; 2537A03F74E26F248FC9304254BCA826 /* vp8i_dec.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = vp8i_dec.h; path = src/dec/vp8i_dec.h; sourceTree = ""; }; + 253B2CF1BF6337E6F75CF1B1DDBB13C4 /* react-native-safe-area-context-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "react-native-safe-area-context-prefix.pch"; sourceTree = ""; }; 253CDB5FB8D1A583B4EABEAD69DA64E2 /* Crashlytics.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Crashlytics.framework; path = iOS/Crashlytics.framework; sourceTree = ""; }; - 25551C2EFCC1B8A180FFC6ED5CACC156 /* RCTUIManagerUtils.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTUIManagerUtils.m; sourceTree = ""; }; + 2542B527E964202FDCCF8B947C336232 /* EXAppleAuthentication.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXAppleAuthentication.m; path = EXAppleAuthentication/EXAppleAuthentication.m; sourceTree = ""; }; 255BCEE432582E3F2C689BDA7BE538E4 /* Malloc.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Malloc.h; path = folly/portability/Malloc.h; sourceTree = ""; }; - 25683557B86FEB22A5831C6F008419E1 /* React-RCTActionSheet.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = "React-RCTActionSheet.podspec"; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 2568CCEE6BB01871189B53944A0492DF /* RCTVibrationPlugins.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTVibrationPlugins.h; path = Libraries/Vibration/RCTVibrationPlugins.h; sourceTree = ""; }; 2577F299FCB0A19824FE989BE77B8E8F /* libReact-jsinspector.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libReact-jsinspector.a"; path = "libReact-jsinspector.a"; sourceTree = BUILT_PRODUCTS_DIR; }; - 259A7A98CD2D59BD5742C7E41787EBD7 /* RNFirebaseCrashlytics.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNFirebaseCrashlytics.m; sourceTree = ""; }; - 25BDBD014796225914C8BE9790EEAF48 /* BugsnagSessionTrackingPayload.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagSessionTrackingPayload.m; sourceTree = ""; }; - 25F57D1BC4A85048563BB3D7FD14366B /* RNTapHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNTapHandler.m; sourceTree = ""; }; + 25CEE608A8368A58E6EBAA490E1B1212 /* EXDownloadDelegate.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXDownloadDelegate.m; path = EXFileSystem/EXDownloadDelegate.m; sourceTree = ""; }; + 25E6C85722864CE68C2A101629DD1411 /* RCTImageEditingManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageEditingManager.h; path = Libraries/Image/RCTImageEditingManager.h; sourceTree = ""; }; 260248C5F1AF9B9BD1145497E4B7F701 /* Preprocessor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Preprocessor.h; path = folly/Preprocessor.h; sourceTree = ""; }; 260532C1B60BB9AC2E87BAA0D001146C /* GroupVarintDetail.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GroupVarintDetail.h; path = folly/detail/GroupVarintDetail.h; sourceTree = ""; }; + 260F37D4A8E3C4253139756D5D412679 /* UIResponder+FirstResponder.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIResponder+FirstResponder.m"; path = "lib/UIResponder+FirstResponder.m"; sourceTree = ""; }; 26100ED62D912528C0C01D6903A8A230 /* PThread.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = PThread.cpp; path = folly/portability/PThread.cpp; sourceTree = ""; }; - 2625B767D0A3165A55BF95193B14F6A5 /* FFFastImageView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FFFastImageView.m; path = ios/FastImage/FFFastImageView.m; sourceTree = ""; }; - 2649E0E14CC40301FE5BC5CBCFE7C60C /* EXAV.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = EXAV.xcconfig; sourceTree = ""; }; + 261BA239030D207AE2E7AA6C2E423B9B /* react-native-notifications-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "react-native-notifications-prefix.pch"; sourceTree = ""; }; 266067ADABDCA6C5E9BB18B919AE8432 /* Observable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Observable.h; path = yarpl/observable/Observable.h; sourceTree = ""; }; - 2660850DDB2DA283DA5E458102EAF98A /* RCTImageEditingManager.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTImageEditingManager.mm; sourceTree = ""; }; 266B524D0AB8F9504500D7E7891293B0 /* ErrorCode.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = ErrorCode.cpp; path = rsocket/framing/ErrorCode.cpp; sourceTree = ""; }; - 267F6C74F5F2AB98971FC8EA2F47B183 /* RCTSinglelineTextInputView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSinglelineTextInputView.h; sourceTree = ""; }; 269495D53DEF8D3D3EA734E80CEE3BCA /* Barrier.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = Barrier.cpp; path = folly/futures/Barrier.cpp; sourceTree = ""; }; 269BE773C9482484B70949A40F4EA525 /* libReact-RCTSettings.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libReact-RCTSettings.a"; path = "libReact-RCTSettings.a"; sourceTree = BUILT_PRODUCTS_DIR; }; - 26D34E8EF25EA2FB1249DD3B286FD598 /* READebugNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = READebugNode.m; sourceTree = ""; }; - 26E2B81D847EE92831E2B4214E2580F8 /* RCTExceptionsManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTExceptionsManager.h; path = React/CoreModules/RCTExceptionsManager.h; sourceTree = ""; }; - 26E6F381E54D63B3B6494AEBD4A5B28E /* React-jsiexecutor-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-jsiexecutor-prefix.pch"; sourceTree = ""; }; - 26F32BCDDA6E518EC2F330306560C1D7 /* RCTAnimatedImage.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTAnimatedImage.h; path = Libraries/Image/RCTAnimatedImage.h; sourceTree = ""; }; - 2701234FB9632D24B2506BBBD4163530 /* RCTView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTView.m; sourceTree = ""; }; - 27022965E30076F988DA9D6535E05F09 /* REAAlwaysNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REAAlwaysNode.m; sourceTree = ""; }; + 26F711C72BF23EDBF0FEE1F6D24E2D77 /* RCTScrollableProtocol.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTScrollableProtocol.h; sourceTree = ""; }; 2724C31E54B001AE871AF4177D6E4099 /* PTProtocol.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = PTProtocol.m; path = peertalk/PTProtocol.m; sourceTree = ""; }; - 2744D69B7CA848FB0307E86A45438935 /* RNCAppearanceProvider.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCAppearanceProvider.m; path = ios/Appearance/RNCAppearanceProvider.m; sourceTree = ""; }; 27487DDA42910A33F1B7210A7350CA6A /* QuotientMultiSet-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "QuotientMultiSet-inl.h"; path = "folly/experimental/QuotientMultiSet-inl.h"; sourceTree = ""; }; - 276BFC8506A1910A5AD973FEAEFB2BD6 /* React-RCTNetwork-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-RCTNetwork-dummy.m"; sourceTree = ""; }; - 276C646216FB007F4DA63A5EA1E23167 /* CxxNativeModule.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = CxxNativeModule.cpp; sourceTree = ""; }; - 27740AED39B856AD14E9D9FEF84F85D7 /* React-RCTAnimation.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-RCTAnimation.xcconfig"; sourceTree = ""; }; + 274E9CA3F19C4A5A90B7C3123C3ADE1A /* TurboModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TurboModule.h; path = turbomodule/core/TurboModule.h; sourceTree = ""; }; + 2754641E5E1C3BA1D28BFF8DF52FC106 /* RNFirebaseEvents.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNFirebaseEvents.h; path = RNFirebase/RNFirebaseEvents.h; sourceTree = ""; }; + 2770335EEDFE5580A891C85517D01FBC /* UMAppLifecycleListener.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMAppLifecycleListener.h; sourceTree = ""; }; 279390C893577F74DD2049383E1EDD1A /* libKeyCommands.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libKeyCommands.a; path = libKeyCommands.a; sourceTree = BUILT_PRODUCTS_DIR; }; + 279DFE0F392F03FFE4686EC8AC1E9807 /* RCTNativeAnimatedNodesManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTNativeAnimatedNodesManager.h; path = Libraries/NativeAnimation/RCTNativeAnimatedNodesManager.h; sourceTree = ""; }; + 27C5B870EA804AE0BB08FE09575867E5 /* RCTMultilineTextInputViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTMultilineTextInputViewManager.m; sourceTree = ""; }; 27C71620694D8BFBA545CB1B9B57506C /* ro.lproj */ = {isa = PBXFileReference; includeInIndex = 1; name = ro.lproj; path = "Objective-C/TOCropViewController/Resources/ro.lproj"; sourceTree = ""; }; - 27C8EAF9DFEB41BE5E435DD9FD81B42E /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; - 27E6AED9FBDEF38A7FA78B749F80EA24 /* UMPermissionsMethodsDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMPermissionsMethodsDelegate.h; path = UMPermissionsInterface/UMPermissionsMethodsDelegate.h; sourceTree = ""; }; + 27E75A58374AF4D65C9D681F436DA77D /* YGValue.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = YGValue.cpp; path = yoga/YGValue.cpp; sourceTree = ""; }; + 27F8044BB7E4A1EC51400677033141C4 /* SDImageCoderHelper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageCoderHelper.h; path = SDWebImage/Core/SDImageCoderHelper.h; sourceTree = ""; }; + 2821AB3094CDBDE4CF840241C0BDE5AB /* RCTShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTShadowView.m; sourceTree = ""; }; 282B3B8630B35B791B564F393334998C /* EventFDWrapper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EventFDWrapper.h; path = folly/io/async/EventFDWrapper.h; sourceTree = ""; }; - 28449F76B89032B07C051A3E0089EC0B /* UIImage+Transform.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIImage+Transform.m"; path = "SDWebImage/Core/UIImage+Transform.m"; sourceTree = ""; }; - 284D9D2232E840D4407AF909CFEC6332 /* RNRootViewGestureRecognizer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNRootViewGestureRecognizer.h; path = ios/RNRootViewGestureRecognizer.h; sourceTree = ""; }; + 28304FBADAA1DE586D58C92C0673E75A /* BSG_KSLogger.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BSG_KSLogger.m; sourceTree = ""; }; + 284B9B89A1F33F4189DF7F7A93A6AD3D /* LNInterpolable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = LNInterpolable.h; sourceTree = ""; }; 286835DF3559AC299C2D9CD4496A883D /* FirebaseInstallations.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FirebaseInstallations.h; path = FirebaseInstallations/Source/Library/Public/FirebaseInstallations.h; sourceTree = ""; }; - 2868DBB725094899C2B14D6416E2A0E2 /* react-native-safe-area-context-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "react-native-safe-area-context-prefix.pch"; sourceTree = ""; }; - 2874635C8ACF2F545342C9694BF49DC3 /* RCTCustomInputController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTCustomInputController.m; sourceTree = ""; }; 287BBF5036A97E7A194DC153ECBD3AAA /* Fixture.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = Fixture.cpp; path = rsocket/benchmarks/Fixture.cpp; sourceTree = ""; }; - 287C8A93C301A3B7B63F622356930F97 /* MethodCall.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = MethodCall.cpp; sourceTree = ""; }; 2885BF137F3A56176A92387EEED7B8F1 /* diy-fp.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = "diy-fp.cc"; path = "double-conversion/diy-fp.cc"; sourceTree = ""; }; 288780D994881037854C7588B3978585 /* GDTCORUploader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCORUploader.h; path = GoogleDataTransport/GDTCORLibrary/Public/GDTCORUploader.h; sourceTree = ""; }; 288FA69B3B754B0FB6067DDECAD79A67 /* SDImageWebPCoder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageWebPCoder.h; path = SDWebImageWebPCoder/Classes/SDImageWebPCoder.h; sourceTree = ""; }; 28939CDB0CCA3985A14C65A8C16AB553 /* asn1t.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = asn1t.h; path = ios/include/openssl/asn1t.h; sourceTree = ""; }; - 28BBE692349E857ED55046519762BAA7 /* REAOperatorNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REAOperatorNode.h; sourceTree = ""; }; 28CE9608E7A72C33778634272680ABCE /* CancellationToken.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = CancellationToken.cpp; path = folly/CancellationToken.cpp; sourceTree = ""; }; 28D98DE7B4C06BC15C59B3B7C5D8B39D /* vp8li_enc.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = vp8li_enc.h; path = src/enc/vp8li_enc.h; sourceTree = ""; }; - 28E7299B4D7DC027AEA6FF8027B16E29 /* RNUserDefaults.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNUserDefaults.m; path = ios/RNUserDefaults.m; sourceTree = ""; }; 29036740DCDF6F5940B8B339551BDCC7 /* RSocketStateMachine.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RSocketStateMachine.h; path = rsocket/statemachine/RSocketStateMachine.h; sourceTree = ""; }; - 2905F5558875923B7AF4A82D78A04C68 /* RNSScreenStackHeaderConfig.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNSScreenStackHeaderConfig.m; path = ios/RNSScreenStackHeaderConfig.m; sourceTree = ""; }; 29227B5772A6FCF4BEFAE1D7C92803A2 /* FlowableDoOperator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FlowableDoOperator.h; path = yarpl/flowable/FlowableDoOperator.h; sourceTree = ""; }; 292BCA39737346379D2062A64AAFD7FE /* FIROptionsInternal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIROptionsInternal.h; path = FirebaseCore/Sources/Private/FIROptionsInternal.h; sourceTree = ""; }; - 2932CAE48B908051425DCA562EFACA17 /* BSG_KSCrashSentry.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashSentry.h; sourceTree = ""; }; - 29338AFC017E7E5A79D48DB5F1F97991 /* LNAnimator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = LNAnimator.h; sourceTree = ""; }; - 2955E1F0E269B00A6DF445737D241CC5 /* RCTPicker.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTPicker.m; sourceTree = ""; }; + 293F3A5861041C8FCB16C201994E495A /* RCTBlobPlugins.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTBlobPlugins.mm; sourceTree = ""; }; + 2952E27BF9F0CFCCA04A79B288B61238 /* SDAssociatedObject.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDAssociatedObject.h; path = SDWebImage/Private/SDAssociatedObject.h; sourceTree = ""; }; + 29589E6E9E730FD0965264637DE985D5 /* BSG_KSCrashDoctor.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BSG_KSCrashDoctor.m; sourceTree = ""; }; 295CEDAE4FA152B93443DBE17DCBE9A6 /* nanopb.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = nanopb.xcconfig; sourceTree = ""; }; 29606D0428A257B7EEA91DF2AEF5A104 /* logging.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = logging.cc; path = src/logging.cc; sourceTree = ""; }; - 29747568ABBBA9E9A1EC0F48BD467C22 /* BSG_KSJSONCodec.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSJSONCodec.c; sourceTree = ""; }; + 297C1427D1883C033093F4F85675077B /* RCTGIFImageDecoder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTGIFImageDecoder.h; path = Libraries/Image/RCTGIFImageDecoder.h; sourceTree = ""; }; 299D244F43EF10E054A5D4532D2242F5 /* dso.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = dso.h; path = ios/include/openssl/dso.h; sourceTree = ""; }; 29A3786758BA5BD9869DBCBF6C13D43C /* EventBase.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = EventBase.cpp; path = folly/io/async/EventBase.cpp; sourceTree = ""; }; 29A7D37421922AE17AD3190FEF825B11 /* RSocketStateMachine.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = RSocketStateMachine.cpp; path = rsocket/statemachine/RSocketStateMachine.cpp; sourceTree = ""; }; + 29B38072416B901FA476EE882CF93A28 /* TurboModule.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = TurboModule.cpp; path = turbomodule/core/TurboModule.cpp; sourceTree = ""; }; 29B836691D2C3E25B3EC9AFE80E342BF /* WriteChainAsyncTransportWrapper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = WriteChainAsyncTransportWrapper.h; path = folly/io/async/WriteChainAsyncTransportWrapper.h; sourceTree = ""; }; + 29C6A4E0DF9F91DE9CC5D92B1EDDF966 /* SDMemoryCache.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDMemoryCache.h; path = SDWebImage/Core/SDMemoryCache.h; sourceTree = ""; }; 29D9B2C34C5B4908444142055250AE80 /* GoogleDataTransport.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GoogleDataTransport.h; path = GoogleDataTransport/GDTCORLibrary/Public/GoogleDataTransport.h; sourceTree = ""; }; + 29DBCFDBAB5E42ECA99B47E3A80A0D86 /* SDImageCachesManagerOperation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageCachesManagerOperation.h; path = SDWebImage/Private/SDImageCachesManagerOperation.h; sourceTree = ""; }; 29E28015056A8B8122C22038951F8C02 /* cms.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = cms.h; path = ios/include/openssl/cms.h; sourceTree = ""; }; 29E9C1CBBFB95DE4094DBF41CFB75549 /* MallctlHelper.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = MallctlHelper.cpp; path = folly/memory/MallctlHelper.cpp; sourceTree = ""; }; - 29F3B76C0EF0EF9795762A690523B285 /* subscription.md */ = {isa = PBXFileReference; includeInIndex = 1; name = subscription.md; path = docs/subscription.md; sourceTree = ""; }; - 2A01A31FE793FB476EBD3590E428F3CA /* React-cxxreact.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = "React-cxxreact.podspec"; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 2A2794ABC6F0F9A92B0C680B4D7DC350 /* RCTAutoInsetsProtocol.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTAutoInsetsProtocol.h; sourceTree = ""; }; + 2A2F2DE8B28F8EE7AA23F9C17E4A6265 /* FBLazyVector.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = FBLazyVector.xcconfig; sourceTree = ""; }; + 2A445D57406D89161D847FE6F493ED4B /* ARTNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = ARTNode.m; path = ios/ARTNode.m; sourceTree = ""; }; 2A469D3C7285FE42D9BAFA2CB009D58A /* diy-fp.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "diy-fp.h"; path = "double-conversion/diy-fp.h"; sourceTree = ""; }; - 2A4F57D2ACE402704AF6C758AA83E669 /* UMAppLoaderInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMAppLoaderInterface.h; sourceTree = ""; }; - 2A825626709AF13F75D065EFCC2E9178 /* RNCWebViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCWebViewManager.h; path = apple/RNCWebViewManager.h; sourceTree = ""; }; + 2A54C74343506DD8F9DB00DE1828162E /* KeyCommands.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = KeyCommands.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 2A6F65F4B0F74C7D35F8BEEBC0871B78 /* RCTBorderStyle.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBorderStyle.h; sourceTree = ""; }; + 2A8C598E7D13712E2A6522664C2CF902 /* RNFastImage.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RNFastImage.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; 2A98DB0A4AB17DB921C1ED635750D654 /* ExceptionWrapper-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "ExceptionWrapper-inl.h"; path = "folly/ExceptionWrapper-inl.h"; sourceTree = ""; }; 2AB253740B78D4B6FC3BA8FB6859F65E /* BitIteratorDetail.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = BitIteratorDetail.h; path = folly/container/detail/BitIteratorDetail.h; sourceTree = ""; }; 2AC61BE0BDDF573058CD9FE666F12A72 /* AsyncUDPSocket.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AsyncUDPSocket.h; path = folly/io/async/AsyncUDPSocket.h; sourceTree = ""; }; - 2AC7952E4EB82FDF80EE45F4F7C9817C /* RCTDivisionAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTDivisionAnimatedNode.m; sourceTree = ""; }; + 2ACF30ED9C4843CE6121C3225A01ABAC /* ARTRenderableManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = ARTRenderableManager.m; sourceTree = ""; }; + 2AD25C4584C36E1652A6A750B2FC83D3 /* EXHapticsModule.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXHapticsModule.m; path = EXHaptics/EXHapticsModule.m; sourceTree = ""; }; 2ADFFB1471FE2E15D6E606ADFC40A14E /* GULSceneDelegateSwizzler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULSceneDelegateSwizzler.h; path = GoogleUtilities/SceneDelegateSwizzler/Private/GULSceneDelegateSwizzler.h; sourceTree = ""; }; 2AF7BDD7B589CE7CD8BC311B01574069 /* Memory.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Memory.h; path = folly/Memory.h; sourceTree = ""; }; 2B17A71888AA28CEFEC37B72F2A68A91 /* libreact-native-slider.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libreact-native-slider.a"; path = "libreact-native-slider.a"; sourceTree = BUILT_PRODUCTS_DIR; }; 2B3F4CBE63D26B3507E66BF620BF409E /* SysTime.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = SysTime.cpp; path = folly/portability/SysTime.cpp; sourceTree = ""; }; + 2B4FE23C1B1B0B1C72E5E9684CCFBD4A /* React-RCTSettings-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-RCTSettings-dummy.m"; sourceTree = ""; }; 2B55A15A4DD10CFE1C54130E09F18C61 /* FIRInstallationsErrors.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstallationsErrors.h; path = FirebaseInstallations/Source/Library/Public/FIRInstallationsErrors.h; sourceTree = ""; }; - 2B5B4D65517EA9E604FDECF4A1846876 /* RCTProfileTrampoline-i386.S */ = {isa = PBXFileReference; includeInIndex = 1; path = "RCTProfileTrampoline-i386.S"; sourceTree = ""; }; - 2B6B94978324A1717A292F62AC242F43 /* RCTScrollView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTScrollView.m; sourceTree = ""; }; - 2B73E343A993E6CEF42350881F8F0E84 /* BugsnagBreadcrumb.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagBreadcrumb.m; sourceTree = ""; }; - 2B7E6CF1DA3AC611617928B73C696AA2 /* SDWebImageDownloader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageDownloader.h; path = SDWebImage/Core/SDWebImageDownloader.h; sourceTree = ""; }; - 2B816DA2D6F8861904EA446D74DFF951 /* RCTBridgeModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBridgeModule.h; sourceTree = ""; }; 2B819B405EE6D794E6E47B0FB1CA3C6F /* UniqueInstance.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = UniqueInstance.cpp; path = folly/detail/UniqueInstance.cpp; sourceTree = ""; }; - 2B9791A84E3FD01985C6E61A8FE2E3BA /* RCTTypedModuleConstants.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTTypedModuleConstants.mm; sourceTree = ""; }; + 2B8651236CC6FA4973221A47C3851521 /* RCTRedBoxExtraDataViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTRedBoxExtraDataViewController.m; sourceTree = ""; }; + 2B8F0562C13ADD5D42DC1FD10F122F37 /* UMAppRecordInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMAppRecordInterface.h; sourceTree = ""; }; + 2BAB484E574AD0E1F43ED70EDCB51B4D /* RNForceTouchHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNForceTouchHandler.h; sourceTree = ""; }; 2BBD251041467488C62CAACF77FC7EE2 /* filter_enc.c */ = {isa = PBXFileReference; includeInIndex = 1; name = filter_enc.c; path = src/enc/filter_enc.c; sourceTree = ""; }; 2BE8A21AE787CA0316CAB8B12808184C /* EDFThreadPoolExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EDFThreadPoolExecutor.h; path = folly/executors/EDFThreadPoolExecutor.h; sourceTree = ""; }; - 2C0DFEE7AB0E2E06D08C7A0E58297A01 /* RNPushKitEventListener.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNPushKitEventListener.h; path = RNNotifications/RNPushKitEventListener.h; sourceTree = ""; }; - 2C2F1EF0A75899E0297AE7C0ED554440 /* ARTGroupManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = ARTGroupManager.h; sourceTree = ""; }; - 2C2FBC0A054D33CDCCF8C06A100B019E /* RCTDiffClampAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTDiffClampAnimatedNode.h; sourceTree = ""; }; - 2C4AD36AF9A99718600B5ECBED9C08F9 /* Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = Private.h; sourceTree = ""; }; - 2C514716EB275CDB666C4007580DC233 /* QBAlbumCell.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = QBAlbumCell.h; path = ios/QBImagePicker/QBImagePicker/QBAlbumCell.h; sourceTree = ""; }; + 2C1299DBD1706104A23932D328B02DFB /* BugsnagSessionTrackingApiClient.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagSessionTrackingApiClient.m; sourceTree = ""; }; + 2C41DB5D4429F6735546346E78BC1842 /* React-jsinspector-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-jsinspector-dummy.m"; sourceTree = ""; }; 2C589B0E36FF0F86584B6C9F7A250535 /* ScopeGuard.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = ScopeGuard.cpp; path = folly/ScopeGuard.cpp; sourceTree = ""; }; - 2C5CE9C01B4C47DC2AF69CC5D89C02F9 /* RCTAppearance.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTAppearance.h; path = React/CoreModules/RCTAppearance.h; sourceTree = ""; }; 2C5D41B5EA1A48033608AC8B23407F3C /* libssl.a */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = archive.ar; name = libssl.a; path = ios/lib/libssl.a; sourceTree = ""; }; - 2C67267A8A17001BD55473995B72CDCF /* ReactNativeKeyboardInput-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "ReactNativeKeyboardInput-prefix.pch"; sourceTree = ""; }; 2C6742C7BEBBD69BBBB16472408F518B /* FIRInstallationsLogger.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstallationsLogger.h; path = FirebaseInstallations/Source/Library/FIRInstallationsLogger.h; sourceTree = ""; }; - 2C8937263FFB2C59A5E5A48194035D49 /* RCTObjcExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTObjcExecutor.h; sourceTree = ""; }; + 2C6F3978CA685DFEFB1773CCB1B9CE28 /* RCTBaseTextInputShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBaseTextInputShadowView.h; sourceTree = ""; }; + 2C84EC5317FE953C40888C2DFEECF5CB /* RCTUIUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTUIUtils.h; sourceTree = ""; }; 2C93089C71CB9569A26437215513C814 /* GDTCORConsoleLogger.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCORConsoleLogger.h; path = GoogleDataTransport/GDTCORLibrary/Public/GDTCORConsoleLogger.h; sourceTree = ""; }; 2C98A1F038692A38FFDA4138201117EC /* ThreadName.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ThreadName.h; path = folly/system/ThreadName.h; sourceTree = ""; }; 2CA6F654F7CF1E6F99A19DC2E57C9CC2 /* pb_decode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = pb_decode.h; sourceTree = ""; }; - 2CAC25D7FC5DF89ED2F7953785D55282 /* UMNativeModulesProxy.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMNativeModulesProxy.h; sourceTree = ""; }; + 2CAB9455E7C439073AD7677FC69858E7 /* BugsnagPlugin.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagPlugin.h; sourceTree = ""; }; 2CB20BD04177E56CACE67BEA86275FAF /* CacheLocality.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = CacheLocality.cpp; path = folly/concurrency/CacheLocality.cpp; sourceTree = ""; }; - 2CF59DE05A098DAA833C7A70753F25BC /* NativeExpressComponent.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = NativeExpressComponent.h; sourceTree = ""; }; + 2CCE0261D8E1FAB467E72EAF18BE5367 /* RCTModalHostViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTModalHostViewManager.m; sourceTree = ""; }; + 2CF4A4990F18F91BDA1F18FCACB939BA /* RNFastImage.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNFastImage.xcconfig; sourceTree = ""; }; + 2CF592E7BFA05329CFF059EB3C6FE874 /* React-RCTBlob-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-RCTBlob-prefix.pch"; sourceTree = ""; }; 2CF7D6056217651E8A1F42E80D1E9B80 /* StampedPtr.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = StampedPtr.h; path = folly/experimental/StampedPtr.h; sourceTree = ""; }; 2CFC64A70AB0E91C95E6C266AD5D221B /* AsyncSocketException.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = AsyncSocketException.cpp; path = folly/io/async/AsyncSocketException.cpp; sourceTree = ""; }; 2D113AB762E333161D4F04EE310B3C90 /* Pods-RocketChatRN-acknowledgements.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-RocketChatRN-acknowledgements.plist"; sourceTree = ""; }; - 2D1897FAFE5D5F8C700B53AD1E489BE0 /* RCTI18nUtil.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTI18nUtil.m; sourceTree = ""; }; - 2D1FDE73C0584894CCEAA11A49E2129D /* RCTImageLoader.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTImageLoader.mm; sourceTree = ""; }; + 2D1E434D8F0C729C65FBABAEA976A74C /* BSG_KSCrashType.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashType.h; sourceTree = ""; }; 2D2584473F8E196EEB11BE408FA7E274 /* Indestructible.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Indestructible.h; path = folly/Indestructible.h; sourceTree = ""; }; - 2D2D1751ACFF90E1CCB30E85EEEB3C24 /* RCTNetworkTask.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTNetworkTask.h; path = Libraries/Network/RCTNetworkTask.h; sourceTree = ""; }; 2D2F29E9273B0EF4FE4CC44B6380CDE5 /* FlowableConcatOperators.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FlowableConcatOperators.h; path = yarpl/flowable/FlowableConcatOperators.h; sourceTree = ""; }; 2D36006052769CE515737F1DB51F04D2 /* CertificateUtils.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = CertificateUtils.cpp; path = xplat/Flipper/CertificateUtils.cpp; sourceTree = ""; }; + 2D3760408329F3467063E49052CF55BA /* RNScreens-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNScreens-prefix.pch"; sourceTree = ""; }; + 2D38BC1365EFC740D026D894B50F8F4B /* RCTProgressViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTProgressViewManager.h; sourceTree = ""; }; 2D3D68E6A6FD5EAFBF6E6CF0344C747D /* Aligned.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Aligned.h; path = folly/lang/Aligned.h; sourceTree = ""; }; 2D4C752E0B92569CEEF88B435C38553F /* CLSStackFrame.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CLSStackFrame.h; path = iOS/Crashlytics.framework/Headers/CLSStackFrame.h; sourceTree = ""; }; - 2D64575D372A7F5A5C6B1E7CAA66CD49 /* BugsnagConfiguration.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagConfiguration.m; sourceTree = ""; }; - 2D6D7B9EFBE1AC81F29FC86693A8CAB1 /* LICENSE.md */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE.md; sourceTree = ""; }; - 2D780F29E8B27EF815A15DF6A4D809F3 /* RCTHTTPRequestHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTHTTPRequestHandler.h; path = Libraries/Network/RCTHTTPRequestHandler.h; sourceTree = ""; }; + 2D6EF7CE3655E35BBB5D43A557C623D4 /* BSG_KSSingleton.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSSingleton.h; sourceTree = ""; }; + 2D71622D3B17E49A160FEB716B01283C /* UIImage+ForceDecode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIImage+ForceDecode.m"; path = "SDWebImage/Core/UIImage+ForceDecode.m"; sourceTree = ""; }; + 2D77F3BDBF68CAFA88D4D953B4D3BBE5 /* FBLazyVector.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = FBLazyVector.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; 2D7BF22D6E06F8C37F33C8CDB0AFDFBC /* upsampling_neon.c */ = {isa = PBXFileReference; includeInIndex = 1; name = upsampling_neon.c; path = src/dsp/upsampling_neon.c; sourceTree = ""; }; - 2D8409785A38DCC8B6E9EFC8DDF80F5E /* BugsnagHandledState.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagHandledState.m; sourceTree = ""; }; 2D86D213801ABEF7CD86291D4F3FDD34 /* libUMAppLoader.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libUMAppLoader.a; path = libUMAppLoader.a; sourceTree = BUILT_PRODUCTS_DIR; }; 2D8F07A79BD6CB0BEC7D9F73FF2AFA41 /* FBLPromise+Retry.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "FBLPromise+Retry.m"; path = "Sources/FBLPromises/FBLPromise+Retry.m"; sourceTree = ""; }; - 2DB92C8FC3FC92540D11087C99286E40 /* RCTValueAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTValueAnimatedNode.h; sourceTree = ""; }; - 2DCFC81374FB80B7085A8B149771FECD /* RNJitsiMeetViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNJitsiMeetViewManager.h; path = ios/RNJitsiMeetViewManager.h; sourceTree = ""; }; + 2DA6FAC6C0E1D26442FDF849CB49F96B /* QBVideoIndicatorView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = QBVideoIndicatorView.h; path = ios/QBImagePicker/QBImagePicker/QBVideoIndicatorView.h; sourceTree = ""; }; + 2DB0380EF9E1141B65BE3D7DA88631E4 /* RCTBridgeModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBridgeModule.h; sourceTree = ""; }; + 2DD091879376E20B8F2125188DF93C9F /* RNCWebViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCWebViewManager.h; path = apple/RNCWebViewManager.h; sourceTree = ""; }; 2DDE527B11E155E4BB506DEC931D0CBD /* webp_enc.c */ = {isa = PBXFileReference; includeInIndex = 1; name = webp_enc.c; path = src/enc/webp_enc.c; sourceTree = ""; }; - 2DF42191E5D0F0270A08953BE5753EBA /* RCTInputAccessoryView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTInputAccessoryView.m; sourceTree = ""; }; - 2E04D3A647F36E8B028E2D8851475024 /* UMAppLoaderProvider.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMAppLoaderProvider.h; path = UMAppLoader/UMAppLoaderProvider.h; sourceTree = ""; }; + 2DF3FE9A90E35F4B2262D0927A9BDD72 /* ReactCommon.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = ReactCommon.xcconfig; sourceTree = ""; }; 2E105AEEC4F98A6688022793332EF421 /* IOBufQueue.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = IOBufQueue.cpp; path = folly/io/IOBufQueue.cpp; sourceTree = ""; }; - 2E31D2EDC5ECA24821ED9B416DBC9795 /* UIImage+Extension.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIImage+Extension.h"; path = "ios/src/UIImage+Extension.h"; sourceTree = ""; }; 2E342836BC369B6A02CA365B2EDFE945 /* cct.nanopb.c */ = {isa = PBXFileReference; includeInIndex = 1; name = cct.nanopb.c; path = GoogleDataTransportCCTSupport/GDTCCTLibrary/Protogen/nanopb/cct.nanopb.c; sourceTree = ""; }; 2E38B6606BBB78AB1FF04F7074200380 /* FlipperUtil.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FlipperUtil.m; path = iOS/FlipperKit/FlipperUtil.m; sourceTree = ""; }; - 2E4E3D7778CEABC0932F3CD31EEC5032 /* RNPinchHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNPinchHandler.h; sourceTree = ""; }; + 2E3FBB4B21D8F7FB43EB51557DF76628 /* RNSScreen.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNSScreen.h; path = ios/RNSScreen.h; sourceTree = ""; }; 2E51A17A62CC1ED1DD8973517632E8A4 /* DistributedMutex-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "DistributedMutex-inl.h"; path = "folly/synchronization/DistributedMutex-inl.h"; sourceTree = ""; }; - 2E5F66F8E856DEE00B552564AF706E9D /* RCTPickerManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTPickerManager.m; sourceTree = ""; }; - 2E72E9D52F37CD871C6EFA0C46E5899D /* RCTBridge.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBridge.h; sourceTree = ""; }; - 2E7E8B77C5E49902748BAC6FD806AE7F /* JsArgumentHelpers.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = JsArgumentHelpers.h; sourceTree = ""; }; + 2E53AA22994BC70E4C865791B17953DA /* RCTImageLoaderProtocol.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageLoaderProtocol.h; path = Libraries/Image/RCTImageLoaderProtocol.h; sourceTree = ""; }; + 2E66F3FF0B7BBB43B5320FEA1518AB08 /* RNVectorIcons-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNVectorIcons-prefix.pch"; sourceTree = ""; }; + 2E7BFCBEA87A5744BCEABEF955612D99 /* RCTRootViewInternal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTRootViewInternal.h; sourceTree = ""; }; 2E82DDAD9A9BDD55B50D8A85D999856D /* FIRLibrary.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRLibrary.h; path = FirebaseCore/Sources/Private/FIRLibrary.h; sourceTree = ""; }; + 2E87E59039E4BB326DC1CB1885E97319 /* SDWebImageCacheSerializer.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWebImageCacheSerializer.m; path = SDWebImage/Core/SDWebImageCacheSerializer.m; sourceTree = ""; }; 2EA7F3E61180F9381D6E7007D93FDC30 /* logging.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = logging.cc; path = src/logging.cc; sourceTree = ""; }; - 2EA97B926A768539C6BAA099C794686B /* RNFirebase.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNFirebase.xcconfig; sourceTree = ""; }; 2EB8D45C0E97E90D087657FC89EDEF81 /* FrameTransport.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FrameTransport.h; path = rsocket/framing/FrameTransport.h; sourceTree = ""; }; + 2ED2342C10FD39C1A52702417DE88FE2 /* RCTProfileTrampoline-i386.S */ = {isa = PBXFileReference; includeInIndex = 1; path = "RCTProfileTrampoline-i386.S"; sourceTree = ""; }; + 2ED7C8D28CC217E2C58459E3ADB5A56D /* React.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = React.xcconfig; sourceTree = ""; }; 2EECC37A5384ADA3A0EA2363ED1312A5 /* StreamResponder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = StreamResponder.h; path = rsocket/statemachine/StreamResponder.h; sourceTree = ""; }; 2EF43FFB9533324103690B426A450B35 /* GULLoggerLevel.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULLoggerLevel.h; path = GoogleUtilities/Logger/Public/GULLoggerLevel.h; sourceTree = ""; }; 2EF9D1B841C6204A2EC5D0DFE011FE80 /* io_dec.c */ = {isa = PBXFileReference; includeInIndex = 1; name = io_dec.c; path = src/dec/io_dec.c; sourceTree = ""; }; - 2F453AB8650E5E04AF66A8676A2B8967 /* RCTInterpolationAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTInterpolationAnimatedNode.m; sourceTree = ""; }; - 2F4B4CF25B4C47002CC185DC4D991BFD /* Utils.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = Utils.cpp; path = yoga/Utils.cpp; sourceTree = ""; }; - 2F6E770107F0F9662E99148E09934317 /* BSG_KSObjC.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSObjC.c; sourceTree = ""; }; + 2F0325724007B72AFA7EE715258DDB4F /* RCTRootContentView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTRootContentView.m; sourceTree = ""; }; + 2F0C67D3A613AAE0E62B18C637A57394 /* RCTSettingsPlugins.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTSettingsPlugins.h; path = Libraries/Settings/RCTSettingsPlugins.h; sourceTree = ""; }; 2F96BBC2C349EFE0561E41FF1D59ADE2 /* Assume-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "Assume-inl.h"; path = "folly/lang/Assume-inl.h"; sourceTree = ""; }; 2FA7FAF71D780486BCBC9CF348A92AFC /* SDImageWebPCoder.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageWebPCoder.m; path = SDWebImageWebPCoder/Classes/SDImageWebPCoder.m; sourceTree = ""; }; + 2FB541B83A2F7F69060002F122465ABB /* RCTUtilsUIOverride.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTUtilsUIOverride.m; sourceTree = ""; }; 2FCFBC7F2F86F2106715AE7854979DDC /* GoogleDataTransportCCTSupport.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = GoogleDataTransportCCTSupport.xcconfig; sourceTree = ""; }; - 2FD687F7A3E9231B853C6F9BB2506528 /* UMFileSystemInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMFileSystemInterface.h; path = UMFileSystemInterface/UMFileSystemInterface.h; sourceTree = ""; }; 2FD89FE7149F49ECE939C0D668485C2A /* pt.lproj */ = {isa = PBXFileReference; includeInIndex = 1; name = pt.lproj; path = "Objective-C/TOCropViewController/Resources/pt.lproj"; sourceTree = ""; }; + 2FE202FE8BDE8756A41A567D0E8DF692 /* RCTStatusBarManager.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTStatusBarManager.mm; sourceTree = ""; }; 2FE243CEBF31283F9B48FD56D86CE803 /* Random.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = Random.cpp; path = folly/Random.cpp; sourceTree = ""; }; + 2FE8B577D2DEB6FA142EB03FF7D631E6 /* NSError+BSG_SimpleConstructor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "NSError+BSG_SimpleConstructor.h"; sourceTree = ""; }; 2FEE60C719A471DBD4B5E6093935C8FD /* TOCropViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = TOCropViewController.m; path = "Objective-C/TOCropViewController/TOCropViewController.m"; sourceTree = ""; }; + 2FF1012EBC98F00CF77CDF5E8ADC5331 /* REANode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REANode.h; sourceTree = ""; }; 2FF492AE67C415F581B90EE78BE0ED44 /* FIRInstallationsStore.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstallationsStore.h; path = FirebaseInstallations/Source/Library/InstallationsStore/FIRInstallationsStore.h; sourceTree = ""; }; - 2FFD01ED62EB70B241703996ED004808 /* SDWebImagePrefetcher.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWebImagePrefetcher.m; path = SDWebImage/Core/SDWebImagePrefetcher.m; sourceTree = ""; }; - 30496EEC07B29FD00B42D064DFA20B22 /* Yoga-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Yoga-prefix.pch"; sourceTree = ""; }; - 306C50F833A0809C36C0DD5B74E014D1 /* zh-Hans.lproj */ = {isa = PBXFileReference; includeInIndex = 1; name = "zh-Hans.lproj"; path = "ios/QBImagePicker/QBImagePicker/zh-Hans.lproj"; sourceTree = ""; }; - 307AC7E91B54A8B513EEE19246B784DA /* SDImageCacheDefine.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageCacheDefine.h; path = SDWebImage/Core/SDImageCacheDefine.h; sourceTree = ""; }; - 3082B4F67DF8A2C570FEF766BE0A18F3 /* KeyCommands-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "KeyCommands-dummy.m"; sourceTree = ""; }; - 30BAC8AC4EF89E119C4D7156A861883C /* UMAppLoader.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = UMAppLoader.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - 30D01623D5B2069095D4078A25ADB625 /* BridgeJSCallInvoker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = BridgeJSCallInvoker.h; path = callinvoker/ReactCommon/BridgeJSCallInvoker.h; sourceTree = ""; }; - 30E068B0B144FCD0EAD039ECE9DB57A8 /* RCTTypeSafety-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RCTTypeSafety-dummy.m"; sourceTree = ""; }; - 30E7AB436B129FA770A942480C3CCFD1 /* Yoga-internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "Yoga-internal.h"; path = "yoga/Yoga-internal.h"; sourceTree = ""; }; - 310CCBD58CAC10932222DD449C29A85E /* EXHapticsModule.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXHapticsModule.m; path = EXHaptics/EXHapticsModule.m; sourceTree = ""; }; - 3112F58816F680D616BEE524C8BA9360 /* UMViewManagerAdapter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMViewManagerAdapter.h; sourceTree = ""; }; - 311652007C95DA14AF3C4E1583B6843E /* NSImage+Compatibility.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSImage+Compatibility.m"; path = "SDWebImage/Core/NSImage+Compatibility.m"; sourceTree = ""; }; - 31172A1D79DC9491F3DE61DC9D8DE12B /* EXVideoPlayerViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = EXVideoPlayerViewController.h; sourceTree = ""; }; + 302CC1F73D2932EF41A58CFB019F761C /* RNFirebaseAdMob.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNFirebaseAdMob.m; sourceTree = ""; }; + 3035324485AF0B35786E811996BA977F /* RNUserDefaults.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNUserDefaults.xcconfig; sourceTree = ""; }; + 304742E7A35470A67B5DC35A03BAD9E6 /* RCTDevSettings.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTDevSettings.mm; sourceTree = ""; }; + 304938CE06B836B9FFCF307EE419A0FD /* React-RCTText.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = "React-RCTText.podspec"; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 308213306CADB3BB2BE07F5AB7B6C62C /* UMErrorCodes.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMErrorCodes.h; path = UMCore/UMErrorCodes.h; sourceTree = ""; }; + 308610A6762D5A0F7D9B48416021E79B /* RNFirebase.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNFirebase.h; path = RNFirebase/RNFirebase.h; sourceTree = ""; }; + 30A7ACE64949128CF3F1F8D22E3DDAA7 /* React-RCTImage-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-RCTImage-dummy.m"; sourceTree = ""; }; + 30C96B6FBE38ADE27EA3D6006C0AC7A0 /* SDImageCachesManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageCachesManager.h; path = SDWebImage/Core/SDImageCachesManager.h; sourceTree = ""; }; + 30E86DAB45478CBCE68E4AA9FDC62FE8 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; 311D3552CE0BEA00664B89CA15F9E487 /* DynamicConverter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DynamicConverter.h; path = folly/DynamicConverter.h; sourceTree = ""; }; - 3121408745595749887D41BA8C1D4AB2 /* RCTManagedPointer.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTManagedPointer.mm; sourceTree = ""; }; 3121F4E39E2FDCA07C70F743382E9D1D /* GDTCORPrioritizer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCORPrioritizer.h; path = GoogleDataTransport/GDTCORLibrary/Public/GDTCORPrioritizer.h; sourceTree = ""; }; + 3128089847F295173218573240CA62E0 /* BSG_KSSignalInfo.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSSignalInfo.c; sourceTree = ""; }; 31284479B3D54042FE245BE41CF1013B /* x509v3.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = x509v3.h; path = ios/include/openssl/x509v3.h; sourceTree = ""; }; - 3128C28642D3ACDF91F0A1B18869FF79 /* Yoga.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = Yoga.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - 3149899EA1140A5AAE52CCD55745C11B /* RCTConvert+FFFastImage.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "RCTConvert+FFFastImage.m"; path = "ios/FastImage/RCTConvert+FFFastImage.m"; sourceTree = ""; }; 3151A27F8EB83157C77B704A82CEAB27 /* CallstackHelper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CallstackHelper.h; path = xplat/Flipper/utils/CallstackHelper.h; sourceTree = ""; }; - 31544FA1A34C77D66C793534B5D01D8F /* RCTUIManagerObserverCoordinator.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTUIManagerObserverCoordinator.mm; sourceTree = ""; }; - 3181EBFF3AA9E8E21FE1CB080DDF96F4 /* RCTNativeAnimatedNodesManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTNativeAnimatedNodesManager.h; path = Libraries/NativeAnimation/RCTNativeAnimatedNodesManager.h; sourceTree = ""; }; - 3190F6F63102777D0B20446986C48AC0 /* RNCSlider.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCSlider.m; path = ios/RNCSlider.m; sourceTree = ""; }; + 315E30612ACC9C13920085075E20ECF5 /* RNFetchBlobFS.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNFetchBlobFS.m; path = ios/RNFetchBlobFS.m; sourceTree = ""; }; + 318B64AE25ED8CA579ED1FD92C0473CC /* BSG_KSObjCApple.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSObjCApple.h; sourceTree = ""; }; + 31A23BF4764F4A6B16A512C5E4A2B191 /* RCTAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTAnimatedNode.m; sourceTree = ""; }; 31A6F042C824B8C234E02AF82D6074C4 /* String.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = String.h; path = folly/String.h; sourceTree = ""; }; - 31B9586A25A945DFDF336F9090B11E07 /* YGValue.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = YGValue.cpp; path = yoga/YGValue.cpp; sourceTree = ""; }; + 31BF8E9A69B7962F3C4A496E22C8CE72 /* RNDeviceInfo.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNDeviceInfo.xcconfig; sourceTree = ""; }; 31CA4A4746C7B9C11F6F7B92681A9B88 /* SysStat.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SysStat.h; path = folly/portability/SysStat.h; sourceTree = ""; }; - 31E08DAC1A619FCDA26A814273FD6980 /* SDImageIOCoder.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageIOCoder.m; path = SDWebImage/Core/SDImageIOCoder.m; sourceTree = ""; }; - 31EE61B5B2C4934ACFE959BCEB6D5CAA /* RNFetchBlobFS.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNFetchBlobFS.m; path = ios/RNFetchBlobFS.m; sourceTree = ""; }; + 31E9DD0C540F21C1682C294155AE278C /* RCTPackagerClient.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTPackagerClient.m; sourceTree = ""; }; + 31F00CD9709CD358D4803D259F185D52 /* READebugNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = READebugNode.h; sourceTree = ""; }; 31F50628462B7286EECC487C600E7514 /* Flipper-Glog.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Flipper-Glog.xcconfig"; sourceTree = ""; }; + 3216D6E46C1C5A0CD982628FC88EC10E /* ARTTextFrame.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ARTTextFrame.h; path = ios/ARTTextFrame.h; sourceTree = ""; }; + 32354813AD17F8B119F088F385ED3A21 /* YGNodePrint.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YGNodePrint.h; path = yoga/YGNodePrint.h; sourceTree = ""; }; + 32405027C9B55B8B729CCE839004473A /* React-RCTText-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-RCTText-prefix.pch"; sourceTree = ""; }; 3254163C10759D309B2575E574C6828A /* alpha_processing_neon.c */ = {isa = PBXFileReference; includeInIndex = 1; name = alpha_processing_neon.c; path = src/dsp/alpha_processing_neon.c; sourceTree = ""; }; - 326D36A3C74DC68345558AC3A851ADC9 /* RCTErrorInfo.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTErrorInfo.m; sourceTree = ""; }; - 327656D2867C9A9125E6AD17423A15D1 /* ARTLinearGradient.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = ARTLinearGradient.h; sourceTree = ""; }; + 325AFA73CDE70E8C6AC0BE5AF94DACA9 /* RCTJavaScriptLoader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTJavaScriptLoader.h; sourceTree = ""; }; + 325DB89FBB298D1E53FDDF619466097F /* RCTView+SafeAreaCompat.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "RCTView+SafeAreaCompat.m"; path = "ios/SafeAreaView/RCTView+SafeAreaCompat.m"; sourceTree = ""; }; + 3285D9B72175CF0C2521DD29C3BAE674 /* RCTVirtualTextShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTVirtualTextShadowView.m; sourceTree = ""; }; + 329D53AA3B2CB48810229043407F62BB /* RCTCxxUtils.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTCxxUtils.mm; sourceTree = ""; }; + 329DC7A633BAB76938D6214F8A7A7D35 /* RNGestureHandlerDirection.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNGestureHandlerDirection.h; path = ios/RNGestureHandlerDirection.h; sourceTree = ""; }; 32A060A76FC1635AD55AAE0FB1400BD3 /* FBLPromise+Any.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FBLPromise+Any.h"; path = "Sources/FBLPromises/include/FBLPromise+Any.h"; sourceTree = ""; }; - 32A66B75467762CA4BE821738EB96B6D /* RCTDatePickerManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTDatePickerManager.m; sourceTree = ""; }; + 32AD5D4175F53D91B15D567ECECAB5E8 /* UMFileSystemInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMFileSystemInterface.h; path = UMFileSystemInterface/UMFileSystemInterface.h; sourceTree = ""; }; 32D303C87B10C49F7145013CEFE7B67F /* PromisesObjC.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = PromisesObjC.xcconfig; sourceTree = ""; }; 32D55BCC259F3B2CF7742F3661A16058 /* FlipperKitLayoutPlugin.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FlipperKitLayoutPlugin.h; path = iOS/Plugins/FlipperKitLayoutPlugin/FlipperKitLayoutPlugin/FlipperKitLayoutPlugin.h; sourceTree = ""; }; - 32D6CEEE188F5E019A0E0D332B9CDF02 /* REAParamNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REAParamNode.m; sourceTree = ""; }; - 32D8F496A70588E5E81E35795E7BD3EB /* InspectorInterfaces.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = InspectorInterfaces.cpp; sourceTree = ""; }; 32DC6C87B3109D3A047BB48B1D9547AD /* DoubleConversion.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = DoubleConversion.xcconfig; sourceTree = ""; }; + 33065731262EBDAC80BA38EDAB757A99 /* SDWebImageIndicator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageIndicator.h; path = SDWebImage/Core/SDWebImageIndicator.h; sourceTree = ""; }; + 33066923C6F654D679137ADBB1EAA68D /* RCTConvert+Text.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "RCTConvert+Text.h"; path = "Libraries/Text/RCTConvert+Text.h"; sourceTree = ""; }; + 3313BDB4C4B1E90E23206E02F7FC3565 /* rn-fetch-blob-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "rn-fetch-blob-dummy.m"; sourceTree = ""; }; + 333276E0DEE349E58047CEB243CBDAD6 /* RCTTiming.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTTiming.mm; sourceTree = ""; }; 3347A1AB6546F0A3977529B8F199DC41 /* libPromisesObjC.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libPromisesObjC.a; path = libPromisesObjC.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 335BEEEE056B1F03F417E347AC410F26 /* SDWebImageCacheSerializer.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWebImageCacheSerializer.m; path = SDWebImage/Core/SDWebImageCacheSerializer.m; sourceTree = ""; }; - 33663800333B2DE3B96EF0EC3C8A7306 /* RCTMultipartStreamReader.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTMultipartStreamReader.m; sourceTree = ""; }; - 33A0B92651A94B287FDE6B14359D92F7 /* RNFirebaseUtil.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNFirebaseUtil.m; path = RNFirebase/RNFirebaseUtil.m; sourceTree = ""; }; + 3361B4E72C8FCEB3AD3A3065E0CD2F39 /* RCTDevLoadingView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTDevLoadingView.m; sourceTree = ""; }; + 33721795E258A337460BB68AD0878BC4 /* EXHapticsModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXHapticsModule.h; path = EXHaptics/EXHapticsModule.h; sourceTree = ""; }; + 337768C93212495645F0A6F77B206DD3 /* UMLogHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMLogHandler.h; sourceTree = ""; }; + 33B6127CA909C10B3039F6A36F103041 /* NSTextStorage+FontScaling.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "NSTextStorage+FontScaling.m"; sourceTree = ""; }; 33D0D0C5D3CF1763B7E47E413FDAD898 /* GCDAsyncSocket.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GCDAsyncSocket.m; path = Source/GCD/GCDAsyncSocket.m; sourceTree = ""; }; - 33D551B60F8530F4356EB55964B4FA03 /* RCTSettingsManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTSettingsManager.h; path = Libraries/Settings/RCTSettingsManager.h; sourceTree = ""; }; + 33EA3625C89AF9C55E037A6063FE914A /* RCTCxxBridgeDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTCxxBridgeDelegate.h; sourceTree = ""; }; + 33F2996066106B24E60929081ED488EA /* RCTRootShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTRootShadowView.h; sourceTree = ""; }; 340CF216836AE1108FD997C37A4833D6 /* YGLayout.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = YGLayout.m; path = YogaKit/Source/YGLayout.m; sourceTree = ""; }; + 340ED29903801A2D2027931C0A257BA3 /* RCTTrackingAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTrackingAnimatedNode.h; sourceTree = ""; }; 342C1A6308329C1B905E347FC5BDAFC4 /* frame_enc.c */ = {isa = PBXFileReference; includeInIndex = 1; name = frame_enc.c; path = src/enc/frame_enc.c; sourceTree = ""; }; - 3438ADEC6BFD173853DBE02CDB14D4E6 /* ImageCropPicker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ImageCropPicker.h; path = ios/src/ImageCropPicker.h; sourceTree = ""; }; - 346826B90C891C3D7725CA4C9354B292 /* RCTGIFImageDecoder.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTGIFImageDecoder.mm; sourceTree = ""; }; - 3472323B1AEFB0C13EE49F7103F6F7E0 /* UMReactLogHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = UMReactLogHandler.m; sourceTree = ""; }; - 3486F0BAF3DFB19D0DC2AB86584B4982 /* EXAudioRecordingPermissionRequester.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXAudioRecordingPermissionRequester.m; path = EXAV/EXAudioRecordingPermissionRequester.m; sourceTree = ""; }; + 344CE5009D65C274F4AD6785A32E6357 /* RNCAppearanceProvider.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCAppearanceProvider.h; path = ios/Appearance/RNCAppearanceProvider.h; sourceTree = ""; }; + 347C1369A1F9E9A6B99CC9B3E9CC2BE1 /* RCTFollyConvert.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTFollyConvert.h; sourceTree = ""; }; + 3481CF02F874B055313278FAF6552F55 /* RCTUITextView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTUITextView.m; sourceTree = ""; }; 348B199EEFC3DA083A2E10408D39B62E /* picture_rescale_enc.c */ = {isa = PBXFileReference; includeInIndex = 1; name = picture_rescale_enc.c; path = src/enc/picture_rescale_enc.c; sourceTree = ""; }; + 348DC81981FE90DE486FD92B8BCC8ABD /* RCTImageBlurUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageBlurUtils.h; path = Libraries/Image/RCTImageBlurUtils.h; sourceTree = ""; }; 3494E2DD06E10CB2B5DAEE094A77E219 /* SKTapListener.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SKTapListener.h; path = iOS/Plugins/FlipperKitLayoutPlugin/FlipperKitLayoutPlugin/SKTapListener.h; sourceTree = ""; }; + 3497C53C154E585DC539075DEAE714FB /* RCTActivityIndicatorViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTActivityIndicatorViewManager.h; sourceTree = ""; }; 34B1FFB6141C73209C4E5A15B39EDEA7 /* GDTCORStorageProtocol.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCORStorageProtocol.h; path = GoogleDataTransport/GDTCORLibrary/Public/GDTCORStorageProtocol.h; sourceTree = ""; }; 34B7BDD48B65CB852F0BD71AA4D5F649 /* fixed-dtoa.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = "fixed-dtoa.cc"; path = "double-conversion/fixed-dtoa.cc"; sourceTree = ""; }; 34C72E24FF9AE020F595BAB7BE7B92FF /* FlipperKit-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "FlipperKit-umbrella.h"; sourceTree = ""; }; - 34D5C6524B5EECBE4308D60A0177C1B9 /* jsi.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = jsi.h; sourceTree = ""; }; - 34E54A0143BAC6774E7ED46216E9562D /* RCTFollyConvert.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTFollyConvert.h; sourceTree = ""; }; - 34F0B89001764776FAF3677B7137DC39 /* RNReanimated-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNReanimated-dummy.m"; sourceTree = ""; }; + 34FABA7B30D3A9D6C7D6FDE389477AD8 /* RCTImageCache.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTImageCache.m; sourceTree = ""; }; + 34FE37133A8BB7891A2F8E574BB2FA11 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; 352C7AC625618C55B3C1EB9ECA388A12 /* Semaphore.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = Semaphore.cpp; path = folly/portability/Semaphore.cpp; sourceTree = ""; }; - 35808B26E361D66266FCEDC142699F57 /* RCTCxxBridge.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTCxxBridge.mm; sourceTree = ""; }; - 359E24958405B6EDF860F722188F7647 /* RCTShadowView+Layout.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RCTShadowView+Layout.h"; sourceTree = ""; }; - 35CF31EF6370977242F693B963634BA3 /* ReactNativeKeyboardInput.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = ReactNativeKeyboardInput.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - 35D65F11FB88FBD45804F6317971486A /* RCTRootContentView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTRootContentView.m; sourceTree = ""; }; + 354E0CF6123FD7C6CB2290A9B3B94905 /* RCTPackagerClient.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTPackagerClient.h; sourceTree = ""; }; + 35790A06CA6341A8862F31EE0036A964 /* RCTConvert+UIBackgroundFetchResult.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RCTConvert+UIBackgroundFetchResult.m"; sourceTree = ""; }; + 35CB5326695BA15ACEB3979E9AF3C1F6 /* RCTSwitch.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSwitch.h; sourceTree = ""; }; 35DA5D83B94E2AAAB00EDCEBBBE69FA0 /* SSLContext.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SSLContext.h; path = folly/io/async/SSLContext.h; sourceTree = ""; }; 35E4046ECB7E16B188B82CD52EB5578C /* CString.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = CString.cpp; path = folly/lang/CString.cpp; sourceTree = ""; }; - 35F091C33CF755F5204262A08B542402 /* react-native-webview.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "react-native-webview.xcconfig"; sourceTree = ""; }; 35F18838412262166EBA0E797B231CC3 /* Overload.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Overload.h; path = folly/Overload.h; sourceTree = ""; }; - 35FF01812EF4A19AF5A496A538F75336 /* REANode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REANode.m; sourceTree = ""; }; - 36006A5D327E48945D7E0C370C648DE9 /* RNDateTimePicker-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNDateTimePicker-prefix.pch"; sourceTree = ""; }; 3608FA6C0F3B192297FA0C37931AF755 /* SKStateUpdateCPPWrapper.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = SKStateUpdateCPPWrapper.mm; path = iOS/FlipperKit/SKStateUpdateCPPWrapper.mm; sourceTree = ""; }; 3613A31266D2AD06647090A378878079 /* yuv_sse41.c */ = {isa = PBXFileReference; includeInIndex = 1; name = yuv_sse41.c; path = src/dsp/yuv_sse41.c; sourceTree = ""; }; + 361F8772A2063143C0A872C6AF0CBBD7 /* UMAppLoader.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = UMAppLoader.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; 362F533612F39ED0A116F12242EB3851 /* RangeCommon.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RangeCommon.h; path = folly/detail/RangeCommon.h; sourceTree = ""; }; - 3636F14631625280E28D82BACF327AEB /* RCTBaseTextInputViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBaseTextInputViewManager.h; sourceTree = ""; }; 3642927267BA5A07470303E775D65DFA /* Poly-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "Poly-inl.h"; path = "folly/Poly-inl.h"; sourceTree = ""; }; + 3646527743CE2F902987E585B9697E4F /* UMLogManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMLogManager.h; sourceTree = ""; }; 365636C1858BBACEADB5F99BE4C9864C /* alpha_dec.c */ = {isa = PBXFileReference; includeInIndex = 1; name = alpha_dec.c; path = src/dec/alpha_dec.c; sourceTree = ""; }; - 365A6806983A06E40D88574D1A430189 /* RCTSRWebSocket.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTSRWebSocket.h; path = Libraries/WebSocket/RCTSRWebSocket.h; sourceTree = ""; }; 368A4AD8773CF8767E6EC2DA65901B5B /* FlowableTimeoutOperator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FlowableTimeoutOperator.h; path = yarpl/flowable/FlowableTimeoutOperator.h; sourceTree = ""; }; - 36C3AB77231D2DA03640B39959D39D09 /* RCTTypeSafety.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RCTTypeSafety.xcconfig; sourceTree = ""; }; - 36CBBA01812843981C3B21BD724C267F /* RCTRootView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTRootView.h; sourceTree = ""; }; + 36A376FF467EC3CDC4C7116372284927 /* RNFirebasePerformance.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNFirebasePerformance.m; sourceTree = ""; }; + 36C6EFB7DF751CCA66B5AAAFEC78F70E /* RNFirebaseFirestore.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNFirebaseFirestore.h; sourceTree = ""; }; 36D65CCC06124AE710B6760C10754CDA /* Flipper-Folly-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Flipper-Folly-dummy.m"; sourceTree = ""; }; 36DD4FA93980FA05CC847D3AFD4D93CB /* IPAddressException.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = IPAddressException.h; path = folly/IPAddressException.h; sourceTree = ""; }; - 36DD59698462AF3BB58AFA0B87ACAA45 /* RNImageCropPicker.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNImageCropPicker.xcconfig; sourceTree = ""; }; 36E1B5B2CFFF00267506ED80195F616B /* SafeAssert.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SafeAssert.h; path = folly/lang/SafeAssert.h; sourceTree = ""; }; - 36F1336686CF053FAF0D1F783F28DEDC /* RCTSegmentedControlManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSegmentedControlManager.h; sourceTree = ""; }; + 36EC21E539621DCC9EB876104EBA996B /* SDFileAttributeHelper.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDFileAttributeHelper.m; path = SDWebImage/Private/SDFileAttributeHelper.m; sourceTree = ""; }; + 370BF6933A1D93E0D3E88C028131E57F /* SDImageLoadersManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageLoadersManager.m; path = SDWebImage/Core/SDImageLoadersManager.m; sourceTree = ""; }; 3718C0542EF040AFC08106C65C8BAA2D /* FIRInstallationsStoredAuthToken.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstallationsStoredAuthToken.h; path = FirebaseInstallations/Source/Library/InstallationsStore/FIRInstallationsStoredAuthToken.h; sourceTree = ""; }; + 372DB417B8F87A158C454137856913C5 /* react-native-background-timer-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "react-native-background-timer-dummy.m"; sourceTree = ""; }; 373709EFF0AAF162459EF5D0B0F390E6 /* PTChannel.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = PTChannel.m; path = peertalk/PTChannel.m; sourceTree = ""; }; 37592FDAD45752511010F4B06AC57355 /* libReact-cxxreact.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libReact-cxxreact.a"; path = "libReact-cxxreact.a"; sourceTree = BUILT_PRODUCTS_DIR; }; 375C415B4E60AB8C88FDA699432DE2AA /* GULNetworkLoggerProtocol.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULNetworkLoggerProtocol.h; path = GoogleUtilities/Network/Private/GULNetworkLoggerProtocol.h; sourceTree = ""; }; - 3762FECAFF7F556152C59808B990F279 /* React-CoreModules.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = "React-CoreModules.podspec"; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - 3763AB04A89529750855C4C3533760D9 /* BugsnagHandledState.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagHandledState.h; sourceTree = ""; }; - 3780662E1E04FF442BC6E58B98F204FF /* UMTaskManagerInterface.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = UMTaskManagerInterface.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - 37895F3BEBC6FBAE7B69AC1E9B664C63 /* BSGSerialization.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BSGSerialization.m; sourceTree = ""; }; - 379625BE5B27420085234B6B8BF607D0 /* RNCSafeAreaViewLocalData.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCSafeAreaViewLocalData.m; path = ios/SafeAreaView/RNCSafeAreaViewLocalData.m; sourceTree = ""; }; - 37A782E342242AD117AB051759601D63 /* NSValue+Interpolation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "NSValue+Interpolation.h"; sourceTree = ""; }; - 37B394D80684978604DE1A7BBE048EE9 /* RCTBorderDrawing.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBorderDrawing.h; sourceTree = ""; }; + 377CF5BBA777BAB19C2A23B45AE67323 /* RCTInspector.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTInspector.h; sourceTree = ""; }; + 37DE4B02A082C8089801E554E38E5D0E /* RCTUIManagerObserverCoordinator.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTUIManagerObserverCoordinator.mm; sourceTree = ""; }; 37E57BF0ADE4302F482B1DB7DA3957F2 /* SpookyHashV2.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SpookyHashV2.h; path = folly/hash/SpookyHashV2.h; sourceTree = ""; }; + 37EBE83DA9320659CF94AA655941DF94 /* RNLocalize.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNLocalize.m; path = ios/RNLocalize.m; sourceTree = ""; }; 37F05CAA072B1B41891EB96F94580E6D /* GMock.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GMock.h; path = folly/portability/GMock.h; sourceTree = ""; }; 380CC79E918E3BBE9C8BAFCE026DFC7E /* YGLayoutExtensions.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = YGLayoutExtensions.swift; path = YogaKit/Source/YGLayoutExtensions.swift; sourceTree = ""; }; - 381EE808730B845CBEACA73A6C0A99BB /* RCTEventEmitter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTEventEmitter.m; sourceTree = ""; }; - 382504A213EAEA9F7B9E6159D87B51D8 /* RNCAssetsLibraryRequestHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCAssetsLibraryRequestHandler.m; path = ios/RNCAssetsLibraryRequestHandler.m; sourceTree = ""; }; - 3826C185CC437E8F905232507D722145 /* RNBackgroundTimer.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNBackgroundTimer.m; path = ios/RNBackgroundTimer.m; sourceTree = ""; }; + 380F21485E96746C91776F76BBBB30AE /* JSDeltaBundleClient.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = JSDeltaBundleClient.h; sourceTree = ""; }; 382DF59437BD2A2071FCEA0EECB84C6E /* picture_tools_enc.c */ = {isa = PBXFileReference; includeInIndex = 1; name = picture_tools_enc.c; path = src/enc/picture_tools_enc.c; sourceTree = ""; }; - 3849EEFE0D7DD1DDED58F4F9AF3B84B4 /* UMSingletonModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMSingletonModule.h; path = UMCore/UMSingletonModule.h; sourceTree = ""; }; + 383EBEDADAB457D2F1D95B9A9C96B417 /* RCTTurboModuleManager.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTTurboModuleManager.mm; sourceTree = ""; }; 384F5B9DB93D796878863CCCAB7853EF /* FlipperKit-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "FlipperKit-prefix.pch"; sourceTree = ""; }; - 3861A556F991E0FB85827D1D364AA6EA /* BugsnagSessionTrackingPayload.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagSessionTrackingPayload.h; sourceTree = ""; }; 386B4341B5AD4C77C36CC4A190DB860D /* ssl2.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ssl2.h; path = ios/include/openssl/ssl2.h; sourceTree = ""; }; - 389456A7DF76B1A6643347A601988A77 /* RCTUtils.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTUtils.m; sourceTree = ""; }; + 38894E3C88DE686E681C02F992C59685 /* RCTAppState.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTAppState.mm; sourceTree = ""; }; + 38AE59C5F76AE8294DEE93C2A2934A1F /* RCTBackedTextInputDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBackedTextInputDelegate.h; sourceTree = ""; }; + 38B043FC39B1D9FF6E5BCE40BA273F59 /* EXAppleAuthenticationButton.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXAppleAuthenticationButton.m; path = EXAppleAuthentication/EXAppleAuthenticationButton.m; sourceTree = ""; }; + 3919D6196217FAA56028214F360D6D30 /* ReactNativeKeyboardTrackingView-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "ReactNativeKeyboardTrackingView-prefix.pch"; sourceTree = ""; }; + 391CA92AF38B070C9D48198DA95E01F1 /* EXReactNativeUserNotificationCenterProxy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXReactNativeUserNotificationCenterProxy.m; path = EXPermissions/EXReactNativeUserNotificationCenterProxy.m; sourceTree = ""; }; 391DCE7E1FC1980DD72A702B02280B80 /* IPAddressV6.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = IPAddressV6.h; path = folly/IPAddressV6.h; sourceTree = ""; }; - 3924139DCBF1E96013E3D806FA355B7C /* BugsnagMetaData.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagMetaData.h; sourceTree = ""; }; 39329E18987753D317DDA860F29C1772 /* SingletonThreadLocal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SingletonThreadLocal.h; path = folly/SingletonThreadLocal.h; sourceTree = ""; }; - 393A3EC9791AAD4CA73A390DC97CBD6A /* SDWeakProxy.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWeakProxy.h; path = SDWebImage/Private/SDWeakProxy.h; sourceTree = ""; }; 393D1FF6D158CD71F0244E40E3D99A9D /* FIRInstallationsAuthTokenResult.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstallationsAuthTokenResult.h; path = FirebaseInstallations/Source/Library/Public/FIRInstallationsAuthTokenResult.h; sourceTree = ""; }; + 3946D661F26F8CD342B8AECEC042778D /* UMViewManagerAdapter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMViewManagerAdapter.h; sourceTree = ""; }; 3947BDBB1A4AD14C3E700D8630CFBF7D /* GULNetworkConstants.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULNetworkConstants.h; path = GoogleUtilities/Network/Private/GULNetworkConstants.h; sourceTree = ""; }; 3957078C9B055BE3CAE3EC2D92A5C3A2 /* tree_enc.c */ = {isa = PBXFileReference; includeInIndex = 1; name = tree_enc.c; path = src/enc/tree_enc.c; sourceTree = ""; }; - 396BCC1103806DB62E13A01085BFDB9A /* RCTTextAttributes.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTTextAttributes.h; path = Libraries/Text/RCTTextAttributes.h; sourceTree = ""; }; - 3978E0817217815A03BD8559CBC212A0 /* RNNotificationParser.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNNotificationParser.h; path = RNNotifications/RNNotificationParser.h; sourceTree = ""; }; + 3977B723678582324CAE299A9A867B7E /* RCTInspectorDevServerHelper.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTInspectorDevServerHelper.mm; sourceTree = ""; }; 398877019437A0142F23A0EA7B2F5B8C /* Function.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Function.h; path = folly/Function.h; sourceTree = ""; }; - 39C2B4A45BAEFA2B83291B29E21C89F4 /* SDImageCoderHelper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageCoderHelper.h; path = SDWebImage/Core/SDImageCoderHelper.h; sourceTree = ""; }; - 39CDDF3FC6F08B54E8F1E21067DD7181 /* react-native-cameraroll-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "react-native-cameraroll-dummy.m"; sourceTree = ""; }; - 39F4D653B834C5AD699B8608F1CDACEF /* ResourceBundle-QBImagePicker-RNImageCropPicker-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "ResourceBundle-QBImagePicker-RNImageCropPicker-Info.plist"; sourceTree = ""; }; - 3A087F03D451E89A5AAD301D0B58B36C /* LICENSE.txt */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE.txt; sourceTree = ""; }; + 39A58431605AC4E10D49D9A287B166A2 /* REACondNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REACondNode.m; sourceTree = ""; }; + 39EA084BB2A4266A7CF778C94C6DF124 /* RNGestureHandlerModule.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNGestureHandlerModule.m; path = ios/RNGestureHandlerModule.m; sourceTree = ""; }; 3A09FC1F6FE2C60C12E163DDE81961C9 /* muxinternal.c */ = {isa = PBXFileReference; includeInIndex = 1; name = muxinternal.c; path = src/mux/muxinternal.c; sourceTree = ""; }; - 3A0F82FC8E543DE98A2ACB23CE52A960 /* RCTRefreshControl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTRefreshControl.h; sourceTree = ""; }; + 3A0F410686B929E48A45C2FFDB884AC4 /* RCTAssert.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTAssert.h; sourceTree = ""; }; 3A14A135D0D1EBAB15A05123FDC4C6BD /* ColdResumeHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ColdResumeHandler.h; path = rsocket/ColdResumeHandler.h; sourceTree = ""; }; 3A30E79178D6FA0359C8D0889910DDD0 /* FBLPromise+Always.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FBLPromise+Always.h"; path = "Sources/FBLPromises/include/FBLPromise+Always.h"; sourceTree = ""; }; - 3A8EB6CB82FF58D29DCA66F92F103701 /* REACondNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REACondNode.m; sourceTree = ""; }; + 3A48F0FA2EFE25FC4D67D9B2D3ECF49D /* REATransitionValues.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REATransitionValues.h; sourceTree = ""; }; + 3A6AC2C3226991D005019717AE015C45 /* ARTGroupManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = ARTGroupManager.h; sourceTree = ""; }; + 3A78826F61DDB107AAB10944EC45B467 /* React-RCTImage.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-RCTImage.xcconfig"; sourceTree = ""; }; 3A9797F59D2A40E6912254EAD970F4F7 /* PTProtocol.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PTProtocol.h; path = peertalk/PTProtocol.h; sourceTree = ""; }; + 3AB56A19915C4E46BC00E406E06FC5F1 /* RNRootView.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RNRootView.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; 3AB87183B9900CD53A4C415F658014FF /* quant_enc.c */ = {isa = PBXFileReference; includeInIndex = 1; name = quant_enc.c; path = src/enc/quant_enc.c; sourceTree = ""; }; 3ABEC4132D8A614C5B3C617207B44C1D /* FlipperKitNetworkPlugin.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FlipperKitNetworkPlugin.h; path = iOS/Plugins/FlipperKitNetworkPlugin/FlipperKitNetworkPlugin/FlipperKitNetworkPlugin.h; sourceTree = ""; }; - 3AC743AAF093BEA69296F8D19A4A63DB /* RCTKeyCommandConstants.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTKeyCommandConstants.h; path = ios/KeyCommands/RCTKeyCommandConstants.h; sourceTree = ""; }; 3ACAC0DFB62D2E075A4ADE1AA43F65CD /* YogaKit-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "YogaKit-prefix.pch"; sourceTree = ""; }; - 3AD9E3A089699EE37B9B9DB63D50FD4E /* EXConstants-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "EXConstants-prefix.pch"; sourceTree = ""; }; + 3AE067E84E3E01C7DE7EC097E7B3FB13 /* EXFileSystem.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = EXFileSystem.xcconfig; sourceTree = ""; }; 3AEA4A114C08533A2C0F8E039A4C5EB9 /* libRNImageCropPicker.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libRNImageCropPicker.a; path = libRNImageCropPicker.a; sourceTree = BUILT_PRODUCTS_DIR; }; + 3AFC24C975DF60D33325002D50551F2D /* RCTModuleData.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTModuleData.mm; sourceTree = ""; }; + 3B00863C14E21A0D3D585CDB272267A9 /* RCTConvert+REATransition.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RCTConvert+REATransition.m"; sourceTree = ""; }; 3B01459926C4078CD55D67E0BD4E6367 /* PublisherBase.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = PublisherBase.cpp; path = rsocket/statemachine/PublisherBase.cpp; sourceTree = ""; }; - 3B0BB472098B8C1333572351A2D915B6 /* RCTTextDecorationLineType.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTextDecorationLineType.h; sourceTree = ""; }; - 3B298DC760AAF3986A2D64997749D50B /* BSG_KSDynamicLinker.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSDynamicLinker.c; sourceTree = ""; }; - 3B45B6C3975F42178855A0EA49CAAF12 /* BugsnagSink.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagSink.m; sourceTree = ""; }; - 3B468DA312920E115DBC601B9DD70210 /* TurboModuleBinding.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = TurboModuleBinding.cpp; path = turbomodule/core/TurboModuleBinding.cpp; sourceTree = ""; }; + 3B19BCD8785DE2C3C96E8378CB6ED9E6 /* RCTRequired.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RCTRequired.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 3B5F8EF60EF2A23C717DF05557342770 /* BSG_KSBacktrace.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSBacktrace.h; sourceTree = ""; }; 3B640835BAA914DD267B5E780D8CFEC7 /* libUMReactNativeAdapter.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libUMReactNativeAdapter.a; path = libUMReactNativeAdapter.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 3B71A920C29887C22EF38F089AC74AC3 /* RCTBundleURLProvider.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBundleURLProvider.h; sourceTree = ""; }; 3B8430674EA6F4FC03E630EADC00FAA4 /* EventBaseBackendBase.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EventBaseBackendBase.h; path = folly/io/async/EventBaseBackendBase.h; sourceTree = ""; }; 3B9072041845022C2B19230F2775A2C3 /* sha.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = sha.h; path = ios/include/openssl/sha.h; sourceTree = ""; }; + 3B96B6057DCEA9A6E71122E0606928F1 /* RCTNetworkTask.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTNetworkTask.mm; sourceTree = ""; }; 3B986BC6E10518C6271D2246B808BA2A /* LockFreeRingBuffer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = LockFreeRingBuffer.h; path = folly/experimental/LockFreeRingBuffer.h; sourceTree = ""; }; - 3BA5BEBF5EA5AEAF9C55ADFDF12357EB /* RCTParserUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTParserUtils.h; sourceTree = ""; }; 3BADE06D6084A945F5CA9C74E12346D3 /* random_utils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = random_utils.h; path = src/utils/random_utils.h; sourceTree = ""; }; + 3BBE6D92798A461EFCA9D5A47C083203 /* BugsnagMetaData.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagMetaData.m; sourceTree = ""; }; 3BD3D4E6B83467B5A10273B7C54AC3BB /* random_utils.c */ = {isa = PBXFileReference; includeInIndex = 1; name = random_utils.c; path = src/utils/random_utils.c; sourceTree = ""; }; 3BDEFCD869A4F4674CE7CF0D6E3AA523 /* MasterPtr.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MasterPtr.h; path = folly/experimental/MasterPtr.h; sourceTree = ""; }; + 3BEFCF7F952DDC32218B9E04B414E1CF /* RCTBridge+Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RCTBridge+Private.h"; sourceTree = ""; }; 3BF9A72ED1750E91CA64088BD18ED276 /* FIRComponentType.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRComponentType.h; path = FirebaseCore/Sources/Private/FIRComponentType.h; sourceTree = ""; }; 3BFC378E35DFD38F87AC7213983ACA3F /* Benchmark.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = Benchmark.cpp; path = folly/Benchmark.cpp; sourceTree = ""; }; 3C0C00C3EB81DAD74BFC49082FC652D8 /* IStream.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = IStream.h; path = folly/gen/IStream.h; sourceTree = ""; }; 3C169D4829984F2E758F0715F2FA405D /* enc_msa.c */ = {isa = PBXFileReference; includeInIndex = 1; name = enc_msa.c; path = src/dsp/enc_msa.c; sourceTree = ""; }; - 3C414E485D7D4519F47F6D97898A8A82 /* UMCameraInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMCameraInterface.h; path = UMCameraInterface/UMCameraInterface.h; sourceTree = ""; }; - 3C4A7193D1505AB4E7B8EEB458479E5B /* RCTUIManagerUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTUIManagerUtils.h; sourceTree = ""; }; - 3C4D934407C0DE63D6FCEF3662980C0D /* REASetNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REASetNode.m; sourceTree = ""; }; - 3C705C1315A99F2E22859FD59954D434 /* RNNotificationCenterListener.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNNotificationCenterListener.m; path = RNNotifications/RNNotificationCenterListener.m; sourceTree = ""; }; - 3C8355C5A727F67C1B3CC117903FECB9 /* MaterialCommunityIcons.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = MaterialCommunityIcons.ttf; path = Fonts/MaterialCommunityIcons.ttf; sourceTree = ""; }; - 3C867FCCE49877A00F3EF1D8BFF334BF /* RCTLinkingPlugins.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTLinkingPlugins.h; path = Libraries/LinkingIOS/RCTLinkingPlugins.h; sourceTree = ""; }; + 3C528C8598189CB088765189D608C72A /* RCTGIFImageDecoder.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTGIFImageDecoder.mm; sourceTree = ""; }; + 3C5553D6F15DDC67CAF3656C92A2CC34 /* React-jsiexecutor.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = "React-jsiexecutor.podspec"; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 3C758720FBDFC405651DAA85A702C271 /* SDAssociatedObject.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDAssociatedObject.m; path = SDWebImage/Private/SDAssociatedObject.m; sourceTree = ""; }; + 3C88673051F7D7F99FF3602C2DDA3444 /* ReactNativeART.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = ReactNativeART.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; 3CA7A9404CCDD6BA22C97F8348CE3209 /* libglog.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libglog.a; path = libglog.a; sourceTree = BUILT_PRODUCTS_DIR; }; 3CAD289A64AE0C76D0C35AD49B6B4AF8 /* FBLPromise+Race.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FBLPromise+Race.h"; path = "Sources/FBLPromises/include/FBLPromise+Race.h"; sourceTree = ""; }; 3CB5E312C6C9A36C98F77187CC83FCB2 /* opensslconf-arm64.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "opensslconf-arm64.h"; path = "ios/include/openssl/opensslconf-arm64.h"; sourceTree = ""; }; - 3CC873D1D6B745AC90DADC4CB32145AA /* RCTFont.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTFont.h; sourceTree = ""; }; 3CCB4396AAF56D20EB9A192AC562A979 /* bufferevent.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = bufferevent.h; path = src/event2/bufferevent.h; sourceTree = ""; }; - 3CCC75DE3E19DBDCDC976CB51121AA6A /* log.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = log.cpp; path = yoga/log.cpp; sourceTree = ""; }; 3CDCCF6765F48984B05B95D24E8940C4 /* dynamic.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = dynamic.cpp; path = folly/dynamic.cpp; sourceTree = ""; }; + 3CE01FEB50DC096AF2DFB8E73361EB85 /* JSModulesUnbundle.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = JSModulesUnbundle.h; sourceTree = ""; }; + 3CE8B337A02FD6186B3CE7AEA07AE380 /* BSG_KSCrashContext.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashContext.h; sourceTree = ""; }; 3CF20FC977818063C4962F1A51D72E83 /* TimeoutManager.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = TimeoutManager.cpp; path = folly/io/async/TimeoutManager.cpp; sourceTree = ""; }; - 3D6A10E15B062A93E4B205F47161AD9B /* SDAssociatedObject.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDAssociatedObject.h; path = SDWebImage/Private/SDAssociatedObject.h; sourceTree = ""; }; - 3D6A6B77DF11FFD47C326907BC67E4D4 /* React-jsi-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-jsi-prefix.pch"; sourceTree = ""; }; - 3D71F8CB11FA9EFCE632EF2ADC483214 /* BannerComponent.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BannerComponent.m; sourceTree = ""; }; + 3D11D0A873DF3F8BAABDB68DF0556EBE /* RNFirebaseMessaging.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNFirebaseMessaging.m; sourceTree = ""; }; + 3D1619F7D2598DD15A2839483CE4BF9E /* JSCRuntime.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = JSCRuntime.cpp; sourceTree = ""; }; + 3D242988DC8370E44FB5E929F942516D /* RNCSafeAreaShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCSafeAreaShadowView.m; path = ios/SafeAreaView/RNCSafeAreaShadowView.m; sourceTree = ""; }; + 3D2FE0071CB8D5CA9CCC04EA01CD661B /* RNUserDefaults.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNUserDefaults.m; path = ios/RNUserDefaults.m; sourceTree = ""; }; + 3D566A28BB25AE718B3973068E7680C8 /* EXAV.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXAV.m; path = EXAV/EXAV.m; sourceTree = ""; }; + 3D88C1D1AB6DDE903F51E028CAA6D0A5 /* REAStyleNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REAStyleNode.h; sourceTree = ""; }; 3DA962609E253ADFE3AD2A762D7D940C /* SKNodeDescriptor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SKNodeDescriptor.h; path = iOS/Plugins/FlipperKitLayoutPlugin/FlipperKitLayoutPlugin/SKNodeDescriptor.h; sourceTree = ""; }; 3DA9D361F52E7491727CEF403357788B /* mdc2.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = mdc2.h; path = ios/include/openssl/mdc2.h; sourceTree = ""; }; 3DBF55AB682A256705CF187E386752F9 /* Peertalk.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Peertalk.h; path = peertalk/Peertalk.h; sourceTree = ""; }; - 3DBF61F838B1097FD62D7591FEB07A99 /* MethodCall.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = MethodCall.h; sourceTree = ""; }; - 3DC4C8830B7C0D76E6F9DEF1FE64BC05 /* RCTTouchEvent.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTouchEvent.h; sourceTree = ""; }; - 3DC83B2F3CD5791A8779CE94324B6B47 /* RCTVirtualTextViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTVirtualTextViewManager.m; sourceTree = ""; }; 3DCCC9C42EB3E07CFD81800EC8A2515D /* QBImagePicker.bundle */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; name = QBImagePicker.bundle; path = "RNImageCropPicker-QBImagePicker.bundle"; sourceTree = BUILT_PRODUCTS_DIR; }; + 3DDECD684136C17D1282F66070325249 /* RCTActivityIndicatorViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTActivityIndicatorViewManager.m; sourceTree = ""; }; + 3DE4BD99927633465141F54CC59CC0CF /* RCTLocalAssetImageLoader.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTLocalAssetImageLoader.mm; sourceTree = ""; }; + 3DEC874383540423F3B8411C57D547CF /* SDDeviceHelper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDDeviceHelper.h; path = SDWebImage/Private/SDDeviceHelper.h; sourceTree = ""; }; + 3DF56B9AFF929D69C47E7F571A6525C8 /* RNLongPressHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNLongPressHandler.h; sourceTree = ""; }; 3DF954218538FB691AFFF406E45034EA /* Demangle.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = Demangle.cpp; path = folly/detail/Demangle.cpp; sourceTree = ""; }; - 3DFF981C47CA2DEF0ABD18204C9C309B /* EXFilePermissionModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXFilePermissionModule.h; path = EXFileSystem/EXFilePermissionModule.h; sourceTree = ""; }; 3E102A439D6647D41F701D80646B9C05 /* StreamStateMachineBase.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = StreamStateMachineBase.cpp; path = rsocket/statemachine/StreamStateMachineBase.cpp; sourceTree = ""; }; - 3E175DE75BEC8374D35C99F207F91DDC /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; - 3E296909E6CC7D70178295D47836CEB5 /* SDWebImage-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "SDWebImage-prefix.pch"; sourceTree = ""; }; - 3E330A0088F6483DE33FAE71EA483B80 /* RNBootSplash.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNBootSplash.xcconfig; sourceTree = ""; }; - 3E35514A3865F337BAB34807B357E24B /* RNRootView.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNRootView.xcconfig; sourceTree = ""; }; - 3E417FCC99890ADA6613B3B742D3E0C9 /* RNCMaskedView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCMaskedView.m; path = ios/RNCMaskedView.m; sourceTree = ""; }; - 3E41A3B00394163C9CBAF010F4ECE1B6 /* RCTConvert+UIBackgroundFetchResult.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RCTConvert+UIBackgroundFetchResult.m"; sourceTree = ""; }; - 3E5E391D33A2890AD170E829C7D11427 /* SDAsyncBlockOperation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDAsyncBlockOperation.m; path = SDWebImage/Private/SDAsyncBlockOperation.m; sourceTree = ""; }; + 3E27859F0D8EA8982399668BD3F83DFC /* RCTTransformAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTransformAnimatedNode.h; sourceTree = ""; }; + 3E32FE0F21A00210D276A032C57E7D94 /* EXAppleAuthenticationButtonViewManagers.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXAppleAuthenticationButtonViewManagers.m; path = EXAppleAuthentication/EXAppleAuthenticationButtonViewManagers.m; sourceTree = ""; }; + 3E3C8E2BC87AC6B588DBF61937F26263 /* UMUIManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMUIManager.h; sourceTree = ""; }; 3E6A5F25F40F4E0E18F49EEA5D28EF3C /* GDTCORTargets.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCORTargets.h; path = GoogleDataTransport/GDTCORLibrary/Public/GDTCORTargets.h; sourceTree = ""; }; 3E7064B173A25FBB44D8EF835F3D27C6 /* ScopeGuard.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ScopeGuard.h; path = folly/ScopeGuard.h; sourceTree = ""; }; - 3EAC43B84F9547719B73E62784E57016 /* ARTGroup.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ARTGroup.h; path = ios/ARTGroup.h; sourceTree = ""; }; + 3E836991B71B728A813D372F81097379 /* RCTModuleMethod.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTModuleMethod.h; sourceTree = ""; }; + 3EBDE28092167B49EB3B497865336224 /* pl.lproj */ = {isa = PBXFileReference; includeInIndex = 1; name = pl.lproj; path = ios/QBImagePicker/QBImagePicker/pl.lproj; sourceTree = ""; }; 3ED0812C8DBCE08BA6203C27C3235C88 /* libevent_pthreads.a */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = archive.ar; name = libevent_pthreads.a; path = lib/libevent_pthreads.a; sourceTree = ""; }; 3ED322C4DA7FFE66A84B029B0A0F8B14 /* Sockets.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = Sockets.cpp; path = folly/portability/Sockets.cpp; sourceTree = ""; }; 3ED7D50C2A4F1D8ED397EF40EB5ED71F /* StreamResponder.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = StreamResponder.cpp; path = rsocket/statemachine/StreamResponder.cpp; sourceTree = ""; }; + 3EDB6D361FBC4C557F4B41919CD34F03 /* Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = Private.h; sourceTree = ""; }; 3EE1D577BC7E2701CD1769E1578C3F2E /* cost_enc.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = cost_enc.h; path = src/enc/cost_enc.h; sourceTree = ""; }; 3EEAA606F6866DA20E6601B9655B1027 /* libBugsnagReactNative.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libBugsnagReactNative.a; path = libBugsnagReactNative.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 3F143168A55B0B275D7ABE38E92D0A7C /* RNNotificationCenterMulticast.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNNotificationCenterMulticast.m; path = RNNotifications/RNNotificationCenterMulticast.m; sourceTree = ""; }; + 3F241A568E0C01C07080A95F2E673F09 /* BugsnagSessionTrackingPayload.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagSessionTrackingPayload.h; sourceTree = ""; }; 3F2700851C4165B395335A1B0169844C /* FlipperResponder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FlipperResponder.h; path = iOS/FlipperKit/FlipperResponder.h; sourceTree = ""; }; 3F53E7DE802643EE9148400CFA8D2F2B /* rescaler_mips_dsp_r2.c */ = {isa = PBXFileReference; includeInIndex = 1; name = rescaler_mips_dsp_r2.c; path = src/dsp/rescaler_mips_dsp_r2.c; sourceTree = ""; }; 3F5FCC2B0B2354A005BA4E4CDA38589C /* FBLPromise+Race.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "FBLPromise+Race.m"; path = "Sources/FBLPromises/FBLPromise+Race.m"; sourceTree = ""; }; - 3F7005D6F70287937B451E5C38FB180B /* RCTInspectorDevServerHelper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTInspectorDevServerHelper.h; sourceTree = ""; }; - 3F82FA274BA7E705C804627258FC1AFD /* BugsnagCollections.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagCollections.h; sourceTree = ""; }; - 3F96DF6D6BA0CF581CC46C988CF8122B /* UMModuleRegistryConsumer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMModuleRegistryConsumer.h; sourceTree = ""; }; - 3FA37BB8D5CE3A4D72821970E36DAD96 /* RCTVibrationPlugins.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTVibrationPlugins.h; path = Libraries/Vibration/RCTVibrationPlugins.h; sourceTree = ""; }; - 3FE10C005ADB64B0306F9E69FE080DBB /* RNFirebase.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNFirebase.h; path = RNFirebase/RNFirebase.h; sourceTree = ""; }; + 3F7E080C7767A10A417F5E5A45BEC454 /* YGConfig.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YGConfig.h; path = yoga/YGConfig.h; sourceTree = ""; }; + 3FB43F8CBBD97000C841E4D7F68D2B2B /* SDImageCacheConfig.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageCacheConfig.m; path = SDWebImage/Core/SDImageCacheConfig.m; sourceTree = ""; }; + 3FB9F58959D458A4778A50E45AD6CBEF /* SDWebImageDownloaderResponseModifier.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageDownloaderResponseModifier.h; path = SDWebImage/Core/SDWebImageDownloaderResponseModifier.h; sourceTree = ""; }; + 3FCBD9A198766DC5A90CE8EE2A7EEC25 /* REAClockNodes.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REAClockNodes.h; sourceTree = ""; }; + 3FDD277195F563A711D3DC40AE2087EC /* react-native-slider.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "react-native-slider.xcconfig"; sourceTree = ""; }; + 3FE2F9DE1939F09C2C49717FD3292786 /* RCTSafeAreaShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSafeAreaShadowView.m; sourceTree = ""; }; + 3FF3FF75DD075F7CA62B764F72CEBD64 /* RCTBundleURLProvider.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTBundleURLProvider.m; sourceTree = ""; }; 400DBB6ED3B273ABFFDB48A492E31FCF /* FIRInstallationsErrorUtil.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstallationsErrorUtil.h; path = FirebaseInstallations/Source/Library/Errors/FIRInstallationsErrorUtil.h; sourceTree = ""; }; 40101A6123815377203D40D4392D585A /* AtomicUtil.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AtomicUtil.h; path = folly/synchronization/AtomicUtil.h; sourceTree = ""; }; 401B0063B340C5EA59BE881F792B4CFA /* ProtocolVersion.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ProtocolVersion.h; path = rsocket/framing/ProtocolVersion.h; sourceTree = ""; }; - 401D6E755CD3B998E73591B856E4DA14 /* RNDateTimePicker.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNDateTimePicker.m; path = ios/RNDateTimePicker.m; sourceTree = ""; }; - 4036DA66AEAADDE67F7AF5FF9DD0B667 /* QBAssetCell.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = QBAssetCell.h; path = ios/QBImagePicker/QBImagePicker/QBAssetCell.h; sourceTree = ""; }; - 404125022A4DE6ACDF8B89CC27579A03 /* RCTTextViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTTextViewManager.m; sourceTree = ""; }; - 4045917217D1231943C756B745F1F8E7 /* RCTAlertManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTAlertManager.h; path = React/CoreModules/RCTAlertManager.h; sourceTree = ""; }; - 406126CDE866DEC6B775C6D397305C58 /* SDWebImageTransition.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageTransition.h; path = SDWebImage/Core/SDWebImageTransition.h; sourceTree = ""; }; - 4069652AA03B0E7510525C531D945EC2 /* LNInterpolation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = LNInterpolation.h; sourceTree = ""; }; - 40721705024406AE4E8607335A91AF04 /* RCTFileRequestHandler.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTFileRequestHandler.mm; sourceTree = ""; }; + 405CE6E42958F6497FCC871639B27D12 /* RNNotificationCenterMulticast.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNNotificationCenterMulticast.h; path = RNNotifications/RNNotificationCenterMulticast.h; sourceTree = ""; }; 40C99E3CD223EBC64465DFCAF6F3E771 /* Demangle.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Demangle.h; path = folly/Demangle.h; sourceTree = ""; }; - 40CC5CEBEF1FD6B260ECFB4E7B4A77EC /* TurboModuleUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TurboModuleUtils.h; path = turbomodule/core/TurboModuleUtils.h; sourceTree = ""; }; - 40DA589797B65249F51467C00467339A /* ARTRadialGradient.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = ARTRadialGradient.m; sourceTree = ""; }; - 40DD3FADDC87FB94BC8C59709E9960A3 /* EXAppleAuthentication.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXAppleAuthentication.m; path = EXAppleAuthentication/EXAppleAuthentication.m; sourceTree = ""; }; - 40E6DCD80E4FC6FFB164600E707463D7 /* UMEventEmitterService.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMEventEmitterService.h; sourceTree = ""; }; - 4102C6ABE9B6D8A970C2C548F9BE4FCA /* BSG_KSCrashC.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashC.h; sourceTree = ""; }; - 411C77468EFAC449BC05F4BE98E07F71 /* BSG_KSCrashCallCompletion.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashCallCompletion.h; sourceTree = ""; }; + 40EFB3E96DA9E898B95532B00CD74371 /* UMDeviceMotionInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMDeviceMotionInterface.h; path = UMSensorsInterface/UMDeviceMotionInterface.h; sourceTree = ""; }; + 40FF4A345C09A510EEA9726C9D40C4AC /* fr.lproj */ = {isa = PBXFileReference; includeInIndex = 1; name = fr.lproj; path = ios/QBImagePicker/QBImagePicker/fr.lproj; sourceTree = ""; }; + 41041D74CF1A153B6221896510014D66 /* jsilib.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = jsilib.h; sourceTree = ""; }; 41286BF43643EC0D22E6495D126A94B9 /* HazptrThreadPoolExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = HazptrThreadPoolExecutor.h; path = folly/synchronization/HazptrThreadPoolExecutor.h; sourceTree = ""; }; - 4130B32047215C733F9E8513CEBCCE71 /* RCTCustomInputController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTCustomInputController.h; sourceTree = ""; }; - 4149C036165F6D00E7345C44173AC0C4 /* RCTRequired.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RCTRequired.xcconfig; sourceTree = ""; }; - 4152E8E084F479AC464AB66097CCDDFD /* JSModulesUnbundle.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = JSModulesUnbundle.h; sourceTree = ""; }; + 413B555D063451CA6495EEDD7CC94227 /* RCTTurboModuleManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTurboModuleManager.h; sourceTree = ""; }; + 413E9E02B89504D07AD0848098C54E14 /* EXAVPlayerData.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXAVPlayerData.h; path = EXAV/EXAVPlayerData.h; sourceTree = ""; }; 416190984EC0862F162E2E48E0B3BAC3 /* SKSwizzle.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SKSwizzle.h; path = iOS/Plugins/FlipperKitLayoutPlugin/FlipperKitLayoutPlugin/utils/SKSwizzle.h; sourceTree = ""; }; - 4170EA930CC1710E8CD10295F5027F00 /* rn-extensions-share.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "rn-extensions-share.xcconfig"; sourceTree = ""; }; - 418793307BC38610A8688BBDC0102CF2 /* React-cxxreact-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-cxxreact-dummy.m"; sourceTree = ""; }; 418B8D4F6330C0269AF6A1223E9EC36A /* Subscriber.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Subscriber.h; path = yarpl/flowable/Subscriber.h; sourceTree = ""; }; - 418F58C2275BDE975AAB7658A777A532 /* RCTConvert+Transform.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RCTConvert+Transform.m"; sourceTree = ""; }; - 41949BFA1C03419EA1DBC94919B131BF /* RCTTouchHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTTouchHandler.m; sourceTree = ""; }; 419AFAD3BACA493568A21704D1085C63 /* EvictingCacheMap.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EvictingCacheMap.h; path = folly/container/EvictingCacheMap.h; sourceTree = ""; }; 41B38A2014725CA6308DABFB8F503F4B /* Folly-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Folly-dummy.m"; sourceTree = ""; }; - 41CB39FD5D11539EAE2ECF837C19AC7F /* BSG_KSObjCApple.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSObjCApple.h; sourceTree = ""; }; - 41E9388F4F2F474F51343984C953523A /* RCTFileReaderModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTFileReaderModule.h; path = Libraries/Blob/RCTFileReaderModule.h; sourceTree = ""; }; 41FE12E33CA973C1CA3D422181BB6C86 /* TypeInfo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TypeInfo.h; path = folly/lang/TypeInfo.h; sourceTree = ""; }; + 4207E3CFE2B8D22E118EEB6161388B41 /* RCTURLRequestDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTURLRequestDelegate.h; sourceTree = ""; }; 422866F2343B4FA12000754B30B2F006 /* FKUserDefaultsSwizzleUtility.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FKUserDefaultsSwizzleUtility.h; path = iOS/Plugins/FlipperKitUserDefaultsPlugin/FKUserDefaultsSwizzleUtility.h; sourceTree = ""; }; - 42361CCA7EE61E9ECF248240D46300FA /* UMModuleRegistryAdapter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMModuleRegistryAdapter.h; sourceTree = ""; }; - 423C28B97E7DA33075093A150B611AE6 /* UMPermissionsMethodsDelegate.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = UMPermissionsMethodsDelegate.m; path = UMPermissionsInterface/UMPermissionsMethodsDelegate.m; sourceTree = ""; }; - 4241AFA83AB806724D464D03F5808DBB /* UIImage+Metadata.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIImage+Metadata.m"; path = "SDWebImage/Core/UIImage+Metadata.m"; sourceTree = ""; }; + 42304D04296C104C5A04AB9D9878BB8B /* ReactNativeKeyboardTrackingView.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = ReactNativeKeyboardTrackingView.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; 4284C13E0107188DC785753754385D52 /* StreamThroughputTcp.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = StreamThroughputTcp.cpp; path = rsocket/benchmarks/StreamThroughputTcp.cpp; sourceTree = ""; }; - 4294ADC52CAD14B81DE5D364BF4332DB /* RCTImageStoreManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageStoreManager.h; path = Libraries/Image/RCTImageStoreManager.h; sourceTree = ""; }; - 429E81C70FB1627BEAB071C56E303483 /* RNNotificationEventHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNNotificationEventHandler.m; path = RNNotifications/RNNotificationEventHandler.m; sourceTree = ""; }; + 428E22FE6E3F4BDB53C8B9ACA6B13938 /* BSG_KSLogger.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSLogger.h; sourceTree = ""; }; 42A0F52C9215438BA3904E573B0890EF /* rescaler_utils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = rescaler_utils.h; path = src/utils/rescaler_utils.h; sourceTree = ""; }; - 42B0FA4D0C81A84BABD6BF79E80D54FD /* RNFirebaseCrashlytics.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNFirebaseCrashlytics.h; sourceTree = ""; }; - 42CEC327588106C76B062F4A34140ACC /* RCTAccessibilityManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTAccessibilityManager.h; path = React/CoreModules/RCTAccessibilityManager.h; sourceTree = ""; }; 42E30BF5CE842E55AEEC568063B8D31B /* PThread.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PThread.h; path = folly/portability/PThread.h; sourceTree = ""; }; - 42F5A0B87ADC713878A1F9951DA416B4 /* UMViewManagerAdapter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = UMViewManagerAdapter.m; sourceTree = ""; }; - 42F77A23ED4C373C3DC6188163D412D8 /* BSG_KSCrashSentry_Signal.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSCrashSentry_Signal.c; sourceTree = ""; }; 42FD1E55CC5460FBEE20AFB73228F4D9 /* GDTCORClock.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCORClock.h; path = GoogleDataTransport/GDTCORLibrary/Public/GDTCORClock.h; sourceTree = ""; }; - 43172E33D97ACB9262B3896A1C8EEA25 /* JSBundleType.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = JSBundleType.h; sourceTree = ""; }; - 43216B6B4C1AEA1BD2A30C66CA5DA2E9 /* BSG_KSSystemInfoC.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSSystemInfoC.h; sourceTree = ""; }; + 43071553AC045D2CD70F487D1D378897 /* RCTView+SafeAreaCompat.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "RCTView+SafeAreaCompat.h"; path = "ios/SafeAreaView/RCTView+SafeAreaCompat.h"; sourceTree = ""; }; + 430CE20FBFBA757BC977C881F5455E02 /* UIView+Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "UIView+Private.h"; sourceTree = ""; }; + 4315336C79990A97C6FB023C7F26E713 /* EXFileSystemLocalFileHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXFileSystemLocalFileHandler.m; path = EXFileSystem/EXFileSystemLocalFileHandler.m; sourceTree = ""; }; 43289003F43ADD8130C473D9EE7B1E19 /* DelayedDestructionBase.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DelayedDestructionBase.h; path = folly/io/async/DelayedDestructionBase.h; sourceTree = ""; }; - 433B2105FDE53C5CBB3D124CBA9AF726 /* SDDisplayLink.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDDisplayLink.m; path = SDWebImage/Private/SDDisplayLink.m; sourceTree = ""; }; + 4328FF5AA88C222B8DB4B2B180A8D046 /* LICENSE.md */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE.md; sourceTree = ""; }; 43828C17499AC5864814AF1C88C540FD /* Flipper-DoubleConversion-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Flipper-DoubleConversion-prefix.pch"; sourceTree = ""; }; - 4391A5FFBDF8ABD0DBF0BD40A41B7DA8 /* RCTConvert+ART.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "RCTConvert+ART.h"; path = "ios/RCTConvert+ART.h"; sourceTree = ""; }; 43A7859468E03E02E0496C59CBF6861D /* Access.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Access.h; path = folly/container/Access.h; sourceTree = ""; }; 43A9F53B173EA2381E51CAA6832ABD1F /* Flipper-Glog-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Flipper-Glog-prefix.pch"; sourceTree = ""; }; 43B69FCD8D50501DDFA9BCDED9C89518 /* pb_encode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = pb_encode.h; sourceTree = ""; }; 43BE5D34C125EE2F7DE250FDD2B61547 /* ScheduledRSocketResponder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ScheduledRSocketResponder.h; path = rsocket/internal/ScheduledRSocketResponder.h; sourceTree = ""; }; - 43E4F1558AC479BE196BDD1CFC6902BA /* EXAppleAuthenticationButton.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXAppleAuthenticationButton.m; path = EXAppleAuthentication/EXAppleAuthenticationButton.m; sourceTree = ""; }; + 43CD7B746747F2A250267511076E9D08 /* ARTShapeManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = ARTShapeManager.h; sourceTree = ""; }; 43EE0B73152C4977E13E9D53721F35B0 /* FirebaseCoreDiagnostics-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "FirebaseCoreDiagnostics-dummy.m"; sourceTree = ""; }; - 43F70EEC92DC6532FEB97B8FB47495B5 /* ARTShape.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ARTShape.h; path = ios/ARTShape.h; sourceTree = ""; }; 43FDFB8A81364F8B51C37B2560E239FD /* ChannelResponder.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = ChannelResponder.cpp; path = rsocket/statemachine/ChannelResponder.cpp; sourceTree = ""; }; 43FEBEC8046768D8E5EDB05572CDBB62 /* ThreadLocalDetail.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ThreadLocalDetail.h; path = folly/detail/ThreadLocalDetail.h; sourceTree = ""; }; 4412B653F20312FC38D099057A287C9D /* MemoryMapping.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = MemoryMapping.cpp; path = folly/system/MemoryMapping.cpp; sourceTree = ""; }; - 4422005A2570BE2F6D0A557FB2C06481 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; - 442EA89BCAF0FF088622BB0E7290853A /* RNFirebaseFirestoreCollectionReference.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNFirebaseFirestoreCollectionReference.m; sourceTree = ""; }; - 443BB3D0D8491A15B4E8DF3A73DE016D /* RCTDevLoadingView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTDevLoadingView.m; sourceTree = ""; }; - 443ED58974BE5CC32B09E74F5A784381 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; + 4435D53A1F514AE77A346D607F70F3A3 /* UMJavaScriptContextProvider.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMJavaScriptContextProvider.h; sourceTree = ""; }; 444C4CB3BA6D072ECE05A85E7B4AD55F /* bignum-dtoa.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = "bignum-dtoa.cc"; path = "double-conversion/bignum-dtoa.cc"; sourceTree = ""; }; + 445B5D874D9279FC5543322472F105D8 /* RCTMultipartStreamReader.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTMultipartStreamReader.m; sourceTree = ""; }; 445E1C327EF4E1176AC0B5382418D5FF /* FBLPromisePrivate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBLPromisePrivate.h; path = Sources/FBLPromises/include/FBLPromisePrivate.h; sourceTree = ""; }; + 447D47EF91F884C3A6D2B040CB7A1A76 /* rn-extensions-share.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = "rn-extensions-share.podspec"; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 4488D4C64E5B8944241131213438A309 /* JSCExecutorFactory.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = JSCExecutorFactory.mm; sourceTree = ""; }; 44897F3CFA9058AC66EA46BDE9D4E921 /* SKObject.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SKObject.h; path = iOS/Plugins/FlipperKitLayoutPlugin/FlipperKitLayoutPlugin/SKObject.h; sourceTree = ""; }; - 449186A1FD562F7DCB008783E13C8BCE /* JSINativeModules.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = JSINativeModules.cpp; path = jsireact/JSINativeModules.cpp; sourceTree = ""; }; - 4491B07A5A45C84FDC154B2DFC264C3D /* QBAlbumCell.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = QBAlbumCell.m; path = ios/QBImagePicker/QBImagePicker/QBAlbumCell.m; sourceTree = ""; }; - 44A77B66CB563D3BB5FF97B8CBFEC42F /* UMUtilities.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMUtilities.h; path = UMCore/UMUtilities.h; sourceTree = ""; }; - 44B9D8C69D69194F6D4A1FD5B0FF9ACE /* React-RCTBlob.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = "React-RCTBlob.podspec"; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 44C204F08D7FDCB716039E9B06AD5BFE /* CxxModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = CxxModule.h; sourceTree = ""; }; 44C8A9D7E27D52DB68228AE4A5EEAAF7 /* ossl_typ.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ossl_typ.h; path = ios/include/openssl/ossl_typ.h; sourceTree = ""; }; - 44F9B6AFD75F2837103BC8793D42A32A /* RCTWebSocketExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTWebSocketExecutor.h; path = React/CoreModules/RCTWebSocketExecutor.h; sourceTree = ""; }; + 44ED7AA4DDDE5E75EFF44282C588460D /* ReactNativeKeyboardTrackingView.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = ReactNativeKeyboardTrackingView.xcconfig; sourceTree = ""; }; + 44F26DE043B093BF0008239D78CC79B5 /* QBCheckmarkView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = QBCheckmarkView.h; path = ios/QBImagePicker/QBImagePicker/QBCheckmarkView.h; sourceTree = ""; }; 4509075B648B1A4ABBF5CC9C07CA000D /* FireForgetThroughputTcp.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = FireForgetThroughputTcp.cpp; path = rsocket/benchmarks/FireForgetThroughputTcp.cpp; sourceTree = ""; }; - 452F41A12ABBAAB84397380B42284D60 /* RNGestureHandlerEvents.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNGestureHandlerEvents.h; path = ios/RNGestureHandlerEvents.h; sourceTree = ""; }; - 45416CE24440AC226668176D00E285BA /* SDWebImageDownloaderConfig.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageDownloaderConfig.h; path = SDWebImage/Core/SDWebImageDownloaderConfig.h; sourceTree = ""; }; - 454B7DA6BA91FEB1C6431A46061AE923 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; - 45687295D331495FAC12FB8AA20733E6 /* ReactNativeART.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = ReactNativeART.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - 456B93874F92763985E86C307582D5DE /* RNFirebaseFirestore.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNFirebaseFirestore.h; sourceTree = ""; }; - 45739967460E2D1904354C494EDEEB86 /* EXVideoThumbnails.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = EXVideoThumbnails.xcconfig; sourceTree = ""; }; - 461AC52930C06809C3A0A91CCC3D7E5B /* UMGyroscopeInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMGyroscopeInterface.h; path = UMSensorsInterface/UMGyroscopeInterface.h; sourceTree = ""; }; - 465454A21A09429BC53A1110206D6B71 /* BSG_KSString.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSString.c; sourceTree = ""; }; - 4669A53C93BC1B653C57B87A2DD1CFFA /* BugsnagReactNative.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = BugsnagReactNative.m; path = cocoa/BugsnagReactNative.m; sourceTree = ""; }; - 46A45D2EF0AD50250C14EC10A064ADF9 /* RNBootSplash-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNBootSplash-dummy.m"; sourceTree = ""; }; + 451D0D92F2148140AEF5B245B955B7A4 /* RCTURLRequestHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTURLRequestHandler.h; sourceTree = ""; }; + 467241756A34BCF9F5DE1B2D76062086 /* RCTI18nUtil.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTI18nUtil.m; sourceTree = ""; }; + 467975DF49FA8AE7AFE680622496B593 /* RNNotificationsStore.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNNotificationsStore.m; path = RNNotifications/RNNotificationsStore.m; sourceTree = ""; }; + 46B971B08FAAA9FA99ABF2E1B15E978A /* SDmetamacros.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDmetamacros.h; path = SDWebImage/Private/SDmetamacros.h; sourceTree = ""; }; + 46C31A2BA6F70DAA95C855900A0815DD /* BugsnagLogger.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagLogger.h; sourceTree = ""; }; 46CACAFDC7683A8955912C018E916497 /* filters.c */ = {isa = PBXFileReference; includeInIndex = 1; name = filters.c; path = src/dsp/filters.c; sourceTree = ""; }; + 46D5095CD1417D745D56DE8A24297F6B /* RNCSafeAreaViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCSafeAreaViewManager.m; path = ios/SafeAreaView/RNCSafeAreaViewManager.m; sourceTree = ""; }; 46D770330A5BDDAA6FCDCF618C6EA47F /* Demangle.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = Demangle.cpp; path = folly/detail/Demangle.cpp; sourceTree = ""; }; 46D9E9D657CC9AA80DDD166F57AB35A8 /* ANSCompatibility.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ANSCompatibility.h; path = iOS/Crashlytics.framework/Headers/ANSCompatibility.h; sourceTree = ""; }; 46F3B9E5415F9B82E09D9820D439DEDE /* Subprocess.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Subprocess.h; path = folly/Subprocess.h; sourceTree = ""; }; 46F4719382C42FA298DC8726823D9D46 /* dec_sse2.c */ = {isa = PBXFileReference; includeInIndex = 1; name = dec_sse2.c; path = src/dsp/dec_sse2.c; sourceTree = ""; }; - 46FC4C5A659A3EED85B9083A283C545B /* RNFetchBlobConst.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNFetchBlobConst.h; path = ios/RNFetchBlobConst.h; sourceTree = ""; }; - 4712A829EE1ADFA4F46D1872DA3A3A90 /* ReactMarker.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = ReactMarker.cpp; sourceTree = ""; }; 4713EAEA9D6383DD7339BE8807484191 /* ExceptionWrapper.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = ExceptionWrapper.cpp; path = folly/ExceptionWrapper.cpp; sourceTree = ""; }; 471F523A97739A5A43D77C7D24F81237 /* fixed-dtoa.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "fixed-dtoa.h"; path = "double-conversion/fixed-dtoa.h"; sourceTree = ""; }; - 473D39B5852C9156257BE56DF22F3A38 /* RNCSafeAreaShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCSafeAreaShadowView.m; path = ios/SafeAreaView/RNCSafeAreaShadowView.m; sourceTree = ""; }; - 47589F57C14460D5BDC99E69B4E10519 /* SDImageLoader.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageLoader.m; path = SDWebImage/Core/SDImageLoader.m; sourceTree = ""; }; + 473155BF324F475906811E6C81045BB4 /* BSG_KSMach.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSMach.h; sourceTree = ""; }; + 473F02F4D428A4AD6748CBB62E874C13 /* ARTRenderableManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = ARTRenderableManager.h; sourceTree = ""; }; + 4745AF174D142835C084841119CF095D /* log.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = log.h; path = yoga/log.h; sourceTree = ""; }; + 475E65892171D3E2755B509923A9E710 /* JSBundleType.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = JSBundleType.cpp; sourceTree = ""; }; 47718F725E8AC098A2AB6FE3F4820058 /* TOCropViewController-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "TOCropViewController-prefix.pch"; sourceTree = ""; }; - 4771CCC3D05E5289CEBBA3375D768D88 /* RNRotationHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNRotationHandler.m; sourceTree = ""; }; 477454BA1818A04282869BFC8D046253 /* FirebaseAnalytics.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = FirebaseAnalytics.framework; path = Frameworks/FirebaseAnalytics.framework; sourceTree = ""; }; + 477696EE8AF422E97A4C7E1FBAA61078 /* RCTBlobManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTBlobManager.h; path = Libraries/Blob/RCTBlobManager.h; sourceTree = ""; }; 47870AF521D3DC75A055CAC41A8A11D3 /* lossless.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = lossless.h; path = src/dsp/lossless.h; sourceTree = ""; }; - 47B935784748CD8C29C62EF1B15E2040 /* RCTClipboard.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTClipboard.mm; sourceTree = ""; }; + 478A8F266F78C102886EA488C4B0E0E1 /* RNDeviceInfo.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNDeviceInfo.m; path = ios/RNDeviceInfo/RNDeviceInfo.m; sourceTree = ""; }; 47BBC2313A25AA337A8EBDB61F1E9426 /* pkcs7.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = pkcs7.h; path = ios/include/openssl/pkcs7.h; sourceTree = ""; }; - 47CEEEC269B05BDC532D4EA71D6E2901 /* RCTVibration.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTVibration.mm; sourceTree = ""; }; + 47BED96EE84514335B2988730E69EE32 /* RNPanHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNPanHandler.m; sourceTree = ""; }; 47CF75D10934F39790AC9D0BD005293F /* Assume.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = Assume.cpp; path = folly/lang/Assume.cpp; sourceTree = ""; }; + 47DC97CD2BEF59C115D143CF75DD164D /* RCTImageLoader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageLoader.h; path = Libraries/Image/RCTImageLoader.h; sourceTree = ""; }; + 47DF6A5E8E22CBC99575166076BBFF9C /* BSG_KSCrashSentry_NSException.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashSentry_NSException.h; sourceTree = ""; }; 47F2E167D022EC3B2BBB539B5FC5B7B4 /* FramedDuplexConnection.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = FramedDuplexConnection.cpp; path = rsocket/framing/FramedDuplexConnection.cpp; sourceTree = ""; }; + 47F989B94765482BFD24D2F8FFBF61DC /* RNRootViewGestureRecognizer.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNRootViewGestureRecognizer.m; path = ios/RNRootViewGestureRecognizer.m; sourceTree = ""; }; + 4804FDF618F2127C10ED13EED4716393 /* BugsnagSessionFileStore.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagSessionFileStore.m; sourceTree = ""; }; 480ACD8EB66689B1DB2A7EFC233EB866 /* near_lossless_enc.c */ = {isa = PBXFileReference; includeInIndex = 1; name = near_lossless_enc.c; path = src/enc/near_lossless_enc.c; sourceTree = ""; }; - 4831228447E518D4B8D8BFB7333FFE97 /* EXAppleAuthenticationRequest.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXAppleAuthenticationRequest.m; path = EXAppleAuthentication/EXAppleAuthenticationRequest.m; sourceTree = ""; }; + 481A48D7D1833FE4B030F8A30FF1AC05 /* EXFileSystem-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "EXFileSystem-prefix.pch"; sourceTree = ""; }; + 481C31B92E77F1A3D0612DE9CF1EBF9D /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; + 481F5BDC0821ACF8ED5831526566E112 /* ARTShapeManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = ARTShapeManager.m; sourceTree = ""; }; + 4837ADC18FC3FDBAA05379BDC872B182 /* RCTEventDispatcher.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTEventDispatcher.m; sourceTree = ""; }; 48425DA2F01D82A20786D5E55E264A29 /* libreact-native-orientation-locker.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libreact-native-orientation-locker.a"; path = "libreact-native-orientation-locker.a"; sourceTree = BUILT_PRODUCTS_DIR; }; 48585445AE235AEDCD0FB7DD230879A2 /* de.lproj */ = {isa = PBXFileReference; includeInIndex = 1; name = de.lproj; path = "Objective-C/TOCropViewController/Resources/de.lproj"; sourceTree = ""; }; - 4865AD148FB95A16B139DE3AD0BB5331 /* FBLazyVector.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBLazyVector.h; path = FBLazyVector/FBLazyVector.h; sourceTree = ""; }; + 485AAD44B28407AF4DAC8AE5A1EEA8D2 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; + 486877CB108264C0CFC7D7AFDB47BF05 /* UMEventEmitter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMEventEmitter.h; sourceTree = ""; }; 486B9CD622145C39FA6B9A49869C4CA8 /* ThreadFactory.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ThreadFactory.h; path = folly/executors/thread_factory/ThreadFactory.h; sourceTree = ""; }; + 488EA45EBA343D1BD2A4E6DAA324BD75 /* RNNotificationCenterListener.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNNotificationCenterListener.h; path = RNNotifications/RNNotificationCenterListener.h; sourceTree = ""; }; 48927A4D44559D7320D6AACB0EC86314 /* ThreadedRepeatingFunctionRunner.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ThreadedRepeatingFunctionRunner.h; path = folly/experimental/ThreadedRepeatingFunctionRunner.h; sourceTree = ""; }; - 489B2BE56ECB5369B8A21803E6CBA421 /* react-native-notifications-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "react-native-notifications-prefix.pch"; sourceTree = ""; }; - 48BFF4507769ED087BF273D65AA632EC /* SDImageIOAnimatedCoderInternal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageIOAnimatedCoderInternal.h; path = SDWebImage/Private/SDImageIOAnimatedCoderInternal.h; sourceTree = ""; }; + 489F0F3B465EAA66CBF8E2FF8BC18A4F /* Utils.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = Utils.cpp; path = yoga/Utils.cpp; sourceTree = ""; }; + 48A95C1610D450A725E7176E5F26A44C /* RCTCustomInputController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTCustomInputController.h; sourceTree = ""; }; + 48BBE9DE98509E29FD0517D37E242CE9 /* ARTText.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ARTText.h; path = ios/ARTText.h; sourceTree = ""; }; 48DE2235F7876B7D827E04FB10D92127 /* Exception.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Exception.h; path = folly/Exception.h; sourceTree = ""; }; + 48E7E03C4B61425FE65E20EB8E88F881 /* BSG_KSCrashReportStore.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BSG_KSCrashReportStore.m; sourceTree = ""; }; 48EF4C8B5B8E6AC7B3B8A8E4EC37313B /* MapUtil.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MapUtil.h; path = folly/MapUtil.h; sourceTree = ""; }; - 48FF178F4A6064362BE104052C28F435 /* NSBezierPath+SDRoundedCorners.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSBezierPath+SDRoundedCorners.m"; path = "SDWebImage/Private/NSBezierPath+SDRoundedCorners.m"; sourceTree = ""; }; 4905746AA215AA4A3BA3F59A0905C6B2 /* Expected.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Expected.h; path = folly/Expected.h; sourceTree = ""; }; - 491AED04763753D48BB1E360F814442C /* QBVideoIndicatorView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = QBVideoIndicatorView.h; path = ios/QBImagePicker/QBImagePicker/QBVideoIndicatorView.h; sourceTree = ""; }; - 4921921C7C64404DD7FF84797378B2BD /* CallInvoker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CallInvoker.h; path = callinvoker/ReactCommon/CallInvoker.h; sourceTree = ""; }; + 49065EA13CF906BAB7811E5CE8A95B97 /* TurboCxxModule.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = TurboCxxModule.cpp; path = turbomodule/core/TurboCxxModule.cpp; sourceTree = ""; }; + 491897499B0006206DACF8971EFC2E9A /* RNCSafeAreaProvider.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCSafeAreaProvider.m; path = ios/SafeAreaView/RNCSafeAreaProvider.m; sourceTree = ""; }; + 4919EAAE3570A94883BB9DFCC0A8654D /* FFFastImageViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FFFastImageViewManager.m; path = ios/FastImage/FFFastImageViewManager.m; sourceTree = ""; }; + 49403DD0A6F2893E9B98EEEC15C36C16 /* RNImageCropPicker-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNImageCropPicker-prefix.pch"; sourceTree = ""; }; 494B8F92D84B22C8489D80D4FDA8FC33 /* GULMutableDictionary.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GULMutableDictionary.m; path = GoogleUtilities/Network/GULMutableDictionary.m; sourceTree = ""; }; 494E934B4070A029E1A8D42C9BDF4646 /* libEXImageLoader.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libEXImageLoader.a; path = libEXImageLoader.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 495A5EEC39F246A0D653BAFDC490350C /* RCTVersion.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTVersion.m; sourceTree = ""; }; + 4959DB2E841802837EE55AADD8292050 /* jsilib-posix.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = "jsilib-posix.cpp"; sourceTree = ""; }; 495EEE7EC9CC941B2ED910F264DA5B2A /* FlatCombiningPriorityQueue.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FlatCombiningPriorityQueue.h; path = folly/experimental/FlatCombiningPriorityQueue.h; sourceTree = ""; }; - 496E921652C2248A6FFB1951C61E9A2D /* instrumentation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = instrumentation.h; sourceTree = ""; }; - 4997FC565EB64A458E9459418736C6B6 /* Zocial.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = Zocial.ttf; path = Fonts/Zocial.ttf; sourceTree = ""; }; + 4965F83FB63F17DDF7135B269495CDB3 /* react-native-appearance.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "react-native-appearance.xcconfig"; sourceTree = ""; }; + 498CC854F890DC4FDD8DAF88FE88D945 /* localNotifications.md */ = {isa = PBXFileReference; includeInIndex = 1; name = localNotifications.md; path = docs/localNotifications.md; sourceTree = ""; }; 499C4B4AFDCD3C0B51FBBDD25849E260 /* Flipper-PeerTalk.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Flipper-PeerTalk.xcconfig"; sourceTree = ""; }; - 49A408345DF37A714779AD3FFCBB21B6 /* RCTTypeSafety.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RCTTypeSafety.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - 49AC4F1EDFD471A0178ED2F38D110BE8 /* EvilIcons.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = EvilIcons.ttf; path = Fonts/EvilIcons.ttf; sourceTree = ""; }; 49B2130667FC877ECE76F0F609B82F7F /* Builtins.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = Builtins.cpp; path = folly/portability/Builtins.cpp; sourceTree = ""; }; 49BBEED22BDEDA2833F3C2967601BC4B /* libevent_extra.a */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = archive.ar; name = libevent_extra.a; path = lib/libevent_extra.a; sourceTree = ""; }; - 49C3C2D766AD5EBFBF77708CF363A786 /* UMAppDelegateWrapper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMAppDelegateWrapper.h; path = UMCore/UMAppDelegateWrapper.h; sourceTree = ""; }; - 49F37D41ACDCF417C3F20711F4D42ECC /* UMErrorCodes.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = UMErrorCodes.m; path = UMCore/UMErrorCodes.m; sourceTree = ""; }; 49FEA5D9BD36512D6DAF0305E454C21B /* SKSearchResultNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SKSearchResultNode.h; path = iOS/Plugins/FlipperKitLayoutPlugin/FlipperKitLayoutPlugin/SKSearchResultNode.h; sourceTree = ""; }; - 4A1C7E7294D784E84D6A63A4ADF99834 /* UIView+React.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "UIView+React.m"; sourceTree = ""; }; - 4A400B04CC4314064FFD73A023EE9C4D /* RCTCxxUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTCxxUtils.h; sourceTree = ""; }; + 49FF0EBB0C9CC5B18B7F87E719B84FCD /* YGValue.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YGValue.h; path = yoga/YGValue.h; sourceTree = ""; }; + 4A090700F56D9999D1A4365A62E2FFC8 /* RCTRedBoxExtraDataViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTRedBoxExtraDataViewController.h; sourceTree = ""; }; + 4A0A044F7C56744E4ACD3967FBB587CF /* RCTManagedPointer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTManagedPointer.h; sourceTree = ""; }; + 4A1E990DE7C5E9061369D6E21A2B2B11 /* QBAlbumsViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = QBAlbumsViewController.h; path = ios/QBImagePicker/QBImagePicker/QBAlbumsViewController.h; sourceTree = ""; }; + 4A2AA9ED3472A469364C9039E4696788 /* RNFirebaseInstanceId.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNFirebaseInstanceId.m; sourceTree = ""; }; 4A4D65433A1D40E254CA23F0BC3B67C7 /* FileUtilDetail.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FileUtilDetail.h; path = folly/detail/FileUtilDetail.h; sourceTree = ""; }; - 4A5089756CA01445DAA8F58801683705 /* RNImageCropPicker-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNImageCropPicker-dummy.m"; sourceTree = ""; }; - 4A5D8F44DCDE87F173CBE63A075DB058 /* BugsnagSessionTracker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagSessionTracker.h; sourceTree = ""; }; + 4A566499049C1F44790724F96962AE1C /* RCTTextAttributes.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTTextAttributes.h; path = Libraries/Text/RCTTextAttributes.h; sourceTree = ""; }; + 4A66F8075DD9275EB8E3E2D3F3C8CA70 /* UIImageView+HighlightedWebCache.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIImageView+HighlightedWebCache.m"; path = "SDWebImage/Core/UIImageView+HighlightedWebCache.m"; sourceTree = ""; }; 4A694EE5ED5D9BAD6323EE82ACBC46FC /* RSocketRequester.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = RSocketRequester.cpp; path = rsocket/RSocketRequester.cpp; sourceTree = ""; }; 4A8A447263A0ADCDDC5832F1711C99F3 /* F14Set.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = F14Set.h; path = folly/container/F14Set.h; sourceTree = ""; }; 4A9111B998F6951B90BEEF4356A22BC7 /* FirebaseCore.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FirebaseCore.h; path = FirebaseCore/Sources/Public/FirebaseCore.h; sourceTree = ""; }; - 4A9C870E415384C1941E5FEE0F27CBD9 /* SDImageCoder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageCoder.h; path = SDWebImage/Core/SDImageCoder.h; sourceTree = ""; }; - 4AA5953CEC6B4F9133E614A9B1EDAF92 /* RCTTextTransform.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTTextTransform.h; path = Libraries/Text/RCTTextTransform.h; sourceTree = ""; }; + 4A91A33C96BF578F37C37B3C171CC164 /* SDImageIOAnimatedCoderInternal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageIOAnimatedCoderInternal.h; path = SDWebImage/Private/SDImageIOAnimatedCoderInternal.h; sourceTree = ""; }; 4AB231ED9A140087BF5AA534E8D4B5E5 /* AtomicHashMap-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "AtomicHashMap-inl.h"; path = "folly/AtomicHashMap-inl.h"; sourceTree = ""; }; 4AC69B228C927726F100BCC549ECD230 /* FIRInstallationsItem+RegisterInstallationAPI.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FIRInstallationsItem+RegisterInstallationAPI.h"; path = "FirebaseInstallations/Source/Library/InstallationsAPI/FIRInstallationsItem+RegisterInstallationAPI.h"; sourceTree = ""; }; - 4AD6C8ED2DA49566A7EF6CBB775EA267 /* REAStyleNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REAStyleNode.h; sourceTree = ""; }; + 4ACA0D1B0261A4F4E5C355640D74D97F /* RCTCustomKeyboardViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTCustomKeyboardViewController.m; sourceTree = ""; }; 4ADC6A713311A1017493308DF7F5603F /* dec_mips32.c */ = {isa = PBXFileReference; includeInIndex = 1; name = dec_mips32.c; path = src/dsp/dec_mips32.c; sourceTree = ""; }; - 4B05EA68892A43B772F2291B520793E2 /* EXAppleAuthentication-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "EXAppleAuthentication-prefix.pch"; sourceTree = ""; }; + 4B0BDCD96533560254D9A26471FEED1F /* RCTConvertHelpers.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTConvertHelpers.h; sourceTree = ""; }; 4B0C45BCE792F8E95FD9ABE893893BC9 /* FramedDuplexConnection.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FramedDuplexConnection.h; path = rsocket/framing/FramedDuplexConnection.h; sourceTree = ""; }; - 4B167CBAC7DC720B989DFA450011E400 /* RNBootSplash.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNBootSplash.m; path = ios/RNBootSplash.m; sourceTree = ""; }; - 4B16BF17465FB62E0B3AEEDF1623DC8C /* BugsnagNotifier.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagNotifier.m; sourceTree = ""; }; + 4B12D9CDA0680E9AC201A085DC0E2D6C /* RCTJavaScriptExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTJavaScriptExecutor.h; sourceTree = ""; }; 4B1B31D2AC8605E7CA304254F6F815DE /* cost_neon.c */ = {isa = PBXFileReference; includeInIndex = 1; name = cost_neon.c; path = src/dsp/cost_neon.c; sourceTree = ""; }; - 4B4B25C480CA6B76598CB40CEAF97417 /* SDDeviceHelper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDDeviceHelper.h; path = SDWebImage/Private/SDDeviceHelper.h; sourceTree = ""; }; - 4B4D3FE3A0902B85586AB8E1709522DA /* RCTUITextView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTUITextView.m; sourceTree = ""; }; + 4B2671E0D7FF0A9EF0D5FBB2355A3FB0 /* UMFaceDetectorManagerProvider.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMFaceDetectorManagerProvider.h; path = UMFaceDetectorInterface/UMFaceDetectorManagerProvider.h; sourceTree = ""; }; + 4B2C5CF3A41C270913C7F523DC4F09EF /* RNGestureHandlerModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNGestureHandlerModule.h; path = ios/RNGestureHandlerModule.h; sourceTree = ""; }; 4B5210B14A763C0C46E3464166BFBBEB /* Time.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Time.h; path = folly/portability/Time.h; sourceTree = ""; }; 4B52B751D77ED694DEA2432467C4AB0E /* diy-fp.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = "diy-fp.cc"; path = "double-conversion/diy-fp.cc"; sourceTree = ""; }; 4B52C4B2E727C1B5CD37B50A5AE89C5F /* Libgen.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Libgen.h; path = folly/portability/Libgen.h; sourceTree = ""; }; 4B571F3F029DD2D6D83D36652A5A26DE /* SKScrollViewDescriptor.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SKScrollViewDescriptor.m; path = iOS/Plugins/FlipperKitLayoutPlugin/FlipperKitLayoutPlugin/descriptors/SKScrollViewDescriptor.m; sourceTree = ""; }; - 4B653310B719340E4D330E97918BFC1B /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; - 4B7280DC6FED85AD9589A66AC5647B62 /* BSG_KSCrashSentry_User.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSCrashSentry_User.c; sourceTree = ""; }; - 4B85BFB057BF705D4CEA4E38A4925154 /* JSCExecutorFactory.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = JSCExecutorFactory.h; sourceTree = ""; }; + 4B7E3E56833975B9944ADCE7C22117DE /* RNCAsyncStorage-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNCAsyncStorage-dummy.m"; sourceTree = ""; }; + 4B80933D1A235F6C228F81689B5C40A1 /* RCTSegmentedControl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSegmentedControl.h; sourceTree = ""; }; 4B868B975B17FD43D8795223F2C75789 /* strtod.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = strtod.cc; path = "double-conversion/strtod.cc"; sourceTree = ""; }; - 4B9AEFF14A0B7431D172233187A20862 /* RCTSwitch.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSwitch.h; sourceTree = ""; }; - 4BA7636E5ED7A99CC81EDA96CECE6609 /* SDWebImageDownloaderResponseModifier.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWebImageDownloaderResponseModifier.m; path = SDWebImage/Core/SDWebImageDownloaderResponseModifier.m; sourceTree = ""; }; + 4B88BC78BEF6D9D5545EED4ADAAE9F03 /* SDGraphicsImageRenderer.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDGraphicsImageRenderer.m; path = SDWebImage/Core/SDGraphicsImageRenderer.m; sourceTree = ""; }; 4BB48F690B5F5C5245ADDEFC1C2B0144 /* AsyncPipe.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AsyncPipe.h; path = folly/io/async/AsyncPipe.h; sourceTree = ""; }; 4BC9F0A1EE59E920FB929308754C535E /* AtomicHashArray.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AtomicHashArray.h; path = folly/AtomicHashArray.h; sourceTree = ""; }; - 4BD12A4E0E9E120671E3595F05564CB8 /* FBReactNativeSpec.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = FBReactNativeSpec.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - 4BF56BE3E96D4B9ADB90A98D1091192B /* RCTVibrationPlugins.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTVibrationPlugins.mm; sourceTree = ""; }; 4BFDEAE55F13AF514F755C6AEBAED37A /* FBLPromise+Delay.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "FBLPromise+Delay.m"; path = "Sources/FBLPromises/FBLPromise+Delay.m"; sourceTree = ""; }; - 4C79CE516CD630657363DDBDCA522425 /* SDWebImageCacheKeyFilter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageCacheKeyFilter.h; path = SDWebImage/Core/SDWebImageCacheKeyFilter.h; sourceTree = ""; }; - 4CAE3FAD576DFEF9531504E3694317A5 /* RCTCustomKeyboardViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTCustomKeyboardViewController.m; sourceTree = ""; }; - 4CB1F7A50693D9CF3D1B8F89276D0618 /* UMAppLifecycleListener.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMAppLifecycleListener.h; sourceTree = ""; }; + 4CB1AC9694F15DC9890F261628C68E9F /* JSCRuntime.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = JSCRuntime.h; sourceTree = ""; }; 4CBC91A275622E387F639E5BDDA38294 /* SKObjectHash.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SKObjectHash.h; path = iOS/Plugins/FlipperKitLayoutPlugin/FlipperKitLayoutPlugin/utils/SKObjectHash.h; sourceTree = ""; }; - 4CD8D621D244624D31D23B1C91014A93 /* EXAppleAuthenticationRequest.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXAppleAuthenticationRequest.h; path = EXAppleAuthentication/EXAppleAuthenticationRequest.h; sourceTree = ""; }; - 4CFDB601BC80758537EFDD2CD961C812 /* RNGestureHandlerModule.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNGestureHandlerModule.m; path = ios/RNGestureHandlerModule.m; sourceTree = ""; }; - 4D11220ABDB67C6C08B65828ED1B9A50 /* react-native-background-timer-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "react-native-background-timer-dummy.m"; sourceTree = ""; }; - 4D30D8C74FFA15785DB15BC7AFBAA963 /* RCTInterpolationAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTInterpolationAnimatedNode.h; sourceTree = ""; }; + 4CD0A82EB71A43CAA081C0FA6178BE58 /* React-RCTActionSheet.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = "React-RCTActionSheet.podspec"; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 4CDE974C6A3448610A705D1840228F96 /* UMViewManagerAdapterClassesRegistry.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMViewManagerAdapterClassesRegistry.h; sourceTree = ""; }; + 4D0771F19766B40C0526619A98BEDEA7 /* UMModuleRegistryAdapter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = UMModuleRegistryAdapter.m; sourceTree = ""; }; 4D3297C00E401A07F17B6B3F6A899B52 /* Array.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Array.h; path = folly/container/Array.h; sourceTree = ""; }; - 4D38B1CF0BD847B29727942342B11073 /* RCTModuleData.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTModuleData.h; sourceTree = ""; }; 4D4387B5DEFD6C500A6EB7878ACEEDFF /* GDTCORTransport.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GDTCORTransport.m; path = GoogleDataTransport/GDTCORLibrary/GDTCORTransport.m; sourceTree = ""; }; 4D448B892838AD09C2D3EF63EA7EA406 /* FlipperKitReactPlugin.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FlipperKitReactPlugin.h; path = iOS/Plugins/FlipperKitReactPlugin/FlipperKitReactPlugin/FlipperKitReactPlugin.h; sourceTree = ""; }; 4D45168709ADC376EA8B431E1DDA9015 /* json_pointer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = json_pointer.h; path = folly/json_pointer.h; sourceTree = ""; }; - 4D49C85A499B83A5304FA3A56A2B4282 /* react-native-document-picker-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "react-native-document-picker-dummy.m"; sourceTree = ""; }; + 4D95D1860729A449E53146FB33AEB650 /* SDWebImageCompat.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageCompat.h; path = SDWebImage/Core/SDWebImageCompat.h; sourceTree = ""; }; 4D9974CBD930078B900874EECD585316 /* StreamThroughputMemory.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = StreamThroughputMemory.cpp; path = rsocket/benchmarks/StreamThroughputMemory.cpp; sourceTree = ""; }; - 4DD6B706D7C83809F01C6C0B11777F78 /* CompactValue.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CompactValue.h; path = yoga/CompactValue.h; sourceTree = ""; }; + 4DC84E745BE05BFB6B02C10D85B2CB44 /* RNBridgeModule.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNBridgeModule.m; path = RNNotifications/RNBridgeModule.m; sourceTree = ""; }; + 4DD6EF9FFB6D58F494D3251F805BF0A0 /* React-RCTAnimation-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-RCTAnimation-dummy.m"; sourceTree = ""; }; 4DD859B7667F2DABB151D070B512AE66 /* OpenSSLHash.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = OpenSSLHash.h; path = folly/ssl/OpenSSLHash.h; sourceTree = ""; }; - 4DD8F5BBEF8845E9E86F103F6C46EAEB /* React-RCTSettings.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = "React-RCTSettings.podspec"; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; 4DF42BF532FC18573523B1B1541B260D /* OpenSSLThreading.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = OpenSSLThreading.h; path = folly/ssl/detail/OpenSSLThreading.h; sourceTree = ""; }; 4E014C494E5AF4E2D3B95E59278A6E7A /* config_enc.c */ = {isa = PBXFileReference; includeInIndex = 1; name = config_enc.c; path = src/enc/config_enc.c; sourceTree = ""; }; 4E01C0EB45DFE73C38812AAD0C34E7E7 /* ParkingLot.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ParkingLot.h; path = folly/synchronization/ParkingLot.h; sourceTree = ""; }; 4E0B54BC3A206AD1A540ECB89440B2A5 /* filters_mips_dsp_r2.c */ = {isa = PBXFileReference; includeInIndex = 1; name = filters_mips_dsp_r2.c; path = src/dsp/filters_mips_dsp_r2.c; sourceTree = ""; }; - 4E3187C6C948132009DB5543F9704A1D /* REAValueNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REAValueNode.h; sourceTree = ""; }; - 4E3FD77131EA5EDCE0E84A962E4F4B4A /* RCTTransformAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTTransformAnimatedNode.m; sourceTree = ""; }; - 4E535088C379402A8A0165AE84AC64BA /* UMConstantsInterface.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMConstantsInterface.xcconfig; sourceTree = ""; }; - 4E686F63A3EC5D34AB3B20235ACBEA07 /* EXVideoThumbnails.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = EXVideoThumbnails.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - 4E6A5B0627CF2430FBEEDDDF9D3C6E43 /* RCTNetworking.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTNetworking.h; path = Libraries/Network/RCTNetworking.h; sourceTree = ""; }; - 4E79E7C4475819BE6183F64D6F78755E /* RCTModuleMethod.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTModuleMethod.mm; sourceTree = ""; }; + 4E5616F0EB35B1DF2940951F0F7B92CE /* RCTSurfaceRootShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSurfaceRootShadowView.h; sourceTree = ""; }; + 4E60CDDC422A732752DCC7C642B75B25 /* UIView+WebCache.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIView+WebCache.h"; path = "SDWebImage/Core/UIView+WebCache.h"; sourceTree = ""; }; + 4E6AD46A5FCC5FED2D096C94C7DE5DA0 /* BSG_KSBacktrace_Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSBacktrace_Private.h; sourceTree = ""; }; 4E7BAD83EB8173C6E85EE46585F74AB1 /* TimedDrivableExecutor.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = TimedDrivableExecutor.cpp; path = folly/executors/TimedDrivableExecutor.cpp; sourceTree = ""; }; 4E8037656A7EA6390C835AFF7A2A5A14 /* SKEnvironmentVariables.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SKEnvironmentVariables.h; path = iOS/FlipperKit/SKEnvironmentVariables.h; sourceTree = ""; }; 4E8C8594A79A3396703CAEB947C0E080 /* SKButtonDescriptor.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = SKButtonDescriptor.mm; path = iOS/Plugins/FlipperKitLayoutPlugin/FlipperKitLayoutPlugin/descriptors/SKButtonDescriptor.mm; sourceTree = ""; }; - 4E8ED8A83DA5B53CBED456E31C005406 /* YGValue.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YGValue.h; path = yoga/YGValue.h; sourceTree = ""; }; 4EAF7225D8D498E7D232AE1520E6CBD3 /* libRNFirebase.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libRNFirebase.a; path = libRNFirebase.a; sourceTree = BUILT_PRODUCTS_DIR; }; 4EE50DF2753D29D083173EACF2387EAA /* syntax_enc.c */ = {isa = PBXFileReference; includeInIndex = 1; name = syntax_enc.c; path = src/enc/syntax_enc.c; sourceTree = ""; }; 4EF5DD97AACA1860EB375EF5D474B603 /* FBLPromise+Then.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "FBLPromise+Then.m"; path = "Sources/FBLPromises/FBLPromise+Then.m"; sourceTree = ""; }; 4EF993D3A2FE6B149FDC304C80E5ABF4 /* EDFThreadPoolExecutor.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = EDFThreadPoolExecutor.cpp; path = folly/executors/EDFThreadPoolExecutor.cpp; sourceTree = ""; }; + 4EFC8C6939C0CA67C20AA47F229527E7 /* BSG_KSCrashC.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashC.h; sourceTree = ""; }; 4F0E80F5B80651483B200226F1AC7F0C /* OpenSSL.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = OpenSSL.cpp; path = folly/portability/OpenSSL.cpp; sourceTree = ""; }; 4F165263816B6742FF0626215E359693 /* analysis_enc.c */ = {isa = PBXFileReference; includeInIndex = 1; name = analysis_enc.c; path = src/enc/analysis_enc.c; sourceTree = ""; }; 4F1CD909714A0407163E8BF5BDEC08C8 /* FLEXNetworkTransaction.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FLEXNetworkTransaction.h; path = iOS/Plugins/FlipperKitNetworkPlugin/SKIOSNetworkPlugin/FLEXNetworkLib/FLEXNetworkTransaction.h; sourceTree = ""; }; + 4F24913A141036E9AC7793EBAC897DEB /* EXVideoThumbnails-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "EXVideoThumbnails-dummy.m"; sourceTree = ""; }; 4F4C3DDEFA9C202FF1A5B1F8644FBA4D /* IPAddress.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = IPAddress.cpp; path = folly/IPAddress.cpp; sourceTree = ""; }; + 4F4F57B098C6AA5F9B85E76499C5DCD9 /* QBVideoIconView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = QBVideoIconView.m; path = ios/QBImagePicker/QBImagePicker/QBVideoIconView.m; sourceTree = ""; }; 4F51D848138A0C792F5CF514F90242E8 /* Combine-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "Combine-inl.h"; path = "folly/gen/Combine-inl.h"; sourceTree = ""; }; - 4F5764F79EDB89B2E56B1DC234C9CDBD /* LICENCE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENCE; sourceTree = ""; }; 4F5DD97F8E6E4C0708077F62E6A6E922 /* CodingDetail.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CodingDetail.h; path = folly/experimental/CodingDetail.h; sourceTree = ""; }; - 4F9CFEA5DE5CD59C3161B14BC08A7D4C /* RCTShadowView+Layout.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RCTShadowView+Layout.m"; sourceTree = ""; }; - 4FA133FF443545FD679E492E568820B6 /* TurboModuleBinding.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TurboModuleBinding.h; path = turbomodule/core/TurboModuleBinding.h; sourceTree = ""; }; - 4FC3B717C83FAC114AB040CD800E0E06 /* threadsafe.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = threadsafe.h; sourceTree = ""; }; + 4FA787B4E7BB643A1744D70272BE7E4C /* RNBootSplash-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNBootSplash-dummy.m"; sourceTree = ""; }; + 4FD80BB7AF33EAFDC716C40AA889522F /* RCTLinkingPlugins.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTLinkingPlugins.h; path = Libraries/LinkingIOS/RCTLinkingPlugins.h; sourceTree = ""; }; 4FDA96879D96070EB1983E98E655CBDC /* librn-fetch-blob.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "librn-fetch-blob.a"; path = "librn-fetch-blob.a"; sourceTree = BUILT_PRODUCTS_DIR; }; - 4FFCF1FC0664854C3FB32F39781917B1 /* NativeToJsBridge.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = NativeToJsBridge.cpp; sourceTree = ""; }; 4FFFB836871837E3F0F105DF572CA9D8 /* GCDAsyncUdpSocket.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GCDAsyncUdpSocket.h; path = Source/GCD/GCDAsyncUdpSocket.h; sourceTree = ""; }; - 501080DAE21711CE6E8FADCE54B0D5D5 /* UIColor+SDHexString.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIColor+SDHexString.m"; path = "SDWebImage/Private/UIColor+SDHexString.m"; sourceTree = ""; }; 501527DF2B51A182FCF38F92501CA6FD /* SharedPromise-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "SharedPromise-inl.h"; path = "folly/futures/SharedPromise-inl.h"; sourceTree = ""; }; 5016EEF9A56A2CD15C954059F1487671 /* objects.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = objects.h; path = ios/include/openssl/objects.h; sourceTree = ""; }; - 501799D18FF728DE0379BD277745DE90 /* RCTBaseTextInputViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTBaseTextInputViewManager.m; sourceTree = ""; }; - 5024867E4249A0B59A14EEC601A826C8 /* RCTConvert+RNNotifications.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "RCTConvert+RNNotifications.h"; path = "RNNotifications/RCTConvert+RNNotifications.h"; sourceTree = ""; }; - 5027F0CC646A6516D16F1A731BCE3023 /* REAPropsNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REAPropsNode.h; sourceTree = ""; }; - 5048C882B6B24ACED251F005937C600C /* ARTSurfaceView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = ARTSurfaceView.m; path = ios/ARTSurfaceView.m; sourceTree = ""; }; - 5050A1FCDE105C0CA29E4FD8D2768331 /* RCTWeakProxy.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTWeakProxy.h; sourceTree = ""; }; 5062F65CF90760ACE346693A81DC753F /* ExceptionWrapper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ExceptionWrapper.h; path = folly/ExceptionWrapper.h; sourceTree = ""; }; + 50703713C580250670B68B264D2FF5D9 /* EXHaptics-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "EXHaptics-dummy.m"; sourceTree = ""; }; + 508389C53318E4312B3FE5BF0AEAEB2D /* YGEnums.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = YGEnums.cpp; path = yoga/YGEnums.cpp; sourceTree = ""; }; + 509028E070AB957F72F727EC93936D7C /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; 5092168409DB8012F9B2825897B078FD /* TimeoutManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TimeoutManager.h; path = folly/io/async/TimeoutManager.h; sourceTree = ""; }; 50ABB863B576FFD6C6CA53511D921D2D /* Dirent.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Dirent.h; path = folly/portability/Dirent.h; sourceTree = ""; }; - 50AC756E0E949F216873FC9F7F3C7DF6 /* BSG_KSFileUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSFileUtils.h; sourceTree = ""; }; 50B5347C9A6E93B7D4CFC3673BA6FB7E /* libRNScreens.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libRNScreens.a; path = libRNScreens.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 50E24753E2BF7235A9180BA697DF606A /* SDWebImageError.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWebImageError.m; path = SDWebImage/Core/SDWebImageError.m; sourceTree = ""; }; 50F122E5AEEB0232B93BD906033A1B59 /* bignum.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = bignum.cc; path = "double-conversion/bignum.cc"; sourceTree = ""; }; - 510DE00B6A6C5033471591E3A351D1AA /* RNDateTimePicker.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNDateTimePicker.xcconfig; sourceTree = ""; }; - 512B8149A1DDC202F6AE37A0577E9EB2 /* UMErrorCodes.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMErrorCodes.h; path = UMCore/UMErrorCodes.h; sourceTree = ""; }; - 513CCD42219FDB82C128464C0AD3C6CF /* RCTImagePlugins.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImagePlugins.h; path = Libraries/Image/RCTImagePlugins.h; sourceTree = ""; }; - 5153E4056ECE5A55050793F2F68FFE44 /* RCTImageSource.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTImageSource.m; sourceTree = ""; }; + 50FBB239ECC5D997D96FB4D43BD76245 /* SDAnimatedImagePlayer.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDAnimatedImagePlayer.m; path = SDWebImage/Core/SDAnimatedImagePlayer.m; sourceTree = ""; }; + 510C01E26D94D8122E44BA05A2766DAB /* RNFirebaseDatabaseReference.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNFirebaseDatabaseReference.m; sourceTree = ""; }; + 510C5D22CFBB0301BA66BCAF7BA31495 /* RCTErrorInfo.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTErrorInfo.m; sourceTree = ""; }; + 51346FC0571E153FB9138F156D84D7C4 /* RCTSurfacePresenterStub.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSurfacePresenterStub.m; sourceTree = ""; }; + 5137E436DE4843B07273A2FB6FB5D018 /* BugsnagReactNative-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "BugsnagReactNative-prefix.pch"; sourceTree = ""; }; 51674CEE544BAFE4827F0D6B40061039 /* TOCropViewControllerTransitioning.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = TOCropViewControllerTransitioning.m; path = "Objective-C/TOCropViewController/Models/TOCropViewControllerTransitioning.m"; sourceTree = ""; }; - 516A725FD2FA0C22DB6B7DB0B99F417C /* fr.lproj */ = {isa = PBXFileReference; includeInIndex = 1; name = fr.lproj; path = ios/QBImagePicker/QBImagePicker/fr.lproj; sourceTree = ""; }; - 517ABDB6A1D22F90BC800E73D1E05B81 /* RCTInspector.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTInspector.h; sourceTree = ""; }; + 51681A4FBE814BE04C9821B1BE05FF53 /* SystraceSection.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = SystraceSection.h; sourceTree = ""; }; + 518871DD5597807A14869C4A7A3A9C7F /* EXVideoManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = EXVideoManager.h; sourceTree = ""; }; + 51890F9C01601CCC053E579463C52B0C /* SDImageTransformer.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageTransformer.m; path = SDWebImage/Core/SDImageTransformer.m; sourceTree = ""; }; 51B50F20C76CF72E2BEF8D4764235306 /* libReactNativeART.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libReactNativeART.a; path = libReactNativeART.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 51DECBC4E486E8A8C1C355E6C19A8843 /* RNCAsyncStorage-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNCAsyncStorage-prefix.pch"; sourceTree = ""; }; - 51EDE4A352C03CEEFF24BC91E49758F7 /* react-native-safe-area-context.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "react-native-safe-area-context.xcconfig"; sourceTree = ""; }; 51F04E2D9A8DF407264771A7B6DB295D /* GDTCORTransport.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCORTransport.h; path = GoogleDataTransport/GDTCORLibrary/Public/GDTCORTransport.h; sourceTree = ""; }; - 5203E8481C68C7F88B05A6095736E0F2 /* RCTSurfaceSizeMeasureMode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSurfaceSizeMeasureMode.h; sourceTree = ""; }; + 5200F04647BE068B2CF832CA1AD0F0CC /* RCTBaseTextInputViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTBaseTextInputViewManager.m; sourceTree = ""; }; 5210F187C4D7354884092134D73C6EB0 /* CString.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CString.h; path = folly/lang/CString.h; sourceTree = ""; }; 521CD7F02EEA41315FD805AB120C0A74 /* backward_references_cost_enc.c */ = {isa = PBXFileReference; includeInIndex = 1; name = backward_references_cost_enc.c; path = src/enc/backward_references_cost_enc.c; sourceTree = ""; }; - 522A8FF859ABCC748887C4355C5DD8BB /* ARTRenderableManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = ARTRenderableManager.h; sourceTree = ""; }; + 52378BBFB370CC0FC841244F60B7D504 /* NSData+ImageContentType.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSData+ImageContentType.m"; path = "SDWebImage/Core/NSData+ImageContentType.m"; sourceTree = ""; }; 5239E8274D8C6BBA02745A0F60FBA5C7 /* FlowableObserveOnOperator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FlowableObserveOnOperator.h; path = yarpl/flowable/FlowableObserveOnOperator.h; sourceTree = ""; }; - 524F9C9E4189025DCA5E843BA359C667 /* FontAwesome5_Solid.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = FontAwesome5_Solid.ttf; path = Fonts/FontAwesome5_Solid.ttf; sourceTree = ""; }; 528105474DED71A798CA300EF88F3691 /* GULApplication.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULApplication.h; path = GoogleUtilities/AppDelegateSwizzler/Private/GULApplication.h; sourceTree = ""; }; 528FBF3A38050FAB0D15ACE839634B1B /* Try-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "Try-inl.h"; path = "folly/Try-inl.h"; sourceTree = ""; }; - 52AEAC0B41502A6E3712BEB90D9E8EC6 /* UMImageLoaderInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMImageLoaderInterface.h; path = UMImageLoaderInterface/UMImageLoaderInterface.h; sourceTree = ""; }; + 52AD4D8731F8C93D59E1B21EFC16995F /* RCTInterpolationAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTInterpolationAnimatedNode.m; sourceTree = ""; }; 52BB66794D5CF468F90579F021C92C04 /* Malloc.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = Malloc.cpp; path = folly/portability/Malloc.cpp; sourceTree = ""; }; - 52C61D7A22F52E9650234D81BBB72159 /* ARTGroup.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = ARTGroup.m; path = ios/ARTGroup.m; sourceTree = ""; }; - 52D70E6A6AE650734FECF0BA7B5B3005 /* RCTUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTUtils.h; sourceTree = ""; }; + 52BC3E6A0626DB35820D0A9BC703FB17 /* EXConstants.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = EXConstants.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; 52EBF71E699CB05470D3A3443B9252E7 /* SharedMutex.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = SharedMutex.cpp; path = folly/SharedMutex.cpp; sourceTree = ""; }; - 52F3D7704D7909815C5F8B22E38B57D8 /* RCTAppearance.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTAppearance.mm; sourceTree = ""; }; + 52EC118013247B38026F6CDEFEE08F41 /* Yoga-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Yoga-umbrella.h"; sourceTree = ""; }; + 52EDE0561C5B212AAB971CD89D231544 /* RNFirebaseRemoteConfig.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNFirebaseRemoteConfig.m; sourceTree = ""; }; 52FCF98CEFF94C742080B6965D537AD0 /* libreact-native-safe-area-context.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libreact-native-safe-area-context.a"; path = "libreact-native-safe-area-context.a"; sourceTree = BUILT_PRODUCTS_DIR; }; - 53126359D02D735A3E1AC5815EF5ACB5 /* JSIndexedRAMBundle.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = JSIndexedRAMBundle.h; sourceTree = ""; }; 53339968D7BE0B7483D50FAB1177B806 /* Math.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Math.h; path = folly/Math.h; sourceTree = ""; }; - 533A436110B2A43D96258CDCDC425754 /* EXUserNotificationPermissionRequester.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = EXUserNotificationPermissionRequester.m; sourceTree = ""; }; + 5336120F44EB40D62631E5D977203C7F /* RCTUIManagerUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTUIManagerUtils.h; sourceTree = ""; }; + 5397CA5724A8A4990CF3952B433F59FE /* UIImage+Transform.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIImage+Transform.h"; path = "SDWebImage/Core/UIImage+Transform.h"; sourceTree = ""; }; 53987FF53060DC7928984443DC058F56 /* FIRInstallationsStatus.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstallationsStatus.h; path = FirebaseInstallations/Source/Library/InstallationsIDController/FIRInstallationsStatus.h; sourceTree = ""; }; 539C672DA8001551E03AE7077FE7900F /* FBVector.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBVector.h; path = folly/FBVector.h; sourceTree = ""; }; - 53BA2EEBDACA3F00B86D18D7ED315D3E /* RCTTextShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTextShadowView.h; sourceTree = ""; }; - 53BD81CD8513B30AA00AC0C699A9998F /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; - 53D7F6BFEC09B23AD74FFD107A935416 /* EXPermissions-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "EXPermissions-prefix.pch"; sourceTree = ""; }; + 53BE9593DD3B59D4F27CCEEEEE01CD82 /* REABlockNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REABlockNode.h; sourceTree = ""; }; + 53C28BDA6F66A6FA5DF59665F1716305 /* RCTDisplayLink.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTDisplayLink.m; sourceTree = ""; }; 53F8CC267E4F45BDC0AE8A7DF8F1875A /* AtomicStruct.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AtomicStruct.h; path = folly/synchronization/AtomicStruct.h; sourceTree = ""; }; - 5401F36DD46724F06EC804A065EE1E28 /* React-CoreModules.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-CoreModules.xcconfig"; sourceTree = ""; }; 54105DAE291928E7EAE8CCB1DA55853B /* IOBufQueue.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = IOBufQueue.h; path = folly/io/IOBufQueue.h; sourceTree = ""; }; + 54161D29392E345441AA956C2FB76506 /* RCTDatePickerManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTDatePickerManager.m; sourceTree = ""; }; 54206605F2A52BE5BA373E192791E240 /* FBLPromises.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBLPromises.h; path = Sources/FBLPromises/include/FBLPromises.h; sourceTree = ""; }; 5427922F1C6F6A3813320CC20FB58D51 /* GULAppEnvironmentUtil.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GULAppEnvironmentUtil.m; path = GoogleUtilities/Environment/third_party/GULAppEnvironmentUtil.m; sourceTree = ""; }; 5436E0D21E3301A5E72DFF5629C3C12A /* dh.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = dh.h; path = ios/include/openssl/dh.h; sourceTree = ""; }; 5448E1EBD4A4EC32710F6DCB92875E3E /* SKEnvironmentVariables.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SKEnvironmentVariables.m; path = iOS/FlipperKit/SKEnvironmentVariables.m; sourceTree = ""; }; + 5472EC6616960C5882FAE7C9C7837442 /* UMReactNativeEventEmitter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMReactNativeEventEmitter.h; sourceTree = ""; }; 5490A4EF5B776FDB6A7B0FE97DF2CD88 /* Optional.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Optional.h; path = folly/Optional.h; sourceTree = ""; }; + 54929942CD3B304BCBACED3577A551D5 /* RCTAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTAnimatedNode.h; sourceTree = ""; }; 549EB2E10D01D2B5BB81AE952D7495F4 /* engine.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = engine.h; path = ios/include/openssl/engine.h; sourceTree = ""; }; - 54A3463CC32DA92D00E4D68BA05B415E /* RCTProfileTrampoline-arm.S */ = {isa = PBXFileReference; includeInIndex = 1; path = "RCTProfileTrampoline-arm.S"; sourceTree = ""; }; 54BAA365514E4531F9A6F30FDD09B7CD /* lossless_sse2.c */ = {isa = PBXFileReference; includeInIndex = 1; name = lossless_sse2.c; path = src/dsp/lossless_sse2.c; sourceTree = ""; }; + 54BBCFBF9867A2D6114CDC91D4345CE7 /* SDDiskCache.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDDiskCache.h; path = SDWebImage/Core/SDDiskCache.h; sourceTree = ""; }; 54C5B61685E18774870C6D33B017C34D /* CocoaLibEvent.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = CocoaLibEvent.xcconfig; sourceTree = ""; }; - 54D49797DB034BD9AFCF33501341C011 /* ReactNativeShareExtension.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = ReactNativeShareExtension.m; path = ios/ReactNativeShareExtension.m; sourceTree = ""; }; 54F0EBC3C7D804136FA44144E2525C9C /* String-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "String-inl.h"; path = "folly/gen/String-inl.h"; sourceTree = ""; }; - 54F82C1E638911B9626F6A00BAF5B246 /* RNFetchBlob.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNFetchBlob.m; sourceTree = ""; }; + 54FF570364C67C4800E016D8BE9DF534 /* RNDeviceInfo-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNDeviceInfo-prefix.pch"; sourceTree = ""; }; 55057364D1B31884FD509434B07AFC70 /* ReadMostlySharedPtr.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ReadMostlySharedPtr.h; path = folly/experimental/ReadMostlySharedPtr.h; sourceTree = ""; }; + 550F7B33D97D673FC5789E786A40D16F /* RNCommandsHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCommandsHandler.h; path = RNNotifications/RNCommandsHandler.h; sourceTree = ""; }; + 5543726EBB5319EBD0B38E1E77D6B8AB /* UMReactNativeAdapter-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "UMReactNativeAdapter-dummy.m"; sourceTree = ""; }; 55446750D23DEC41D551540FA5A25403 /* dec_neon.c */ = {isa = PBXFileReference; includeInIndex = 1; name = dec_neon.c; path = src/dsp/dec_neon.c; sourceTree = ""; }; 55458DAFBE268090431885279A793745 /* Subscription.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Subscription.h; path = yarpl/flowable/Subscription.h; sourceTree = ""; }; - 554B22F03906055DC4B73FDEE5372239 /* UMEventEmitter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMEventEmitter.h; sourceTree = ""; }; - 555614C4441CCF93180DF6410C9F48EA /* BSG_KSFileUtils.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSFileUtils.c; sourceTree = ""; }; + 557BD8421208AFAB1AAF766F4A4B99DE /* BugsnagSession.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagSession.m; sourceTree = ""; }; 557D102B219E85522190E096C43E8104 /* Hardware.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Hardware.h; path = folly/synchronization/detail/Hardware.h; sourceTree = ""; }; - 557D849BDD58B5EDD349B0A4B70B353F /* BSG_KSCrashReport.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashReport.h; sourceTree = ""; }; 558DC40DA7E7A651E3445C0FD7432C12 /* AsymmetricMemoryBarrier.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AsymmetricMemoryBarrier.h; path = folly/synchronization/AsymmetricMemoryBarrier.h; sourceTree = ""; }; - 5590AA1C00F0472D5C2137DBFD262D8B /* UIImage+ExtendedCacheData.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIImage+ExtendedCacheData.h"; path = "SDWebImage/Core/UIImage+ExtendedCacheData.h"; sourceTree = ""; }; - 55A1D43E300473C503149B12A5DF80D5 /* jsilib-windows.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = "jsilib-windows.cpp"; sourceTree = ""; }; - 55A754F94E16C39635E2AF9354FBFA4B /* RCTMaskedView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTMaskedView.h; sourceTree = ""; }; - 55C8AA679A3AD6B024B4E86F3ADE1654 /* RCTSwitchManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSwitchManager.m; sourceTree = ""; }; - 55DED3FBCD9CA821EF7A18DF058FC1EE /* UMLogHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMLogHandler.h; sourceTree = ""; }; - 55E8A6E0210B59074AACE28BDB6B9E52 /* UMAppDelegateWrapper.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = UMAppDelegateWrapper.m; path = UMCore/UMAppDelegateWrapper.m; sourceTree = ""; }; - 56053D89CCBFA0BA3CDE1D02E7595E6B /* RNFetchBlobReqBuilder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNFetchBlobReqBuilder.h; path = ios/RNFetchBlobReqBuilder.h; sourceTree = ""; }; - 560D612F81C9E8306A80EFA23F21AFF3 /* RCTPointerEvents.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTPointerEvents.h; sourceTree = ""; }; - 5613065B221600F128B6FF6153943DAD /* RCTSliderManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSliderManager.h; sourceTree = ""; }; + 55AED8C8BD4D71E6494BD85030045A2B /* RCTPackagerConnection.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTPackagerConnection.h; sourceTree = ""; }; + 55EFC35BEA41B74034867F1151BAA50B /* FBReactNativeSpec-generated.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = "FBReactNativeSpec-generated.mm"; path = "FBReactNativeSpec/FBReactNativeSpec-generated.mm"; sourceTree = ""; }; + 560F3DF8F084F79B6928B769F95E0C48 /* UMAppDelegateWrapper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMAppDelegateWrapper.h; path = UMCore/UMAppDelegateWrapper.h; sourceTree = ""; }; 561942E67089539146C0C4ACD62F6AE7 /* fi.lproj */ = {isa = PBXFileReference; includeInIndex = 1; name = fi.lproj; path = "Objective-C/TOCropViewController/Resources/fi.lproj"; sourceTree = ""; }; - 56329E2231A05D55C0A5FF45601A5F03 /* BannerComponent.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BannerComponent.h; sourceTree = ""; }; + 562254EECFA240A680811AEA44C71397 /* BugsnagBreadcrumb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagBreadcrumb.h; sourceTree = ""; }; + 5645770560E1721D6A2068A2709B5B7F /* SDImageHEICCoder.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageHEICCoder.m; path = SDWebImage/Core/SDImageHEICCoder.m; sourceTree = ""; }; 5647B093DEA4FD66B05EBBDA403050D7 /* FBLPromise+All.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FBLPromise+All.h"; path = "Sources/FBLPromises/include/FBLPromise+All.h"; sourceTree = ""; }; - 564AA92D57D9228644E3BE9F170936B2 /* RNCWebView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCWebView.m; path = apple/RNCWebView.m; sourceTree = ""; }; - 564DEFDF58ED06E037C757714E253443 /* RCTSurfaceHostingProxyRootView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSurfaceHostingProxyRootView.h; sourceTree = ""; }; + 564FE4F3C1E7F747E4B89EFE5CB8CD88 /* jsi-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "jsi-inl.h"; sourceTree = ""; }; + 5656A08C3B9793B137BE4B43A9A3646A /* RNFirebaseAdMobNativeExpressManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNFirebaseAdMobNativeExpressManager.h; sourceTree = ""; }; 5658FED65C334121069567CAB12E1A88 /* Firebase.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = Firebase.xcconfig; sourceTree = ""; }; 566D252641C4C2EB62C7455139BB71D6 /* Launder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Launder.h; path = folly/lang/Launder.h; sourceTree = ""; }; 56722B3CD28973C29746EFC85B194276 /* SingletonStackTrace.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SingletonStackTrace.h; path = folly/detail/SingletonStackTrace.h; sourceTree = ""; }; 5678C9D9DB388DA83DB82B80263EC63E /* SysStat.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = SysStat.cpp; path = folly/portability/SysStat.cpp; sourceTree = ""; }; - 567A0387E0B73D92544B9B6AE5BD82B3 /* UMReactNativeEventEmitter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = UMReactNativeEventEmitter.m; sourceTree = ""; }; - 568D062A0FF6D94B39E569F10DE6AD41 /* REAClockNodes.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REAClockNodes.h; sourceTree = ""; }; 569F9E9198C1B4D2BBC78F62ECD1EA31 /* FIRInstallationsAuthTokenResult.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstallationsAuthTokenResult.m; path = FirebaseInstallations/Source/Library/FIRInstallationsAuthTokenResult.m; sourceTree = ""; }; + 56A4B28EAA5307C31E1B8BD60DD44CFC /* ModuleRegistry.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = ModuleRegistry.h; sourceTree = ""; }; 56A73D61D5673B89D78F2F6B02D77AD4 /* libwebp.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = libwebp.xcconfig; sourceTree = ""; }; 56A76614CC57F364D865AE803573465F /* CMakeLists.txt */ = {isa = PBXFileReference; includeInIndex = 1; name = CMakeLists.txt; path = rsocket/benchmarks/CMakeLists.txt; sourceTree = ""; }; 56AED561EB3A3264573F7686989004A4 /* FlipperKit.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = FlipperKit.xcconfig; sourceTree = ""; }; 56CC3C3AB2AC0E9C53DC1B8DC9122BB4 /* StringKeyedCommon.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = StringKeyedCommon.h; path = folly/experimental/StringKeyedCommon.h; sourceTree = ""; }; - 56E325018147BA656AC7A8A93CB4E276 /* jsi-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "jsi-inl.h"; sourceTree = ""; }; + 56D1AA8F50179674979BBEC1A3F9AE6A /* RCTSurface.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTSurface.mm; sourceTree = ""; }; + 56EC8894F57E03D43A1177DE5EE7B401 /* React-RCTImage-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-RCTImage-prefix.pch"; sourceTree = ""; }; 56F60D5152237E7C75B595341DC35946 /* quant_dec.c */ = {isa = PBXFileReference; includeInIndex = 1; name = quant_dec.c; path = src/dec/quant_dec.c; sourceTree = ""; }; 57077BC8832B77EB3280A03E94418B43 /* tr.lproj */ = {isa = PBXFileReference; includeInIndex = 1; name = tr.lproj; path = "Objective-C/TOCropViewController/Resources/tr.lproj"; sourceTree = ""; }; - 5716A6D1621B8CE34399740BD56D3A5A /* BSG_KSCrashType.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashType.h; sourceTree = ""; }; - 57171E8592D216A0BCACF19A6FCE78FB /* RCTVirtualTextViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTVirtualTextViewManager.h; sourceTree = ""; }; - 571BAD26D9BC6F164E5EB00F633B8668 /* REAModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = REAModule.h; path = ios/REAModule.h; sourceTree = ""; }; - 57339AC3E4854CA0132274F301561DC6 /* RNCWebViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCWebViewManager.m; path = apple/RNCWebViewManager.m; sourceTree = ""; }; + 5718D65ACAFDA3E380A795D2213C9FD5 /* RCTKeyCommands.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTKeyCommands.h; sourceTree = ""; }; + 572103F624B2A243C03FD6DC981B5F04 /* RCTSurfaceView.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTSurfaceView.mm; sourceTree = ""; }; + 573404D65999E8662D177E005915F5FA /* RCTSurfaceHostingView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSurfaceHostingView.h; sourceTree = ""; }; 5737A805379DB8158A0D0548C1324DC8 /* ConnectionAcceptor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ConnectionAcceptor.h; path = rsocket/ConnectionAcceptor.h; sourceTree = ""; }; 5737DDB4BC95AD399B3206838AB97095 /* libRNCAsyncStorage.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libRNCAsyncStorage.a; path = libRNCAsyncStorage.a; sourceTree = BUILT_PRODUCTS_DIR; }; + 573A852C61AEA240A3CEBECB8EE12406 /* RCTConvert+RNNotifications.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "RCTConvert+RNNotifications.h"; path = "RNNotifications/RCTConvert+RNNotifications.h"; sourceTree = ""; }; 574E8A849B86DCF8EE5726418D974721 /* libEXWebBrowser.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libEXWebBrowser.a; path = libEXWebBrowser.a; sourceTree = BUILT_PRODUCTS_DIR; }; + 574F77FD0BFB0D8805DF0F6B18469D76 /* REANodesManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = REANodesManager.m; path = ios/REANodesManager.m; sourceTree = ""; }; 5777A47CB1785ED141BBA4A97C5ED417 /* SysTime.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SysTime.h; path = folly/portability/SysTime.h; sourceTree = ""; }; + 5779018A1CDB41D9CABB2FCFAC1227DD /* BridgeJSCallInvoker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = BridgeJSCallInvoker.h; path = callinvoker/ReactCommon/BridgeJSCallInvoker.h; sourceTree = ""; }; + 57826D5215B3A7BD6F723B49B7080785 /* RCTSliderManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSliderManager.h; sourceTree = ""; }; 57838D2006A1F401A3179B931C3A417F /* rc4.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = rc4.h; path = ios/include/openssl/rc4.h; sourceTree = ""; }; - 5787EFC5AEE0F00EE6CA2F88DF3F334D /* RCTSurfaceDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSurfaceDelegate.h; sourceTree = ""; }; - 578E76A091CE645BF475F243B3511735 /* RCTSurfaceRootShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSurfaceRootShadowView.h; sourceTree = ""; }; 578E7DE2903207C8DC9A9E617D70D24E /* PTChannel.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PTChannel.h; path = peertalk/PTChannel.h; sourceTree = ""; }; 57A2682F160B9C465AE15810B9B19680 /* Sse.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Sse.h; path = folly/detail/Sse.h; sourceTree = ""; }; 57B1BBC643E020C8DFA80AEB7F9E636A /* Pods-ShareRocketChatRN.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-ShareRocketChatRN.debug.xcconfig"; sourceTree = ""; }; - 57DC9EA4D5833A0806D27ADB335ED964 /* ARTBrush.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = ARTBrush.h; sourceTree = ""; }; - 57F56536E891B238679FB9405792E45F /* BSG_KSArchSpecific.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSArchSpecific.h; sourceTree = ""; }; + 57C51E509DBFDE9435124C87144D4DE9 /* UIButton+WebCache.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIButton+WebCache.m"; path = "SDWebImage/Core/UIButton+WebCache.m"; sourceTree = ""; }; + 57E822B1A9FA7DC3935F090255E3FE1C /* RNPinchHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNPinchHandler.m; sourceTree = ""; }; + 57F76DEC4BA22FD0CB95C78A9D7F80A5 /* RCTModalHostView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTModalHostView.m; sourceTree = ""; }; + 58052050747C3FE6DB77709BD5A8A66F /* RNNotificationUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNNotificationUtils.h; path = RNNotifications/RNNotificationUtils.h; sourceTree = ""; }; + 580AB02B6EC238E51579F77DFB232B3A /* RCTImageUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageUtils.h; path = Libraries/Image/RCTImageUtils.h; sourceTree = ""; }; 580CED7C9849AC631ED1934006A0AB0A /* FBLPromise+Wrap.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FBLPromise+Wrap.h"; path = "Sources/FBLPromises/include/FBLPromise+Wrap.h"; sourceTree = ""; }; - 5856E498F87DC64E56AF486736B65248 /* BugsnagPlugin.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagPlugin.h; sourceTree = ""; }; + 580F6E5E1D33658F91C91269E63E48B8 /* RCTTrackingAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTTrackingAnimatedNode.m; sourceTree = ""; }; + 582C2A4462B529E5726252F83E30AAFA /* EXAppleAuthentication-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "EXAppleAuthentication-dummy.m"; sourceTree = ""; }; + 58388C4E426361C1B7F11ABC6FDE5D68 /* RCTShadowView+Internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RCTShadowView+Internal.h"; sourceTree = ""; }; + 5845569959B014162BF3DBB71C0DC32A /* BSG_KSCrashSentry_CPPException.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashSentry_CPPException.h; sourceTree = ""; }; 5857793AC1B20D235A93893B55D4E024 /* vp8_dec.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = vp8_dec.h; path = src/dec/vp8_dec.h; sourceTree = ""; }; 5859B658E09A55DFE853367E281C57CE /* SocketFastOpen.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SocketFastOpen.h; path = folly/detail/SocketFastOpen.h; sourceTree = ""; }; + 585ED006419E0DFF75DA1CD7A2E2276A /* RNPinchHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNPinchHandler.h; sourceTree = ""; }; 586602EDE69E2D273945D156ECB89853 /* libPods-RocketChatRN.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libPods-RocketChatRN.a"; path = "libPods-RocketChatRN.a"; sourceTree = BUILT_PRODUCTS_DIR; }; 588CA1824CB3E799042E75E9D3023580 /* ts.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ts.h; path = ios/include/openssl/ts.h; sourceTree = ""; }; 58A8142F2BD32A0A573F388E0EB7C982 /* GDTCORTransformer_Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCORTransformer_Private.h; path = GoogleDataTransport/GDTCORLibrary/Private/GDTCORTransformer_Private.h; sourceTree = ""; }; - 58B93084D8745E5D0FB2F92B61D24F47 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; + 58B7613416711737F6538A479F793D7B /* RCTDatePickerManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTDatePickerManager.h; sourceTree = ""; }; 58CE32F77928341D12176EB9E0F9248A /* ConcurrentBitSet.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ConcurrentBitSet.h; path = folly/ConcurrentBitSet.h; sourceTree = ""; }; - 5910B455F2DD57F89C0663BA82E590FB /* RCTModuloAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTModuloAnimatedNode.m; sourceTree = ""; }; - 59149DB4D7BD69A028948BDB37206DF2 /* RNDeviceInfo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNDeviceInfo.h; path = ios/RNDeviceInfo/RNDeviceInfo.h; sourceTree = ""; }; + 58F8471DFBC5C0459C6050D44256A07A /* RCTSegmentedControlManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSegmentedControlManager.h; sourceTree = ""; }; + 591D38364EB8299172D9C086BC05B87E /* RNFirebasePerformance.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNFirebasePerformance.h; sourceTree = ""; }; 59211E17E611B8A20CE3C0D35EB995C4 /* TLSDefinitions.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TLSDefinitions.h; path = folly/io/async/ssl/TLSDefinitions.h; sourceTree = ""; }; + 594263C5F8C23C0F6549C3D357EAA8D9 /* SDAnimatedImageView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDAnimatedImageView.m; path = SDWebImage/Core/SDAnimatedImageView.m; sourceTree = ""; }; 59444F5F124341D5AD914F255E9BFF8F /* FrameSerializer_v1_0.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = FrameSerializer_v1_0.cpp; path = rsocket/framing/FrameSerializer_v1_0.cpp; sourceTree = ""; }; - 5954A915F296FDBAE51B798050C998FB /* UMBarCodeScannerInterface.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = UMBarCodeScannerInterface.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - 595D8F4E3C8DC70C61DEEE557893DE27 /* RCTImageLoader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageLoader.h; path = Libraries/Image/RCTImageLoader.h; sourceTree = ""; }; - 5962B2E1763F0298920CAE87F9F6365D /* RCTInspectorDevServerHelper.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTInspectorDevServerHelper.mm; sourceTree = ""; }; - 5963C665BE241CBBFBF347C93599A890 /* Feather.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = Feather.ttf; path = Fonts/Feather.ttf; sourceTree = ""; }; - 596AE8F30AA47CA16D08FE5E41198F0B /* react-native-orientation-locker.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = "react-native-orientation-locker.podspec"; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - 597D02897C3C579AA756348F14235739 /* SDAnimatedImageView+WebCache.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "SDAnimatedImageView+WebCache.m"; path = "SDWebImage/Core/SDAnimatedImageView+WebCache.m"; sourceTree = ""; }; + 596544AC58B464D81D296BF551C7A66C /* YGNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YGNode.h; path = yoga/YGNode.h; sourceTree = ""; }; 597EA40B78393D4EB5A9FCE335545FD9 /* CLSReport.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CLSReport.h; path = iOS/Crashlytics.framework/Headers/CLSReport.h; sourceTree = ""; }; - 59A38D76ECF6D3A2CF7979FB90B2B2E4 /* RCTAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTAnimatedNode.m; sourceTree = ""; }; 59B674B77C96C8B6F4087DDB5CE58ADD /* Flipper-RSocket.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Flipper-RSocket.xcconfig"; sourceTree = ""; }; - 59E809009F32F76F6EC89317B89936F2 /* RCTSafeAreaView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSafeAreaView.h; sourceTree = ""; }; + 59C0920E4C304B529F7BD975803B566E /* react-native-jitsi-meet.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "react-native-jitsi-meet.xcconfig"; sourceTree = ""; }; + 59D327E1F6566D942A5F35032664D5A9 /* RCTRefreshControl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTRefreshControl.h; sourceTree = ""; }; + 5A03C80D3D1ACD77DB9FD585D938955D /* ARTLinearGradient.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = ARTLinearGradient.m; sourceTree = ""; }; 5A0CD4826E47ADD06ECE185411BB6E03 /* ConnectionContextStore.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = ConnectionContextStore.cpp; path = xplat/Flipper/ConnectionContextStore.cpp; sourceTree = ""; }; - 5A21B730283D7A49ECA943EC16683056 /* BugsnagReactNative-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "BugsnagReactNative-dummy.m"; sourceTree = ""; }; - 5A3E41456E3005A4422ADF8711F097AF /* JsArgumentHelpers-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "JsArgumentHelpers-inl.h"; sourceTree = ""; }; - 5A4F53AB3445FE3C43E2B355A096F6D5 /* RNFirebaseAdMobBannerManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNFirebaseAdMobBannerManager.h; sourceTree = ""; }; + 5A5A0CD4572775BF0416EA4D83C07822 /* UMPermissionsInterface-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "UMPermissionsInterface-prefix.pch"; sourceTree = ""; }; 5A5DEB2B58509094B3E9E367677E5F22 /* SKMacros.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SKMacros.h; path = iOS/FlipperKit/SKMacros.h; sourceTree = ""; }; - 5A81C8324F3038F8CCD8CC6BD84FBE51 /* RCTBorderDrawing.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTBorderDrawing.m; sourceTree = ""; }; - 5A86E589764F933047B0A925C146591B /* JSIDynamic.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = JSIDynamic.h; sourceTree = ""; }; - 5A8E5DA5F58F53A59DF787F4DBDA183C /* RCTCxxUtils.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTCxxUtils.mm; sourceTree = ""; }; + 5A7DCFB3F575C0CBEB1478EE7B915259 /* RCTSinglelineTextInputViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSinglelineTextInputViewManager.h; sourceTree = ""; }; + 5A81CF38AF46EBBC47CC47C7C86B9B6C /* JSBigString.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = JSBigString.h; sourceTree = ""; }; + 5A8666C51AA970E98956600ECED8846D /* RNForceTouchHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNForceTouchHandler.m; sourceTree = ""; }; + 5A97357E1BB30BEA08AA2A2D702C5EE3 /* UIView+React.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "UIView+React.h"; sourceTree = ""; }; 5AB07D311516444EA0BAB4263D3B168B /* FirebaseCoreDiagnosticsInterop.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = FirebaseCoreDiagnosticsInterop.xcconfig; sourceTree = ""; }; 5ABEC9560BE067BBE7FBDF9DBE45B2F9 /* UIImage+CropRotate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIImage+CropRotate.h"; path = "Objective-C/TOCropViewController/Categories/UIImage+CropRotate.h"; sourceTree = ""; }; 5ACAACE3DEF9B42B05A7E23CB9EB6DEC /* cpu.c */ = {isa = PBXFileReference; includeInIndex = 1; name = cpu.c; path = src/dsp/cpu.c; sourceTree = ""; }; - 5AE8FFCD5A5113CC66524CC9F466CEB7 /* ARTPattern.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = ARTPattern.m; sourceTree = ""; }; - 5AEC85FB0ECEB95C270BBC108B611442 /* EXHapticsModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXHapticsModule.h; path = EXHaptics/EXHapticsModule.h; sourceTree = ""; }; + 5ACC6896DC9C198D03B1183295897EFC /* RNGestureHandlerButton.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNGestureHandlerButton.m; path = ios/RNGestureHandlerButton.m; sourceTree = ""; }; + 5AE5AD4D6E1120F59E6FCEBF55F3BD80 /* React-Core.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = "React-Core.podspec"; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; 5AFE1689B228874B6E1B0D1D4AB2D9BC /* FlipperDiagnosticsViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FlipperDiagnosticsViewController.h; path = iOS/FlipperKit/FlipperDiagnosticsViewController.h; sourceTree = ""; }; - 5B2843009ACC56D555D6CECDF3265A53 /* RCTImageShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTImageShadowView.m; sourceTree = ""; }; + 5B24F284A1BC4020648A52078D771409 /* SDImageCachesManagerOperation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageCachesManagerOperation.m; path = SDWebImage/Private/SDImageCachesManagerOperation.m; sourceTree = ""; }; 5B33486157295DFF710C44DBFAB9E184 /* FlipperClient.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FlipperClient.h; path = iOS/FlipperKit/FlipperClient.h; sourceTree = ""; }; 5B3357A1CE67C0BF4AE31936A1BE6888 /* libYogaKit.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libYogaKit.a; path = libYogaKit.a; sourceTree = BUILT_PRODUCTS_DIR; }; 5B4516089BB11FCA44421395E3EC6C69 /* SKHiddenWindow.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SKHiddenWindow.m; path = iOS/Plugins/FlipperKitLayoutPlugin/FlipperKitLayoutPlugin/utils/SKHiddenWindow.m; sourceTree = ""; }; + 5B54DCCBB9C9F5B553048183F574F9B2 /* UMReactNativeEventEmitter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = UMReactNativeEventEmitter.m; sourceTree = ""; }; 5B5B5E49B3D85486AD01FA8E1934BD85 /* ResumeIdentificationToken.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = ResumeIdentificationToken.cpp; path = rsocket/framing/ResumeIdentificationToken.cpp; sourceTree = ""; }; 5B5D09E4561934D0AB01334E07B5EC77 /* rescaler_mips32.c */ = {isa = PBXFileReference; includeInIndex = 1; name = rescaler_mips32.c; path = src/dsp/rescaler_mips32.c; sourceTree = ""; }; 5B5EE82E183F598BAD2EEFA16B129B91 /* SKTouch.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SKTouch.m; path = iOS/Plugins/FlipperKitLayoutPlugin/FlipperKitLayoutPlugin/SKTouch.m; sourceTree = ""; }; - 5B6158AB2550CBA102DCA35CC0DC2013 /* RCTImageBlurUtils.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTImageBlurUtils.m; sourceTree = ""; }; - 5B6435866EEF6A5BB90B65DE63BD83B3 /* EXLocalAuthentication-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "EXLocalAuthentication-prefix.pch"; sourceTree = ""; }; - 5B64365F2CE08876FF36A80AA1783DA8 /* KeyCommands.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = KeyCommands.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - 5B6D80A8766FB5EE8F0249FBC6411379 /* RCTTypeSafety-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RCTTypeSafety-prefix.pch"; sourceTree = ""; }; + 5B6B4BC02A816B7BBEDECAF405C0C1FB /* UMPermissionsMethodsDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMPermissionsMethodsDelegate.h; path = UMPermissionsInterface/UMPermissionsMethodsDelegate.h; sourceTree = ""; }; 5B72F9A54777D6A6FFE5D29E292165D7 /* LifoSemMPMCQueue.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = LifoSemMPMCQueue.h; path = folly/executors/task_queue/LifoSemMPMCQueue.h; sourceTree = ""; }; - 5B7F0E33C1B2FD4761AFBF32AF3615FB /* EXConstantsService.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXConstantsService.h; path = EXConstants/EXConstantsService.h; sourceTree = ""; }; 5B8476005BB20BAB7A14348616D03458 /* hmac.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = hmac.h; path = ios/include/openssl/hmac.h; sourceTree = ""; }; 5B9E38976963E0512130EB8028E09BAF /* evutil.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = evutil.h; path = src/evutil.h; sourceTree = ""; }; - 5BC8D48210994F43DAE85577F073A325 /* RCTImageUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageUtils.h; path = Libraries/Image/RCTImageUtils.h; sourceTree = ""; }; - 5BED72909D9D39B0BB048E44A539BCCF /* RCTPerformanceLogger.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTPerformanceLogger.h; sourceTree = ""; }; 5C091FB67164F621B15BB83DF4194BE7 /* TOCropViewController-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "TOCropViewController-dummy.m"; sourceTree = ""; }; - 5C14E98BA965F968CFF8E6D76B8CD33C /* RCTModalHostViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTModalHostViewController.h; sourceTree = ""; }; - 5C1C3620764CF08A1D6E8EAC6C0012F3 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; + 5C097A47FC864491F16FFB2F9B811822 /* BugsnagKSCrashSysInfoParser.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagKSCrashSysInfoParser.h; sourceTree = ""; }; + 5C1A144D95EBD4C91D6712702A1A230C /* React-RCTVibration.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = "React-RCTVibration.podspec"; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; 5C2795AF2B789927A411944CEFE2E4A9 /* GDTCCTUploader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCCTUploader.h; path = GoogleDataTransportCCTSupport/GDTCCTLibrary/Private/GDTCCTUploader.h; sourceTree = ""; }; - 5C2D2383D87C2AA4BF53D7569872A92E /* RCTRedBoxSetEnabled.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTRedBoxSetEnabled.h; sourceTree = ""; }; + 5C27A8387D44E157028D30D55AF1AC7D /* RNFirebaseDatabase.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNFirebaseDatabase.h; sourceTree = ""; }; 5C3D20E580F0CADC319B189ECC794295 /* Foreach-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "Foreach-inl.h"; path = "folly/container/Foreach-inl.h"; sourceTree = ""; }; - 5C4190CC70591447D20794606785FDE8 /* RCTImageDataDecoder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageDataDecoder.h; path = Libraries/Image/RCTImageDataDecoder.h; sourceTree = ""; }; + 5C52F6682F729545F3391BA73094232A /* UMSingletonModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMSingletonModule.h; path = UMCore/UMSingletonModule.h; sourceTree = ""; }; 5C5A558ACAC365E4FF1ED7A5F5182363 /* http_struct.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = http_struct.h; path = src/event2/http_struct.h; sourceTree = ""; }; 5C74E586D5AE077F987D557B3AB770A4 /* FIRComponentContainerInternal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRComponentContainerInternal.h; path = FirebaseCore/Sources/Private/FIRComponentContainerInternal.h; sourceTree = ""; }; - 5C756581AB88D6880122C38CC658BCB0 /* RCTTurboModule.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTTurboModule.mm; sourceTree = ""; }; - 5C90F222FC5C01B89F9E67EB26D92DE6 /* EXHaptics.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = EXHaptics.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - 5CA21ACF7962D1714E14223EB2D8BCDF /* en.lproj */ = {isa = PBXFileReference; includeInIndex = 1; name = en.lproj; path = ios/QBImagePicker/QBImagePicker/en.lproj; sourceTree = ""; }; - 5CE3DF498DAECCDBB770650734DEA869 /* RCTImageStoreManager.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTImageStoreManager.mm; sourceTree = ""; }; + 5C84CC67438080ABFCF66A533D7497CB /* RCTTransformAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTTransformAnimatedNode.m; sourceTree = ""; }; + 5C9A32219598A95DA7FD3946860DAC48 /* RNFirebaseCrashlytics.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNFirebaseCrashlytics.m; sourceTree = ""; }; + 5CA400AF4AA1898D16063CD1F4799A3F /* RCTAnimatedImage.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTAnimatedImage.h; path = Libraries/Image/RCTAnimatedImage.h; sourceTree = ""; }; + 5CBCE6689D73624EB52DC50A7A547061 /* RCTMultipartDataTask.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTMultipartDataTask.h; sourceTree = ""; }; + 5CCFF5CD2190A19D027A776722CA4AD3 /* RCTConvert.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTConvert.h; sourceTree = ""; }; + 5CE3EFC7D18F69D1E674D1A862A3C23E /* RNCSafeAreaProviderManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCSafeAreaProviderManager.m; path = ios/SafeAreaView/RNCSafeAreaProviderManager.m; sourceTree = ""; }; + 5CE8764C07B564BCC6BBF4259ABD13DD /* UMInternalModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMInternalModule.h; sourceTree = ""; }; 5D032924FB29978E9F59D492EF7813E6 /* Payload.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Payload.h; path = rsocket/Payload.h; sourceTree = ""; }; - 5D23D21EB4044F0DCF536F1F68A0615F /* RCTProgressViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTProgressViewManager.h; sourceTree = ""; }; - 5D2517773353E46D53822F93FCD03A52 /* UMReactNativeEventEmitter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMReactNativeEventEmitter.h; sourceTree = ""; }; - 5D2B02C30C03507A4EC318CD198E032A /* UMFontInterface.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMFontInterface.xcconfig; sourceTree = ""; }; - 5D43CF61D8784FE6287055564C6F9EB4 /* RCTBackedTextInputDelegateAdapter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTBackedTextInputDelegateAdapter.m; sourceTree = ""; }; - 5D5395056415CAF584F742E8375FDA75 /* REAClockNodes.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REAClockNodes.m; sourceTree = ""; }; - 5D7193CF5CA94828C6A59C143EB401FD /* RCTDevSettings.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTDevSettings.h; path = React/CoreModules/RCTDevSettings.h; sourceTree = ""; }; + 5D44C7DE7261D40B856C623576AFF1E9 /* UMSingletonModule.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = UMSingletonModule.m; path = UMCore/UMSingletonModule.m; sourceTree = ""; }; + 5D44CB68D2C1F519B6A1C0718671A946 /* rn-fetch-blob.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = "rn-fetch-blob.podspec"; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 5D5FF0C31960268F09B44977A369A259 /* RCTView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTView.m; sourceTree = ""; }; 5D82F2C393E23EC158471DF71457891E /* SKViewControllerDescriptor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SKViewControllerDescriptor.h; path = iOS/Plugins/FlipperKitLayoutPlugin/FlipperKitLayoutPlugin/descriptors/SKViewControllerDescriptor.h; sourceTree = ""; }; 5D930C8097F51F6E54956A6D4D9DAA8A /* SKObject.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = SKObject.mm; path = iOS/Plugins/FlipperKitLayoutPlugin/FlipperKitLayoutPlugin/SKObject.mm; sourceTree = ""; }; - 5DAE76D5E6A4A89DDADCBA7C79C9D2F9 /* RNVectorIcons.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RNVectorIcons.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 5DDB7A090167C17F85864AD113A501C6 /* EXConstants-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "EXConstants-prefix.pch"; sourceTree = ""; }; + 5DEF112859E8A98635A3519234ED4609 /* react-native-jitsi-meet-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "react-native-jitsi-meet-prefix.pch"; sourceTree = ""; }; 5E010882BE98A85E0CD8F121871D0AF5 /* AtomicUnorderedMap.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AtomicUnorderedMap.h; path = folly/AtomicUnorderedMap.h; sourceTree = ""; }; + 5E06CE2ACD9844827B676BB53E645921 /* de.lproj */ = {isa = PBXFileReference; includeInIndex = 1; name = de.lproj; path = ios/QBImagePicker/QBImagePicker/de.lproj; sourceTree = ""; }; + 5E3E1B3686FD88301EB36FFA941CE2C4 /* RNBootSplash.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RNBootSplash.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 5E3F476E74DD223B1A141DE6F15D76E9 /* RCTSettingsManager.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTSettingsManager.mm; sourceTree = ""; }; 5E4674603A5D5B9215FFA0F8E69F8B71 /* liblibwebp.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = liblibwebp.a; path = liblibwebp.a; sourceTree = BUILT_PRODUCTS_DIR; }; + 5E4D0ED6D8181AABC21FB1D6BDF44CBA /* UMKernelService.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMKernelService.h; sourceTree = ""; }; 5E61C8595E6BF0B87BDBC62507DE05D8 /* json_patch.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = json_patch.cpp; path = folly/json_patch.cpp; sourceTree = ""; }; + 5E678DA453BED12C85EC160E1227B75A /* React-RCTLinking.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-RCTLinking.xcconfig"; sourceTree = ""; }; 5E70FF84FAD05DBBCAD01E729DAE8311 /* TOCropView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = TOCropView.m; path = "Objective-C/TOCropViewController/Views/TOCropView.m"; sourceTree = ""; }; - 5E7CB605C99232859478956B9F5666B1 /* UMReactFontManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMReactFontManager.h; sourceTree = ""; }; 5E82C8E592B07968E3A2267B265BAE21 /* ThreadLocal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ThreadLocal.h; path = folly/ThreadLocal.h; sourceTree = ""; }; + 5E9164152232BD9BCA6DA1580B915619 /* YGFloatOptional.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YGFloatOptional.h; path = yoga/YGFloatOptional.h; sourceTree = ""; }; + 5E95CCB65EA66A6DA10DA4AC44B761D1 /* EXDownloadDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXDownloadDelegate.h; path = EXFileSystem/EXDownloadDelegate.h; sourceTree = ""; }; 5EB737C1B839F683C08D055F496DC54C /* CpuId.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CpuId.h; path = folly/CpuId.h; sourceTree = ""; }; 5EB89403ACA9BA2901EA4BB49F78A771 /* blowfish.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = blowfish.h; path = ios/include/openssl/blowfish.h; sourceTree = ""; }; - 5EE0EABCCC36003AE9A066A1311388C6 /* RCTSpringAnimation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSpringAnimation.m; sourceTree = ""; }; - 5EEBBF2B34ED0914BFAEA5DEDD08585C /* RecoverableError.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RecoverableError.h; sourceTree = ""; }; + 5EC7CEBFC323467AA850A03744CBE464 /* RNVectorIcons.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNVectorIcons.xcconfig; sourceTree = ""; }; + 5EF8A04887DBDC4DB6E94F8116E19F61 /* EXAudioRecordingPermissionRequester.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXAudioRecordingPermissionRequester.h; path = EXAV/EXAudioRecordingPermissionRequester.h; sourceTree = ""; }; 5EFE392A6969AF30D2B7B04742DEE6BA /* Malloc.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Malloc.h; path = folly/memory/Malloc.h; sourceTree = ""; }; - 5F010C588037ABA18A5891B2D87C817B /* react-native-appearance-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "react-native-appearance-prefix.pch"; sourceTree = ""; }; 5F0417945AB952A0C44A19AF56A8BCE9 /* GCDAsyncSocket.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GCDAsyncSocket.h; path = Source/GCD/GCDAsyncSocket.h; sourceTree = ""; }; 5F0E4A6A2028ED2E241F2C7F4B7F2627 /* GoogleUtilities-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "GoogleUtilities-dummy.m"; sourceTree = ""; }; 5F2C9D4A4102266BF3CBD25EF6756A16 /* Pods-RocketChatRN.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-RocketChatRN.debug.xcconfig"; sourceTree = ""; }; 5F49593BAECB2E8DA1B8BA33E680366E /* UIImage+WebP.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIImage+WebP.h"; path = "SDWebImageWebPCoder/Classes/UIImage+WebP.h"; sourceTree = ""; }; - 5F5E46E13226ECF39A9863F5EC501736 /* RNLocalize-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNLocalize-prefix.pch"; sourceTree = ""; }; - 5FAEB419F66E1976F7843B1EC7F1F451 /* RCTDivisionAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTDivisionAnimatedNode.h; sourceTree = ""; }; + 5F6F803080EC7233FE2E0366B906B720 /* DeviceUID.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DeviceUID.h; path = ios/RNDeviceInfo/DeviceUID.h; sourceTree = ""; }; + 5FA1E0760FEB7158C2E0A758440A7AB4 /* RNFirebaseAuth.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNFirebaseAuth.h; sourceTree = ""; }; + 5FB6901D181CD76F365D0B8CA453FCEB /* RNSScreenStackHeaderConfig.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNSScreenStackHeaderConfig.h; path = ios/RNSScreenStackHeaderConfig.h; sourceTree = ""; }; 5FD15DBC020C66E3FA510D822817AE79 /* SDWebImageWebPCoder-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "SDWebImageWebPCoder-dummy.m"; sourceTree = ""; }; - 5FD47A2CFA0C7E037D8822F94D6775F8 /* QBVideoIconView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = QBVideoIconView.h; path = ios/QBImagePicker/QBImagePicker/QBVideoIconView.h; sourceTree = ""; }; - 5FF124BFE4789E564508AA5A571693E7 /* DeviceUID.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DeviceUID.h; path = ios/RNDeviceInfo/DeviceUID.h; sourceTree = ""; }; + 5FDF0B99E17104D8D42E24B93857C087 /* BSG_KSMach_x86_32.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSMach_x86_32.c; sourceTree = ""; }; 5FF7FFBB3A1C00A5DFABFDDDE2BBEE7F /* TOCropToolbar.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TOCropToolbar.h; path = "Objective-C/TOCropViewController/Views/TOCropToolbar.h"; sourceTree = ""; }; - 5FFF96ABF69D0252C424846E63667455 /* UMAppRecordInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMAppRecordInterface.h; sourceTree = ""; }; 6004474FF0FF4E8ADF74104D607D5934 /* FlipperCppBridgingConnection.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FlipperCppBridgingConnection.h; path = iOS/FlipperKit/CppBridge/FlipperCppBridgingConnection.h; sourceTree = ""; }; - 60124DCD1F20F3DFE9902D3F831F0CFA /* UIView+React.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "UIView+React.h"; sourceTree = ""; }; - 6029FFF1B1A0E895DC80EC2F2BD7646E /* Octicons.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = Octicons.ttf; path = Fonts/Octicons.ttf; sourceTree = ""; }; - 60446DD3F09C36183FC3DA8D35698A06 /* jsi.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = jsi.cpp; sourceTree = ""; }; + 602ED221728EAF1F970B09A19C83C3EA /* JSIExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = JSIExecutor.h; path = jsireact/JSIExecutor.h; sourceTree = ""; }; 605E9B6EC7A5EF37450BA6FA70F98A66 /* yuv_mips_dsp_r2.c */ = {isa = PBXFileReference; includeInIndex = 1; name = yuv_mips_dsp_r2.c; path = src/dsp/yuv_mips_dsp_r2.c; sourceTree = ""; }; - 6060942BEAD2B3B29663F1F50D7605DD /* RCTConvert+UIBackgroundFetchResult.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RCTConvert+UIBackgroundFetchResult.h"; sourceTree = ""; }; - 6080F667BA4C8DBB344B350BA981E929 /* RCTTurboModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTurboModule.h; sourceTree = ""; }; - 60858CE18B6F41A28DF33F05A605755F /* FBReactNativeSpec-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "FBReactNativeSpec-dummy.m"; sourceTree = ""; }; + 6064C286A06D68E762BC7DBF84D30658 /* UIButton+WebCache.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIButton+WebCache.h"; path = "SDWebImage/Core/UIButton+WebCache.h"; sourceTree = ""; }; 60864668903F87449140FEED016C1B7F /* Fabric.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Fabric.framework; path = iOS/Fabric.framework; sourceTree = ""; }; 609182AADFCFFF5EC31D39948B09EF59 /* YogaKit-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "YogaKit-dummy.m"; sourceTree = ""; }; - 60B2F43322E7CC4D115FE92140100910 /* RNCSliderManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCSliderManager.h; path = ios/RNCSliderManager.h; sourceTree = ""; }; - 60BC1B16DBA95BF0B4A0A58D8D19924C /* react-native-orientation-locker-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "react-native-orientation-locker-dummy.m"; sourceTree = ""; }; + 609FB1F9A3F3610061E577D5F90A57BA /* RCTMultilineTextInputView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTMultilineTextInputView.h; sourceTree = ""; }; 60C7AC777D7686D0B925D58101A27EF7 /* FrameType.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = FrameType.cpp; path = rsocket/framing/FrameType.cpp; sourceTree = ""; }; - 60CEF74DE427937C7D1DF1E267410A4C /* UMMagnetometerInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMMagnetometerInterface.h; path = UMSensorsInterface/UMMagnetometerInterface.h; sourceTree = ""; }; + 60CE2DB18C78571E37CA81E831D99F3D /* TurboModuleBinding.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = TurboModuleBinding.cpp; path = turbomodule/core/TurboModuleBinding.cpp; sourceTree = ""; }; + 60DF8A0824672D3D82D31FFA66C40175 /* UMModuleRegistryConsumer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMModuleRegistryConsumer.h; sourceTree = ""; }; + 60F5052B2993115C13F986CABC31AED6 /* CoreModulesPlugins.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = CoreModulesPlugins.mm; sourceTree = ""; }; 60F75F85D0E7CDC5F7A2C4E6A07D617C /* FIRErrors.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRErrors.m; path = FirebaseCore/Sources/FIRErrors.m; sourceTree = ""; }; + 60F8CD471528CA1B2153C497681181DF /* RCTModalHostView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTModalHostView.h; sourceTree = ""; }; 6119ED8AAB4AB85F6BAA8F27EB5C2C2A /* IOThreadPoolExecutor.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = IOThreadPoolExecutor.cpp; path = folly/executors/IOThreadPoolExecutor.cpp; sourceTree = ""; }; - 61227F156D2BAF36E0807BBD1DBC487C /* Instance.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = Instance.cpp; sourceTree = ""; }; - 612968A96E8A41623D518BAAAAC894B7 /* RCTConvertHelpers.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTConvertHelpers.h; sourceTree = ""; }; - 612BBADAE25F5CC04DCF32929D459F74 /* RCTBaseTextInputView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTBaseTextInputView.m; sourceTree = ""; }; 613E052C86A7302C7BFEC7FE9FE084AE /* STTimerFDTimeoutManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = STTimerFDTimeoutManager.h; path = folly/experimental/STTimerFDTimeoutManager.h; sourceTree = ""; }; - 61641261A2D33040F051EBEF497D174F /* RNGestureHandlerDirection.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNGestureHandlerDirection.h; path = ios/RNGestureHandlerDirection.h; sourceTree = ""; }; + 6150911CCFCD0DF7E5A2BA107C5E1472 /* RCTActivityIndicatorView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTActivityIndicatorView.m; sourceTree = ""; }; + 61555E5E0F798D1371B9A807803E31E1 /* JSDeltaBundleClient.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = JSDeltaBundleClient.cpp; sourceTree = ""; }; 6165E3EDCE7024C4D5FE7EEBEBA2F169 /* bit_writer_utils.c */ = {isa = PBXFileReference; includeInIndex = 1; name = bit_writer_utils.c; path = src/utils/bit_writer_utils.c; sourceTree = ""; }; - 617926486224D0C074E090159BA81200 /* RNDateTimePicker-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNDateTimePicker-dummy.m"; sourceTree = ""; }; + 6166E13FD35F32C6E8BD2FA170A2C4AF /* es.lproj */ = {isa = PBXFileReference; includeInIndex = 1; name = es.lproj; path = ios/QBImagePicker/QBImagePicker/es.lproj; sourceTree = ""; }; 618261D3DCB248A7327BF46578D22BCD /* Tearable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Tearable.h; path = folly/synchronization/Tearable.h; sourceTree = ""; }; + 618FE908C3F774F89089B1A1A0D1E4E7 /* RCTLogBox.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTLogBox.h; path = React/CoreModules/RCTLogBox.h; sourceTree = ""; }; 6196966892C9BE70A8483E42D92929AF /* Random-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "Random-inl.h"; path = "folly/Random-inl.h"; sourceTree = ""; }; + 61A641D30E03AD12C038341E2E7DEED1 /* SDWebImage.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = SDWebImage.xcconfig; sourceTree = ""; }; + 61AC145B5EE6989D9E5570F2D41E648E /* SDAnimatedImage.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDAnimatedImage.h; path = SDWebImage/Core/SDAnimatedImage.h; sourceTree = ""; }; + 61B63056811F93094D9AFA2233F13D5D /* UMImageLoaderInterface.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = UMImageLoaderInterface.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; 61D5E721D9C1729F310815E536BD7612 /* upsampling.c */ = {isa = PBXFileReference; includeInIndex = 1; name = upsampling.c; path = src/dsp/upsampling.c; sourceTree = ""; }; + 61E428D9FD42017082055B0D52355133 /* JSBundleType.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = JSBundleType.h; sourceTree = ""; }; 61F182CDA20E77EAFB69C3206A207326 /* Varint.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Varint.h; path = folly/Varint.h; sourceTree = ""; }; + 61FFFEA945BB4074669BE0FC675DB87D /* RCTInputAccessoryViewContent.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTInputAccessoryViewContent.h; sourceTree = ""; }; + 6218F903901039453CE958BDA4DA217B /* RCTImageStoreManager.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTImageStoreManager.mm; sourceTree = ""; }; + 6232CFE8A5FED9D0E581F5B00179C313 /* react-native-webview-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "react-native-webview-dummy.m"; sourceTree = ""; }; 6234151CD15BC62EA675A7907B1AE6C3 /* BitVectorCoding.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = BitVectorCoding.h; path = folly/experimental/BitVectorCoding.h; sourceTree = ""; }; - 623682EDC77E46A028080B8E884FBEAA /* RCTBlobCollector.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTBlobCollector.mm; sourceTree = ""; }; - 62381861DE4FD973F0A21B9ACADB2F15 /* EXAppleAuthenticationMappings.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXAppleAuthenticationMappings.m; path = EXAppleAuthentication/EXAppleAuthenticationMappings.m; sourceTree = ""; }; 624112E646914E16C271BDFBEBF5372D /* FBLPromise+Await.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "FBLPromise+Await.m"; path = "Sources/FBLPromises/FBLPromise+Await.m"; sourceTree = ""; }; 624A41185B51C7BF36CC977BA267FF6C /* MemoryResource.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MemoryResource.h; path = folly/memory/MemoryResource.h; sourceTree = ""; }; - 6258E6EF9E8CD1193204427CC6AFFC6E /* RCTRefreshControl.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTRefreshControl.m; sourceTree = ""; }; 627B5FF7FBF91A6DEA0D71B1A3E12DBF /* Flipper-Folly-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Flipper-Folly-prefix.pch"; sourceTree = ""; }; - 62846AD2796D14779D9E039E090C56FF /* Fontisto.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = Fontisto.ttf; path = Fonts/Fontisto.ttf; sourceTree = ""; }; + 62B3DC410786505577F4FF8CBE63EF60 /* JSExecutor.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = JSExecutor.cpp; sourceTree = ""; }; 62B6DE4D2D46CFDBBE1E1CE8DD67B7E4 /* SKNamed.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SKNamed.h; path = iOS/Plugins/FlipperKitLayoutPlugin/FlipperKitLayoutPlugin/SKNamed.h; sourceTree = ""; }; 62B8EF8AF12E78C2AF1A636E291CB5C5 /* AsyncSignalHandler.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = AsyncSignalHandler.cpp; path = folly/io/async/AsyncSignalHandler.cpp; sourceTree = ""; }; 62DEF63856225090BFBE8B15840B9FAF /* GULSwizzler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULSwizzler.h; path = GoogleUtilities/MethodSwizzler/Private/GULSwizzler.h; sourceTree = ""; }; 62E41265E83423F7653CB43B816218D3 /* ScheduledExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ScheduledExecutor.h; path = folly/executors/ScheduledExecutor.h; sourceTree = ""; }; 62E800E6D8B687A321154741B20EE305 /* StreamStateMachineBase.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = StreamStateMachineBase.h; path = rsocket/statemachine/StreamStateMachineBase.h; sourceTree = ""; }; + 62F5544F3B0E6E40B0BE63A40E428E64 /* RCTTextView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTTextView.m; sourceTree = ""; }; 62F8ACF7B212F46D44231884C7929C5F /* TcpConnectionAcceptor.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = TcpConnectionAcceptor.cpp; path = rsocket/transports/tcp/TcpConnectionAcceptor.cpp; sourceTree = ""; }; - 630E4D6E25D676B51822CBF1F082FDB8 /* SDFileAttributeHelper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDFileAttributeHelper.h; path = SDWebImage/Private/SDFileAttributeHelper.h; sourceTree = ""; }; 631395FF074A61F59CD06E7617BBDB84 /* FrameTransportImpl.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = FrameTransportImpl.cpp; path = rsocket/framing/FrameTransportImpl.cpp; sourceTree = ""; }; - 631EE7042AECD78F7ADF02C610C56469 /* ModuleRegistry.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = ModuleRegistry.h; sourceTree = ""; }; + 6316AB30742F032AA69752ABB984A17C /* UIView+WebCacheOperation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIView+WebCacheOperation.h"; path = "SDWebImage/Core/UIView+WebCacheOperation.h"; sourceTree = ""; }; 631F1241AC9687C84BEA7F2B9A6BB421 /* lossless_enc_msa.c */ = {isa = PBXFileReference; includeInIndex = 1; name = lossless_enc_msa.c; path = src/dsp/lossless_enc_msa.c; sourceTree = ""; }; - 63738A7284C8997966EA3B6F6B1C94BE /* ReactNativeKeyboardTrackingView.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = ReactNativeKeyboardTrackingView.xcconfig; sourceTree = ""; }; - 6373D9E4E8F697C98D3DBA57A8DBF2AD /* React-RCTImage.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = "React-RCTImage.podspec"; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - 63BDBC2D3708BDA03D43E9A7001DDB9D /* RCTModalManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTModalManager.m; sourceTree = ""; }; - 63BDC72996A2EA0EC90A0E5F2AA1AF7F /* react-native-background-timer.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = "react-native-background-timer.podspec"; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - 63CA347E5BAE58E1D36EB34AFEE1CFB0 /* RCTDataRequestHandler.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTDataRequestHandler.mm; sourceTree = ""; }; - 63CC07745CC112A9D0FD8C382B2E4996 /* RCTFrameUpdate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTFrameUpdate.h; sourceTree = ""; }; + 63285016609FF49B863E4ED8B264A4DF /* RNFirebaseLinks.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNFirebaseLinks.m; sourceTree = ""; }; + 6348A4ACAEE5E3271B1A6A9A7DAA9154 /* RNFirebaseFunctions.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNFirebaseFunctions.h; sourceTree = ""; }; + 6365446E5C18E379A60C23BE3F13AB88 /* RCTProfile.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTProfile.m; sourceTree = ""; }; + 63C0A91F2F4B8DE1D11850DA84A079BA /* UMFileSystemInterface.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = UMFileSystemInterface.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 63C4048F1F829AFE0D7EC218751ADD96 /* BugsnagReactNative.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = BugsnagReactNative.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; 63E30E444F516DDBA667711E50C18E59 /* SKDispatchQueue.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SKDispatchQueue.h; path = iOS/Plugins/FlipperKitNetworkPlugin/FlipperKitNetworkPlugin/SKDispatchQueue.h; sourceTree = ""; }; + 63E70F26A8FB2CEAA22A6D9C2F418FB1 /* React-RCTLinking.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = "React-RCTLinking.podspec"; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; 63F076E7C50525BFB4FB6EEF79614807 /* InlineFunctionRef.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = InlineFunctionRef.h; path = folly/synchronization/detail/InlineFunctionRef.h; sourceTree = ""; }; - 643C99E95EE10C5CE0A53CA23B7D7076 /* RCTUIUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTUIUtils.h; sourceTree = ""; }; 6443C7E41F5A8260ADC4DBB27F17EBC9 /* ssim_sse2.c */ = {isa = PBXFileReference; includeInIndex = 1; name = ssim_sse2.c; path = src/dsp/ssim_sse2.c; sourceTree = ""; }; 645A304930AEEC1F7191E3748AA175E3 /* FKTextSearchable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FKTextSearchable.h; path = iOS/Plugins/FlipperKitLayoutPlugin/FlipperKitLayoutTextSearchable/FKTextSearchable.h; sourceTree = ""; }; - 6473A1A5035B1F43BB549E01BEF8EB93 /* RNVectorIcons-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNVectorIcons-dummy.m"; sourceTree = ""; }; 647DE010DF17177D28FF92F6894ACD97 /* whrlpool.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = whrlpool.h; path = ios/include/openssl/whrlpool.h; sourceTree = ""; }; - 648C3C9B39B77082CA8AE80E2173EBD5 /* RNNotificationCenter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNNotificationCenter.h; path = RNNotifications/RNNotificationCenter.h; sourceTree = ""; }; - 64BA0011B0C78B7C1CA671E856C9A559 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; + 64837325DA9D6A7135EAB9B8DE48E7E6 /* EXPermissions.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXPermissions.m; path = EXPermissions/EXPermissions.m; sourceTree = ""; }; + 64854B520FC94F5B351A4D57F4BD9CFD /* KeyCommands.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = KeyCommands.xcconfig; sourceTree = ""; }; 64C33B2B0FAA72A88AC1771F62837830 /* OpenSSLUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = OpenSSLUtils.h; path = folly/io/async/ssl/OpenSSLUtils.h; sourceTree = ""; }; 64DD08219E980D9E770DFBC6257F8F08 /* Synchronized.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Synchronized.h; path = folly/Synchronized.h; sourceTree = ""; }; - 64E354D0B781F4A56820F61138A82ACF /* RNFirebaseNotifications.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNFirebaseNotifications.m; sourceTree = ""; }; 64E56B2614F5D42FF65FA87F764AD690 /* FBLPromise+Testing.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "FBLPromise+Testing.m"; path = "Sources/FBLPromises/FBLPromise+Testing.m"; sourceTree = ""; }; - 64E7F1F10D01964468F070DE8D4DF3A6 /* RCTScrollEvent.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTScrollEvent.h; sourceTree = ""; }; 65234B3E668A42D9137B2C7AB051EE37 /* libFlipperKit.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libFlipperKit.a; path = libFlipperKit.a; sourceTree = BUILT_PRODUCTS_DIR; }; 652C6468FA0798C97AF94D97EEA5B6DA /* UIView+SKInvalidation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIView+SKInvalidation.h"; path = "iOS/Plugins/FlipperKitLayoutPlugin/FlipperKitLayoutPlugin/UIView+SKInvalidation.h"; sourceTree = ""; }; - 653690A988FDAE65DF8631ABF83513FB /* ARTNodeManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = ARTNodeManager.m; sourceTree = ""; }; 654096F18052159CAC94442BFB18309E /* safestack.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = safestack.h; path = ios/include/openssl/safestack.h; sourceTree = ""; }; - 65452C3A8D28695AB45DB372121151EA /* React-RCTText-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-RCTText-prefix.pch"; sourceTree = ""; }; 6549206A02B2CB128166634A1466CF38 /* FIRDiagnosticsData.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRDiagnosticsData.h; path = FirebaseCore/Sources/Private/FIRDiagnosticsData.h; sourceTree = ""; }; - 65AF201D1A2210CCBBA39FB03570C461 /* SystraceSection.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = SystraceSection.h; sourceTree = ""; }; + 6582FB6679770ECE60F64859D4EAD7EF /* RCTLayoutAnimation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTLayoutAnimation.h; sourceTree = ""; }; + 6593EFE3ED56BECBC63BBC8141AEC958 /* UMModuleRegistryProvider.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMModuleRegistryProvider.h; sourceTree = ""; }; + 65A8DB6AFE39F2A7B99B1F4F48ED63D7 /* RCTCustomInputController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTCustomInputController.m; sourceTree = ""; }; 65B0BB45DB99449B9171F3AE48FF2758 /* Pods-RocketChatRN.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = "Pods-RocketChatRN.modulemap"; sourceTree = ""; }; + 65BEB90BE7B53E88E5BBB269DB4117BE /* RCTLinkingPlugins.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTLinkingPlugins.mm; sourceTree = ""; }; 65D0A19C165FA1126B1360680FE6DB12 /* libYoga.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libYoga.a; path = libYoga.a; sourceTree = BUILT_PRODUCTS_DIR; }; 65D3CD29CCCF80F74B831E34B4DB49BC /* ChannelRequester.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ChannelRequester.h; path = rsocket/statemachine/ChannelRequester.h; sourceTree = ""; }; - 65D682C26CA14926B14CC0283B7F7337 /* EXFileSystemAssetLibraryHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXFileSystemAssetLibraryHandler.h; path = EXFileSystem/EXFileSystemAssetLibraryHandler.h; sourceTree = ""; }; - 65DC7EBD28B2C650FBDC9581AB10F889 /* EXAppleAuthentication.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = EXAppleAuthentication.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - 65ED8E6D61F888582FD232F2EF962FE9 /* RCTScrollViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTScrollViewManager.m; sourceTree = ""; }; 66149099245ABA812984423B04B2B2E9 /* GULNetworkURLSession.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULNetworkURLSession.h; path = GoogleUtilities/Network/Private/GULNetworkURLSession.h; sourceTree = ""; }; - 663D2FB7BE11E42950372FC16A69A8DE /* RNFastImage.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNFastImage.xcconfig; sourceTree = ""; }; - 6648E271EB48C91A24CD30B895D7B530 /* RCTImageURLLoader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageURLLoader.h; path = Libraries/Image/RCTImageURLLoader.h; sourceTree = ""; }; - 664A19866F0F704D6D518F77B73F550F /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; + 6649BF50D876000CF02E5C42034F1878 /* SDWebImageDefine.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWebImageDefine.m; path = SDWebImage/Core/SDWebImageDefine.m; sourceTree = ""; }; 664A1E1DEBA57083FD1997F493C51AEB /* Fingerprint.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Fingerprint.h; path = folly/Fingerprint.h; sourceTree = ""; }; - 664B5DC0915CFC4E8AB867A5708297D9 /* RNForceTouchHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNForceTouchHandler.m; sourceTree = ""; }; 6660ADC5DF5B3E992EAE0C50FF7B9468 /* pqueue.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = pqueue.h; path = ios/include/openssl/pqueue.h; sourceTree = ""; }; + 6660FF36E9DF007812804E2479A90A67 /* FBLazyVector.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBLazyVector.h; path = FBLazyVector/FBLazyVector.h; sourceTree = ""; }; + 6669BBABA3CA6F813B03FA1C2B330DD1 /* RCTSinglelineTextInputView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSinglelineTextInputView.h; sourceTree = ""; }; 6676BE95A0304CF6A7BEB240331C4C8D /* AsyncSocket.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = AsyncSocket.cpp; path = folly/io/async/AsyncSocket.cpp; sourceTree = ""; }; 668B5E80E08960E464EB3C163D8D19AC /* SafeAssert.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = SafeAssert.cpp; path = folly/lang/SafeAssert.cpp; sourceTree = ""; }; + 6697DB0C2CED532AD0B53577480A84E3 /* UIImage+ExtendedCacheData.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIImage+ExtendedCacheData.h"; path = "SDWebImage/Core/UIImage+ExtendedCacheData.h"; sourceTree = ""; }; 66A0546317DA4C87DFE514042A8B1530 /* symbolize.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = symbolize.cc; path = src/symbolize.cc; sourceTree = ""; }; + 66A213075DBB0B320DB019C68BC2A999 /* RCTUIManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTUIManager.m; sourceTree = ""; }; 66AD95F396C13CE8EC124AA18BAFA3A6 /* 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 = ""; }; + 66B4ED8E409E95AAAAC1C14C121B3A4B /* RNCSafeAreaView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCSafeAreaView.m; path = ios/SafeAreaView/RNCSafeAreaView.m; sourceTree = ""; }; 66B721BD26A928F014758863ABC256CD /* Cursor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Cursor.h; path = folly/io/Cursor.h; sourceTree = ""; }; - 6702D43F6FF76BC785818390BF2715CF /* BSG_KSCrashDoctor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashDoctor.h; sourceTree = ""; }; - 6709F8F6033B97457E1E19BCF1304EB8 /* ARTSurfaceViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = ARTSurfaceViewManager.m; sourceTree = ""; }; + 66BC2755707DD9BBE0D3BCAC8B6E6314 /* EXImageLoader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXImageLoader.h; path = EXImageLoader/EXImageLoader.h; sourceTree = ""; }; + 66DA963474C6AB6CFAF8439678988D99 /* React-jsinspector.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-jsinspector.xcconfig"; sourceTree = ""; }; + 66E8ACA3FF16AACDD5AF0FC3E90339F8 /* RCTImageView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageView.h; path = Libraries/Image/RCTImageView.h; sourceTree = ""; }; + 66EA7B30251E087C9A48B9140A0D146F /* RNCAppearanceProviderManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCAppearanceProviderManager.h; path = ios/Appearance/RNCAppearanceProviderManager.h; sourceTree = ""; }; + 66FE20FFDA5F3ADA0C05B13BC7CAC482 /* RCTModalHostViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTModalHostViewController.m; sourceTree = ""; }; 67124FDA9468FB603B07247B6743BB45 /* FIROptions.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIROptions.h; path = FirebaseCore/Sources/Public/FIROptions.h; sourceTree = ""; }; - 6741F01CF2C988A856EB20335F1192E4 /* RCTFPSGraph.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTFPSGraph.m; sourceTree = ""; }; + 672173E61524AEE9DFD81B5C96A4C854 /* ReactNativeKeyboardInput-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "ReactNativeKeyboardInput-prefix.pch"; sourceTree = ""; }; + 673CA4162C4C9FD06D79A99C02149D2F /* RNFirebaseFirestoreCollectionReference.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNFirebaseFirestoreCollectionReference.h; sourceTree = ""; }; 674EC145D39681FBE369F624154EC4BD /* Subscription.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = Subscription.cpp; path = yarpl/observable/Subscription.cpp; sourceTree = ""; }; - 675B2C2AFE90C3AE02FB47A8366ECCD7 /* RCTI18nManager.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTI18nManager.mm; sourceTree = ""; }; 675B3C63734646BDAEB1A3033BC02E0B /* strtod.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = strtod.h; path = "double-conversion/strtod.h"; sourceTree = ""; }; + 675C095EBCEA9AD4F768FCF263B6F1B5 /* en.lproj */ = {isa = PBXFileReference; includeInIndex = 1; name = en.lproj; path = ios/QBImagePicker/QBImagePicker/en.lproj; sourceTree = ""; }; 676F49740B7638DB7B74741C75D2C906 /* ThreadedExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ThreadedExecutor.h; path = folly/executors/ThreadedExecutor.h; sourceTree = ""; }; 6771D231F4C8C5976470A369C474B32E /* libReact-CoreModules.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libReact-CoreModules.a"; path = "libReact-CoreModules.a"; sourceTree = BUILT_PRODUCTS_DIR; }; 6775920A939C775EF8140BAA7F286927 /* FBLPromise+Do.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FBLPromise+Do.h"; path = "Sources/FBLPromises/include/FBLPromise+Do.h"; sourceTree = ""; }; - 67919E9EA3B4D9F98265CA9D9D1E588E /* RNCAsyncStorage-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNCAsyncStorage-dummy.m"; sourceTree = ""; }; 679C3B0E29078B260151C3AA2C69F65A /* FrameFlags.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FrameFlags.h; path = rsocket/framing/FrameFlags.h; sourceTree = ""; }; + 679F1C294EE4D54382BF793EEED1ABFA /* UIImage+MemoryCacheCost.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIImage+MemoryCacheCost.m"; path = "SDWebImage/Core/UIImage+MemoryCacheCost.m"; sourceTree = ""; }; + 67A2DD1D2920C3953254B39BCF61227E /* RCTCxxMethod.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTCxxMethod.mm; sourceTree = ""; }; + 67A8DB554686638B37240B1872C5680F /* react-native-orientation-locker-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "react-native-orientation-locker-dummy.m"; sourceTree = ""; }; 67BC50D5F96759CF85CF5669EF447234 /* SingletonRelaxedCounter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SingletonRelaxedCounter.h; path = folly/experimental/SingletonRelaxedCounter.h; sourceTree = ""; }; 67CD612C014867DB8E85484626A95ED3 /* mux_types.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = mux_types.h; path = src/webp/mux_types.h; sourceTree = ""; }; - 67DE68077134FE64C136C6E93320E3E3 /* RCTProfileTrampoline-x86_64.S */ = {isa = PBXFileReference; includeInIndex = 1; path = "RCTProfileTrampoline-x86_64.S"; sourceTree = ""; }; - 67F39C23F14E1B6B3DD1CDCE99A24B17 /* RCTManagedPointer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTManagedPointer.h; sourceTree = ""; }; + 67D3491ABDB10FBA04D260AC4457D3A9 /* BSG_KSJSONCodecObjC.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSJSONCodecObjC.h; sourceTree = ""; }; 6805DE197591C9AC28E161890AED1AA5 /* pem.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = pem.h; path = ios/include/openssl/pem.h; sourceTree = ""; }; - 68412A060E9246180930483E6972D374 /* EXFileSystem.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = EXFileSystem.xcconfig; sourceTree = ""; }; 68858AAD305821B0E28BAA93C995B30C /* QuotientMultiSet.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = QuotientMultiSet.h; path = folly/experimental/QuotientMultiSet.h; sourceTree = ""; }; - 688D0ABC174C6A9DB209984CF35D97C7 /* FBReactNativeSpec-generated.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = "FBReactNativeSpec-generated.mm"; path = "FBReactNativeSpec/FBReactNativeSpec-generated.mm"; sourceTree = ""; }; 688F773A73569EE7691493F2EC65617B /* MallocImpl.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = MallocImpl.cpp; path = folly/memory/detail/MallocImpl.cpp; sourceTree = ""; }; 6895A751BF74448383933A3B163C1BC0 /* GULSwizzler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GULSwizzler.m; path = GoogleUtilities/MethodSwizzler/GULSwizzler.m; sourceTree = ""; }; 68A2B6B12D5A32210F704BEAC122B28B /* lossless_neon.c */ = {isa = PBXFileReference; includeInIndex = 1; name = lossless_neon.c; path = src/dsp/lossless_neon.c; sourceTree = ""; }; + 68A7667113C27C43A8AE50CDE437706A /* REABlockNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REABlockNode.m; sourceTree = ""; }; 68B146EB7416457F99A444AAF1974359 /* libwebp-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "libwebp-prefix.pch"; sourceTree = ""; }; + 68CB741F2F5B84BBA0F11CE1031DF816 /* RNPushKitEventListener.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNPushKitEventListener.m; path = RNNotifications/RNPushKitEventListener.m; sourceTree = ""; }; + 68CFD377B2521C3971DB87126F7E1D9E /* RCTDatePicker.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTDatePicker.m; sourceTree = ""; }; + 68E366A8676F4931B436DC3BCB3205A3 /* REAPropsNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REAPropsNode.m; sourceTree = ""; }; 68E5254C82058DBBEE477F7056BA9159 /* ecdsa.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ecdsa.h; path = ios/include/openssl/ecdsa.h; sourceTree = ""; }; - 68E5C1887F6952E167CC07F80FD866E3 /* React-jsinspector.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = "React-jsinspector.podspec"; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - 68F052FA093CABB36D1690961D6FAD17 /* ARTNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ARTNode.h; path = ios/ARTNode.h; sourceTree = ""; }; - 690389F5E10DA39DE49214507DD19D78 /* RNCSafeAreaViewEdges.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCSafeAreaViewEdges.h; path = ios/SafeAreaView/RNCSafeAreaViewEdges.h; sourceTree = ""; }; - 693FF7F5A48A54001372327577F4738F /* FontAwesome5_Brands.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = FontAwesome5_Brands.ttf; path = Fonts/FontAwesome5_Brands.ttf; sourceTree = ""; }; + 69040346FE87DD94EE03D0CA2DAD94DE /* RCTImageShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTImageShadowView.m; sourceTree = ""; }; + 6909042DFF19168DA427F9C7AB105438 /* RNFetchBlobFS.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNFetchBlobFS.h; path = ios/RNFetchBlobFS.h; sourceTree = ""; }; 6942351307BC1F54575D9853307EAE0E /* libGoogleDataTransportCCTSupport.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libGoogleDataTransportCCTSupport.a; path = libGoogleDataTransportCCTSupport.a; sourceTree = BUILT_PRODUCTS_DIR; }; 6955C48EABE0EBB9C60FBB6187DD382A /* ExecutionObserver.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ExecutionObserver.h; path = folly/experimental/ExecutionObserver.h; sourceTree = ""; }; - 696068ADA8823D325D81CEAB7E79445A /* Entypo.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = Entypo.ttf; path = Fonts/Entypo.ttf; sourceTree = ""; }; + 69624FADA2965423910E0A13E16D897F /* RNRotationHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNRotationHandler.m; sourceTree = ""; }; + 6966F7D983FC80CC395542046F2CBC5C /* QBSlomoIconView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = QBSlomoIconView.h; path = ios/QBImagePicker/QBImagePicker/QBSlomoIconView.h; sourceTree = ""; }; + 69791ED58D01EC75AF5ACE94AE02C55F /* UMGyroscopeInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMGyroscopeInterface.h; path = UMSensorsInterface/UMGyroscopeInterface.h; sourceTree = ""; }; 6986A52F049BD7E2BA8F71F30C9127CD /* GoogleAppMeasurement.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = GoogleAppMeasurement.xcconfig; sourceTree = ""; }; - 6986DCB9B08399021A0D79977F8DD2AD /* BSG_KSCrashReportFields.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashReportFields.h; sourceTree = ""; }; - 6988A2C472E936589B7F837072850348 /* RCTVirtualTextShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTVirtualTextShadowView.m; sourceTree = ""; }; 698C0710B8188D80CF6B32152311BB47 /* bn.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = bn.h; path = ios/include/openssl/bn.h; sourceTree = ""; }; 6995201D39391D5D46F8A69770F753F7 /* VirtualEventBase.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = VirtualEventBase.h; path = folly/io/async/VirtualEventBase.h; sourceTree = ""; }; + 699B7632AC09FCB0701F60DB2E4C7967 /* jsi.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = jsi.h; sourceTree = ""; }; 699E3A51920E2B9318649B379A34C156 /* InlineExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = InlineExecutor.h; path = folly/executors/InlineExecutor.h; sourceTree = ""; }; + 69A2F3EC12693E34204C481C3C8E7977 /* RNNotificationCenter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNNotificationCenter.h; path = RNNotifications/RNNotificationCenter.h; sourceTree = ""; }; 69A63582A04ADFDDCE6B008A3EB6E211 /* ko.lproj */ = {isa = PBXFileReference; includeInIndex = 1; name = ko.lproj; path = "Objective-C/TOCropViewController/Resources/ko.lproj"; sourceTree = ""; }; - 69AE13D23811D322D270415DA06E5638 /* UMCameraInterface.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMCameraInterface.xcconfig; sourceTree = ""; }; - 69BD22B376ED5AF2061DF89B1D183BBB /* NSButton+WebCache.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSButton+WebCache.h"; path = "SDWebImage/Core/NSButton+WebCache.h"; sourceTree = ""; }; + 69AF65151DFEC6F1BA50B5CD3C49228E /* EXAppleAuthentication-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "EXAppleAuthentication-prefix.pch"; sourceTree = ""; }; 69E6D9CA54094F8E719FDFC96C7C72E6 /* ebcdic.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ebcdic.h; path = ios/include/openssl/ebcdic.h; sourceTree = ""; }; - 69E84637B197F201A5C192376A7F6D80 /* SDImageGIFCoder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageGIFCoder.h; path = SDWebImage/Core/SDImageGIFCoder.h; sourceTree = ""; }; + 69EEC607DDAB4D884B6BC34D8A040FA4 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; + 69EEC8D0BE82BAE2C416C772018A2ACF /* MethodCall.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = MethodCall.cpp; sourceTree = ""; }; + 69FC4D209E239602E9E17B702963DB48 /* react-native-background-timer.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "react-native-background-timer.xcconfig"; sourceTree = ""; }; 6A10B06A83720999590D42AF776AB280 /* mips_macro.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = mips_macro.h; path = src/dsp/mips_macro.h; sourceTree = ""; }; 6A1D97AFF083766F7924AE8E0EFCE04E /* IOBuf.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = IOBuf.cpp; path = folly/io/IOBuf.cpp; sourceTree = ""; }; - 6A32CB6BF5B614879CA8331936310E6A /* YGEnums.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = YGEnums.cpp; path = yoga/YGEnums.cpp; sourceTree = ""; }; - 6A3900AA83F87E3377256675111C8DFD /* RCTView+SafeAreaCompat.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "RCTView+SafeAreaCompat.h"; path = "ios/SafeAreaView/RCTView+SafeAreaCompat.h"; sourceTree = ""; }; + 6A35C307642B049F4D1461ACB8C35E86 /* LNInterpolable.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = LNInterpolable.m; sourceTree = ""; }; 6A3A2CDB7464AA942E65D7943827F970 /* SKRequestInfo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SKRequestInfo.h; path = iOS/Plugins/FlipperKitNetworkPlugin/FlipperKitNetworkPlugin/SKRequestInfo.h; sourceTree = ""; }; - 6A450AD5397BFD2E0D6FDB4F0F6450FE /* RCTDisplayLink.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTDisplayLink.m; sourceTree = ""; }; 6A52D76A1966F86A98A1D54378299FD7 /* IPAddressV6.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = IPAddressV6.cpp; path = folly/IPAddressV6.cpp; sourceTree = ""; }; - 6A5315283474BCB6DFD5D91C8B339DD9 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; - 6A97BA1C32F0EB20E5033FB242187B5D /* Compression.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Compression.h; path = ios/src/Compression.h; sourceTree = ""; }; + 6A878E168BC3EC6F6489E25BF070CDB0 /* RCTSurfaceStage.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSurfaceStage.h; sourceTree = ""; }; 6AA080C7BD9045A026E2CCFBF9120E84 /* FlipperKitReactPlugin.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FlipperKitReactPlugin.m; path = iOS/Plugins/FlipperKitReactPlugin/FlipperKitReactPlugin/FlipperKitReactPlugin.m; sourceTree = ""; }; + 6AA0B32AF7EF63D5FD6713F2E9B21273 /* React-RCTSettings-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-RCTSettings-prefix.pch"; sourceTree = ""; }; 6AA60F54022C3D0F0993177724AD76A9 /* SDWebImageWebPCoder.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = SDWebImageWebPCoder.xcconfig; sourceTree = ""; }; - 6AAC0C247FEA5320D92290C2AA6F16A1 /* RCTSurfaceHostingProxyRootView.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTSurfaceHostingProxyRootView.mm; sourceTree = ""; }; - 6AB6F7A05712378F1F168AF79F14103E /* FFFastImageViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FFFastImageViewManager.h; path = ios/FastImage/FFFastImageViewManager.h; sourceTree = ""; }; - 6ABBF6A6D0FACB32AD2FDE3C593A3775 /* RCTModalHostViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTModalHostViewManager.h; sourceTree = ""; }; - 6AC3F7E4DAF9A0BCDF52264CFFE374A8 /* BugsnagLogger.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagLogger.h; sourceTree = ""; }; + 6AB85D67ED6BBEFFF728A5B2FDCE90F9 /* RNDateTimePickerManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNDateTimePickerManager.m; path = ios/RNDateTimePickerManager.m; sourceTree = ""; }; + 6ABA5EAB78B6D361C3EFD3C8975D10F4 /* ReactMarker.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = ReactMarker.cpp; sourceTree = ""; }; 6AD306A52450FF701DE02555B3745972 /* json.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = json.h; path = folly/json.h; sourceTree = ""; }; + 6AF4A3D6A542CE9E60A67A05D478C9F5 /* SDImageHEICCoderInternal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageHEICCoderInternal.h; path = SDWebImage/Private/SDImageHEICCoderInternal.h; sourceTree = ""; }; 6B0729204974CFA3C66706EA274FBF54 /* PTUSBHub.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = PTUSBHub.m; path = peertalk/PTUSBHub.m; sourceTree = ""; }; 6B1F3CBF46229EF0C0CDF7587977B038 /* opensslconf-armv7s.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "opensslconf-armv7s.h"; path = "ios/include/openssl/opensslconf-armv7s.h"; sourceTree = ""; }; - 6B1F61D96101BF69D9C0A5E74A1BE48B /* RNBootSplash.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RNBootSplash.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - 6B26DEFDF2E6A80D97F00BBDFE7FF911 /* JSDeltaBundleClient.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = JSDeltaBundleClient.cpp; sourceTree = ""; }; 6B2DBE064CD3B929A0F4DEB8762C8BAA /* fast-dtoa.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "fast-dtoa.h"; path = "double-conversion/fast-dtoa.h"; sourceTree = ""; }; - 6B372B63DDB5329AEF0838FD23034936 /* UMImageLoaderInterface.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMImageLoaderInterface.xcconfig; sourceTree = ""; }; - 6B41E4FCC74576391ADB7ACBFD2CB539 /* RNSScreenStack.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNSScreenStack.m; path = ios/RNSScreenStack.m; sourceTree = ""; }; 6B49F4886F558A20270FB1B28A61A7F2 /* Chrono.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Chrono.h; path = folly/Chrono.h; sourceTree = ""; }; + 6B4B783D440A37DF09E0B1A2960BA264 /* RCTSurfaceView+Internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RCTSurfaceView+Internal.h"; sourceTree = ""; }; 6B4BC528B33441223AA224532206DC3C /* PublisherBase.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PublisherBase.h; path = rsocket/statemachine/PublisherBase.h; sourceTree = ""; }; - 6B6C97675A37EFAC4203BE9D24797F2D /* RCTLayoutAnimation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTLayoutAnimation.m; sourceTree = ""; }; + 6BA5908D25EA639F1F010452B4AAB9EF /* RNFirebaseNotifications.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNFirebaseNotifications.h; sourceTree = ""; }; 6BCC25095D2CE9236C0C794B87DB2275 /* FIRComponent.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRComponent.h; path = FirebaseCore/Sources/Private/FIRComponent.h; sourceTree = ""; }; - 6BD12214F5826815CB7FDB5BED2E67ED /* SDInternalMacros.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDInternalMacros.h; path = SDWebImage/Private/SDInternalMacros.h; sourceTree = ""; }; - 6BEDA019BC58CBE06110408C4101AA6F /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; - 6C01B0B04ED5559FDBFB6896F2E1CD1B /* RCTRootViewDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTRootViewDelegate.h; sourceTree = ""; }; + 6BD6B36952346B1A6E7D39AB05FB5F14 /* BugsnagCrashSentry.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagCrashSentry.h; sourceTree = ""; }; + 6BFE8B284F1D5547C6E7C6FD275323A0 /* SDImageIOCoder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageIOCoder.h; path = SDWebImage/Core/SDImageIOCoder.h; sourceTree = ""; }; 6C22259A206D11BC58FAD50035C4E804 /* ManualExecutor.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = ManualExecutor.cpp; path = folly/executors/ManualExecutor.cpp; sourceTree = ""; }; + 6C46334BCA482341224CBD6F985BBA8E /* RNJitsiMeetView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNJitsiMeetView.m; path = ios/RNJitsiMeetView.m; sourceTree = ""; }; 6C48287496A17E92102556696A3E7006 /* SpookyHashV2.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = SpookyHashV2.cpp; path = folly/hash/SpookyHashV2.cpp; sourceTree = ""; }; - 6C5289DEFC56ED39BD71D8EC5B4C8A94 /* RCTCxxConvert.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTCxxConvert.h; sourceTree = ""; }; 6C52B6578B5E021E9BF2AFFF4F6FEF84 /* RSocketResponder.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = RSocketResponder.cpp; path = rsocket/RSocketResponder.cpp; sourceTree = ""; }; - 6C64BF2A1D2437CA52AEE039EF8792AA /* RCTTouchEvent.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTTouchEvent.m; sourceTree = ""; }; + 6C52E58A2A2B01E9BB3484BE88FC3F3E /* RCTResizeMode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTResizeMode.h; path = Libraries/Image/RCTResizeMode.h; sourceTree = ""; }; 6C70B9C83634E05E74CEF35D222403FD /* SanitizeLeak.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SanitizeLeak.h; path = folly/memory/SanitizeLeak.h; sourceTree = ""; }; 6CA68C76334A6FC469D61CAF8A391766 /* vp8_dec.c */ = {isa = PBXFileReference; includeInIndex = 1; name = vp8_dec.c; path = src/dec/vp8_dec.c; sourceTree = ""; }; + 6CBD4994018FA1DC151E3369D0986690 /* RCTEventEmitter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTEventEmitter.m; sourceTree = ""; }; 6CBEFE4F9E22AFDC6347A739BB35FF8C /* libCocoaAsyncSocket.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libCocoaAsyncSocket.a; path = libCocoaAsyncSocket.a; sourceTree = BUILT_PRODUCTS_DIR; }; 6CCE529ABE0E34CAD537F852450CA485 /* Executor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Executor.h; path = folly/Executor.h; sourceTree = ""; }; - 6CDB31BDF2D8BFC7451FA2DE3DEAEEB8 /* YGNode.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = YGNode.cpp; path = yoga/YGNode.cpp; sourceTree = ""; }; 6CEEF959D7C8245C060ADFCFB07E6931 /* SwappableEventBase.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = SwappableEventBase.cpp; path = rsocket/internal/SwappableEventBase.cpp; sourceTree = ""; }; - 6D1B8F9D5C016E7F3E093EC478D6067B /* EXVideoThumbnails-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "EXVideoThumbnails-prefix.pch"; sourceTree = ""; }; - 6D24767B02EB893827AF0338BBB8ABFA /* UMExportedModule.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = UMExportedModule.m; path = UMCore/UMExportedModule.m; sourceTree = ""; }; + 6CF43B31E190BC61E79AEC9711B7F496 /* REAAlwaysNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REAAlwaysNode.m; sourceTree = ""; }; + 6CF8DF9486ADB690C43C6843FBD675D6 /* BannerComponent.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BannerComponent.h; sourceTree = ""; }; + 6CFCA17DB7AE639E1C1FF0528A2D9C85 /* NativeToJsBridge.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = NativeToJsBridge.h; sourceTree = ""; }; + 6D1EA97BF3175816CC0EBC6D033B4D09 /* RCTImageShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageShadowView.h; path = Libraries/Image/RCTImageShadowView.h; sourceTree = ""; }; + 6D344A054FDE1477792585264715B486 /* ja.lproj */ = {isa = PBXFileReference; includeInIndex = 1; name = ja.lproj; path = ios/QBImagePicker/QBImagePicker/ja.lproj; sourceTree = ""; }; 6D44D139FA47494C9F2C3FD27FC9C14F /* TOCropScrollView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = TOCropScrollView.m; path = "Objective-C/TOCropViewController/Views/TOCropScrollView.m"; sourceTree = ""; }; - 6D4954EAB8F90824EDE56AB510D5EE73 /* RCTComponentEvent.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTComponentEvent.m; sourceTree = ""; }; - 6D4994A75D45527F7F5930F67C8B5BEB /* RCTMultilineTextInputViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTMultilineTextInputViewManager.h; sourceTree = ""; }; - 6D5D1E85E2F0BC368B16D1F1C550518A /* RNDeviceInfo.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RNDeviceInfo.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - 6D63D68250D517F7A8A6FB42EDD1F2EB /* REABezierNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REABezierNode.h; sourceTree = ""; }; + 6D595FF639EDE09CA0B9D1E01B2695EC /* BugsnagCrashReport.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagCrashReport.h; sourceTree = ""; }; + 6D66E9F00BE1EAFF7960FC6BA7708B8C /* EXAVObject.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXAVObject.h; path = EXAV/EXAVObject.h; sourceTree = ""; }; 6D6F2220F93AF227C1AE3DD841925360 /* double-conversion.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = "double-conversion.cc"; path = "double-conversion/double-conversion.cc"; sourceTree = ""; }; 6D93EFFAB3C9CF568E8586640851F355 /* GDTCORUploadPackage.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GDTCORUploadPackage.m; path = GoogleDataTransport/GDTCORLibrary/GDTCORUploadPackage.m; sourceTree = ""; }; 6DC15B5BDDC4879CFF2CD5A65DAF5B70 /* FIRInstallationsItem.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstallationsItem.h; path = FirebaseInstallations/Source/Library/FIRInstallationsItem.h; sourceTree = ""; }; 6DCAAFCFD9C40302456BE418A600C478 /* nl.lproj */ = {isa = PBXFileReference; includeInIndex = 1; name = nl.lproj; path = "Objective-C/TOCropViewController/Resources/nl.lproj"; sourceTree = ""; }; 6DD62CAAA7E16DC81FADB221C0579481 /* F14Map.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = F14Map.h; path = folly/container/F14Map.h; sourceTree = ""; }; - 6DEB40674BC3CEF1213783E57BD533DA /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; + 6DD7CF14E9EE7BCCC59FCF32D8BC8FA1 /* RCTEventEmitter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTEventEmitter.h; sourceTree = ""; }; + 6DF1C826BE5F262719D3FD06E82CBC45 /* RCTCxxMethod.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTCxxMethod.h; sourceTree = ""; }; 6DF471E434E4FFF4F5E34CFB225CD970 /* raw_logging.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = raw_logging.h; path = src/glog/raw_logging.h; sourceTree = ""; }; - 6DF84C4AC2FF0FD8AF3C923CCBCA3EEB /* React-RCTLinking.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-RCTLinking.xcconfig"; sourceTree = ""; }; - 6E1662013842AD470983BDAD74E96EAE /* RNLocalize.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNLocalize.xcconfig; sourceTree = ""; }; - 6E1C039B9169CD68726A5B2C2A4FE067 /* RCTCxxMethod.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTCxxMethod.h; sourceTree = ""; }; - 6E484E6752AFB0619F0ED1AD505354CF /* RNRootView.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RNRootView.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - 6E498CD5CA0351C79B920D298531B9D9 /* JSBundleType.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = JSBundleType.cpp; sourceTree = ""; }; + 6E004A1597FF77E9605176232AF208B6 /* ReactNativeART.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = ReactNativeART.xcconfig; sourceTree = ""; }; + 6E0B44A004F1EF63F6E963268DD21C2A /* RCTAdditionAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTAdditionAnimatedNode.h; sourceTree = ""; }; + 6E11B4F2519819CF7BCB537EB99904C0 /* SDWebImageDownloaderOperation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWebImageDownloaderOperation.m; path = SDWebImage/Core/SDWebImageDownloaderOperation.m; sourceTree = ""; }; 6E53C61D4E9B25D6FBD32598566EAF38 /* Lazy.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Lazy.h; path = folly/Lazy.h; sourceTree = ""; }; 6E5A77E2B1D23553F1FCFEAE09A389B8 /* SKResponseInfo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SKResponseInfo.h; path = iOS/Plugins/FlipperKitNetworkPlugin/FlipperKitNetworkPlugin/SKResponseInfo.h; sourceTree = ""; }; - 6EB757A79FF3B69AD6B9E4791A7020F0 /* BSG_KSCrashDoctor.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BSG_KSCrashDoctor.m; sourceTree = ""; }; + 6E869BE1BE808D2666B7222B4EC25A38 /* UMFontInterface.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMFontInterface.xcconfig; sourceTree = ""; }; + 6EAF17DFB63D2F9F9F36D733AC58E9DB /* BugsnagUser.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagUser.m; sourceTree = ""; }; + 6EDBCA5FD95AB321FE8A8C344BA44126 /* RCTRawTextViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTRawTextViewManager.h; sourceTree = ""; }; + 6EDC66F482CB24D6058DE1A85DDB886A /* RNFirebaseDatabase.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNFirebaseDatabase.m; sourceTree = ""; }; 6EDDB0BF77E0162298A4164C90A4F5EB /* Pods-RocketChatRN-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Pods-RocketChatRN-dummy.m"; sourceTree = ""; }; + 6EF1AA06CE823061D52ADF10C6D10E02 /* UMViewManagerAdapter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = UMViewManagerAdapter.m; sourceTree = ""; }; 6EF5403BF740F93C1CDC1335EB3741F9 /* Align.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Align.h; path = folly/lang/Align.h; sourceTree = ""; }; - 6F0EF6046A20A68989C5B5B8DD839E33 /* UMReactNativeAdapter.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMReactNativeAdapter.xcconfig; sourceTree = ""; }; 6F1ECE604E7ADB398D87DEC9A211AF72 /* TOCropView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TOCropView.h; path = "Objective-C/TOCropViewController/Views/TOCropView.h"; sourceTree = ""; }; + 6F29E665FBF0798C3DD682B569A0FAC8 /* RCTSafeAreaViewLocalData.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSafeAreaViewLocalData.h; sourceTree = ""; }; 6F40837B384672DDFC34288BFFD5EC34 /* AsyncTransportCertificate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AsyncTransportCertificate.h; path = folly/io/async/AsyncTransportCertificate.h; sourceTree = ""; }; 6F4B439546DBD40F0CF6F481CF0EB4DE /* ssl3.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ssl3.h; path = ios/include/openssl/ssl3.h; sourceTree = ""; }; - 6F5684FFDE03F8CF2C40486769C419CF /* RNFetchBlobRequest.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNFetchBlobRequest.m; path = ios/RNFetchBlobRequest.m; sourceTree = ""; }; - 6F5705092A7E5EC01EFB09386E8FAEEF /* MessageQueueThreadCallInvoker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MessageQueueThreadCallInvoker.h; path = callinvoker/ReactCommon/MessageQueueThreadCallInvoker.h; sourceTree = ""; }; - 6F6EAD38009DDEBD60F96F13B1500506 /* RCTEventAnimation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTEventAnimation.m; sourceTree = ""; }; + 6F606FB1A4ADEE677F2D6EA1C1167C40 /* Yoga-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Yoga-dummy.m"; sourceTree = ""; }; 6F75B49F38575EBEFE4DAC7ED4CC9EF1 /* lossless.c */ = {isa = PBXFileReference; includeInIndex = 1; name = lossless.c; path = src/dsp/lossless.c; sourceTree = ""; }; - 6F77194E54C6A747E949B4AAA15A0675 /* BugsnagApiClient.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagApiClient.h; sourceTree = ""; }; - 6F8655AEBCB33048C58824700009949B /* UMFaceDetectorInterface.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMFaceDetectorInterface.xcconfig; sourceTree = ""; }; 6F944579685D689DAE1733447AB752E5 /* yuv.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = yuv.h; path = src/dsp/yuv.h; sourceTree = ""; }; - 6FA0DAC29FA8635BEA326384C7007408 /* KeyboardTrackingViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = KeyboardTrackingViewManager.m; path = lib/KeyboardTrackingViewManager.m; sourceTree = ""; }; - 6FA1BE721DD739533ED82AD189404F48 /* UMFileSystemInterface.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMFileSystemInterface.xcconfig; sourceTree = ""; }; + 6FC9F99A5B1B339B1B270C73A9317012 /* RCTTextDecorationLineType.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTextDecorationLineType.h; sourceTree = ""; }; + 6FCC41E3ABC5C2D3543CE7099BF6DF48 /* RNReanimated-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNReanimated-prefix.pch"; sourceTree = ""; }; 6FF0842F9EA78D9EDC9F435A8D686211 /* BaselinesAsyncSocket.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = BaselinesAsyncSocket.cpp; path = rsocket/benchmarks/BaselinesAsyncSocket.cpp; sourceTree = ""; }; 6FFB7B2992BB53405E6B771A5BA1E97D /* libDoubleConversion.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libDoubleConversion.a; path = libDoubleConversion.a; sourceTree = BUILT_PRODUCTS_DIR; }; + 700D61B93A014530A83DDAD4C2C6BC55 /* SDWebImageManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageManager.h; path = SDWebImage/Core/SDWebImageManager.h; sourceTree = ""; }; + 700E1E96E2A4740123B8FB417A820909 /* BugsnagSink.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagSink.m; sourceTree = ""; }; 70197CC7571ACA78C92A18304930BE97 /* ThreadId.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ThreadId.h; path = folly/system/ThreadId.h; sourceTree = ""; }; + 701CC102E35E467BDCF858727E4F0D79 /* BSG_KSCrashAdvanced.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashAdvanced.h; sourceTree = ""; }; 7033DB819E816E3EB425094FB4A1EE45 /* FlipperConnection.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FlipperConnection.h; path = iOS/FlipperKit/FlipperConnection.h; sourceTree = ""; }; - 7034C52AF5A115A04C42690DE056D075 /* BSG_KSCrash.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrash.h; sourceTree = ""; }; - 703A7C3217E38DACDBE6920B34456205 /* UMReactNativeAdapter.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = UMReactNativeAdapter.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; 704B64BA0F1BDDF94DFCB7B5179EB319 /* ScheduledSingleSubscription.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = ScheduledSingleSubscription.cpp; path = rsocket/internal/ScheduledSingleSubscription.cpp; sourceTree = ""; }; 704C5E5BC0BAABAC4C0DC243FD8FFA9A /* DefaultKeepAliveExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DefaultKeepAliveExecutor.h; path = folly/DefaultKeepAliveExecutor.h; sourceTree = ""; }; 705E70EBC191BE220E183969103DA2E1 /* cast.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = cast.h; path = ios/include/openssl/cast.h; sourceTree = ""; }; - 708760842867F929E52FEE8EF9CB114F /* RCTReloadCommand.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTReloadCommand.h; sourceTree = ""; }; - 70AB7F4C521B0B8F336CC49326F2D305 /* RCTSurfaceView.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTSurfaceView.mm; sourceTree = ""; }; - 70B3C3AE5C2CDC52BD74F7C527EF126E /* RCTAutoInsetsProtocol.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTAutoInsetsProtocol.h; sourceTree = ""; }; - 70BA231528C44BD9AB5D994D37520985 /* RCTPickerManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTPickerManager.h; sourceTree = ""; }; - 70BBF9B79ED5994105858E2CF4EFF638 /* RNBridgeModule.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNBridgeModule.m; path = RNNotifications/RNBridgeModule.m; sourceTree = ""; }; - 70D2F1DE32D8D83ED283D13D70AE9546 /* rn-fetch-blob-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "rn-fetch-blob-dummy.m"; sourceTree = ""; }; - 70E0E86D8435F505B9026D6968E02EC0 /* RNGestureHandler.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RNGestureHandler.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 7098C0DAF37152FF8BD31A8A60D7FC0F /* UIImageView+WebCache.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIImageView+WebCache.h"; path = "SDWebImage/Core/UIImageView+WebCache.h"; sourceTree = ""; }; + 709CD2DECFBE92EBAA54F428848D1F81 /* BSG_KSCrashReportWriter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashReportWriter.h; sourceTree = ""; }; + 70AC8C777BB97FFA5673DF29335EE763 /* EXLocalAuthentication.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = EXLocalAuthentication.xcconfig; sourceTree = ""; }; + 70D8905F06D265CF84C6E91D7418C2E6 /* RCTI18nManager.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTI18nManager.mm; sourceTree = ""; }; 70F2829EA3E8A5283521C663CBF9D616 /* YogaKit.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = YogaKit.xcconfig; sourceTree = ""; }; 70F31B995F9074BFE8C5A64966B80CF4 /* bignum.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = bignum.cc; path = "double-conversion/bignum.cc"; sourceTree = ""; }; 70F368B9704E829BF6802BDBB1AD5E26 /* RSocketServer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RSocketServer.h; path = rsocket/RSocketServer.h; sourceTree = ""; }; - 70FE932D7EE0A2E6E295FF0F651AC85F /* REASetNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REASetNode.h; sourceTree = ""; }; 710044891D8284841001A9ECCB448E7D /* Init.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Init.h; path = folly/init/Init.h; sourceTree = ""; }; - 7106EEAFBE6BAE4A506A5118B384AB1F /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; 711E5A29559B0895B88DC7DA2EC244D8 /* AsyncServerSocket.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AsyncServerSocket.h; path = folly/io/async/AsyncServerSocket.h; sourceTree = ""; }; - 713882D8685596882A1DA0DCAC5ACF8C /* BSG_KSBacktrace_Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSBacktrace_Private.h; sourceTree = ""; }; + 712F53208F9FE0886B389CD72E923EFE /* ARTPattern.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = ARTPattern.m; sourceTree = ""; }; 713A81815B3885B08757A419B2659FE6 /* Codel.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Codel.h; path = folly/executors/Codel.h; sourceTree = ""; }; - 71531F4D01A58061478E016FA6E16A8B /* RCTInputAccessoryViewContent.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTInputAccessoryViewContent.h; sourceTree = ""; }; + 714190363DEE99AEDB46A0EF9761FFE2 /* RNFirebaseFirestoreDocumentReference.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNFirebaseFirestoreDocumentReference.m; sourceTree = ""; }; + 7143738C4C4CD3B3552B0D9846492E16 /* EXImageLoader.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = EXImageLoader.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 715B9CFD01E3E361C5BD4C73114E7931 /* UIImage+ForceDecode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIImage+ForceDecode.h"; path = "SDWebImage/Core/UIImage+ForceDecode.h"; sourceTree = ""; }; 715D59D39D1D872A96E44177A511E929 /* SocketOptionMap.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = SocketOptionMap.cpp; path = folly/io/SocketOptionMap.cpp; sourceTree = ""; }; - 719CB1BCA06AACF1CB60A6CA66317BF6 /* REAStyleNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REAStyleNode.m; sourceTree = ""; }; + 717981A8C10CAF4407754DA1FE68F149 /* REAOperatorNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REAOperatorNode.m; sourceTree = ""; }; + 718043431240AAFA802E235A1E5B23A4 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; + 718C6051015263C943C1B19DB3B75F4B /* EXHaptics.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = EXHaptics.xcconfig; sourceTree = ""; }; 719DDB7B841C4CBCCF38804EA3ADD44E /* AtomicLinkedList.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AtomicLinkedList.h; path = folly/AtomicLinkedList.h; sourceTree = ""; }; - 71A81006D808932FC42B12786BECA152 /* RNGestureHandlerButton.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNGestureHandlerButton.h; path = ios/RNGestureHandlerButton.h; sourceTree = ""; }; - 71AE41B49320B7D195F1396292016E9B /* BugsnagSession.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagSession.m; sourceTree = ""; }; - 71FC861FA342057264415C3E6A5BF805 /* RCTStyleAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTStyleAnimatedNode.m; sourceTree = ""; }; + 71E18A5D75C4D4C29F1DE0ED91933EC6 /* react-native-document-picker-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "react-native-document-picker-dummy.m"; sourceTree = ""; }; + 71E80AAD667669B63C01591B4CA4D9E2 /* REATransitionManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REATransitionManager.h; sourceTree = ""; }; + 71EAB343DAEF9715E19AF441DAF4D377 /* RCTConvert+FFFastImage.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "RCTConvert+FFFastImage.m"; path = "ios/FastImage/RCTConvert+FFFastImage.m"; sourceTree = ""; }; 71FF1E72B4DB0A20E351EA7918EC7F95 /* YogaKit.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = YogaKit.modulemap; sourceTree = ""; }; - 721AB46BD809C2987EF958E95073BFF2 /* REANodesManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = REANodesManager.h; path = ios/REANodesManager.h; sourceTree = ""; }; + 722BE3870D0E12A2F6B24031E137F07D /* RCTVirtualTextViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTVirtualTextViewManager.h; sourceTree = ""; }; + 722E6C2C002559D696DFB10F3CD55E57 /* NSDataBigString.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = NSDataBigString.h; sourceTree = ""; }; + 7242B0B52023ED80CB4CCBD4BF5BE02B /* EXVideoView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = EXVideoView.m; sourceTree = ""; }; 72558F571738704549E1838E845D2770 /* libEXLocalAuthentication.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libEXLocalAuthentication.a; path = libEXLocalAuthentication.a; sourceTree = BUILT_PRODUCTS_DIR; }; 725E287E607D785B413443F8A05E955E /* log_severity.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = log_severity.h; path = src/glog/log_severity.h; sourceTree = ""; }; 727836E33EA310B521A1EE17C0D2670E /* ecdh.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ecdh.h; path = ios/include/openssl/ecdh.h; sourceTree = ""; }; 7289C53A79FF425CB53C7FDFBC11E2A3 /* TimeoutQueue.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = TimeoutQueue.cpp; path = folly/TimeoutQueue.cpp; sourceTree = ""; }; + 729BD433E983E03BE1D0DC9F7C1BEDF2 /* RCTBorderDrawing.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBorderDrawing.h; sourceTree = ""; }; 72AAC3CFCD9D5F65A049D400362D9B50 /* ru.lproj */ = {isa = PBXFileReference; includeInIndex = 1; name = ru.lproj; path = "Objective-C/TOCropViewController/Resources/ru.lproj"; sourceTree = ""; }; + 72AC0F494D210A5373A91E4FA76E45C3 /* UMAppLoader-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "UMAppLoader-dummy.m"; sourceTree = ""; }; + 72BA2D973062321833DC71EA631B9A46 /* RCTInspectorPackagerConnection.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTInspectorPackagerConnection.h; sourceTree = ""; }; 72BF1AAEF5436D10A0081BBBEC48C39F /* GDTCCTPrioritizer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCCTPrioritizer.h; path = GoogleDataTransportCCTSupport/GDTCCTLibrary/Private/GDTCCTPrioritizer.h; sourceTree = ""; }; + 72D72FC9A38216D6880CE47E00B26E86 /* ARTBrush.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = ARTBrush.m; sourceTree = ""; }; 72DE4BF3FB9CE0858E90F96FEF8A53AE /* libRNDateTimePicker.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libRNDateTimePicker.a; path = libRNDateTimePicker.a; sourceTree = BUILT_PRODUCTS_DIR; }; + 72E198311F24C1FB49B976D9D5A22732 /* RCTPerformanceLogger.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTPerformanceLogger.h; sourceTree = ""; }; 72E494917AC5EC2582197F07061A28B0 /* libEXPermissions.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libEXPermissions.a; path = libEXPermissions.a; sourceTree = BUILT_PRODUCTS_DIR; }; 72EE23C58260255B1D192AE09CDFFD44 /* File.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = File.h; path = folly/File.h; sourceTree = ""; }; - 72F06AEF19767243AF081CAA23DC7E00 /* UMImageLoaderInterface.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = UMImageLoaderInterface.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 72F3D1AEE210E583BE6F25D0CEEDDEC3 /* RCTAccessibilityManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTAccessibilityManager.h; path = React/CoreModules/RCTAccessibilityManager.h; sourceTree = ""; }; 72F93B35E7840328A0BE89C021462A46 /* FIRInstallationsAPIService.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstallationsAPIService.m; path = FirebaseInstallations/Source/Library/InstallationsAPI/FIRInstallationsAPIService.m; sourceTree = ""; }; 730E4E0BC41E24A628932A3852D22DD5 /* FlipperCppBridgingResponder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FlipperCppBridgingResponder.h; path = iOS/FlipperKit/CppBridge/FlipperCppBridgingResponder.h; sourceTree = ""; }; + 731777336C3CA503DD0A5DA5DB2164B1 /* rn-extensions-share-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "rn-extensions-share-dummy.m"; sourceTree = ""; }; 734D1B63F33711F47A4D575E64F45DE7 /* Demangle.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = Demangle.cpp; path = folly/Demangle.cpp; sourceTree = ""; }; 735A6137D06816E5C6E0C1C09CDD1049 /* FlipperConnectionManagerImpl.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = FlipperConnectionManagerImpl.cpp; path = xplat/Flipper/FlipperConnectionManagerImpl.cpp; sourceTree = ""; }; + 737C63A707933054830C90D0CCDE6973 /* RCTInputAccessoryViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTInputAccessoryViewManager.m; sourceTree = ""; }; + 737E68F840664F7F96841913D5BFB4D2 /* BSG_KSSystemInfo.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BSG_KSSystemInfo.m; sourceTree = ""; }; 7390BB632CEEE118C7CA4E8B403F656C /* FIRApp.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRApp.m; path = FirebaseCore/Sources/FIRApp.m; sourceTree = ""; }; - 739CC36EF22AB6A559FB5581FD5EC465 /* RCTConvert+CoreLocation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RCTConvert+CoreLocation.m"; sourceTree = ""; }; - 73AA7F6FDD0109D9B53978B88A0903BA /* LNInterpolable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = LNInterpolable.h; sourceTree = ""; }; - 73C7E748D6247016CD225AF20049FBC9 /* SDImageTransformer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageTransformer.h; path = SDWebImage/Core/SDImageTransformer.h; sourceTree = ""; }; + 73C56D2E6697C1188A12E31B616D2627 /* LICENSE.txt */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE.txt; sourceTree = ""; }; + 73C5B2ACE4F0154BAB393D453FC8E258 /* RCTConstants.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTConstants.h; sourceTree = ""; }; 73EDE3EEF45AE2EABE6B40C4440BC958 /* GULKeychainStorage.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GULKeychainStorage.m; path = GoogleUtilities/Environment/SecureStorage/GULKeychainStorage.m; sourceTree = ""; }; + 73EE8687E6D48FEE79F189234F943459 /* RCTMultiplicationAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTMultiplicationAnimatedNode.h; sourceTree = ""; }; + 73F8FBE8D7A3E43B5EEC41D91B4F8E82 /* RNFirebaseAdMobNativeExpressManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNFirebaseAdMobNativeExpressManager.m; sourceTree = ""; }; 73F99FDDD043F3C123FD799F02E251D2 /* EventBase.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EventBase.h; path = folly/io/async/EventBase.h; sourceTree = ""; }; - 73FDEBC4D7AB872C43D0B328CA04F2C4 /* RCTScrollContentShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTScrollContentShadowView.h; sourceTree = ""; }; - 741C3A3B5625053E83FF3307CC09A3DC /* RNUserDefaults.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNUserDefaults.h; path = ios/RNUserDefaults.h; sourceTree = ""; }; - 7427F37FF19E195E55A9669219AD60B2 /* QBAlbumsViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = QBAlbumsViewController.m; path = ios/QBImagePicker/QBImagePicker/QBAlbumsViewController.m; sourceTree = ""; }; + 741197283CA157345932A937948D1B9A /* RNCWebView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCWebView.h; path = apple/RNCWebView.h; sourceTree = ""; }; + 7419193FF4A667D9EEC16DD23D6FD3AE /* BSG_KSCrashReportFields.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashReportFields.h; sourceTree = ""; }; 742D61A515E6226E5978F5D3AAFAFE59 /* GULLogger.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GULLogger.m; path = GoogleUtilities/Logger/GULLogger.m; sourceTree = ""; }; 744FDBFE85D90D5ECFA859B3F358AA90 /* Uri.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Uri.h; path = folly/Uri.h; sourceTree = ""; }; 745220E98E7B8E0EC647E582DC596550 /* RequestResponseResponder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RequestResponseResponder.h; path = rsocket/statemachine/RequestResponseResponder.h; sourceTree = ""; }; 7462E6A88C35E7538B62875DBBCA35B8 /* OpenSSL.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = OpenSSL.h; path = folly/portability/OpenSSL.h; sourceTree = ""; }; 7475678D43B3FABE4C3E6E70042FA89A /* FlipperStep.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = FlipperStep.cpp; path = xplat/Flipper/FlipperStep.cpp; sourceTree = ""; }; - 74B387B68F9239F26E4E1D3379EC1140 /* UIResponder+FirstResponder.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIResponder+FirstResponder.m"; path = "lib/UIResponder+FirstResponder.m"; sourceTree = ""; }; + 7482609638507AC0F8E7C1EF39177AF2 /* SDAnimatedImageRep.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDAnimatedImageRep.m; path = SDWebImage/Core/SDAnimatedImageRep.m; sourceTree = ""; }; + 74A054457DFE284200295BC67C233360 /* SDImageIOCoder.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageIOCoder.m; path = SDWebImage/Core/SDImageIOCoder.m; sourceTree = ""; }; 74C310DC3306E164BCE850AA3DB4439C /* PTPrivate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PTPrivate.h; path = peertalk/PTPrivate.h; sourceTree = ""; }; 74C64DDDEFB40B6871EB652DD0F6E122 /* stack.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = stack.h; path = ios/include/openssl/stack.h; sourceTree = ""; }; 74C8B993323AAE9A4C15E7FF18321A4C /* SparseByteSet.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SparseByteSet.h; path = folly/container/SparseByteSet.h; sourceTree = ""; }; - 74CB6B32052B4980712DC85AF207A391 /* REATransitionManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REATransitionManager.m; sourceTree = ""; }; 74D4F22992D39B59471B05C6F51C9354 /* GoogleDataTransport.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = GoogleDataTransport.xcconfig; sourceTree = ""; }; - 74DE5ECD6B64E6F47DF433971EAD8225 /* EXKeepAwake.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXKeepAwake.h; path = EXKeepAwake/EXKeepAwake.h; sourceTree = ""; }; 74EF1999A7D5F0448AF21369F6367731 /* FrameSerializer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FrameSerializer.h; path = rsocket/framing/FrameSerializer.h; sourceTree = ""; }; - 74F235836617F870DA81A96E2071E3F9 /* UMFaceDetectorManagerProvider.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMFaceDetectorManagerProvider.h; path = UMFaceDetectorInterface/UMFaceDetectorManagerProvider.h; sourceTree = ""; }; 74F33A435A3CB7082ECC0809627A0A01 /* HardwareConcurrency.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = HardwareConcurrency.cpp; path = folly/system/HardwareConcurrency.cpp; sourceTree = ""; }; 74FE0A6812B600DE9F54562F0F69D2DE /* Pods-ShareRocketChatRN-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Pods-ShareRocketChatRN-umbrella.h"; sourceTree = ""; }; - 750EE3CC561AB7E2DC7055E64BC1C283 /* decorator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = decorator.h; sourceTree = ""; }; - 750F7D35BE6E5845F73D68C57008522E /* RCTSafeAreaShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSafeAreaShadowView.h; sourceTree = ""; }; 751628458EF5455CEE796DAA2D6CA590 /* FBLPromise+Recover.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "FBLPromise+Recover.m"; path = "Sources/FBLPromises/FBLPromise+Recover.m"; sourceTree = ""; }; 7525F34A4048B96EA3ACFF6B2285FEF9 /* glog-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "glog-prefix.pch"; sourceTree = ""; }; - 752EBEF4EC71B1AA44A5C0D90110F58E /* RCTLogBox.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTLogBox.h; path = React/CoreModules/RCTLogBox.h; sourceTree = ""; }; 753BDE10DDED75830C20C2C67239AFB6 /* FIRCoreDiagnosticsConnector.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCoreDiagnosticsConnector.m; path = FirebaseCore/Sources/FIRCoreDiagnosticsConnector.m; sourceTree = ""; }; - 754BADBA4BFF71A5E54EF704A1ECF345 /* RNRootViewGestureRecognizer.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNRootViewGestureRecognizer.m; path = ios/RNRootViewGestureRecognizer.m; sourceTree = ""; }; + 7548031C7F55209E79DE43120A326F64 /* UMReactFontManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = UMReactFontManager.m; sourceTree = ""; }; 7553ED96421EBDED21160EA3D14231C7 /* F14MapFallback.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = F14MapFallback.h; path = folly/container/detail/F14MapFallback.h; sourceTree = ""; }; - 755B3090F7C748B785591640685B7DD1 /* RNFirebase.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RNFirebase.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 75581D01FBDF9656BD27A8A1879141A9 /* React-cxxreact.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = "React-cxxreact.podspec"; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; 75632BE4B358E18FB1BAE8DFBFA50A19 /* alphai_dec.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = alphai_dec.h; path = src/dec/alphai_dec.h; sourceTree = ""; }; - 756DB69AC60ABE66C85FA7A50F750FED /* react-native-orientation-locker.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "react-native-orientation-locker.xcconfig"; sourceTree = ""; }; - 756E6084FBDF051F9DC7F4553649C4B0 /* RCTMaskedView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTMaskedView.m; sourceTree = ""; }; 757AC54CDF7539E8394457D47402CCE9 /* Benchmarks.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = Benchmarks.cpp; path = rsocket/benchmarks/Benchmarks.cpp; sourceTree = ""; }; - 757B5E8A67E8D556A6A4A5C8AE81BD35 /* QBImagePicker.storyboard */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = file.storyboard; name = QBImagePicker.storyboard; path = ios/QBImagePicker/QBImagePicker/QBImagePicker.storyboard; sourceTree = ""; }; - 75837F0DE68E61DE16C1B5C9520E90BF /* RNCSafeAreaProviderManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCSafeAreaProviderManager.h; path = ios/SafeAreaView/RNCSafeAreaProviderManager.h; sourceTree = ""; }; - 759214E0404777E80647BBF378BB40EA /* RCTExceptionsManager.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTExceptionsManager.mm; sourceTree = ""; }; - 759ADEA0F49999ED003E12B3140CEA1C /* ReactNativeKeyboardInput-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "ReactNativeKeyboardInput-dummy.m"; sourceTree = ""; }; + 758C1AFE17A1B19EFCEC94C65C27A9F7 /* RCTLocalAssetImageLoader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTLocalAssetImageLoader.h; path = Libraries/Image/RCTLocalAssetImageLoader.h; sourceTree = ""; }; + 7592BEE88F55B1933E91D62CDCC4197E /* Instance.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = Instance.h; sourceTree = ""; }; + 75B0968693C493BAEFE99F0982B10496 /* BSG_KSSysCtl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSSysCtl.h; sourceTree = ""; }; 75C2E673BC4C602DC4840634FAA6E617 /* Log.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = Log.cpp; path = xplat/Flipper/Log.cpp; sourceTree = ""; }; - 75C81C87FF4DB6BF91F3159D1B5ECF78 /* RNFetchBlobNetwork.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNFetchBlobNetwork.m; path = ios/RNFetchBlobNetwork.m; sourceTree = ""; }; + 75C8CC500EF18715756735BA84F6B23D /* UMReactNativeAdapter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = UMReactNativeAdapter.m; sourceTree = ""; }; 75CAF893E56A3E68A2D0CE06985393DF /* lossless_common.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = lossless_common.h; path = src/dsp/lossless_common.h; sourceTree = ""; }; - 75D557C23935A8E80A7188A1DCF5E3BE /* RCTSurfaceHostingView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSurfaceHostingView.h; sourceTree = ""; }; 75D8EC75098C775B0B1ED266E0A8BD12 /* FIRInstallationsStoredItem.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstallationsStoredItem.h; path = FirebaseInstallations/Source/Library/InstallationsStore/FIRInstallationsStoredItem.h; sourceTree = ""; }; 75DA4BB71C1326F66B176CCA5A426509 /* GlobalShutdownSocketSet.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GlobalShutdownSocketSet.h; path = folly/io/GlobalShutdownSocketSet.h; sourceTree = ""; }; 761200C677DC6FC1D4743B8A10AC55B3 /* ThreadName.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = ThreadName.cpp; path = folly/system/ThreadName.cpp; sourceTree = ""; }; - 761EAF3FCA2645F60BC33C873CD2F36A /* UMBarCodeScannerInterface.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMBarCodeScannerInterface.xcconfig; sourceTree = ""; }; - 762BEEE67A6C2BA66BC01DC9BDDEBEE5 /* UMUtilitiesInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMUtilitiesInterface.h; sourceTree = ""; }; + 76220C1615CC82E0A785D4512859F3FA /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; + 7623975154610CA2E1AE466A7CEBE8E0 /* EXVideoPlayerViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = EXVideoPlayerViewController.m; sourceTree = ""; }; + 7624436CBC0E8626F97E01E75CC8153E /* NSDataBigString.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = NSDataBigString.mm; sourceTree = ""; }; + 762DC98B3A6DE4FC6084B565D9FB90E5 /* RCTFont.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTFont.mm; sourceTree = ""; }; + 762F6F815E6393255BF8888C6AC94D38 /* React-RCTVibration.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-RCTVibration.xcconfig"; sourceTree = ""; }; 76328581CF6F60674D9292C4EC0DCE3F /* SysUio.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SysUio.h; path = folly/portability/SysUio.h; sourceTree = ""; }; - 76421776D82B4D7F763F40B43681EE6B /* SDAsyncBlockOperation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDAsyncBlockOperation.h; path = SDWebImage/Private/SDAsyncBlockOperation.h; sourceTree = ""; }; - 76562F5F8706D4210AA85753CB3215FA /* RCTI18nUtil.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTI18nUtil.h; sourceTree = ""; }; - 766D25EE8AC06E2F849B9A4EF23CD32F /* RNCCameraRollManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCCameraRollManager.h; path = ios/RNCCameraRollManager.h; sourceTree = ""; }; + 764A81F1BEE39F8E3E25CA0BA171EDDE /* EXRemoteNotificationPermissionRequester.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = EXRemoteNotificationPermissionRequester.h; sourceTree = ""; }; + 764EAFD88430FA98D20C9C73C96E5186 /* RNBootSplash.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNBootSplash.xcconfig; sourceTree = ""; }; 768582E960B57142E27773A93762C7E9 /* vp8i_enc.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = vp8i_enc.h; path = src/enc/vp8i_enc.h; sourceTree = ""; }; + 7686CE6070F2C405E2CFCFA2E6755B98 /* RecoverableError.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RecoverableError.h; sourceTree = ""; }; + 769B15941AB9A886CBC4D62243ECB089 /* RCTTextShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTTextShadowView.m; sourceTree = ""; }; 76B0BC6BAA4672419D0A1BF6F4FB7767 /* SpookyHashV1.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SpookyHashV1.h; path = folly/hash/SpookyHashV1.h; sourceTree = ""; }; - 77371F5FF68EF2101F411997A7F2A3DA /* RCTComponentData.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTComponentData.m; sourceTree = ""; }; - 77551D21D017ED844EB6B8D74A5B0FEC /* RNNotificationUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNNotificationUtils.h; path = RNNotifications/RNNotificationUtils.h; sourceTree = ""; }; + 76D660193F2384193780B23275856585 /* React-CoreModules-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-CoreModules-dummy.m"; sourceTree = ""; }; + 76DADF74CB705D187B99638538FC19E4 /* RCTDecayAnimation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTDecayAnimation.h; sourceTree = ""; }; + 7718B9D246E0914239AA9DF831692661 /* EXFileSystem.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = EXFileSystem.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 771BFFF07D9F4769D5A8B659E9E01666 /* UIColor+SDHexString.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIColor+SDHexString.h"; path = "SDWebImage/Private/UIColor+SDHexString.h"; sourceTree = ""; }; 77692170F57E638B54A46AFF5E0F2101 /* OpenSSL-Universal.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "OpenSSL-Universal.xcconfig"; sourceTree = ""; }; - 777059C692B7C55601D372692929E4C5 /* BSG_KSSysCtl.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSSysCtl.c; sourceTree = ""; }; 778184D74EB27A6374B6CDB0C567EF3D /* VirtualEventBase.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = VirtualEventBase.cpp; path = folly/io/async/VirtualEventBase.cpp; sourceTree = ""; }; 77972F8869294C4A4D5DD271E126CABC /* Flowable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Flowable.h; path = yarpl/flowable/Flowable.h; sourceTree = ""; }; 779B35080D2D897A6362F2DBF4957751 /* evdns.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = evdns.h; path = src/evdns.h; sourceTree = ""; }; - 77B684152044F95724A69EDE979113A0 /* RCTBaseTextViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTBaseTextViewManager.m; sourceTree = ""; }; - 77B9E249C98CA27B5638458542B2F44E /* RCTInputAccessoryViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTInputAccessoryViewManager.m; sourceTree = ""; }; + 77A500EDCB6B70D13DC0361DEEE1B687 /* RCTTouchHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTouchHandler.h; sourceTree = ""; }; + 77A8132F5B05840EEA012A5B0835CD43 /* ARTSolidColor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = ARTSolidColor.h; sourceTree = ""; }; 77C278422DC579B6055C42FC6492DFDD /* PasswordInFile.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PasswordInFile.h; path = folly/io/async/PasswordInFile.h; sourceTree = ""; }; - 77CA1053BDB2B72809CA94CC2AD8CC5F /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; 77E53093581EE1B8FB2BC260A53B5387 /* rescaler_utils.c */ = {isa = PBXFileReference; includeInIndex = 1; name = rescaler_utils.c; path = src/utils/rescaler_utils.c; sourceTree = ""; }; 77FE10D1824E65E82C3519974520DF77 /* Hazptr.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = Hazptr.cpp; path = folly/synchronization/Hazptr.cpp; sourceTree = ""; }; + 780A9D480ECAE95CFD1A2214A4250ABF /* REATransformNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REATransformNode.h; sourceTree = ""; }; 78123FF997D6AA4CC2BFABF1F0A93100 /* Bits.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Bits.h; path = folly/Bits.h; sourceTree = ""; }; 781386408A834FB314B5B80336788C98 /* SysSyscall.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SysSyscall.h; path = folly/portability/SysSyscall.h; sourceTree = ""; }; - 78292FDA999C9C32726C8A5E4C3A1CE8 /* RCTParserUtils.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTParserUtils.m; sourceTree = ""; }; - 7849699F5D9238F474EA192DBE3B1BD3 /* RNLocalize.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNLocalize.m; path = ios/RNLocalize.m; sourceTree = ""; }; - 78545C54F7F735A7E71AC86B01AB3CD3 /* JSCRuntime.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = JSCRuntime.cpp; sourceTree = ""; }; + 784DF0D67E7C8BCF1BDCDBD7B77329A6 /* FBLazyIterator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBLazyIterator.h; path = FBLazyVector/FBLazyIterator.h; sourceTree = ""; }; + 785228C5185FAFB6F3841D742E180506 /* RCTTextShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTextShadowView.h; sourceTree = ""; }; 7862C607B7BE0510C2D65193F9B4B4F9 /* libTOCropViewController.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libTOCropViewController.a; path = libTOCropViewController.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 786509F4FA686BA87CF7D9D1756FE1E3 /* RCTLocalAssetImageLoader.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTLocalAssetImageLoader.mm; sourceTree = ""; }; - 78912319CEF3413E7D31B12DDCF6E9D0 /* RCTSettingsPlugins.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTSettingsPlugins.h; path = Libraries/Settings/RCTSettingsPlugins.h; sourceTree = ""; }; + 78829D61E9319B929CF22DDFFF0C76B6 /* UMFontInterface.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = UMFontInterface.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 7882D59EB464A6BE1CD402F091960ED9 /* RCTSRWebSocket.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCTSRWebSocket.m; path = Libraries/WebSocket/RCTSRWebSocket.m; sourceTree = ""; }; + 78A2D37DD7BFBBF51787FC6E94FB6A57 /* SDMemoryCache.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDMemoryCache.m; path = SDWebImage/Core/SDMemoryCache.m; sourceTree = ""; }; + 78CF49F7A34BA455F8057B84974018D2 /* UMConstantsInterface.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = UMConstantsInterface.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; 78EA4FAF835F44E1DF805704CAFA9D89 /* predictor_enc.c */ = {isa = PBXFileReference; includeInIndex = 1; name = predictor_enc.c; path = src/enc/predictor_enc.c; sourceTree = ""; }; + 78EE734148AADC58A891BBB0E623DDE9 /* RCTSurfaceDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSurfaceDelegate.h; sourceTree = ""; }; 78F1AEF54D5F3A4102B848FA30901EA1 /* FIRComponent.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRComponent.m; path = FirebaseCore/Sources/FIRComponent.m; sourceTree = ""; }; + 78F2B3888F5CA3B17CE01C43E8A4709F /* RNBootSplash-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNBootSplash-prefix.pch"; sourceTree = ""; }; 78F46322A0AE7EB0D6FA7E55B04DDF78 /* TestObserver.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TestObserver.h; path = yarpl/observable/TestObserver.h; sourceTree = ""; }; + 79010F55B58205B366B018393D416C39 /* RootView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RootView.m; path = ios/RootView.m; sourceTree = ""; }; + 7902601D1679CE7746DB860DA70C5D14 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; + 791EF85493741457ADCCC411F079EED5 /* SDWebImageCacheKeyFilter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWebImageCacheKeyFilter.m; path = SDWebImage/Core/SDWebImageCacheKeyFilter.m; sourceTree = ""; }; 791F9B8D660CCC66392DF7B3E7A1CC8E /* FIRLogger.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRLogger.m; path = FirebaseCore/Sources/FIRLogger.m; sourceTree = ""; }; - 792E8146D665B9BE40716A7239F38CB7 /* RNNativeViewHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNNativeViewHandler.m; sourceTree = ""; }; + 792BF75F2B73DBDBCA89D430142AA25A /* SDAnimatedImageView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDAnimatedImageView.h; path = SDWebImage/Core/SDAnimatedImageView.h; sourceTree = ""; }; 79402E701A69C8DF3E730013CE270EE8 /* RequestResponseThroughputTcp.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = RequestResponseThroughputTcp.cpp; path = rsocket/benchmarks/RequestResponseThroughputTcp.cpp; sourceTree = ""; }; 7957D5180559E76A9D30C43440B199E0 /* NetworkSocket.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = NetworkSocket.h; path = folly/net/NetworkSocket.h; sourceTree = ""; }; - 795879AD145A8FC49CE63D2F23335CD9 /* RCTTextViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTextViewManager.h; sourceTree = ""; }; 7975F4555AD3757824FA4466A2497A85 /* fa.lproj */ = {isa = PBXFileReference; includeInIndex = 1; name = fa.lproj; path = "Objective-C/TOCropViewController/Resources/fa.lproj"; sourceTree = ""; }; - 79815458817C4C36E6AD52E9F494CCCD /* RNBridgeModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNBridgeModule.h; path = RNNotifications/RNBridgeModule.h; sourceTree = ""; }; - 799C66ABBD581DDD88595D23EE45D9DD /* RNCSafeAreaViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCSafeAreaViewManager.m; path = ios/SafeAreaView/RNCSafeAreaViewManager.m; sourceTree = ""; }; - 79F313B36542D7D26580C516EABE6289 /* EXAV.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = EXAV.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - 7A2F23E4B697DCF260B94A6A4A8E1A8A /* RCTFollyConvert.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTFollyConvert.mm; sourceTree = ""; }; - 7A37CA79C6B36FB48C96D5E545155E9C /* RNSScreen.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNSScreen.m; path = ios/RNSScreen.m; sourceTree = ""; }; + 7979F000C239BF12E3EFFDB43C992451 /* react-native-webview.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "react-native-webview.xcconfig"; sourceTree = ""; }; + 799C9AC7F954CB78BD975A95932FB0FE /* RNRootView-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNRootView-dummy.m"; sourceTree = ""; }; + 79DA77C222099A6FB5A493355E54E9CF /* RNDateTimePicker.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNDateTimePicker.m; path = ios/RNDateTimePicker.m; sourceTree = ""; }; + 79E9108E881442C8CC274962D6041082 /* RCTCxxConvert.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTCxxConvert.m; sourceTree = ""; }; 7A5E39873A6677F27B80EDDAA5E8AC81 /* F14Map-fwd.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "F14Map-fwd.h"; path = "folly/container/F14Map-fwd.h"; sourceTree = ""; }; - 7A67725609E5F803B60526CF2258D59F /* SDWebImageOperation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageOperation.h; path = SDWebImage/Core/SDWebImageOperation.h; sourceTree = ""; }; 7A775134BE2BBC43B646F99B9D67150B /* FIRInstallations.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstallations.h; path = FirebaseInstallations/Source/Library/Public/FIRInstallations.h; sourceTree = ""; }; - 7A7AD95B78F3A4DF14DA2B010AF9E31F /* RCTResizeMode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTResizeMode.m; sourceTree = ""; }; 7A7C6D8E16697B9813BEB8DE1975BA7E /* dec_sse41.c */ = {isa = PBXFileReference; includeInIndex = 1; name = dec_sse41.c; path = src/dsp/dec_sse41.c; sourceTree = ""; }; - 7AA39110DD8D8834D95E5D61309C0695 /* EXAV-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "EXAV-prefix.pch"; sourceTree = ""; }; 7AB19467D5F96E09E702AF0A3DB76FD2 /* Hash.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Hash.h; path = folly/hash/Hash.h; sourceTree = ""; }; + 7AC093452642F039FE07351294D1D94E /* Bugsnag.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = Bugsnag.m; sourceTree = ""; }; 7AC126BC129D538B800F33EC28D5D75A /* cost_mips32.c */ = {isa = PBXFileReference; includeInIndex = 1; name = cost_mips32.c; path = src/dsp/cost_mips32.c; sourceTree = ""; }; - 7AC151F4ACB07F1042E6F75F7183386D /* RNFirebaseAdMobNativeExpressManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNFirebaseAdMobNativeExpressManager.h; sourceTree = ""; }; - 7AD03E484778128BB377B052A004064B /* BSGSerialization.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSGSerialization.h; sourceTree = ""; }; 7ADC07E6F8AB8508C61B7727E03C3273 /* Futex-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "Futex-inl.h"; path = "folly/detail/Futex-inl.h"; sourceTree = ""; }; 7AE2F69002D726C18C6E21B84BAD19E0 /* FIRInstallationsItem.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstallationsItem.m; path = FirebaseInstallations/Source/Library/FIRInstallationsItem.m; sourceTree = ""; }; - 7AFD68A83DDE516F3EC744376B026DC2 /* RCTWebSocketExecutor.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTWebSocketExecutor.mm; sourceTree = ""; }; - 7B070620454ABD843CBAC84F6D6C3662 /* ARTSolidColor.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = ARTSolidColor.m; sourceTree = ""; }; - 7B0B8D92CD92DD9D473C5D6444E69D53 /* UMTaskInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMTaskInterface.h; path = UMTaskManagerInterface/UMTaskInterface.h; sourceTree = ""; }; - 7B1D9EE485F3205646C5051B7F089AFA /* EXConstants-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "EXConstants-dummy.m"; sourceTree = ""; }; + 7B0825AD8CDCE3CD72669837CC39ACC5 /* React-Core-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-Core-prefix.pch"; sourceTree = ""; }; + 7B1DD2412AE65552F5D046C53B4E51FF /* RCTSafeAreaView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSafeAreaView.h; sourceTree = ""; }; + 7B263EEBD8CB0393F6D1B28D8E743068 /* RCTObjcExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTObjcExecutor.h; sourceTree = ""; }; 7B317CE30266E849D3ABDC2CBF602601 /* DuplexConnection.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DuplexConnection.h; path = rsocket/DuplexConnection.h; sourceTree = ""; }; - 7B6D26A831CE82E291EBDB3E08181A0B /* RCTEventEmitter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTEventEmitter.h; sourceTree = ""; }; - 7B755882455E18414CD2AF4E615548B3 /* SDImageHEICCoder.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageHEICCoder.m; path = SDWebImage/Core/SDImageHEICCoder.m; sourceTree = ""; }; 7B7B73865CCB3765817B24DF3D68838F /* SocketAddress.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SocketAddress.h; path = folly/SocketAddress.h; sourceTree = ""; }; - 7B819EFA3A99D5AFE206DDF40E01CCE0 /* FBLazyVector.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = FBLazyVector.xcconfig; sourceTree = ""; }; + 7B7D4D659420B9891D3A0EC8BAB650C4 /* RCTRefreshControl.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTRefreshControl.m; sourceTree = ""; }; + 7B83E53DF7A6FF8F260959DB6E7FAB45 /* RCTImageSource.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTImageSource.m; sourceTree = ""; }; 7B8B862A2BB8DD3C2F5379C018818357 /* AsyncSSLSocket.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AsyncSSLSocket.h; path = folly/io/async/AsyncSSLSocket.h; sourceTree = ""; }; 7B95F5390A986683EFD138AD4BE0C152 /* cached-powers.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = "cached-powers.cc"; path = "double-conversion/cached-powers.cc"; sourceTree = ""; }; 7B9C0630545B5C5225B4A190127D0C68 /* x509_vfy.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = x509_vfy.h; path = ios/include/openssl/x509_vfy.h; sourceTree = ""; }; @@ -7781,646 +7742,636 @@ 7BBC3B23E8EE049BC21430020FE0977C /* alpha_processing_sse41.c */ = {isa = PBXFileReference; includeInIndex = 1; name = alpha_processing_sse41.c; path = src/dsp/alpha_processing_sse41.c; sourceTree = ""; }; 7BEE7C2366CEEFD94681B02B93483CFF /* CustomizationPoint.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CustomizationPoint.h; path = folly/lang/CustomizationPoint.h; sourceTree = ""; }; 7BF3144925C79D25A7C2564D0DE6E7E9 /* String.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = String.cpp; path = folly/String.cpp; sourceTree = ""; }; - 7BFB63298D093460F7276CE628FD93AC /* SDWebImageIndicator.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWebImageIndicator.m; path = SDWebImage/Core/SDWebImageIndicator.m; sourceTree = ""; }; - 7BFD2EF897B8C56DCB198B1BAB5FC9E7 /* JSINativeModules.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = JSINativeModules.h; path = jsireact/JSINativeModules.h; sourceTree = ""; }; + 7BFD569DDAA4E13A2C31FE824026A992 /* RCTTouchEvent.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTouchEvent.h; sourceTree = ""; }; 7C0E589628171911A1111FDFEA643A78 /* AtFork.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AtFork.h; path = folly/detail/AtFork.h; sourceTree = ""; }; - 7C30C30074F4C0A197B79ED68957C6ED /* RNFastImage-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNFastImage-dummy.m"; sourceTree = ""; }; - 7C389B355B317DAF3433694C53E04F99 /* RCTDataRequestHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTDataRequestHandler.h; path = Libraries/Network/RCTDataRequestHandler.h; sourceTree = ""; }; - 7C5BF9AA9C782B87608E0F4E3255B3AA /* REABlockNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REABlockNode.h; sourceTree = ""; }; - 7C618878BFD5F90425C57D631F36882B /* RNFirebase-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNFirebase-dummy.m"; sourceTree = ""; }; - 7C62E93D5388B7592EDAB0D07709AE40 /* RNFirebaseAnalytics.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNFirebaseAnalytics.m; sourceTree = ""; }; - 7C6406852A37DF0AEA527CEAEB1001E0 /* EXRemoteNotificationPermissionRequester.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = EXRemoteNotificationPermissionRequester.h; sourceTree = ""; }; - 7C654678F23645C68953FBF5656D65B5 /* RCTScrollContentViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTScrollContentViewManager.m; sourceTree = ""; }; 7C65F5B0700270E45B94C5E35FFBD4D8 /* PropagateConst.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PropagateConst.h; path = folly/lang/PropagateConst.h; sourceTree = ""; }; 7C6B620F69BC5A02DD5A704A86A2A9DB /* FLEXNetworkTransaction.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FLEXNetworkTransaction.m; path = iOS/Plugins/FlipperKitNetworkPlugin/SKIOSNetworkPlugin/FLEXNetworkLib/FLEXNetworkTransaction.m; sourceTree = ""; }; + 7C7359202C1CCC5A66272D7A852D4AC2 /* SDImageAPNGCoder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageAPNGCoder.h; path = SDWebImage/Core/SDImageAPNGCoder.h; sourceTree = ""; }; 7C745A79AF19F774C0B130D70815EC58 /* filters_sse2.c */ = {isa = PBXFileReference; includeInIndex = 1; name = filters_sse2.c; path = src/dsp/filters_sse2.c; sourceTree = ""; }; 7C75FA0FD7A1F3608E0F85A2055ED66B /* buffer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = buffer.h; path = src/event2/buffer.h; sourceTree = ""; }; + 7C76F6872D692AF01A093C9AF06DC19B /* RNCAssetsLibraryRequestHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCAssetsLibraryRequestHandler.h; path = ios/RNCAssetsLibraryRequestHandler.h; sourceTree = ""; }; 7C7F0E0ABB3CCAD83667042C8771E973 /* token_enc.c */ = {isa = PBXFileReference; includeInIndex = 1; name = token_enc.c; path = src/enc/token_enc.c; sourceTree = ""; }; 7C825ED21B535E55F3D0EEE80B078549 /* FrameHeader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FrameHeader.h; path = rsocket/framing/FrameHeader.h; sourceTree = ""; }; 7C98A071646EAE29F19D01679B12360B /* SSLSessionImpl.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = SSLSessionImpl.cpp; path = folly/ssl/detail/SSLSessionImpl.cpp; sourceTree = ""; }; - 7C9A64743CE64AB168ABC1325EEA9023 /* RCTAppState.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTAppState.h; path = React/CoreModules/RCTAppState.h; sourceTree = ""; }; - 7C9BCECBF660D3275D3D5A4996817653 /* RNBackgroundTimer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNBackgroundTimer.h; path = ios/RNBackgroundTimer.h; sourceTree = ""; }; - 7CA58CB6C1F0627723A8061FDB5F32DA /* RNFetchBlobProgress.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNFetchBlobProgress.m; path = ios/RNFetchBlobProgress.m; sourceTree = ""; }; - 7CB50B1B70E1F32BA1A0D0477F868DBE /* rn-fetch-blob.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "rn-fetch-blob.xcconfig"; sourceTree = ""; }; + 7CB4910ABF9A6D272D4608D270D47E4E /* RNCMaskedViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCMaskedViewManager.h; path = ios/RNCMaskedViewManager.h; sourceTree = ""; }; 7CB5C667C1590F39BD2834E9BC051BD2 /* ShutdownSocketSet.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ShutdownSocketSet.h; path = folly/io/ShutdownSocketSet.h; sourceTree = ""; }; - 7CBD602AD6DCD7613DB5467CED953E8F /* UMFontManagerInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMFontManagerInterface.h; path = UMFontInterface/UMFontManagerInterface.h; sourceTree = ""; }; + 7CC7EB7774595B40CC66AF9C91DA7E4E /* BSG_KSCrashReportFilterCompletion.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashReportFilterCompletion.h; sourceTree = ""; }; 7CD0C39047A1B7B83CFC0981F4638A13 /* RSocket.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = RSocket.cpp; path = rsocket/RSocket.cpp; sourceTree = ""; }; 7CD3DAF8C6706B52472DB896820BA9F4 /* dynamic.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = dynamic.cpp; path = folly/dynamic.cpp; sourceTree = ""; }; + 7CDC9A92A23150D79B1472FB2AA64D36 /* React-jsi.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = "React-jsi.podspec"; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 7CE3A5AB6AC4FB4B8253F48C96879E6B /* RCTSegmentedControlManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSegmentedControlManager.m; sourceTree = ""; }; 7CE8CFE93F065B5AE69EE4458DB278F7 /* md5.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = md5.h; path = ios/include/openssl/md5.h; sourceTree = ""; }; + 7CE91569D663F35D8BBBE0EACE3C4B77 /* RAMBundleRegistry.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = RAMBundleRegistry.cpp; sourceTree = ""; }; 7CF6865EB0BF3A192313356A078FEF06 /* GDTCORUploadPackage_Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCORUploadPackage_Private.h; path = GoogleDataTransport/GDTCORLibrary/Private/GDTCORUploadPackage_Private.h; sourceTree = ""; }; 7CFC5F812F532B846C760DB22721ADF9 /* Pods-ShareRocketChatRN-acknowledgements.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-ShareRocketChatRN-acknowledgements.plist"; sourceTree = ""; }; - 7D0B357A176559069BF4F07A11BD76F2 /* BugsnagSessionTracker.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagSessionTracker.m; sourceTree = ""; }; + 7D06BBDAA65248E73AB83C3F8107ADFD /* react-native-webview-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "react-native-webview-prefix.pch"; sourceTree = ""; }; + 7D26AF808C0663F5447E6935843F2B2B /* RCTScrollViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTScrollViewManager.m; sourceTree = ""; }; 7D2A072D667BE41643EDC97BAC2D32FF /* utils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = utils.h; path = src/utils/utils.h; sourceTree = ""; }; 7D608428DD410ED2575A7BE646697BE3 /* GULMutableDictionary.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULMutableDictionary.h; path = GoogleUtilities/Network/Private/GULMutableDictionary.h; sourceTree = ""; }; - 7D762E43B438E1B0A696CE4CF33E1D2F /* RNVectorIcons.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNVectorIcons.xcconfig; sourceTree = ""; }; + 7D6608AA920DE840866750AE10978017 /* ReactNativeKeyboardTrackingView-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "ReactNativeKeyboardTrackingView-dummy.m"; sourceTree = ""; }; + 7D664B087A294B3328938907EF3E8A93 /* RCTAdditionAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTAdditionAnimatedNode.m; sourceTree = ""; }; 7D8A8FD62F6DD9E281B25AD6DCEFA865 /* es.lproj */ = {isa = PBXFileReference; includeInIndex = 1; name = es.lproj; path = "Objective-C/TOCropViewController/Resources/es.lproj"; sourceTree = ""; }; 7D9B2787E581ABE1196173416CD9CF93 /* TOCropOverlayView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TOCropOverlayView.h; path = "Objective-C/TOCropViewController/Views/TOCropOverlayView.h"; sourceTree = ""; }; 7DA0A76583DF71D03B06B268C8E1BD8E /* JSONSchema.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = JSONSchema.h; path = folly/experimental/JSONSchema.h; sourceTree = ""; }; - 7DBB41E2265A85A4A5A23B38A7B6E88E /* UIImage+Transform.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIImage+Transform.h"; path = "SDWebImage/Core/UIImage+Transform.h"; sourceTree = ""; }; - 7E0E27B24E2B25BC67038E12CDDC0EBD /* RCTConvert+CoreLocation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RCTConvert+CoreLocation.h"; sourceTree = ""; }; - 7E124D38A17FD4250EBC351A8C9F437C /* RCTSafeAreaViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSafeAreaViewManager.m; sourceTree = ""; }; + 7DC5154565FB95E2BE6043062A2E46AD /* REATransition.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REATransition.h; sourceTree = ""; }; + 7DDE7A89F4A196143E6A33D558D24471 /* BugsnagErrorReportApiClient.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagErrorReportApiClient.m; sourceTree = ""; }; + 7DEF68E13AEC93637B382CE7A47271FB /* RCTImageURLLoaderWithAttribution.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageURLLoaderWithAttribution.h; path = Libraries/Image/RCTImageURLLoaderWithAttribution.h; sourceTree = ""; }; + 7E2C4C1293460CFC239070FBF8E8CC96 /* react-native-safe-area-context.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = "react-native-safe-area-context.podspec"; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; 7E40F2D58A72308F8A10C0603682646F /* lossless_enc.c */ = {isa = PBXFileReference; includeInIndex = 1; name = lossless_enc.c; path = src/dsp/lossless_enc.c; sourceTree = ""; }; - 7E4E7A3A90D98C8D9583F48BA556A809 /* RCTRootShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTRootShadowView.h; sourceTree = ""; }; - 7E5138C96BF9E64D500B447348CB329D /* UIImage+ForceDecode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIImage+ForceDecode.m"; path = "SDWebImage/Core/UIImage+ForceDecode.m"; sourceTree = ""; }; - 7E62C990994B163B1E63FABB01328E5E /* SDImageIOAnimatedCoder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageIOAnimatedCoder.h; path = SDWebImage/Core/SDImageIOAnimatedCoder.h; sourceTree = ""; }; + 7E43F826345CD4E40C27310900F3F2CF /* ReactNativeART-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "ReactNativeART-prefix.pch"; sourceTree = ""; }; 7E7E46B76D0AFE3DFC477DC55C5DB326 /* libEXAppleAuthentication.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libEXAppleAuthentication.a; path = libEXAppleAuthentication.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 7E9752BC689397DC85C1EB924545728A /* SDAnimatedImageRep.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDAnimatedImageRep.m; path = SDWebImage/Core/SDAnimatedImageRep.m; sourceTree = ""; }; 7EA9C28C027D146D8046B627AEC38B10 /* SKNodeDescriptor.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = SKNodeDescriptor.mm; path = iOS/Plugins/FlipperKitLayoutPlugin/FlipperKitLayoutPlugin/SKNodeDescriptor.mm; sourceTree = ""; }; 7EA9E7E0A8E853CA0F94059F56F6E222 /* ScheduledFrameTransport.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ScheduledFrameTransport.h; path = rsocket/framing/ScheduledFrameTransport.h; sourceTree = ""; }; - 7EDDBD66CBFF6B1708122EE42C2FB9C5 /* react-native-document-picker.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = "react-native-document-picker.podspec"; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - 7EEF847DAF7DFCB10B8D9F2F6AD2C9AB /* RCTPerformanceLogger.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTPerformanceLogger.m; sourceTree = ""; }; 7EF180FCE27D736A47301B0BD8F72177 /* ScheduledSingleSubscription.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ScheduledSingleSubscription.h; path = rsocket/internal/ScheduledSingleSubscription.h; sourceTree = ""; }; - 7F0600C755BC4C06B2F73F1604FE74D4 /* EXWebBrowser-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "EXWebBrowser-dummy.m"; sourceTree = ""; }; - 7F0A7446707EA1C6ED5A30A9CC9AEDD4 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; - 7F28FCD5E18CE510ADEDC2288AF4189C /* RCTConvertHelpers.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTConvertHelpers.mm; sourceTree = ""; }; + 7F21E3E56A59AE7A0B72F5B9D7D4683D /* UIImage+MultiFormat.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIImage+MultiFormat.h"; path = "SDWebImage/Core/UIImage+MultiFormat.h"; sourceTree = ""; }; + 7F2CBBD70B6F88CACA6CE5B43166A56F /* UMReactNativeAdapter.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = UMReactNativeAdapter.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 7F36A4E184B87B46E2BE4C146D740885 /* RCTSubtractionAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSubtractionAnimatedNode.m; sourceTree = ""; }; + 7F59DCCDC1C23753DE418FEAE620D632 /* RCTInputAccessoryShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTInputAccessoryShadowView.m; sourceTree = ""; }; + 7F5B1FE3EF55176F25FE41E85F1EFDAD /* RNFirebaseAdMobInterstitial.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNFirebaseAdMobInterstitial.h; sourceTree = ""; }; 7F6D72CF3105B4E6E2B3311514B7C10B /* StringKeyedSet.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = StringKeyedSet.h; path = folly/experimental/StringKeyedSet.h; sourceTree = ""; }; - 7F8A10F0233DA3B3CBEE27074EBFC203 /* SDImageAPNGCoder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageAPNGCoder.h; path = SDWebImage/Core/SDImageAPNGCoder.h; sourceTree = ""; }; - 7FB0C95DF7E2E303FFFE3017E48AF553 /* react-native-safe-area-context-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "react-native-safe-area-context-dummy.m"; sourceTree = ""; }; - 7FBBBFE618BCE4C5D50EB9810A6637CD /* RCTShadowView+Internal.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RCTShadowView+Internal.m"; sourceTree = ""; }; - 7FDA191D4CCF1F4510BEEA4F4E9F2B67 /* BugsnagCrashReport.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagCrashReport.h; sourceTree = ""; }; + 7F9F9B95B3D7132BDF6AE5E4920A97EC /* BSG_KSCrashReportVersion.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashReportVersion.h; sourceTree = ""; }; + 7FA6B50EAC9CA7DB8CF121FB5D7A5DFF /* SDWebImageCacheKeyFilter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageCacheKeyFilter.h; path = SDWebImage/Core/SDWebImageCacheKeyFilter.h; sourceTree = ""; }; + 7FCB1E4C3CCF5E377D0545A0A22C52AB /* RCTAnimatedImage.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTAnimatedImage.m; sourceTree = ""; }; + 7FDF0F24A5C291A3514EA45D08188575 /* EXVideoThumbnailsModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXVideoThumbnailsModule.h; path = EXVideoThumbnails/EXVideoThumbnailsModule.h; sourceTree = ""; }; + 7FE0AA1E207FD887A7D730C551A2DF1A /* BSG_KSMach.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSMach.c; sourceTree = ""; }; 7FF01D60E0DE1198837993559A8B2889 /* idea.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = idea.h; path = ios/include/openssl/idea.h; sourceTree = ""; }; - 8006576A15E920884603E8789CAB9F3C /* RCTFileRequestHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTFileRequestHandler.h; path = Libraries/Network/RCTFileRequestHandler.h; sourceTree = ""; }; + 800C3A1045AE80D098764718B680BD2D /* BSG_KSFileUtils.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSFileUtils.c; sourceTree = ""; }; + 801B6580E775822080DE883164D5DBAE /* SDInternalMacros.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDInternalMacros.m; path = SDWebImage/Private/SDInternalMacros.m; sourceTree = ""; }; 802121F5B756ACBFDD6D08C36246DADD /* libReact-RCTLinking.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libReact-RCTLinking.a"; path = "libReact-RCTLinking.a"; sourceTree = BUILT_PRODUCTS_DIR; }; - 8027FF476E99F0262910226C469925AA /* QBAssetsViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = QBAssetsViewController.m; path = ios/QBImagePicker/QBImagePicker/QBAssetsViewController.m; sourceTree = ""; }; - 80448D56DD2B463BCDBFBB3E5763237E /* RCTBridgeDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBridgeDelegate.h; sourceTree = ""; }; - 8054C319CDF752742F2FD0C739ED8E1E /* BSG_KSCrashSentry_Signal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashSentry_Signal.h; sourceTree = ""; }; + 8027D5D7C0EA673B28C61FFDCBA57939 /* SDWebImageDownloader.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWebImageDownloader.m; path = SDWebImage/Core/SDWebImageDownloader.m; sourceTree = ""; }; + 802DED528A3120C56B740F3E6778385B /* RNTapHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNTapHandler.m; sourceTree = ""; }; + 8069C3A9598D86CED1E4219CBB67961D /* React-RCTActionSheet.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-RCTActionSheet.xcconfig"; sourceTree = ""; }; 8074129DF318155B29544548E1CAF4A3 /* libreact-native-jitsi-meet.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libreact-native-jitsi-meet.a"; path = "libreact-native-jitsi-meet.a"; sourceTree = BUILT_PRODUCTS_DIR; }; 8095BB8053756018C2AEBCCA3464114B /* enc_mips32.c */ = {isa = PBXFileReference; includeInIndex = 1; name = enc_mips32.c; path = src/dsp/enc_mips32.c; sourceTree = ""; }; 809EC9165948C2BAF546C95AD86A48B6 /* Cast.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Cast.h; path = folly/lang/Cast.h; sourceTree = ""; }; 80A51B61FECFED8D1A0D95AAD32A2938 /* libEXHaptics.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libEXHaptics.a; path = libEXHaptics.a; sourceTree = BUILT_PRODUCTS_DIR; }; + 80B02CBBA322ED01E5AD7A3B1891806C /* rn-fetch-blob.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "rn-fetch-blob.xcconfig"; sourceTree = ""; }; 80B52EAF8F2F8CB6936A987840B87648 /* SysMembarrier.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = SysMembarrier.cpp; path = folly/portability/SysMembarrier.cpp; sourceTree = ""; }; - 80B980A2DC985D47E5B4F3CF526DFD78 /* RCTNativeAnimatedModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTNativeAnimatedModule.h; path = Libraries/NativeAnimation/RCTNativeAnimatedModule.h; sourceTree = ""; }; - 80B9C566904D39AD05752A435EC43878 /* advancedIos.md */ = {isa = PBXFileReference; includeInIndex = 1; name = advancedIos.md; path = docs/advancedIos.md; sourceTree = ""; }; - 80CF828602B6DB507E88F991AE246BED /* RCTActionSheetManager.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTActionSheetManager.mm; sourceTree = ""; }; 80FEC1FF4A7FBCE76FD9814523AC0CA6 /* Folly.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = Folly.xcconfig; sourceTree = ""; }; 81113C05310AA610F499A9D3D80DCDF2 /* FlipperResponder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FlipperResponder.h; path = xplat/Flipper/FlipperResponder.h; sourceTree = ""; }; 81147D7932B8A1B042539ACFC2A3BE4D /* Enumerate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Enumerate.h; path = folly/container/Enumerate.h; sourceTree = ""; }; - 811549BA5884DCB69CBD81DD7841462B /* RCTUtilsUIOverride.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTUtilsUIOverride.h; sourceTree = ""; }; - 8115FE918D09220F2DE70FDF0B87A2E1 /* RCTAssert.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTAssert.h; sourceTree = ""; }; 812075657E590B5CDDA368DC0ABDE940 /* NetOps.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = NetOps.cpp; path = folly/net/NetOps.cpp; sourceTree = ""; }; - 813969899FF7A97B2580ECA23BEF72A2 /* RNCWebView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCWebView.h; path = apple/RNCWebView.h; sourceTree = ""; }; + 813A7430388309B418DD081264472193 /* ARTCGFloatArray.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ARTCGFloatArray.h; path = ios/ARTCGFloatArray.h; sourceTree = ""; }; + 813E2591B78AB2F816E30E147390CBB9 /* RCTSubtractionAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSubtractionAnimatedNode.h; sourceTree = ""; }; 81554050354D000790D952969A22BEFD /* pb_encode.c */ = {isa = PBXFileReference; includeInIndex = 1; path = pb_encode.c; sourceTree = ""; }; 817CB6DF4BFCD9AF081CDEEB072C48C4 /* F14IntrinsicsAvailability.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = F14IntrinsicsAvailability.h; path = folly/container/detail/F14IntrinsicsAvailability.h; sourceTree = ""; }; 818C77783BD22EAC8309ADF4787BA66F /* mux.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = mux.h; path = src/webp/mux.h; sourceTree = ""; }; - 81A037AD65496FFC1B100F0F22692DEC /* RCTReconnectingWebSocket.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTReconnectingWebSocket.h; path = Libraries/WebSocket/RCTReconnectingWebSocket.h; sourceTree = ""; }; - 81AD6C487CCEAA0F5DAFF49CC9DDD9F9 /* experiments.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = experiments.cpp; sourceTree = ""; }; - 81F5C2EF37CF8CEA19EE31033EF82125 /* UMPermissionsInterface.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = UMPermissionsInterface.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 818F50374AF6697018699132471F5A9B /* BSG_KSCrashSentry_User.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashSentry_User.h; sourceTree = ""; }; + 81AFDEF547C5C5756ED77C489BE02B72 /* RCTRedBoxSetEnabled.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTRedBoxSetEnabled.m; sourceTree = ""; }; + 81FA983594CECD154E888E5A13800819 /* React-RCTBlob.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-RCTBlob.xcconfig"; sourceTree = ""; }; 820116149E7F0B0D49DD0A6E6984027D /* WarmResumeManager.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = WarmResumeManager.cpp; path = rsocket/internal/WarmResumeManager.cpp; sourceTree = ""; }; 822D4EB1CE679526E7E91CB7FB31A3CD /* rescaler_neon.c */ = {isa = PBXFileReference; includeInIndex = 1; name = rescaler_neon.c; path = src/dsp/rescaler_neon.c; sourceTree = ""; }; 823CDE1E20E25209A991C64E100926EF /* Fcntl.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = Fcntl.cpp; path = folly/portability/Fcntl.cpp; sourceTree = ""; }; - 82534E17B8C568B7A4B034494BFCFCDA /* RNFastImage.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RNFastImage.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - 8281F16DD5F0C7D51335DF5FCD121D39 /* ReactNativeART-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "ReactNativeART-prefix.pch"; sourceTree = ""; }; - 828FBD145761D75B0E31ABC077DB5116 /* RCTMultipartDataTask.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTMultipartDataTask.m; sourceTree = ""; }; - 82B4266BB676B66E2D74AD3DDE2289B0 /* BSG_KSCrashC.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSCrashC.c; sourceTree = ""; }; + 82505B6EB86B278B705E2B164F5A4D51 /* TurboModuleUtils.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = TurboModuleUtils.cpp; path = turbomodule/core/TurboModuleUtils.cpp; sourceTree = ""; }; + 825FA67B5A05BA2C03A27AB6B3F518B0 /* RCTPerfMonitor.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTPerfMonitor.mm; sourceTree = ""; }; + 828360F2C5EBD150D6C1422C8205CFE7 /* REABezierNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REABezierNode.m; sourceTree = ""; }; + 82A2E1000F98F68AB290D792511BDA1E /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; + 82AE80253AFBC545D11E8DAD3CD5DCC8 /* RCTDevLoadingView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTDevLoadingView.h; sourceTree = ""; }; 82BB41D75E00673F2C570791310E59A2 /* GDTCORAssert.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCORAssert.h; path = GoogleDataTransport/GDTCORLibrary/Public/GDTCORAssert.h; sourceTree = ""; }; - 82C01AE34B43424EA0DE03555983062D /* SDAnimatedImageView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDAnimatedImageView.h; path = SDWebImage/Core/SDAnimatedImageView.h; sourceTree = ""; }; 82CFE6817EEABE26D5D408F9D8C06852 /* TOCropViewController.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = TOCropViewController.xcconfig; sourceTree = ""; }; - 82FFF75FB306AB23B867834650F67403 /* UMExportedModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMExportedModule.h; path = UMCore/UMExportedModule.h; sourceTree = ""; }; + 82EB565C0F82A998B5CEA6A1F08709AE /* RNFirebaseCrashlytics.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNFirebaseCrashlytics.h; sourceTree = ""; }; 8306941218A27B7FAB0F5F24FDA091E0 /* GDTCCTNanopbHelpers.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCCTNanopbHelpers.h; path = GoogleDataTransportCCTSupport/GDTCCTLibrary/Private/GDTCCTNanopbHelpers.h; sourceTree = ""; }; 830FD88C94F259C1A38BAE2C9E877464 /* demux.c */ = {isa = PBXFileReference; includeInIndex = 1; name = demux.c; path = src/demux/demux.c; sourceTree = ""; }; - 8314C783AAAD40DF3EC8B2AB3571FDCD /* RNCommandsHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCommandsHandler.m; path = RNNotifications/RNCommandsHandler.m; sourceTree = ""; }; 8331554D3A413E7FCEE06A54CBD9353B /* ConnectionFactory.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ConnectionFactory.h; path = rsocket/ConnectionFactory.h; sourceTree = ""; }; 833332B1E0595783A9D2377B0749EAC3 /* 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 = ""; }; - 8349C1ED2875E354054E1A1C6D0DCAB1 /* react-native-orientation-locker-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "react-native-orientation-locker-prefix.pch"; sourceTree = ""; }; 834CA45B23BDAEA96E6F41D0C48F49EE /* signalhandler.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = signalhandler.cc; path = src/signalhandler.cc; sourceTree = ""; }; 83583FC1B109C80FBCC8A68E68DF2276 /* PriorityUnboundedQueueSet.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PriorityUnboundedQueueSet.h; path = folly/concurrency/PriorityUnboundedQueueSet.h; sourceTree = ""; }; - 835EC2AB03939CB3829F05F29BF62A32 /* RCTSlider.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSlider.m; sourceTree = ""; }; + 83693D5451FDF4316F3F70951A39E917 /* RCTFollyConvert.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTFollyConvert.mm; sourceTree = ""; }; + 8372FF8B7ABBCACFD7717706CC40F8D1 /* REAConcatNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REAConcatNode.h; sourceTree = ""; }; 8374BECF9023BBF87F380775FA231776 /* UTF8String.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UTF8String.h; path = folly/UTF8String.h; sourceTree = ""; }; - 83A50FFDF1FBD07F4FD73E119C3704D2 /* LongLivedObject.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = LongLivedObject.h; path = turbomodule/core/LongLivedObject.h; sourceTree = ""; }; - 83CFF644F37AB474C65E4D5EB0CD86FE /* SDImageIOCoder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageIOCoder.h; path = SDWebImage/Core/SDImageIOCoder.h; sourceTree = ""; }; + 839841D83C0E15B51C7266678BF09983 /* BSG_KSJSONCodec.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSJSONCodec.h; sourceTree = ""; }; + 83A43C907B6DFDA8CD215975225E6471 /* react-native-appearance-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "react-native-appearance-prefix.pch"; sourceTree = ""; }; + 83B78F749963DCB88F05E67EA16225F4 /* RCTWeakProxy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTWeakProxy.m; sourceTree = ""; }; + 83C56E34D9977B3F182946FBCA36820E /* React-jsiexecutor-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-jsiexecutor-dummy.m"; sourceTree = ""; }; + 83E1ED294B06F48CE20CDDCFB104C9AF /* EXVideoManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = EXVideoManager.m; sourceTree = ""; }; 83E57D81AC9B27761CE40C566F67EB80 /* GULKeychainUtils.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GULKeychainUtils.m; path = GoogleUtilities/Environment/SecureStorage/GULKeychainUtils.m; sourceTree = ""; }; 83F11EE95BDA3D4C8755C4D66D0B74D6 /* Init.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Init.h; path = folly/ssl/Init.h; sourceTree = ""; }; - 83FBC58A4E8CE4DD3045967787AC7A8A /* UMViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMViewManager.h; path = UMCore/UMViewManager.h; sourceTree = ""; }; - 84019186F066F8D813942800C2E415BC /* UIImage+ExtendedCacheData.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIImage+ExtendedCacheData.m"; path = "SDWebImage/Core/UIImage+ExtendedCacheData.m"; sourceTree = ""; }; - 842878067937A44B227D66C01C43030D /* REAValueNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REAValueNode.m; sourceTree = ""; }; + 83FC675644CE3B3C8013873E836AFB44 /* BSG_KSCrashReportFilter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashReportFilter.h; sourceTree = ""; }; + 843B6C30CF16C180A1CB3FEB045188A0 /* UMReactLogHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMReactLogHandler.h; sourceTree = ""; }; 8449A83B76B6D20EA14E5B02BF02BD30 /* SKDescriptorMapper.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = SKDescriptorMapper.mm; path = iOS/Plugins/FlipperKitLayoutPlugin/FlipperKitLayoutPlugin/SKDescriptorMapper.mm; sourceTree = ""; }; - 8455501E57C734BAE091778D44D2E199 /* Compression.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = Compression.m; path = ios/src/Compression.m; sourceTree = ""; }; 845577FEF371C2976581AA6142746A7E /* ThreadPoolExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ThreadPoolExecutor.h; path = folly/executors/ThreadPoolExecutor.h; sourceTree = ""; }; 845E6849A4D3BBECFCA6E87156A91290 /* FIRBundleUtil.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRBundleUtil.h; path = FirebaseCore/Sources/FIRBundleUtil.h; sourceTree = ""; }; 84887842153D8E6D48F397114335F4A0 /* Shell.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = Shell.cpp; path = folly/system/Shell.cpp; sourceTree = ""; }; - 84B6CA5103C86DFBDF45453A429A0B28 /* RAMBundleRegistry.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = RAMBundleRegistry.cpp; sourceTree = ""; }; + 84958FEE733A0752D626DB9D4BDB26B2 /* RCTMessageThread.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTMessageThread.mm; sourceTree = ""; }; 8507EE48E0C9C50B5318C5CF50122148 /* TimeoutQueue.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TimeoutQueue.h; path = folly/TimeoutQueue.h; sourceTree = ""; }; - 85155F53DD15AAF844D7921324350B39 /* REACondNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REACondNode.h; sourceTree = ""; }; 852DC564997734F4D539E66A2B03F20B /* Pods-ShareRocketChatRN.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-ShareRocketChatRN.release.xcconfig"; sourceTree = ""; }; - 852FE4D4C630CDD04A0F67358C135738 /* RNFirebaseFunctions.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNFirebaseFunctions.m; sourceTree = ""; }; - 8531146500933BC6E506E180A61DEEB1 /* EXAppleAuthenticationMappings.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXAppleAuthenticationMappings.h; path = EXAppleAuthentication/EXAppleAuthenticationMappings.h; sourceTree = ""; }; 8531CB0EA12A95CB820F14BEF2D836D9 /* pkcs12.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = pkcs12.h; path = ios/include/openssl/pkcs12.h; sourceTree = ""; }; 85387473295C9E38C32880334B230F74 /* ManualTimekeeper.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = ManualTimekeeper.cpp; path = folly/futures/ManualTimekeeper.cpp; sourceTree = ""; }; - 85402553C855BA51F1055005117A39FF /* RCTJSStackFrame.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTJSStackFrame.h; sourceTree = ""; }; 8543FE630989B4DB0AFAF777BE0ABA77 /* String.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = String.cpp; path = folly/String.cpp; sourceTree = ""; }; - 854D1744DD389D5D8C1ACE4FA1387DE9 /* REAUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = REAUtils.h; path = ios/REAUtils.h; sourceTree = ""; }; - 85684341D05B09C596F5F3B29156D604 /* JSBigString.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = JSBigString.h; sourceTree = ""; }; + 854DFA1E151E11854184F8B47D28B5BE /* RCTAnimationUtils.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTAnimationUtils.m; sourceTree = ""; }; + 8553F718EA3BAA0C1A26F85C456334A5 /* RCTBaseTextInputShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTBaseTextInputShadowView.m; sourceTree = ""; }; 856B5CD56F194FAD26EA91620B66D614 /* libGoogleDataTransport.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libGoogleDataTransport.a; path = libGoogleDataTransport.a; sourceTree = BUILT_PRODUCTS_DIR; }; 8573BA2D023860A9F6D970B57450563C /* PriorityUnboundedBlockingQueue.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PriorityUnboundedBlockingQueue.h; path = folly/executors/task_queue/PriorityUnboundedBlockingQueue.h; sourceTree = ""; }; 85817BE98ECD2825C99892444497E8B6 /* EventBaseLocal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EventBaseLocal.h; path = folly/io/async/EventBaseLocal.h; sourceTree = ""; }; 858AFA83985937825473045CF6808B15 /* librn-extensions-share.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "librn-extensions-share.a"; path = "librn-extensions-share.a"; sourceTree = BUILT_PRODUCTS_DIR; }; 858E89073FD01DA1518836643725F960 /* FIRInstallationsIIDTokenStore.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstallationsIIDTokenStore.m; path = FirebaseInstallations/Source/Library/IIDMigration/FIRInstallationsIIDTokenStore.m; sourceTree = ""; }; + 85A0955D86E4C98A00DB4C29038EA8E8 /* RNCSafeAreaViewLocalData.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCSafeAreaViewLocalData.m; path = ios/SafeAreaView/RNCSafeAreaViewLocalData.m; sourceTree = ""; }; 85AC1326A0F55B702F31FCB4E29C0D18 /* bit_reader_utils.c */ = {isa = PBXFileReference; includeInIndex = 1; name = bit_reader_utils.c; path = src/utils/bit_reader_utils.c; sourceTree = ""; }; - 85AC90391ADECD53E3556D7003D3A23F /* UMSensorsInterface.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMSensorsInterface.xcconfig; sourceTree = ""; }; + 85C1156312F9CEBB9D1A0C6DB38ED48C /* ReactNativeART-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "ReactNativeART-dummy.m"; sourceTree = ""; }; 85C9BABF3B59E5A42C45C1499E076A58 /* json_patch.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = json_patch.h; path = folly/json_patch.h; sourceTree = ""; }; - 85CC15D655072A7A9895561BE72AD16C /* RCTRawTextShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTRawTextShadowView.m; sourceTree = ""; }; - 85D7EA372D091B41050D682B16FBD362 /* JSIExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = JSIExecutor.h; path = jsireact/JSIExecutor.h; sourceTree = ""; }; + 85F2264BEB9F97800F262A70B774113F /* KeyboardTrackingViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = KeyboardTrackingViewManager.m; path = lib/KeyboardTrackingViewManager.m; sourceTree = ""; }; 85F7C760A276EBFC7EA9BBA94C4EA357 /* strtod.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = strtod.h; path = "double-conversion/strtod.h"; sourceTree = ""; }; 85F8F0AB972F155D2DB653D0022B587F /* alpha_processing_sse2.c */ = {isa = PBXFileReference; includeInIndex = 1; name = alpha_processing_sse2.c; path = src/dsp/alpha_processing_sse2.c; sourceTree = ""; }; 8603EA0586A87A1E806232F196E86E81 /* rc2.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = rc2.h; path = ios/include/openssl/rc2.h; sourceTree = ""; }; - 86063991790753F559A821BD48B65DF7 /* RCTKeyboardObserver.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTKeyboardObserver.h; path = React/CoreModules/RCTKeyboardObserver.h; sourceTree = ""; }; - 86159C8534820A22070AD2CBF12AF275 /* EXAV-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "EXAV-dummy.m"; sourceTree = ""; }; 861E52E0F513A697B05B52BAB1712F11 /* UICollectionView+SKInvalidation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UICollectionView+SKInvalidation.h"; path = "iOS/Plugins/FlipperKitLayoutPlugin/FlipperKitLayoutPlugin/UICollectionView+SKInvalidation.h"; sourceTree = ""; }; + 86257A97ADDBD4BB3AC0EA25D1E1191B /* FFFastImageSource.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FFFastImageSource.m; path = ios/FastImage/FFFastImageSource.m; sourceTree = ""; }; 863FE9B5F77248181613FA2BDB5ED4FA /* AsyncTrace.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AsyncTrace.h; path = folly/detail/AsyncTrace.h; sourceTree = ""; }; 86779627046C38D9E5C553C1856D3971 /* Stdio.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = Stdio.cpp; path = folly/portability/Stdio.cpp; sourceTree = ""; }; 867927D4402F4B8C40812057FCAF3150 /* iterator_enc.c */ = {isa = PBXFileReference; includeInIndex = 1; name = iterator_enc.c; path = src/enc/iterator_enc.c; sourceTree = ""; }; - 867CAF5B22EC96C7FAF2D9FEBDE794F8 /* UMPermissionsInterface-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "UMPermissionsInterface-prefix.pch"; sourceTree = ""; }; - 86A09AE5C83D80F26243E9C6A3BC235E /* EXVideoManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = EXVideoManager.h; sourceTree = ""; }; - 86AC22B4BB409F1E101B286CF2109DB4 /* EXPermissions.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXPermissions.h; path = EXPermissions/EXPermissions.h; sourceTree = ""; }; + 868848EE008D5B6B2D4B9C56EF508588 /* RCTWebSocketModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTWebSocketModule.h; path = React/CoreModules/RCTWebSocketModule.h; sourceTree = ""; }; 86AC27475EFFAFF90ED461FD8F0DEC1F /* DecoratedAsyncTransportWrapper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DecoratedAsyncTransportWrapper.h; path = folly/io/async/DecoratedAsyncTransportWrapper.h; sourceTree = ""; }; - 86B6EA59C8167D6CAF1A59391D82DA84 /* RCTAdditionAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTAdditionAnimatedNode.h; sourceTree = ""; }; - 86BCF8918FA45AE14CB04B6ADA4D6627 /* RCTSurfaceHostingView.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTSurfaceHostingView.mm; sourceTree = ""; }; 86CC666650265ECF3DD15EDCF8418BA2 /* FIRInstallationsAPIService.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstallationsAPIService.h; path = FirebaseInstallations/Source/Library/InstallationsAPI/FIRInstallationsAPIService.h; sourceTree = ""; }; 86CD7480166E478F25F1C37B316E3B56 /* GDTCORTransformer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCORTransformer.h; path = GoogleDataTransport/GDTCORLibrary/Private/GDTCORTransformer.h; sourceTree = ""; }; - 86CF0BC0CA68A46963CF070AD7302459 /* UMModuleRegistryAdapter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = UMModuleRegistryAdapter.m; sourceTree = ""; }; 86DA897FDF9E8F354124B4AB5C9D7D74 /* rpc_compat.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = rpc_compat.h; path = src/event2/rpc_compat.h; sourceTree = ""; }; 86DE475B8C6CB8C7E6355AEEC42F2E1C /* GULNetwork.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GULNetwork.m; path = GoogleUtilities/Network/GULNetwork.m; sourceTree = ""; }; - 86E393A367FE82ABC7B17ECBE2B0B1E2 /* ARTSolidColor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = ARTSolidColor.h; sourceTree = ""; }; - 86E7A2742CDDAC5A74CEFA4B2A333DE2 /* RCTTrackingAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTrackingAnimatedNode.h; sourceTree = ""; }; - 8703D2055FA62C7E75DC2CEC5F8A8D2A /* RCTTiming.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTTiming.mm; sourceTree = ""; }; - 87214272F27375D3F241FF271FEDB77A /* SDGraphicsImageRenderer.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDGraphicsImageRenderer.m; path = SDWebImage/Core/SDGraphicsImageRenderer.m; sourceTree = ""; }; + 86EFF9B0108428BA2CCCD99017815624 /* BSG_KSCrashDoctor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashDoctor.h; sourceTree = ""; }; 874519DA12D7FAC072DD95515A159F03 /* ScopedEventBaseThread.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ScopedEventBaseThread.h; path = folly/io/async/ScopedEventBaseThread.h; sourceTree = ""; }; - 874DD879EBBA0887150F2F86F07E12C7 /* SDWebImageOperation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWebImageOperation.m; path = SDWebImage/Core/SDWebImageOperation.m; sourceTree = ""; }; - 874E66AD127D6AABA1479A242A5DF47A /* SDGraphicsImageRenderer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDGraphicsImageRenderer.h; path = SDWebImage/Core/SDGraphicsImageRenderer.h; sourceTree = ""; }; 8757D947022B1CD57422EF439A200556 /* Bits.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Bits.h; path = folly/experimental/Bits.h; sourceTree = ""; }; - 876083BCCE2D2CC8E94DE4899EB6ADAD /* RNSScreenStack.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNSScreenStack.h; path = ios/RNSScreenStack.h; sourceTree = ""; }; - 87652A5B57CFCE1AE72BF7CAE1484B6F /* react-native-background-timer.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "react-native-background-timer.xcconfig"; sourceTree = ""; }; - 877ECD691ABB300A0857DC2D3F38502D /* QBCheckmarkView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = QBCheckmarkView.m; path = ios/QBImagePicker/QBImagePicker/QBCheckmarkView.m; sourceTree = ""; }; + 87582EA6E61006A440F724E6FE877EA9 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; + 877C42E5C07C8B5843512624CAA59B9E /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; 8783AFFE02885B74233095A928454D3C /* IOThreadPoolExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = IOThreadPoolExecutor.h; path = folly/executors/IOThreadPoolExecutor.h; sourceTree = ""; }; - 87879C5F90E0BF186BD7EB7751024664 /* RCTNetworkPlugins.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTNetworkPlugins.h; path = Libraries/Network/RCTNetworkPlugins.h; sourceTree = ""; }; - 878DC5AA91F3DFEE8A5FCE23CDF9F154 /* RNSScreenContainer.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNSScreenContainer.m; path = ios/RNSScreenContainer.m; sourceTree = ""; }; - 8794386314BC0C939B3CB5F62BEF3F43 /* RNFetchBlob.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNFetchBlob.h; sourceTree = ""; }; - 879C4675A42A906C9C1BAC3DFB52488A /* RCTKeyCommandsManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTKeyCommandsManager.h; path = ios/KeyCommands/RCTKeyCommandsManager.h; sourceTree = ""; }; - 87A15D379D5A6FF0CA7347DCFDE9F8DD /* RCTTrackingAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTTrackingAnimatedNode.m; sourceTree = ""; }; + 8795626E1963B04831CE86BC66CB9FF5 /* RNFirebaseDatabaseReference.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNFirebaseDatabaseReference.h; sourceTree = ""; }; + 879CBC951898F167B87A604EA6A12D15 /* BugsnagSessionTracker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagSessionTracker.h; sourceTree = ""; }; 87AAB06C49E8BA84719378BA9A839301 /* Time.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = Time.cpp; path = folly/portability/Time.cpp; sourceTree = ""; }; + 87B5274D56C6FAF9A5AB98C3F54A417E /* UMPermissionsInterface.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = UMPermissionsInterface.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; 87B68BAE628A2A8CA9917371672FCF56 /* FIRErrorCode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRErrorCode.h; path = FirebaseCore/Sources/Private/FIRErrorCode.h; sourceTree = ""; }; - 87B71FD51EA1572EA6A630BDD7648867 /* ReactNativeKeyboardTrackingView.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = ReactNativeKeyboardTrackingView.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - 87BC5392A15D33DF52E1EA10F18A8449 /* RCTUIImageViewAnimated.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTUIImageViewAnimated.m; sourceTree = ""; }; + 87C319A89D3207460B09DC7A0E301483 /* Yoga.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = Yoga.modulemap; sourceTree = ""; }; + 87C7E9F876B44CFB7BCD2DB3330F4511 /* BugsnagConfiguration.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagConfiguration.m; sourceTree = ""; }; + 87D7C7C971E7E0DA4B32416966950A17 /* RNDocumentPicker.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNDocumentPicker.m; path = ios/RNDocumentPicker/RNDocumentPicker.m; sourceTree = ""; }; 87EF947C2BC99F143419A619075D6445 /* AsyncSignalHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AsyncSignalHandler.h; path = folly/io/async/AsyncSignalHandler.h; sourceTree = ""; }; - 87F1EBB941B35CC24467F4DC20EF659B /* SDWebImageDownloaderDecryptor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageDownloaderDecryptor.h; path = SDWebImage/Core/SDWebImageDownloaderDecryptor.h; sourceTree = ""; }; 87F2F02BFE3253834E0979DE76815444 /* bufferevent_ssl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = bufferevent_ssl.h; path = src/event2/bufferevent_ssl.h; sourceTree = ""; }; - 87F5B9141D7DADA8D05A9CFFBDE907C6 /* UMCore-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "UMCore-dummy.m"; sourceTree = ""; }; 87FB6F51543C5D49366322E741CBF6E6 /* Futex.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Futex.h; path = folly/detail/Futex.h; sourceTree = ""; }; 87FEC7BDD5CE85B69C06F132CB3BE556 /* RSocketClient.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RSocketClient.h; path = rsocket/RSocketClient.h; sourceTree = ""; }; 87FF38169DC4F726915F343D04342F3A /* WebRTC.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = WebRTC.framework; path = Frameworks/WebRTC.framework; sourceTree = ""; }; + 880F16204E26838532A9E66CE3F45CF9 /* RCTPlatform.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTPlatform.mm; sourceTree = ""; }; + 8819E9AFD8883C315FB38B53E616EC46 /* RNNotificationEventHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNNotificationEventHandler.m; path = RNNotifications/RNNotificationEventHandler.m; sourceTree = ""; }; 881F444B09AAEEE836F18BB0EE44916A /* SKHighlightOverlay.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SKHighlightOverlay.h; path = iOS/Plugins/FlipperKitPluginUtils/FlipperKitHighlightOverlay/SKHighlightOverlay.h; sourceTree = ""; }; 882DEC08C6332CC1D2DB9FE03ACB481D /* OpenSSLHash.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = OpenSSLHash.cpp; path = folly/ssl/OpenSSLHash.cpp; sourceTree = ""; }; 883DAC6C7BEFCDBE955F00F5AB4B00AC /* FunctionScheduler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FunctionScheduler.h; path = folly/experimental/FunctionScheduler.h; sourceTree = ""; }; - 884E3962C61598FE083992ECDA7986DF /* BugsnagSessionFileStore.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagSessionFileStore.h; sourceTree = ""; }; - 887C85C30BFFB73C5ACCE12EB42C4735 /* RCTStyleAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTStyleAnimatedNode.h; sourceTree = ""; }; - 88956C81AA4B077BC4788F5BD4D3B66D /* RCTTransformAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTransformAnimatedNode.h; sourceTree = ""; }; 88971119938DB233CA8D9C3F4B661533 /* UIColor+SKSonarValueCoder.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = "UIColor+SKSonarValueCoder.mm"; path = "iOS/Plugins/FlipperKitLayoutPlugin/FlipperKitLayoutPlugin/UIColor+SKSonarValueCoder.mm"; sourceTree = ""; }; + 889CF8B7AAAAA8A91670C85BD35D4148 /* EXWebBrowser-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "EXWebBrowser-prefix.pch"; sourceTree = ""; }; 88AE1DDDCF2704E074DA97D4881CCB17 /* LifoSem.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = LifoSem.h; path = folly/synchronization/LifoSem.h; sourceTree = ""; }; 88BB7BA6E4C7D37135B581C10BA17555 /* GDTCOREventDataObject.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCOREventDataObject.h; path = GoogleDataTransport/GDTCORLibrary/Public/GDTCOREventDataObject.h; sourceTree = ""; }; + 88EBF81B8F7873445389E00FDC5FCDDE /* EXAV-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "EXAV-dummy.m"; sourceTree = ""; }; + 88ECFC89CCAD191725DD91E7F4F9B135 /* REAStyleNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REAStyleNode.m; sourceTree = ""; }; 88F577B012AF7393F7179A8A5A123DAF /* ProxyLockable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ProxyLockable.h; path = folly/synchronization/detail/ProxyLockable.h; sourceTree = ""; }; + 8900AAAA738BF04DCE5E1B94E2DC9332 /* RCTCustomKeyboardViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTCustomKeyboardViewController.h; sourceTree = ""; }; 8919BF37BBF0ED23EB9EF0C3029F1AA1 /* EventCount.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EventCount.h; path = folly/experimental/EventCount.h; sourceTree = ""; }; 8924A173226D2B10DDD893B3319E05A5 /* SKSearchResultNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SKSearchResultNode.m; path = iOS/Plugins/FlipperKitLayoutPlugin/FlipperKitLayoutPlugin/SKSearchResultNode.m; sourceTree = ""; }; + 8924ACA12AAF6E1269144BCD0D55495B /* RCTTextView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTextView.h; sourceTree = ""; }; 892713889486EA2800AA0E9C659FEF2C /* FlipperStateUpdateListener.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FlipperStateUpdateListener.h; path = xplat/Flipper/FlipperStateUpdateListener.h; sourceTree = ""; }; - 8933F929FA40BDE07338D3050D54C5CD /* SDImageTransformer.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageTransformer.m; path = SDWebImage/Core/SDImageTransformer.m; sourceTree = ""; }; + 892AFB3B042F739654D6A76821FA453C /* RCTTextSelection.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTextSelection.h; sourceTree = ""; }; + 892ECBB32033CF5319C2A79BFA0DF6A4 /* REASetNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REASetNode.h; sourceTree = ""; }; + 893713BF698F9D6CD7BB26EA5372A990 /* ARTSurfaceViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = ARTSurfaceViewManager.h; sourceTree = ""; }; 893DF5C07750AECEFC175DB35A86CC77 /* F14Defaults.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = F14Defaults.h; path = folly/container/detail/F14Defaults.h; sourceTree = ""; }; - 896C4FB5CBD85DE33F5DCC0E34C9FC89 /* RNGestureHandler-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNGestureHandler-prefix.pch"; sourceTree = ""; }; - 89720CB68A82B2FF5B98EE4FA09BF861 /* RCTInspector.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTInspector.mm; sourceTree = ""; }; - 8972D5894EA23710DC85AAD79723BCC6 /* RNFetchBlobReqBuilder.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNFetchBlobReqBuilder.m; path = ios/RNFetchBlobReqBuilder.m; sourceTree = ""; }; + 89494BCB117F7BC9030F763513F1BAE0 /* REAAllTransitions.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REAAllTransitions.m; sourceTree = ""; }; + 895BA921EBE122C396858FCFBC52C9CA /* RNScreens.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RNScreens.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; 8998273719FDD789E6F9C7541AFD0B33 /* libRNVectorIcons.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libRNVectorIcons.a; path = libRNVectorIcons.a; sourceTree = BUILT_PRODUCTS_DIR; }; + 89AA02F55FB6020E6DC4422FDAA52118 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; 89AB6E474FACC815694CD925415864A5 /* EventHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EventHandler.h; path = folly/io/async/EventHandler.h; sourceTree = ""; }; - 89AC205EF8525776E545D30976209280 /* FontAwesome5_Regular.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = FontAwesome5_Regular.ttf; path = Fonts/FontAwesome5_Regular.ttf; sourceTree = ""; }; - 89B66AA65776D5D011CDADCFCB4F1093 /* RNCSafeAreaViewMode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCSafeAreaViewMode.h; path = ios/SafeAreaView/RNCSafeAreaViewMode.h; sourceTree = ""; }; 89BF11E56AFF3B7B285F3EB179397794 /* GDTCORUploadCoordinator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCORUploadCoordinator.h; path = GoogleDataTransport/GDTCORLibrary/Private/GDTCORUploadCoordinator.h; sourceTree = ""; }; 89D545D00ADB0D177CAAD36AE25FD7A8 /* Subscription.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Subscription.h; path = yarpl/observable/Subscription.h; sourceTree = ""; }; 89E3A7F92AB0ABBA446EB760B9FDA242 /* Firebase.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Firebase.h; path = CoreOnly/Sources/Firebase.h; sourceTree = ""; }; 89E808B4A9703BA1DCFE85A9396470FB /* SKBufferingPlugin.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SKBufferingPlugin.h; path = iOS/Plugins/FlipperKitNetworkPlugin/FlipperKitNetworkPlugin/SKBufferingPlugin.h; sourceTree = ""; }; - 8A1DBB81EFCFB6432AC159B9FB62D2FF /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; - 8A21DF5AF76A2B8062D40CB737C1DADA /* REAEventNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REAEventNode.m; sourceTree = ""; }; + 89EE65AC3EC2EAE0411369C8BF245F24 /* CompactValue.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CompactValue.h; path = yoga/CompactValue.h; sourceTree = ""; }; + 8A134C867AFCCA54CF0D6394079E8BBE /* RCTBackedTextInputDelegateAdapter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBackedTextInputDelegateAdapter.h; sourceTree = ""; }; 8A27E7CCF0BE3E67CAAEB68881FE3132 /* DiscriminatedPtr.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DiscriminatedPtr.h; path = folly/DiscriminatedPtr.h; sourceTree = ""; }; - 8A4DEC464191F28F0E9ADFCAF7A6F699 /* RCTScrollView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTScrollView.h; sourceTree = ""; }; + 8A3310C9835AFFAD1BD5021C9B809BCE /* UMMagnetometerInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMMagnetometerInterface.h; path = UMSensorsInterface/UMMagnetometerInterface.h; sourceTree = ""; }; 8A4E7BBCA6F5507E82249086A6ED9455 /* HazptrObj.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = HazptrObj.h; path = folly/synchronization/HazptrObj.h; sourceTree = ""; }; + 8A5A36992848EF0C83A2A15573A741EC /* RCTDatePicker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTDatePicker.h; sourceTree = ""; }; 8A6B3A9C0BA27C92014529507E9122A9 /* FIRInstallationsStoredItem.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstallationsStoredItem.m; path = FirebaseInstallations/Source/Library/InstallationsStore/FIRInstallationsStoredItem.m; sourceTree = ""; }; 8A9577B62669DE44C9220B05B75BA13E /* buffer_dec.c */ = {isa = PBXFileReference; includeInIndex = 1; name = buffer_dec.c; path = src/dec/buffer_dec.c; sourceTree = ""; }; + 8A96509ECA1FBAF6C8E58DEDF54D065C /* RCTRedBox.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTRedBox.mm; sourceTree = ""; }; + 8AAD211E267197C6B8D8D8EE6F9F479D /* BSG_KSJSONCodecObjC.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BSG_KSJSONCodecObjC.m; sourceTree = ""; }; + 8AB2DA80B6338FBAE60EA8D89A2C8F03 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; 8AB61E70D6808E0040F3B13CD7755458 /* SysTypes.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SysTypes.h; path = folly/portability/SysTypes.h; sourceTree = ""; }; - 8ABCD543DFDA4EF993833E21A010BD22 /* JSExecutor.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = JSExecutor.cpp; sourceTree = ""; }; 8AE41E7F1254E66C3663DDF781E9762A /* fixed-dtoa.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "fixed-dtoa.h"; path = "double-conversion/fixed-dtoa.h"; sourceTree = ""; }; + 8AFD68E5597A93926FC1142E4AD5893D /* RNCWebView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCWebView.m; path = apple/RNCWebView.m; sourceTree = ""; }; 8AFFC7D83D1CF31BC68FD50AC904CF94 /* Fabric.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Fabric.h; path = iOS/Fabric.framework/Headers/Fabric.h; sourceTree = ""; }; 8B091310AD634FF79967BBCB2BEB5DC0 /* PackedSyncPtr.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PackedSyncPtr.h; path = folly/PackedSyncPtr.h; sourceTree = ""; }; - 8B5B25E03A4B03627DAF31A4398E5009 /* EXWebBrowser.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXWebBrowser.m; path = EXWebBrowser/EXWebBrowser.m; sourceTree = ""; }; - 8B630653DF2C7D123BDAACC2154B1C69 /* react-native-document-picker-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "react-native-document-picker-prefix.pch"; sourceTree = ""; }; - 8B6A582F34B9B493FF15016EE89BE48F /* RCTBridge+Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RCTBridge+Private.h"; sourceTree = ""; }; + 8B2699394777EA90163AA28934A6219D /* RNCSliderManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCSliderManager.m; path = ios/RNCSliderManager.m; sourceTree = ""; }; + 8B3D4A840C5ADC51C6C3DDBF09DE5D29 /* NSValue+Interpolation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "NSValue+Interpolation.h"; sourceTree = ""; }; + 8B45B5E01B5833D969E98D788D3C9D7A /* UMNativeModulesProxy.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMNativeModulesProxy.h; sourceTree = ""; }; 8B6AF205362728DCEA85500386C83D19 /* EventBaseBackendBase.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = EventBaseBackendBase.cpp; path = folly/io/async/EventBaseBackendBase.cpp; sourceTree = ""; }; + 8B6C3E5CEC11D65E8E7539E5401088A1 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; 8B73DC24758111564F1097BFA9B9134E /* event-config.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "event-config.h"; path = "src/event2/event-config.h"; sourceTree = ""; }; 8B92BDD940F925497B067CEF1DAE04BC /* PolyException.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PolyException.h; path = folly/PolyException.h; sourceTree = ""; }; - 8BF0077A70654BAC3859123D7D2207EA /* RCTNetworking.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTNetworking.mm; sourceTree = ""; }; + 8BC50CC11FB102E9AF6A708BB3EEDCC6 /* UMErrorCodes.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = UMErrorCodes.m; path = UMCore/UMErrorCodes.m; sourceTree = ""; }; 8BF3FE3E84F42D1F8138AC883498CA26 /* json.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = json.cpp; path = folly/json.cpp; sourceTree = ""; }; 8BFE48D458DA92D142AE0F0EA6281A13 /* encode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = encode.h; path = src/webp/encode.h; sourceTree = ""; }; 8C0BBC13610A1FC0E0DEFCC8F79316D3 /* Conv.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = Conv.cpp; path = folly/Conv.cpp; sourceTree = ""; }; + 8C0FCA294C4FAA53822A596DB70AD113 /* RCTTouchHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTTouchHandler.m; sourceTree = ""; }; 8C1460D9084CFBCE271CE70F15C7785F /* SysMman.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = SysMman.cpp; path = folly/portability/SysMman.cpp; sourceTree = ""; }; - 8C15AF75882E5BE815D73705B6F34817 /* BugsnagReactNative-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "BugsnagReactNative-prefix.pch"; sourceTree = ""; }; + 8C205DE98FB735CBA9C074D3AF8C53BC /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; + 8C2357EA439844C8E2AA136486074415 /* EXConstantsService.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXConstantsService.m; path = EXConstants/EXConstantsService.m; sourceTree = ""; }; 8C3E2A6E6F93E60E397F6C0BBA710BF5 /* libreact-native-cameraroll.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libreact-native-cameraroll.a"; path = "libreact-native-cameraroll.a"; sourceTree = BUILT_PRODUCTS_DIR; }; - 8C4A42E529DA8C82241503BA7483D779 /* SDDeviceHelper.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDDeviceHelper.m; path = SDWebImage/Private/SDDeviceHelper.m; sourceTree = ""; }; 8C5AC01B5CB0AFBDACB3D1426B969A4C /* ConstexprMath.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ConstexprMath.h; path = folly/ConstexprMath.h; sourceTree = ""; }; + 8C87F594BE17F7E0282B084DB701CB81 /* SDImageAssetManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageAssetManager.m; path = SDWebImage/Private/SDImageAssetManager.m; sourceTree = ""; }; 8CA1DB30E7928B709C6A3E2B5874112D /* FIRCoreDiagnosticsData.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCoreDiagnosticsData.h; path = Interop/CoreDiagnostics/Public/FIRCoreDiagnosticsData.h; sourceTree = ""; }; 8CC9178C366942FD6FF6A115604EAD58 /* libFirebaseCoreDiagnostics.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libFirebaseCoreDiagnostics.a; path = libFirebaseCoreDiagnostics.a; sourceTree = BUILT_PRODUCTS_DIR; }; 8CF18D8C1B78F52A805A7F48A5B171AC /* event_compat.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = event_compat.h; path = src/event2/event_compat.h; sourceTree = ""; }; - 8CF69344B3E34A32C259EDE32B6D68C1 /* RNScreens-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNScreens-prefix.pch"; sourceTree = ""; }; 8D01AA4AAB14EE732D7B5D7F545D5AED /* huffman_utils.c */ = {isa = PBXFileReference; includeInIndex = 1; name = huffman_utils.c; path = src/utils/huffman_utils.c; sourceTree = ""; }; 8D117A13E94F82321D8B4159140BC45B /* stl_logging.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = stl_logging.h; path = src/glog/stl_logging.h; sourceTree = ""; }; - 8D12E7F5CECBA2EC6D11887658B661A2 /* EXVideoView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = EXVideoView.h; sourceTree = ""; }; - 8D33DE116D0794F9ECB3257024ACF204 /* BSG_KSJSONCodec.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSJSONCodec.h; sourceTree = ""; }; 8D47A14870CDE9E0FCF0FCEA6367E86F /* Format.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = Format.cpp; path = folly/Format.cpp; sourceTree = ""; }; 8D4C87CD983A96E736323386CF3F2224 /* DynamicParser-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "DynamicParser-inl.h"; path = "folly/experimental/DynamicParser-inl.h"; sourceTree = ""; }; 8D4CDCA061F91341EAB5C84F1240915D /* FIRAppInternal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAppInternal.h; path = FirebaseCore/Sources/Private/FIRAppInternal.h; sourceTree = ""; }; - 8D520DB62B2AA74B6834DC2104F6A540 /* BugsnagKeys.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagKeys.h; sourceTree = ""; }; - 8D5E73822210E38DB75755A0BBD9557B /* RNReanimated-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNReanimated-prefix.pch"; sourceTree = ""; }; + 8D51E2CC4AB65F076E7492FA272C393B /* UMMagnetometerUncalibratedInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMMagnetometerUncalibratedInterface.h; path = UMSensorsInterface/UMMagnetometerUncalibratedInterface.h; sourceTree = ""; }; + 8D7295B454566C4A4DB062AAF1C5D94B /* RCTVirtualTextShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTVirtualTextShadowView.h; sourceTree = ""; }; + 8DA21CF66F10294ADF736D5CA5E81706 /* RNFetchBlobProgress.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNFetchBlobProgress.h; path = ios/RNFetchBlobProgress.h; sourceTree = ""; }; + 8DA2CB45D21859F95DD55D1AADC9C04B /* NSBezierPath+SDRoundedCorners.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSBezierPath+SDRoundedCorners.h"; path = "SDWebImage/Private/NSBezierPath+SDRoundedCorners.h"; sourceTree = ""; }; + 8DA8A1E1E53484F0F3E701C78D6DCA8F /* EXImageLoader-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "EXImageLoader-dummy.m"; sourceTree = ""; }; + 8DE3F28BA9404B8836D1BF044E45C9C0 /* React-cxxreact-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-cxxreact-prefix.pch"; sourceTree = ""; }; 8DF63376066E2275FF26820B3A512A9B /* libreact-native-webview.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libreact-native-webview.a"; path = "libreact-native-webview.a"; sourceTree = BUILT_PRODUCTS_DIR; }; - 8E2F48AAC45A184290900EF2E16526FA /* RNNotifications.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNNotifications.h; path = RNNotifications/RNNotifications.h; sourceTree = ""; }; - 8E5089BAFB07659F6E7AC0E0316AC029 /* rn-fetch-blob.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = "rn-fetch-blob.podspec"; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 8E0A02ABFB91E677BFFDBD8D9EB7D940 /* RCTLog.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTLog.mm; sourceTree = ""; }; + 8E22610E8AFEC617EB54D9239AF48133 /* RNFirebaseLinks.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNFirebaseLinks.h; sourceTree = ""; }; 8E6373AA654AB7C0358CCE7BFE827109 /* GULKeychainUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULKeychainUtils.h; path = GoogleUtilities/Environment/Public/GULKeychainUtils.h; sourceTree = ""; }; - 8E738DA767C7CE949F8736ECD117A1FC /* ARTCGFloatArray.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ARTCGFloatArray.h; path = ios/ARTCGFloatArray.h; sourceTree = ""; }; - 8E76D6C44A81A38F97B20CB129A923D3 /* pl.lproj */ = {isa = PBXFileReference; includeInIndex = 1; name = pl.lproj; path = ios/QBImagePicker/QBImagePicker/pl.lproj; sourceTree = ""; }; - 8E77041415D1CD541F3146A37A299F94 /* RCTNetworkPlugins.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTNetworkPlugins.mm; sourceTree = ""; }; - 8E787D7856136E44A7AEABFC6D199618 /* RCTDeviceInfo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTDeviceInfo.h; path = React/CoreModules/RCTDeviceInfo.h; sourceTree = ""; }; - 8E9324CC0326A8408FF7A078995E113D /* RCTRedBoxExtraDataViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTRedBoxExtraDataViewController.h; sourceTree = ""; }; + 8E6470A46B1B5072E89C06A9CF8C471D /* Yoga-internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "Yoga-internal.h"; path = "yoga/Yoga-internal.h"; sourceTree = ""; }; + 8E880C8FADC348B3A40BE9FD9BA79079 /* RCTDataRequestHandler.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTDataRequestHandler.mm; sourceTree = ""; }; + 8EA6D7A458D18ED3D28C44B821858E70 /* RCTBaseTextInputView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTBaseTextInputView.m; sourceTree = ""; }; 8EAD4BBB6D5884B50C6D971DDBA77804 /* GoogleAppMeasurement.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = GoogleAppMeasurement.framework; path = Frameworks/GoogleAppMeasurement.framework; sourceTree = ""; }; - 8ED94D8BE07D4006C71DDCE06EF299BA /* React-Core-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-Core-prefix.pch"; sourceTree = ""; }; - 8F20EA7B3F5905572DE6CF16610A8A2C /* RNCAsyncStorage.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCAsyncStorage.h; path = ios/RNCAsyncStorage.h; sourceTree = ""; }; - 8F365C38338057419C36E893C210572D /* RCTAnimationUtils.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTAnimationUtils.m; sourceTree = ""; }; - 8F3A9328D29018CCFA541797D682CE25 /* ReactMarker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = ReactMarker.h; sourceTree = ""; }; + 8ED7357F3403C2CC31569B84570D798A /* UMReactNativeAdapter-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "UMReactNativeAdapter-prefix.pch"; sourceTree = ""; }; + 8EDB9DF0E65C5FE1F5149E93D6A48BD3 /* SDWebImageTransitionInternal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageTransitionInternal.h; path = SDWebImage/Private/SDWebImageTransitionInternal.h; sourceTree = ""; }; 8F3B48A53788928257D4F770E7F7A634 /* HazptrThrLocal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = HazptrThrLocal.h; path = folly/synchronization/HazptrThrLocal.h; sourceTree = ""; }; - 8F4541A76FB78D77FA3A964755798242 /* RCTNativeModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTNativeModule.h; sourceTree = ""; }; - 8F4AF770831C42771BFF441F32A06190 /* EXAppleAuthenticationButtonViewManagers.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXAppleAuthenticationButtonViewManagers.m; path = EXAppleAuthentication/EXAppleAuthenticationButtonViewManagers.m; sourceTree = ""; }; 8F4DA0875D68CB8A50573C368E61F8BC /* PicoSpinLock.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PicoSpinLock.h; path = folly/synchronization/PicoSpinLock.h; sourceTree = ""; }; - 8F5772719D832396BF64A57BE9B84093 /* RCTJavaScriptLoader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTJavaScriptLoader.h; sourceTree = ""; }; 8F65F9361F2069CF9E9D751272968DE4 /* libRNGestureHandler.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libRNGestureHandler.a; path = libRNGestureHandler.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 8F7080514B2DC132D8D9E4F8F6B307F3 /* RNScreens.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNScreens.xcconfig; sourceTree = ""; }; 8F70F5609DAE1FD9A6DEDD382E67A1B5 /* SKTouch.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SKTouch.h; path = iOS/Plugins/FlipperKitLayoutPlugin/FlipperKitLayoutPlugin/SKTouch.h; sourceTree = ""; }; - 8F720EC32BC0BA1F12D5E70A9617F5BC /* RNFirebasePerformance.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNFirebasePerformance.m; sourceTree = ""; }; 8F7387949E542BBA6DC178190C86EC38 /* PromisesObjC-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "PromisesObjC-dummy.m"; sourceTree = ""; }; - 8FA7B030CA0FC5FE7424D5B176BCC195 /* RNNotificationCenter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNNotificationCenter.m; path = RNNotifications/RNNotificationCenter.m; sourceTree = ""; }; - 8FA90F039328C541D138AE86D8DC0093 /* jsilib.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = jsilib.h; sourceTree = ""; }; + 8F7B3DD8A8ADDB7D03896EBBEFEAD73F /* SDImageTransformer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageTransformer.h; path = SDWebImage/Core/SDImageTransformer.h; sourceTree = ""; }; + 8F80D233C9B17483F731DE53534A5FEC /* SDWeakProxy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWeakProxy.m; path = SDWebImage/Private/SDWeakProxy.m; sourceTree = ""; }; 8FC616C8356C77BB569FB79454D32E2D /* logging.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = logging.h; path = src/glog/logging.h; sourceTree = ""; }; 8FC66D100BF1D2161354D1C02DA0C2B9 /* Checksum.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Checksum.h; path = folly/hash/Checksum.h; sourceTree = ""; }; - 8FC9625141225307F54CA8F7D5C31D65 /* RNNotificationCenterMulticast.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNNotificationCenterMulticast.h; path = RNNotifications/RNNotificationCenterMulticast.h; sourceTree = ""; }; - 8FE5E457B8AA0BA085359B0443A137B2 /* UMBarometerInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMBarometerInterface.h; path = UMSensorsInterface/UMBarometerInterface.h; sourceTree = ""; }; - 902655D099DB95E0ABE2787457DD2742 /* BSG_KSCrashSentry_MachException.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSCrashSentry_MachException.c; sourceTree = ""; }; + 8FCF04EC25DF8DDE61BA20A55F00221F /* SDImageLoadersManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageLoadersManager.h; path = SDWebImage/Core/SDImageLoadersManager.h; sourceTree = ""; }; + 8FD0DFA6661DE03F251336C50BA56578 /* RNGestureHandlerManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNGestureHandlerManager.h; path = ios/RNGestureHandlerManager.h; sourceTree = ""; }; 902BE925D4C1D506F5B5171C0B9A13AF /* SKHighlightOverlay.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = SKHighlightOverlay.mm; path = iOS/Plugins/FlipperKitPluginUtils/FlipperKitHighlightOverlay/SKHighlightOverlay.mm; sourceTree = ""; }; - 902C59283CA9D5897D96DC5A6A036B75 /* React-RCTLinking-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-RCTLinking-dummy.m"; sourceTree = ""; }; - 903382244D64A1D81775D162DD79F692 /* RCTScrollEvent.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTScrollEvent.m; sourceTree = ""; }; - 904A4896430B13B9E0ED745E2F64C6AC /* rn-extensions-share-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "rn-extensions-share-prefix.pch"; sourceTree = ""; }; - 906EAEFB0C5A8EE1E65224A170387B98 /* EXAppleAuthenticationButton.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXAppleAuthenticationButton.h; path = EXAppleAuthentication/EXAppleAuthenticationButton.h; sourceTree = ""; }; + 9054BED36DA34AD256BAA55AC56F757E /* SDWeakProxy.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWeakProxy.h; path = SDWebImage/Private/SDWeakProxy.h; sourceTree = ""; }; + 9057D3899F930CE2294A71B350CB480D /* RCTI18nUtil.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTI18nUtil.h; sourceTree = ""; }; + 905DC87941BB1A73D388D99DA4D2E89F /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; + 906D73B0CFB0B58166459E4132CB0CEF /* RCTKeyCommandConstants.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCTKeyCommandConstants.m; path = ios/KeyCommands/RCTKeyCommandConstants.m; sourceTree = ""; }; + 90753126CCBCB9603F6E5AEA8AF43BBE /* RCTDevSettings.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTDevSettings.h; path = React/CoreModules/RCTDevSettings.h; sourceTree = ""; }; 90788879F7C6B4130EC1B3217B6EA624 /* Folly-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Folly-prefix.pch"; sourceTree = ""; }; - 90B17DBDA0609D754ECFFCA38F7E5BDD /* RAMBundleRegistry.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RAMBundleRegistry.h; sourceTree = ""; }; - 90B5D4FA2839C90675EB5D0AAA62BFF8 /* ARTNodeManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = ARTNodeManager.h; sourceTree = ""; }; - 90C9BF5355CE3D22296D117057869FA9 /* RNGestureHandler.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNGestureHandler.xcconfig; sourceTree = ""; }; - 90D34DFF04C9FC93FBC548E5C5BC1EC1 /* RCTUITextField.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTUITextField.h; sourceTree = ""; }; + 9097789ED6905591E55DDDCC38617199 /* react-native-background-timer-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "react-native-background-timer-prefix.pch"; sourceTree = ""; }; + 90A2374AB985D9E724E7505FAF895F2F /* UMUtilitiesInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMUtilitiesInterface.h; sourceTree = ""; }; 90D697BCC42557ED8D742F74757AC54F /* GULKeychainStorage.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULKeychainStorage.h; path = GoogleUtilities/Environment/Public/GULKeychainStorage.h; sourceTree = ""; }; - 90F5D0DCF5243D92714915E6A47EC69A /* React-RCTLinking.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = "React-RCTLinking.podspec"; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - 91031C2D142B91C4659188043CFBB59E /* BSG_KSObjC.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSObjC.h; sourceTree = ""; }; - 911B53B91157F66224EA02E8A8FA0B7F /* RNJitsiMeetView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNJitsiMeetView.m; path = ios/RNJitsiMeetView.m; sourceTree = ""; }; - 912327CD24447113DCBE5E0204334FC2 /* BSG_KSBacktrace.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSBacktrace.h; sourceTree = ""; }; + 90D983B6CFBACEC8FA0142C592FAE845 /* EvilIcons.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = EvilIcons.ttf; path = Fonts/EvilIcons.ttf; sourceTree = ""; }; + 90EC14969D8667885B5B03C0EFC3214E /* BSG_KSFileUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSFileUtils.h; sourceTree = ""; }; + 90FD86B01596B0B8A1B81C346B478834 /* RNPushKitEventListener.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNPushKitEventListener.h; path = RNNotifications/RNPushKitEventListener.h; sourceTree = ""; }; + 910DFCD3F0EC720CAEE9477DA097E65B /* EXPermissions-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "EXPermissions-dummy.m"; sourceTree = ""; }; + 910EE1481A0CEC8D3EA79187B2EC0CC0 /* BugsnagSessionTrackingApiClient.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagSessionTrackingApiClient.h; sourceTree = ""; }; 912F3C0FEF4C832DC9C981D4E763C614 /* cached-powers.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "cached-powers.h"; path = "double-conversion/cached-powers.h"; sourceTree = ""; }; - 916C8D170D3596242144EB807F11113B /* RCTPackagerClient.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTPackagerClient.h; sourceTree = ""; }; - 91741A8C0473252C0B3C652A5EDF7A50 /* SDWebImageCompat.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWebImageCompat.m; path = SDWebImage/Core/SDWebImageCompat.m; sourceTree = ""; }; - 91937954EC3D19154FBDF69F9966BDCD /* RNJitsiMeetView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNJitsiMeetView.h; path = ios/RNJitsiMeetView.h; sourceTree = ""; }; - 91A3294E0CAE80277F6BA9F07BE963ED /* NSTextStorage+FontScaling.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "NSTextStorage+FontScaling.m"; sourceTree = ""; }; - 91C9001DC2995C2676B8F6DFFC44F09A /* RCTRefreshControlManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTRefreshControlManager.m; sourceTree = ""; }; - 91D367B3158E8031400E77558EF77B03 /* RCTViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTViewManager.m; sourceTree = ""; }; - 91D62D79BF728D7D47458B94EDD49343 /* RCTJSStackFrame.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTJSStackFrame.m; sourceTree = ""; }; + 9148595F62C0B594EF655D5BA1628566 /* SDWebImage-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "SDWebImage-prefix.pch"; sourceTree = ""; }; + 9155F1558DD326F6623D3BB9857B7CEC /* RCTSRWebSocket.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTSRWebSocket.h; path = Libraries/WebSocket/RCTSRWebSocket.h; sourceTree = ""; }; + 9181CD547B312286C9B74399143DF4E4 /* RNFirebaseAdMobRewardedVideo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNFirebaseAdMobRewardedVideo.h; sourceTree = ""; }; + 91A0A85C0997237E5898C36FC0E95ADA /* UMFilePermissionModuleInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMFilePermissionModuleInterface.h; path = UMFileSystemInterface/UMFilePermissionModuleInterface.h; sourceTree = ""; }; + 91A5A630626CC57ADDEFEBE5275192C9 /* RCTPicker.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTPicker.m; sourceTree = ""; }; + 91AA6E03E106485D4765994A8DE247C8 /* decorator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = decorator.h; sourceTree = ""; }; + 91D4639CCF8AA8BFAE1C6D04362F0DBD /* QBVideoIndicatorView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = QBVideoIndicatorView.m; path = ios/QBImagePicker/QBImagePicker/QBVideoIndicatorView.m; sourceTree = ""; }; + 91E25DA8C3E7D938E9CDA6A5684CBEDA /* NSError+BSG_SimpleConstructor.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "NSError+BSG_SimpleConstructor.m"; sourceTree = ""; }; 920319A488C3EE7D3A4B0C7195B6A0C0 /* MemoryMapping.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MemoryMapping.h; path = folly/system/MemoryMapping.h; sourceTree = ""; }; - 920FAF2B438559869A6D0190293E50AC /* RCTWeakProxy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTWeakProxy.m; sourceTree = ""; }; 921A2A1CD838E0B983FC091BB327E94B /* lhash.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = lhash.h; path = ios/include/openssl/lhash.h; sourceTree = ""; }; 9222696D078C54E7767955037B7E493F /* FLEXNetworkRecorder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FLEXNetworkRecorder.h; path = iOS/Plugins/FlipperKitNetworkPlugin/SKIOSNetworkPlugin/FLEXNetworkLib/FLEXNetworkRecorder.h; sourceTree = ""; }; + 92600053C1570D4B99BA29B10E6E558E /* React-Core-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-Core-dummy.m"; sourceTree = ""; }; + 92618CDA795D5074D33BCF6116E24E46 /* NativeToJsBridge.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = NativeToJsBridge.cpp; sourceTree = ""; }; 928B1A7A6B1D73CFA1E39326700EE9B2 /* evp.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = evp.h; path = ios/include/openssl/evp.h; sourceTree = ""; }; 929F7FD86388B379182BAB11CDF3D7E7 /* RSocketParameters.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = RSocketParameters.cpp; path = rsocket/RSocketParameters.cpp; sourceTree = ""; }; - 92B4938E17DE6E0F57D621D9A0B535B6 /* RNPanHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNPanHandler.m; sourceTree = ""; }; - 92BC26C6959C651149076B70977E6A2D /* EXPermissions-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "EXPermissions-dummy.m"; sourceTree = ""; }; - 92CD58808BEC1B77743DB330D006FE17 /* RCTCxxModule.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTCxxModule.mm; sourceTree = ""; }; - 92D5EA8127BD486680F99368655E6E32 /* RCTPackagerConnection.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTPackagerConnection.mm; sourceTree = ""; }; + 92A1BAE7EC0FE27F54294005FB25DC2C /* RCTReloadCommand.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTReloadCommand.m; sourceTree = ""; }; + 92A9CFF14F428AD5116CFFDFEFC1CADF /* UIImageView+WebCache.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIImageView+WebCache.m"; path = "SDWebImage/Core/UIImageView+WebCache.m"; sourceTree = ""; }; + 93007B76A6582C2A4DB63A4335261E04 /* UMCore-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "UMCore-prefix.pch"; sourceTree = ""; }; 930B64E9A37A12B0B46B8A195AE76A2C /* Observables.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Observables.h; path = yarpl/observable/Observables.h; sourceTree = ""; }; - 931FE198A25C9BC87758418B8F903556 /* BSGConnectivity.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSGConnectivity.h; sourceTree = ""; }; 9346E24A80AF7765A8BE8B33BAE93F5C /* Subscription.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = Subscription.cpp; path = yarpl/flowable/Subscription.cpp; sourceTree = ""; }; - 934A92F5F919E8F07588C83383514BDA /* RCTPerfMonitor.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTPerfMonitor.mm; sourceTree = ""; }; 9370A3A3860C554622DA5C821883ABF1 /* ThreadLocalDetail.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = ThreadLocalDetail.cpp; path = folly/detail/ThreadLocalDetail.cpp; sourceTree = ""; }; 93778A3F3CA3D98E90562F56F9D95611 /* Payload.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = Payload.cpp; path = rsocket/Payload.cpp; sourceTree = ""; }; - 938A92659A2B571EE3FA5B905DDD2A1B /* BSG_KSCrashReportFilterCompletion.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashReportFilterCompletion.h; sourceTree = ""; }; - 9394189BEBBF07FF4D1B068C8F7250C2 /* React-RCTNetwork.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = "React-RCTNetwork.podspec"; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; 93A97AF91CB068344041DEDFC987F6B7 /* GCDAsyncUdpSocket.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GCDAsyncUdpSocket.m; path = Source/GCD/GCDAsyncUdpSocket.m; sourceTree = ""; }; - 93B71F85D013AD75E8796FA20E4D523C /* RNCSafeAreaViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCSafeAreaViewManager.h; path = ios/SafeAreaView/RNCSafeAreaViewManager.h; sourceTree = ""; }; 93B9597F7995A41AAC6ECA2534F274D2 /* comp.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = comp.h; path = ios/include/openssl/comp.h; sourceTree = ""; }; 93BBD2DCE145C7DACA7A580FA1AC0F60 /* types.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = types.h; path = src/webp/types.h; sourceTree = ""; }; 93C4D9135868E958AD1A54280FA2B248 /* AtomicHashMap.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AtomicHashMap.h; path = folly/AtomicHashMap.h; sourceTree = ""; }; - 93D5D1140E791F42067DC156835CA7B0 /* RCTModalHostViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTModalHostViewController.m; sourceTree = ""; }; - 93E8E380CB23AE9CCFCB94F089475E53 /* REATransitionAnimation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REATransitionAnimation.h; sourceTree = ""; }; + 93CE9A1E0DD380608A483F45CDFD4880 /* RNFastImage-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNFastImage-dummy.m"; sourceTree = ""; }; + 93E30264A1328C537A036A978AFBF847 /* UMViewManagerAdapterClassesRegistry.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = UMViewManagerAdapterClassesRegistry.m; sourceTree = ""; }; + 93E842ACF5DDF109E79EB438534ADF14 /* RCTDataRequestHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTDataRequestHandler.h; path = Libraries/Network/RCTDataRequestHandler.h; sourceTree = ""; }; 93F12EF4B42E7A70C9D5CEE10F03CBDC /* SKIOSNetworkAdapter.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = SKIOSNetworkAdapter.mm; path = iOS/Plugins/FlipperKitNetworkPlugin/SKIOSNetworkPlugin/SKIOSNetworkAdapter.mm; sourceTree = ""; }; + 93FCBE3E7A4F4294ADB97EC1ACE0DC43 /* JSINativeModules.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = JSINativeModules.h; path = jsireact/JSINativeModules.h; sourceTree = ""; }; + 94026BAA4E4E9401D51BCAF032C4F65E /* RCTBackedTextInputViewProtocol.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBackedTextInputViewProtocol.h; sourceTree = ""; }; 940927AF80BB56C30EFE4B1F381620E4 /* color_cache_utils.c */ = {isa = PBXFileReference; includeInIndex = 1; name = color_cache_utils.c; path = src/utils/color_cache_utils.c; sourceTree = ""; }; 94096471176B5A63422BD7DDAC6122E6 /* AtomicUnorderedMapUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AtomicUnorderedMapUtils.h; path = folly/detail/AtomicUnorderedMapUtils.h; sourceTree = ""; }; 941D82A7D647586A28F6DB4755B80869 /* FBLPromise.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBLPromise.h; path = Sources/FBLPromises/include/FBLPromise.h; sourceTree = ""; }; - 9420282DA92F21A459E07B57C79802C5 /* SDWeakProxy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWeakProxy.m; path = SDWebImage/Private/SDWeakProxy.m; sourceTree = ""; }; - 942C04CD3160AE3DFED89E1A2E902892 /* SDImageCachesManagerOperation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageCachesManagerOperation.m; path = SDWebImage/Private/SDImageCachesManagerOperation.m; sourceTree = ""; }; - 9470C0122B1CEFE0E5EB0E44CB510B68 /* FFFastImageSource.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FFFastImageSource.h; path = ios/FastImage/FFFastImageSource.h; sourceTree = ""; }; - 94AF4CF0A65C8AB152607484CCCA5A2C /* React-RCTVibration-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-RCTVibration-dummy.m"; sourceTree = ""; }; - 94B1495E7AC6173D77EE9923CB0C47DD /* React-RCTText-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-RCTText-dummy.m"; sourceTree = ""; }; - 94B935719C753F605BEFC3442F21321C /* ARTShadow.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ARTShadow.h; path = ios/ARTShadow.h; sourceTree = ""; }; - 94C0242D134E88E6F06939B09DB92DE1 /* RNNativeViewHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNNativeViewHandler.h; sourceTree = ""; }; + 942CB00ACBC4A5B36371564BB424065F /* React-RCTLinking-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-RCTLinking-prefix.pch"; sourceTree = ""; }; + 9442B35307D98C612F326A2F3D6F5A1A /* BugsnagHandledState.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagHandledState.h; sourceTree = ""; }; + 944EEF12556B8975D97DA4550652BA5C /* React-jsi-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-jsi-prefix.pch"; sourceTree = ""; }; + 94678CA3241175099C6B297014249FDB /* RNBackgroundTimer.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNBackgroundTimer.m; path = ios/RNBackgroundTimer.m; sourceTree = ""; }; + 9474A83225E7D2F439DC8D96E46811E4 /* UMTaskManagerInterface.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMTaskManagerInterface.xcconfig; sourceTree = ""; }; + 94B1AD85F33D74C18253627654D39221 /* BSG_KSCrashReport.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashReport.h; sourceTree = ""; }; + 94B7035A8CBF7ED9FB4B21339F78291C /* RCTHTTPRequestHandler.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTHTTPRequestHandler.mm; sourceTree = ""; }; + 94CF78D57B3BB561335A6AB3FB2E04DB /* RNFirebase-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNFirebase-prefix.pch"; sourceTree = ""; }; + 94D5B38B9DB2B6F88C585A961A08DA72 /* EXVideoView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = EXVideoView.h; sourceTree = ""; }; + 94D850A63ACBA225AC020102A47C5349 /* BSG_KSCrashState.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashState.h; sourceTree = ""; }; 94DC221720C39FEF83E7E829A7AFB235 /* Semaphore.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Semaphore.h; path = folly/portability/Semaphore.h; sourceTree = ""; }; - 951BC93835E6D048000E726EC9375F42 /* event.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = event.h; sourceTree = ""; }; + 94F1DACBB879A0258514B8FB23EB1181 /* UMEventEmitterService.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMEventEmitterService.h; sourceTree = ""; }; + 9519ACFDFF2FFC75797D69BF67A4C342 /* REAAllTransitions.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REAAllTransitions.h; sourceTree = ""; }; + 952D138586468613EE302CA1D85F2595 /* EXConstantsService.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXConstantsService.h; path = EXConstants/EXConstantsService.h; sourceTree = ""; }; 9530D384A7DC23895A1EDC9FCE7D0EEF /* bignum-dtoa.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = "bignum-dtoa.cc"; path = "double-conversion/bignum-dtoa.cc"; sourceTree = ""; }; - 95549270A926FC4112B9DB87B1B81B07 /* RCTEventDispatcher.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTEventDispatcher.m; sourceTree = ""; }; - 956FA2E8F3CB9BCD8C901DE0C9995E5F /* BSGOutOfMemoryWatchdog.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BSGOutOfMemoryWatchdog.m; sourceTree = ""; }; - 9583CF8EFBACFAE010E25C678AF3E5BF /* RNFirebaseFirestore.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNFirebaseFirestore.m; sourceTree = ""; }; + 953AD6125142197C28D955AC4BB05E01 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; + 9556D10762D83AFDD3A82F844A9A594C /* SDImageGIFCoder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageGIFCoder.h; path = SDWebImage/Core/SDImageGIFCoder.h; sourceTree = ""; }; 95863CF5020F6DBEE7687DD1B985A9DB /* lossless_enc_neon.c */ = {isa = PBXFileReference; includeInIndex = 1; name = lossless_enc_neon.c; path = src/dsp/lossless_enc_neon.c; sourceTree = ""; }; - 9587AC33DF69DBB7AC794A5FFF90F085 /* BSG_KSCrashState.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashState.h; sourceTree = ""; }; - 95DEEB975C251DC0DD518B4F697B113D /* RCTTextAttributes.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTTextAttributes.m; sourceTree = ""; }; + 95CB55A7B0A49266F5B1D14830566C37 /* SDDeviceHelper.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDDeviceHelper.m; path = SDWebImage/Private/SDDeviceHelper.m; sourceTree = ""; }; + 95CEC13D041A8788A3A6DBBB8224F596 /* QBVideoIconView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = QBVideoIconView.h; path = ios/QBImagePicker/QBImagePicker/QBVideoIconView.h; sourceTree = ""; }; + 95CEC26F847DB54D49844CF88621B9CD /* Orientation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Orientation.h; path = iOS/RCTOrientation/Orientation.h; sourceTree = ""; }; + 95D98A716220DA801BC8F2D61AD6769C /* RCTSurfaceHostingProxyRootView.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTSurfaceHostingProxyRootView.mm; sourceTree = ""; }; 95E32B303715252400E8F8151E2127BE /* GULAppEnvironmentUtil.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULAppEnvironmentUtil.h; path = GoogleUtilities/Environment/third_party/GULAppEnvironmentUtil.h; sourceTree = ""; }; - 95F07232DD6C43A691C9B7768164DA05 /* RCTSurface.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTSurface.mm; sourceTree = ""; }; - 95FEEE73FE294BCF172DF9D75458CD19 /* SDWebImage-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "SDWebImage-dummy.m"; sourceTree = ""; }; + 95E4686E8313303F58C784A42B8EB400 /* RNLocalize.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNLocalize.h; path = ios/RNLocalize.h; sourceTree = ""; }; + 95EA76A62A25B3C0A87966E01C27818F /* RCTUtilsUIOverride.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTUtilsUIOverride.h; sourceTree = ""; }; 95FEFCEA5CDE59957CE63036C9EB4957 /* dns_struct.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = dns_struct.h; path = src/event2/dns_struct.h; sourceTree = ""; }; + 960CD55290C77C3D5C02663989C3A980 /* RNLocalize-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNLocalize-prefix.pch"; sourceTree = ""; }; 961CADB0E5CD518E42C75D299D86FE46 /* it.lproj */ = {isa = PBXFileReference; includeInIndex = 1; name = it.lproj; path = "Objective-C/TOCropViewController/Resources/it.lproj"; sourceTree = ""; }; - 9629E23ED9D547986D588B68E344F095 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; - 9640D0649B16529059D96E55D217B937 /* RCTMessageThread.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTMessageThread.mm; sourceTree = ""; }; - 96425385B1223999EC8995BC6E3AFA06 /* RNSScreenStackHeaderConfig.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNSScreenStackHeaderConfig.h; path = ios/RNSScreenStackHeaderConfig.h; sourceTree = ""; }; - 9652CB5F5744FD7E236307D575339A15 /* BugsnagNotifier.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagNotifier.h; sourceTree = ""; }; 9657C6D381F17DE4F5A6F3996C8AFBEF /* F14Table.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = F14Table.cpp; path = folly/container/detail/F14Table.cpp; sourceTree = ""; }; - 966F02B48C3446EE8A1C530C620F08CE /* FBLazyIterator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBLazyIterator.h; path = FBLazyVector/FBLazyIterator.h; sourceTree = ""; }; 9670ACB4681120F7A7AC533E13305D1C /* GULSecureCoding.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULSecureCoding.h; path = GoogleUtilities/Environment/Public/GULSecureCoding.h; sourceTree = ""; }; 9689F3034C185CB7E5387959B7B7CFAE /* txt_db.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = txt_db.h; path = ios/include/openssl/txt_db.h; sourceTree = ""; }; + 968F253DD1557CE33882DB03532614C7 /* react-native-orientation-locker.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "react-native-orientation-locker.xcconfig"; sourceTree = ""; }; + 96962B33A01681C19E695E4F3FC9A75D /* EXRemoteNotificationPermissionRequester.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = EXRemoteNotificationPermissionRequester.m; sourceTree = ""; }; 969742EA463838E22D79466329ED84EA /* Exception.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Exception.h; path = folly/lang/Exception.h; sourceTree = ""; }; - 96989709EBA4251565F487F8F55924DA /* RCTTVNavigationEventEmitter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTTVNavigationEventEmitter.h; path = React/CoreModules/RCTTVNavigationEventEmitter.h; sourceTree = ""; }; - 969B6F69D32F2EB84CFA0A410BDA47DF /* RCTBaseTextShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBaseTextShadowView.h; sourceTree = ""; }; + 969B38C40EB4B3C167E85CEC96A4B05F /* RNEventEmitter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNEventEmitter.h; path = RNNotifications/RNEventEmitter.h; sourceTree = ""; }; 969F431AB9363BAE3B22BAD82DB788BF /* Sched.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Sched.h; path = folly/portability/Sched.h; sourceTree = ""; }; - 96AA26E861DA5B0E29D148F918CC770E /* RNCAssetsLibraryRequestHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCAssetsLibraryRequestHandler.h; path = ios/RNCAssetsLibraryRequestHandler.h; sourceTree = ""; }; 96C64DD2767B07BC03C0ADB071CBADFC /* DeferFlowable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DeferFlowable.h; path = yarpl/flowable/DeferFlowable.h; sourceTree = ""; }; 96DFA5E6B7BD7B64B68398EF8B746DB5 /* picture_psnr_enc.c */ = {isa = PBXFileReference; includeInIndex = 1; name = picture_psnr_enc.c; path = src/enc/picture_psnr_enc.c; sourceTree = ""; }; 96EE6A9F812A3C115B660CA48025BE38 /* RSocketErrors.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RSocketErrors.h; path = rsocket/RSocketErrors.h; sourceTree = ""; }; 9701A78261BEDC2C84BE15AC12B2DF21 /* NamedThreadFactory.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = NamedThreadFactory.h; path = folly/executors/thread_factory/NamedThreadFactory.h; sourceTree = ""; }; 972A15EE45159FA2E3249D6135C2E209 /* FABAttributes.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FABAttributes.h; path = iOS/Fabric.framework/Headers/FABAttributes.h; sourceTree = ""; }; + 973DF85DF9AE404CBBC25A0E5B4C06C8 /* BSG_KSCrash.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrash.h; sourceTree = ""; }; 9743CAC8A3D833F16EAF621477B8F637 /* SysResource.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = SysResource.cpp; path = folly/portability/SysResource.cpp; sourceTree = ""; }; 975543F4DF1A3254A9BE804D71DF9D25 /* Demangle.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = Demangle.cpp; path = folly/Demangle.cpp; sourceTree = ""; }; 97585F8A5E4DEBAF019D75DB9014E70A /* libcrypto.a */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = archive.ar; name = libcrypto.a; path = ios/lib/libcrypto.a; sourceTree = ""; }; + 975B45C783D99F78182782A13C67F00E /* event.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = event.h; sourceTree = ""; }; + 97698FCE3D288E738184B1B75A32D7A2 /* CallInvoker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CallInvoker.h; path = callinvoker/ReactCommon/CallInvoker.h; sourceTree = ""; }; 97A4EA46F14A54B737026EC7D1B2CCAE /* FIRComponentContainer.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRComponentContainer.m; path = FirebaseCore/Sources/FIRComponentContainer.m; sourceTree = ""; }; 97B0FDEFE0A3A767AD67F8F29CDCCD91 /* JemallocNodumpAllocator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = JemallocNodumpAllocator.h; path = folly/experimental/JemallocNodumpAllocator.h; sourceTree = ""; }; 97D5B3A87EDE5E5EE3B834F94B26B292 /* Hash.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Hash.h; path = folly/Hash.h; sourceTree = ""; }; + 97DC3F18B3CA75DA1B62A7EA796D8FD7 /* RNNotificationCenterMulticast.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNNotificationCenterMulticast.m; path = RNNotifications/RNNotificationCenterMulticast.m; sourceTree = ""; }; + 982361A8B7843197478B692DD1446359 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; + 9829F06E7006373B5F14790CD9EC3848 /* React-RCTBlob.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = "React-RCTBlob.podspec"; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; 9833422D7143F6C729DB2838AD7933BF /* TestUtil.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TestUtil.h; path = folly/experimental/TestUtil.h; sourceTree = ""; }; - 983C8D4D1F255DEB3F4CD2C3EA0D1AD8 /* EXLocalAuthentication.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXLocalAuthentication.h; path = EXLocalAuthentication/EXLocalAuthentication.h; sourceTree = ""; }; 983D32ADFA0F12582AC7AEF1116188AA /* utils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = utils.h; path = "double-conversion/utils.h"; sourceTree = ""; }; - 985D6DB3D9A4AE44DF523A65D604550F /* RCTSurface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSurface.h; sourceTree = ""; }; - 9882D646B43B77E05AD92A8392005D1F /* EXAppleAuthentication.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXAppleAuthentication.h; path = EXAppleAuthentication/EXAppleAuthentication.h; sourceTree = ""; }; + 98838DD15580B0FED5C489DFEE193B57 /* RNNotifications.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNNotifications.h; path = RNNotifications/RNNotifications.h; sourceTree = ""; }; + 98A8C13484C0EFE4F30451553A5B15E0 /* React-RCTNetwork.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = "React-RCTNetwork.podspec"; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 98B48B57988B4C1C778A2FAAD4DF8C40 /* REAModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = REAModule.h; path = ios/REAModule.h; sourceTree = ""; }; 98BC1CE48D98190B5806B7BEF30C8ED3 /* ja.lproj */ = {isa = PBXFileReference; includeInIndex = 1; name = ja.lproj; path = "Objective-C/TOCropViewController/Resources/ja.lproj"; sourceTree = ""; }; + 98CBE4F3143ABC2A602EDE05CCA1ACFA /* UMPermissionsInterface.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMPermissionsInterface.xcconfig; sourceTree = ""; }; + 98D7873E2D84726B0BF9B0F1242E5B30 /* RCTEventAnimation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTEventAnimation.m; sourceTree = ""; }; 98D8AE44D543B348F9F61DF20FAEDBAF /* dns_compat.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = dns_compat.h; path = src/event2/dns_compat.h; sourceTree = ""; }; - 98E83548474CF2527CD74F317FE6A0D3 /* RCTTextSelection.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTTextSelection.m; sourceTree = ""; }; 98F3BE2618A790DD0537B38C7D8A4152 /* ssim.c */ = {isa = PBXFileReference; includeInIndex = 1; name = ssim.c; path = src/dsp/ssim.c; sourceTree = ""; }; - 98F4C41C33A646AB98C7D298B382D8D2 /* RNNotifications.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNNotifications.m; path = RNNotifications/RNNotifications.m; sourceTree = ""; }; - 98FC2A234D724546E17110F349418D27 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; - 9916466C8411EAC9AAC96756257A4EBE /* BugsnagUser.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagUser.h; sourceTree = ""; }; + 98FDA0265059DC53F1154F99180F9704 /* RNCMaskedView.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RNCMaskedView.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; 992F4F987626FAFDBBA02A885495042D /* TOCropViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TOCropViewController.h; path = "Objective-C/TOCropViewController/TOCropViewController.h"; sourceTree = ""; }; - 995AC1B7D0FFC307FBDE42396BEC7495 /* RCTCxxModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTCxxModule.h; sourceTree = ""; }; + 99445921A615425F61CE8A2E2A1F65EE /* EXKeepAwake-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "EXKeepAwake-prefix.pch"; sourceTree = ""; }; + 9946DFEC1C3A62450EF79BA1ABB6EF03 /* UIImage+Metadata.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIImage+Metadata.h"; path = "SDWebImage/Core/UIImage+Metadata.h"; sourceTree = ""; }; + 99471A1A0B8A1DC5E335BB60103415FA /* RCTNativeModule.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTNativeModule.mm; sourceTree = ""; }; 995E20B019FCA48F1AA5D5A22B876F40 /* SSLOptions.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = SSLOptions.cpp; path = folly/io/async/SSLOptions.cpp; sourceTree = ""; }; + 996FDEC30EB0580430CF5ED5D554EA05 /* RNGestureHandlerRegistry.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNGestureHandlerRegistry.h; path = ios/RNGestureHandlerRegistry.h; sourceTree = ""; }; 9981989CAA6381239BB715D0BA46262A /* vlog_is_on.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = vlog_is_on.cc; path = src/vlog_is_on.cc; sourceTree = ""; }; 998A272CA1A379AE00E812D0FC64BBA5 /* x509.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = x509.h; path = ios/include/openssl/x509.h; sourceTree = ""; }; - 998AF8A34DBB39420D04028C3FFCBF77 /* FFFastImageSource.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FFFastImageSource.m; path = ios/FastImage/FFFastImageSource.m; sourceTree = ""; }; + 9991C9E831092525615436BA5C28D5F5 /* RCTSurfaceHostingView.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTSurfaceHostingView.mm; sourceTree = ""; }; + 99997FFE3181F1CD27D47FFB40539210 /* rn-fetch-blob-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "rn-fetch-blob-prefix.pch"; sourceTree = ""; }; 999D010364128751CC3731B3050F4617 /* Assume.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Assume.h; path = folly/lang/Assume.h; sourceTree = ""; }; - 99B30853C542D2115F98448315C2D52D /* RNCAsyncStorage.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCAsyncStorage.m; path = ios/RNCAsyncStorage.m; sourceTree = ""; }; - 99D5C8C0B6B045FFA224BAC71C1C3860 /* RCTMessageThread.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTMessageThread.h; sourceTree = ""; }; + 99B7B07728D30D564B273BCA823362C9 /* react-native-slider.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = "react-native-slider.podspec"; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; 99D5CD245388DC76AAEF6E1E351A90ED /* libFlipper-Folly.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libFlipper-Folly.a"; path = "libFlipper-Folly.a"; sourceTree = BUILT_PRODUCTS_DIR; }; 99FA4E2FD25FDCD45F05F85489366E7E /* neon.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = neon.h; path = src/dsp/neon.h; sourceTree = ""; }; 9A01115DDCB89F5DB53C547F949CDE10 /* lossless_enc_sse41.c */ = {isa = PBXFileReference; includeInIndex = 1; name = lossless_enc_sse41.c; path = src/dsp/lossless_enc_sse41.c; sourceTree = ""; }; - 9A07EB1BB471CCBD3DDB3373E225CFD6 /* RNFirebaseDatabase.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNFirebaseDatabase.h; sourceTree = ""; }; 9A39F9E5B195BC622F6CDFA3E9B5E15E /* AsyncTrace.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = AsyncTrace.cpp; path = folly/detail/AsyncTrace.cpp; sourceTree = ""; }; 9A3FC0C9D81433252C2F08F2B3C9CB52 /* GLog.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GLog.h; path = folly/GLog.h; sourceTree = ""; }; - 9A8D977AFC2C5F8CB3A5F09188EB520E /* RCTTextView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTTextView.m; sourceTree = ""; }; + 9A43BCBEA831533C3913F04BC78B4C33 /* RCTSurfaceView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSurfaceView.h; sourceTree = ""; }; 9A95DD3EB3F6CB78E76B32197DA83AD4 /* PasswordInFile.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = PasswordInFile.cpp; path = folly/io/async/PasswordInFile.cpp; sourceTree = ""; }; - 9A9969B4DCAEDA5FDE7CC095E40E1F88 /* Yoga-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Yoga-umbrella.h"; sourceTree = ""; }; + 9A96D7FADB2B3BF64F2F9061C01B14AA /* React-RCTSettings.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-RCTSettings.xcconfig"; sourceTree = ""; }; 9AA7F46614DE4962D1B776D0893B3684 /* SKBufferingPlugin.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = SKBufferingPlugin.mm; path = iOS/Plugins/FlipperKitNetworkPlugin/FlipperKitNetworkPlugin/SKBufferingPlugin.mm; sourceTree = ""; }; - 9AE3E53F317299930F0492639EF01984 /* EXFileSystemAssetLibraryHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXFileSystemAssetLibraryHandler.m; path = EXFileSystem/EXFileSystemAssetLibraryHandler.m; sourceTree = ""; }; - 9AEE6076F5BF5AECC6C41B7DD7149A05 /* SDImageIOAnimatedCoder.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageIOAnimatedCoder.m; path = SDWebImage/Core/SDImageIOAnimatedCoder.m; sourceTree = ""; }; - 9AF0129EA8B4E8F540AA07097DCCEED4 /* RCTAccessibilityManager.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTAccessibilityManager.mm; sourceTree = ""; }; + 9AB085AADF89EE159EE7B7C3A83EBE18 /* RNFetchBlobReqBuilder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNFetchBlobReqBuilder.h; path = ios/RNFetchBlobReqBuilder.h; sourceTree = ""; }; + 9AB3163B0A3BE8F8D7E6A06A6F9E1FD8 /* BridgeJSCallInvoker.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = BridgeJSCallInvoker.cpp; path = callinvoker/ReactCommon/BridgeJSCallInvoker.cpp; sourceTree = ""; }; + 9AB42448500785C24E67529CB5AB1F4B /* RCTFrameUpdate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTFrameUpdate.h; sourceTree = ""; }; + 9AC12F189B625BCB582A97975AD90108 /* FBReactNativeSpec-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "FBReactNativeSpec-dummy.m"; sourceTree = ""; }; + 9ADEF2907DA90AC6CEC93DCD1621716A /* RCTViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTViewManager.h; sourceTree = ""; }; + 9AED82AC0992CA90E633CE53D498FFD5 /* REAPropsNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REAPropsNode.h; sourceTree = ""; }; 9AF79998E78893179131B1D456AD4AB5 /* fr.lproj */ = {isa = PBXFileReference; includeInIndex = 1; name = fr.lproj; path = "Objective-C/TOCropViewController/Resources/fr.lproj"; sourceTree = ""; }; - 9AFFEDDE7CFB2C5E2CA5311D2F76B264 /* RNCAppearanceProvider.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCAppearanceProvider.h; path = ios/Appearance/RNCAppearanceProvider.h; sourceTree = ""; }; 9B0B2A2470ADB5772F4AB8C99FFF4076 /* Portability.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Portability.h; path = folly/futures/Portability.h; sourceTree = ""; }; - 9B0CD0417F916A41DD2426DD4B7A9391 /* RNFirebaseFirestoreDocumentReference.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNFirebaseFirestoreDocumentReference.m; sourceTree = ""; }; - 9B11399D7D9C0CC421366F0B70405608 /* EXPermissions.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = EXPermissions.xcconfig; sourceTree = ""; }; - 9B1EF8C47031ED85B03BA1723CCA998B /* React-RCTSettings-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-RCTSettings-prefix.pch"; sourceTree = ""; }; - 9B1F98A9F2248FB8361C4DE18FFAF51F /* RCTErrorInfo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTErrorInfo.h; sourceTree = ""; }; - 9B210DEA7F13EE96BA6DA8B363A2EFD3 /* EXHaptics-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "EXHaptics-dummy.m"; sourceTree = ""; }; + 9B308CD0792C54830C61CB851D9F8EA2 /* RCTScrollView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTScrollView.h; sourceTree = ""; }; 9B5FF22642EC02DAD95385F97DE51F8C /* Dirent.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = Dirent.cpp; path = folly/portability/Dirent.cpp; sourceTree = ""; }; - 9BA5A3B1BE1BC7C2F0000E120ACE8D69 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; - 9BB1B2939F9907FFAD48E3DD565AEE10 /* RCTImageCache.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTImageCache.m; sourceTree = ""; }; - 9BB37923E297A754832080958B8B5FEC /* UMAccelerometerInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMAccelerometerInterface.h; path = UMSensorsInterface/UMAccelerometerInterface.h; sourceTree = ""; }; - 9BB449E0F6493A29C62B20ED4EB2BF00 /* LongLivedObject.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = LongLivedObject.cpp; path = turbomodule/core/LongLivedObject.cpp; sourceTree = ""; }; - 9BB894F231018CC975693BDF8F83262E /* RNFirebaseMessaging.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNFirebaseMessaging.h; sourceTree = ""; }; - 9BBA45778A6D490CC1EDD321DF57F656 /* RNBootSplash.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNBootSplash.h; path = ios/RNBootSplash.h; sourceTree = ""; }; - 9BBC53C72E4690F1F9660AA072BFBCD0 /* UMTaskManagerInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMTaskManagerInterface.h; path = UMTaskManagerInterface/UMTaskManagerInterface.h; sourceTree = ""; }; + 9B892B57F11497C792BA221D59BCEACE /* ARTPattern.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = ARTPattern.h; sourceTree = ""; }; + 9B9161345C52D307F492A98B689B4C4D /* InspectorInterfaces.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = InspectorInterfaces.cpp; sourceTree = ""; }; + 9BAEDC2A0F83594107D093CAF4138F50 /* EXWebBrowser.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = EXWebBrowser.xcconfig; sourceTree = ""; }; + 9BBE83C00E1454A6987265E27BEF4559 /* RCTSafeAreaViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSafeAreaViewManager.h; sourceTree = ""; }; 9BD2EBF29EBE11649609A1D87D670C80 /* Unit.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Unit.h; path = folly/Unit.h; sourceTree = ""; }; 9BE213EAF1BED4F9EA35340D536E52DE /* Futex.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = Futex.cpp; path = folly/detail/Futex.cpp; sourceTree = ""; }; + 9BF041D1DCF0FDAF18FE9640F746D6CB /* RCTTypeSafety-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RCTTypeSafety-prefix.pch"; sourceTree = ""; }; 9BF0A5227479C231AA36262A1AE5569A /* StaticConst.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = StaticConst.h; path = folly/lang/StaticConst.h; sourceTree = ""; }; - 9BF31BBF6F96CABF7114F9C5DABEBDCD /* UMModuleRegistryHolderReactModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMModuleRegistryHolderReactModule.h; sourceTree = ""; }; 9C059CB14AB6A27102E06C7874764793 /* ExecutorWithPriority.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ExecutorWithPriority.h; path = folly/executors/ExecutorWithPriority.h; sourceTree = ""; }; - 9C1792EAAB3134FE54B51A82E9C58BBE /* BugsnagReactNative.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = BugsnagReactNative.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 9C0A1BB3D5CF3B3B97C66C9A585B4776 /* REATransition.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REATransition.m; sourceTree = ""; }; 9C1813374D737500AAC69A3BBDF7400E /* FIRBundleUtil.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRBundleUtil.m; path = FirebaseCore/Sources/FIRBundleUtil.m; sourceTree = ""; }; + 9C23991C3FDE1C776B675DA6C6CD438D /* SDImageFrame.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageFrame.m; path = SDWebImage/Core/SDImageFrame.m; sourceTree = ""; }; 9C251BDD668A0833CABC259C54C08DB3 /* Pods-RocketChatRN-acknowledgements.markdown */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; path = "Pods-RocketChatRN-acknowledgements.markdown"; sourceTree = ""; }; + 9C32EED59E3EB4F48C75CF7A271FB89F /* RCTWebSocketModule.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTWebSocketModule.mm; sourceTree = ""; }; 9C33CA0AD7B1BEE00F781E293352D69B /* Memory.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Memory.h; path = folly/portability/Memory.h; sourceTree = ""; }; - 9C3F9D9A17FA6EF6E6CDE166CF171727 /* UIImage+Extension.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIImage+Extension.m"; path = "ios/src/UIImage+Extension.m"; sourceTree = ""; }; 9C3FD4AE0C7D7460F1D8CABAF16FF714 /* F14SetFallback.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = F14SetFallback.h; path = folly/container/detail/F14SetFallback.h; sourceTree = ""; }; 9C44288E4F9D989101F85D6BC24EA9B5 /* Pods-ShareRocketChatRN-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Pods-ShareRocketChatRN-dummy.m"; sourceTree = ""; }; - 9C6C0395078634D7C1B9E8CF716DE049 /* SDAnimatedImagePlayer.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDAnimatedImagePlayer.m; path = SDWebImage/Core/SDAnimatedImagePlayer.m; sourceTree = ""; }; + 9C5BC0B9B1C8D8959DBC75666862E4B7 /* RNFlingHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNFlingHandler.h; sourceTree = ""; }; 9C700F1330E291AE35A7D46C13C06364 /* GULSecureCoding.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GULSecureCoding.m; path = GoogleUtilities/Environment/GULSecureCoding.m; sourceTree = ""; }; - 9C99C09197F47A717D2D6F03FDACA5EA /* RCTRawTextViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTRawTextViewManager.m; sourceTree = ""; }; + 9CA1F1822C820511B079449E3589F64D /* RCTConvert+Transform.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RCTConvert+Transform.h"; sourceTree = ""; }; 9CA31DE23B4CAAA7AF2B1CA408293B3B /* CocoaAsyncSocket.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = CocoaAsyncSocket.xcconfig; sourceTree = ""; }; + 9CA417C75F904BCF9CC1D2051C8884C8 /* react-native-notifications-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "react-native-notifications-dummy.m"; sourceTree = ""; }; 9CA5351483F2E3988401565F07C342CE /* Singleton.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Singleton.h; path = folly/Singleton.h; sourceTree = ""; }; 9CA65634937D623281544E5A6F9CDD6D /* 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 = ""; }; - 9CBBE1E99E32DCF4AAAA2E6EE13B85B3 /* RCTBorderStyle.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBorderStyle.h; sourceTree = ""; }; - 9CBDA1D4944626DCD719D472BAD21DAD /* ReactNativeKeyboardTrackingView-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "ReactNativeKeyboardTrackingView-dummy.m"; sourceTree = ""; }; + 9CC8B2C12E1EA99667A5E5B1C4A4593A /* RCTUIManagerUtils.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTUIManagerUtils.m; sourceTree = ""; }; + 9CD076F60F79CD89DA9BEE202F59A9A3 /* RCTConvert+CoreLocation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RCTConvert+CoreLocation.h"; sourceTree = ""; }; + 9CD2CBBBCA92EADE3D2CF06DB0726F81 /* RNCWebViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCWebViewManager.m; path = apple/RNCWebViewManager.m; sourceTree = ""; }; 9CE30C981AFECA8F5C7649212D790153 /* RequestResponseRequester.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RequestResponseRequester.h; path = rsocket/statemachine/RequestResponseRequester.h; sourceTree = ""; }; - 9CF2193318F09D8D55E14A40590398F6 /* Yoga.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = Yoga.cpp; path = yoga/Yoga.cpp; sourceTree = ""; }; + 9CF163AA457BF8E4BF0F5D320F33EDDB /* EXAppleAuthenticationButton.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXAppleAuthenticationButton.h; path = EXAppleAuthentication/EXAppleAuthenticationButton.h; sourceTree = ""; }; 9D0D62EBA38E1AF2F71F055E9DDC77A9 /* FBLPromise+Reduce.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "FBLPromise+Reduce.m"; path = "Sources/FBLPromises/FBLPromise+Reduce.m"; sourceTree = ""; }; + 9D0F083E8592F1F28DB118F4EC642305 /* RNGestureHandlerState.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNGestureHandlerState.h; path = ios/RNGestureHandlerState.h; sourceTree = ""; }; 9D106A0437D13965C3CDA586B2DF097B /* dec_msa.c */ = {isa = PBXFileReference; includeInIndex = 1; name = dec_msa.c; path = src/dsp/dec_msa.c; sourceTree = ""; }; 9D122ABD895F3D0DD67C634D2BC3AC88 /* cost_sse2.c */ = {isa = PBXFileReference; includeInIndex = 1; name = cost_sse2.c; path = src/dsp/cost_sse2.c; sourceTree = ""; }; - 9D21E7EF7232E7B2F07E97553A3BA5CE /* React-RCTText.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = "React-RCTText.podspec"; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - 9D261CBE9D3D62109B6D4E8FA46F0BCD /* QBAlbumsViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = QBAlbumsViewController.h; path = ios/QBImagePicker/QBImagePicker/QBAlbumsViewController.h; sourceTree = ""; }; 9D28BC83B2BD12060727669AC9861AFF /* Event.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Event.h; path = folly/portability/Event.h; sourceTree = ""; }; 9D3F042F12358CA20535695129D757E0 /* FBLPromise+Always.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "FBLPromise+Always.m"; path = "Sources/FBLPromises/FBLPromise+Always.m"; sourceTree = ""; }; - 9D82889CC21A3DDC1621A270CDF87004 /* RNRootView-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNRootView-dummy.m"; sourceTree = ""; }; + 9D69A9CA01FD4A1D10E9F992B60BAB56 /* ARTNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ARTNode.h; path = ios/ARTNode.h; sourceTree = ""; }; 9D940727FF8FB9C785EB98E56350EF41 /* Podfile */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; name = Podfile; path = ../Podfile; sourceTree = SOURCE_ROOT; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 9D95CEB9C9C0B13F0DE264A05811E840 /* RCTScrollContentViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTScrollContentViewManager.m; sourceTree = ""; }; 9D9830840C80FE492AE46EEB8E178D46 /* Foreach.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Foreach.h; path = folly/container/Foreach.h; sourceTree = ""; }; - 9DB214EB8B00630F1D5159C416C5A867 /* RNRotationHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNRotationHandler.h; sourceTree = ""; }; - 9DD6B4AD935BF557920D22C91DE77005 /* RootView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RootView.m; path = ios/RootView.m; sourceTree = ""; }; - 9DDEACF6D9F9C551705FE0806A63C8A8 /* UMModuleRegistry.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = UMModuleRegistry.m; sourceTree = ""; }; + 9DD6C0726CE8C933BCD11887953ADF35 /* UMFontScalerInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMFontScalerInterface.h; path = UMFontInterface/UMFontScalerInterface.h; sourceTree = ""; }; 9DE4C9AF78A0FDEAEAC5F4679666933F /* ObservableOperator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ObservableOperator.h; path = yarpl/observable/ObservableOperator.h; sourceTree = ""; }; - 9DF547BCD14061CD62E58880D6A92DB5 /* ReactNativeART.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = ReactNativeART.xcconfig; sourceTree = ""; }; + 9E2782C076229A3A4F57ABBE803EECBE /* EXPermissions.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXPermissions.h; path = EXPermissions/EXPermissions.h; sourceTree = ""; }; 9E28A07190E1AE72714AD7F02C6B71C2 /* FIROptions.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIROptions.m; path = FirebaseCore/Sources/FIROptions.m; sourceTree = ""; }; 9E296A829E3A7823F8E2B5E6FDEA9C7C /* Throughput.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Throughput.h; path = rsocket/benchmarks/Throughput.h; sourceTree = ""; }; - 9E2B8CD84A97A366FCD6F728A31C3CE4 /* UMFilePermissionModuleInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMFilePermissionModuleInterface.h; path = UMFileSystemInterface/UMFilePermissionModuleInterface.h; sourceTree = ""; }; 9E57E533E30A43A5232CD36E33390556 /* MacAddress.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MacAddress.h; path = folly/MacAddress.h; sourceTree = ""; }; 9E5F817AABF49567F3399B48908C5949 /* FIRDependency.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRDependency.m; path = FirebaseCore/Sources/FIRDependency.m; sourceTree = ""; }; - 9E7721F7CEB4EB662B6BCEA76FD28E5C /* RCTSegmentedControlManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSegmentedControlManager.m; sourceTree = ""; }; + 9E6A9DCA4ED720A2E4EC9B6E9AB6A01F /* BSG_KSMach_Arm.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSMach_Arm.c; sourceTree = ""; }; 9E85A19C773A4016CCFBA95A003F7AE7 /* QueuedImmediateExecutor.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = QueuedImmediateExecutor.cpp; path = folly/executors/QueuedImmediateExecutor.cpp; sourceTree = ""; }; + 9E8D7A1E3CE26C9ACC0A1520B8423ED7 /* RNCMaskedView-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNCMaskedView-prefix.pch"; sourceTree = ""; }; 9EA4C48C4AD14F4DC80C97F8432ED85C /* SKTapListenerImpl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SKTapListenerImpl.h; path = iOS/Plugins/FlipperKitLayoutPlugin/FlipperKitLayoutPlugin/SKTapListenerImpl.h; sourceTree = ""; }; 9EA7089CD95B48AEAED021DE29C3C09D /* ThreadCachedLists.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ThreadCachedLists.h; path = folly/synchronization/detail/ThreadCachedLists.h; sourceTree = ""; }; + 9EBC1EB2B9F5C4AF5CA545985640E087 /* ARTGroupManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = ARTGroupManager.m; sourceTree = ""; }; 9EC254473080E0BC5D720E02694BCD9B /* animi.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = animi.h; path = src/mux/animi.h; sourceTree = ""; }; - 9ECFA9D5D7BB61AD5F9595852FD24E18 /* SDWebImageError.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageError.h; path = SDWebImage/Core/SDWebImageError.h; sourceTree = ""; }; - 9ED4561357600270D36518FF1E8B923E /* SDWebImage.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImage.h; path = WebImage/SDWebImage.h; sourceTree = ""; }; + 9EC6AB611780C8DEB792590428B46134 /* SDWebImageDownloaderOperation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageDownloaderOperation.h; path = SDWebImage/Core/SDWebImageDownloaderOperation.h; sourceTree = ""; }; + 9EC8F9D6D8887D3604B590E6E5D3BF19 /* RCTTypeSafety.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RCTTypeSafety.xcconfig; sourceTree = ""; }; 9EDAEB7D91BA29518EE5F8AD1DC515B9 /* FBDefines.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBDefines.h; path = iOS/FBDefines/FBDefines.h; sourceTree = ""; }; - 9EDE8B04F6E09D2755963245B947C89B /* RNPushKitEventListener.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNPushKitEventListener.m; path = RNNotifications/RNPushKitEventListener.m; sourceTree = ""; }; 9EE6F55A26F335B4AEEF8BDE4DFBB658 /* tag_compat.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = tag_compat.h; path = src/event2/tag_compat.h; sourceTree = ""; }; - 9EEDA8D0F3FF14A8194A586EB92E3B3D /* RNFetchBlobFS.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNFetchBlobFS.h; path = ios/RNFetchBlobFS.h; sourceTree = ""; }; - 9EFBCED0F028458C60D260A2443070DE /* REAParamNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REAParamNode.h; sourceTree = ""; }; - 9EFD597556152014E460AB59EA35433F /* EXImageLoader.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = EXImageLoader.xcconfig; sourceTree = ""; }; + 9F0713994162CEDC5CE861D95FB38CAA /* RCTDeviceInfo.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTDeviceInfo.mm; sourceTree = ""; }; 9F1926343DE14EA02341958BDCED80F2 /* SharedMutex.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SharedMutex.h; path = folly/SharedMutex.h; sourceTree = ""; }; - 9F21288D0DC16C988FA9A185036BDFAA /* React-cxxreact-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-cxxreact-prefix.pch"; sourceTree = ""; }; - 9F28B4595538423795CA3120E3354615 /* JSIndexedRAMBundle.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = JSIndexedRAMBundle.cpp; sourceTree = ""; }; - 9F629F100430310341B2F399E260D8E6 /* RNFirebaseAdMob.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNFirebaseAdMob.h; sourceTree = ""; }; 9F67E3B28CF2EB033B8DF3FB2E30B46B /* ConnectionContextStore.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ConnectionContextStore.h; path = xplat/Flipper/ConnectionContextStore.h; sourceTree = ""; }; - 9F7A0FE0D72F2FD6789A27F3F0257FB5 /* RNCMaskedView.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RNCMaskedView.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - 9F805C09F19ACC63F9DA6181B3059F82 /* RCTProfileTrampoline-arm64.S */ = {isa = PBXFileReference; includeInIndex = 1; path = "RCTProfileTrampoline-arm64.S"; sourceTree = ""; }; + 9F71BB6C150C9561A8F81C26D5B6072D /* RCTModuloAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTModuloAnimatedNode.h; sourceTree = ""; }; + 9F91B51CEBD5ACA9F2D77ADEF63B81F1 /* React-RCTNetwork.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-RCTNetwork.xcconfig"; sourceTree = ""; }; + 9F95B7430831BB3264E99F2ECD0494D4 /* UMAppLoaderProvider.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = UMAppLoaderProvider.m; path = UMAppLoader/UMAppLoaderProvider.m; sourceTree = ""; }; 9FA67547DCC819A4DB64B67C31C230D8 /* crypto.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = crypto.h; path = ios/include/openssl/crypto.h; sourceTree = ""; }; - 9FCAF078C3CB21E5E988A1FA178661F2 /* SDInternalMacros.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDInternalMacros.m; path = SDWebImage/Private/SDInternalMacros.m; sourceTree = ""; }; + 9FA87C026ADD44DD88FCE72CA739EA3E /* RNLocalize-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNLocalize-dummy.m"; sourceTree = ""; }; + 9FB325EA319135F9DA515CD7A006ED3F /* BugsnagSink.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagSink.h; sourceTree = ""; }; 9FCE117B9000CC7F18A99493B9FD2771 /* FlipperClient.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = FlipperClient.mm; path = iOS/FlipperKit/FlipperClient.mm; sourceTree = ""; }; - 9FD63B7A2E08464D5A03789191955423 /* Bugsnag.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = Bugsnag.h; sourceTree = ""; }; - 9FDF17D3E268D3800790669D4706ECD0 /* RCTNullability.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTNullability.h; sourceTree = ""; }; 9FED0083D687480639A7A9208F697C4B /* SerialExecutor.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = SerialExecutor.cpp; path = folly/executors/SerialExecutor.cpp; sourceTree = ""; }; A00A1F7DBCE854801805786CF75FE432 /* NetOps.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = NetOps.h; path = folly/net/NetOps.h; sourceTree = ""; }; A00B8B5206B4C4433473B0434BC36A23 /* FirebaseAnalytics.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = FirebaseAnalytics.xcconfig; sourceTree = ""; }; - A013810CEF6D83C459DDA3977033960D /* UMBarCodeScannerProviderInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMBarCodeScannerProviderInterface.h; path = UMBarCodeScannerInterface/UMBarCodeScannerProviderInterface.h; sourceTree = ""; }; + A011D2D495A1516FA55E1E919A592DEB /* FontAwesome5_Regular.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = FontAwesome5_Regular.ttf; path = Fonts/FontAwesome5_Regular.ttf; sourceTree = ""; }; A02A478EDE74E1D5ACF0D2CCB22CB4E7 /* conf_api.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = conf_api.h; path = ios/include/openssl/conf_api.h; sourceTree = ""; }; A03115BE36C4F5C208933C287E5C0CAE /* bufferevent_struct.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = bufferevent_struct.h; path = src/event2/bufferevent_struct.h; sourceTree = ""; }; - A038D71AFF5935A62E96279F15FB1CA9 /* RNFirebaseAdMobInterstitial.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNFirebaseAdMobInterstitial.m; sourceTree = ""; }; + A036BF858B9C45767DF6C1955C9BE6A2 /* react-native-cameraroll-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "react-native-cameraroll-dummy.m"; sourceTree = ""; }; + A03A8F6DD32DB385864D9A186CDA2E4F /* EXLocalAuthentication-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "EXLocalAuthentication-dummy.m"; sourceTree = ""; }; A03C51391E5DCC85F63CF0BB0B9149F5 /* Promise.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Promise.h; path = folly/futures/Promise.h; sourceTree = ""; }; + A0663E6F04278F135C5BB5E4F5DA8156 /* RNVectorIcons-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNVectorIcons-dummy.m"; sourceTree = ""; }; A06DA5A6AC0A8948FDFC4B13C43D8CF9 /* File-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "File-inl.h"; path = "folly/gen/File-inl.h"; sourceTree = ""; }; A08107B4566B1C3F3F66FE49898E538F /* Flowables.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Flowables.h; path = yarpl/flowable/Flowables.h; sourceTree = ""; }; - A090CF9C0A7BD1841F9ABBB8AEBDA75F /* RCTImageView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageView.h; path = Libraries/Image/RCTImageView.h; sourceTree = ""; }; - A0A5BC613C561149D537888AC2E00F65 /* REANodesManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = REANodesManager.m; path = ios/REANodesManager.m; sourceTree = ""; }; + A08F43B95C60C5D88E07DFAAE23FF764 /* NativeExpressComponent.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = NativeExpressComponent.m; sourceTree = ""; }; A0B920059A5D77DD1CEDBC45E2B1867A /* GDTCORFlatFileStorage.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCORFlatFileStorage.h; path = GoogleDataTransport/GDTCORLibrary/Private/GDTCORFlatFileStorage.h; sourceTree = ""; }; A0D3291B6110B268D394A23BB9189970 /* StaticTracepoint.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = StaticTracepoint.h; path = folly/tracing/StaticTracepoint.h; sourceTree = ""; }; A0DF227EC04A4C40F7B84D88C1068EAD /* msa_macro.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = msa_macro.h; path = src/dsp/msa_macro.h; sourceTree = ""; }; + A0E427C7108909EFB5B15D46A98F8E9B /* RCTModuleMethod.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTModuleMethod.mm; sourceTree = ""; }; A0EB370BC8D910142108738127F81AEB /* cmac.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = cmac.h; path = ios/include/openssl/cmac.h; sourceTree = ""; }; - A0FEBA98F4D9A822A665C76B34936BF8 /* AntDesign.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = AntDesign.ttf; path = Fonts/AntDesign.ttf; sourceTree = ""; }; A11250059B012F3F12F7779B77BDD89E /* HHWheelTimer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = HHWheelTimer.h; path = folly/io/async/HHWheelTimer.h; sourceTree = ""; }; - A1361018C52F1CE31D87BA70147752DA /* React-jsi-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-jsi-dummy.m"; sourceTree = ""; }; - A163430C5570F89037762F4E9A150712 /* ReactCommon-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "ReactCommon-prefix.pch"; sourceTree = ""; }; + A11BA247591C5A318445351BD305EA7B /* ReactMarker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = ReactMarker.h; sourceTree = ""; }; + A1638D33FB9FD9E9142E2A6AB27D6690 /* UMConstantsInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMConstantsInterface.h; path = UMConstantsInterface/UMConstantsInterface.h; sourceTree = ""; }; + A1813F22650AEFA76A175560FFED1162 /* ObservingInputAccessoryView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = ObservingInputAccessoryView.m; path = lib/ObservingInputAccessoryView.m; sourceTree = ""; }; A186F3FC4D7CD50D00298D3EFDD4165E /* FBString.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBString.h; path = folly/FBString.h; sourceTree = ""; }; - A1C749454E7A224BF2E84D8812788E93 /* RNFirebaseDatabaseReference.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNFirebaseDatabaseReference.m; sourceTree = ""; }; + A189C3FAFD9021E81A1E83518C64C92F /* BSG_KSMach_x86_64.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSMach_x86_64.c; sourceTree = ""; }; + A18DB1F88984A19F7F2006007082F67F /* RCTActionSheetManager.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTActionSheetManager.mm; sourceTree = ""; }; + A1A477C815678DDA9EFD61BF3628F64D /* React-RCTImage.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = "React-RCTImage.podspec"; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + A1BB1C73FE63B7AA2DF5E763DDB62AD6 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; + A1DA803FBAA1370B941169760193931B /* RNUserDefaults.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RNUserDefaults.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; A1E188A1A4DBBD9FE915F731789207D3 /* shim.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = shim.h; path = ios/include/openssl/shim.h; sourceTree = ""; }; - A20E0FF6E32A8014393A252BE69DCB70 /* RCTFrameUpdate.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTFrameUpdate.m; sourceTree = ""; }; + A1FEA8F5E246D542705C116C20E9EE8E /* RNDeviceInfo-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNDeviceInfo-dummy.m"; sourceTree = ""; }; A216542337674A0A89AA2C9BEE379528 /* AtomicUtil-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "AtomicUtil-inl.h"; path = "folly/synchronization/AtomicUtil-inl.h"; sourceTree = ""; }; - A22087B248A717DD8210B86F366BCBA8 /* RNLongPressHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNLongPressHandler.m; sourceTree = ""; }; - A222D2976B2D979BDC00DB9FC9C41331 /* EXAppleAuthentication.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = EXAppleAuthentication.xcconfig; sourceTree = ""; }; + A21B95C6F2CD1A1C7B0ABE2884BC38F3 /* UMTaskManagerInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMTaskManagerInterface.h; path = UMTaskManagerInterface/UMTaskManagerInterface.h; sourceTree = ""; }; A22F5E839A95C087BA61B4F175D21FA0 /* GroupVarint.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = GroupVarint.cpp; path = folly/GroupVarint.cpp; sourceTree = ""; }; + A246E9F82AE2BBDA19FB7D56CBB32A17 /* Compression.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Compression.h; path = ios/src/Compression.h; sourceTree = ""; }; + A2587F7227146F6F4E2C2FEA2D245017 /* RCTConvert+Transform.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RCTConvert+Transform.m"; sourceTree = ""; }; A25A52CD12189FE3A4F7F4CA22582AF6 /* 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 = ""; }; - A26A7EF563377345BE162F627EAD070F /* RCTSettingsManager.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTSettingsManager.mm; sourceTree = ""; }; - A277DF5B66397F66164BD142D7155F5E /* RCTSettingsPlugins.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTSettingsPlugins.mm; sourceTree = ""; }; A27CB91DABE5DA552B926FF662C52DD2 /* webp_dec.c */ = {isa = PBXFileReference; includeInIndex = 1; name = webp_dec.c; path = src/dec/webp_dec.c; sourceTree = ""; }; A284806B87249CF6A17186B58F2CDDA7 /* rpc_struct.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = rpc_struct.h; path = src/event2/rpc_struct.h; sourceTree = ""; }; A290C036AC4B6583D27A54150D182839 /* GDTCCTCompressionHelper.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GDTCCTCompressionHelper.m; path = GoogleDataTransportCCTSupport/GDTCCTLibrary/GDTCCTCompressionHelper.m; sourceTree = ""; }; - A2C604A5CBE7F32526D81258BAF2A7CE /* RCTLayoutAnimationGroup.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTLayoutAnimationGroup.m; sourceTree = ""; }; - A2DA013639549EE873CF7EE0CD0D4B78 /* UMConstantsInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMConstantsInterface.h; path = UMConstantsInterface/UMConstantsInterface.h; sourceTree = ""; }; - A2E4A8E1BBA2C9D7FA64DD67F7403DD0 /* RCTView+SafeAreaCompat.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "RCTView+SafeAreaCompat.m"; path = "ios/SafeAreaView/RCTView+SafeAreaCompat.m"; sourceTree = ""; }; + A293382EF6E465BCA37E9E3F8E6834A0 /* JSIndexedRAMBundle.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = JSIndexedRAMBundle.cpp; sourceTree = ""; }; + A2F038EAD72AFB346797300EBC58442B /* RNLocalize.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RNLocalize.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + A2F701C62B224B575C2C151A5CA544D0 /* ARTSurfaceView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ARTSurfaceView.h; path = ios/ARTSurfaceView.h; sourceTree = ""; }; A2FA88289F51C3EDDE7D9319C5B10200 /* AtomicUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AtomicUtils.h; path = folly/synchronization/detail/AtomicUtils.h; sourceTree = ""; }; - A32DD059BD65EAF034E7A33D7CE1B88C /* RNGestureHandlerRegistry.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNGestureHandlerRegistry.m; path = ios/RNGestureHandlerRegistry.m; sourceTree = ""; }; + A304871AE199D3FE35A90EF5CAC3AABF /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; + A345FE4E7777B59E1D2D315643B09957 /* RCTRootViewDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTRootViewDelegate.h; sourceTree = ""; }; + A350542A58D4A22D9930D1AA009C76A7 /* RNCSafeAreaViewMode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCSafeAreaViewMode.m; path = ios/SafeAreaView/RNCSafeAreaViewMode.m; sourceTree = ""; }; A364F0AF0437389BC6A853C1D2E5C929 /* Future-pre.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "Future-pre.h"; path = "folly/futures/Future-pre.h"; sourceTree = ""; }; A3655DA0C714FD3F0A52EAB3408EA589 /* HardwareConcurrency.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = HardwareConcurrency.h; path = folly/system/HardwareConcurrency.h; sourceTree = ""; }; - A37715BF54D25621CFB1E49A366C553C /* RCTPropsAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTPropsAnimatedNode.h; sourceTree = ""; }; - A38031CF428F811D52F5E8700628EF3E /* RCTImageLoaderProtocol.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageLoaderProtocol.h; path = Libraries/Image/RCTImageLoaderProtocol.h; sourceTree = ""; }; - A39A26BA33C5E32A2591D22BC6F9B47F /* UIView+WebCache.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIView+WebCache.h"; path = "SDWebImage/Core/UIView+WebCache.h"; sourceTree = ""; }; - A3A2A3F1F5208C1B538ADD5DFDB74382 /* BSG_KSCrashSentry_MachException.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashSentry_MachException.h; sourceTree = ""; }; + A377BD2FEC39CD97268F5497BF735EF3 /* BSG_RFC3339DateTool.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_RFC3339DateTool.h; sourceTree = ""; }; + A3AEEF4C31844E7B75D00BDEF3750729 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; A3CB03B43186E240E4CADCA45981997C /* GDTCOREvent+NetworkConnectionInfo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "GDTCOREvent+NetworkConnectionInfo.h"; path = "GoogleDataTransportCCTSupport/GDTCCTLibrary/Private/GDTCOREvent+NetworkConnectionInfo.h"; sourceTree = ""; }; - A3EB9FAAF052112714D0C5942EFF1010 /* CoreModulesPlugins.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CoreModulesPlugins.h; path = React/CoreModules/CoreModulesPlugins.h; sourceTree = ""; }; - A3FC3367489FCDCEAAFAC08B10599EC1 /* RCTAssert.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTAssert.m; sourceTree = ""; }; - A401BFC2002B1F9F6DAFF5F0A3777E03 /* BSG_KSSignalInfo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSSignalInfo.h; sourceTree = ""; }; - A40454307D55504010728E2F84CC410A /* RCTStatusBarManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTStatusBarManager.h; path = React/CoreModules/RCTStatusBarManager.h; sourceTree = ""; }; + A3E1769EF87D6BAF3AF5EC5E77CEC455 /* RCTRawTextShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTRawTextShadowView.m; sourceTree = ""; }; + A3EDD26FB84042F2AF97833D63518172 /* RNCSlider.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCSlider.h; path = ios/RNCSlider.h; sourceTree = ""; }; + A4795321C69CF82E180EB5008B2DDB9E /* RCTProfileTrampoline-x86_64.S */ = {isa = PBXFileReference; includeInIndex = 1; path = "RCTProfileTrampoline-x86_64.S"; sourceTree = ""; }; A479982B751B1B1D8BFCC5B1EB3F085A /* SKRequestInfo.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SKRequestInfo.m; path = iOS/Plugins/FlipperKitNetworkPlugin/FlipperKitNetworkPlugin/SKRequestInfo.m; sourceTree = ""; }; - A483E9CBDE0930880E6851AC0CBD8B79 /* SDWebImageDefine.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWebImageDefine.m; path = SDWebImage/Core/SDWebImageDefine.m; sourceTree = ""; }; - A4A38F32B082EE0D0EA4116F164EDFCA /* SDWebImageCacheKeyFilter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWebImageCacheKeyFilter.m; path = SDWebImage/Core/SDWebImageCacheKeyFilter.m; sourceTree = ""; }; A4A6152E441BA892D3155E0A5B3C5736 /* SKResponseInfo.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SKResponseInfo.m; path = iOS/Plugins/FlipperKitNetworkPlugin/FlipperKitNetworkPlugin/SKResponseInfo.m; sourceTree = ""; }; A4B5070833A7F94E1B5619CA28E46F11 /* thread.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = thread.h; path = src/event2/thread.h; sourceTree = ""; }; A4B54DB3D9E006EB704E1D1E39532C22 /* RequestResponseRequester.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = RequestResponseRequester.cpp; path = rsocket/statemachine/RequestResponseRequester.cpp; sourceTree = ""; }; + A4D92F4E5AD43C000D17EC9F087594EE /* RNCWKProcessPoolManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCWKProcessPoolManager.h; path = apple/RNCWKProcessPoolManager.h; sourceTree = ""; }; A4EA72A930B146D8E06004CA5968769F /* ObservableConcatOperators.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ObservableConcatOperators.h; path = yarpl/observable/ObservableConcatOperators.h; sourceTree = ""; }; - A53DBE7B1126235D0DFB30AD452911FA /* RNNotificationEventHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNNotificationEventHandler.h; path = RNNotifications/RNNotificationEventHandler.h; sourceTree = ""; }; + A50FBFDCC81267B08BA18C8E1327E23A /* SDWebImageCompat.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWebImageCompat.m; path = SDWebImage/Core/SDWebImageCompat.m; sourceTree = ""; }; + A52A1231CE648E5090526BC85272325C /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; + A5445E71DCF0CE110ABCD9AC90289C2B /* React-RCTText.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-RCTText.xcconfig"; sourceTree = ""; }; A5465A0CACF72BF7759D145CF9FDB9F5 /* yuv_mips32.c */ = {isa = PBXFileReference; includeInIndex = 1; name = yuv_mips32.c; path = src/dsp/yuv_mips32.c; sourceTree = ""; }; - A546E06EEC18CC5AB5459E96314B48FF /* RCTReconnectingWebSocket.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCTReconnectingWebSocket.m; path = Libraries/WebSocket/RCTReconnectingWebSocket.m; sourceTree = ""; }; + A54BBF829F3B2564E6F4C54D40B2E31E /* EXAppleAuthenticationRequest.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXAppleAuthenticationRequest.h; path = EXAppleAuthentication/EXAppleAuthenticationRequest.h; sourceTree = ""; }; A55529A02D9F5950F616EA52CC95D4A8 /* FlipperKitLayoutPlugin.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = FlipperKitLayoutPlugin.mm; path = iOS/Plugins/FlipperKitLayoutPlugin/FlipperKitLayoutPlugin/FlipperKitLayoutPlugin.mm; sourceTree = ""; }; - A59E89BC17764FD67238AFCB3714E538 /* RCTImageLoaderWithAttributionProtocol.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageLoaderWithAttributionProtocol.h; path = Libraries/Image/RCTImageLoaderWithAttributionProtocol.h; sourceTree = ""; }; - A5B1AD30F29FFCA73FADF2C224811D06 /* RCTSurfaceView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSurfaceView.h; sourceTree = ""; }; + A57E6CA3367F3AEA100FF515D402297D /* RCTI18nManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTI18nManager.h; path = React/CoreModules/RCTI18nManager.h; sourceTree = ""; }; + A59B2F8DFD8B8E4BEB6A90FDB730E539 /* RCTCxxModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTCxxModule.h; sourceTree = ""; }; + A5AF3C392D5CFECECBC5E3221C393D3F /* RNGestureHandlerButton.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNGestureHandlerButton.h; path = ios/RNGestureHandlerButton.h; sourceTree = ""; }; A5B7013E4DAFADF0380625AF4FB5EDF9 /* Fcntl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Fcntl.h; path = folly/portability/Fcntl.h; sourceTree = ""; }; A5C6D3699A999B12143722BB44BF273F /* symhacks.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = symhacks.h; path = ios/include/openssl/symhacks.h; sourceTree = ""; }; - A5D5568A07B4779107F09DCBA5369C8E /* UMFaceDetectorManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMFaceDetectorManager.h; path = UMFaceDetectorInterface/UMFaceDetectorManager.h; sourceTree = ""; }; - A6247BFFD6345418184A0A399334C902 /* UIImageView+WebCache.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIImageView+WebCache.h"; path = "SDWebImage/Core/UIImageView+WebCache.h"; sourceTree = ""; }; + A5EBE91008B190B92A86AEA307F26608 /* React-CoreModules.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = "React-CoreModules.podspec"; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + A5F3EEF0E74F17391ECE9AAB545B80A6 /* UMReactLogHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = UMReactLogHandler.m; sourceTree = ""; }; A624B6E2C6A10911DD280873B241BCA2 /* utils.c */ = {isa = PBXFileReference; includeInIndex = 1; name = utils.c; path = src/utils/utils.c; sourceTree = ""; }; - A657A818C7D66B71AF1E3C4B05C4962C /* RCTRedBox.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTRedBox.mm; sourceTree = ""; }; + A629B817ACAA496C88A066E80943A5D4 /* Compression.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = Compression.m; path = ios/src/Compression.m; sourceTree = ""; }; + A63CE8D3C5D5A13906556F9595209227 /* RCTMaskedView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTMaskedView.m; sourceTree = ""; }; + A64E076FD356846B65E9A99A0C063A4D /* RCTMaskedViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTMaskedViewManager.m; sourceTree = ""; }; + A6512FCD0C8C561FC74BFD741610BB9B /* BSG_KSCrashSentry.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashSentry.h; sourceTree = ""; }; + A656530FCBC00836B154E428A92A214E /* RCTShadowView+Layout.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RCTShadowView+Layout.h"; sourceTree = ""; }; A660E3609C26A84984902A21A8F5F053 /* FIRInstallationsHTTPError.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstallationsHTTPError.h; path = FirebaseInstallations/Source/Library/Errors/FIRInstallationsHTTPError.h; sourceTree = ""; }; - A6635C4C480B1A9D8C117CA1FCC87D13 /* MessageQueueThread.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = MessageQueueThread.h; sourceTree = ""; }; A663E5F2A25FF966FAAE28EB64263EE5 /* SKDescriptorMapper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SKDescriptorMapper.h; path = iOS/Plugins/FlipperKitLayoutPlugin/FlipperKitLayoutPlugin/SKDescriptorMapper.h; sourceTree = ""; }; - A66DACA6A2BC66D2AD2A1C50D43D9D59 /* RCTSurfaceSizeMeasureMode.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTSurfaceSizeMeasureMode.mm; sourceTree = ""; }; + A6782C5B1836C26C8A30D2166BE7DC0C /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; A686518110E3EF511C07B43C54066949 /* FIRComponentContainer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRComponentContainer.h; path = FirebaseCore/Sources/Private/FIRComponentContainer.h; sourceTree = ""; }; - A68E398CE32D7ADB78DE83D46C0163BD /* UMMagnetometerUncalibratedInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMMagnetometerUncalibratedInterface.h; path = UMSensorsInterface/UMMagnetometerUncalibratedInterface.h; sourceTree = ""; }; A68E5A9B69A3BA0FD52CAF7A354EC93B /* libReact-RCTNetwork.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libReact-RCTNetwork.a"; path = "libReact-RCTNetwork.a"; sourceTree = BUILT_PRODUCTS_DIR; }; A6A364F1EAA61FBF4BCF095078841037 /* GULLoggerCodes.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULLoggerCodes.h; path = GoogleUtilities/Common/GULLoggerCodes.h; sourceTree = ""; }; - A6B6585247FA2579ED5CCC001FF52D48 /* BSG_KSCrashIdentifier.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BSG_KSCrashIdentifier.m; sourceTree = ""; }; - A6CB24B50A72644E27C2B50F6A4FD641 /* ARTGroupManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = ARTGroupManager.m; sourceTree = ""; }; - A6D61A98BE3838A974047F5F353B5506 /* RCTVibration.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTVibration.h; path = Libraries/Vibration/RCTVibration.h; sourceTree = ""; }; + A6B65A06905EF54F40604862EE0F13D8 /* SDImageCodersManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageCodersManager.h; path = SDWebImage/Core/SDImageCodersManager.h; sourceTree = ""; }; + A6BDC93EC86E8A30D2F6801B94949AC8 /* UIImage+Metadata.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIImage+Metadata.m"; path = "SDWebImage/Core/UIImage+Metadata.m"; sourceTree = ""; }; + A6C8222EFA36663530D99FE0CE80ECF8 /* RCTMultilineTextInputView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTMultilineTextInputView.m; sourceTree = ""; }; + A6D148BA049F78A1798D79165B0A7455 /* MessageQueueThread.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = MessageQueueThread.h; sourceTree = ""; }; A6E160FB766104FB176D30B9193996EF /* Iterators.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Iterators.h; path = folly/detail/Iterators.h; sourceTree = ""; }; A6F20E6C826970B299408713259A5FAB /* AtomicNotification-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "AtomicNotification-inl.h"; path = "folly/synchronization/AtomicNotification-inl.h"; sourceTree = ""; }; - A70BC19B9CE70FBC2F3A251A3BCC2C56 /* UMLogManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMLogManager.h; sourceTree = ""; }; - A71753D566CA5BDA4BF18B727FAA5C67 /* localNotifications.md */ = {isa = PBXFileReference; includeInIndex = 1; name = localNotifications.md; path = docs/localNotifications.md; sourceTree = ""; }; + A6F7B7A823F46B449D3389D5ABFE812F /* EXHaptics-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "EXHaptics-prefix.pch"; sourceTree = ""; }; + A7141C293676555BF0CC52A4D0E555B8 /* RCTModalManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTModalManager.m; sourceTree = ""; }; + A7186477CE3EFB969E49B458B0B8DF56 /* threadsafe.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = threadsafe.h; sourceTree = ""; }; A720EAE100FC5497152E570CB00FF846 /* GULReachabilityChecker.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GULReachabilityChecker.m; path = GoogleUtilities/Reachability/GULReachabilityChecker.m; sourceTree = ""; }; - A724BD0C25F5146F814C94E6A142AE77 /* ARTRadialGradient.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = ARTRadialGradient.h; sourceTree = ""; }; A732941A0590D1ACD917CC88996CD93E /* IOObjectCache.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = IOObjectCache.h; path = folly/executors/IOObjectCache.h; sourceTree = ""; }; + A7337D3BE715CC565A00F1ECE675785A /* RNDateTimePicker.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNDateTimePicker.xcconfig; sourceTree = ""; }; A73B460A4E4079028F132038E26F86C6 /* SDWebImageWebPCoder-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "SDWebImageWebPCoder-prefix.pch"; sourceTree = ""; }; - A7798071B7755EBB888C05B185A09583 /* BSG_KSCrashSentry_CPPException.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashSentry_CPPException.h; sourceTree = ""; }; + A7521A5B7DF154770C60A3652B33D089 /* EXKeepAwake-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "EXKeepAwake-dummy.m"; sourceTree = ""; }; A78443DC2C1D09753457C97723AAC416 /* Constexpr.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Constexpr.h; path = folly/portability/Constexpr.h; sourceTree = ""; }; - A78DE93255125EB0D55025FCE381012D /* UMFileSystemInterface.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = UMFileSystemInterface.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - A7933DE23E2E94AB414A61ADF5BF0B52 /* RNSScreenContainer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNSScreenContainer.h; path = ios/RNSScreenContainer.h; sourceTree = ""; }; + A786107FDA8F3C5A5B92841E35A3A935 /* RCTScrollContentView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTScrollContentView.h; sourceTree = ""; }; + A7AA527D7FE5D0F6C82B2404F06A5960 /* RNFetchBlobProgress.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNFetchBlobProgress.m; path = ios/RNFetchBlobProgress.m; sourceTree = ""; }; A7B6C083F3FBB943D1EE24157A1F8E5D /* SysResource.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SysResource.h; path = folly/portability/SysResource.h; sourceTree = ""; }; - A7C9923AFC25F79D1EE735484960E4C2 /* RNCAppearanceProviderManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCAppearanceProviderManager.h; path = ios/Appearance/RNCAppearanceProviderManager.h; sourceTree = ""; }; + A7CAAD1ED4F12E5B2F74362B2A7C67E2 /* QBAlbumCell.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = QBAlbumCell.h; path = ios/QBImagePicker/QBImagePicker/QBAlbumCell.h; sourceTree = ""; }; + A7D58D0EA02BB76DC06B12ECBA7F98C2 /* RNGestureHandlerRegistry.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNGestureHandlerRegistry.m; path = ios/RNGestureHandlerRegistry.m; sourceTree = ""; }; A7D831E76894EA3AC47480A98214CEF4 /* FIRInstallationsHTTPError.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstallationsHTTPError.m; path = FirebaseInstallations/Source/Library/Errors/FIRInstallationsHTTPError.m; sourceTree = ""; }; + A7D84183EF4181F8322902ED969165C0 /* RCTMacros.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTMacros.h; sourceTree = ""; }; A7F6197D13E90F383CF5855CEAE4E528 /* double-conversion.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = "double-conversion.cc"; path = "double-conversion/double-conversion.cc"; sourceTree = ""; }; - A80277C8113E75C2E96371380BE4F8DA /* SDImageCodersManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageCodersManager.h; path = SDWebImage/Core/SDImageCodersManager.h; sourceTree = ""; }; A810AEA1B09EFAD2784CE0CB999EBC89 /* TOCropScrollView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TOCropScrollView.h; path = "Objective-C/TOCropViewController/Views/TOCropScrollView.h"; sourceTree = ""; }; - A8161AF7903D5BD9636CBDBFD812B802 /* ARTSurfaceView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ARTSurfaceView.h; path = ios/ARTSurfaceView.h; sourceTree = ""; }; - A836149B7ADFE67BA66D94796213734B /* RNJitsiMeetViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNJitsiMeetViewManager.m; path = ios/RNJitsiMeetViewManager.m; sourceTree = ""; }; - A844ABFB86195E29719BE7A3A70722D8 /* RCTTVNavigationEventEmitter.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTTVNavigationEventEmitter.mm; sourceTree = ""; }; - A8496B7000568ED2B46217716ECFC5D8 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; + A81873EB7106563CF355F079BEDA8040 /* React.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = React.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + A81BF880660132943B1E49E251DD074A /* ARTRenderable.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = ARTRenderable.m; path = ios/ARTRenderable.m; sourceTree = ""; }; + A8702A169E5E1E960019144E3EF19780 /* RNFetchBlob.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNFetchBlob.m; sourceTree = ""; }; A87DE3CF8DDFDB1D63FA6F3678C624F8 /* GDTCCTCompressionHelper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCCTCompressionHelper.h; path = GoogleDataTransportCCTSupport/GDTCCTLibrary/Private/GDTCCTCompressionHelper.h; sourceTree = ""; }; - A8CBE9BA702F9353DB44F29C05C20508 /* BSG_KSJSONCodecObjC.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSJSONCodecObjC.h; sourceTree = ""; }; - A8D8282349A5EE2BA6014CDD4B5CB405 /* UMFontInterface.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = UMFontInterface.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + A8C934A443682E25A5C118561898718A /* React-RCTVibration-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-RCTVibration-dummy.m"; sourceTree = ""; }; + A8DED098DA264CAECA3C1F977D252144 /* BSG_KSCrashSentry_NSException.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BSG_KSCrashSentry_NSException.m; sourceTree = ""; }; + A8E288CC2CEC3E4674A638CCCEA0FB6A /* RCTTypeSafety.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RCTTypeSafety.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; A8F3ABC40B91A396D7EE15FF8E0B8786 /* FlipperPlugin.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FlipperPlugin.h; path = xplat/Flipper/FlipperPlugin.h; sourceTree = ""; }; A8FC42D4FC5B5C609C187742BBAEBA82 /* Pods-RocketChatRN-frameworks.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-RocketChatRN-frameworks.sh"; sourceTree = ""; }; - A93A9E7A65732180621ADEFAE3CDD08A /* ObservingInputAccessoryView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = ObservingInputAccessoryView.m; path = lib/ObservingInputAccessoryView.m; sourceTree = ""; }; - A94BEBCFD78E12A3722A2AA65B282DA0 /* RNDateTimePickerManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNDateTimePickerManager.h; path = ios/RNDateTimePickerManager.h; sourceTree = ""; }; + A90DDACC59AD11DBAF2AFC2B338DFBC4 /* react-native-jitsi-meet-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "react-native-jitsi-meet-dummy.m"; sourceTree = ""; }; + A92E58613D509249E06AED4B27E88E0D /* RCTImageSource.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTImageSource.h; sourceTree = ""; }; + A94B3E0A837B5E100E9DA52E307F913D /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; + A9622FAF256FEAB83C7DC8367852D67A /* BSG_KSCrashIdentifier.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashIdentifier.h; sourceTree = ""; }; A969579433C9A90BAA8A78856842E154 /* Bits.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Bits.h; path = folly/lang/Bits.h; sourceTree = ""; }; + A96B9A374B1980315BA061F659A6F150 /* UMBarCodeScannerInterface.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMBarCodeScannerInterface.xcconfig; sourceTree = ""; }; A96C888C80D9DA21FF6DF2F4A7BFFD81 /* ScheduledSubscription.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ScheduledSubscription.h; path = rsocket/internal/ScheduledSubscription.h; sourceTree = ""; }; A976C24D3A149D5463B2AC6009B2DEA9 /* Conv.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Conv.h; path = folly/Conv.h; sourceTree = ""; }; - A97B54AF94D69E660EA7DC1739BA3584 /* RCTAnimationPlugins.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTAnimationPlugins.h; path = Libraries/NativeAnimation/RCTAnimationPlugins.h; sourceTree = ""; }; - A98B1CDB4B1984AFE972010457F0498B /* RNDateTimePicker.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RNDateTimePicker.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + A985A8068DBA8FB709317DA511B658A2 /* UMImageLoaderInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMImageLoaderInterface.h; path = UMImageLoaderInterface/UMImageLoaderInterface.h; sourceTree = ""; }; + A99A041ED33EBAA221EA360164457909 /* RNPushKitEventHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNPushKitEventHandler.m; path = RNNotifications/RNPushKitEventHandler.m; sourceTree = ""; }; + A99B9A2FD8E990A6D6B0B89A0615D68D /* BSG_KSMachApple.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSMachApple.h; sourceTree = ""; }; + A9BFB46B6832302A3D8501189A3A243F /* FBReactNativeSpec-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "FBReactNativeSpec-prefix.pch"; sourceTree = ""; }; + A9C90B2CE097ECF49E1BB74BCCD4F1B6 /* REAJSCallNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REAJSCallNode.m; sourceTree = ""; }; A9D14EDE01F8E280A8F8150227B7F7A6 /* Fingerprint.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = Fingerprint.cpp; path = folly/Fingerprint.cpp; sourceTree = ""; }; + AA184AA44C09A55DD786659F1C305647 /* RNCSlider.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCSlider.m; path = ios/RNCSlider.m; sourceTree = ""; }; AA21E5249C04715DB601081A3584269E /* GDTCORUploadPackage.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCORUploadPackage.h; path = GoogleDataTransport/GDTCORLibrary/Public/GDTCORUploadPackage.h; sourceTree = ""; }; - AA531003DDE8FDDEBA57CA4EAB5089AD /* RCTAnimationDriver.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTAnimationDriver.h; sourceTree = ""; }; - AA59683EAE2D4F30A185132700EC4A23 /* UMAppLoader-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "UMAppLoader-prefix.pch"; sourceTree = ""; }; - AA61A310B696E563645519817B84CD91 /* UMSensorsInterface.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = UMSensorsInterface.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + AA29A83E3F33D4D1A190DA06EEE1623F /* RCTRawTextShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTRawTextShadowView.h; sourceTree = ""; }; + AA4409B962C6BD063E2902E75EF0692E /* LNAnimator.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = LNAnimator.m; sourceTree = ""; }; AA7CF873064A7554B34BAC6A3F9E7DEB /* UnboundedQueue.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UnboundedQueue.h; path = folly/concurrency/UnboundedQueue.h; sourceTree = ""; }; AA8B5FDB85C551C1FA351B3A70116816 /* GDTCORTransport_Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCORTransport_Private.h; path = GoogleDataTransport/GDTCORLibrary/Private/GDTCORTransport_Private.h; sourceTree = ""; }; - AA8CD82969CCBF7E27116E4DF0040E1E /* react-native-appearance.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = "react-native-appearance.podspec"; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; AA9187713B9511D1223F602D2181B213 /* Hazptr.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Hazptr.h; path = folly/synchronization/Hazptr.h; sourceTree = ""; }; + AAB0076654BE0EC33522D4EC085A1B6D /* KeyCommands-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "KeyCommands-prefix.pch"; sourceTree = ""; }; + AAB8791040F75B9ED1111A26A19615DB /* RCTConstants.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTConstants.m; sourceTree = ""; }; AAC48D7F1751CB19AA0F6FF5619610CA /* RSocketServiceHandler.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = RSocketServiceHandler.cpp; path = rsocket/RSocketServiceHandler.cpp; sourceTree = ""; }; - AAD40C0280E8F25C4C55F966D4D1DC33 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; AADF4AD8D1389D4DD8D6E871DC5EC1DD /* FIRInstallationsIIDStore.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstallationsIIDStore.h; path = FirebaseInstallations/Source/Library/IIDMigration/FIRInstallationsIIDStore.h; sourceTree = ""; }; - AB19388EE5EB2981E1C9A9DF67E6FF9C /* RNGestureHandlerEvents.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNGestureHandlerEvents.m; path = ios/RNGestureHandlerEvents.m; sourceTree = ""; }; + AAE8FDF22C8DECF917FAE894D8E30F24 /* React-RCTText-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-RCTText-dummy.m"; sourceTree = ""; }; + AAEC32AC425688FBB8601407BC3EDCE9 /* RCTTypedModuleConstants.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTypedModuleConstants.h; sourceTree = ""; }; + AB0D8208F0206723646686CE2F7EDCD5 /* RCTRawTextViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTRawTextViewManager.m; sourceTree = ""; }; + AB17B74C4F0476D139535A28C1FAD564 /* RCTLayoutAnimation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTLayoutAnimation.m; sourceTree = ""; }; AB40D15C63CB2250B9DF830DCA6A7A79 /* GDTCORConsoleLogger.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GDTCORConsoleLogger.m; path = GoogleDataTransport/GDTCORLibrary/GDTCORConsoleLogger.m; sourceTree = ""; }; - AB48E873BEAA1DD110680782677F158D /* REAJSCallNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REAJSCallNode.h; sourceTree = ""; }; AB4A4DDA6222D4EF7D2A50ECEF6532D5 /* buffer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = buffer.h; path = ios/include/openssl/buffer.h; sourceTree = ""; }; AB62F1932D4F21CA1B738E66C407D3A5 /* FutureSplitter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FutureSplitter.h; path = folly/futures/FutureSplitter.h; sourceTree = ""; }; - AB65728D71BBEAE5B472C8895E06E6C6 /* SDImageGraphics.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageGraphics.m; path = SDWebImage/Core/SDImageGraphics.m; sourceTree = ""; }; AB6FD7FA8A7CF99124B42EAE0348214D /* FlipperDiagnosticsViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FlipperDiagnosticsViewController.m; path = iOS/FlipperKit/FlipperDiagnosticsViewController.m; sourceTree = ""; }; - ABAB5A64E39FD3A82EEDA09B578377C8 /* SDImageCachesManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageCachesManager.h; path = SDWebImage/Core/SDImageCachesManager.h; sourceTree = ""; }; + ABA5AE74FC77D8005BB3AB05665EC8D9 /* RNNativeViewHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNNativeViewHandler.h; sourceTree = ""; }; ABC03988040C1E00B3432A7FE1422C53 /* Barrier.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Barrier.h; path = folly/futures/Barrier.h; sourceTree = ""; }; ABCA9F4CD6EE0D4686EBA505F526A436 /* libPods-ShareRocketChatRN.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libPods-ShareRocketChatRN.a"; path = "libPods-ShareRocketChatRN.a"; sourceTree = BUILT_PRODUCTS_DIR; }; - ABF3E02DF86394EF28191B22D5FB3F12 /* RCTBridge.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTBridge.m; sourceTree = ""; }; ABF655AFE18A01D4FDEDEFA6627CC4A9 /* symbolize.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = symbolize.cc; path = src/symbolize.cc; sourceTree = ""; }; ABFEEA82A6C346B22843FBE0B0582182 /* libFBReactNativeSpec.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libFBReactNativeSpec.a; path = libFBReactNativeSpec.a; sourceTree = BUILT_PRODUCTS_DIR; }; ABFF9C7A054206F034417F827D639CD3 /* ThreadedExecutor.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = ThreadedExecutor.cpp; path = folly/executors/ThreadedExecutor.cpp; sourceTree = ""; }; - AC06E8BB8CABAFF99B9F61176E5F56DA /* RCTJavaScriptLoader.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTJavaScriptLoader.mm; sourceTree = ""; }; - AC0BB14BEB73A57DC8B734160F84C2FF /* RCTLinkingManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTLinkingManager.h; path = Libraries/LinkingIOS/RCTLinkingManager.h; sourceTree = ""; }; AC12C7E29555A7CFDDEF1EDB5BC2F3DA /* libFlipper-DoubleConversion.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libFlipper-DoubleConversion.a"; path = "libFlipper-DoubleConversion.a"; sourceTree = BUILT_PRODUCTS_DIR; }; AC147D64E4CB195E28D96464BB18ACD6 /* SysMman.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SysMman.h; path = folly/portability/SysMman.h; sourceTree = ""; }; AC3558B8BE5C9B4D23936F49886E35E9 /* upsampling_sse41.c */ = {isa = PBXFileReference; includeInIndex = 1; name = upsampling_sse41.c; path = src/dsp/upsampling_sse41.c; sourceTree = ""; }; @@ -8428,147 +8379,168 @@ AC3CD90F37CA219F8D166586CE751D6A /* alpha_enc.c */ = {isa = PBXFileReference; includeInIndex = 1; name = alpha_enc.c; path = src/enc/alpha_enc.c; sourceTree = ""; }; AC42E8A852293278C6758BA9966495F7 /* GDTCORUploadCoordinator.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GDTCORUploadCoordinator.m; path = GoogleDataTransport/GDTCORLibrary/GDTCORUploadCoordinator.m; sourceTree = ""; }; AC4EB289D6F2CCA5B3D2B476B9D57A49 /* ThreadCachedArena.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ThreadCachedArena.h; path = folly/memory/ThreadCachedArena.h; sourceTree = ""; }; - AC7AD2E3DC6B86D1E8C1603D810A6621 /* EXKeepAwake.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = EXKeepAwake.xcconfig; sourceTree = ""; }; + AC5EE4CAEE5EB08A574D75553DC5F91A /* SDWebImageOperation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWebImageOperation.m; path = SDWebImage/Core/SDWebImageOperation.m; sourceTree = ""; }; + AC6C66141EB68FB0DF7B8B82D9435216 /* RCTSettingsPlugins.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTSettingsPlugins.mm; sourceTree = ""; }; AC810F6424D64F2673FB3991806617EC /* 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 = ""; }; AC846AEF3261BACC05944DB052148106 /* Singleton.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = Singleton.cpp; path = folly/Singleton.cpp; sourceTree = ""; }; - AC9588F1D3452A95C29AADEAE2654DAC /* RCTDecayAnimation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTDecayAnimation.h; sourceTree = ""; }; - ACAF80EA5DCDD687AEC7BBCB213D0F14 /* React-RCTBlob.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-RCTBlob.xcconfig"; sourceTree = ""; }; - ACB4201D7961B401EC845571B7E1E960 /* RCTMaskedViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTMaskedViewManager.m; sourceTree = ""; }; + AC90E40536A4150AAD8796714CC5221C /* RCTScrollContentShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTScrollContentShadowView.m; sourceTree = ""; }; + AC919BFFBEA8F33104A0410C7A183BED /* RCTSurfaceRootView.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTSurfaceRootView.mm; sourceTree = ""; }; + ACA2C239D391E416666146CE353C7537 /* react-native-appearance.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = "react-native-appearance.podspec"; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + ACA4BBCB6F88E1B04C71884CEAFA064F /* LNInterpolation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = LNInterpolation.h; sourceTree = ""; }; + ACA9379001E5C2076EFC437494FBF2BE /* BSG_KSObjC.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSObjC.c; sourceTree = ""; }; + ACB988BE0BB6DC701ADBFF25CD159A79 /* RCTMultiplicationAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTMultiplicationAnimatedNode.m; sourceTree = ""; }; ACBB7F62B267CC7C9BBBAE41DE94743B /* libFlipper-PeerTalk.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libFlipper-PeerTalk.a"; path = "libFlipper-PeerTalk.a"; sourceTree = BUILT_PRODUCTS_DIR; }; - ACBC6B28CBAE195DCE491C2C0BF291BA /* UMAppLoader-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "UMAppLoader-dummy.m"; sourceTree = ""; }; ACBD3572953CE53D9D5E8B091182B56F /* md4.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = md4.h; path = ios/include/openssl/md4.h; sourceTree = ""; }; - ACC10530C3FEADFF050AA7DD6DDEADDA /* REATransformNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REATransformNode.h; sourceTree = ""; }; ACD1FDBC8E42B68C95770F5595AC9591 /* libevent.a */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = archive.ar; name = libevent.a; path = lib/libevent.a; sourceTree = ""; }; + ACD23349C8CCB11788B6AC8E8CAD4B9B /* RNRootView-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNRootView-prefix.pch"; sourceTree = ""; }; + ACDD01CC361DCC116F79A0AAF9401EF1 /* ARTNodeManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = ARTNodeManager.h; sourceTree = ""; }; + ACE3962C93E16E9FEC0EBF2E9D9B5523 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; + ACECABC145F13DC1C30D839FBBCA96ED /* ARTTextManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = ARTTextManager.h; sourceTree = ""; }; + ACFD73BE9A35CEA1289DA078EC4C6F01 /* BugsnagReactNative.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = BugsnagReactNative.m; path = cocoa/BugsnagReactNative.m; sourceTree = ""; }; AD093D7CD3B222CC7E443BBA1C797ACC /* WarmResumeManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = WarmResumeManager.h; path = rsocket/internal/WarmResumeManager.h; sourceTree = ""; }; + AD0B04DF894CA0F11A1EFF61329BAAC5 /* RNCSafeAreaViewLocalData.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCSafeAreaViewLocalData.h; path = ios/SafeAreaView/RNCSafeAreaViewLocalData.h; sourceTree = ""; }; AD1783DEF94BD003B7142CE78AEC498B /* DestructorCheck.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DestructorCheck.h; path = folly/io/async/DestructorCheck.h; sourceTree = ""; }; AD220AA276D5E0A82C411E0A45B1435A /* Math.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Math.h; path = folly/portability/Math.h; sourceTree = ""; }; - AD296C57DB3D2B54D892B4F48C13E137 /* RCTAsyncLocalStorage.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTAsyncLocalStorage.h; path = React/CoreModules/RCTAsyncLocalStorage.h; sourceTree = ""; }; - AD3342661710A1005E85BC5965CB60F6 /* RCTBaseTextInputView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBaseTextInputView.h; sourceTree = ""; }; AD40A94AE1ADFA1CDF9602BA3B04C90E /* libEXAV.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libEXAV.a; path = libEXAV.a; sourceTree = BUILT_PRODUCTS_DIR; }; - AD6619459190D5772FFED9BDD939E82D /* RCTShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTShadowView.h; sourceTree = ""; }; + AD6804036572C0AEBF851DCD33B1EA11 /* RCTRedBox.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTRedBox.h; path = React/CoreModules/RCTRedBox.h; sourceTree = ""; }; + AD8629C1590BC91E6D89DD35DBA5D904 /* RCTDisplayLink.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTDisplayLink.h; sourceTree = ""; }; AD9B104B3FCAD3FE5DB05E65638A8A0D /* StaticTracepoint-ELFx86.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "StaticTracepoint-ELFx86.h"; path = "folly/tracing/StaticTracepoint-ELFx86.h"; sourceTree = ""; }; + ADB4B73DED1F16EE49890B2A31F437E4 /* RCTImageView.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTImageView.mm; sourceTree = ""; }; + ADB7F55FC2FADC25301D81F6E03C8939 /* QBImagePicker.storyboard */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = file.storyboard; name = QBImagePicker.storyboard; path = ios/QBImagePicker/QBImagePicker/QBImagePicker.storyboard; sourceTree = ""; }; + ADC029174C414146767FB794F08E18DF /* RCTInterpolationAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTInterpolationAnimatedNode.h; sourceTree = ""; }; ADC0B004CF882C26B697349490222BF1 /* FireAndForgetBasedFlipperResponder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FireAndForgetBasedFlipperResponder.h; path = xplat/Flipper/FireAndForgetBasedFlipperResponder.h; sourceTree = ""; }; + ADC8662D2B225266F38ACAE80CCE4755 /* RCTModuleData.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTModuleData.h; sourceTree = ""; }; + ADC9523244AF164FA29F67402A05EF79 /* LICENCE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENCE; sourceTree = ""; }; + ADD2590F64B2A7DA2E9048BD9E1F4C15 /* SharedProxyCxxModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = SharedProxyCxxModule.h; sourceTree = ""; }; + ADD684420F0E3B1C8F6DE6C07F842F82 /* RCTTextAttributes.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTTextAttributes.m; sourceTree = ""; }; ADD771E2FE3930338DC7788402F4361A /* conf.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = conf.h; path = ios/include/openssl/conf.h; sourceTree = ""; }; - ADD867981938A544D7253B6A062EA2D9 /* SDWebImageTransition.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWebImageTransition.m; path = SDWebImage/Core/SDWebImageTransition.m; sourceTree = ""; }; - ADE10929ECA897064616AF907B1E46F7 /* BSG_KSCrashAdvanced.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashAdvanced.h; sourceTree = ""; }; + ADE2CC5B996CC3ACF2BFCB35026C18EA /* RCTScrollContentViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTScrollContentViewManager.h; sourceTree = ""; }; ADE57F6DEE2F506A738387E8BB3FCB5A /* FlipperCppWrapperPlugin.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FlipperCppWrapperPlugin.h; path = iOS/FlipperKit/CppBridge/FlipperCppWrapperPlugin.h; sourceTree = ""; }; + ADEBEA78A5A2FA33F1C32DDB91846980 /* RCTBaseTextShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTBaseTextShadowView.m; sourceTree = ""; }; + ADF426CEFF5DA0F624BC223B7779A349 /* BugsnagSessionTrackingPayload.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagSessionTrackingPayload.m; sourceTree = ""; }; ADF9A92B9FAAABEF226F528138829B02 /* HazptrThreadPoolExecutor.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = HazptrThreadPoolExecutor.cpp; path = folly/synchronization/HazptrThreadPoolExecutor.cpp; sourceTree = ""; }; + AE1D4F9079B9928925B40030D28090BD /* BSG_KSDynamicLinker.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSDynamicLinker.c; sourceTree = ""; }; AE1DDA6462CAE7ECA09C1514C6480BDB /* FrameType.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FrameType.h; path = rsocket/framing/FrameType.h; sourceTree = ""; }; AE2B51D72A10BBBF6FEAAA9CD98C67A5 /* zh-Hans.lproj */ = {isa = PBXFileReference; includeInIndex = 1; name = "zh-Hans.lproj"; path = "Objective-C/TOCropViewController/Resources/zh-Hans.lproj"; sourceTree = ""; }; AE369C5E433C27D42FD6CD3C3066D454 /* RelaxedConcurrentPriorityQueue.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RelaxedConcurrentPriorityQueue.h; path = folly/experimental/RelaxedConcurrentPriorityQueue.h; sourceTree = ""; }; AE389898517E134B6C210F47469C4FDC /* StreamsWriter.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = StreamsWriter.cpp; path = rsocket/statemachine/StreamsWriter.cpp; sourceTree = ""; }; + AE41CBA7D7724FB150597E80EEE32D54 /* RCTMaskedView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTMaskedView.h; sourceTree = ""; }; + AE4BEF08A5CF7CE51D657240D7A67911 /* FontAwesome5_Brands.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = FontAwesome5_Brands.ttf; path = Fonts/FontAwesome5_Brands.ttf; sourceTree = ""; }; AE4F90352A568E900EA80925A70D0247 /* common_dec.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = common_dec.h; path = src/dec/common_dec.h; sourceTree = ""; }; - AE644E26D8F04368E378F7B19A941786 /* Yoga-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Yoga-dummy.m"; sourceTree = ""; }; - AE8ED7807A76E21DB0AB58FBD57A8F9F /* UMUserNotificationCenterProxyInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMUserNotificationCenterProxyInterface.h; path = UMPermissionsInterface/UMUserNotificationCenterProxyInterface.h; sourceTree = ""; }; - AEA925593969061E24617E29F3435905 /* RNFlingHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNFlingHandler.h; sourceTree = ""; }; + AE63F53BA7000B9AE1CA5FADEECA08B1 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; + AE710147FA7C87A097FC7A3D6E6FC6B9 /* EXConstants.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXConstants.h; path = EXConstants/EXConstants.h; sourceTree = ""; }; + AE8035DF834BCD014B264E9E1E4AE128 /* RNFirebaseAuth.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNFirebaseAuth.m; sourceTree = ""; }; AEABDE2E04ED6688F5850A93F9B58F01 /* Iterator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Iterator.h; path = folly/container/Iterator.h; sourceTree = ""; }; - AEACA277E79E36A282E3096230EDE338 /* NSBezierPath+SDRoundedCorners.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSBezierPath+SDRoundedCorners.h"; path = "SDWebImage/Private/NSBezierPath+SDRoundedCorners.h"; sourceTree = ""; }; + AEC62D162C442A6BF709A0F065459958 /* SDWebImage.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImage.h; path = WebImage/SDWebImage.h; sourceTree = ""; }; AECBEE636EB2D64798479F9B3CD4FA9B /* ScheduledSubscriber.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ScheduledSubscriber.h; path = rsocket/internal/ScheduledSubscriber.h; sourceTree = ""; }; AEE163705C89AC21A131F39B79D0F63B /* UIView+SKInvalidation.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = "UIView+SKInvalidation.mm"; path = "iOS/Plugins/FlipperKitLayoutPlugin/FlipperKitLayoutPlugin/UIView+SKInvalidation.mm"; sourceTree = ""; }; - AEF05B137E6222CA20F7C962A1AE1E34 /* RCTComponent.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTComponent.h; sourceTree = ""; }; - AEF51B0C250F3801E5F3D379897E6638 /* RCTComponentEvent.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTComponentEvent.h; sourceTree = ""; }; + AEE5B1178974C42B0AD7B48FCBEF3FF9 /* RCTSurfaceHostingProxyRootView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSurfaceHostingProxyRootView.h; sourceTree = ""; }; + AEF55CDCBDB02907B3E948D1A9F24DE5 /* YGMacros.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YGMacros.h; path = yoga/YGMacros.h; sourceTree = ""; }; + AF0DDA38ADFDEA96EB7483B59F23E246 /* EXImageLoader-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "EXImageLoader-prefix.pch"; sourceTree = ""; }; + AF165617754A4A94907ED4B9931CD212 /* BugsnagReactNative.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = BugsnagReactNative.h; path = cocoa/BugsnagReactNative.h; sourceTree = ""; }; AF1A52C998D8171D541BEDA5F06D24AA /* GULNetwork.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULNetwork.h; path = GoogleUtilities/Network/Private/GULNetwork.h; sourceTree = ""; }; - AF1F6FD35CBC3BA539E068BB68FA6300 /* RootView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RootView.h; path = ios/RootView.h; sourceTree = ""; }; + AF22D40689FCFF5C60FDDA19CE656E10 /* ARTContainer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ARTContainer.h; path = ios/ARTContainer.h; sourceTree = ""; }; AF2B8CA91FAF518D816F9D608C6514A4 /* GULNSData+zlib.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "GULNSData+zlib.h"; path = "GoogleUtilities/NSData+zlib/GULNSData+zlib.h"; sourceTree = ""; }; - AF46CB11B96AE2F376EA3DBCCE72CE3A /* de.lproj */ = {isa = PBXFileReference; includeInIndex = 1; name = de.lproj; path = ios/QBImagePicker/QBImagePicker/de.lproj; sourceTree = ""; }; - AF5CE5148857621B9A277B87101F41BF /* UIImage+MemoryCacheCost.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIImage+MemoryCacheCost.h"; path = "SDWebImage/Core/UIImage+MemoryCacheCost.h"; sourceTree = ""; }; + AF40E8187338935662AB479227DD9BA0 /* RCTTextSelection.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTTextSelection.m; sourceTree = ""; }; + AF418F68F0F15D466B7CE3C7187E7C91 /* BitUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = BitUtils.h; path = yoga/BitUtils.h; sourceTree = ""; }; + AF71F1C43B5C9DFF04B6B15E9A6940A9 /* RCTEventAnimation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTEventAnimation.h; sourceTree = ""; }; AF72FD600DE7E2D330BA50F877993E05 /* libUMCore.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libUMCore.a; path = libUMCore.a; sourceTree = BUILT_PRODUCTS_DIR; }; - AF9BBCCCA38CF3024A8E55E70FC480AC /* RCTDevSettings.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTDevSettings.mm; sourceTree = ""; }; - AF9C9C70D76802E90418693DC909EBB5 /* RCTActivityIndicatorViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTActivityIndicatorViewManager.m; sourceTree = ""; }; + AFA1D653A46DF0AB4FDF5CC4161D86DA /* RNUserDefaults-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNUserDefaults-dummy.m"; sourceTree = ""; }; + AFAF6C2791F7EC98D653618B16FEB483 /* RCTFPSGraph.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTFPSGraph.h; path = React/CoreModules/RCTFPSGraph.h; sourceTree = ""; }; AFB017F3173CA155D67E4F2D5C68D4E9 /* GlobalExecutor.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = GlobalExecutor.cpp; path = folly/executors/GlobalExecutor.cpp; sourceTree = ""; }; - AFB2F99EB1D0F838AAD992D65571C7EB /* EXAudioSessionManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXAudioSessionManager.h; path = EXAV/EXAudioSessionManager.h; sourceTree = ""; }; - AFD37B29F35DDD37893B7883D8662A56 /* RCTLayoutAnimationGroup.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTLayoutAnimationGroup.h; sourceTree = ""; }; + AFC773FB089807C6B296B5993EBAE0BA /* SDAnimatedImagePlayer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDAnimatedImagePlayer.h; path = SDWebImage/Core/SDAnimatedImagePlayer.h; sourceTree = ""; }; + AFEE683D106C72392F7771B6BC5A8E3F /* RCTRootView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTRootView.m; sourceTree = ""; }; AFFBFACE5060F34C7DE183AB5C26E5F0 /* double-conversion.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "double-conversion.h"; path = "double-conversion/double-conversion.h"; sourceTree = ""; }; - B01F3DAB08F37744FF6F8C05B00B9C18 /* RCTBaseTextShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTBaseTextShadowView.m; sourceTree = ""; }; - B0308D260F31194A500BE1434E9FC9BF /* QBImagePickerController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = QBImagePickerController.m; path = ios/QBImagePicker/QBImagePicker/QBImagePickerController.m; sourceTree = ""; }; + AFFD5A677E453A8EBFFDB95411C36F12 /* RCTDiffClampAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTDiffClampAnimatedNode.h; sourceTree = ""; }; B03237A69FDB914071F0EDDB6CD9C6F9 /* util.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = util.h; path = src/event2/util.h; sourceTree = ""; }; + B0381E5639F69FFE1EC07842147C0385 /* RCTHTTPRequestHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTHTTPRequestHandler.h; path = Libraries/Network/RCTHTTPRequestHandler.h; sourceTree = ""; }; B03AF04A4A9658C483148005DEDAE80C /* rescaler.c */ = {isa = PBXFileReference; includeInIndex = 1; name = rescaler.c; path = src/dsp/rescaler.c; sourceTree = ""; }; + B0402D91F9F427FCE7015844415B7E01 /* BSG_KSArchSpecific.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSArchSpecific.h; sourceTree = ""; }; + B05EFE69BDDEC5A71A7E669C83750D9F /* REAModule.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = REAModule.m; path = ios/REAModule.m; sourceTree = ""; }; + B067FB353840014C51AFE3B3786E0A4C /* REAValueNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REAValueNode.m; sourceTree = ""; }; + B06ACF2F89632A6B3EFC0D6EE70C3313 /* YGStyle.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YGStyle.h; path = yoga/YGStyle.h; sourceTree = ""; }; B080691EA6FC112ED447AAC85925371F /* TokenBucket.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TokenBucket.h; path = folly/TokenBucket.h; sourceTree = ""; }; + B082C061FCEA6C7EC9DA72241ED14B74 /* UMAppLoaderInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMAppLoaderInterface.h; sourceTree = ""; }; B082F6023D863668CCEB187F071F3F4F /* ConnectionSet.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ConnectionSet.h; path = rsocket/internal/ConnectionSet.h; sourceTree = ""; }; - B09BEB8BF8B9A86ECDA18517AA7D8677 /* BSG_KSCrashSentry_NSException.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BSG_KSCrashSentry_NSException.m; sourceTree = ""; }; + B0897776AFCF780ACA05469D1693C30D /* RCTJSStackFrame.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTJSStackFrame.h; sourceTree = ""; }; + B096F2B0A044D9B4E531C0A85DB9698C /* RCTLayout.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTLayout.h; sourceTree = ""; }; + B09E491F61B4BE049237FB2E5CDB0F56 /* RCTBaseTextViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBaseTextViewManager.h; sourceTree = ""; }; B0B214D775196BA7CA8E17E53048A493 /* libSDWebImage.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libSDWebImage.a; path = libSDWebImage.a; sourceTree = BUILT_PRODUCTS_DIR; }; - B0C3213F266EE3934FC3A0D35E47A08D /* Foundation.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = Foundation.ttf; path = Fonts/Foundation.ttf; sourceTree = ""; }; B0DDECC3239ECBBFF542E3D3767B77B5 /* Fabric.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = Fabric.xcconfig; sourceTree = ""; }; - B0F818123E207CD4DD66F14D8EE99606 /* RNCAppearanceProviderManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCAppearanceProviderManager.m; path = ios/Appearance/RNCAppearanceProviderManager.m; sourceTree = ""; }; + B0E0EE7ABBF7557AE52CBFDD38CE973B /* RNFirebase-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNFirebase-dummy.m"; sourceTree = ""; }; B10A80804D7B5437EBCF0938D2DFD31B /* TcpConnectionFactory.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TcpConnectionFactory.h; path = rsocket/transports/tcp/TcpConnectionFactory.h; sourceTree = ""; }; B11776B7517CC0AFDF6D99E1526ACDB1 /* Flowable_FromObservable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Flowable_FromObservable.h; path = yarpl/flowable/Flowable_FromObservable.h; sourceTree = ""; }; B13F3CC7402172EA1283D8E1704C45E6 /* 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 = ""; }; - B15C487F4DC80F8BE99777A46A89376A /* Bugsnag.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = Bugsnag.m; sourceTree = ""; }; + B147F4167C13F2075A17A774B53B025B /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; B15F68A62E7CA9CF78F4A1D8A499A4CF /* Util.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Util.h; path = folly/container/detail/Util.h; sourceTree = ""; }; - B16549F7FED2D0ACB373B44ACA8AC112 /* RCTInputAccessoryViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTInputAccessoryViewManager.h; sourceTree = ""; }; - B16642936BFFA1575F0F8B1C60743341 /* SDImageAssetManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageAssetManager.m; path = SDWebImage/Private/SDImageAssetManager.m; sourceTree = ""; }; - B17F6AAE182AF3E3A8FD25F42D0C1C87 /* React-RCTNetwork.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-RCTNetwork.xcconfig"; sourceTree = ""; }; - B181DF32FCFDFC18F9571FF848A2232D /* RCTSurfaceRootView.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTSurfaceRootView.mm; sourceTree = ""; }; - B1897F8260B9D094F9D17905153180F8 /* NativeToJsBridge.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = NativeToJsBridge.h; sourceTree = ""; }; - B198F49D093D4120C0EFEA102F189FE1 /* SDWebImageManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWebImageManager.m; path = SDWebImage/Core/SDWebImageManager.m; sourceTree = ""; }; + B1908AF1E996A1D9B68A927E6E36FF52 /* React-RCTVibration-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-RCTVibration-prefix.pch"; sourceTree = ""; }; B19A1640FAD31E75BB1B93700D7F0729 /* GDTCORLifecycle.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCORLifecycle.h; path = GoogleDataTransport/GDTCORLibrary/Public/GDTCORLifecycle.h; sourceTree = ""; }; + B1B14D59DA08249468CFCB53C23BC6C0 /* SDWebImageOptionsProcessor.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWebImageOptionsProcessor.m; path = SDWebImage/Core/SDWebImageOptionsProcessor.m; sourceTree = ""; }; B1B1AF16CD4A23CC6DEBDE47B6B3B949 /* SysUio.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = SysUio.cpp; path = folly/portability/SysUio.cpp; sourceTree = ""; }; - B1B61F997B01F01E1EB62509328A65C4 /* RCTCustomKeyboardViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTCustomKeyboardViewController.h; sourceTree = ""; }; - B1EA30D9FCBC11603609FA51E1FC4CD4 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; + B1C240F0D5FAD5625752B46A494B4C5E /* RCTLog.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTLog.h; sourceTree = ""; }; + B1DDF97FC386A36B1A16FC310A8C01DA /* RNFirebaseUtil.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNFirebaseUtil.m; path = RNFirebase/RNFirebaseUtil.m; sourceTree = ""; }; B1F9E9B39A6162E368EC9D781D0680D8 /* DistributedMutex.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DistributedMutex.h; path = folly/synchronization/DistributedMutex.h; sourceTree = ""; }; - B1FB70333B2D1B428F8E37FB5295B612 /* UMConstantsInterface.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = UMConstantsInterface.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - B20198EFA4160D60463C44CAC66050AB /* RCTDisplayLink.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTDisplayLink.h; sourceTree = ""; }; B211C99E29500E6BCAA544C6D3CBCBA2 /* Flipper-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Flipper-prefix.pch"; sourceTree = ""; }; - B2801CE3D0AA03D69A9078311329EAF6 /* RNForceTouchHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNForceTouchHandler.h; sourceTree = ""; }; - B2A5B2891ADB13F1C0DE555A9C630A6F /* RCTWrapperViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTWrapperViewController.h; sourceTree = ""; }; - B2A65FAA3A125CE2669673364E022301 /* RNFirebaseFirestoreDocumentReference.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNFirebaseFirestoreDocumentReference.h; sourceTree = ""; }; - B2AAE58A26E1DF2320BB3B2AD7277A1E /* react-native-slider-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "react-native-slider-dummy.m"; sourceTree = ""; }; - B2D4DDB8592A5368609B572269B0F1D2 /* EXFileSystemLocalFileHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXFileSystemLocalFileHandler.h; path = EXFileSystem/EXFileSystemLocalFileHandler.h; sourceTree = ""; }; + B22747AFC2C1934DAE7CE8C57047FA8A /* SDWebImageDownloaderRequestModifier.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWebImageDownloaderRequestModifier.m; path = SDWebImage/Core/SDWebImageDownloaderRequestModifier.m; sourceTree = ""; }; + B2470DA147041292B86B96DF99A86A05 /* RCTScrollViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTScrollViewManager.h; sourceTree = ""; }; + B256B556EA988AE051CC39B6E82ED387 /* RCTActionSheetManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTActionSheetManager.h; path = React/CoreModules/RCTActionSheetManager.h; sourceTree = ""; }; + B262D82F6BD4B463D3577BE73FB17FBE /* RCTParserUtils.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTParserUtils.m; sourceTree = ""; }; + B262DBFF8BC858AE4A4CF5FA9D59BC16 /* RCTDevMenu.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTDevMenu.mm; sourceTree = ""; }; + B2B74623200907111425F47D85E13F87 /* RCTShadowView+Internal.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RCTShadowView+Internal.m"; sourceTree = ""; }; + B2C36029F5F99FBFEC67ED432D99C331 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; + B2FDEF14CB347682E989448C98CC7F33 /* QBAssetCell.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = QBAssetCell.m; path = ios/QBImagePicker/QBImagePicker/QBAssetCell.m; sourceTree = ""; }; B309AE09E6BEE094D1B4E8170C4894A9 /* IOBuf.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = IOBuf.h; path = folly/io/IOBuf.h; sourceTree = ""; }; B33AAB90E79B725D52CF1853C2FFE5C9 /* FireAndForgetResponder.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = FireAndForgetResponder.cpp; path = rsocket/statemachine/FireAndForgetResponder.cpp; sourceTree = ""; }; - B345A3B464A66FC1F84CD8C067A5243E /* RNPinchHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNPinchHandler.m; sourceTree = ""; }; - B349A54F4D2FD519D2D0B5F20BE0EC7E /* RNCMaskedView.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNCMaskedView.xcconfig; sourceTree = ""; }; - B34A9F6EDA96558160E687E2DDA559D2 /* RNVectorIconsManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNVectorIconsManager.h; path = RNVectorIconsManager/RNVectorIconsManager.h; sourceTree = ""; }; - B3622350A596E3E5F6990B705F2C4E34 /* RCTSurfaceStage.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSurfaceStage.m; sourceTree = ""; }; - B3648D2D15D59DC311C3D5148E86B72A /* RNCSafeAreaProvider.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCSafeAreaProvider.m; path = ios/SafeAreaView/RNCSafeAreaProvider.m; sourceTree = ""; }; - B36E7575D09CE06B36B64262E56AD7A1 /* RNFirebaseAdMobNativeExpressManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNFirebaseAdMobNativeExpressManager.m; sourceTree = ""; }; - B3734B6DEF352FA194A23D8BF4EB7C2B /* SDImageFrame.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageFrame.m; path = SDWebImage/Core/SDImageFrame.m; sourceTree = ""; }; - B393A8351F43494FB8EE8EEAADD868EF /* UMBridgeModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMBridgeModule.h; path = UMReactNativeAdapter/UMBridgeModule.h; sourceTree = ""; }; - B3AC8C4510805B6693BC08157D72D931 /* RCTSurfaceRootShadowViewDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSurfaceRootShadowViewDelegate.h; sourceTree = ""; }; + B35F7E8E13BCEC2B5A18C668D26E642F /* UMCameraInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMCameraInterface.h; path = UMCameraInterface/UMCameraInterface.h; sourceTree = ""; }; B3B7A14B0CD3520FAB6E3F14C46070CC /* IPAddressSource.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = IPAddressSource.h; path = folly/detail/IPAddressSource.h; sourceTree = ""; }; + B3BFAA648A1F49C682608DAE064C7EE4 /* RCTFileRequestHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTFileRequestHandler.h; path = Libraries/Network/RCTFileRequestHandler.h; sourceTree = ""; }; + B3C68EF037255E557CF6936B4C86785B /* BSGConnectivity.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSGConnectivity.h; sourceTree = ""; }; + B3CBD31201FDE6C5A712F634102E43BD /* RCTDiffClampAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTDiffClampAnimatedNode.m; sourceTree = ""; }; B3ECD8473F4F6935F6753CC01AFD9B20 /* cct.nanopb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = cct.nanopb.h; path = GoogleDataTransportCCTSupport/GDTCCTLibrary/Protogen/nanopb/cct.nanopb.h; sourceTree = ""; }; + B3F5DEBD532BBA42CE5F4B8F24C5A6CD /* SDWebImageDownloader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageDownloader.h; path = SDWebImage/Core/SDWebImageDownloader.h; sourceTree = ""; }; B40E16E4E7EE49A482B38CA021F3E602 /* FIRConfiguration.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRConfiguration.m; path = FirebaseCore/Sources/FIRConfiguration.m; sourceTree = ""; }; B43874C6CBB50E7134FBEC24BABFE14F /* libGoogleUtilities.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libGoogleUtilities.a; path = libGoogleUtilities.a; sourceTree = BUILT_PRODUCTS_DIR; }; - B4423D352B299A86B76B33FB2B911D68 /* RCTSwitchManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSwitchManager.h; sourceTree = ""; }; - B458A529C776F13CD9070EB18C8504A3 /* React-RCTLinking-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-RCTLinking-prefix.pch"; sourceTree = ""; }; + B43C3E2D661BFB7286547B6494BCC258 /* EXVideoPlayerViewControllerDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = EXVideoPlayerViewControllerDelegate.h; sourceTree = ""; }; + B461FC172601FC5B65885467EC7D6D81 /* React-jsinspector.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = "React-jsinspector.podspec"; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; B46F3DC8D803A6ABEDBB0D57180B5093 /* CancelingSubscriber.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CancelingSubscriber.h; path = yarpl/flowable/CancelingSubscriber.h; sourceTree = ""; }; - B4709D727E040593EF466742C728E8C8 /* RCTTiming.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTTiming.h; path = React/CoreModules/RCTTiming.h; sourceTree = ""; }; B473A7ADF0E19BB8A0272C25026C4DE5 /* SKYogaKitHelper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SKYogaKitHelper.h; path = iOS/Plugins/FlipperKitLayoutPlugin/FlipperKitLayoutPlugin/utils/SKYogaKitHelper.h; sourceTree = ""; }; - B4825CFEDB0585F0E10F2E8B16198D66 /* EXFileSystem-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "EXFileSystem-prefix.pch"; sourceTree = ""; }; + B4791BC487C6BE27262A5F71B4048162 /* RNFetchBlobRequest.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNFetchBlobRequest.h; path = ios/RNFetchBlobRequest.h; sourceTree = ""; }; B482669D4D588E55B3057A7601BD6840 /* FIRInstallationsIIDStore.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstallationsIIDStore.m; path = FirebaseInstallations/Source/Library/IIDMigration/FIRInstallationsIIDStore.m; sourceTree = ""; }; B486B15520686D88CF9A960BBE1BB153 /* Flowables.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = Flowables.cpp; path = yarpl/flowable/Flowables.cpp; sourceTree = ""; }; B49412CDE6DE2E211035FF09F182783B /* BasicTransportCertificate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = BasicTransportCertificate.h; path = folly/io/async/ssl/BasicTransportCertificate.h; sourceTree = ""; }; - B4DB9002992F6C1F1B0D7325578F65D8 /* React-jsiexecutor.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-jsiexecutor.xcconfig"; sourceTree = ""; }; - B5156710EF4D21CBABD4FB4802D33794 /* react-native-slider-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "react-native-slider-prefix.pch"; sourceTree = ""; }; + B4AAF705609470DBD312A25B2E70A768 /* SDWebImageDownloaderConfig.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWebImageDownloaderConfig.m; path = SDWebImage/Core/SDWebImageDownloaderConfig.m; sourceTree = ""; }; + B4D31501231135BD6F9C77D30D0D71E6 /* RNCAsyncStorage.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCAsyncStorage.m; path = ios/RNCAsyncStorage.m; sourceTree = ""; }; + B505364CF978A6BB6EE63DF3031F59E7 /* React-jsi.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-jsi.xcconfig"; sourceTree = ""; }; + B51908D587BB63DC563FC6F15AC054C8 /* UMAppLoaderProvider.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMAppLoaderProvider.h; path = UMAppLoader/UMAppLoaderProvider.h; sourceTree = ""; }; B523F4277C8B2D610E8E1299460A3CF9 /* Baton.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Baton.h; path = folly/synchronization/Baton.h; sourceTree = ""; }; - B53AA8B5C803FAFC7AB1D0090127D684 /* UIImage+Resize.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIImage+Resize.m"; path = "ios/src/UIImage+Resize.m"; sourceTree = ""; }; + B546FB1416D2A98D9823F6DE5E687639 /* RCTUtils.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTUtils.m; sourceTree = ""; }; B550147615851379CE21691A77B5B21D /* dynamic-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "dynamic-inl.h"; path = "folly/dynamic-inl.h"; sourceTree = ""; }; B5641DA0FB52220D4E7D32DD81D26817 /* FIRApp.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRApp.h; path = FirebaseCore/Sources/Public/FIRApp.h; sourceTree = ""; }; + B566125088FDE987FC61485CA1C186A8 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; B57D37C575823917BF4EBEC2EE7DFD55 /* aes.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = aes.h; path = ios/include/openssl/aes.h; sourceTree = ""; }; + B582E1212EAC311770DFFFB2CA2A66D6 /* RCTShadowView+Layout.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RCTShadowView+Layout.m"; sourceTree = ""; }; B583011EC779284025BD8BC1EBE6A7C3 /* Shell.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Shell.h; path = folly/system/Shell.h; sourceTree = ""; }; + B58818128D71948C8EBF51C9ADC8345C /* RNVectorIconsManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNVectorIconsManager.m; path = RNVectorIconsManager/RNVectorIconsManager.m; sourceTree = ""; }; + B58827B26E4A27503B4CA101D529FF77 /* REATransitionValues.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REATransitionValues.m; sourceTree = ""; }; B58E61992108763157F0715297852B84 /* Framer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Framer.h; path = rsocket/framing/Framer.h; sourceTree = ""; }; B590FADFAE58C8461150A0542F547B12 /* Sleeper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Sleeper.h; path = folly/synchronization/detail/Sleeper.h; sourceTree = ""; }; B591A431C729998F00CA050097C3BFE9 /* pb_decode.c */ = {isa = PBXFileReference; includeInIndex = 1; path = pb_decode.c; sourceTree = ""; }; - B592100B4B0203A70764DFDE23FCAD33 /* QBAssetCell.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = QBAssetCell.m; path = ios/QBImagePicker/QBImagePicker/QBAssetCell.m; sourceTree = ""; }; - B5B719F0E723B85512C67960D063CAFF /* YGConfig.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YGConfig.h; path = yoga/YGConfig.h; sourceTree = ""; }; + B59325D29B6F441407613919EA56C5F0 /* InspectorInterfaces.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = InspectorInterfaces.h; sourceTree = ""; }; + B599B1FF1EA73833D1957077D22D6459 /* QBAlbumCell.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = QBAlbumCell.m; path = ios/QBImagePicker/QBImagePicker/QBAlbumCell.m; sourceTree = ""; }; + B5B0E7AB0A4CC6D0C106EFD7FCE0A45F /* RCTBaseTextInputViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBaseTextInputViewManager.h; sourceTree = ""; }; B5CEA0705F243B9019FBE93AEEE71BC9 /* des.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = des.h; path = ios/include/openssl/des.h; sourceTree = ""; }; B5D873AC862E6783398AD8670416FD94 /* Core.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Core.h; path = folly/futures/detail/Core.h; sourceTree = ""; }; B5E4040453D8C7A7AD4D19C06C47AF6B /* WaitOptions.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = WaitOptions.cpp; path = folly/synchronization/WaitOptions.cpp; sourceTree = ""; }; B5E8CFFCDC8FD47203CE9765D7EAC259 /* RSocketException.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RSocketException.h; path = rsocket/RSocketException.h; sourceTree = ""; }; - B61566486D10B9EFC3DC1FD535454F71 /* DispatchMessageQueueThread.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = DispatchMessageQueueThread.h; sourceTree = ""; }; - B618191C488469517862C07BD8B81C74 /* RCTMultipartDataTask.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTMultipartDataTask.h; sourceTree = ""; }; - B61ECFB3E9BAFBC3D9925A972D6B2E97 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; - B63947E2B5A38C4724077A19011B71D3 /* SDImageFrame.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageFrame.h; path = SDWebImage/Core/SDImageFrame.h; sourceTree = ""; }; + B5E98AAC0018BFC8FE541116C1FE66BD /* RCTKeyCommands.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTKeyCommands.m; sourceTree = ""; }; + B60643436E9FCF4E4BA07D9E2DC75F56 /* RNImageCropPicker-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNImageCropPicker-dummy.m"; sourceTree = ""; }; + B62DE4832C1D15758D7BBAC7DC334C78 /* UMModuleRegistry.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = UMModuleRegistry.m; sourceTree = ""; }; + B635DF33BB6AECF36841D30C5ECBEB8B /* SDGraphicsImageRenderer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDGraphicsImageRenderer.h; path = SDWebImage/Core/SDGraphicsImageRenderer.h; sourceTree = ""; }; + B63C5C2599926AFDC26C0A3D48BCC8BE /* RNSScreen.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNSScreen.m; path = ios/RNSScreen.m; sourceTree = ""; }; B65582303CA5F442057542B5A3E6C957 /* Unicode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Unicode.h; path = folly/Unicode.h; sourceTree = ""; }; - B6650A0AD796D6E7B79B515E7D756EF7 /* RCTRedBoxSetEnabled.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTRedBoxSetEnabled.m; sourceTree = ""; }; - B6704FC3280FC62B58879C7FD72A1BB7 /* EXAV.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXAV.m; path = EXAV/EXAV.m; sourceTree = ""; }; - B672C2FF341C2CBC84CE7C181369DAED /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; - B6758DD46ADA704C20414E9814387441 /* RCTResizeMode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTResizeMode.h; path = Libraries/Image/RCTResizeMode.h; sourceTree = ""; }; - B68538A195431A933EA46D81A51FBC48 /* RNCMaskedView-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNCMaskedView-prefix.pch"; sourceTree = ""; }; B6925D6E11BCBC1BF08A08FFC08C2DEB /* Atomic.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Atomic.h; path = folly/portability/Atomic.h; sourceTree = ""; }; - B6AD0FF33C5C0376F2D1F42D1945EF20 /* RNCMaskedViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCMaskedViewManager.h; path = ios/RNCMaskedViewManager.h; sourceTree = ""; }; - B6B49746D7B4C1049D33AFCA620292EF /* SDImageCacheDefine.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageCacheDefine.m; path = SDWebImage/Core/SDImageCacheDefine.m; sourceTree = ""; }; B6BD92CCE2F579A471531D8AC359A8E6 /* FirebaseInstallations.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = FirebaseInstallations.xcconfig; sourceTree = ""; }; + B6CF0EE8C1645A913462FB59BEDFCCB3 /* RCTImageLoaderWithAttributionProtocol.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageLoaderWithAttributionProtocol.h; path = Libraries/Image/RCTImageLoaderWithAttributionProtocol.h; sourceTree = ""; }; B6D818FE0EC9E528C9CF992FD6BED764 /* event_struct.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = event_struct.h; path = src/event2/event_struct.h; sourceTree = ""; }; B6E362A010D932A7F79774073D5CBD71 /* FIRAnalyticsConfiguration.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAnalyticsConfiguration.h; path = FirebaseCore/Sources/Private/FIRAnalyticsConfiguration.h; sourceTree = ""; }; B6E787D07E0D52B3C6AB0C8F8E5E4777 /* evhttp.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = evhttp.h; path = src/evhttp.h; sourceTree = ""; }; @@ -8577,568 +8549,568 @@ B6F485C63D0E6C4AD0BFBD1FF878458B /* FBLPromise+Delay.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FBLPromise+Delay.h"; path = "Sources/FBLPromises/include/FBLPromise+Delay.h"; sourceTree = ""; }; B6FA701B21708A73117560B03415D018 /* CacheLocality.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CacheLocality.h; path = folly/concurrency/CacheLocality.h; sourceTree = ""; }; B700075CEFBD7C91C681713CD53AEA4C /* rsa.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = rsa.h; path = ios/include/openssl/rsa.h; sourceTree = ""; }; - B71CC676F795E509843A7A323A901A01 /* RCTRootView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTRootView.m; sourceTree = ""; }; - B72142B3DCD694D56D81DDC466849790 /* BugsnagSession.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagSession.h; sourceTree = ""; }; + B710E03AECC12673987B92238BF53474 /* UMBarometerInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMBarometerInterface.h; path = UMSensorsInterface/UMBarometerInterface.h; sourceTree = ""; }; B735C9F34C8311507D047A8CFB61DC62 /* ScopedEventBaseThread.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = ScopedEventBaseThread.cpp; path = folly/io/async/ScopedEventBaseThread.cpp; sourceTree = ""; }; B744243DDD3E90CBDBBEE7F8B7F2B4BB /* idec_dec.c */ = {isa = PBXFileReference; includeInIndex = 1; name = idec_dec.c; path = src/dec/idec_dec.c; sourceTree = ""; }; - B74B3D0393A1DA20C2CFA6536BD32337 /* RCTSubtractionAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSubtractionAnimatedNode.h; sourceTree = ""; }; B75A261FE3CE62D5A559B997074E70FC /* libreact-native-background-timer.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libreact-native-background-timer.a"; path = "libreact-native-background-timer.a"; sourceTree = BUILT_PRODUCTS_DIR; }; B76EB25240F6DF11F9866520FD1C8839 /* raw_logging.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = raw_logging.h; path = src/glog/raw_logging.h; sourceTree = ""; }; B7791E8B79D3AF3B69AF7CECAD3CF3D3 /* Conv.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Conv.h; path = folly/chrono/Conv.h; sourceTree = ""; }; - B7931EC6A86AD2739772BCE8C2756096 /* REATransitionAnimation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REATransitionAnimation.m; sourceTree = ""; }; - B79690820F853D09C764DCD73376DDA2 /* BSG_KSCrashState.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BSG_KSCrashState.m; sourceTree = ""; }; - B7A1BE671777394FB2197CB0F8D38DDF /* FBLazyVector.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = FBLazyVector.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - B7A321B55CC1F2DCA106C34A4E57F86E /* rn-extensions-share.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = "rn-extensions-share.podspec"; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + B77946B7B7F16FECC6DFCFA73EA557D7 /* RCTRedBoxSetEnabled.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTRedBoxSetEnabled.h; sourceTree = ""; }; + B7830A2BEAF6E48C6DA926A85E247D65 /* RCTJSStackFrame.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTJSStackFrame.m; sourceTree = ""; }; + B7A2911494A89522CAD7B3C4E310BFE5 /* react-native-safe-area-context-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "react-native-safe-area-context-dummy.m"; sourceTree = ""; }; + B7A66C67DC4DECE559AE93BECB13E938 /* EXAppleAuthenticationMappings.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXAppleAuthenticationMappings.h; path = EXAppleAuthentication/EXAppleAuthenticationMappings.h; sourceTree = ""; }; + B7A6BF06A279724ECA7634343AFB76DC /* RCTNetworkPlugins.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTNetworkPlugins.mm; sourceTree = ""; }; + B7B5A9901324BCA9C32318C069FE9783 /* RNCMaskedViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCMaskedViewManager.m; path = ios/RNCMaskedViewManager.m; sourceTree = ""; }; + B7C4E20C3C4EA935130F6A34E83114D9 /* UMCameraInterface.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = UMCameraInterface.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + B7C738501213DF7BA864DB8C722B5F55 /* Utils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Utils.h; path = yoga/Utils.h; sourceTree = ""; }; B7D2FB2E7B87B3AF58AFC61B2ECC6CB4 /* DeferObservable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DeferObservable.h; path = yarpl/observable/DeferObservable.h; sourceTree = ""; }; B7D9BBA475ECEB5469F8DB398EA2EBE2 /* FlipperState.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FlipperState.h; path = xplat/Flipper/FlipperState.h; sourceTree = ""; }; + B7DFC6136FDF82940F2E14358896A30C /* YGLayout.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YGLayout.h; path = yoga/YGLayout.h; sourceTree = ""; }; + B7F4FC59F25581AC94EE0BCAF8F06E64 /* RCTInputAccessoryViewContent.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTInputAccessoryViewContent.m; sourceTree = ""; }; + B803F2945A9EC1D4D6F4A508E76A39FD /* RNCSafeAreaViewEdges.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCSafeAreaViewEdges.h; path = ios/SafeAreaView/RNCSafeAreaViewEdges.h; sourceTree = ""; }; B81FD2C473D887F59427BE78B558C91C /* GULNetworkConstants.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GULNetworkConstants.m; path = GoogleUtilities/Network/GULNetworkConstants.m; sourceTree = ""; }; + B8213C1146F242DC3EF093DFBB0A945E /* RCTValueAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTValueAnimatedNode.h; sourceTree = ""; }; B82323AB272218CE115A7186AA94D3B7 /* UIView+Yoga.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIView+Yoga.m"; path = "YogaKit/Source/UIView+Yoga.m"; sourceTree = ""; }; - B8236816F9EF6C835ADEF7EBD8A51FEE /* RCTUtilsUIOverride.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTUtilsUIOverride.m; sourceTree = ""; }; - B83F19BE55D1F77902A11954FA99A98B /* RNCMaskedView-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNCMaskedView-dummy.m"; sourceTree = ""; }; + B836EF8DCDD813AF20196405111B4CFB /* RNCAppearance.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCAppearance.h; path = ios/Appearance/RNCAppearance.h; sourceTree = ""; }; B8440B56243829CB710E5A438AC1A9CF /* GULOriginalIMPConvenienceMacros.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULOriginalIMPConvenienceMacros.h; path = GoogleUtilities/MethodSwizzler/Private/GULOriginalIMPConvenienceMacros.h; sourceTree = ""; }; - B85F14B1A3321F67D57FB3E5D50DEF80 /* React-RCTSettings.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-RCTSettings.xcconfig"; sourceTree = ""; }; - B86E9D751996B3935492481335FA6C60 /* RNCSafeAreaViewEdges.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCSafeAreaViewEdges.m; path = ios/SafeAreaView/RNCSafeAreaViewEdges.m; sourceTree = ""; }; + B862F9B12681D41BF10EE0EBB5E23658 /* RNJitsiMeetViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNJitsiMeetViewManager.m; path = ios/RNJitsiMeetViewManager.m; sourceTree = ""; }; + B86ECB3152FE8BC4D9C224274DC407B8 /* RCTVibration.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTVibration.h; path = Libraries/Vibration/RCTVibration.h; sourceTree = ""; }; B873736FEBF203C4811DE9024673CA18 /* FrameHeader.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = FrameHeader.cpp; path = rsocket/framing/FrameHeader.cpp; sourceTree = ""; }; - B873DE6CCB46CA30C83644140F52C62B /* react-native-safe-area-context.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = "react-native-safe-area-context.podspec"; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - B88BF0F6E8E0D9231FE0B18A655A9D4C /* SDmetamacros.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDmetamacros.h; path = SDWebImage/Private/SDmetamacros.h; sourceTree = ""; }; - B88FACE80867F4D89F910D7379D7C891 /* RNFirebasePerformance.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNFirebasePerformance.h; sourceTree = ""; }; - B8CA43372B9273DDF55F3E98AD3F76ED /* React-RCTImage-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-RCTImage-dummy.m"; sourceTree = ""; }; - B8CAC0F1215C8A25A9642BA111595AAD /* UMTaskManagerInterface.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMTaskManagerInterface.xcconfig; sourceTree = ""; }; + B879AA4880A9E10FBF9549AB4DC915F2 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; + B87CB92FBA80CAC31896794FF4B9EFA4 /* BSGOutOfMemoryWatchdog.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BSGOutOfMemoryWatchdog.m; sourceTree = ""; }; + B89A338733C87A40A6DC008330D97288 /* BSGOutOfMemoryWatchdog.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSGOutOfMemoryWatchdog.h; sourceTree = ""; }; + B89C723751374F11718F5A5D5EFCC394 /* RNCMaskedView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCMaskedView.m; path = ios/RNCMaskedView.m; sourceTree = ""; }; B8CD4B9B578CE9FA38114B638C9CAA78 /* libRNCMaskedView.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libRNCMaskedView.a; path = libRNCMaskedView.a; sourceTree = BUILT_PRODUCTS_DIR; }; B8E4CC3E9E146017C706F7F1BB8AE183 /* RSocketServiceHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RSocketServiceHandler.h; path = rsocket/RSocketServiceHandler.h; sourceTree = ""; }; - B8FF9CD3EB5A10C3E96DCF23DE830F73 /* RCTLogBox.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTLogBox.mm; sourceTree = ""; }; + B8ED15CD12C9B59F2F324CCC68D22FD4 /* ARTNodeManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = ARTNodeManager.m; sourceTree = ""; }; + B8F98B09CE1B8A8C25952C0834F6C886 /* QBImagePickerController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = QBImagePickerController.h; path = ios/QBImagePicker/QBImagePicker/QBImagePickerController.h; sourceTree = ""; }; B90D4EB47DA9DA57A8D265D53BB0FC7A /* SanitizeThread.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = SanitizeThread.cpp; path = folly/synchronization/SanitizeThread.cpp; sourceTree = ""; }; - B9101611D1081DAA8646B34923008FE7 /* RNFirebaseAdMobInterstitial.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNFirebaseAdMobInterstitial.h; sourceTree = ""; }; - B913B0DE28EC59A4F79F6DB78A261708 /* QBImagePickerController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = QBImagePickerController.h; path = ios/QBImagePicker/QBImagePicker/QBImagePickerController.h; sourceTree = ""; }; + B9182C7B43C9EA92F371808DB25BE9FC /* SDImageIOAnimatedCoder.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageIOAnimatedCoder.m; path = SDWebImage/Core/SDImageIOAnimatedCoder.m; sourceTree = ""; }; B92C2FEF3E68EBA0C79B2D9403F591DD /* TOActivityCroppedImageProvider.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TOActivityCroppedImageProvider.h; path = "Objective-C/TOCropViewController/Models/TOActivityCroppedImageProvider.h"; sourceTree = ""; }; - B93E931A811386F363040FE7E7792B66 /* QBVideoIndicatorView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = QBVideoIndicatorView.m; path = ios/QBImagePicker/QBImagePicker/QBVideoIndicatorView.m; sourceTree = ""; }; - B97BDA6F53DC963FFDAB0486599E7CE5 /* UMReactNativeAdapter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = UMReactNativeAdapter.m; sourceTree = ""; }; - B982F2A245C062D03E9D0007425EFD88 /* BSG_KSMach_x86_64.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSMach_x86_64.c; sourceTree = ""; }; + B935559ECF8BE33373521DF4C55C26C6 /* UIImage+Extension.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIImage+Extension.m"; path = "ios/src/UIImage+Extension.m"; sourceTree = ""; }; + B9433C56C4D908FF1C792232B5C78E5D /* UMFaceDetectorInterface.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMFaceDetectorInterface.xcconfig; sourceTree = ""; }; + B978B14C05594E588D93AFF8AB53CE0A /* BSG_KSCrashReport.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSCrashReport.c; sourceTree = ""; }; B9940970BDE50BD21BE9ABF71AFB8E2A /* FixedString.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FixedString.h; path = folly/FixedString.h; sourceTree = ""; }; - B99C9BB3EF243DDDCB218744CD0C9125 /* React-cxxreact.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-cxxreact.xcconfig"; sourceTree = ""; }; + B9A8CE8AB23F13A5DE6C1D112A93B1E2 /* RCTBridgeMethod.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBridgeMethod.h; sourceTree = ""; }; B9C0C1A7183EF88CCC354BB8A1419EFC /* StringKeyedUnorderedSet.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = StringKeyedUnorderedSet.h; path = folly/experimental/StringKeyedUnorderedSet.h; sourceTree = ""; }; - B9C741BBFDA15841A9940FD832CA71D0 /* BugsnagKSCrashSysInfoParser.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagKSCrashSysInfoParser.h; sourceTree = ""; }; + B9CFE2221F7454019D76A123B7E67452 /* RCTSegmentedControl.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSegmentedControl.m; sourceTree = ""; }; + B9D8FDF66E36BB4042F0B2DDF2F724FE /* ReactNativeKeyboardInput-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "ReactNativeKeyboardInput-dummy.m"; sourceTree = ""; }; + B9E16A1627374EC1824A246EEC40C717 /* SDAsyncBlockOperation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDAsyncBlockOperation.h; path = SDWebImage/Private/SDAsyncBlockOperation.h; sourceTree = ""; }; B9E53FE8489DBF30F8C05AFC8DC96FF7 /* WTCallback.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = WTCallback.h; path = folly/futures/WTCallback.h; sourceTree = ""; }; B9EA65F8D084036C2753D98F4C662779 /* Asm.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Asm.h; path = folly/portability/Asm.h; sourceTree = ""; }; - B9EAE944D077E66FA8DEE13865B489B0 /* RCTLayoutAnimation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTLayoutAnimation.h; sourceTree = ""; }; - B9F916A9CD68EB11468EC27D469A2F29 /* RCTHTTPRequestHandler.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTHTTPRequestHandler.mm; sourceTree = ""; }; - B9FB1155EF84D6AC90960986987D4C56 /* EXKeepAwake.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXKeepAwake.m; path = EXKeepAwake/EXKeepAwake.m; sourceTree = ""; }; + B9EFE79B1E1A98E02D5E2E0A8D011ED1 /* CxxNativeModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = CxxNativeModule.h; sourceTree = ""; }; + B9FB9C8FD441AEF1F1C7A7B31A94754E /* RNNotificationCenterListener.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNNotificationCenterListener.m; path = RNNotifications/RNNotificationCenterListener.m; sourceTree = ""; }; B9FCB17AE5093B5061C9494E6D16BAFD /* Base-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "Base-inl.h"; path = "folly/gen/Base-inl.h"; sourceTree = ""; }; - B9FEEC4F1C841ACAA260B57643E7C1DC /* UMModuleRegistryDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMModuleRegistryDelegate.h; sourceTree = ""; }; BA027A67DF4BB230F036E25BAFB8F2C7 /* Flipper.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = Flipper.xcconfig; sourceTree = ""; }; BA0C002C7BB5AB0659612B13B3F68B59 /* Init.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = Init.cpp; path = folly/ssl/Init.cpp; sourceTree = ""; }; - BA32D40EBE0AFE838FD881CE4EE07058 /* react-native-document-picker.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "react-native-document-picker.xcconfig"; sourceTree = ""; }; - BA402C1554FE2BDBAB76A90DFB51A5C1 /* BSG_KSCrashReportStore.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BSG_KSCrashReportStore.m; sourceTree = ""; }; - BA4660B8FF0C9BCA3CE3504D7C65E022 /* FontAwesome.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = FontAwesome.ttf; path = Fonts/FontAwesome.ttf; sourceTree = ""; }; + BA2D585E516A138559369AA2E2257387 /* RNReanimated-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNReanimated-dummy.m"; sourceTree = ""; }; + BA4668EB557AA660903EA29C83EBF83A /* React-RCTNetwork-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-RCTNetwork-dummy.m"; sourceTree = ""; }; + BA4FF9508396DC37615DCC245E93ACA5 /* AntDesign.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = AntDesign.ttf; path = Fonts/AntDesign.ttf; sourceTree = ""; }; BA6A2D8828FE7F15C161DF91C6F515C3 /* SKTapListenerImpl.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SKTapListenerImpl.m; path = iOS/Plugins/FlipperKitLayoutPlugin/FlipperKitLayoutPlugin/SKTapListenerImpl.m; sourceTree = ""; }; - BA82F24AE9818ECFBAAC74D9D13B0DC1 /* RCTConvert+FFFastImage.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "RCTConvert+FFFastImage.h"; path = "ios/FastImage/RCTConvert+FFFastImage.h"; sourceTree = ""; }; BA90470BACE453BC61F5A465707585F4 /* glog-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "glog-dummy.m"; sourceTree = ""; }; - BAA3C129648E585E934FD903D1C96652 /* EXPermissions.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = EXPermissions.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - BAB32DAC1CCB947DB9B0F1CACD9FFADE /* RCTPropsAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTPropsAnimatedNode.m; sourceTree = ""; }; + BA96749385CBDE0CCB010AB3A0192BD3 /* RNBootSplash.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNBootSplash.h; path = ios/RNBootSplash.h; sourceTree = ""; }; + BA9ED6B28A9A074873F964B7DBA69E26 /* RCTScrollContentView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTScrollContentView.m; sourceTree = ""; }; + BAAFF78F17BDCEF3F136BE29EE8409E9 /* React-RCTAnimation.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-RCTAnimation.xcconfig"; sourceTree = ""; }; + BAB013510915D0909C84CB9E076EE887 /* EXVideoThumbnails.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = EXVideoThumbnails.xcconfig; sourceTree = ""; }; + BAB9FA6346E6E9AF7F7387AB38D68016 /* BSG_KSSignalInfo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSSignalInfo.h; sourceTree = ""; }; BAD1C571D64BB9D0FAC96D240044C4CB /* Portability.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Portability.h; path = folly/Portability.h; sourceTree = ""; }; - BAEAFDD188CD0F7613AD9D7734ADFC80 /* RNCSafeAreaViewMode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCSafeAreaViewMode.m; path = ios/SafeAreaView/RNCSafeAreaViewMode.m; sourceTree = ""; }; - BAEB73E466BB265D89EE1E33D6DA3E00 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; + BAED4468D05D161445D0F7A31E853712 /* RCTSurfaceRootShadowViewDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSurfaceRootShadowViewDelegate.h; sourceTree = ""; }; BAED703E7AA2427C8BB0AE4748AC34C7 /* FIRDependency.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRDependency.h; path = FirebaseCore/Sources/Private/FIRDependency.h; sourceTree = ""; }; - BB2D3C3460F8F63518DD4E289F7D0265 /* ARTBrush.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = ARTBrush.m; sourceTree = ""; }; - BB307728748153F595011FB99B180AD5 /* REAAlwaysNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REAAlwaysNode.h; sourceTree = ""; }; + BAEDE1CCBE0BCB69157858C188FAE38F /* EXReactNativeUserNotificationCenterProxy.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXReactNativeUserNotificationCenterProxy.h; path = EXPermissions/EXReactNativeUserNotificationCenterProxy.h; sourceTree = ""; }; + BB0E3C8AA55095D15427D08BF810B6FB /* BSG_KSJSONCodec.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSJSONCodec.c; sourceTree = ""; }; BB45A219ED8EC0A299CA36811D99FF2B /* stl_logging.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = stl_logging.h; path = src/glog/stl_logging.h; sourceTree = ""; }; - BB6917060CD8E3BCC7BAC43AAF2FDFEE /* UMJavaScriptContextProvider.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMJavaScriptContextProvider.h; sourceTree = ""; }; - BB759F07AA4F96184B483DA4D5D1044A /* RNFirebaseLinks.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNFirebaseLinks.m; sourceTree = ""; }; BB7F42A922D4DCFF8096E3C184E06556 /* TimekeeperScheduledExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TimekeeperScheduledExecutor.h; path = folly/executors/TimekeeperScheduledExecutor.h; sourceTree = ""; }; - BB81AFF45CB95797F486992B1E8100EA /* UMReactNativeAdapter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMReactNativeAdapter.h; sourceTree = ""; }; - BB828946A49B6FEAB8FB73999205B6A0 /* notificationsEvents.md */ = {isa = PBXFileReference; includeInIndex = 1; name = notificationsEvents.md; path = docs/notificationsEvents.md; sourceTree = ""; }; + BBAA5BA723F4CAF2352845BC16A24E44 /* REASetNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REASetNode.m; sourceTree = ""; }; + BBDDFD2576299ABD12AD8C07FD8CD6C5 /* REAEventNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REAEventNode.h; sourceTree = ""; }; + BBE4E706C49C9A15F96835316AE66969 /* RCTTiming.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTTiming.h; path = React/CoreModules/RCTTiming.h; sourceTree = ""; }; BBE5EFCABEB336804CDA1C119FB28B51 /* GULReachabilityChecker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULReachabilityChecker.h; path = GoogleUtilities/Reachability/Private/GULReachabilityChecker.h; sourceTree = ""; }; BBF677FBDA8C4140131823DF762F3B63 /* ThreadWheelTimekeeper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ThreadWheelTimekeeper.h; path = folly/futures/ThreadWheelTimekeeper.h; sourceTree = ""; }; - BC0B68D6DE8ED8D2C98B906BF4672B2F /* RNCommandsHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCommandsHandler.h; path = RNNotifications/RNCommandsHandler.h; sourceTree = ""; }; BC34FC3BC5FBC0454E09F0942A1E2962 /* yuv.c */ = {isa = PBXFileReference; includeInIndex = 1; name = yuv.c; path = src/dsp/yuv.c; sourceTree = ""; }; BC41F4BEFC115303267857B135A144AE /* libUMPermissionsInterface.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libUMPermissionsInterface.a; path = libUMPermissionsInterface.a; sourceTree = BUILT_PRODUCTS_DIR; }; BC4A4DFD5C2B5E942C4C4F8D60E0C9FE /* MicroSpinLock.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MicroSpinLock.h; path = folly/synchronization/MicroSpinLock.h; sourceTree = ""; }; BC641C3536C6D80CEBDE234F1229F43E /* diy-fp.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "diy-fp.h"; path = "double-conversion/diy-fp.h"; sourceTree = ""; }; - BC6BF1D7ED08F18910811808E32D7B8E /* RCTValueAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTValueAnimatedNode.m; sourceTree = ""; }; + BC650A70C91226CF525858855AE2EF24 /* RNFirebaseAnalytics.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNFirebaseAnalytics.h; sourceTree = ""; }; + BCB8C7C1B4E67AC19AB1D8B50699EFCB /* RNUserDefaults-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNUserDefaults-prefix.pch"; sourceTree = ""; }; + BCC4D855AACA3DD8AE78A555F77C84D8 /* RCTFont.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTFont.h; sourceTree = ""; }; BCC8BFB1CF351BF5C6EF84BA049AE607 /* HeterogeneousAccess.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = HeterogeneousAccess.h; path = folly/container/HeterogeneousAccess.h; sourceTree = ""; }; - BCC9E8E36491D208809DBABC0A43343D /* ARTRenderable.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = ARTRenderable.m; path = ios/ARTRenderable.m; sourceTree = ""; }; + BCD5BDEE49BAB38CF958DC41A38F7E28 /* REABezierNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REABezierNode.h; sourceTree = ""; }; + BCE2B66B16E38723E924E2A58640BD9B /* Bugsnag.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = Bugsnag.h; sourceTree = ""; }; BD21A41F3FC35E0DFC33DF605CE33EEE /* YogaKit-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "YogaKit-umbrella.h"; sourceTree = ""; }; - BD3966D75FB07B1018792CD8943F35A1 /* React-RCTBlob-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-RCTBlob-prefix.pch"; sourceTree = ""; }; - BD4ECE5FE09353799C30DF0C2A06044D /* RNFirebaseInstanceId.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNFirebaseInstanceId.h; sourceTree = ""; }; - BD5F3EF6EB0059568C5D5E1ACE4D16DF /* RCTAlertManager.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTAlertManager.mm; sourceTree = ""; }; - BD696F1412B23F77ADFF152EF3F0A69D /* react-native-slider.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "react-native-slider.xcconfig"; sourceTree = ""; }; + BD2E760D12539816B328A961CA97446C /* SDWebImageDownloaderResponseModifier.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWebImageDownloaderResponseModifier.m; path = SDWebImage/Core/SDWebImageDownloaderResponseModifier.m; sourceTree = ""; }; BD6E1BB5617BB3C9B9EF365E5F0203B4 /* ChannelResponder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ChannelResponder.h; path = rsocket/statemachine/ChannelResponder.h; sourceTree = ""; }; BD6F1B58837C3E18538051C80DBA60F1 /* FIRAppAssociationRegistration.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRAppAssociationRegistration.m; path = FirebaseCore/Sources/FIRAppAssociationRegistration.m; sourceTree = ""; }; - BD70DEA8AEFD95E482D660919D2119E1 /* react-native-webview.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = "react-native-webview.podspec"; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; BD71E2539823621820F84384064C253A /* libReact-Core.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libReact-Core.a"; path = "libReact-Core.a"; sourceTree = BUILT_PRODUCTS_DIR; }; BD7D6AE70B01DD0DDBC246F0184D8560 /* huffman_utils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = huffman_utils.h; path = src/utils/huffman_utils.h; sourceTree = ""; }; BD915A7D91A75FD6552B9FEB4C051B45 /* ShutdownSocketSet.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = ShutdownSocketSet.cpp; path = folly/io/ShutdownSocketSet.cpp; sourceTree = ""; }; - BD9BD89BC0C5C60E9EAD7A81AEF71D12 /* EXImageLoader.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXImageLoader.m; path = EXImageLoader/EXImageLoader.m; sourceTree = ""; }; - BDB692241C92CA225252AEABAEC15D9F /* RCTRefreshableProtocol.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTRefreshableProtocol.h; sourceTree = ""; }; BDC43C756C3C42122F1233A36382BFD4 /* FIRCoreDiagnostics.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCoreDiagnostics.m; path = Firebase/CoreDiagnostics/FIRCDLibrary/FIRCoreDiagnostics.m; sourceTree = ""; }; - BE02C0418CF8EE6054A6B6631E06DCDA /* EXFileSystem.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = EXFileSystem.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - BE0C45CE0B456AF7B20E80160D87113A /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; - BE2A853BA7F9A576904BEA2F920D162A /* RNCAsyncStorageDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCAsyncStorageDelegate.h; path = ios/RNCAsyncStorageDelegate.h; sourceTree = ""; }; - BE326A8BBAF4AE76275FB5B30C2D2869 /* RCTActivityIndicatorView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTActivityIndicatorView.m; sourceTree = ""; }; - BE479547392B4094703EFDBC6509C671 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; - BE4AC730FBA061A5322A81174F81411B /* UMPermissionsInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMPermissionsInterface.h; path = UMPermissionsInterface/UMPermissionsInterface.h; sourceTree = ""; }; + BDF91B2D8013804B3B247CEAAFE62A04 /* BugsnagApiClient.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagApiClient.m; sourceTree = ""; }; + BE0DD49575309677001AAA0ADD607183 /* EXPermissions-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "EXPermissions-prefix.pch"; sourceTree = ""; }; + BE0FF235482A59A4D7088558559F5A66 /* RCTReconnectingWebSocket.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCTReconnectingWebSocket.m; path = Libraries/WebSocket/RCTReconnectingWebSocket.m; sourceTree = ""; }; + BE191BB1F9A0D534ECCF9AC72F80AA03 /* YGConfig.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = YGConfig.cpp; path = yoga/YGConfig.cpp; sourceTree = ""; }; + BE3A0131962D726235C4F8FB91460D68 /* EXWebBrowser.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXWebBrowser.h; path = EXWebBrowser/EXWebBrowser.h; sourceTree = ""; }; BE535D39BB5BF6825CB208F2AAB9C249 /* FBLPromise+Await.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FBLPromise+Await.h"; path = "Sources/FBLPromises/include/FBLPromise+Await.h"; sourceTree = ""; }; - BE5EBF9B9E5EF12CBD5AD12B3E6B42B2 /* RCTStatusBarManager.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTStatusBarManager.mm; sourceTree = ""; }; + BE71F3AFE22012555B5D1DCDEFB2CF62 /* RNPushKitEventHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNPushKitEventHandler.h; path = RNNotifications/RNPushKitEventHandler.h; sourceTree = ""; }; BE791718BEDB633EFE7FC81BEE765382 /* AsyncServerSocket.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = AsyncServerSocket.cpp; path = folly/io/async/AsyncServerSocket.cpp; sourceTree = ""; }; BE84F26DA698B446FF77833AEF40D482 /* FBCxxFollyDynamicConvert.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBCxxFollyDynamicConvert.h; path = iOS/FlipperKit/FBCxxFollyDynamicConvert/FBCxxFollyDynamicConvert.h; sourceTree = ""; }; - BE91CEE35AB92D55B46F5AE10BF32F0C /* YGNodePrint.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YGNodePrint.h; path = yoga/YGNodePrint.h; sourceTree = ""; }; BE9300230844BA7A2D03F3BAE5DC8BDE /* ScheduledFrameProcessor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ScheduledFrameProcessor.h; path = rsocket/framing/ScheduledFrameProcessor.h; sourceTree = ""; }; - BEB772AE2895A7AE60AEE2B71F800759 /* UIImage+GIF.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIImage+GIF.h"; path = "SDWebImage/Core/UIImage+GIF.h"; sourceTree = ""; }; + BE97773D8C3DAF9FCDCB748359496A88 /* RCTAlertManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTAlertManager.h; path = React/CoreModules/RCTAlertManager.h; sourceTree = ""; }; + BEC3AFB0C3F4A99C632502870555D838 /* BannerComponent.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BannerComponent.m; sourceTree = ""; }; + BECF7B9FB0FFFF7788B6C688A498DAC2 /* RCTAppState.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTAppState.h; path = React/CoreModules/RCTAppState.h; sourceTree = ""; }; BED4D12B7CB1907D3DD20AD65D6968DF /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; name = README.md; path = rsocket/benchmarks/README.md; sourceTree = ""; }; - BEDD8EF93D0127ED2A373DF630F9E051 /* BugsnagBreadcrumb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagBreadcrumb.h; sourceTree = ""; }; - BEE2BAEED37A6A2D75DE4F8C9C7D1970 /* RNFirebaseInstanceId.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNFirebaseInstanceId.m; sourceTree = ""; }; + BEDA20293B86A27BA5072659F10607FF /* NativeModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = NativeModule.h; sourceTree = ""; }; + BEDA74E4AE6E9223E6529946F29BB572 /* RNDateTimePickerManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNDateTimePickerManager.h; path = ios/RNDateTimePickerManager.h; sourceTree = ""; }; + BEDE4FBD021F20A454182E3ECE0E08DD /* RNPanHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNPanHandler.h; sourceTree = ""; }; BEEB210428EF1A8A83AEEDCA25D4C1D1 /* FIRInstallationsVersion.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstallationsVersion.h; path = FirebaseInstallations/Source/Library/Public/FIRInstallationsVersion.h; sourceTree = ""; }; BEEC5B627C27430789D52F34CC40A3D1 /* AtomicRef.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AtomicRef.h; path = folly/synchronization/AtomicRef.h; sourceTree = ""; }; - BF0174832FA170F6A181A9B8FD01957F /* react-native-background-timer-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "react-native-background-timer-prefix.pch"; sourceTree = ""; }; - BF02A4360C993EA209F4841480D7BFCC /* Ionicons.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = Ionicons.ttf; path = Fonts/Ionicons.ttf; sourceTree = ""; }; BF0C8319C7932A1BA4AE4B9C93D231B4 /* PTUSBHub.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PTUSBHub.h; path = peertalk/PTUSBHub.h; sourceTree = ""; }; - BF1A51A3817F94FE9F6D656316439DF9 /* EXHaptics-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "EXHaptics-prefix.pch"; sourceTree = ""; }; - BF71B6B50AE0EA0C42E1995CB3D90984 /* EXVideoThumbnailsModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXVideoThumbnailsModule.h; path = EXVideoThumbnails/EXVideoThumbnailsModule.h; sourceTree = ""; }; - BF7626FC6716B8FFD496BE502D49929E /* RCTLog.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTLog.mm; sourceTree = ""; }; - BF7875275D133A28394FE406760DC9CE /* QBCheckmarkView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = QBCheckmarkView.h; path = ios/QBImagePicker/QBImagePicker/QBCheckmarkView.h; sourceTree = ""; }; - BFA07440A8E55C4863268CEC6E8C645C /* SDImageHEICCoderInternal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageHEICCoderInternal.h; path = SDWebImage/Private/SDImageHEICCoderInternal.h; sourceTree = ""; }; - BFB653590FB299B61B9D0198545B5D53 /* SDImageCacheConfig.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageCacheConfig.m; path = SDWebImage/Core/SDImageCacheConfig.m; sourceTree = ""; }; - BFC7C2CDFD20C9563CC341F59F84CCAC /* SDImageCachesManagerOperation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageCachesManagerOperation.h; path = SDWebImage/Private/SDImageCachesManagerOperation.h; sourceTree = ""; }; + BF11A6A2A534E1BC60B988376BCD57C2 /* RCTDevMenu.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTDevMenu.h; path = React/CoreModules/RCTDevMenu.h; sourceTree = ""; }; + BF5EBBD86D7C35D9F2C18C083C2BA62C /* RNGestureHandler-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNGestureHandler-prefix.pch"; sourceTree = ""; }; + BF606E900C00805F2C18145463811455 /* ReactCommon-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "ReactCommon-prefix.pch"; sourceTree = ""; }; BFCE4058442BFB8DEB89BA3F261A76BA /* libRNUserDefaults.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libRNUserDefaults.a; path = libRNUserDefaults.a; sourceTree = BUILT_PRODUCTS_DIR; }; + BFD11B5FDE9ED168815BBE7C6FFABCB9 /* UMPermissionsMethodsDelegate.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = UMPermissionsMethodsDelegate.m; path = UMPermissionsInterface/UMPermissionsMethodsDelegate.m; sourceTree = ""; }; BFDB400359D9801EC7F5B043C1BE7FB5 /* StreamFragmentAccumulator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = StreamFragmentAccumulator.h; path = rsocket/statemachine/StreamFragmentAccumulator.h; sourceTree = ""; }; - BFDC408389CB2C71CCB52D6A88B529F1 /* React-jsiexecutor-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-jsiexecutor-dummy.m"; sourceTree = ""; }; - BFF25A5890088FE3163334A7ED4D8814 /* RCTWebSocketModule.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTWebSocketModule.mm; sourceTree = ""; }; - BFF73D90E1EB134A59A319885D6799A2 /* react-native-cameraroll.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = "react-native-cameraroll.podspec"; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - C019C5E38C06F44F4D7C9B8CA3265E20 /* ARTRenderable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ARTRenderable.h; path = ios/ARTRenderable.h; sourceTree = ""; }; + BFEA78FD1A11C6A8C6F0FDE796F4010B /* REAJSCallNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REAJSCallNode.h; sourceTree = ""; }; + BFEB54173ED83DC4030CA266F119B8D2 /* RCTProfileTrampoline-arm64.S */ = {isa = PBXFileReference; includeInIndex = 1; path = "RCTProfileTrampoline-arm64.S"; sourceTree = ""; }; + BFF3FA1D08A33FAF76007643DA01218F /* Ionicons.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = Ionicons.ttf; path = Fonts/Ionicons.ttf; sourceTree = ""; }; + C0000B38299D5F22C8F43DF382FF1EDD /* RCTVirtualTextViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTVirtualTextViewManager.m; sourceTree = ""; }; C023522D07E565D0B8BEE38CD1DC59D4 /* dns.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = dns.h; path = src/event2/dns.h; sourceTree = ""; }; - C0270F97695905D849A9C64C389F5E31 /* JSBigString.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = JSBigString.cpp; sourceTree = ""; }; - C04903A37365E963E54413DF6FD9FD6A /* RCTSurfaceRootShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSurfaceRootShadowView.m; sourceTree = ""; }; - C04CAF1C9D2A557190D23C05A5E1215A /* RCTCxxConvert.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTCxxConvert.m; sourceTree = ""; }; + C05399A912AE7E3A02AEA641DBCCCB65 /* RCTSafeAreaView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSafeAreaView.m; sourceTree = ""; }; C05BD4154F1F65CD1FF9EF9570D1C3FA /* GlobalShutdownSocketSet.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = GlobalShutdownSocketSet.cpp; path = folly/io/GlobalShutdownSocketSet.cpp; sourceTree = ""; }; + C06035B5E167EB2920F8D209C67720BB /* advancedIos.md */ = {isa = PBXFileReference; includeInIndex = 1; name = advancedIos.md; path = docs/advancedIos.md; sourceTree = ""; }; + C066451C629CEEF452CDFC6A8CCA77BF /* Zocial.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = Zocial.ttf; path = Fonts/Zocial.ttf; sourceTree = ""; }; C0665594DBA861A8A5EA0DC000489878 /* decode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = decode.h; path = src/webp/decode.h; sourceTree = ""; }; - C08CA5F5FD4835B128CFCF8A10302E56 /* RCTRequired.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RCTRequired.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - C0A320184E361CD4261DBE4243AFAC31 /* BSG_KSMach_Arm.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSMach_Arm.c; sourceTree = ""; }; - C0A3B1DB40C9E348BFB3FE22BA06305C /* RCTTouchHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTouchHandler.h; sourceTree = ""; }; - C0BF5F99115EE471188E590055260764 /* REAEventNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REAEventNode.h; sourceTree = ""; }; + C082C061C52B41DC74CF1FF0B88F2D31 /* RCTManagedPointer.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTManagedPointer.mm; sourceTree = ""; }; + C0950CB23480E915E946BD4A5C8ABBEA /* EXAV.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXAV.h; path = EXAV/EXAV.h; sourceTree = ""; }; + C098C8D5C715F5E1A1A851402AD3DDD1 /* SDAnimatedImage.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDAnimatedImage.m; path = SDWebImage/Core/SDAnimatedImage.m; sourceTree = ""; }; + C0AFC2A3F699ACD26839D82946D8B10D /* UMLogManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = UMLogManager.m; sourceTree = ""; }; + C0BDE6661197138B7F27DBEA70D7413C /* SDImageCoder.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageCoder.m; path = SDWebImage/Core/SDImageCoder.m; sourceTree = ""; }; C0C7F5B506A4CC32E2F13CD387EEFE0D /* Format.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = Format.cpp; path = folly/Format.cpp; sourceTree = ""; }; - C0C8628D3ECA2DC14F6E5DAFEF019A26 /* EXVideoView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = EXVideoView.m; sourceTree = ""; }; - C0CDD00DDFA68C0DF72E3957B9D462CF /* RCTSurfacePresenterStub.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSurfacePresenterStub.m; sourceTree = ""; }; - C0DD9DF6859C411D62FA7DB0B4ADAB70 /* RCTActivityIndicatorViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTActivityIndicatorViewManager.h; sourceTree = ""; }; - C0F313FB5F1E7F6BF4108813F8D2502F /* React-jsi.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-jsi.xcconfig"; sourceTree = ""; }; C108660121E046B1BDEF96A2F71B2A5E /* EventBaseManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EventBaseManager.h; path = folly/io/async/EventBaseManager.h; sourceTree = ""; }; C1301194D0488C68D7DC6B14F8311148 /* des_old.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = des_old.h; path = ios/include/openssl/des_old.h; sourceTree = ""; }; - C14E45FD9623CC58C10518AD113563CE /* ReactCommon-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "ReactCommon-dummy.m"; sourceTree = ""; }; - C18252439B490C91FC5F74CCC76918A3 /* RCTAdditionAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTAdditionAnimatedNode.m; sourceTree = ""; }; + C13162978A24E5E967EEE703E95D17ED /* NSImage+Compatibility.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSImage+Compatibility.m"; path = "SDWebImage/Core/NSImage+Compatibility.m"; sourceTree = ""; }; + C14E739F3F6B19F2164BDAA53543E8B1 /* RCTImageCache.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageCache.h; path = Libraries/Image/RCTImageCache.h; sourceTree = ""; }; C189539BA2A4A2E7C6039B950C1B63FC /* SKNetworkReporter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SKNetworkReporter.h; path = iOS/Plugins/FlipperKitNetworkPlugin/FlipperKitNetworkPlugin/SKNetworkReporter.h; sourceTree = ""; }; - C1A63DDB109BA4203505D76411BFC8F3 /* RCTAnimationPlugins.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTAnimationPlugins.mm; sourceTree = ""; }; C1A919103EAC9813D236486C34FC0A21 /* libReact-RCTVibration.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libReact-RCTVibration.a"; path = "libReact-RCTVibration.a"; sourceTree = BUILT_PRODUCTS_DIR; }; C1AF7046F4295200DA1091E98F1B557F /* F14Policy.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = F14Policy.h; path = folly/container/detail/F14Policy.h; sourceTree = ""; }; - C1BC8CA70E28EA5EF4D34F254C9D63C3 /* ARTTextManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = ARTTextManager.h; sourceTree = ""; }; + C1BA7C0A7B250DD8A9CDA8A914A6094D /* RCTStyleAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTStyleAnimatedNode.m; sourceTree = ""; }; C1D0F4B53FBE07F21047EA61D5D9F50E /* asn1.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = asn1.h; path = ios/include/openssl/asn1.h; sourceTree = ""; }; - C1D5A570574B92F76B7BD7A8A1BDF5A3 /* RCTSourceCode.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTSourceCode.mm; sourceTree = ""; }; + C1F7C370E1B231730123F7F7DC481D25 /* ARTLinearGradient.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = ARTLinearGradient.h; sourceTree = ""; }; + C1FC9167130E87E5FE4099E1FADF8B45 /* ReactNativeKeyboardInput.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = ReactNativeKeyboardInput.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; C2003381948AFF7CBC11D32CF2F11C33 /* IPAddress.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = IPAddress.cpp; path = folly/detail/IPAddress.cpp; sourceTree = ""; }; C204812C2A6F2B7CBAE9D33EB9F64750 /* log_severity.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = log_severity.h; path = src/glog/log_severity.h; sourceTree = ""; }; C20AF5E435127DBA67BC1E57B6561AD6 /* OpenSSLLockTypes.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = OpenSSLLockTypes.h; path = folly/ssl/OpenSSLLockTypes.h; sourceTree = ""; }; C21CCDB4AB9E50DE25A182A1A5788054 /* ThreadWheelTimekeeperHighRes.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ThreadWheelTimekeeperHighRes.h; path = folly/experimental/ThreadWheelTimekeeperHighRes.h; sourceTree = ""; }; - C227F4B7992430DBAC04276C2B6014C1 /* RNEventEmitter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNEventEmitter.h; path = RNNotifications/RNEventEmitter.h; sourceTree = ""; }; - C229DD1D2670A9D83AB53E37B472BE4C /* RNFirebaseStorage.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNFirebaseStorage.h; sourceTree = ""; }; - C23CD0A21EBD2999A882F84B9F233AD5 /* RNCAsyncStorage.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNCAsyncStorage.xcconfig; sourceTree = ""; }; + C2223C2E29771101F6D806E52FE5022A /* RCTKeyCommandConstants.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTKeyCommandConstants.h; path = ios/KeyCommands/RCTKeyCommandConstants.h; sourceTree = ""; }; + C245363D5D5A721EA86FF342C69BDCAC /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; C2456B070C41806D7B609717DA4AE773 /* ProducerConsumerQueue.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ProducerConsumerQueue.h; path = folly/ProducerConsumerQueue.h; sourceTree = ""; }; C254A8332C4E39AD6D3516D71FFD32A7 /* StaticSingletonManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = StaticSingletonManager.h; path = folly/detail/StaticSingletonManager.h; sourceTree = ""; }; C2556B078588E78F3AEEC4FFA1F34A01 /* Invoke.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Invoke.h; path = folly/functional/Invoke.h; sourceTree = ""; }; + C2609D085BBE7D426688E865F2D2155E /* SDWebImagePrefetcher.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWebImagePrefetcher.m; path = SDWebImage/Core/SDWebImagePrefetcher.m; sourceTree = ""; }; C26B189FAC656D17783122181C6D1987 /* Try.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Try.h; path = folly/Try.h; sourceTree = ""; }; C28867F59EBDB868E877DA0C1C5D37F5 /* RSocketParameters.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RSocketParameters.h; path = rsocket/RSocketParameters.h; sourceTree = ""; }; + C28FBB7A0C7B4C9057C33CE3168BE672 /* RCTTurboModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTurboModule.h; sourceTree = ""; }; C2AC929E8A0A14F84960B40BC04E3EDF /* Hardware.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Hardware.h; path = folly/chrono/Hardware.h; sourceTree = ""; }; C2ACAFF2EC9798E22920AFC52340CFA5 /* Flipper-Folly.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Flipper-Folly.xcconfig"; sourceTree = ""; }; + C2C113C82B064D9F09A75FF1B1E8A2FB /* RNGestureHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNGestureHandler.m; path = ios/RNGestureHandler.m; sourceTree = ""; }; C2C3BA5452DF3C79CF3586FD7F42D79F /* demangle.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = demangle.cc; path = src/demangle.cc; sourceTree = ""; }; C2D12D9CB52D0A5C33E123C91F9F277C /* BaselinesTcp.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = BaselinesTcp.cpp; path = rsocket/benchmarks/BaselinesTcp.cpp; sourceTree = ""; }; - C3093E8DB076B814FC199B208E9B3C15 /* EXPermissions.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXPermissions.m; path = EXPermissions/EXPermissions.m; sourceTree = ""; }; + C2D4EB37DBC86E89625C75AB59DF4C7C /* REACondNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REACondNode.h; sourceTree = ""; }; + C2DD37C37E98ACC3EC112B31D8784CC3 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; + C2ECDA3334C5C2C8D3905F13DF2B2E68 /* EXKeepAwake.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = EXKeepAwake.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + C2F2AD7683409365750CC090551D941C /* RCTResizeMode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTResizeMode.m; sourceTree = ""; }; + C30E9ABC632F2958332FE681AD77591A /* LNAnimator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = LNAnimator.h; sourceTree = ""; }; C3109FCC2F4243964C3D83291577711F /* TimedDrivableExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TimedDrivableExecutor.h; path = folly/executors/TimedDrivableExecutor.h; sourceTree = ""; }; C3142A503B8B70FC802BBF2FB75CCC8E /* ThreadCachedInt.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ThreadCachedInt.h; path = folly/ThreadCachedInt.h; sourceTree = ""; }; - C33745890C9F91ADF6EB4AB0EB5ECE70 /* RCTKeyboardObserver.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTKeyboardObserver.mm; sourceTree = ""; }; + C314FD85927B7F436A1943A280B73F35 /* RNVectorIcons.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RNVectorIcons.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + C343B2786CEE68D3AB66F5D59A12F86F /* RNCAsyncStorage.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCAsyncStorage.h; path = ios/RNCAsyncStorage.h; sourceTree = ""; }; C347EB43BDE636D5C412551BC1BF3133 /* Builtins.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Builtins.h; path = folly/portability/Builtins.h; sourceTree = ""; }; C349907DDF23F683261B00548458E2B7 /* RecordIO-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "RecordIO-inl.h"; path = "folly/io/RecordIO-inl.h"; sourceTree = ""; }; - C3601DDF73E4E0C163E9C1038E282EC0 /* RNDeviceInfo-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNDeviceInfo-dummy.m"; sourceTree = ""; }; - C38F2DF546EC0B7401DD3FD817DF5A7A /* EXImageLoader.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = EXImageLoader.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + C367AE07D1F067F9C856D65ECF9B89FC /* RNCWKProcessPoolManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCWKProcessPoolManager.m; path = apple/RNCWKProcessPoolManager.m; sourceTree = ""; }; + C38D77E4FF706ACDC4472375DFF52014 /* JSINativeModules.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = JSINativeModules.cpp; path = jsireact/JSINativeModules.cpp; sourceTree = ""; }; C394BE36DFD48F07854E942BCB01261D /* cached-powers.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = "cached-powers.cc"; path = "double-conversion/cached-powers.cc"; sourceTree = ""; }; + C39B56B0AB2AC1FB3B5ACE926A107F62 /* REATransformNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REATransformNode.m; sourceTree = ""; }; C3A93A7C5F6A0F2C1EEDC9EDE3C12E12 /* GDTCORTransformer.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GDTCORTransformer.m; path = GoogleDataTransport/GDTCORLibrary/GDTCORTransformer.m; sourceTree = ""; }; C3AC3A6D43F8FF8D287E383DDC8A9A4D /* ec.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ec.h; path = ios/include/openssl/ec.h; sourceTree = ""; }; - C4056A95B9082E2CB7A6161D92837DDB /* RNFirebaseNotifications.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNFirebaseNotifications.h; sourceTree = ""; }; - C42295A853EA3272C33CC1007B5EA749 /* FFFastImageViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FFFastImageViewManager.m; path = ios/FastImage/FFFastImageViewManager.m; sourceTree = ""; }; + C3ADB50DAA4E351BC5620570DD152692 /* DispatchMessageQueueThread.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = DispatchMessageQueueThread.h; sourceTree = ""; }; + C3B7ED5A7F18975F0BDD30F4FDEE4BF5 /* RCTClipboard.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTClipboard.mm; sourceTree = ""; }; + C3E090A4891088B0395C87EA07C77B16 /* RNFirebaseFirestoreDocumentReference.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNFirebaseFirestoreDocumentReference.h; sourceTree = ""; }; + C3E5869E1588794267E6340A86F54539 /* JSIDynamic.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = JSIDynamic.h; sourceTree = ""; }; + C3F1A0AE9A8D78D358EC27C3B482274B /* RNJitsiMeetView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNJitsiMeetView.h; path = ios/RNJitsiMeetView.h; sourceTree = ""; }; + C41134D489B1012CFE2822E772D00509 /* NSButton+WebCache.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSButton+WebCache.h"; path = "SDWebImage/Core/NSButton+WebCache.h"; sourceTree = ""; }; + C4137DC46FF694731547B518598BA2E2 /* JSIExecutor.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = JSIExecutor.cpp; path = jsireact/JSIExecutor.cpp; sourceTree = ""; }; + C42FF7329B3B62D137089F10708D9284 /* RNBackgroundTimer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNBackgroundTimer.h; path = ios/RNBackgroundTimer.h; sourceTree = ""; }; C438EEE3355895D23EA3E76753FF02C6 /* SSLErrors.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = SSLErrors.cpp; path = folly/io/async/ssl/SSLErrors.cpp; sourceTree = ""; }; C44304169C35B4A7A519B1A1DCBDA0AB /* Windows.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Windows.h; path = folly/portability/Windows.h; sourceTree = ""; }; C447054D2A8D18FFD482EBF39CCD4073 /* Flipper-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Flipper-dummy.m"; sourceTree = ""; }; - C44725A1EC6B0D7042E990E8FFAD2EBC /* EXConstantsService.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXConstantsService.m; path = EXConstants/EXConstantsService.m; sourceTree = ""; }; C44764391C07D33D533DEADD5BA5590C /* HazptrDomain.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = HazptrDomain.h; path = folly/synchronization/HazptrDomain.h; sourceTree = ""; }; - C447C2F56F60AB7FBB7B476E7BE16CF5 /* React-jsinspector-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-jsinspector-dummy.m"; sourceTree = ""; }; - C45340E1BD37FF39D4D1428478240EFF /* SDImageCache.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageCache.m; path = SDWebImage/Core/SDImageCache.m; sourceTree = ""; }; - C45617988D2E356E57BF3F7A0FE0E174 /* ja.lproj */ = {isa = PBXFileReference; includeInIndex = 1; name = ja.lproj; path = ios/QBImagePicker/QBImagePicker/ja.lproj; sourceTree = ""; }; - C4819B006A4CB7BDE21A5A4D9D1239BF /* RCTUIManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTUIManager.m; sourceTree = ""; }; + C44F0DD346E6E691E805C3357725F999 /* YGNode.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = YGNode.cpp; path = yoga/YGNode.cpp; sourceTree = ""; }; + C46B3CD9E0A3FF13718E7CA92A2880C4 /* RNFirebaseFirestore.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNFirebaseFirestore.m; sourceTree = ""; }; C482C4730A3D930704DB1E78CED3AA3E /* RSocketStats.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = RSocketStats.cpp; path = rsocket/RSocketStats.cpp; sourceTree = ""; }; C49C77B14C7A4ED1DE03E4400210D47C /* Merge.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Merge.h; path = folly/container/Merge.h; sourceTree = ""; }; C4A8F789C199D44C73E456AC70D39B21 /* Replaceable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Replaceable.h; path = folly/Replaceable.h; sourceTree = ""; }; - C4BEA3F947F7BCB04367E48FD3A8CEAB /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; + C4AE0CF38FB42ABE030B6B83F558201C /* RCTAssert.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTAssert.m; sourceTree = ""; }; + C4B2C5709C514C2A60E9E90B11DD4F53 /* REATransitionManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REATransitionManager.m; sourceTree = ""; }; C4CA6DE0516D51CDB6B6CDE905DA3D78 /* Format-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "Format-inl.h"; path = "folly/Format-inl.h"; sourceTree = ""; }; C4D02AD3FB4B53CDBE474C4BCC0F2D7E /* raw_logging.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = raw_logging.cc; path = src/raw_logging.cc; sourceTree = ""; }; - C4D42313D4DAF406D2817B141A119FA9 /* RCTSurfaceStage.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSurfaceStage.h; sourceTree = ""; }; C4D8C35912F68FCA0375BED2E0356D22 /* cost_enc.c */ = {isa = PBXFileReference; includeInIndex = 1; name = cost_enc.c; path = src/enc/cost_enc.c; sourceTree = ""; }; - C4F1DF0D45EFB894C49030EFCEC3E5C1 /* RNGestureHandler-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNGestureHandler-dummy.m"; sourceTree = ""; }; - C4F76CE918BDF24D3B02B9768F7BCB3B /* RNScreens-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNScreens-dummy.m"; sourceTree = ""; }; - C5079FCBD5EEF4C3D19A4559DF39DA35 /* RNFlingHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNFlingHandler.m; sourceTree = ""; }; + C51A4E95B315C339E2A51008F8D90AED /* SDImageCacheDefine.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageCacheDefine.m; path = SDWebImage/Core/SDImageCacheDefine.m; sourceTree = ""; }; C51CD3D9B24F6D593397AB166CCEA9DB /* FIRCoreDiagnosticsInterop.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCoreDiagnosticsInterop.h; path = Interop/CoreDiagnostics/Public/FIRCoreDiagnosticsInterop.h; sourceTree = ""; }; - C51E3248075DA87730F8569F1ABA1D10 /* RNFirebaseAuth.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNFirebaseAuth.m; sourceTree = ""; }; C52761B7DA3EA39F7288C036525CB927 /* StreamRequester.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = StreamRequester.h; path = rsocket/statemachine/StreamRequester.h; sourceTree = ""; }; C52F8C39642878EE119EB3371F5D3E53 /* PriorityThreadFactory.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PriorityThreadFactory.h; path = folly/executors/thread_factory/PriorityThreadFactory.h; sourceTree = ""; }; - C5363E2E18C3E2582BC14D74EF29FEAD /* BSG_KSDynamicLinker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSDynamicLinker.h; sourceTree = ""; }; + C53A341F26A850ED2FFD606A431186B2 /* EXConstants.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = EXConstants.xcconfig; sourceTree = ""; }; C53FBAFE6757A0CC37B98D6A097FBFD0 /* CPortability.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CPortability.h; path = folly/CPortability.h; sourceTree = ""; }; - C56C1693BDC084EDD80C7D26ADD67C9E /* RCTImageUtils.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTImageUtils.m; sourceTree = ""; }; C5702E4D9BEDFB43F6AA03BCC523ABAB /* FIRInstallations.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstallations.m; path = FirebaseInstallations/Source/Library/FIRInstallations.m; sourceTree = ""; }; + C58AB2A65F439CAF0F3F52271B89C5B8 /* RCTConvert+UIBackgroundFetchResult.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RCTConvert+UIBackgroundFetchResult.h"; sourceTree = ""; }; + C591EA68A34B862CC77AEDE75BAEC8B7 /* Yoga-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Yoga-prefix.pch"; sourceTree = ""; }; C594763EE856BA417805AA977CDF305E /* ManualExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ManualExecutor.h; path = folly/executors/ManualExecutor.h; sourceTree = ""; }; C597DD708F8111E3F8A0C470DFC62F00 /* FIRInstallationsSingleOperationPromiseCache.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstallationsSingleOperationPromiseCache.h; path = FirebaseInstallations/Source/Library/InstallationsIDController/FIRInstallationsSingleOperationPromiseCache.h; sourceTree = ""; }; C5BBCD54998E8FB091B5DCBC5FD34392 /* SKApplicationDescriptor.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SKApplicationDescriptor.m; path = iOS/Plugins/FlipperKitLayoutPlugin/FlipperKitLayoutPlugin/descriptors/SKApplicationDescriptor.m; sourceTree = ""; }; C5C1FACAB4E7399CF7E9DA5FA30E0758 /* FrameProcessor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FrameProcessor.h; path = rsocket/framing/FrameProcessor.h; sourceTree = ""; }; - C5CA0AEF5EA89992EB0B35EE86E02AA7 /* BSG_KSMach.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSMach.h; sourceTree = ""; }; + C5C6D5BD9D296EDD799A90075258D190 /* EXHaptics.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = EXHaptics.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; C5E2630D0D65D057206B8901A4535D5C /* FBLPromise+Reduce.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FBLPromise+Reduce.h"; path = "Sources/FBLPromises/include/FBLPromise+Reduce.h"; sourceTree = ""; }; - C5F49D1EC24C9C8AD979AEF0E0EFFCA9 /* UMReactFontManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = UMReactFontManager.m; sourceTree = ""; }; C5FBF2C655BDF50FBE56FB922C3EDC64 /* utilities.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = utilities.cc; path = src/utilities.cc; sourceTree = ""; }; - C600E0C9557D33A1A03EDF81C56E1C6D /* UMViewManagerAdapterClassesRegistry.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = UMViewManagerAdapterClassesRegistry.m; sourceTree = ""; }; + C60788B4BE7B0625FB777C36587DA53D /* RCTTVNavigationEventEmitter.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTTVNavigationEventEmitter.mm; sourceTree = ""; }; C611ECDB782023017C5311E0E1882107 /* AsyncUDPServerSocket.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AsyncUDPServerSocket.h; path = folly/io/async/AsyncUDPServerSocket.h; sourceTree = ""; }; C617BD7A6A238D72724BEC1D456C125E /* EventBaseLocal.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = EventBaseLocal.cpp; path = folly/io/async/EventBaseLocal.cpp; sourceTree = ""; }; C618383C9180ABFE3C78D4CD29ECA29B /* SequencedExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SequencedExecutor.h; path = folly/executors/SequencedExecutor.h; sourceTree = ""; }; C6187BEC3C0923BA104D84C23B91E01C /* Utility.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Utility.h; path = folly/Utility.h; sourceTree = ""; }; - C6276349EE478C396F4BC9158E31AE4F /* Color+Interpolation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Color+Interpolation.h"; sourceTree = ""; }; + C62852A57ECECC01001915BC13F9DAB0 /* UMViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMViewManager.h; path = UMCore/UMViewManager.h; sourceTree = ""; }; C63A6A47981F29DEF5709746C0FEB1A3 /* IOExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = IOExecutor.h; path = folly/executors/IOExecutor.h; sourceTree = ""; }; - C64946AD6C95C8CC4F360037CB623723 /* RCTTextSelection.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTextSelection.h; sourceTree = ""; }; C64F1ABE0A71785564EFEB70DA843B6A /* Pods-ShareRocketChatRN-resources.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-ShareRocketChatRN-resources.sh"; sourceTree = ""; }; C654FE08831C0CF715C21934C7CABA0F /* boost-for-react-native.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "boost-for-react-native.xcconfig"; sourceTree = ""; }; - C65DE3A05F1889FCBA86E8368027A1AD /* RCTNativeAnimatedNodesManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTNativeAnimatedNodesManager.m; sourceTree = ""; }; + C66923D07A4E755E225E655983497FAE /* REAFunctionNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REAFunctionNode.h; sourceTree = ""; }; + C676779F45FF6BC42177BCB13DF550B3 /* NSTextStorage+FontScaling.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "NSTextStorage+FontScaling.h"; sourceTree = ""; }; C67BE21BEF53E4B88BD7BD67C69D8CB6 /* GDTCORReachability.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCORReachability.h; path = GoogleDataTransport/GDTCORLibrary/Public/GDTCORReachability.h; sourceTree = ""; }; C686E607286AB7E08B8E8B083E7C3B51 /* SKInvalidation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SKInvalidation.h; path = iOS/Plugins/FlipperKitLayoutPlugin/FlipperKitLayoutPlugin/SKInvalidation.h; sourceTree = ""; }; - C6A3C5875C4FA522C69652AFDFA30B60 /* SDWebImageManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageManager.h; path = SDWebImage/Core/SDWebImageManager.h; sourceTree = ""; }; C6BF76A651423C1B5D83A11E5FC23681 /* YGLayout.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YGLayout.h; path = YogaKit/Source/YGLayout.h; sourceTree = ""; }; C6C22D1FEE3B00F2917C4C24433E46B6 /* FlipperConnection.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FlipperConnection.h; path = xplat/Flipper/FlipperConnection.h; sourceTree = ""; }; - C6C36B4CF0EFE6B9FBE55B0E968F387A /* FFFastImageView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FFFastImageView.h; path = ios/FastImage/FFFastImageView.h; sourceTree = ""; }; - C6F1748B403E6E5764097A0DFD44854C /* REAConcatNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REAConcatNode.m; sourceTree = ""; }; - C702028BE0E9F17B34F2C20BC017AD83 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; - C7022D39F0131D8DE5EE4852EFFE46A5 /* SDWebImageDownloaderRequestModifier.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWebImageDownloaderRequestModifier.m; path = SDWebImage/Core/SDWebImageDownloaderRequestModifier.m; sourceTree = ""; }; - C72EFF39F9845C65ECAFF95FFC67AED7 /* UMDeviceMotionInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMDeviceMotionInterface.h; path = UMSensorsInterface/UMDeviceMotionInterface.h; sourceTree = ""; }; - C73F242C04336D7FF6A7E8E1A751127D /* EXReactNativeUserNotificationCenterProxy.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXReactNativeUserNotificationCenterProxy.h; path = EXPermissions/EXReactNativeUserNotificationCenterProxy.h; sourceTree = ""; }; - C75D22E6E9E3499FEE0A3861088D7C3F /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; + C6DEBA0649BC2A802F9FBEB21DBB6DE5 /* FBReactNativeSpec.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBReactNativeSpec.h; path = FBReactNativeSpec/FBReactNativeSpec.h; sourceTree = ""; }; C777CF2FB1E39A45CBBDB54E8693F471 /* libRNReanimated.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libRNReanimated.a; path = libRNReanimated.a; sourceTree = BUILT_PRODUCTS_DIR; }; + C7801D1469FE2CF9E5087267BBB71BBF /* RCTPackagerConnection.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTPackagerConnection.mm; sourceTree = ""; }; C78AC8F8193767D450E7E8B4E33C3393 /* SerialExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SerialExecutor.h; path = folly/executors/SerialExecutor.h; sourceTree = ""; }; - C7B7295CBF6EF405A44F84AAE4205705 /* BSG_KSCrash.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BSG_KSCrash.m; sourceTree = ""; }; + C79180B09CA5051DF178E70BA3FAD457 /* JSBigString.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = JSBigString.cpp; sourceTree = ""; }; C7DA7DB2E6ED912A350DA15A567DCA3B /* Flipper-RSocket-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Flipper-RSocket-prefix.pch"; sourceTree = ""; }; C7DC09936FA681FD6534B67D460E6377 /* GTest.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GTest.h; path = folly/portability/GTest.h; sourceTree = ""; }; - C80F0E598D55849543372327E7C3B29C /* EXKeepAwake-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "EXKeepAwake-prefix.pch"; sourceTree = ""; }; + C7F746DB3BB961BBE963495CE702F2C2 /* UMFaceDetectorManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMFaceDetectorManager.h; path = UMFaceDetectorInterface/UMFaceDetectorManager.h; sourceTree = ""; }; + C8372AC96207D4A27A40EE1FA0BC8EEC /* BugsnagFileStore.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagFileStore.m; sourceTree = ""; }; + C8396231DC1ED4DBE06F3BEE7B308131 /* RCTDecayAnimation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTDecayAnimation.m; sourceTree = ""; }; + C83DD93FD4E6AE1433C2F04BA609814C /* SDWebImageCacheSerializer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageCacheSerializer.h; path = SDWebImage/Core/SDWebImageCacheSerializer.h; sourceTree = ""; }; + C844BF9C6186707B9A73B3D28E631584 /* RNScreens-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNScreens-dummy.m"; sourceTree = ""; }; C85B32CE09C0680D191A596247D33DBE /* Unicode.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = Unicode.cpp; path = folly/Unicode.cpp; sourceTree = ""; }; C861EC7F1643CD0F174E5FCE7F99FF56 /* SpookyHashV2.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = SpookyHashV2.cpp; path = folly/hash/SpookyHashV2.cpp; sourceTree = ""; }; C86410DA5B635FCD1418EACF241E3676 /* ErrorCode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ErrorCode.h; path = rsocket/framing/ErrorCode.h; sourceTree = ""; }; - C8896265D038C4A8BC58E1851B938227 /* UIImage+ForceDecode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIImage+ForceDecode.h"; path = "SDWebImage/Core/UIImage+ForceDecode.h"; sourceTree = ""; }; C892F6E29BEFAA900F4D34736A3A395D /* FIRAnalyticsConfiguration.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRAnalyticsConfiguration.m; path = FirebaseCore/Sources/FIRAnalyticsConfiguration.m; sourceTree = ""; }; - C898C23FFB4EA1B7C6820BB604B3C061 /* react-native-slider.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = "react-native-slider.podspec"; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - C8A26A69F3EF4F2DE018599DA2868F89 /* UIView+WebCacheOperation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIView+WebCacheOperation.h"; path = "SDWebImage/Core/UIView+WebCacheOperation.h"; sourceTree = ""; }; - C8C8F2005685BA0606C2E4D9A04FA8D0 /* SDMemoryCache.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDMemoryCache.m; path = SDWebImage/Core/SDMemoryCache.m; sourceTree = ""; }; - C8D1B31BC5FDE2E2292F2D47E7079016 /* RCTRedBox.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTRedBox.h; path = React/CoreModules/RCTRedBox.h; sourceTree = ""; }; - C8D4187F04A5CB8410455373AE01BFCC /* RNFirebaseFirestoreCollectionReference.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNFirebaseFirestoreCollectionReference.h; sourceTree = ""; }; + C89C5B2F338E234BAF2194AEA625B2D6 /* RCTVibration.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTVibration.mm; sourceTree = ""; }; C8DD038465A9BEFEA0B2B73AB0D535AA /* EventUtil.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EventUtil.h; path = folly/io/async/EventUtil.h; sourceTree = ""; }; - C8E57C46428DDC0632FE24C7BF610613 /* UIColor+SDHexString.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIColor+SDHexString.h"; path = "SDWebImage/Private/UIColor+SDHexString.h"; sourceTree = ""; }; - C90E0C7B1D9E78D0B532D1E356CCD82E /* RCTMultipartStreamReader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTMultipartStreamReader.h; sourceTree = ""; }; + C8E4EDDF6E319A8BA5C073AC8E4A4B48 /* RCTBlobCollector.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTBlobCollector.mm; sourceTree = ""; }; C9107F956D575ABB532F70D331DA2C31 /* Random.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Random.h; path = folly/Random.h; sourceTree = ""; }; C921A77EEC440C08EE0B98D5D8EC1CFF /* signalhandler.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = signalhandler.cc; path = src/signalhandler.cc; sourceTree = ""; }; C9449BD91D95C25D43F9181CA3577DA4 /* EnableSharedFromThis.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EnableSharedFromThis.h; path = folly/memory/EnableSharedFromThis.h; sourceTree = ""; }; - C94E090C7AA8B2A12C7852C77FF192F2 /* RCTPackagerConnection.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTPackagerConnection.h; sourceTree = ""; }; - C955267DE061468D6AEE4D05FE950850 /* react-native-jitsi-meet-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "react-native-jitsi-meet-prefix.pch"; sourceTree = ""; }; C9561D2C0C8BB162D69476064062DDAF /* EnvUtil.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EnvUtil.h; path = folly/experimental/EnvUtil.h; sourceTree = ""; }; + C9632E2040F40F5BFC7BE04BD414A025 /* RNNotificationsStore.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNNotificationsStore.h; path = RNNotifications/RNNotificationsStore.h; sourceTree = ""; }; + C978322306749FDF168D90C7DF3CACB1 /* react-native-cameraroll-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "react-native-cameraroll-prefix.pch"; sourceTree = ""; }; C995004C50B3E13137FD7EC58C6EB255 /* ChannelRequester.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = ChannelRequester.cpp; path = rsocket/statemachine/ChannelRequester.cpp; sourceTree = ""; }; - C9C73D7D00469115D46057DBC13A85F7 /* RCTMultilineTextInputView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTMultilineTextInputView.h; sourceTree = ""; }; + C996BE03A7BA2CDC4E8EB2B86081FB7A /* REANode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REANode.m; sourceTree = ""; }; + C9B85E132A98984C63D3561D481812B6 /* BSG_KSCrashSentry_Signal.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSCrashSentry_Signal.c; sourceTree = ""; }; C9E37D0A7EF15030428AF98EAE0601B9 /* GDTCOREventTransformer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCOREventTransformer.h; path = GoogleDataTransport/GDTCORLibrary/Public/GDTCOREventTransformer.h; sourceTree = ""; }; - C9F5249E7488AC68C5C1BF0BC0810D36 /* react-native-appearance-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "react-native-appearance-dummy.m"; sourceTree = ""; }; - CA0BE73E7B2154150E2F4CEAB088D002 /* RCTShadowView+Internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RCTShadowView+Internal.h"; sourceTree = ""; }; - CA16BF55FDA9DBC46F00C4AF3230C6D5 /* BSG_KSCrashReportFilter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashReportFilter.h; sourceTree = ""; }; + CA067CF703D09999E06B5ABC63FE518D /* RCTComponent.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTComponent.h; sourceTree = ""; }; + CA1B7FEDA86A8D14935CADECB5540CBC /* DeviceUID.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = DeviceUID.m; path = ios/RNDeviceInfo/DeviceUID.m; sourceTree = ""; }; CA1BDA86D0A8653DBA14BB9384509296 /* FKUserDefaultsPlugin.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FKUserDefaultsPlugin.h; path = iOS/Plugins/FlipperKitUserDefaultsPlugin/FKUserDefaultsPlugin.h; sourceTree = ""; }; CA23BBA18B09DFADF204605037FA6989 /* HazptrRec.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = HazptrRec.h; path = folly/synchronization/HazptrRec.h; sourceTree = ""; }; + CA2BF4BBCDF6539C646099A203B17AD1 /* RCTSurfaceStage.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSurfaceStage.m; sourceTree = ""; }; CA3941A14A20F28719058AA8F389EEDC /* EventBaseThread.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EventBaseThread.h; path = folly/io/async/EventBaseThread.h; sourceTree = ""; }; - CA714758B676185C739362094E502FA4 /* RNImageCropPicker-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNImageCropPicker-prefix.pch"; sourceTree = ""; }; + CA52F3E3FE3237E33EED21A84E91E617 /* jsilib-windows.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = "jsilib-windows.cpp"; sourceTree = ""; }; + CA62B316E8E8936B1BFBB3C5CC0469FD /* RNFirebaseNotifications.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNFirebaseNotifications.m; sourceTree = ""; }; + CA654CC2D3556857A8BA944DF2C6E89C /* RNCommandsHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCommandsHandler.m; path = RNNotifications/RNCommandsHandler.m; sourceTree = ""; }; CA73F5963360C0AA13E2C4B6B8163309 /* Flipper-RSocket-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Flipper-RSocket-dummy.m"; sourceTree = ""; }; + CA77C74F4D176630CC28F40A8A678945 /* JsArgumentHelpers-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "JsArgumentHelpers-inl.h"; sourceTree = ""; }; + CA846BDE2EDE3F5DC81DBA1812FB3C9F /* BSGSerialization.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSGSerialization.h; sourceTree = ""; }; CA9B9A0F952298A17AEB73A87F18C7DA /* ExecutorWithPriority-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "ExecutorWithPriority-inl.h"; path = "folly/executors/ExecutorWithPriority-inl.h"; sourceTree = ""; }; CAA4AADB1DAB0DCA0397F9D410A72638 /* FIRInstallationsIIDTokenStore.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstallationsIIDTokenStore.h; path = FirebaseInstallations/Source/Library/IIDMigration/FIRInstallationsIIDTokenStore.h; sourceTree = ""; }; + CAA69E1BFFDBE31AAE6AB019733C887E /* UIImage+GIF.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIImage+GIF.h"; path = "SDWebImage/Core/UIImage+GIF.h"; sourceTree = ""; }; CAA843AAD8263F323CF147222124FAEE /* SingletonStackTrace.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = SingletonStackTrace.cpp; path = folly/detail/SingletonStackTrace.cpp; sourceTree = ""; }; CAAF2F5D82AACC7F5CFD8A399BF072DF /* Traits.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Traits.h; path = folly/Traits.h; sourceTree = ""; }; - CAAFE38A769152050B34DD379E1655FC /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; + CABA6F93F6472AC7B667512C26819F35 /* RCTDivisionAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTDivisionAnimatedNode.m; sourceTree = ""; }; CABFBEA32CA29594155D5329465B93FB /* Assume.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = Assume.cpp; path = folly/lang/Assume.cpp; sourceTree = ""; }; - CACF2B685B649906EB9892ADAC750941 /* RCTLinkingManager.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTLinkingManager.mm; sourceTree = ""; }; - CB0136873C962E55A307219684FD01DA /* RNGestureHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNGestureHandler.m; path = ios/RNGestureHandler.m; sourceTree = ""; }; + CB03EDF0C8DB3F9E7E92507D0CE264A3 /* RCTReconnectingWebSocket.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTReconnectingWebSocket.h; path = Libraries/WebSocket/RCTReconnectingWebSocket.h; sourceTree = ""; }; CB1D02E2B3AB38BE201FCABAAEF17446 /* Request.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = Request.cpp; path = folly/io/async/Request.cpp; sourceTree = ""; }; - CB247F3BE4B697A22587F15676F850EA /* RCTCxxBridgeDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTCxxBridgeDelegate.h; sourceTree = ""; }; - CB369CFCAECE6DD313C9B476C0BE97F6 /* RCTSafeAreaViewLocalData.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSafeAreaViewLocalData.h; sourceTree = ""; }; - CB37AA76C764D977AF9EA4B1FA538F9D /* EXDownloadDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXDownloadDelegate.h; path = EXFileSystem/EXDownloadDelegate.h; sourceTree = ""; }; - CB4578475007A74E070102107138CF00 /* REAConcatNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REAConcatNode.h; sourceTree = ""; }; + CB3B7AFBD07CC17642512E01958C226F /* RootView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RootView.h; path = ios/RootView.h; sourceTree = ""; }; CB53773BBF77C128A533EB2861B17953 /* TOCropToolbar.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = TOCropToolbar.m; path = "Objective-C/TOCropViewController/Views/TOCropToolbar.m"; sourceTree = ""; }; - CB60C8A4B544F593510DB187DC0A069B /* RNDeviceInfo-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNDeviceInfo-prefix.pch"; sourceTree = ""; }; CB74B18282B8339F5CAA7D7FE7101893 /* thread_utils.c */ = {isa = PBXFileReference; includeInIndex = 1; name = thread_utils.c; path = src/utils/thread_utils.c; sourceTree = ""; }; CB93992DBA1F6CEB65DEDA0CD40D6318 /* huffman_encode_utils.c */ = {isa = PBXFileReference; includeInIndex = 1; name = huffman_encode_utils.c; path = src/utils/huffman_encode_utils.c; sourceTree = ""; }; - CB96AF637F193EB9518FE01E94128B9C /* Color+Interpolation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Color+Interpolation.m"; sourceTree = ""; }; CBA203410526E873FD2BA6EA31CAC0CF /* RequestResponseResponder.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = RequestResponseResponder.cpp; path = rsocket/statemachine/RequestResponseResponder.cpp; sourceTree = ""; }; - CBAB0F47CDDDF4B890096A8A31547545 /* DeviceUID.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = DeviceUID.m; path = ios/RNDeviceInfo/DeviceUID.m; sourceTree = ""; }; - CBBC38F9624D3BDEC7BF597C25BABD18 /* ARTContainer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ARTContainer.h; path = ios/ARTContainer.h; sourceTree = ""; }; + CBA342BD99C5EDFE388B9A0EE09B9D1D /* RNBootSplash.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNBootSplash.m; path = ios/RNBootSplash.m; sourceTree = ""; }; + CBBDBC408FFFE7DC971C3C44329E3DB3 /* RCTBridgeDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBridgeDelegate.h; sourceTree = ""; }; + CBD405D8C22367F829A5AAC74B92B8AB /* RNCCameraRollManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCCameraRollManager.h; path = ios/RNCCameraRollManager.h; sourceTree = ""; }; CBDC3ABDE410DD0CCD5E9C1C8EF6BD1C /* GFlags.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GFlags.h; path = folly/portability/GFlags.h; sourceTree = ""; }; + CBE3F6150FEC3B7B1922FA9926E7EEEB /* SDDisplayLink.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDDisplayLink.h; path = SDWebImage/Private/SDDisplayLink.h; sourceTree = ""; }; CBEF13AC75AD67DF97B5EA50ED4DF5E5 /* FIRAppAssociationRegistration.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAppAssociationRegistration.h; path = FirebaseCore/Sources/Private/FIRAppAssociationRegistration.h; sourceTree = ""; }; + CC08FF1981C31A110913C70E1FDEEDFC /* experiments.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = experiments.cpp; sourceTree = ""; }; CC19DEFC6439BD6658EB9C08F118CBAD /* pl.lproj */ = {isa = PBXFileReference; includeInIndex = 1; name = pl.lproj; path = "Objective-C/TOCropViewController/Resources/pl.lproj"; sourceTree = ""; }; CC1E481741951845683239C4A7DA9CE3 /* FileUtil.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FileUtil.h; path = folly/FileUtil.h; sourceTree = ""; }; - CC268622DF95F0EB5FF95B5D1027B2AD /* RCTBaseTextInputShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBaseTextInputShadowView.h; sourceTree = ""; }; + CC2AA0F5BD26F0F491F2F094178E76CA /* RCTNativeAnimatedNodesManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTNativeAnimatedNodesManager.m; sourceTree = ""; }; CC35A5EC43692ECB5D2C1791683358DA /* CppAttributes.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CppAttributes.h; path = folly/CppAttributes.h; sourceTree = ""; }; CC685F7EE31C2D674B7F7C2FA09D3C1C /* Cursor.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = Cursor.cpp; path = folly/io/Cursor.cpp; sourceTree = ""; }; CC6FEE0F9ACB98303C87C35D1F1395CA /* cost_mips_dsp_r2.c */ = {isa = PBXFileReference; includeInIndex = 1; name = cost_mips_dsp_r2.c; path = src/dsp/cost_mips_dsp_r2.c; sourceTree = ""; }; - CC8B8994A39160475530121E7891B407 /* react-native-cameraroll.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "react-native-cameraroll.xcconfig"; sourceTree = ""; }; + CC7F9315E3352B0D9A7BBDE3D06FB105 /* RNCCameraRollManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCCameraRollManager.m; path = ios/RNCCameraRollManager.m; sourceTree = ""; }; CC8DACAEB11E7FF7CC1604A33EE5D54C /* RSocketClient.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = RSocketClient.cpp; path = rsocket/RSocketClient.cpp; sourceTree = ""; }; - CC8F9EEB184C73EAF0EDBFFB9A9448F2 /* YGEnums.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YGEnums.h; path = yoga/YGEnums.h; sourceTree = ""; }; - CC9296090CAECF07215252DE287A9C3A /* ARTPattern.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = ARTPattern.h; sourceTree = ""; }; + CC987FD1C9D20A946E34C5BFE332EE1A /* RCTTextTransform.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTTextTransform.h; path = Libraries/Text/RCTTextTransform.h; sourceTree = ""; }; + CCB5574E1F505CEF5791FC3C0A833AB1 /* RCTSurfaceRootView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSurfaceRootView.h; sourceTree = ""; }; CCBE188E6D63D2509FD75176889897BD /* bignum.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = bignum.h; path = "double-conversion/bignum.h"; sourceTree = ""; }; - CCD0F420A8164C8556D141806692A281 /* RCTSafeAreaViewLocalData.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSafeAreaViewLocalData.m; sourceTree = ""; }; CCD31D2478D8ED31D3995A308550CD8E /* Likely.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Likely.h; path = folly/Likely.h; sourceTree = ""; }; - CCF4D0A31596C7ACCD7B68399DBE7374 /* SDImageCacheConfig.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageCacheConfig.h; path = SDWebImage/Core/SDImageCacheConfig.h; sourceTree = ""; }; + CCF550282A5878C616CBF4F0FEA8C767 /* EXPermissions.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = EXPermissions.xcconfig; sourceTree = ""; }; CCFE30DC291A9D63B08F1394853162E3 /* DiscriminatedPtrDetail.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DiscriminatedPtrDetail.h; path = folly/detail/DiscriminatedPtrDetail.h; sourceTree = ""; }; CD130C92244E30DD5B03966D954ABBA4 /* OpenSSLPtrTypes.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = OpenSSLPtrTypes.h; path = folly/ssl/OpenSSLPtrTypes.h; sourceTree = ""; }; + CD29597D116D606D128EEE2B84D8A47E /* RCTStatusBarManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTStatusBarManager.h; path = React/CoreModules/RCTStatusBarManager.h; sourceTree = ""; }; CD35DEE35B20109018E8DAA45E5264E7 /* Conv.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = Conv.cpp; path = folly/Conv.cpp; sourceTree = ""; }; + CD36A2444D394C81C2B2E9BF0521B699 /* notificationsEvents.md */ = {isa = PBXFileReference; includeInIndex = 1; name = notificationsEvents.md; path = docs/notificationsEvents.md; sourceTree = ""; }; + CD37982FBCA468722CE773FF5F5A4F79 /* RNNotificationUtils.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNNotificationUtils.m; path = RNNotifications/RNNotificationUtils.m; sourceTree = ""; }; CD451FAF7D1425FB8F7DC7D6C1EB7DE6 /* dsp.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = dsp.h; path = src/dsp/dsp.h; sourceTree = ""; }; - CD54189EB54FEDC36E9CEB99FAE74F47 /* RNLocalize.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RNLocalize.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + CD4A0028E5BBD4F2C7395135B4E845FE /* RCTNullability.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTNullability.h; sourceTree = ""; }; + CD5401A19DD3DC1B730BFBBC7E0F3137 /* UMCore.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = UMCore.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + CD54C3D7CD1A3A72DE3FF2EC8508F68C /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; CD62D51A9B5534C7BFE6863D088B08FC /* Common.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = Common.cpp; path = rsocket/internal/Common.cpp; sourceTree = ""; }; CD69B1BA273ECED47476DB724711B422 /* FIRHeartbeatInfo.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRHeartbeatInfo.m; path = FirebaseCore/Sources/FIRHeartbeatInfo.m; sourceTree = ""; }; - CD70D2AA3F9709DFA32D80C23A668901 /* BugsnagCrashSentry.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagCrashSentry.m; sourceTree = ""; }; + CD727DB3448D14B384860C6235420DD0 /* RCTFPSGraph.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTFPSGraph.m; sourceTree = ""; }; + CD7654D56F1B46D5C7FB152669A5DE9B /* RNFirebaseStorage.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNFirebaseStorage.m; sourceTree = ""; }; + CD7A37ACAA26355BA694F50A7739DE39 /* SDWebImageDefine.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageDefine.h; path = SDWebImage/Core/SDWebImageDefine.h; sourceTree = ""; }; CD8946FED6F5245C8C8B92D24FE2EDCF /* Framer.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = Framer.cpp; path = rsocket/framing/Framer.cpp; sourceTree = ""; }; - CD89CF5BA6AB187F237B8A20B4CFA470 /* UMAppLoader.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMAppLoader.xcconfig; sourceTree = ""; }; + CD96AC991B3CE727227BB3420D9CD294 /* CoreModulesPlugins.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CoreModulesPlugins.h; path = React/CoreModules/CoreModulesPlugins.h; sourceTree = ""; }; CD9B56B3AE03BAFCDD4CC21C2991FF4D /* pb_common.c */ = {isa = PBXFileReference; includeInIndex = 1; path = pb_common.c; sourceTree = ""; }; - CDBD8119ABE1F1E9D8EC59A46B8188D7 /* experiments.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = experiments.h; sourceTree = ""; }; - CDC6EBF6C7FAA54E8C3C87677CF4A20B /* RCTSinglelineTextInputView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSinglelineTextInputView.m; sourceTree = ""; }; - CDD98338FF52785F209DFBB76641F9F9 /* REABlockNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REABlockNode.m; sourceTree = ""; }; - CDE35C2B2F1E4560292F5C3E61E299BD /* RCTSafeAreaShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSafeAreaShadowView.m; sourceTree = ""; }; + CDB0674E4606FBF4E6A0A200A6374982 /* EXFileSystem.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXFileSystem.h; path = EXFileSystem/EXFileSystem.h; sourceTree = ""; }; CDFF1BCD3977B0B17731B5CBD3F6C5E1 /* SharedPromise.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SharedPromise.h; path = folly/futures/SharedPromise.h; sourceTree = ""; }; - CE60317C58AFC60DCD0B604500EE9586 /* SDImageLoader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageLoader.h; path = SDWebImage/Core/SDImageLoader.h; sourceTree = ""; }; - CE6120ADA01F94B73B9EC7AB04DE0BE4 /* RCTImageShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageShadowView.h; path = Libraries/Image/RCTImageShadowView.h; sourceTree = ""; }; - CE77A43CB054B9B1F4219449FA68BD3D /* ARTLinearGradient.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = ARTLinearGradient.m; sourceTree = ""; }; - CE82D196E79A1F0F729CFA3631A98AF1 /* RCTScrollViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTScrollViewManager.h; sourceTree = ""; }; + CE2D5D4ED26C35F734EA94744CEF59DA /* RCTCxxConvert.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTCxxConvert.h; sourceTree = ""; }; + CE48061473F85F3DAA2E0178E25628F9 /* React-CoreModules-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-CoreModules-prefix.pch"; sourceTree = ""; }; + CE5D5C6FCCCC0DEA7E9C7F3B7EDEED30 /* UMModuleRegistry.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMModuleRegistry.h; sourceTree = ""; }; + CE65D3405BF3F41EC63FEEE3E30E77B2 /* installation.md */ = {isa = PBXFileReference; includeInIndex = 1; name = installation.md; path = docs/installation.md; sourceTree = ""; }; CE89012333BC726EDF5F257C32C6E23C /* SSLOptions.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SSLOptions.h; path = folly/io/async/SSLOptions.h; sourceTree = ""; }; - CEAB7B1C6528C25F32EC288834418C84 /* KeyCommands.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = KeyCommands.xcconfig; sourceTree = ""; }; + CEB0D77A507A7BC67665B0AE8F76407E /* RNFirebaseStorage.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNFirebaseStorage.h; sourceTree = ""; }; CEB8AEED78C1A8EDC8CE62AB73EBFCB9 /* FormatTraits.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FormatTraits.h; path = folly/FormatTraits.h; sourceTree = ""; }; + CEC6348DCFA0BE73C82999BF9D2BF3D8 /* ResourceBundle-QBImagePicker-RNImageCropPicker-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "ResourceBundle-QBImagePicker-RNImageCropPicker-Info.plist"; sourceTree = ""; }; + CF060C36B53596B60E63A4C08A05728B /* EXAV.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = EXAV.xcconfig; sourceTree = ""; }; + CF24F12DAB81E975DC3CDA46DA641907 /* ARTSurfaceView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = ARTSurfaceView.m; path = ios/ARTSurfaceView.m; sourceTree = ""; }; + CF3FD070471CF5A9316F47805256A4F6 /* BugsnagHandledState.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagHandledState.m; sourceTree = ""; }; CF4795D41510A5087986EB85A78E93A9 /* Allowance.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Allowance.h; path = rsocket/internal/Allowance.h; sourceTree = ""; }; CF4E34DDFF9D97702ED9739067447CC8 /* FingerprintPolynomial.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FingerprintPolynomial.h; path = folly/detail/FingerprintPolynomial.h; sourceTree = ""; }; - CF6E7C96EC29BA645245BB12B05D8BBD /* EXUserNotificationPermissionRequester.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = EXUserNotificationPermissionRequester.h; sourceTree = ""; }; CF73B714894B60C06E72E372750D3331 /* OpenSSLVersionFinder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = OpenSSLVersionFinder.h; path = folly/ssl/OpenSSLVersionFinder.h; sourceTree = ""; }; + CF90071C78D7A98508E84FBAF8B6A50A /* RCTMessageThread.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTMessageThread.h; sourceTree = ""; }; CF92919B59F5604713F163B30ACF5A7F /* libwebp-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "libwebp-dummy.m"; sourceTree = ""; }; CFA0A7F0958E5927766B69BC0F318661 /* SKViewDescriptor.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = SKViewDescriptor.mm; path = iOS/Plugins/FlipperKitLayoutPlugin/FlipperKitLayoutPlugin/descriptors/SKViewDescriptor.mm; sourceTree = ""; }; - CFA2603FABAEAAB495CB1DA0BB90CBF2 /* RNGestureHandlerState.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNGestureHandlerState.h; path = ios/RNGestureHandlerState.h; sourceTree = ""; }; CFB3FCA2C67521AB182CFE9EFF633396 /* picture_enc.c */ = {isa = PBXFileReference; includeInIndex = 1; name = picture_enc.c; path = src/enc/picture_enc.c; sourceTree = ""; }; CFB58441CA996147D98F64EF8DD1482E /* F14Mask.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = F14Mask.h; path = folly/container/detail/F14Mask.h; sourceTree = ""; }; - CFBC723AEB7D761951B2444283230789 /* REAJSCallNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REAJSCallNode.m; sourceTree = ""; }; CFBE33C6DE3AED52E50119C3A4223A23 /* YGLayout+Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "YGLayout+Private.h"; path = "YogaKit/Source/YGLayout+Private.h"; sourceTree = ""; }; - CFC9523B63CD897F2AB2DCE4C52B265E /* EXWebBrowser.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXWebBrowser.h; path = EXWebBrowser/EXWebBrowser.h; sourceTree = ""; }; - CFDE95EB166389A17BCDB994E0C3BE14 /* ARTShapeManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = ARTShapeManager.m; sourceTree = ""; }; - CFE7BFE58F1EC912851ACA188960FAA9 /* UMPermissionsInterface-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "UMPermissionsInterface-dummy.m"; sourceTree = ""; }; - CFEFBEA04FA99AD9C4C0CCF8E7EC85FF /* RCTAnimationUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTAnimationUtils.h; path = Libraries/NativeAnimation/RCTAnimationUtils.h; sourceTree = ""; }; - CFF32CC3D0FB184C73F3C51E065F5D86 /* RCTKeyCommands.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTKeyCommands.h; sourceTree = ""; }; + CFC26328D166090CEF5A8AD3B96BF4B6 /* REAParamNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REAParamNode.h; sourceTree = ""; }; + CFDE3CE6B14F32CB5B666D96795FCD7A /* BugsnagReactNative.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = BugsnagReactNative.xcconfig; sourceTree = ""; }; + CFE14123E8388B7836BBD9604DD84E98 /* BSG_KSCrashCallCompletion.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BSG_KSCrashCallCompletion.m; sourceTree = ""; }; D0015689AC1ACED5608C4686630747EC /* GDTCORRegistrar.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCORRegistrar.h; path = GoogleDataTransport/GDTCORLibrary/Public/GDTCORRegistrar.h; sourceTree = ""; }; + D00754C442A7521A277AED36CF599A9A /* YGLayout.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = YGLayout.cpp; path = yoga/YGLayout.cpp; sourceTree = ""; }; D02D05DFF66D5FB7319CA280942F9426 /* RSocketResponder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RSocketResponder.h; path = rsocket/RSocketResponder.h; sourceTree = ""; }; - D032D6FEA72FCE92B1AC6AAF34468012 /* BSG_KSMach.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSMach.c; sourceTree = ""; }; D03B39B6700DD31B3083BB12D6064E63 /* Uri-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "Uri-inl.h"; path = "folly/Uri-inl.h"; sourceTree = ""; }; + D047F15DED537FA1AF41E4476B46447E /* RCTConvert+FFFastImage.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "RCTConvert+FFFastImage.h"; path = "ios/FastImage/RCTConvert+FFFastImage.h"; sourceTree = ""; }; D0494757B3C1C765F02ABA217A56E0DF /* F14Set-fwd.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "F14Set-fwd.h"; path = "folly/container/F14Set-fwd.h"; sourceTree = ""; }; D05179FA4AE4D78D8729A6771C06FE31 /* TOActivityCroppedImageProvider.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = TOActivityCroppedImageProvider.m; path = "Objective-C/TOCropViewController/Models/TOActivityCroppedImageProvider.m"; sourceTree = ""; }; D0788E90FE9CCC58D3C63AF5F144EE74 /* FIRErrors.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRErrors.h; path = FirebaseCore/Sources/Private/FIRErrors.h; sourceTree = ""; }; - D0AB169A9A57CF2E1200E72299D75C26 /* RNUserDefaults.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNUserDefaults.xcconfig; sourceTree = ""; }; + D089407D7DCF62F19DBF6CC111610FD4 /* RNLocalize.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNLocalize.xcconfig; sourceTree = ""; }; + D091D700F24941E07A35B24C3426446B /* EXWebBrowser.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXWebBrowser.m; path = EXWebBrowser/EXWebBrowser.m; sourceTree = ""; }; + D0A3C68B487A7AA617560F9733EB33FE /* RCTComponentEvent.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTComponentEvent.h; sourceTree = ""; }; + D0B6D98F368CB8B0BBCB008A32C54D43 /* react-native-webview.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = "react-native-webview.podspec"; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; D0BB7E5B597F81C13326CDB06D9B74C7 /* pt-BR.lproj */ = {isa = PBXFileReference; includeInIndex = 1; name = "pt-BR.lproj"; path = "Objective-C/TOCropViewController/Resources/pt-BR.lproj"; sourceTree = ""; }; D0C2BF3F5C45A731E60EC8AFB9F98F12 /* Sse.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = Sse.cpp; path = folly/detail/Sse.cpp; sourceTree = ""; }; - D0D3A712CE905DA36F783872BBCC9C90 /* UIView+Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "UIView+Private.h"; sourceTree = ""; }; + D0E69AABAF3D5E8170782606595C686C /* YGStyle.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = YGStyle.cpp; path = yoga/YGStyle.cpp; sourceTree = ""; }; D0E746D98ECFB576C1CDE133CDE4A748 /* FIRInstallationsStoredAuthToken.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstallationsStoredAuthToken.m; path = FirebaseInstallations/Source/Library/InstallationsStore/FIRInstallationsStoredAuthToken.m; sourceTree = ""; }; - D10621A800B7B97AA6F5E01BCDFACEA6 /* YGFloatOptional.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YGFloatOptional.h; path = yoga/YGFloatOptional.h; sourceTree = ""; }; + D0FFC0CFDACFBB27D8CD29CD96BB83D6 /* BSG_KSCrash.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BSG_KSCrash.m; sourceTree = ""; }; D11D6FBDB64F3E56C9FBE59F31698518 /* Async.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Async.h; path = folly/executors/Async.h; sourceTree = ""; }; + D14357FAA97904A82A822AF6ADDE9B66 /* FFFastImageSource.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FFFastImageSource.h; path = ios/FastImage/FFFastImageSource.h; sourceTree = ""; }; D14DC96327A1C1B943C69538D8D33BF1 /* Future.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Future.h; path = folly/futures/Future.h; sourceTree = ""; }; D155128010AF261FE95DC95C89602D5C /* ParallelMap-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "ParallelMap-inl.h"; path = "folly/gen/ParallelMap-inl.h"; sourceTree = ""; }; - D16CF1F5F589134A5AD03CAAF6FF4E3A /* RCTImageView.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTImageView.mm; sourceTree = ""; }; D175DEB9DCB303F9ECF104A3CCA72AE1 /* fixed-dtoa.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = "fixed-dtoa.cc"; path = "double-conversion/fixed-dtoa.cc"; sourceTree = ""; }; - D18F95E7F3C8C615CDFB0C61CE2BA37D /* RCTEventAnimation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTEventAnimation.h; sourceTree = ""; }; - D194CD066A6620297A9ABEF104160B18 /* REAPropsNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REAPropsNode.m; sourceTree = ""; }; - D1C1E335ECAE091937087AEF551B8518 /* RCTReloadCommand.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTReloadCommand.m; sourceTree = ""; }; + D1799F590A945B2052C32F94A995465E /* JSIDynamic.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = JSIDynamic.cpp; sourceTree = ""; }; D1D081B8E8C632A44F45A426E3345E74 /* EmitterFlowable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EmitterFlowable.h; path = yarpl/flowable/EmitterFlowable.h; sourceTree = ""; }; - D1D70E1B0FB4018A3A748137894CFA0F /* RCTScrollContentView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTScrollContentView.m; sourceTree = ""; }; - D1DA016AD9C4ABE9530E299EE9495FD8 /* SDWebImagePrefetcher.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImagePrefetcher.h; path = SDWebImage/Core/SDWebImagePrefetcher.h; sourceTree = ""; }; D1DCA9A13E7EA96FDE59AB8F6D79ABA3 /* CLSAttributes.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CLSAttributes.h; path = iOS/Crashlytics.framework/Headers/CLSAttributes.h; sourceTree = ""; }; D1E401A3FE7BA4435A1FE2ADDAD115B6 /* Parallel.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Parallel.h; path = folly/gen/Parallel.h; sourceTree = ""; }; - D20E73799E6FA24169DD964E9C5688F4 /* SDImageCoderHelper.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageCoderHelper.m; path = SDWebImage/Core/SDImageCoderHelper.m; sourceTree = ""; }; - D2153814AB3E52F623233D1B9A1C5DF7 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; + D217CFE89B9E5B40B749EA8A663694A2 /* RCTMultilineTextInputViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTMultilineTextInputViewManager.h; sourceTree = ""; }; + D21E40951541B2F0CF302EFA694C14E4 /* React-jsiexecutor-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-jsiexecutor-prefix.pch"; sourceTree = ""; }; D225FDC6130767EEC967DD4409EA7219 /* TcpConnectionFactory.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = TcpConnectionFactory.cpp; path = rsocket/transports/tcp/TcpConnectionFactory.cpp; sourceTree = ""; }; - D24D871466449AFC51109827456C4216 /* EXConstants.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = EXConstants.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - D2546F5A27DAACFE9A10A9538869FCFD /* REATransitionValues.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REATransitionValues.m; sourceTree = ""; }; - D25D1E1BBC70B6001EA6BA3DC4F722CA /* RNUserDefaults-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNUserDefaults-dummy.m"; sourceTree = ""; }; + D2331A3DB4A7F7F2EA09871F7949E3B5 /* READebugNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = READebugNode.m; sourceTree = ""; }; + D250F0883792162B480F14F15C08D081 /* RCTStyleAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTStyleAnimatedNode.h; sourceTree = ""; }; D262E98E9B660146EE69681B508C5A32 /* FBLPromise+Recover.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FBLPromise+Recover.h"; path = "Sources/FBLPromises/include/FBLPromise+Recover.h"; sourceTree = ""; }; + D274AB23ADE37587DD0CFD72700BE333 /* RCTScrollEvent.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTScrollEvent.h; sourceTree = ""; }; + D27E76B79A0C3F8EAEFA9DCDDBCEC5B1 /* MessageQueueThreadCallInvoker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MessageQueueThreadCallInvoker.h; path = callinvoker/ReactCommon/MessageQueueThreadCallInvoker.h; sourceTree = ""; }; D281DAF4DC50DA1C18025F627BAF319D /* ResumeManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ResumeManager.h; path = rsocket/ResumeManager.h; sourceTree = ""; }; + D28D8C010541734A827ADDA48F4D69B5 /* SDWebImageIndicator.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWebImageIndicator.m; path = SDWebImage/Core/SDWebImageIndicator.m; sourceTree = ""; }; D2A120CA34815BB3A1C46C26AA00E5BC /* upsampling_msa.c */ = {isa = PBXFileReference; includeInIndex = 1; name = upsampling_msa.c; path = src/dsp/upsampling_msa.c; sourceTree = ""; }; - D2B198303EEB7951EA6825BD8F0F5C7C /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; D2D404CA10C2CEAD6387E107DD9E948C /* 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 = ""; }; - D356A7A9F6E88F519F68C48AC58E7029 /* react-native-notifications.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = "react-native-notifications.podspec"; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - D35AA32383740911279CBEFB0A7CED01 /* SDAnimatedImageView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDAnimatedImageView.m; path = SDWebImage/Core/SDAnimatedImageView.m; sourceTree = ""; }; - D388AAA7C7F5EDA01A9A47721D674723 /* RCTWebSocketModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTWebSocketModule.h; path = React/CoreModules/RCTWebSocketModule.h; sourceTree = ""; }; + D30A41CBCCBACA94DBCC8F15ABC8BECA /* RCTSurfaceSizeMeasureMode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSurfaceSizeMeasureMode.h; sourceTree = ""; }; + D32A6891FB41D3CC2908430B13AB1EFE /* RCTAppearance.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTAppearance.mm; sourceTree = ""; }; + D3691543AE2B2E485F506D4E3B618754 /* rn-extensions-share.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "rn-extensions-share.xcconfig"; sourceTree = ""; }; + D375CA24D8AFEFF449ED6D802DAB7D1C /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; + D3780A9E809F0C5A16D713F2E0F0ECB2 /* log.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = log.cpp; path = yoga/log.cpp; sourceTree = ""; }; D3B758A31DB1B688B14C39079DD67BE6 /* FBLPromise+Do.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "FBLPromise+Do.m"; path = "Sources/FBLPromises/FBLPromise+Do.m"; sourceTree = ""; }; + D3BEC03FCF87F6FC2773903FD5DA652A /* api.md */ = {isa = PBXFileReference; includeInIndex = 1; name = api.md; path = docs/api.md; sourceTree = ""; }; D3BF8E7BE4C441AA3E3539BE285C0A7F /* FlipperClient.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = FlipperClient.cpp; path = xplat/Flipper/FlipperClient.cpp; sourceTree = ""; }; D3C35135DABCBA394FBD2D197842A07A /* TimerFD.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TimerFD.h; path = folly/experimental/TimerFD.h; sourceTree = ""; }; D3C9CA86A9E13737F97618EBACC89C2E /* dec_clip_tables.c */ = {isa = PBXFileReference; includeInIndex = 1; name = dec_clip_tables.c; path = src/dsp/dec_clip_tables.c; sourceTree = ""; }; D3D5F57863D6E4968D27A62227156915 /* UninitializedMemoryHacks.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UninitializedMemoryHacks.h; path = folly/memory/UninitializedMemoryHacks.h; sourceTree = ""; }; - D3E09970D79DFEC086D95A80EEF6D680 /* event.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = event.cpp; sourceTree = ""; }; - D3F91A5AC125245092B53FBCC0CFA84F /* REAOperatorNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REAOperatorNode.m; sourceTree = ""; }; - D406E3712049C5BE639C6990990E7FEF /* REATransition.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REATransition.m; sourceTree = ""; }; - D40BCDA9810F056BB68B0CE6A9A38580 /* RCTInputAccessoryShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTInputAccessoryShadowView.m; sourceTree = ""; }; - D41D779CF58921FD4B98EDD73A15EF24 /* REANode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REANode.h; sourceTree = ""; }; - D43403F0933FFC1A5067920E9A1085A0 /* RCTScrollContentShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTScrollContentShadowView.m; sourceTree = ""; }; - D442A7464ADD235A918A775E8F1FE747 /* RNEventEmitter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNEventEmitter.m; path = RNNotifications/RNEventEmitter.m; sourceTree = ""; }; + D400D934A2849471466218B8F60D46C6 /* RNGestureHandlerEvents.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNGestureHandlerEvents.m; path = ios/RNGestureHandlerEvents.m; sourceTree = ""; }; + D411AA4649BB99BC6B74804C19F46E1E /* RNCSafeAreaView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCSafeAreaView.h; path = ios/SafeAreaView/RNCSafeAreaView.h; sourceTree = ""; }; + D420AE4BA9B45717CC7950B4CC063655 /* RNCSafeAreaShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCSafeAreaShadowView.h; path = ios/SafeAreaView/RNCSafeAreaShadowView.h; sourceTree = ""; }; D4647D7862AFDBDD9D0EC8025146828B /* GDTCORClock.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GDTCORClock.m; path = GoogleDataTransport/GDTCORLibrary/GDTCORClock.m; sourceTree = ""; }; - D464809C3C3854D1F9775A805FC36A2C /* RCTMacros.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTMacros.h; sourceTree = ""; }; - D466A4F271A3AC7DCC2FF8D781077753 /* CxxModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = CxxModule.h; sourceTree = ""; }; - D47EB0EB7BBF5533FCDA0908164CB63F /* REATransitionManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REATransitionManager.h; sourceTree = ""; }; - D4991175000D7060B41FF0388F84CD7B /* jsilib-posix.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = "jsilib-posix.cpp"; sourceTree = ""; }; - D4A7990730C79B33E94B1BD3679B751B /* RCTImagePlugins.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTImagePlugins.mm; sourceTree = ""; }; + D4A296B853DFB8F6B64BDE0E876B6D03 /* EXAV.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = EXAV.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; D4F0F8AE60A7F903304667D6C24687EF /* RValueReferenceWrapper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RValueReferenceWrapper.h; path = folly/lang/RValueReferenceWrapper.h; sourceTree = ""; }; D4F46B602F0430A1FBBB1734A3404C7F /* hu.lproj */ = {isa = PBXFileReference; includeInIndex = 1; name = hu.lproj; path = "Objective-C/TOCropViewController/Resources/hu.lproj"; sourceTree = ""; }; + D501F2EDE2698FD9A2CF24928AB10B2D /* RNGestureHandlerManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNGestureHandlerManager.m; path = ios/RNGestureHandlerManager.m; sourceTree = ""; }; + D50AD6DD2BE7BFED97EE7DC57A82A819 /* RNReanimated.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNReanimated.xcconfig; sourceTree = ""; }; D50F4782B72EB86BC5530080AB5E192C /* CheckedMath.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CheckedMath.h; path = folly/lang/CheckedMath.h; sourceTree = ""; }; + D51449D4A44F7D5B052ACFB57D074E72 /* RCTUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTUtils.h; sourceTree = ""; }; D51AA8328DE651178A701B6506F9169F /* FLEXUtility.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = FLEXUtility.mm; path = iOS/Plugins/FlipperKitNetworkPlugin/SKIOSNetworkPlugin/FLEXNetworkLib/FLEXUtility.mm; sourceTree = ""; }; - D539CB3FCDAB4B52C26A6288C51EFEC0 /* EXKeepAwake.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = EXKeepAwake.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + D55A9BEA525ECC99503941E43AD92B6E /* REAConcatNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REAConcatNode.m; sourceTree = ""; }; D57A8C137F69CDB10C4A5FF42A17582D /* OpenSSLCertUtils.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = OpenSSLCertUtils.cpp; path = folly/ssl/OpenSSLCertUtils.cpp; sourceTree = ""; }; - D5A70010BFF9BA939B57367CD2398C01 /* es.lproj */ = {isa = PBXFileReference; includeInIndex = 1; name = es.lproj; path = ios/QBImagePicker/QBImagePicker/es.lproj; sourceTree = ""; }; - D5B352B7AC0F23E844B39268237DF74C /* InspectorInterfaces.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = InspectorInterfaces.h; sourceTree = ""; }; D5C22CF5859E6E41DFE710CAB7666427 /* SKInvalidation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SKInvalidation.m; path = iOS/Plugins/FlipperKitLayoutPlugin/FlipperKitLayoutPlugin/SKInvalidation.m; sourceTree = ""; }; D5C775614AC76D44CECB6BE08B022F1F /* libReactCommon.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libReactCommon.a; path = libReactCommon.a; sourceTree = BUILT_PRODUCTS_DIR; }; D5F7BCB867E244067BE6D14F9FAFFAB1 /* FlipperConnectionManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FlipperConnectionManager.h; path = xplat/Flipper/FlipperConnectionManager.h; sourceTree = ""; }; D6085E200587F025BD81BAAE6C3A3232 /* EliasFanoCoding.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EliasFanoCoding.h; path = folly/experimental/EliasFanoCoding.h; sourceTree = ""; }; + D60CCBE897105F696DBA18045F670001 /* REAClockNodes.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REAClockNodes.m; sourceTree = ""; }; D6140545D0573445615FC901A037C5C0 /* srp.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = srp.h; path = ios/include/openssl/srp.h; sourceTree = ""; }; D6144B6738B0D9368281C946956BD2E3 /* TOCropOverlayView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = TOCropOverlayView.m; path = "Objective-C/TOCropViewController/Views/TOCropOverlayView.m"; sourceTree = ""; }; D633C6BF035437D71F6FB57994AC25E7 /* FlipperStateUpdateListener.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FlipperStateUpdateListener.h; path = iOS/FlipperKit/FlipperStateUpdateListener.h; sourceTree = ""; }; + D638F221E3CE34933AF13D4EA28C170A /* RCTBundleURLProvider.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBundleURLProvider.h; sourceTree = ""; }; D647297D553EC57B4A4D190486B9EE5E /* BlockingQueue.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = BlockingQueue.h; path = folly/executors/task_queue/BlockingQueue.h; sourceTree = ""; }; - D65D4E79DCD9838F91437CD602771ADD /* SDImageCodersManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageCodersManager.m; path = SDWebImage/Core/SDImageCodersManager.m; sourceTree = ""; }; - D66BC7D0B852BE873C1CC9FC4836A3F7 /* RCTMultilineTextInputViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTMultilineTextInputViewManager.m; sourceTree = ""; }; - D66CC6911658BDC0840E34D562559037 /* RNReanimated.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RNReanimated.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - D674B7043399AE923A8080EB3E0DD7B3 /* RCTBackedTextInputViewProtocol.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBackedTextInputViewProtocol.h; sourceTree = ""; }; + D659810DBF3098763A0330404C481861 /* CxxNativeModule.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = CxxNativeModule.cpp; sourceTree = ""; }; + D68C945A45AF0954542789114D907B4C /* RNFetchBlob.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNFetchBlob.h; sourceTree = ""; }; D6900D86A4145822B97D5B8BE8BC3265 /* DynamicBoundedQueue.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DynamicBoundedQueue.h; path = folly/concurrency/DynamicBoundedQueue.h; sourceTree = ""; }; - D6A54E68A069603C40EB24A3073DD1FA /* RCTKeyCommandConstants.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCTKeyCommandConstants.m; path = ios/KeyCommands/RCTKeyCommandConstants.m; sourceTree = ""; }; + D69C504BE239B2F7184FE45A1300E08C /* UIView+WebCacheOperation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIView+WebCacheOperation.m"; path = "SDWebImage/Core/UIView+WebCacheOperation.m"; sourceTree = ""; }; + D6AC4D5AA1573AA2CACAE01DD556EA8C /* UMFontProcessorInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMFontProcessorInterface.h; path = UMFontInterface/UMFontProcessorInterface.h; sourceTree = ""; }; D6B54BC0573F5256560D14D4C6B500A4 /* MoveWrapper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MoveWrapper.h; path = folly/MoveWrapper.h; sourceTree = ""; }; - D6C4E57C2A32AB291E71C5C57F0003C6 /* RCTInvalidating.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTInvalidating.h; sourceTree = ""; }; + D6C8C121D48F259FEB693D05B24AF852 /* RCTRefreshControlManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTRefreshControlManager.m; sourceTree = ""; }; D6CBA639BC0A106017274FB55FAA013A /* quant_levels_utils.c */ = {isa = PBXFileReference; includeInIndex = 1; name = quant_levels_utils.c; path = src/utils/quant_levels_utils.c; sourceTree = ""; }; - D6E511CDA073D7085B98A69C0BF9E92B /* BitUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = BitUtils.h; path = yoga/BitUtils.h; sourceTree = ""; }; D6E76BD34BD133654C1DF2A26282C0FF /* JitsiMeetSDK.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = JitsiMeetSDK.xcconfig; sourceTree = ""; }; D6EEC3EE71DE1B866B0F12A7B9BA3943 /* QueuedImmediateExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = QueuedImmediateExecutor.h; path = folly/executors/QueuedImmediateExecutor.h; sourceTree = ""; }; - D6F3946CB852E1E2D18BE5EB7F732CB5 /* UMModuleRegistryHolderReactModule.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = UMModuleRegistryHolderReactModule.m; sourceTree = ""; }; D6F878FA8C5D2A52CCFE1BE0A4E05FAE /* GoogleUtilities.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = GoogleUtilities.xcconfig; sourceTree = ""; }; + D6F9CB4C309F68636C64074C5475CB51 /* RNCSafeAreaProviderManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCSafeAreaProviderManager.h; path = ios/SafeAreaView/RNCSafeAreaProviderManager.h; sourceTree = ""; }; D70D9EBB5B766C22C2364940119C9F1B /* Pods-RocketChatRN-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Pods-RocketChatRN-umbrella.h"; sourceTree = ""; }; + D71EB1CADF7D1CAB6C7B0E5E74DA1196 /* SDWebImageTransition.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWebImageTransition.m; path = SDWebImage/Core/SDWebImageTransition.m; sourceTree = ""; }; D726DC19455D2E4EFCD7FE942BA02580 /* Types.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Types.h; path = folly/futures/detail/Types.h; sourceTree = ""; }; - D7603F1BAF85E5C25B87E41D2D5AC5D1 /* SDImageLoadersManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageLoadersManager.h; path = SDWebImage/Core/SDImageLoadersManager.h; sourceTree = ""; }; + D7339345B900ED086E872BD9031F64BE /* ARTSurfaceViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = ARTSurfaceViewManager.m; sourceTree = ""; }; + D76E5D4D40B091BE48E35504FC2F21AB /* RCTUITextField.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTUITextField.m; sourceTree = ""; }; + D77BAC0E8E8AE4F49A6DF5729DECB2CC /* RCTKeyCommandsManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCTKeyCommandsManager.m; path = ios/KeyCommands/RCTKeyCommandsManager.m; sourceTree = ""; }; D77E534BE1CD173935AFB52C39C8707E /* RSocketConnectionEvents.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RSocketConnectionEvents.h; path = rsocket/RSocketConnectionEvents.h; sourceTree = ""; }; D7971971246FE9195A5102CBE10BCDA3 /* lossless_enc_mips32.c */ = {isa = PBXFileReference; includeInIndex = 1; name = lossless_enc_mips32.c; path = src/dsp/lossless_enc_mips32.c; sourceTree = ""; }; D7ACEA4E132D42CE98697B34DC036A3F /* SDWebImageWebPCoder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageWebPCoder.h; path = SDWebImageWebPCoder/Module/SDWebImageWebPCoder.h; sourceTree = ""; }; D7C3F73B76E40B5F99E8BBE01A0F88FD /* Flipper-PeerTalk-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Flipper-PeerTalk-prefix.pch"; sourceTree = ""; }; + D7C680AD9FBB4FA05BB74919D14AF39D /* RCTPropsAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTPropsAnimatedNode.m; sourceTree = ""; }; D7ECAAE8A2CCA4ADE5B901E16909C5E4 /* Pods-ShareRocketChatRN.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = "Pods-ShareRocketChatRN.modulemap"; sourceTree = ""; }; D7FF45630AF1D4E6C1BBF01347A7435C /* FKPortForwardingServer.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FKPortForwardingServer.m; path = iOS/FlipperKit/FKPortForwarding/FKPortForwardingServer.m; sourceTree = ""; }; D80B707F80D383336E128EF112233BA6 /* UnboundedBlockingQueue.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UnboundedBlockingQueue.h; path = folly/executors/task_queue/UnboundedBlockingQueue.h; sourceTree = ""; }; D81C2D6AAB73DE4B91831859669C32E4 /* Libgen.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = Libgen.cpp; path = folly/portability/Libgen.cpp; sourceTree = ""; }; - D81CAB99456950B46A500274DF8DBFAF /* RNNotificationsStore.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNNotificationsStore.h; path = RNNotifications/RNNotificationsStore.h; sourceTree = ""; }; - D82087B9CDF9C978097ED1884BCFEBF5 /* UMReactNativeAdapter-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "UMReactNativeAdapter-prefix.pch"; sourceTree = ""; }; D83A0EF7A0565FE92CFDCBD14BB075BE /* AtomicReadMostlyMainPtr.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AtomicReadMostlyMainPtr.h; path = folly/experimental/AtomicReadMostlyMainPtr.h; sourceTree = ""; }; - D83CB939607381669FBAA5BC805FFD91 /* RCTModalManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTModalManager.h; sourceTree = ""; }; - D85ACF279A6EAE02EC6B4ABCFF66207E /* RNVectorIcons-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNVectorIcons-prefix.pch"; sourceTree = ""; }; D866E5075429812D8968F4684E582C69 /* opensslconf-armv7.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "opensslconf-armv7.h"; path = "ios/include/openssl/opensslconf-armv7.h"; sourceTree = ""; }; D887C9588B3363B0692499FB3E771513 /* GDTCCTUploader.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GDTCCTUploader.m; path = GoogleDataTransportCCTSupport/GDTCCTLibrary/GDTCCTUploader.m; sourceTree = ""; }; - D88A67B31EF4DDFDB2555341940D783D /* RCTPlatform.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTPlatform.mm; sourceTree = ""; }; D8B731924D7E9A3A0E303495DAB9B40A /* Instructions.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Instructions.h; path = folly/experimental/Instructions.h; sourceTree = ""; }; - D8C74FA13B259036623D80DFFD327CA9 /* Utils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Utils.h; path = yoga/Utils.h; sourceTree = ""; }; D8CF38A9D65D586F07E4D1801E49DEF4 /* GDTCORDataFuture.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCORDataFuture.h; path = GoogleDataTransport/GDTCORLibrary/Private/GDTCORDataFuture.h; sourceTree = ""; }; D8E6A9062F6922C1F19C0FE487B5C685 /* FBLPromiseError.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBLPromiseError.m; path = Sources/FBLPromises/FBLPromiseError.m; sourceTree = ""; }; D90AB6AB994606159C7BA599E9488FFD /* FormatArg.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FormatArg.h; path = folly/FormatArg.h; sourceTree = ""; }; D9105437915529F5B93662FFE4F8C5AB /* SetupResumeAcceptor.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = SetupResumeAcceptor.cpp; path = rsocket/internal/SetupResumeAcceptor.cpp; sourceTree = ""; }; D91B29BF814BA82AA00D7CF512DC6069 /* DelayedDestruction.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DelayedDestruction.h; path = folly/io/async/DelayedDestruction.h; sourceTree = ""; }; D925282B7F947BB672A38DA74BF07041 /* FBLPromise+Retry.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FBLPromise+Retry.h"; path = "Sources/FBLPromises/include/FBLPromise+Retry.h"; sourceTree = ""; }; - D9274FD89581B52AE591700F394D0E7A /* SDImageLoadersManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageLoadersManager.m; path = SDWebImage/Core/SDImageLoadersManager.m; sourceTree = ""; }; - D9279E8DCDD76912B395B18D4F8F102A /* RCTCxxMethod.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTCxxMethod.mm; sourceTree = ""; }; - D93AB3281682C4922FEE2F3E42D74976 /* NativeExpressComponent.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = NativeExpressComponent.m; sourceTree = ""; }; - D93AE0391E8B04BF035C5947E9A419FE /* RCTInputAccessoryShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTInputAccessoryShadowView.h; sourceTree = ""; }; D93DD89F6DEFF2301FFFDCD8B263150D /* pb_common.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = pb_common.h; sourceTree = ""; }; - D94271F55B4B4578FBF5D306CDE13760 /* RNLocalize.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNLocalize.h; path = ios/RNLocalize.h; sourceTree = ""; }; + D94FCB502C78D02BF63E1CE32E8E6C5D /* Yoga.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = Yoga.cpp; path = yoga/Yoga.cpp; sourceTree = ""; }; D950CA442FCE71D20BAC91A8491BF8BF /* yuv_neon.c */ = {isa = PBXFileReference; includeInIndex = 1; name = yuv_neon.c; path = src/dsp/yuv_neon.c; sourceTree = ""; }; - D97E945EAB5262C724CF49D188714044 /* RCTDeviceInfo.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTDeviceInfo.mm; sourceTree = ""; }; + D9572DF8232D8A2EAC02EC1EF655A843 /* BSG_KSDynamicLinker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSDynamicLinker.h; sourceTree = ""; }; + D9A49EBCBD7B4004ACAFC5E5691F8EE8 /* RCTUIManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTUIManager.h; sourceTree = ""; }; + D9AD525BD78EE273535FA726D075393C /* RCTImagePlugins.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImagePlugins.h; path = Libraries/Image/RCTImagePlugins.h; sourceTree = ""; }; D9AF91F511D1527EA8D0048D84814E9F /* StreamsWriter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = StreamsWriter.h; path = rsocket/statemachine/StreamsWriter.h; sourceTree = ""; }; D9BBC063CBF188E2AD7CFC22794FFCCA /* AsyncTimeout.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = AsyncTimeout.cpp; path = folly/io/async/AsyncTimeout.cpp; sourceTree = ""; }; D9C32FFCE8E6B44134C55AE1C104F22A /* ripemd.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ripemd.h; path = ios/include/openssl/ripemd.h; sourceTree = ""; }; - D9D902ABD851156DF10A01DEC00F0123 /* React-RCTAnimation.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = "React-RCTAnimation.podspec"; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; D9DF94F8184F30F0A18D3CB48F2E6E98 /* ResourceBundle-TOCropViewControllerBundle-TOCropViewController-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "ResourceBundle-TOCropViewControllerBundle-TOCropViewController-Info.plist"; sourceTree = ""; }; - D9E75B890724EA1F30A7C8E719D2E280 /* RCTWrapperViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTWrapperViewController.m; sourceTree = ""; }; D9EFE463C43910C54A890ADAC0086996 /* Future.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = Future.cpp; path = folly/futures/Future.cpp; sourceTree = ""; }; D9F226710D2D92BC84B6A5765349E167 /* 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 = ""; }; D9F334F2E90E3EE462FC4192AF5C03BD /* libReact-jsi.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libReact-jsi.a"; path = "libReact-jsi.a"; sourceTree = BUILT_PRODUCTS_DIR; }; D9F554735D420A7C658BD4827DFA4C4B /* libevent_core.a */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = archive.ar; name = libevent_core.a; path = lib/libevent_core.a; sourceTree = ""; }; - DA0B7541A49C2650D4598D443197E8C8 /* UIImageView+HighlightedWebCache.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIImageView+HighlightedWebCache.m"; path = "SDWebImage/Core/UIImageView+HighlightedWebCache.m"; sourceTree = ""; }; - DA113318C6CB1B615002F1D963BF9086 /* EXLocalAuthentication.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = EXLocalAuthentication.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + D9FC58B2BA1BFB5C040F369CEABE2C66 /* RNScreens.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNScreens.xcconfig; sourceTree = ""; }; + DA051E5A2D63F5A738B878BAD97D4958 /* Orientation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = Orientation.m; path = iOS/RCTOrientation/Orientation.m; sourceTree = ""; }; DA2BF1C1B987C3DE8074663DD5C69C64 /* FlipperKitNetworkPlugin.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = FlipperKitNetworkPlugin.mm; path = iOS/Plugins/FlipperKitNetworkPlugin/FlipperKitNetworkPlugin/FlipperKitNetworkPlugin.mm; sourceTree = ""; }; - DA3AA52165A726BA9E523EDA3D56A8F6 /* RNFirebase-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNFirebase-prefix.pch"; sourceTree = ""; }; DA41E96E699A7134DBAC6CB3C1D4635A /* FIRVersion.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRVersion.h; path = FirebaseCore/Sources/FIRVersion.h; sourceTree = ""; }; - DA5D0AA93E7BE6BC076BCC751014EF46 /* RNFetchBlobConst.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNFetchBlobConst.m; path = ios/RNFetchBlobConst.m; sourceTree = ""; }; - DA85E657E1A04BF36A3D6719725246AA /* rn-extensions-share-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "rn-extensions-share-dummy.m"; sourceTree = ""; }; - DA8A3EE127539AED404FDA1002228B72 /* RNFirebaseEvents.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNFirebaseEvents.h; path = RNFirebase/RNFirebaseEvents.h; sourceTree = ""; }; - DAAFD3BEED2FCC9A7E213213A3D52304 /* SharedProxyCxxModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = SharedProxyCxxModule.h; sourceTree = ""; }; + DA454E70C14FA7D40170EDD0F56B6C6F /* MaterialIcons.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = MaterialIcons.ttf; path = Fonts/MaterialIcons.ttf; sourceTree = ""; }; + DA4C4CFBE719F9CCE6BA84D57D186139 /* RCTErrorInfo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTErrorInfo.h; sourceTree = ""; }; + DA4CEC5047545E3556229DF8CB6541BC /* IOS7Polyfill.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = IOS7Polyfill.h; path = ios/IOS7Polyfill.h; sourceTree = ""; }; + DA555520E55808EAFC7410EECA5D6856 /* BugsnagApiClient.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagApiClient.h; sourceTree = ""; }; + DA7A978F0BC842852F7D42C3C856DCE6 /* BSG_KSCrashState.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BSG_KSCrashState.m; sourceTree = ""; }; + DA84A45396570829337342D1700D9790 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; + DA8BC124F2E327FF1FAFEB594EA867F0 /* BugsnagCollections.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagCollections.h; sourceTree = ""; }; + DAD593560DDDAC4ED56FC5AAAEE80665 /* EXConstants-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "EXConstants-dummy.m"; sourceTree = ""; }; DADC31C9BC5C1E83908E3894CD1ABB20 /* UniqueInstance.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UniqueInstance.h; path = folly/detail/UniqueInstance.h; sourceTree = ""; }; - DAF9878961E52E9EEA3D247C43084864 /* YGStyle.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = YGStyle.cpp; path = yoga/YGStyle.cpp; sourceTree = ""; }; - DB086192F7C5B024A9119AECE8ADE1D7 /* EXWebBrowser.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = EXWebBrowser.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + DB0616CD128BDB76F5EB428C77F48A37 /* RNCAssetsLibraryRequestHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCAssetsLibraryRequestHandler.m; path = ios/RNCAssetsLibraryRequestHandler.m; sourceTree = ""; }; + DB18D4F26133679F2F7255491CA3E0BA /* BSG_KSSystemInfo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSSystemInfo.h; sourceTree = ""; }; + DB1CBA66AF986F90E2BF03987ED44F69 /* UIImage+Resize.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIImage+Resize.m"; path = "ios/src/UIImage+Resize.m"; sourceTree = ""; }; + DB235A35325A6D3FAA0D69E5E99B322F /* BugsnagNotifier.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagNotifier.m; sourceTree = ""; }; DB3029A06A7EE04F47FD16BC1EF44748 /* KeepaliveTimer.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = KeepaliveTimer.cpp; path = rsocket/internal/KeepaliveTimer.cpp; sourceTree = ""; }; - DB39F9CF2B97369F70DE7538C2026439 /* UIView+WebCache.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIView+WebCache.m"; path = "SDWebImage/Core/UIView+WebCache.m"; sourceTree = ""; }; + DB32E526E1445FE7B012C65BD6376240 /* BugsnagUser.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagUser.h; sourceTree = ""; }; DB3E6CDDFD013761E504645ACB4550AC /* bignum.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = bignum.h; path = "double-conversion/bignum.h"; sourceTree = ""; }; - DB3FACCE62965BA349C71B1CE35C403A /* ReactNativeKeyboardTrackingView-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "ReactNativeKeyboardTrackingView-prefix.pch"; sourceTree = ""; }; - DB4C55ACA9CBDCF6D9EC77EA48215B9D /* FBReactNativeSpec-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "FBReactNativeSpec-prefix.pch"; sourceTree = ""; }; - DB64B1122545BBAF21C429CE6B63462E /* RNCMaskedView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCMaskedView.h; path = ios/RNCMaskedView.h; sourceTree = ""; }; + DB4A1BB82B6FDCE2D55B3B427C79E4F3 /* RCTImageDataDecoder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageDataDecoder.h; path = Libraries/Image/RCTImageDataDecoder.h; sourceTree = ""; }; + DB52526C36BC5C432E60D08D5715CD9D /* SDWebImageDownloaderConfig.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageDownloaderConfig.h; path = SDWebImage/Core/SDWebImageDownloaderConfig.h; sourceTree = ""; }; + DB6735B38020BAF443720BEF9222ADE0 /* Yoga.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Yoga.h; path = yoga/Yoga.h; sourceTree = ""; }; DB6D26EBDD86843CF9618C4518830999 /* SKNamed.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = SKNamed.mm; path = iOS/Plugins/FlipperKitLayoutPlugin/FlipperKitLayoutPlugin/SKNamed.mm; sourceTree = ""; }; + DB6FE7776E3827BB6846BBC6741A7928 /* RCTConvert+Text.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RCTConvert+Text.m"; sourceTree = ""; }; DB7324CC6440821330D5AB267227CF47 /* FramedReader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FramedReader.h; path = rsocket/framing/FramedReader.h; sourceTree = ""; }; - DBA6C305890D75EAECC073B075616CC6 /* RCTLinkingPlugins.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTLinkingPlugins.mm; sourceTree = ""; }; + DBAAA55F592C3AA7B25B62A64E9C4C6C /* experiments.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = experiments.h; sourceTree = ""; }; DBB0FD75A20E2729FDCDCD93D991BD55 /* IntrusiveList.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = IntrusiveList.h; path = folly/IntrusiveList.h; sourceTree = ""; }; - DBB7788A06D05618E07B0B1B9644E3F0 /* RNDateTimePickerManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNDateTimePickerManager.m; path = ios/RNDateTimePickerManager.m; sourceTree = ""; }; DBC153CADA88D1B0EDF1F9180048460C /* FIRInstallationsItem+RegisterInstallationAPI.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "FIRInstallationsItem+RegisterInstallationAPI.m"; path = "FirebaseInstallations/Source/Library/InstallationsAPI/FIRInstallationsItem+RegisterInstallationAPI.m"; sourceTree = ""; }; DBD5194ABAD450816C36C5AB50F85835 /* SaturatingSemaphore.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SaturatingSemaphore.h; path = folly/synchronization/SaturatingSemaphore.h; sourceTree = ""; }; + DBE35416D83D1B94DB65A1759A98C57C /* RCTAnimationType.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTAnimationType.h; sourceTree = ""; }; DBE87F1B7E9A22D42FD7738B6F546D44 /* ConcurrentHashMap.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ConcurrentHashMap.h; path = folly/concurrency/ConcurrentHashMap.h; sourceTree = ""; }; - DBEF8150E3FFC9506A7843EDB9AFD1BD /* YGStyle.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YGStyle.h; path = yoga/YGStyle.h; sourceTree = ""; }; DC07F7F25F7586236F6C78AE12515F9F /* SpinLock.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SpinLock.h; path = folly/SpinLock.h; sourceTree = ""; }; DC20B874C6A68011CB27B5F88D53F250 /* FIRInstallationsAuthTokenResultInternal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstallationsAuthTokenResultInternal.h; path = FirebaseInstallations/Source/Library/FIRInstallationsAuthTokenResultInternal.h; sourceTree = ""; }; - DC45F7A3D4A7E67D6A6C04602CF64F57 /* SDDisplayLink.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDDisplayLink.h; path = SDWebImage/Private/SDDisplayLink.h; sourceTree = ""; }; - DC507D39669E4B322D76C50178A05CC5 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; + DC584F4853C49B6A47A239ABA299F455 /* RNNotificationEventHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNNotificationEventHandler.h; path = RNNotifications/RNNotificationEventHandler.h; sourceTree = ""; }; + DC6592B4391775FBC8ED0AF7FD7C660B /* RCTBaseTextInputView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBaseTextInputView.h; sourceTree = ""; }; DC8DDA75D168B91F80255E52FE9015C3 /* GDTCOREvent+NetworkConnectionInfo.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "GDTCOREvent+NetworkConnectionInfo.m"; path = "GoogleDataTransportCCTSupport/GDTCCTLibrary/GDTCOREvent+NetworkConnectionInfo.m"; sourceTree = ""; }; DC984D11F480F93BF6505E6A2FE9E073 /* lossless_mips_dsp_r2.c */ = {isa = PBXFileReference; includeInIndex = 1; name = lossless_mips_dsp_r2.c; path = src/dsp/lossless_mips_dsp_r2.c; sourceTree = ""; }; DCA8E435EF07B58FECF3BF2DE95D69B6 /* Phase.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Phase.h; path = folly/init/Phase.h; sourceTree = ""; }; DCCFD8434CA50603862B2768CC4A129A /* ieee.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ieee.h; path = "double-conversion/ieee.h"; sourceTree = ""; }; - DCE394A0E0B69B37E3C5223460D02999 /* RNFirebaseRemoteConfig.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNFirebaseRemoteConfig.h; sourceTree = ""; }; + DCE4B0C491D7DBCE4ABC183906E5F8B1 /* UMFaceDetectorInterface.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = UMFaceDetectorInterface.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; DCE9904090A911013AD90075AB8884C2 /* FKUserDefaultsPlugin.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FKUserDefaultsPlugin.m; path = iOS/Plugins/FlipperKitUserDefaultsPlugin/FKUserDefaultsPlugin.m; sourceTree = ""; }; + DCF5F74F414D69D59E8E603C60730F28 /* RNSScreenContainer.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNSScreenContainer.m; path = ios/RNSScreenContainer.m; sourceTree = ""; }; DCF9C0F901ECE09B6D592C8AC869357F /* FlipperResponderImpl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FlipperResponderImpl.h; path = xplat/Flipper/FlipperResponderImpl.h; sourceTree = ""; }; + DD2994025FEE926A7B3A139CD7CC1019 /* ARTRenderable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ARTRenderable.h; path = ios/ARTRenderable.h; sourceTree = ""; }; DD29E6E8E8CB4743522F65BD6C3DDCB2 /* FrameTransportImpl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FrameTransportImpl.h; path = rsocket/framing/FrameTransportImpl.h; sourceTree = ""; }; DD334D5E8416D4A54BBB26548C42B522 /* json_pointer.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = json_pointer.cpp; path = folly/json_pointer.cpp; sourceTree = ""; }; DD36D25F8C6D8BBED0DF6C0F0607CB4E /* SanitizeLeak.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = SanitizeLeak.cpp; path = folly/memory/SanitizeLeak.cpp; sourceTree = ""; }; DD3DACC72CC97E3AC947BE53B8DB5D12 /* Format.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Format.h; path = folly/Format.h; sourceTree = ""; }; + DD4934136A00333DA2230477E34E3C3B /* RCTSlider.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSlider.h; sourceTree = ""; }; DD501F169A7952CB4CC3B224447AB103 /* double-conversion.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "double-conversion.h"; path = "double-conversion/double-conversion.h"; sourceTree = ""; }; + DD5D01DBFEAF61F0C7CC9A8C1B30C162 /* NSBezierPath+SDRoundedCorners.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSBezierPath+SDRoundedCorners.m"; path = "SDWebImage/Private/NSBezierPath+SDRoundedCorners.m"; sourceTree = ""; }; DD6197C2FBEE1F35E615BC1FB9BC436A /* HHWheelTimer.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = HHWheelTimer.cpp; path = folly/io/async/HHWheelTimer.cpp; sourceTree = ""; }; + DD6E18E641FA8579A9370B09BE6F7866 /* RCTImageUtils.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTImageUtils.m; sourceTree = ""; }; DDA545E47C3E2E70652EB209994B7618 /* FBLPromise+Validate.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "FBLPromise+Validate.m"; path = "Sources/FBLPromises/FBLPromise+Validate.m"; sourceTree = ""; }; - DDBB08E3D181710D8A5354CE16AA64E3 /* RCTClipboard.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTClipboard.h; path = React/CoreModules/RCTClipboard.h; sourceTree = ""; }; - DE1A03993F221E91A060D8EF328972C0 /* NSButton+WebCache.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSButton+WebCache.m"; path = "SDWebImage/Core/NSButton+WebCache.m"; sourceTree = ""; }; - DE1A9DCFA71D2A144B640AFE2807BA7F /* React-CoreModules-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-CoreModules-dummy.m"; sourceTree = ""; }; + DDAC57966DBA29BE27501D75073BEAAC /* RCTExceptionsManager.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTExceptionsManager.mm; sourceTree = ""; }; + DDF37CD605C26917BAB25ADD66F85E0E /* RCTWrapperViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTWrapperViewController.h; sourceTree = ""; }; + DE06A06FE5187FC2B9612FB0A7C41939 /* RCTLinkingManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTLinkingManager.h; path = Libraries/LinkingIOS/RCTLinkingManager.h; sourceTree = ""; }; DE27226AD935AC533B0B64711C769CE5 /* RangeSse42.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = RangeSse42.cpp; path = folly/detail/RangeSse42.cpp; sourceTree = ""; }; - DE30E8B82C1AD9F0CD3F2D5D4CD5A950 /* RCTConvert+ART.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "RCTConvert+ART.m"; path = "ios/RCTConvert+ART.m"; sourceTree = ""; }; + DE281431DE2725390C8E80DFA7F3ECA9 /* RCTShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTShadowView.h; sourceTree = ""; }; DE363B43B15D99CB6921593B3870A813 /* SysMembarrier.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SysMembarrier.h; path = folly/portability/SysMembarrier.h; sourceTree = ""; }; - DE381473802F29281EA11A762D3463A0 /* RCTBaseTextInputShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTBaseTextInputShadowView.m; sourceTree = ""; }; DE467359CEF73C5F9015551BB2196F55 /* String.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = String.h; path = folly/portability/String.h; sourceTree = ""; }; - DE47BFDAFC0E663561F7E81427C0C6FD /* RNCWKProcessPoolManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCWKProcessPoolManager.h; path = apple/RNCWKProcessPoolManager.h; sourceTree = ""; }; + DE4B478BAF024CD13B198C5492FF8780 /* Feather.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = Feather.ttf; path = Fonts/Feather.ttf; sourceTree = ""; }; DE57CEC42019514FE641BAD853C5C7B3 /* FutureExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FutureExecutor.h; path = folly/executors/FutureExecutor.h; sourceTree = ""; }; + DE58BC1E40261CB1AFD48A2215220FAC /* UMUtilities.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = UMUtilities.m; path = UMCore/UMUtilities.m; sourceTree = ""; }; DE643715043E724596EFD68C71AEC4C9 /* GULSceneDelegateSwizzler_Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULSceneDelegateSwizzler_Private.h; path = GoogleUtilities/SceneDelegateSwizzler/Internal/GULSceneDelegateSwizzler_Private.h; sourceTree = ""; }; DE65E4C5199AB765432132DFD5B72525 /* FrameFlags.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = FrameFlags.cpp; path = rsocket/framing/FrameFlags.cpp; sourceTree = ""; }; - DE6F9E64C16924524823CD9584DAF35A /* EXAppleAuthentication-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "EXAppleAuthentication-dummy.m"; sourceTree = ""; }; + DE6ADD67CF5B23EF6C19E4E5FC85A7F4 /* SDImageCachesManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageCachesManager.m; path = SDWebImage/Core/SDImageCachesManager.m; sourceTree = ""; }; DE7E37E9E3C94914A6B940F786C071BB /* ar.lproj */ = {isa = PBXFileReference; includeInIndex = 1; name = ar.lproj; path = "Objective-C/TOCropViewController/Resources/ar.lproj"; sourceTree = ""; }; + DE8728CD22EF370A33592E0D7F24649A /* RCTLogBox.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTLogBox.mm; sourceTree = ""; }; DE99BB1443E28E0AB813383FDDAB4BB7 /* filters_utils.c */ = {isa = PBXFileReference; includeInIndex = 1; name = filters_utils.c; path = src/utils/filters_utils.c; sourceTree = ""; }; DEAE00B727BDBF5870E0E3C7EBEA34F3 /* RSocketStats.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RSocketStats.h; path = rsocket/RSocketStats.h; sourceTree = ""; }; - DEB1C53ABC82E6C91B3D561E55026863 /* RCTImageEditingManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageEditingManager.h; path = Libraries/Image/RCTImageEditingManager.h; sourceTree = ""; }; + DEB3479887188EAFB1998B464C6ADEB3 /* RNFetchBlobNetwork.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNFetchBlobNetwork.h; path = ios/RNFetchBlobNetwork.h; sourceTree = ""; }; + DEB7A7FB5005C873436DB2B27F174EB1 /* RCTCxxUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTCxxUtils.h; sourceTree = ""; }; + DEC46F894C30A1FBFD26C23251C07277 /* EXVideoThumbnails-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "EXVideoThumbnails-prefix.pch"; sourceTree = ""; }; DED6AD875BC4C446ED34B3ABFBEF4B0D /* FBLPromise+Catch.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "FBLPromise+Catch.m"; path = "Sources/FBLPromises/FBLPromise+Catch.m"; sourceTree = ""; }; - DF22B26A42CCFCCA352128CBD25F0A45 /* RCTBundleURLProvider.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTBundleURLProvider.m; sourceTree = ""; }; DF3769950C7FA25FE17811F6ABFE5CE3 /* small_vector.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = small_vector.h; path = folly/small_vector.h; sourceTree = ""; }; - DF467F947B74376C96C9A29D47C69BD8 /* BugsnagCollections.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagCollections.m; sourceTree = ""; }; + DF5620D9B6A7BE0EF8BC9BFAA4FDD6A4 /* react-native-notifications.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "react-native-notifications.xcconfig"; sourceTree = ""; }; DF671BAA08D1EA42C0975602D70C3688 /* Future-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "Future-inl.h"; path = "folly/futures/Future-inl.h"; sourceTree = ""; }; - DF6C3C2A27E578BC883D91EFB730AD7F /* RNGestureHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNGestureHandler.h; path = ios/RNGestureHandler.h; sourceTree = ""; }; - DF7167F2BF896C12BBCF5BD8C375A50C /* READebugNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = READebugNode.h; sourceTree = ""; }; - DF7B0433CB697E740BA7B259FE091C76 /* RNVectorIconsManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNVectorIconsManager.m; path = RNVectorIconsManager/RNVectorIconsManager.m; sourceTree = ""; }; + DF78CEA0E43CCA1C6E5B7A1CEA5DB4B6 /* UMAppLoader.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMAppLoader.xcconfig; sourceTree = ""; }; DF88A96F763DC2A25912748ED11D25A2 /* MicroLock.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = MicroLock.cpp; path = folly/MicroLock.cpp; sourceTree = ""; }; + DF8FE8637B96B3C9A8B0EC48EEDB3651 /* RCTSurface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSurface.h; sourceTree = ""; }; DFA4192411246D351FC3CB38327AFF97 /* obj_mac.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = obj_mac.h; path = ios/include/openssl/obj_mac.h; sourceTree = ""; }; + DFAA4C02B9431D0A75FEBD39D72EFBAB /* RCTImageEditingManager.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTImageEditingManager.mm; sourceTree = ""; }; DFD951B4A6BEB2BEF8B43E5F401C7D90 /* Codel.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = Codel.cpp; path = folly/executors/Codel.cpp; sourceTree = ""; }; - DFE199A94F260A920AA2102D8E7655CF /* React-RCTBlob-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-RCTBlob-dummy.m"; sourceTree = ""; }; - DFEA7C535EEB73060DBCDC1CBE5D3D9E /* react-native-webview-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "react-native-webview-prefix.pch"; sourceTree = ""; }; DFFF05D864AB8F9323BAE7B6AB515893 /* GDTCCTNanopbHelpers.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GDTCCTNanopbHelpers.m; path = GoogleDataTransportCCTSupport/GDTCCTLibrary/GDTCCTNanopbHelpers.m; sourceTree = ""; }; E00BE2A3146698E81A8F9D00E8F93A6C /* libFlipper-Glog.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libFlipper-Glog.a"; path = "libFlipper-Glog.a"; sourceTree = BUILT_PRODUCTS_DIR; }; E020A900A1ACF98213A0161DC618761B /* PriorityLifoSemMPMCQueue.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PriorityLifoSemMPMCQueue.h; path = folly/executors/task_queue/PriorityLifoSemMPMCQueue.h; sourceTree = ""; }; @@ -9146,434 +9118,464 @@ E03322878A67943BE822E153E5246303 /* Poly.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Poly.h; path = folly/Poly.h; sourceTree = ""; }; E035E898A59C9D73ABE126EA4651AB0E /* err.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = err.h; path = ios/include/openssl/err.h; sourceTree = ""; }; E042208C2048F997332FF45C2670A035 /* stop_watch.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = stop_watch.h; path = folly/stop_watch.h; sourceTree = ""; }; - E0495102CDC8237B6AC8990EE9CE248D /* react-native-jitsi-meet.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "react-native-jitsi-meet.xcconfig"; sourceTree = ""; }; - E090ED2ECA03CB8C46EB494202C518DA /* UMFontProcessorInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMFontProcessorInterface.h; path = UMFontInterface/UMFontProcessorInterface.h; sourceTree = ""; }; + E061B4BB8E2EBF5350C19253CE0BD79B /* RCTSwitch.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSwitch.m; sourceTree = ""; }; E096B85EA81BD0F719205C885724C82B /* Promise-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "Promise-inl.h"; path = "folly/futures/Promise-inl.h"; sourceTree = ""; }; - E099E92E0B7F38EA63EE0169305F4CF8 /* EXImageLoader-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "EXImageLoader-prefix.pch"; sourceTree = ""; }; E0A9D47244485B5903EFF0076DF73288 /* listener.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = listener.h; path = src/event2/listener.h; sourceTree = ""; }; - E0AD1427763970DC8ED1AC36E05D631A /* ReactNativeShareExtension.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ReactNativeShareExtension.h; path = ios/ReactNativeShareExtension.h; sourceTree = ""; }; E0B5CB5EA94227AB5B770D2BBEDB2A15 /* 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 = ""; }; + E0D3D9D8A043C05C3D18F9A7A572F996 /* RCTObjcExecutor.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTObjcExecutor.mm; sourceTree = ""; }; E0EC7AA68FB61CD52889F9C776977CCA /* Common.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Common.h; path = rsocket/internal/Common.h; sourceTree = ""; }; - E0F9503131ACB8C4FD70E76CA14C2EF5 /* BSG_RFC3339DateTool.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BSG_RFC3339DateTool.m; sourceTree = ""; }; E0FE6533198104C97DB047DD5CD8AC67 /* libRNDeviceInfo.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libRNDeviceInfo.a; path = libRNDeviceInfo.a; sourceTree = BUILT_PRODUCTS_DIR; }; - E104B46A43DFAA4D5F590037BBD1B791 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; - E1050B17E10A8FA20BBE522DF1CDE9C5 /* rn-fetch-blob-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "rn-fetch-blob-prefix.pch"; sourceTree = ""; }; + E1031DC1B42680FEAE36C5ADDFDE3653 /* UMTaskManagerInterface.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = UMTaskManagerInterface.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + E106072A9786E64AC33CA00920659D39 /* EXFilePermissionModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXFilePermissionModule.h; path = EXFileSystem/EXFilePermissionModule.h; sourceTree = ""; }; + E10645E04E00D679C0847AA3A4B1D7C4 /* ReactNativeShareExtension.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ReactNativeShareExtension.h; path = ios/ReactNativeShareExtension.h; sourceTree = ""; }; E11431493CDFEC7F972E8599788F793D /* Retrying.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Retrying.h; path = folly/futures/Retrying.h; sourceTree = ""; }; E114F2487F6B542B8C7B77556081D3AC /* Answers.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Answers.h; path = iOS/Crashlytics.framework/Headers/Answers.h; sourceTree = ""; }; - E1302BA0F105DBBB6C1DD6892800572C /* BSG_KSCrashContext.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashContext.h; sourceTree = ""; }; E13643F75BB289AFC9F56E8FF8185514 /* Frame.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = Frame.cpp; path = rsocket/framing/Frame.cpp; sourceTree = ""; }; E147F2A4A349620376F53D8C73DE0B06 /* FirebaseCoreDiagnostics.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = FirebaseCoreDiagnostics.xcconfig; sourceTree = ""; }; - E179F2A5B71E45A8909EB9C9A0471081 /* SDImageAPNGCoder.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageAPNGCoder.m; path = SDWebImage/Core/SDImageAPNGCoder.m; sourceTree = ""; }; - E17B60C58DF1CD7EBC60C27183ECCBB2 /* RCTConvert+Text.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RCTConvert+Text.m"; sourceTree = ""; }; - E183097BAB8F512043C9880F96EC7BE3 /* RCTDevMenu.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTDevMenu.mm; sourceTree = ""; }; - E190A81436A1E6A3B90BE76CDA87269B /* RNDocumentPicker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNDocumentPicker.h; path = ios/RNDocumentPicker/RNDocumentPicker.h; sourceTree = ""; }; - E198EDF62D4D911560F20BC10B47319D /* RCTModalHostViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTModalHostViewManager.m; sourceTree = ""; }; - E1A6DDD38250927F90533C1838189EAE /* BSG_KSCrashSentry_NSException.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashSentry_NSException.h; sourceTree = ""; }; - E1B0203EEAA6794298B1232415B345A3 /* react-native-appearance.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "react-native-appearance.xcconfig"; sourceTree = ""; }; + E1724977BC9821DC1A38684F88F8838B /* SDWebImageOperation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageOperation.h; path = SDWebImage/Core/SDWebImageOperation.h; sourceTree = ""; }; + E1857959E99AF4C358B3C474EB7A392C /* SDImageAPNGCoder.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageAPNGCoder.m; path = SDWebImage/Core/SDImageAPNGCoder.m; sourceTree = ""; }; + E18C0161248F1BFFB1495B94FA7FE68E /* RNGestureHandler.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RNGestureHandler.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + E1AF6F668DDC2FE9EBE1D6160C6901DD /* ImageCropPicker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ImageCropPicker.h; path = ios/src/ImageCropPicker.h; sourceTree = ""; }; + E1B54E64A0E9F806D85B7AA1EDA7F1CF /* RCTAnimationPlugins.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTAnimationPlugins.mm; sourceTree = ""; }; + E1BF00A498E8F2B330789DA0C9B84C5F /* UMExportedModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMExportedModule.h; path = UMCore/UMExportedModule.h; sourceTree = ""; }; + E1C86DCAEA35DB7EF574F26C31F9F1ED /* RNTapHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNTapHandler.h; sourceTree = ""; }; E1CC60A2FB7B5410595A8B401C47F344 /* rpc.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = rpc.h; path = src/event2/rpc.h; sourceTree = ""; }; - E1F9BCA1437F86681BEEFD0484AFC0F0 /* LICENSE.md */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE.md; sourceTree = ""; }; - E20B1B67C0A60279B2E2E8D87D79E25B /* RNPushKit.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNPushKit.m; path = RNNotifications/RNPushKit.m; sourceTree = ""; }; + E205CB84D03BBD7E0E565811D3164D88 /* experiments-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "experiments-inl.h"; sourceTree = ""; }; + E22A9D5EEF614A05576A5B6C33F25CE0 /* RNCSafeAreaProvider.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCSafeAreaProvider.h; path = ios/SafeAreaView/RNCSafeAreaProvider.h; sourceTree = ""; }; E23A8B7A5F1AACF75628382B60FDC727 /* SmallLocks.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SmallLocks.h; path = folly/synchronization/SmallLocks.h; sourceTree = ""; }; - E24952E40FC2451E5EF180170FA299D5 /* RCTImageViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageViewManager.h; path = Libraries/Image/RCTImageViewManager.h; sourceTree = ""; }; - E26EAC0D5FFC97756CB264A63EE8C6AD /* BSG_KSCrashReportStore.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashReportStore.h; sourceTree = ""; }; + E25C0B6FEA3B8807E9F7FB31203D1737 /* BSG_KSString.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSString.c; sourceTree = ""; }; E27704A270699223EBC354F812A0956A /* quant_levels_dec_utils.c */ = {isa = PBXFileReference; includeInIndex = 1; name = quant_levels_dec_utils.c; path = src/utils/quant_levels_dec_utils.c; sourceTree = ""; }; - E282F321953E292EEE8FEE03D7E56028 /* RNCWKProcessPoolManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCWKProcessPoolManager.m; path = apple/RNCWKProcessPoolManager.m; sourceTree = ""; }; - E2A2C3E229486D9A05F7BD609DCC9FF1 /* RNFetchBlobRequest.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNFetchBlobRequest.h; path = ios/RNFetchBlobRequest.h; sourceTree = ""; }; - E2AED86520903893606E05C7A2D91A43 /* EXAudioRecordingPermissionRequester.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXAudioRecordingPermissionRequester.h; path = EXAV/EXAudioRecordingPermissionRequester.h; sourceTree = ""; }; E2B63D462DB7F827C4B11FD51E4F8E2D /* libFirebaseCore.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libFirebaseCore.a; path = libFirebaseCore.a; sourceTree = BUILT_PRODUCTS_DIR; }; - E2DDA6DC942834BBBE14643AF830A50A /* MessageQueueThreadCallInvoker.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = MessageQueueThreadCallInvoker.cpp; path = callinvoker/ReactCommon/MessageQueueThreadCallInvoker.cpp; sourceTree = ""; }; + E2F639178DE4C4A627B62C3D173413B8 /* Fontisto.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = Fontisto.ttf; path = Fonts/Fontisto.ttf; sourceTree = ""; }; E2F9F534D5A3C56C6BA871F6BFFD139D /* visibility.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = visibility.h; path = src/event2/visibility.h; sourceTree = ""; }; - E30318F688F0094C6830361CADB31299 /* ImageCropPicker.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = ImageCropPicker.m; path = ios/src/ImageCropPicker.m; sourceTree = ""; }; + E317F58825157FE70AF972818D4D8EBB /* react-native-slider-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "react-native-slider-dummy.m"; sourceTree = ""; }; + E31C4EDD0CD0EEC517885CA1AC8E61D0 /* UMBarCodeScannerInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMBarCodeScannerInterface.h; path = UMBarCodeScannerInterface/UMBarCodeScannerInterface.h; sourceTree = ""; }; E31ED6E905AFD8BECDCF60354335DC24 /* json.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = json.cpp; path = folly/json.cpp; sourceTree = ""; }; - E3289749F213D3A834E919489BE3C09C /* RCTI18nManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTI18nManager.h; path = React/CoreModules/RCTI18nManager.h; sourceTree = ""; }; - E35AC1E2768077668B60A8ED1902042C /* api.md */ = {isa = PBXFileReference; includeInIndex = 1; name = api.md; path = docs/api.md; sourceTree = ""; }; - E37AF67FCF09E4158EF00B66B07F22C3 /* RCTSliderManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSliderManager.m; sourceTree = ""; }; - E38BAD38A31B5ED29F98169234AC11AF /* RCTVersion.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTVersion.h; sourceTree = ""; }; - E38BCF23A3F366BF569AA51ED7A07FD0 /* BSG_KSCrashSentry_CPPException.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSCrashSentry_CPPException.mm; sourceTree = ""; }; - E38F69EED7E21E41AD71AFA75F839F10 /* REATransition.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REATransition.h; sourceTree = ""; }; + E32C20D73ADD0C1F17C16EAF8AA1EFCD /* RNNotificationParser.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNNotificationParser.m; path = RNNotifications/RNNotificationParser.m; sourceTree = ""; }; + E32E897FA4AAF329B774A5AB200BFCCE /* react-native-orientation-locker.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = "react-native-orientation-locker.podspec"; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + E3AC80F6DEE183DD7CF938F00BAE732E /* BSGConnectivity.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BSGConnectivity.m; sourceTree = ""; }; E3B06AFF3EC775A827456A27ED736220 /* GDTCORAssert.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GDTCORAssert.m; path = GoogleDataTransport/GDTCORLibrary/GDTCORAssert.m; sourceTree = ""; }; - E3E3D986F55303FD249D648C662FC6A5 /* RCTRefreshControlManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTRefreshControlManager.h; sourceTree = ""; }; - E3FD50FC8643C8B1FDABAEB11FCC55B5 /* EXAVObject.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXAVObject.h; path = EXAV/EXAVObject.h; sourceTree = ""; }; - E407E78CE1F9669988D1BBC2C9EFEF6B /* UIImage+MultiFormat.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIImage+MultiFormat.h"; path = "SDWebImage/Core/UIImage+MultiFormat.h"; sourceTree = ""; }; - E416310D18DD3D674787588A75E53E4D /* EXAV.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXAV.h; path = EXAV/EXAV.h; sourceTree = ""; }; + E3B0CBE9F74F2050E6523049D4DA30BF /* RNFlingHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNFlingHandler.m; sourceTree = ""; }; + E3D89053C2BC8351F351CECAE1B7878B /* RCTSinglelineTextInputView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSinglelineTextInputView.m; sourceTree = ""; }; + E41481304ED3CC13F1D82769C44E671F /* ReactNativeKeyboardInput.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = ReactNativeKeyboardInput.xcconfig; sourceTree = ""; }; E4278F47054CB9E002306CA4A1032C6C /* IPAddress.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = IPAddress.h; path = folly/IPAddress.h; sourceTree = ""; }; - E4715A68BDF3486D832920D916ECA375 /* BugsnagSessionFileStore.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagSessionFileStore.m; sourceTree = ""; }; - E4717C28EB9B27DF783198B758A4CF07 /* RNDeviceInfo.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNDeviceInfo.m; path = ios/RNDeviceInfo/RNDeviceInfo.m; sourceTree = ""; }; + E449164144807AC1B5053DB10638ACA3 /* React-jsiexecutor.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-jsiexecutor.xcconfig"; sourceTree = ""; }; + E467F6389545E7EF2C34977C096EE289 /* RCTSafeAreaViewLocalData.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSafeAreaViewLocalData.m; sourceTree = ""; }; + E47100F23244066B9AD6894496AC87A0 /* RCTSinglelineTextInputViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSinglelineTextInputViewManager.m; sourceTree = ""; }; + E4796F6121A2ACD66D4EC63D00FED6E3 /* UIImage+Transform.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIImage+Transform.m"; path = "SDWebImage/Core/UIImage+Transform.m"; sourceTree = ""; }; E47E6EAC5683C505E27D3E812F06FF0A /* Utility.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Utility.h; path = folly/synchronization/Utility.h; sourceTree = ""; }; - E481E4C8F8218D44428C1C7ED1AF79F3 /* RNCSafeAreaView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCSafeAreaView.h; path = ios/SafeAreaView/RNCSafeAreaView.h; sourceTree = ""; }; + E484C17206B331EDA9C9BFDA944A5385 /* UMReactNativeAdapter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMReactNativeAdapter.h; sourceTree = ""; }; + E48A225EE28C7E04CBEA32486A3DF3D1 /* EXAudioSessionManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXAudioSessionManager.h; path = EXAV/EXAudioSessionManager.h; sourceTree = ""; }; E48B59569F94F2DB402094237B30567E /* FIRInstallationsVersion.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstallationsVersion.m; path = FirebaseInstallations/Source/Library/FIRInstallationsVersion.m; sourceTree = ""; }; - E48FF155CEACF2D353DD9A1988CA19C6 /* BSG_KSSystemCapabilities.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSSystemCapabilities.h; sourceTree = ""; }; E496A53A92B4E464B5C30DC5B1E4E257 /* libRNRootView.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libRNRootView.a; path = libRNRootView.a; sourceTree = BUILT_PRODUCTS_DIR; }; E49BDF8511EA64309A578D4B1B2DEE45 /* ThreadCachedArena.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = ThreadCachedArena.cpp; path = folly/memory/ThreadCachedArena.cpp; sourceTree = ""; }; - E4B85E9CA9529BA3CA89A024EF880435 /* React-RCTImage.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-RCTImage.xcconfig"; sourceTree = ""; }; + E4A980EC5E135E073BD60E890BB899CC /* QBCheckmarkView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = QBCheckmarkView.m; path = ios/QBImagePicker/QBImagePicker/QBCheckmarkView.m; sourceTree = ""; }; + E4B1EADA882818362F61F9FD6D1774D9 /* EXUserNotificationPermissionRequester.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = EXUserNotificationPermissionRequester.h; sourceTree = ""; }; + E4D333D4BA3F02FCE6EDA22EBDCA1C10 /* RNFirebaseAdMobRewardedVideo.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNFirebaseAdMobRewardedVideo.m; sourceTree = ""; }; E4D66E1F0C0812B3142D37E9D4700232 /* TypedIOBuf.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TypedIOBuf.h; path = folly/io/TypedIOBuf.h; sourceTree = ""; }; E4E9C8BD567B1C618E1FAE93C53629C8 /* event.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = event.h; path = src/event.h; sourceTree = ""; }; E4EB2A16DD94B5CDABFF811E330D2FC8 /* ConcurrentSkipList-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "ConcurrentSkipList-inl.h"; path = "folly/ConcurrentSkipList-inl.h"; sourceTree = ""; }; - E4F0FF6714F5FE177E51FB3A81A96F1F /* REAAllTransitions.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REAAllTransitions.m; sourceTree = ""; }; E4F5BAF1BDD07BC9213845EA158ED176 /* nanopb-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "nanopb-dummy.m"; sourceTree = ""; }; E5003F41F544CB231A516A7F623B3AE6 /* RSocket.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RSocket.h; path = rsocket/RSocket.h; sourceTree = ""; }; - E5230453CA59337317E8DD208589185E /* RNImageCropPicker.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RNImageCropPicker.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - E53AEEF65E5EA757BE3F9EE86AD64F87 /* RCTUIManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTUIManager.h; sourceTree = ""; }; - E555307E8E5A077248C236B23FD72B3D /* RNCSafeAreaProviderManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCSafeAreaProviderManager.m; path = ios/SafeAreaView/RNCSafeAreaProviderManager.m; sourceTree = ""; }; + E50204785706C0FB755F40E85186379D /* RNCMaskedView-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNCMaskedView-dummy.m"; sourceTree = ""; }; + E51F6E74217C96C2013A76540F8AFD14 /* RNFirebaseFirestoreCollectionReference.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNFirebaseFirestoreCollectionReference.m; sourceTree = ""; }; + E5528A4BB07AD017B9DD85E146CC365B /* RCTExceptionsManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTExceptionsManager.h; path = React/CoreModules/RCTExceptionsManager.h; sourceTree = ""; }; E55EA3C6F285F6FA8067C5C8A428FA64 /* libRNFastImage.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libRNFastImage.a; path = libRNFastImage.a; sourceTree = BUILT_PRODUCTS_DIR; }; - E57A68CDEEEECB747100BA81E12450CE /* RNNotificationParser.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNNotificationParser.m; path = RNNotifications/RNNotificationParser.m; sourceTree = ""; }; - E58ABE3A117EE7B01E6E6D36BE5510F2 /* SDImageAssetManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageAssetManager.h; path = SDWebImage/Private/SDImageAssetManager.h; sourceTree = ""; }; - E59AAFF2863D30569902D759C7E4886B /* BSG_KSCrashReportVersion.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashReportVersion.h; sourceTree = ""; }; + E5894364459636BB0BB2A1C4817C7901 /* RCTPerformanceLogger.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTPerformanceLogger.m; sourceTree = ""; }; + E5A932D638E8B5BFA3E4F591C0F9FFA1 /* SDWebImageError.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWebImageError.m; path = SDWebImage/Core/SDWebImageError.m; sourceTree = ""; }; + E5ACEC84F43BF0030230FD107058D770 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; E5B7EC14977E161F9A256842E077D32D /* TLRefCount.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TLRefCount.h; path = folly/experimental/TLRefCount.h; sourceTree = ""; }; - E5D173BDA9C7CE1F83CBB562AED745EC /* RCTFont.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTFont.mm; sourceTree = ""; }; + E5BF776F5AA6FDB065E29C3947EE33A0 /* RCTConvert+RNNotifications.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "RCTConvert+RNNotifications.m"; path = "RNNotifications/RCTConvert+RNNotifications.m"; sourceTree = ""; }; E6086A72DC6A3CCB544C74155D5EACBF /* MacAddress.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = MacAddress.cpp; path = folly/MacAddress.cpp; sourceTree = ""; }; - E613C10854AA0E97A10A1F81C1CE65B1 /* RCTSegmentedControl.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSegmentedControl.m; sourceTree = ""; }; - E61CF60153E47AD3BE61F120E5496976 /* React-RCTActionSheet.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-RCTActionSheet.xcconfig"; sourceTree = ""; }; + E625D021E09C9F838D67D872B0F3B4C8 /* BSG_KSCrashType.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSCrashType.c; sourceTree = ""; }; + E628938263C2178EBF71B1FA2E84FBF6 /* FFFastImageView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FFFastImageView.h; path = ios/FastImage/FFFastImageView.h; sourceTree = ""; }; E6401BB5120D214F07F0A4AFD853413E /* filters_utils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = filters_utils.h; path = src/utils/filters_utils.h; sourceTree = ""; }; E64E9F7719E13384D85E4D083EB8992A /* opensslconf.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = opensslconf.h; path = ios/include/openssl/opensslconf.h; sourceTree = ""; }; E65122D506BBE3FAFF52042089A13191 /* FlipperCppBridgingConnection.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = FlipperCppBridgingConnection.mm; path = iOS/FlipperKit/CppBridge/FlipperCppBridgingConnection.mm; sourceTree = ""; }; + E651C920E7D985973C23534C9C7D50F4 /* YGEnums.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YGEnums.h; path = yoga/YGEnums.h; sourceTree = ""; }; E656F2916FF54534E4646F7D2B1C5400 /* fast-dtoa.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = "fast-dtoa.cc"; path = "double-conversion/fast-dtoa.cc"; sourceTree = ""; }; - E65CACEB67E1652527A2057E33BD3A9A /* log.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = log.h; path = yoga/log.h; sourceTree = ""; }; E6746AFA25280F0F2986D8BF94897CF5 /* TOCropViewControllerTransitioning.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TOCropViewControllerTransitioning.h; path = "Objective-C/TOCropViewController/Models/TOCropViewControllerTransitioning.h"; sourceTree = ""; }; - E68CC1DF95728CD766E101D0963B0270 /* RCTSwitch.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSwitch.m; sourceTree = ""; }; + E67603E5319D2A076DD7532744C6EB24 /* RCTDivisionAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTDivisionAnimatedNode.h; sourceTree = ""; }; E68E3AA99661470FE7492C51A520B6E9 /* opensslconf-i386.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "opensslconf-i386.h"; path = "ios/include/openssl/opensslconf-i386.h"; sourceTree = ""; }; - E69C5BF678C8C6208B7F3FABB874E845 /* React-RCTVibration-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-RCTVibration-prefix.pch"; sourceTree = ""; }; + E69F73F0F050189060AEDD9232B2CAFD /* SDWebImagePrefetcher.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImagePrefetcher.h; path = SDWebImage/Core/SDWebImagePrefetcher.h; sourceTree = ""; }; E6A16705C69FC7DE11C2469A4A0F8358 /* libReact-RCTText.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libReact-RCTText.a"; path = "libReact-RCTText.a"; sourceTree = BUILT_PRODUCTS_DIR; }; + E6B34594D7FE35E2F2B9EF061D6A4174 /* BSG_KSCrashSentry_Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashSentry_Private.h; sourceTree = ""; }; + E6D98AED4B7AA4C281DC7EF695254416 /* RCTRootShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTRootShadowView.m; sourceTree = ""; }; E6DF44FB4D4D204EDF10E6845C6C59D9 /* FlipperRSocketResponder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FlipperRSocketResponder.h; path = xplat/Flipper/FlipperRSocketResponder.h; sourceTree = ""; }; - E6E736646CFBF4EBA7384B1E486EE94E /* RCTAppState.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTAppState.mm; sourceTree = ""; }; - E6EEFCFD363248FF906BA5F5B0A32E75 /* RNFirebaseAnalytics.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNFirebaseAnalytics.h; sourceTree = ""; }; - E6F633DA233010259078C80B210B8CB0 /* React-Core-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-Core-dummy.m"; sourceTree = ""; }; E703D4D7A31D6F024E7661E778E709E3 /* FramedReader.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = FramedReader.cpp; path = rsocket/framing/FramedReader.cpp; sourceTree = ""; }; - E707EF4A9F0B2CF92BFFC42E09E49239 /* RCTImageCache.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageCache.h; path = Libraries/Image/RCTImageCache.h; sourceTree = ""; }; - E721562F74F04D176D6F843613186636 /* EXImageLoader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXImageLoader.h; path = EXImageLoader/EXImageLoader.h; sourceTree = ""; }; + E712D133E8DA4FF4661B3B7D0880A010 /* UMNativeModulesProxy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = UMNativeModulesProxy.m; sourceTree = ""; }; + E726D0F6F7579BF0AE564E1DCC024151 /* RCTProfileTrampoline-arm.S */ = {isa = PBXFileReference; includeInIndex = 1; path = "RCTProfileTrampoline-arm.S"; sourceTree = ""; }; + E7278CB107A953A655B1A97187CE67A7 /* RCTImageBlurUtils.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTImageBlurUtils.m; sourceTree = ""; }; E739943F032BF69F9E739DAE065FFD27 /* bignum-dtoa.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "bignum-dtoa.h"; path = "double-conversion/bignum-dtoa.h"; sourceTree = ""; }; E7485A4C3FA956F38E1437E1DAD7CB1A /* keyvalq_struct.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = keyvalq_struct.h; path = src/event2/keyvalq_struct.h; sourceTree = ""; }; - E75FF60B158B1B011137F71422617F65 /* RCTConvert.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTConvert.h; sourceTree = ""; }; + E7749513D67CBE0A923D65AFFAC259E3 /* RCTCxxModule.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTCxxModule.mm; sourceTree = ""; }; + E7770225D1011CBA81539BB31146DE18 /* RCTWrapperViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTWrapperViewController.m; sourceTree = ""; }; + E77C6EF35804E2DA91EAB8864DBFBC87 /* UIImage+Extension.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIImage+Extension.h"; path = "ios/src/UIImage+Extension.h"; sourceTree = ""; }; E790B8EA7C4CAC702EAFB5FC27534D19 /* ColdResumeHandler.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = ColdResumeHandler.cpp; path = rsocket/ColdResumeHandler.cpp; sourceTree = ""; }; + E79BEA93FC21D229BBB696849EC49633 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; E7B58BFF90AEA33D39DC2306C3D51C0B /* SKApplicationDescriptor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SKApplicationDescriptor.h; path = iOS/Plugins/FlipperKitLayoutPlugin/FlipperKitLayoutPlugin/descriptors/SKApplicationDescriptor.h; sourceTree = ""; }; - E7C5136987B75A558800AA09668F379D /* NSImage+Compatibility.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSImage+Compatibility.h"; path = "SDWebImage/Core/NSImage+Compatibility.h"; sourceTree = ""; }; E7C7864BAEE54C69674AD01F6A74B8CB /* IOVec.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = IOVec.h; path = folly/portability/IOVec.h; sourceTree = ""; }; + E7C8D58DF67E184584720880EC449EA0 /* UMBarCodeScannerInterface.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = UMBarCodeScannerInterface.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + E7D31FF6221AF2CC2A559B30707B918A /* BugsnagSession.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagSession.h; sourceTree = ""; }; E7DE151FDBF6BE2826DC87D2617C7B5D /* OpenSSLCertUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = OpenSSLCertUtils.h; path = folly/ssl/OpenSSLCertUtils.h; sourceTree = ""; }; + E7DED3D8285C228837F9D243F63BD987 /* RCTFileReaderModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTFileReaderModule.h; path = Libraries/Blob/RCTFileReaderModule.h; sourceTree = ""; }; + E7E1CA3ECAD3AC58D7569AE3459DADCB /* SDImageGraphics.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageGraphics.m; path = SDWebImage/Core/SDImageGraphics.m; sourceTree = ""; }; E80ADB1E43F05B829F2D1AB9967D3EA4 /* LockTraits.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = LockTraits.h; path = folly/LockTraits.h; sourceTree = ""; }; E8182F724D11E8A5321A5333A8531239 /* Observables.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = Observables.cpp; path = yarpl/observable/Observables.cpp; sourceTree = ""; }; + E8272C83E7406895D3FF58AA4451AC95 /* SDWebImageDownloaderRequestModifier.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageDownloaderRequestModifier.h; path = SDWebImage/Core/SDWebImageDownloaderRequestModifier.h; sourceTree = ""; }; E834EC534E31B1E93EE000507BF09A87 /* FBLPromise+Then.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FBLPromise+Then.h"; path = "Sources/FBLPromises/include/FBLPromise+Then.h"; sourceTree = ""; }; - E84D0FB226B76CEC903DA2F88387ADFE /* RNTapHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNTapHandler.h; sourceTree = ""; }; + E84082D55677B5A881FBE68FD01FBDFA /* NSButton+WebCache.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSButton+WebCache.m"; path = "SDWebImage/Core/NSButton+WebCache.m"; sourceTree = ""; }; + E843686E57A6A99B4E2E728BF1AD7402 /* RCTFileRequestHandler.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTFileRequestHandler.mm; sourceTree = ""; }; E865E5F7D3DCA436B02BC22EA8D2291B /* rescaler_sse2.c */ = {isa = PBXFileReference; includeInIndex = 1; name = rescaler_sse2.c; path = src/dsp/rescaler_sse2.c; sourceTree = ""; }; - E86A3DEE59098AEA0F18200A1B624959 /* RCTSourceCode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTSourceCode.h; path = React/CoreModules/RCTSourceCode.h; sourceTree = ""; }; + E866F2020E5230470DC35024A47C9A0D /* EXFileSystemAssetLibraryHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXFileSystemAssetLibraryHandler.h; path = EXFileSystem/EXFileSystemAssetLibraryHandler.h; sourceTree = ""; }; + E877A2558FF6A9C6AC1FDFB384220918 /* ARTRadialGradient.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = ARTRadialGradient.m; sourceTree = ""; }; E8999353FF8CAC00061ED4E7C00D1E52 /* AutoTimer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AutoTimer.h; path = folly/experimental/AutoTimer.h; sourceTree = ""; }; - E8A93A2F6D99EEE18CCA27D6486437B7 /* RCTMaskedViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTMaskedViewManager.h; sourceTree = ""; }; - E8B20DC75F836A5E02E9E2ECB20ABDED /* RNNotificationCenterListener.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNNotificationCenterListener.h; path = RNNotifications/RNNotificationCenterListener.h; sourceTree = ""; }; - E8DB26D72064B358DEF28E118D4717F5 /* YGConfig.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = YGConfig.cpp; path = yoga/YGConfig.cpp; sourceTree = ""; }; - E9102DC33F063D111268F43954462C5F /* EXKeepAwake-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "EXKeepAwake-dummy.m"; sourceTree = ""; }; - E91AD6284DD4AB7F771C29815C3A0022 /* EXLocalAuthentication.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = EXLocalAuthentication.xcconfig; sourceTree = ""; }; + E8D327EEDF399F295F136B6152D3F9CB /* RCTPlatform.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTPlatform.h; path = React/CoreModules/RCTPlatform.h; sourceTree = ""; }; + E8D48D9E754A19671CCA6F4DCCC43B75 /* RCTLinkingManager.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTLinkingManager.mm; sourceTree = ""; }; + E90222C72A6406535921E464B42BFBC9 /* TurboCxxModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TurboCxxModule.h; path = turbomodule/core/TurboCxxModule.h; sourceTree = ""; }; + E93179E4068DA43969A26650ABD7C0AC /* RNGestureHandler-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNGestureHandler-dummy.m"; sourceTree = ""; }; E93F701CA8EB196D77AE99E094D873E4 /* libFlipper.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libFlipper.a; path = libFlipper.a; sourceTree = BUILT_PRODUCTS_DIR; }; E95676B1FDD263DC3DF63C40CB66210C /* Range.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Range.h; path = folly/Range.h; sourceTree = ""; }; - E970F038C92A074F5CDFDFED75311D5C /* UMSingletonModule.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = UMSingletonModule.m; path = UMCore/UMSingletonModule.m; sourceTree = ""; }; - E974C64B2F6DDAA335304461A064BA87 /* RCTTurboModuleManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTurboModuleManager.h; sourceTree = ""; }; + E9579DC85087657D5B0F17AFDE446A38 /* FFFastImageView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FFFastImageView.m; path = ios/FastImage/FFFastImageView.m; sourceTree = ""; }; E9A57C7D5BCADD30378DD824EB5551C2 /* FireAndForgetResponder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FireAndForgetResponder.h; path = rsocket/statemachine/FireAndForgetResponder.h; sourceTree = ""; }; - E9CB0FF20BC5770F5B661AE9BD63A55E /* RNGestureHandlerModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNGestureHandlerModule.h; path = ios/RNGestureHandlerModule.h; sourceTree = ""; }; + E9A745D1EE5A7A4991E265DBB7F47D76 /* Color+Interpolation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Color+Interpolation.m"; sourceTree = ""; }; E9D6678BAD6B949AC3107BB4F1F2F20E /* AsyncUDPSocket.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = AsyncUDPSocket.cpp; path = folly/io/async/AsyncUDPSocket.cpp; sourceTree = ""; }; - E9D7BBEE4380591D1FE584D6FBDEE88A /* React-jsi.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = "React-jsi.podspec"; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + E9DE038E00670E6D5E01D814B6CF2D3C /* Entypo.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = Entypo.ttf; path = Fonts/Entypo.ttf; sourceTree = ""; }; E9EC0706590ECF7C9BB06ADB9A20367F /* UIView+Yoga.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIView+Yoga.h"; path = "YogaKit/Source/UIView+Yoga.h"; sourceTree = ""; }; - EA00899B601D90EE6586A95E2062D486 /* RCTFileReaderModule.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTFileReaderModule.mm; sourceTree = ""; }; EA0396D3F432432F9B9F518FCADFBED3 /* SKScrollViewDescriptor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SKScrollViewDescriptor.h; path = iOS/Plugins/FlipperKitLayoutPlugin/FlipperKitLayoutPlugin/descriptors/SKScrollViewDescriptor.h; sourceTree = ""; }; EA2C72548656DE300CAE0BDF0ADFC8A6 /* JitsiMeet.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = JitsiMeet.framework; path = Frameworks/JitsiMeet.framework; sourceTree = ""; }; EA4D0250CBC2EC2C46D159B60763884B /* SSLSessionImpl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SSLSessionImpl.h; path = folly/ssl/detail/SSLSessionImpl.h; sourceTree = ""; }; - EA772201825DCD0D0BD240A7017BAF9F /* RCTRootContentView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTRootContentView.h; sourceTree = ""; }; + EA5B235566D917469402608226FD6112 /* EXUserNotificationPermissionRequester.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = EXUserNotificationPermissionRequester.m; sourceTree = ""; }; + EA60C36F2633ACD90522EC25F34E1E51 /* UIView+WebCache.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIView+WebCache.m"; path = "SDWebImage/Core/UIView+WebCache.m"; sourceTree = ""; }; EA7A0F4054315D2EBCF6698136B606FD /* TcpDuplexConnection.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TcpDuplexConnection.h; path = rsocket/transports/tcp/TcpDuplexConnection.h; sourceTree = ""; }; EAA90E02DE3D4BEDAA81145ECB6D010E /* SocketOptionMap.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SocketOptionMap.h; path = folly/io/SocketOptionMap.h; sourceTree = ""; }; EAB24F913164B156B7F211F6F33D9B23 /* ConnectionSet.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = ConnectionSet.cpp; path = rsocket/internal/ConnectionSet.cpp; sourceTree = ""; }; - EAC5057FC760FBFD55BC580C40F920CE /* TurboModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TurboModule.h; path = turbomodule/core/TurboModule.h; sourceTree = ""; }; + EAB9724D2F065EDDDD75CD95F953E1F6 /* UMAppLifecycleService.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMAppLifecycleService.h; sourceTree = ""; }; EACE8166DEDE36756EA776A9DF2C54B3 /* http_compat.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = http_compat.h; path = src/event2/http_compat.h; sourceTree = ""; }; + EADE9F3CC8C4D432074313BD08A7C56D /* RNLongPressHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNLongPressHandler.m; sourceTree = ""; }; + EADED44A7E13FCE5B69DB97D9FC27441 /* YGNodePrint.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = YGNodePrint.cpp; path = yoga/YGNodePrint.cpp; sourceTree = ""; }; + EADFCE0D4B87D6F30B6ACA043D79E8DA /* RCTSurfaceRootShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSurfaceRootShadowView.m; sourceTree = ""; }; EAE8249B059213ECC026BA4C8FDD79AC /* bignum-dtoa.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "bignum-dtoa.h"; path = "double-conversion/bignum-dtoa.h"; sourceTree = ""; }; EAE9CBAD1DF75CF11E2E207CF501AC34 /* 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 = ""; }; EAEF300CF4467F2E2E3B0C0D3A4D115F /* cost.c */ = {isa = PBXFileReference; includeInIndex = 1; name = cost.c; path = src/dsp/cost.c; sourceTree = ""; }; EAF99815E09678135013C1BE2BF5D9C9 /* GDTCORFlatFileStorage.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GDTCORFlatFileStorage.m; path = GoogleDataTransport/GDTCORLibrary/GDTCORFlatFileStorage.m; sourceTree = ""; }; - EB0503C4040CB6D5AB321E65307863ED /* RCTRootViewInternal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTRootViewInternal.h; sourceTree = ""; }; - EB14F126E96758354800E2285FA57A06 /* UIButton+WebCache.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIButton+WebCache.m"; path = "SDWebImage/Core/UIButton+WebCache.m"; sourceTree = ""; }; + EB073CD71C8EC16275D6B7ECF0B92D55 /* RNRootViewGestureRecognizer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNRootViewGestureRecognizer.h; path = ios/RNRootViewGestureRecognizer.h; sourceTree = ""; }; + EB1533A0CD974D86B26F4A4E5A77366D /* RCTSlider.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSlider.m; sourceTree = ""; }; EB1A0821F5F5EBBBD3BBE6D1A66BDCD6 /* TupleOps.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TupleOps.h; path = folly/experimental/TupleOps.h; sourceTree = ""; }; - EB1E2EDE818FF878E59B569B3AEE6CEC /* RCTConvert+REATransition.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RCTConvert+REATransition.m"; sourceTree = ""; }; EB30AF4296B7DF688702EF6329B3212C /* filters_neon.c */ = {isa = PBXFileReference; includeInIndex = 1; name = filters_neon.c; path = src/dsp/filters_neon.c; sourceTree = ""; }; + EB323642F514CE2453011B890D1D6691 /* RNFastImage-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNFastImage-prefix.pch"; sourceTree = ""; }; EB460ADDC1F5569961983DF5B4ACF701 /* MallocImpl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MallocImpl.h; path = folly/memory/detail/MallocImpl.h; sourceTree = ""; }; - EB7AC2F1B7531D26A22F4D278FE0599D /* RNPushKit.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNPushKit.h; path = RNNotifications/RNPushKit.h; sourceTree = ""; }; + EB7B259697BB5166461D289E034DE3BA /* REAOperatorNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REAOperatorNode.h; sourceTree = ""; }; EB835C734E0847EB78BFCD6A0DFBE3F2 /* event.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = event.h; path = src/event2/event.h; sourceTree = ""; }; + EB843E6AC3CC71F9610EDF2B1B2B53C0 /* BugsnagKeys.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagKeys.h; sourceTree = ""; }; EB8616166244CC3EEF891C531B942EBA /* FIRVersion.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRVersion.m; path = FirebaseCore/Sources/FIRVersion.m; sourceTree = ""; }; - EB8FADF2D99C656B2A39992CC07D3C26 /* RNCSlider.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCSlider.h; path = ios/RNCSlider.h; sourceTree = ""; }; EB93BE6AFAF1BC480D0C2B0600E21070 /* GULAppDelegateSwizzler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GULAppDelegateSwizzler.m; path = GoogleUtilities/AppDelegateSwizzler/GULAppDelegateSwizzler.m; sourceTree = ""; }; EB99404986864F2D05D2FC2B60B4B753 /* HHWheelTimer-fwd.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "HHWheelTimer-fwd.h"; path = "folly/io/async/HHWheelTimer-fwd.h"; sourceTree = ""; }; - EB9D4B812F643F74A25D57EA9EB4B7C5 /* RNGestureHandlerManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNGestureHandlerManager.h; path = ios/RNGestureHandlerManager.h; sourceTree = ""; }; EBC04109110EA540685138F05EF15D94 /* Rcu-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "Rcu-inl.h"; path = "folly/synchronization/Rcu-inl.h"; sourceTree = ""; }; - EC0296D9829486EAB25598C847B99257 /* EXWebBrowser-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "EXWebBrowser-prefix.pch"; sourceTree = ""; }; + EBC4106BF941C1E24DE8147C1955EF6D /* REAAlwaysNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REAAlwaysNode.h; sourceTree = ""; }; + EC0288E7FC24922EE25F901CF9ED9725 /* BugsnagConfiguration.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagConfiguration.h; sourceTree = ""; }; + EC10EAD1ADD133B64234EC22E156F4F3 /* RCTImagePlugins.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTImagePlugins.mm; sourceTree = ""; }; + EC11D56910273407F9CEE37E167F3CBB /* RCTTouchEvent.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTTouchEvent.m; sourceTree = ""; }; + EC3D5971D31870ED99985B1E42FB92C8 /* RCTSafeAreaViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSafeAreaViewManager.m; sourceTree = ""; }; + EC41547B1A1B9C2CC524D664316F30F3 /* Instance.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = Instance.cpp; sourceTree = ""; }; EC4413815440FA626EF27F8EFC09DB3F /* TcpConnectionAcceptor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TcpConnectionAcceptor.h; path = rsocket/transports/tcp/TcpConnectionAcceptor.h; sourceTree = ""; }; EC45961C9D25EB434DFCFC9F4A481FDA /* muxread.c */ = {isa = PBXFileReference; includeInIndex = 1; name = muxread.c; path = src/mux/muxread.c; sourceTree = ""; }; - EC4A6E943C7DAEEA950D96EE96271C15 /* UMDefines.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMDefines.h; path = UMCore/UMDefines.h; sourceTree = ""; }; EC5E84BFDB9AAF8206A9A237A394252E /* Observer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Observer.h; path = yarpl/observable/Observer.h; sourceTree = ""; }; - EC8C4041B73C5CB3A45BA4332D46F52A /* UMBarCodeScannerInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMBarCodeScannerInterface.h; path = UMBarCodeScannerInterface/UMBarCodeScannerInterface.h; sourceTree = ""; }; - EC9D4A28059892E242284CB4F0ABA042 /* RNFirebaseAuth.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNFirebaseAuth.h; sourceTree = ""; }; - EC9F9FB50FE02D6165060C3BB45997DD /* RNCAppearance.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCAppearance.h; path = ios/Appearance/RNCAppearance.h; sourceTree = ""; }; + EC746D19C478B48C7F576E1613A76E3B /* RCTComponentData.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTComponentData.h; sourceTree = ""; }; ECA1B40348C9BBE28F7C3E9A1A7C5931 /* Benchmark.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Benchmark.h; path = folly/Benchmark.h; sourceTree = ""; }; ECE4810BC3C59E5A850326AF4F5FB19C /* Syslog.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Syslog.h; path = folly/portability/Syslog.h; sourceTree = ""; }; - ECE9D044A0D0A72C4ABBDE19C8C41E14 /* RNPanHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNPanHandler.h; sourceTree = ""; }; - ECF4AFAE13A35FFC1A16CE050FFC238B /* BugsnagSessionTrackingApiClient.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagSessionTrackingApiClient.m; sourceTree = ""; }; + ECE4D3F9A9B7EC1C23DF0139BE3486A1 /* UIImage+GIF.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIImage+GIF.m"; path = "SDWebImage/Core/UIImage+GIF.m"; sourceTree = ""; }; + ECF33A7749B132EA8845371627394D38 /* RCTUIUtils.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTUIUtils.m; sourceTree = ""; }; ED1E3FC0DC90F4A787472917BFB6B235 /* libEXFileSystem.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libEXFileSystem.a; path = libEXFileSystem.a; sourceTree = BUILT_PRODUCTS_DIR; }; + ED2936B1CF7F8C8B4285CFE09F1D1156 /* EXAppleAuthenticationMappings.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXAppleAuthenticationMappings.m; path = EXAppleAuthentication/EXAppleAuthenticationMappings.m; sourceTree = ""; }; + ED3650B9AC8E675BC39758884790E286 /* RNCAsyncStorage.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNCAsyncStorage.xcconfig; sourceTree = ""; }; ED5427AC4AEEA60B09838FFA6064678E /* FlipperKit.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = FlipperKit.modulemap; sourceTree = ""; }; - ED55C10A7DA7EE91F2EF2FBF40E36ED5 /* EXLocalAuthentication-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "EXLocalAuthentication-dummy.m"; sourceTree = ""; }; - ED5B0B99E28BEFBAA178E44EB85B60FE /* React-RCTAnimation-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-RCTAnimation-prefix.pch"; sourceTree = ""; }; - ED5BC9D96294FFB993377139D192A7E2 /* UMAppLifecycleService.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMAppLifecycleService.h; sourceTree = ""; }; - ED85978DBD2A2A4FCC68CC490BE3CE4D /* UIImageView+WebCache.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIImageView+WebCache.m"; path = "SDWebImage/Core/UIImageView+WebCache.m"; sourceTree = ""; }; + ED585EDDA1FD3A410BC1A7519DE62690 /* RCTVersion.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTVersion.h; sourceTree = ""; }; + ED7F52EA8E9D5ED153FEB67355F9C6D6 /* RCTLayout.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTLayout.m; sourceTree = ""; }; + ED7F7A9A3C26EE2210F79060E2FF1BAC /* EXAV-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "EXAV-prefix.pch"; sourceTree = ""; }; + ED89A604A4896CB788F8BBFB19CDBC67 /* RNFetchBlobRequest.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNFetchBlobRequest.m; path = ios/RNFetchBlobRequest.m; sourceTree = ""; }; ED89F458A2CA581F83FA7C1B223BFF63 /* GULUserDefaults.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULUserDefaults.h; path = GoogleUtilities/UserDefaults/Private/GULUserDefaults.h; sourceTree = ""; }; - EDB961063E6B91D50C655FB6D99E7937 /* React-jsinspector-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-jsinspector-prefix.pch"; sourceTree = ""; }; - EDCA066DC697E9BEF2EEF64778751C22 /* REAAllTransitions.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REAAllTransitions.h; sourceTree = ""; }; + EDA997DA46A6869B2F24BFFCE01E1DBC /* REAFunctionNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REAFunctionNode.m; sourceTree = ""; }; + EDAAE69411DA40D901BB43E7F756448F /* RNCMaskedView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCMaskedView.h; path = ios/RNCMaskedView.h; sourceTree = ""; }; + EDD536EDC605E381D750F904F141E0BA /* RCTFrameAnimation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTFrameAnimation.h; sourceTree = ""; }; EDD81CB684516A2C3CE6651B54126EB0 /* PolyDetail.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PolyDetail.h; path = folly/detail/PolyDetail.h; sourceTree = ""; }; EDD90116CC8A889E97D909D6A37CE4C1 /* FlipperKit-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "FlipperKit-dummy.m"; sourceTree = ""; }; EDDB70FF4ADF28EA822826C03211B12D /* dec.c */ = {isa = PBXFileReference; includeInIndex = 1; name = dec.c; path = src/dsp/dec.c; sourceTree = ""; }; EDDDE55E72AB79A1A0AE8C4A4B348544 /* ssl23.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ssl23.h; path = ios/include/openssl/ssl23.h; sourceTree = ""; }; EDE501DB07D92629B99BFC74828DDE8D /* SysFile.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = SysFile.cpp; path = folly/portability/SysFile.cpp; sourceTree = ""; }; - EDEFE166DD7CD1DDB8170EB2EDC5647C /* RCTBackedTextInputDelegateAdapter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBackedTextInputDelegateAdapter.h; sourceTree = ""; }; EDF48209BEECDFA54A01C5955F0BFBB4 /* UncaughtExceptions.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UncaughtExceptions.h; path = folly/lang/UncaughtExceptions.h; sourceTree = ""; }; EE096B4998A0498C28CB86AE0C6BE58F /* ScheduledSingleObserver.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ScheduledSingleObserver.h; path = rsocket/internal/ScheduledSingleObserver.h; sourceTree = ""; }; - EE149B93DC504931B021DFE29EBC4CF1 /* RCTFPSGraph.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTFPSGraph.h; path = React/CoreModules/RCTFPSGraph.h; sourceTree = ""; }; EE20E3C158D7A157487A592380C8AEB3 /* TestSubscriber.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TestSubscriber.h; path = yarpl/flowable/TestSubscriber.h; sourceTree = ""; }; EE2991BE8BD32C230B39899B8AAB4CA9 /* Cursor-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "Cursor-inl.h"; path = "folly/io/Cursor-inl.h"; sourceTree = ""; }; EE36919341A524F6869FDFFF1B326CC3 /* ScheduledFrameTransport.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = ScheduledFrameTransport.cpp; path = rsocket/framing/ScheduledFrameTransport.cpp; sourceTree = ""; }; EE3C6DE2E2ECDF1BCC8D1859E6DB5F76 /* Crashlytics.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Crashlytics.h; path = iOS/Crashlytics.framework/Headers/Crashlytics.h; sourceTree = ""; }; + EE58664FCD565913AE6871C3D5B803C3 /* SDImageCodersManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageCodersManager.m; path = SDWebImage/Core/SDImageCodersManager.m; sourceTree = ""; }; + EE78588B86575470EC01F1D67CFF2496 /* RCTUIManagerObserverCoordinator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTUIManagerObserverCoordinator.h; sourceTree = ""; }; + EE8BB895C0148F20FC6269E2E6A328AC /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; + EEAB5A80CDF7B164E09CFE82EFD0A74F /* UMReactFontManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMReactFontManager.h; sourceTree = ""; }; EEB33EDDF13C4B81FF081BC41152CE31 /* ThreadWheelTimekeeper.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = ThreadWheelTimekeeper.cpp; path = folly/futures/ThreadWheelTimekeeper.cpp; sourceTree = ""; }; EEB506DC9174101E862BE53F349EEE1B /* rescaler_msa.c */ = {isa = PBXFileReference; includeInIndex = 1; name = rescaler_msa.c; path = src/dsp/rescaler_msa.c; sourceTree = ""; }; - EEB527A333FF5A4AEF63DF312B770FA7 /* ARTText.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ARTText.h; path = ios/ARTText.h; sourceTree = ""; }; EEB541FDC2BF4361A988EAF2F2A186FA /* String-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "String-inl.h"; path = "folly/String-inl.h"; sourceTree = ""; }; + EEBB40606CBEF5ED5427218DDC0F775B /* RNDocumentPicker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNDocumentPicker.h; path = ios/RNDocumentPicker/RNDocumentPicker.h; sourceTree = ""; }; + EED2AAD6B55F43BE137678CC34902005 /* SDFileAttributeHelper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDFileAttributeHelper.h; path = SDWebImage/Private/SDFileAttributeHelper.h; sourceTree = ""; }; EEDBF403E8E0B3885E65C2741B536BC5 /* libReact-RCTImage.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libReact-RCTImage.a"; path = "libReact-RCTImage.a"; sourceTree = BUILT_PRODUCTS_DIR; }; EEE3248F0F7589500C47384F04CAE609 /* common_sse41.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = common_sse41.h; path = src/dsp/common_sse41.h; sourceTree = ""; }; + EEF9D5D77F08ED6807BF9C978556DF29 /* RCTImageStoreManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageStoreManager.h; path = Libraries/Image/RCTImageStoreManager.h; sourceTree = ""; }; EF20A6B7673DC9EDF7334088F699E2C0 /* GULUserDefaults.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GULUserDefaults.m; path = GoogleUtilities/UserDefaults/GULUserDefaults.m; sourceTree = ""; }; - EF2624022163DF8547EBDEA01D8173FF /* SDWebImageDownloader.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWebImageDownloader.m; path = SDWebImage/Core/SDWebImageDownloader.m; sourceTree = ""; }; - EF3CF074EFB514AB39C2972DA32E2ABA /* RCTModalHostView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTModalHostView.h; sourceTree = ""; }; + EF2F4C2510566B811AD1F0B4FFDE78A5 /* LongLivedObject.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = LongLivedObject.cpp; path = turbomodule/core/LongLivedObject.cpp; sourceTree = ""; }; + EF4B8F7C058E572DCBD603D8A4AD2E5E /* RNCAsyncStorageDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCAsyncStorageDelegate.h; path = ios/RNCAsyncStorageDelegate.h; sourceTree = ""; }; EF4E4DE2415A64664FF173A23F04A49B /* Request.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Request.h; path = folly/io/async/Request.h; sourceTree = ""; }; - EF5486049EDC1824356D857F5C0F6915 /* BSGConnectivity.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BSGConnectivity.m; sourceTree = ""; }; - EF816D90F70DF67C69E47BF0B325AF38 /* NSData+ImageContentType.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSData+ImageContentType.m"; path = "SDWebImage/Core/NSData+ImageContentType.m"; sourceTree = ""; }; + EF70A307184FCF86D6BF324F32546930 /* ARTText.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = ARTText.m; path = ios/ARTText.m; sourceTree = ""; }; EF85D2C72A3C34E909C3195AC4283D33 /* alpha_processing.c */ = {isa = PBXFileReference; includeInIndex = 1; name = alpha_processing.c; path = src/dsp/alpha_processing.c; sourceTree = ""; }; EF87BCE72094E70086C6A87E257D97D9 /* IPAddressV4.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = IPAddressV4.h; path = folly/IPAddressV4.h; sourceTree = ""; }; - EFA3675606B15D277BA608131C2B6151 /* SDAnimatedImageRep.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDAnimatedImageRep.h; path = SDWebImage/Core/SDAnimatedImageRep.h; sourceTree = ""; }; - EFBD4A456ED89497B04A66A5DFD19923 /* SDImageGraphics.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageGraphics.h; path = SDWebImage/Core/SDImageGraphics.h; sourceTree = ""; }; + EFB850B31F34F7E04F799DFC69C4612E /* UIView+React.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "UIView+React.m"; sourceTree = ""; }; + EFD141DC1EAB9E7F0D4A721FFCA200C3 /* RNRootView.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNRootView.xcconfig; sourceTree = ""; }; EFE361B26106E6F84706D937E4E2CC66 /* FarmHash.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FarmHash.h; path = folly/hash/FarmHash.h; sourceTree = ""; }; - F01F18AEA282CB9E34DD14D19C2D63A1 /* FBReactNativeSpec.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBReactNativeSpec.h; path = FBReactNativeSpec/FBReactNativeSpec.h; sourceTree = ""; }; - F04329074D27EAB622ADF38E5694313D /* EXHaptics.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = EXHaptics.xcconfig; sourceTree = ""; }; + F01F30CE19BA84D9736764B3B7DE1E16 /* ObservingInputAccessoryView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ObservingInputAccessoryView.h; path = lib/ObservingInputAccessoryView.h; sourceTree = ""; }; + F041A1ED81DB509451BEAB1A0A955539 /* RCTInspector.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTInspector.mm; sourceTree = ""; }; F04330A728C2393452F55C41156CD42A /* evrpc.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = evrpc.h; path = src/evrpc.h; sourceTree = ""; }; - F04F96BD284F3D632696C76096959613 /* BugsnagReactNative.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = BugsnagReactNative.xcconfig; sourceTree = ""; }; + F06427FA5DBE7CDEE87B2B2DA8EF2E48 /* RCTWeakProxy.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTWeakProxy.h; sourceTree = ""; }; F06CE60C9D286F1F3036A2362259489A /* RangeSse42.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RangeSse42.h; path = folly/detail/RangeSse42.h; sourceTree = ""; }; + F0822D860C7C5F32767F89D0E73CC9A4 /* JSIndexedRAMBundle.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = JSIndexedRAMBundle.h; sourceTree = ""; }; F093CCFA514D482A086778DEBBB51F33 /* format_constants.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = format_constants.h; path = src/webp/format_constants.h; sourceTree = ""; }; F09F1807E45B0D81EF2C3805D8F0CC04 /* GULNetworkURLSession.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GULNetworkURLSession.m; path = GoogleUtilities/Network/GULNetworkURLSession.m; sourceTree = ""; }; - F0AEA7B0AFBBC79FE0CA376439E2A09B /* UMUIManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMUIManager.h; sourceTree = ""; }; F0CB75F2570E2B32699A77004E0331CA /* Singleton.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Singleton.h; path = folly/detail/Singleton.h; sourceTree = ""; }; - F0CC2A5C60683A04E50F08667B3742AC /* BugsnagKSCrashSysInfoParser.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagKSCrashSysInfoParser.m; sourceTree = ""; }; F0E56CB6ACE5471DE50B60FA21BF1E29 /* GULNetworkMessageCode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULNetworkMessageCode.h; path = GoogleUtilities/Network/Private/GULNetworkMessageCode.h; sourceTree = ""; }; - F0F0CA4750B2846C91E0E6F8CC2F958B /* RNFirebaseStorage.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNFirebaseStorage.m; sourceTree = ""; }; F0FB281C37D44B7516BBDC39FE85AF57 /* json_pointer.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = json_pointer.cpp; path = folly/json_pointer.cpp; sourceTree = ""; }; F105840ABB86138B7A45331444829B5E /* CPUThreadPoolExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CPUThreadPoolExecutor.h; path = folly/executors/CPUThreadPoolExecutor.h; sourceTree = ""; }; F10FC9C1FB7665A7F8F40D284DD89B21 /* dsa.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = dsa.h; path = ios/include/openssl/dsa.h; sourceTree = ""; }; F111A9E7C9207F0FD2FF36F1DBE8EE09 /* GDTCORReachability_Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCORReachability_Private.h; path = GoogleDataTransport/GDTCORLibrary/Private/GDTCORReachability_Private.h; sourceTree = ""; }; + F1168FFC600026FF976606675B2864DB /* RNImageCropPicker.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RNImageCropPicker.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; F121CFABC992758DF1463276E3F11DD9 /* TOCroppedImageAttributes.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TOCroppedImageAttributes.h; path = "Objective-C/TOCropViewController/Models/TOCroppedImageAttributes.h"; sourceTree = ""; }; F1300F6438D6713BC5B1068611D50052 /* MPMCQueue.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MPMCQueue.h; path = folly/MPMCQueue.h; sourceTree = ""; }; F13C587249E9D10A20EDB69E61DBF834 /* FIRLogger.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRLogger.h; path = FirebaseCore/Sources/Private/FIRLogger.h; sourceTree = ""; }; F13F38BB52C539680BCA97C0440C4E15 /* CLSLogging.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CLSLogging.h; path = iOS/Crashlytics.framework/Headers/CLSLogging.h; sourceTree = ""; }; - F14592AC28964F7719B2E418774F7A9B /* BSG_KSLogger.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BSG_KSLogger.m; sourceTree = ""; }; F14B6E873AB6F10E262C6D46E36D2BA1 /* KeepaliveTimer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = KeepaliveTimer.h; path = rsocket/internal/KeepaliveTimer.h; sourceTree = ""; }; - F162F61E596682F0B5B70E78B59DA9D3 /* UMNativeModulesProxy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = UMNativeModulesProxy.m; sourceTree = ""; }; + F15177F3F98AB6CCA981FCEEC5CFE2D9 /* BSG_KSSystemInfoC.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSSystemInfoC.h; sourceTree = ""; }; + F167CFFD284B0FFF442ACF950541A2E5 /* SDImageCacheDefine.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageCacheDefine.h; path = SDWebImage/Core/SDImageCacheDefine.h; sourceTree = ""; }; F16FB127DE5B1DF19AA57A28FC72C1F6 /* anim_decode.c */ = {isa = PBXFileReference; includeInIndex = 1; name = anim_decode.c; path = src/demux/anim_decode.c; sourceTree = ""; }; + F176B9B10C37030B40F8D88EED0D9A51 /* RCTBridge.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBridge.h; sourceTree = ""; }; F17EAB6EC5ABDB09AAC7D5AE5ED78FFD /* ExecutorWithPriority.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = ExecutorWithPriority.cpp; path = folly/executors/ExecutorWithPriority.cpp; sourceTree = ""; }; F1912D79F479F748F47918A3423B88C0 /* webpi_dec.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = webpi_dec.h; path = src/dec/webpi_dec.h; sourceTree = ""; }; F19B841F7DA21EA94D9EF149EDAF3178 /* Checksum.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = Checksum.cpp; path = folly/hash/Checksum.cpp; sourceTree = ""; }; - F1A053F801616ED4AD79D36175CDEF89 /* RNGestureHandlerManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNGestureHandlerManager.m; path = ios/RNGestureHandlerManager.m; sourceTree = ""; }; - F1A9580C819BC6B80BEA8F9EB5C50B6F /* SDWebImageCompat.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageCompat.h; path = SDWebImage/Core/SDWebImageCompat.h; sourceTree = ""; }; - F1E839D3BA68E28756EAAC8A5913028E /* BSG_KSCrashReportWriter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashReportWriter.h; sourceTree = ""; }; + F20EFDBA87EE56FC92707CA2A45C76C5 /* MessageQueueThreadCallInvoker.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = MessageQueueThreadCallInvoker.cpp; path = callinvoker/ReactCommon/MessageQueueThreadCallInvoker.cpp; sourceTree = ""; }; + F21249D284935A4E9ACE3232B6CD057C /* UMBridgeModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMBridgeModule.h; path = UMReactNativeAdapter/UMBridgeModule.h; sourceTree = ""; }; + F23246D98774B014519F397FFFD5EDFD /* RCTAnimationUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTAnimationUtils.h; path = Libraries/NativeAnimation/RCTAnimationUtils.h; sourceTree = ""; }; + F23B25CE57184699A97E24551384BA90 /* RNNotifications.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNNotifications.m; path = RNNotifications/RNNotifications.m; sourceTree = ""; }; F24F6CF589AAEA086940626C57E92799 /* FBLPromise+Validate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FBLPromise+Validate.h"; path = "Sources/FBLPromises/include/FBLPromise+Validate.h"; sourceTree = ""; }; + F279545A0943A45D78742438434BFE7E /* BugsnagCrashSentry.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagCrashSentry.m; sourceTree = ""; }; F28C5979359BF6FA62F63507E2E9E14D /* ui.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ui.h; path = ios/include/openssl/ui.h; sourceTree = ""; }; F28F650D8D9AD88285C4A89116F9DB5B /* GULHeartbeatDateStorage.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULHeartbeatDateStorage.h; path = GoogleUtilities/Environment/Public/GULHeartbeatDateStorage.h; sourceTree = ""; }; F2A3C274279BE96B58A5DE58D474AE16 /* MicroLock.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MicroLock.h; path = folly/MicroLock.h; sourceTree = ""; }; - F2C3E67B7EB1144D81752B5938C9B7DC /* RCTConvert+RNNotifications.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "RCTConvert+RNNotifications.m"; path = "RNNotifications/RCTConvert+RNNotifications.m"; sourceTree = ""; }; + F2C9551D85D1D5A383009812457FA039 /* QBAssetsViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = QBAssetsViewController.m; path = ios/QBImagePicker/QBImagePicker/QBAssetsViewController.m; sourceTree = ""; }; F2CBE8588AEC619EF1058D5143DDDEBE /* Pods-RocketChatRN-resources.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-RocketChatRN-resources.sh"; sourceTree = ""; }; F2CDF4230B4B34095A302F4F2B0B66A0 /* GULAppDelegateSwizzler_Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULAppDelegateSwizzler_Private.h; path = GoogleUtilities/AppDelegateSwizzler/Internal/GULAppDelegateSwizzler_Private.h; sourceTree = ""; }; F2D18FD92E5C02179335114DA146D002 /* ClockGettimeWrappers.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = ClockGettimeWrappers.cpp; path = folly/ClockGettimeWrappers.cpp; sourceTree = ""; }; F2E76887F71660FFCDC6651E1CEB12AC /* firebasecore.nanopb.c */ = {isa = PBXFileReference; includeInIndex = 1; name = firebasecore.nanopb.c; path = Firebase/CoreDiagnostics/FIRCDLibrary/Protogen/nanopb/firebasecore.nanopb.c; sourceTree = ""; }; F2E7C88DFCD460A4B46B913ADEB8A641 /* libReact-jsiexecutor.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libReact-jsiexecutor.a"; path = "libReact-jsiexecutor.a"; sourceTree = BUILT_PRODUCTS_DIR; }; + F2F096D7B3C560D1DE69671848D9ADA3 /* RCTModalManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTModalManager.h; sourceTree = ""; }; + F2F37C5F3075E0A85D6D52321252AADA /* RCTActivityIndicatorView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTActivityIndicatorView.h; sourceTree = ""; }; F2F408CA55F852A4D3F12B11AF6E1B74 /* EventHandler.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = EventHandler.cpp; path = folly/io/async/EventHandler.cpp; sourceTree = ""; }; - F2FC7D21C4F7A9EFE1B819387B07DCF2 /* RNScreens.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RNScreens.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; F300B2D3E7E50E8150F6ACF8E3324950 /* TypeList.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TypeList.h; path = folly/detail/TypeList.h; sourceTree = ""; }; - F30CA48894CE9AB7992D762A62BEEB5D /* React.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = React.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - F315CF8B919693216DB3F453348507C8 /* JSDeltaBundleClient.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = JSDeltaBundleClient.h; sourceTree = ""; }; - F31B10DD59C3075F35A0B2716A3B6DFB /* RCTBaseTextViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBaseTextViewManager.h; sourceTree = ""; }; + F310D14408DC9ADCEBE5DF3900588B85 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; F32368D34EB64A99B694CE8986112617 /* FlipperState.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = FlipperState.cpp; path = xplat/Flipper/FlipperState.cpp; sourceTree = ""; }; + F32C9DEFD7D2E12BCD98F3FE66EFBB50 /* EXFilePermissionModule.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXFilePermissionModule.m; path = EXFileSystem/EXFilePermissionModule.m; sourceTree = ""; }; F3311BA7E4CF1072F845E0CB477D51D5 /* SonarKitNetworkPlugin+CPPInitialization.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "SonarKitNetworkPlugin+CPPInitialization.h"; path = "iOS/Plugins/FlipperKitNetworkPlugin/FlipperKitNetworkPlugin/SonarKitNetworkPlugin+CPPInitialization.h"; sourceTree = ""; }; - F3367CCC04776A1175C5A45EFB6529C8 /* BugsnagSink.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagSink.h; sourceTree = ""; }; + F3566984308705C175703B7F89A6833E /* SDAsyncBlockOperation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDAsyncBlockOperation.m; path = SDWebImage/Private/SDAsyncBlockOperation.m; sourceTree = ""; }; F358BACB84136E28A17E34D7C15F5AB1 /* GDTCORLifecycle.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GDTCORLifecycle.m; path = GoogleDataTransport/GDTCORLibrary/GDTCORLifecycle.m; sourceTree = ""; }; - F39A5404AA239D0E75CB950CF411FE80 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; - F3A088F5E94959F5608F4899D57DA206 /* EXVideoThumbnailsModule.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXVideoThumbnailsModule.m; path = EXVideoThumbnails/EXVideoThumbnailsModule.m; sourceTree = ""; }; - F3A0A2FEF9B77CEC928875C842D41586 /* RCTBridgeMethod.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBridgeMethod.h; sourceTree = ""; }; + F35D05315FC6B6B6EDA9DF179E993EE9 /* RNVectorIconsManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNVectorIconsManager.h; path = RNVectorIconsManager/RNVectorIconsManager.h; sourceTree = ""; }; + F37ECB64502A0D830FF2CF8F85A68B42 /* UIColor+SDHexString.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIColor+SDHexString.m"; path = "SDWebImage/Private/UIColor+SDHexString.m"; sourceTree = ""; }; F3AADB7DA7995E8E50D583A2F2D41DFB /* FBLPromise+Async.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FBLPromise+Async.h"; path = "Sources/FBLPromises/include/FBLPromise+Async.h"; sourceTree = ""; }; - F413EB8549ECEB611157781FBA189FF5 /* CoreModulesPlugins.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = CoreModulesPlugins.mm; sourceTree = ""; }; - F420C626CAFF3E6735E6F77B8167E9C5 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; + F3BFB553EE581EF66B7540E20EB2B2D8 /* RNNotificationParser.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNNotificationParser.h; path = RNNotifications/RNNotificationParser.h; sourceTree = ""; }; + F3FE8FACEB7A80859FB6B29D15B360C5 /* react-native-slider-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "react-native-slider-prefix.pch"; sourceTree = ""; }; + F415F6E88CE52F29D00E17C834E365CB /* Yoga.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = Yoga.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + F42DACE44BA7604D9C48616C9FEF332B /* BSG_KSCrashC.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSCrashC.c; sourceTree = ""; }; F43A60CFC55D10B7A676CF564B1E4408 /* Spin.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Spin.h; path = folly/synchronization/detail/Spin.h; sourceTree = ""; }; F43EF1693B9096B253592907C9C4B687 /* AsyncTransport.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AsyncTransport.h; path = folly/io/async/AsyncTransport.h; sourceTree = ""; }; + F44EFE0803F8B53A55186AAA8295928F /* UMSensorsInterface.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMSensorsInterface.xcconfig; sourceTree = ""; }; F45C7EFA0D2C146F8C8BE384EE03B7CF /* StaticSingletonManager.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = StaticSingletonManager.cpp; path = folly/detail/StaticSingletonManager.cpp; sourceTree = ""; }; F46F0D000E791175C14D642397F9E427 /* SpookyHashV1.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = SpookyHashV1.cpp; path = folly/hash/SpookyHashV1.cpp; sourceTree = ""; }; + F4716D0D64532F6E34E33873158CD06E /* REATransitionAnimation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REATransitionAnimation.h; sourceTree = ""; }; F477B5419FE383BCD36D78C7D2DEA362 /* SynchronizedPtr.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SynchronizedPtr.h; path = folly/SynchronizedPtr.h; sourceTree = ""; }; - F48F0353F4F7EE6357B920EF17DCE593 /* BugsnagFileStore.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagFileStore.m; sourceTree = ""; }; - F49072E3106022C4325A6F7AC7A47024 /* EXAVPlayerData.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXAVPlayerData.m; path = EXAV/EXAVPlayerData.m; sourceTree = ""; }; + F47A67C689CCD9CA0744E44505079741 /* RCTPickerManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTPickerManager.m; sourceTree = ""; }; + F48C2FDD95A944210BAC17E3F2A81D10 /* SDImageIOAnimatedCoder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageIOAnimatedCoder.h; path = SDWebImage/Core/SDImageIOAnimatedCoder.h; sourceTree = ""; }; + F48ECF1191ACC5304D8488328ECFF95D /* QBAssetsViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = QBAssetsViewController.h; path = ios/QBImagePicker/QBImagePicker/QBAssetsViewController.h; sourceTree = ""; }; + F4B09EB2C56502336DCA5CA60C0FA235 /* RCTKeyboardObserver.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTKeyboardObserver.h; path = React/CoreModules/RCTKeyboardObserver.h; sourceTree = ""; }; F4C456EFAF93A0A1D60547394235DAA4 /* GoogleDataTransportCCTSupport-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "GoogleDataTransportCCTSupport-dummy.m"; sourceTree = ""; }; - F4D44A24E665E939DDBC6BAB72EAC6BC /* RCTActionSheetManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTActionSheetManager.h; path = React/CoreModules/RCTActionSheetManager.h; sourceTree = ""; }; F4DB2D4FEA0D4D5F688A3E11A90F2F72 /* ScopedTraceSection.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ScopedTraceSection.h; path = folly/tracing/ScopedTraceSection.h; sourceTree = ""; }; F4E2E67AA46EC78C7A9CB72800AEEC2B /* pb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = pb.h; sourceTree = ""; }; - F52F69A8A78568067E27D7CA98BE4C69 /* RCTObjcExecutor.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTObjcExecutor.mm; sourceTree = ""; }; - F5389A68C398F18674C3B6301B3D9BE9 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; + F502C88FF7864718ACCAC37339D2AD72 /* FontAwesome.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = FontAwesome.ttf; path = Fonts/FontAwesome.ttf; sourceTree = ""; }; + F5108F76DDB23647D6A8A6B30B55CD9B /* UMCore.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMCore.xcconfig; sourceTree = ""; }; F53A6E69750806523F38D485292B973C /* F14Table.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = F14Table.h; path = folly/container/detail/F14Table.h; sourceTree = ""; }; - F56B5CF5EB9A68ABE832746E0B370670 /* SDWebImageOptionsProcessor.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWebImageOptionsProcessor.m; path = SDWebImage/Core/SDWebImageOptionsProcessor.m; sourceTree = ""; }; + F5533FF4E173115AA0F77A12282598BC /* UMConstantsInterface.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMConstantsInterface.xcconfig; sourceTree = ""; }; + F55ECEF025F79E3E7E6BAF4979AC34FE /* RCTEventDispatcher.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTEventDispatcher.h; sourceTree = ""; }; + F55F340203A7C818FDDE9F3705310908 /* ModuleRegistry.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = ModuleRegistry.cpp; sourceTree = ""; }; + F568AC3A51A66F4363C1CB1896C4646D /* SimpleLineIcons.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = SimpleLineIcons.ttf; path = Fonts/SimpleLineIcons.ttf; sourceTree = ""; }; F56E6BCC902E5A6906931A4FEDCB7224 /* Stdio.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Stdio.h; path = folly/portability/Stdio.h; sourceTree = ""; }; F57A9E352A753038A63CD62B43664F1F /* FBLPromiseError.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBLPromiseError.h; path = Sources/FBLPromises/include/FBLPromiseError.h; sourceTree = ""; }; + F588CB6A96F0B0EDCE2BCD672E284AED /* React-RCTAnimation-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-RCTAnimation-prefix.pch"; sourceTree = ""; }; F59E426C20672DB4A39D2D32BC4D53FB /* GDTCCTPrioritizer.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GDTCCTPrioritizer.m; path = GoogleDataTransportCCTSupport/GDTCCTLibrary/GDTCCTPrioritizer.m; sourceTree = ""; }; - F5A35DF865955D1D0F752C21439DD2BB /* RCTLayout.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTLayout.m; sourceTree = ""; }; - F5AD7442235FB6BDB4ED75B9F5F8A9DB /* RCTPackagerClient.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTPackagerClient.m; sourceTree = ""; }; - F5ADEEE062EADEFBE896922E862E906F /* BSG_KSSystemInfo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSSystemInfo.h; sourceTree = ""; }; F5AE5ACA4257806B3925AD54D3C082CB /* AsymmetricMemoryBarrier.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = AsymmetricMemoryBarrier.cpp; path = folly/synchronization/AsymmetricMemoryBarrier.cpp; sourceTree = ""; }; F5B9A005C14FA62387D3BB415960382A /* Fixture.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Fixture.h; path = rsocket/benchmarks/Fixture.h; sourceTree = ""; }; F5BD9AF99893C4D79295748F53C95578 /* AsyncSSLSocket.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = AsyncSSLSocket.cpp; path = folly/io/async/AsyncSSLSocket.cpp; sourceTree = ""; }; - F5DBA3F2E8CDCBEF00EBF286758F73E4 /* RCTSurfacePresenterStub.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSurfacePresenterStub.h; sourceTree = ""; }; - F5E0495E51B25D3727E20E65FAC40054 /* RCTNativeAnimatedModule.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTNativeAnimatedModule.mm; sourceTree = ""; }; + F5CCFB431F7C4C78274C702E5C5068EC /* RCTScrollContentShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTScrollContentShadowView.h; sourceTree = ""; }; + F5E574017DE188FB157E9C148E67D9A4 /* ARTGroup.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = ARTGroup.m; path = ios/ARTGroup.m; sourceTree = ""; }; + F5F54331714288D4B87EA907858D17D8 /* React-Core.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-Core.xcconfig"; sourceTree = ""; }; + F604E26AC9E58450ED00F501FB34CF55 /* EXFileSystem-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "EXFileSystem-dummy.m"; sourceTree = ""; }; F605404C83D4809573DBE2B341C7A3F0 /* VirtualExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = VirtualExecutor.h; path = folly/VirtualExecutor.h; sourceTree = ""; }; - F6093427BE39449CF4B7B503DE60F1CA /* RCTBlobPlugins.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTBlobPlugins.mm; sourceTree = ""; }; - F626CA309CF77982C5504E2DAD7F257D /* RCTViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTViewManager.h; sourceTree = ""; }; + F6188B67F727BC8D9803627142F8EFEC /* BSG_KSCrashCallCompletion.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashCallCompletion.h; sourceTree = ""; }; F62789A845A410353364C9043AA03482 /* vp8l_enc.c */ = {isa = PBXFileReference; includeInIndex = 1; name = vp8l_enc.c; path = src/enc/vp8l_enc.c; sourceTree = ""; }; F628CC7BE0AEEA83942594EE661FCFFE /* JemallocHugePageAllocator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = JemallocHugePageAllocator.h; path = folly/experimental/JemallocHugePageAllocator.h; sourceTree = ""; }; + F63CF6D8A75D7791060392A80D1FF74D /* RNCAppearance.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCAppearance.m; path = ios/Appearance/RNCAppearance.m; sourceTree = ""; }; F64A2236E01682D2970A235FBA9C2DAF /* Padded.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Padded.h; path = folly/Padded.h; sourceTree = ""; }; + F65E4A14C98B1F2F8CC5765A052B9CFA /* UIResponder+FirstResponder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIResponder+FirstResponder.h"; path = "lib/UIResponder+FirstResponder.h"; sourceTree = ""; }; + F6A33D5A58626C882225DB518AF72946 /* react-native-notifications.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = "react-native-notifications.podspec"; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + F6BC12CCAC36E171F1E235CC58124D72 /* RCTFileReaderModule.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTFileReaderModule.mm; sourceTree = ""; }; F6C25CC3E1A0256F28D558834D01ED90 /* RSocketServerState.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RSocketServerState.h; path = rsocket/RSocketServerState.h; sourceTree = ""; }; - F6C46D21BE0A2441A6384EEFB91F7ACA /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; - F6CE2FC04ED6483FE6A99948553E7C25 /* UIImage+MultiFormat.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIImage+MultiFormat.m"; path = "SDWebImage/Core/UIImage+MultiFormat.m"; sourceTree = ""; }; - F6D9633881EF5E6D8E4F89C510C6968F /* RCTModalHostView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTModalHostView.m; sourceTree = ""; }; - F6E605DA6AFD3BC9439BAE111882C82E /* BSG_KSCrashSentry_Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashSentry_Private.h; sourceTree = ""; }; F6F1532B40383A3DB8C604FF6B96655F /* FLEXUtility.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FLEXUtility.h; path = iOS/Plugins/FlipperKitNetworkPlugin/SKIOSNetworkPlugin/FLEXNetworkLib/FLEXUtility.h; sourceTree = ""; }; F6F359208C18FDEF52F528F96F110D6F /* quant.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = quant.h; path = src/dsp/quant.h; sourceTree = ""; }; + F6FFE52AE1CBC0B042DF4B3C520778F3 /* RCTProgressViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTProgressViewManager.m; sourceTree = ""; }; + F703EAFE90AEF7E802BEF5394112484B /* zh-Hans.lproj */ = {isa = PBXFileReference; includeInIndex = 1; name = "zh-Hans.lproj"; path = "ios/QBImagePicker/QBImagePicker/zh-Hans.lproj"; sourceTree = ""; }; F71EBF73F354B475D465FF6DE9A66707 /* libReact-RCTBlob.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libReact-RCTBlob.a"; path = "libReact-RCTBlob.a"; sourceTree = BUILT_PRODUCTS_DIR; }; - F71FB544BCBA56AEDEF822FD83066F59 /* RCTDevMenu.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTDevMenu.h; path = React/CoreModules/RCTDevMenu.h; sourceTree = ""; }; F7336868B351AF1E8FF5EE75A11694A0 /* AtomicIntrusiveLinkedList.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AtomicIntrusiveLinkedList.h; path = folly/AtomicIntrusiveLinkedList.h; sourceTree = ""; }; - F74F51402CA616F76A43BEE74FFBA664 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; - F7678F697CCE24251E2DEEB64D3E414A /* SDAnimatedImageView+WebCache.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "SDAnimatedImageView+WebCache.h"; path = "SDWebImage/Core/SDAnimatedImageView+WebCache.h"; sourceTree = ""; }; F785BAF95304001F5E6B0B6185D7BB7E /* demangle.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = demangle.cc; path = src/demangle.cc; sourceTree = ""; }; + F788F960F2FE8AE7C3E9DF1D29939E78 /* RCTSourceCode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTSourceCode.h; path = React/CoreModules/RCTSourceCode.h; sourceTree = ""; }; F794A50F04C838621170BC15768D7CD7 /* InlineExecutor.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = InlineExecutor.cpp; path = folly/executors/InlineExecutor.cpp; sourceTree = ""; }; - F7A0FBDCCD90814E8084C90BA1BAA2AB /* RNCSafeAreaViewLocalData.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCSafeAreaViewLocalData.h; path = ios/SafeAreaView/RNCSafeAreaViewLocalData.h; sourceTree = ""; }; - F7AE66658B6D58193498536A962DE0A1 /* RCTSinglelineTextInputViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSinglelineTextInputViewManager.m; sourceTree = ""; }; + F7B387CEF9B7DC1323039E764E7290AC /* JSCExecutorFactory.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = JSCExecutorFactory.h; sourceTree = ""; }; F7B741A0FE2C31556C7176BDAB4BD8FD /* ProgramOptions.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ProgramOptions.h; path = folly/experimental/ProgramOptions.h; sourceTree = ""; }; - F7CB6BF66BCA18F01B9CF33D6B04566E /* UIImage+Resize.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIImage+Resize.h"; path = "ios/src/UIImage+Resize.h"; sourceTree = ""; }; - F7D1D36337ECA72485D5817D13522685 /* RNFastImage-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNFastImage-prefix.pch"; sourceTree = ""; }; + F7BDC62B2AB23C3D09681D3939BA0C71 /* RNFirebase.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNFirebase.xcconfig; sourceTree = ""; }; + F7BF842F2D161BD3F11404C48C359F4D /* RNEventEmitter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNEventEmitter.m; path = RNNotifications/RNEventEmitter.m; sourceTree = ""; }; + F7C63095C9483BE20BF327642FCFA2F5 /* RCTModalHostViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTModalHostViewManager.h; sourceTree = ""; }; F7EDC18F664B0FDA4C2400EB74F4144F /* AtomicHashUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AtomicHashUtils.h; path = folly/detail/AtomicHashUtils.h; sourceTree = ""; }; F7FA9C670FDACA6DAD2C7B0BC088A8CB /* MallocImpl.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = MallocImpl.cpp; path = folly/memory/detail/MallocImpl.cpp; sourceTree = ""; }; F805A5F2A3FB56443D3089F8902B3ECF /* ProxyLockable-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "ProxyLockable-inl.h"; path = "folly/synchronization/detail/ProxyLockable-inl.h"; sourceTree = ""; }; - F8103D0961FA2AD9D3D3475D5F5BB421 /* RCTTextView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTextView.h; sourceTree = ""; }; - F8198A7A6C2B189CB145A78371FA8AA4 /* RCTConvert+REATransition.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RCTConvert+REATransition.h"; sourceTree = ""; }; - F82298BC5DBE46DE8B924039E3EB09D6 /* EXFileSystem-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "EXFileSystem-dummy.m"; sourceTree = ""; }; - F8498E65BBEA1AC78421FD1CD28DD3C1 /* RNDeviceInfo.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNDeviceInfo.xcconfig; sourceTree = ""; }; + F8571A632FF52A4D8BB24D54FD871303 /* BugsnagKSCrashSysInfoParser.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagKSCrashSysInfoParser.m; sourceTree = ""; }; F85897453E0E73C94F5F641AF96E26FA /* String.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = String.cpp; path = folly/portability/String.cpp; sourceTree = ""; }; - F86499206B3CCEFEDBF06F69F36D7B91 /* RCTUITextView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTUITextView.h; sourceTree = ""; }; + F85A0660BF79342932FF3B60C4FF71B8 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; + F86071C10ED414C07FFA2D7A0F3AA6D1 /* SDWebImage-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "SDWebImage-dummy.m"; sourceTree = ""; }; + F868C93B3C86FF0080F9EAE49E858ADE /* RNFirebaseUtil.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNFirebaseUtil.h; path = RNFirebase/RNFirebaseUtil.h; sourceTree = ""; }; + F86B4084BDBE006107E646C6452C8D26 /* BSG_RFC3339DateTool.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BSG_RFC3339DateTool.m; sourceTree = ""; }; F8756FDD4A52758E94E0B28BBC4574A7 /* GULReachabilityMessageCode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULReachabilityMessageCode.h; path = GoogleUtilities/Reachability/Private/GULReachabilityMessageCode.h; sourceTree = ""; }; - F88A3985D747C9830996E834577B7AB3 /* SDMemoryCache.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDMemoryCache.h; path = SDWebImage/Core/SDMemoryCache.h; sourceTree = ""; }; + F879F8013DC94DDB6A651CD089574CE5 /* MethodCall.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = MethodCall.h; sourceTree = ""; }; F88C0A630ABCAA36EAE04217BF12D102 /* TOCropViewConstants.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TOCropViewConstants.h; path = "Objective-C/TOCropViewController/Constants/TOCropViewConstants.h"; sourceTree = ""; }; F8960E9B87F3A55518983A3C7A995408 /* raw_logging.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = raw_logging.cc; path = src/raw_logging.cc; sourceTree = ""; }; - F8A31A8DA974B49272E80FBD49044CBB /* NSData+ImageContentType.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSData+ImageContentType.h"; path = "SDWebImage/Core/NSData+ImageContentType.h"; sourceTree = ""; }; - F8D8807D2F9F38A8B1D0137B955713B0 /* React-RCTVibration.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = "React-RCTVibration.podspec"; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + F8A2C80712E2830ECB9873DCB6A00ED9 /* RNCSafeAreaViewEdges.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCSafeAreaViewEdges.m; path = ios/SafeAreaView/RNCSafeAreaViewEdges.m; sourceTree = ""; }; + F8BAA4003782CA3A60F2B4D3BB7086B3 /* SDImageCache.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageCache.h; path = SDWebImage/Core/SDImageCache.h; sourceTree = ""; }; F8E0F8EAFEF34E092F06B406FE9E3B18 /* muxi.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = muxi.h; path = src/mux/muxi.h; sourceTree = ""; }; F8EE74F6C35A0C39BFFFD4CB906346B8 /* ssl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ssl.h; path = ios/include/openssl/ssl.h; sourceTree = ""; }; F9082505E190BD8F8AC684C2AF87E5F0 /* PublishProcessor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PublishProcessor.h; path = yarpl/flowable/PublishProcessor.h; sourceTree = ""; }; - F91B915CE87D11F1EC02D7B6AE542EC5 /* RCTTextShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTTextShadowView.m; sourceTree = ""; }; - F9490B778417DFE2B630B576B8871191 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; + F91C8A02C11CEDBF8B71E7580A4C7325 /* QBAssetCell.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = QBAssetCell.h; path = ios/QBImagePicker/QBImagePicker/QBAssetCell.h; sourceTree = ""; }; + F91D4B7109CF2E8FCED0CBC80F266FF8 /* RNFirebaseAdMob.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNFirebaseAdMob.h; sourceTree = ""; }; + F920E5D26F2F6711D709A39866FB9A0A /* RNFirebaseAdMobBannerManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNFirebaseAdMobBannerManager.h; sourceTree = ""; }; + F93AC4B8B0B96DE17BB8F83FB63E6458 /* UMFontScalersManagerInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMFontScalersManagerInterface.h; path = UMFontInterface/UMFontScalersManagerInterface.h; sourceTree = ""; }; + F94B0D2B3AB5111162D15B4C67DA5D69 /* RCTTurboModule.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTTurboModule.mm; sourceTree = ""; }; F958876A082BF810B342435CE3FB5AF6 /* libRCTTypeSafety.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libRCTTypeSafety.a; path = libRCTTypeSafety.a; sourceTree = BUILT_PRODUCTS_DIR; }; - F95EDB6F891DB33312838AF3CFEBCE5D /* RNCCameraRollManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCCameraRollManager.m; path = ios/RNCCameraRollManager.m; sourceTree = ""; }; F96B80676FE63E0D028F1460709D6B88 /* BitIterator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = BitIterator.h; path = folly/container/BitIterator.h; sourceTree = ""; }; F96D58AFECF46661AD69F7873285F7D6 /* FlipperConnectionImpl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FlipperConnectionImpl.h; path = xplat/Flipper/FlipperConnectionImpl.h; sourceTree = ""; }; + F96EF64A44E8970497DDC90707CE5836 /* SDImageLoader.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageLoader.m; path = SDWebImage/Core/SDImageLoader.m; sourceTree = ""; }; F99642E3214AE166E5B20250966902D4 /* StreamRequester.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = StreamRequester.cpp; path = rsocket/statemachine/StreamRequester.cpp; sourceTree = ""; }; - F99A0A68F1381494A19F623FB3B97C43 /* UMKernelService.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMKernelService.h; sourceTree = ""; }; - F9AC5E09B6219F4FAECA474AD5900E6A /* SDImageCache.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageCache.h; path = SDWebImage/Core/SDImageCache.h; sourceTree = ""; }; + F99F1E1E90A8C2BBEEF517DBF4DF16A2 /* EXConstants.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXConstants.m; path = EXConstants/EXConstants.m; sourceTree = ""; }; F9B49BDB2903B8C029C685B367994EEE /* ConcurrentSkipList.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ConcurrentSkipList.h; path = folly/ConcurrentSkipList.h; sourceTree = ""; }; F9BA8C020E8A45274DCBB957FFA3E1BC /* ChecksumDetail.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ChecksumDetail.h; path = folly/hash/detail/ChecksumDetail.h; sourceTree = ""; }; + F9D00D29DD456C4EABBD99588E3E8E88 /* KeyCommands-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "KeyCommands-dummy.m"; sourceTree = ""; }; F9D06E8021AD975CEFC1410588A0EDBF /* e_os2.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = e_os2.h; path = ios/include/openssl/e_os2.h; sourceTree = ""; }; F9DA532F1B119E3069F870EED104B2FB /* SysFile.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SysFile.h; path = folly/portability/SysFile.h; sourceTree = ""; }; - F9E2008C989F4237835E3833036DF057 /* LNInterpolable.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = LNInterpolable.m; sourceTree = ""; }; F9EA10CB86F545303F91BF46197EE7D6 /* Crashlytics.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = Crashlytics.xcconfig; sourceTree = ""; }; F9EAC10DE40C6EB5700CA74AAC9E03FA /* SSLContext.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = SSLContext.cpp; path = folly/io/async/SSLContext.cpp; sourceTree = ""; }; - FA1617111E51F830287C52C9066B2E55 /* EXVideoManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = EXVideoManager.m; sourceTree = ""; }; FA17742F16077F42413F16F266817EAC /* RangeCommon.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = RangeCommon.cpp; path = folly/detail/RangeCommon.cpp; sourceTree = ""; }; - FA26F5CD6039D854B695DE1B9100EB5E /* experiments-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "experiments-inl.h"; sourceTree = ""; }; + FA344C3855C0E0D813CC3A07CD96FD9A /* BSG_KSCrashSentry_CPPException.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSCrashSentry_CPPException.mm; sourceTree = ""; }; FA584A9A692794837A7D5B9895F4B148 /* common_sse2.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = common_sse2.h; path = src/dsp/common_sse2.h; sourceTree = ""; }; - FA69A99024BDCBE4333176094838F08B /* RCTLayout.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTLayout.h; sourceTree = ""; }; - FA9DD52D3ED759F100B2EDAFDF5E699C /* RCTDevLoadingView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTDevLoadingView.h; sourceTree = ""; }; - FAA104852192F9F2689C07B555B3293D /* SDDiskCache.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDDiskCache.h; path = SDWebImage/Core/SDDiskCache.h; sourceTree = ""; }; + FA8D33F24E77B5DEC4B298DA68780BE8 /* RNGestureHandlerEvents.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNGestureHandlerEvents.h; path = ios/RNGestureHandlerEvents.h; sourceTree = ""; }; + FA8EAA9C71DDEB34B6E5D073854CD31F /* BugsnagSessionFileStore.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagSessionFileStore.h; sourceTree = ""; }; FAA8F78A3513D80C50FF65E18B5F8F0A /* GDTCOREvent_Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCOREvent_Private.h; path = GoogleDataTransport/GDTCORLibrary/Private/GDTCOREvent_Private.h; sourceTree = ""; }; - FABD8E76822F5C6BF39C74CB704D5A8B /* QBVideoIconView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = QBVideoIconView.m; path = ios/QBImagePicker/QBImagePicker/QBVideoIconView.m; sourceTree = ""; }; - FAE1EDA8C27D4883EC4479E376EDA087 /* UMPermissionsInterface.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMPermissionsInterface.xcconfig; sourceTree = ""; }; - FAE48DC6CFAB94B34462D824F058AFCB /* RNLocalize-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNLocalize-dummy.m"; sourceTree = ""; }; + FADCB19DDD8851D0D167270D30A74E2B /* BSG_KSString.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSString.h; sourceTree = ""; }; FAE8D97D54BF3960347DC80964A857B4 /* dec_mips_dsp_r2.c */ = {isa = PBXFileReference; includeInIndex = 1; name = dec_mips_dsp_r2.c; path = src/dsp/dec_mips_dsp_r2.c; sourceTree = ""; }; - FAFD364A32A0320AB9E8550CAC48CB22 /* BSG_RFC3339DateTool.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_RFC3339DateTool.h; sourceTree = ""; }; + FAF75F2BC4C588B84E1F34EBC56716E7 /* RCTBaseTextViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTBaseTextViewManager.m; sourceTree = ""; }; + FAFEF6C60948663BA51B3996AE82FE4E /* RCTWebSocketExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTWebSocketExecutor.h; path = React/CoreModules/RCTWebSocketExecutor.h; sourceTree = ""; }; + FB1D49F917FE2E2982946838B08AA1AC /* RNFirebaseAdMobBannerManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNFirebaseAdMobBannerManager.m; sourceTree = ""; }; FB2595A08EDC1CF5D9498A7D0C39F163 /* DynamicParser.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DynamicParser.h; path = folly/experimental/DynamicParser.h; sourceTree = ""; }; + FB30611A5F577518B0A1EA6896A717CE /* RNFirebaseAdMobInterstitial.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNFirebaseAdMobInterstitial.m; sourceTree = ""; }; + FB3155D2A8179FCA4521BD598B5232AC /* RCTNetworking.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTNetworking.h; path = Libraries/Network/RCTNetworking.h; sourceTree = ""; }; + FB321BADAFA9397745118AE2D9F5D006 /* SDInternalMacros.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDInternalMacros.h; path = SDWebImage/Private/SDInternalMacros.h; sourceTree = ""; }; FB37D546EB0080A6541C5BD705C2E52F /* FKPortForwardingServer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FKPortForwardingServer.h; path = iOS/FlipperKit/FKPortForwarding/FKPortForwardingServer.h; sourceTree = ""; }; - FB7AD6B3ADA10DF50D786C20607F7CB7 /* React-Core.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = "React-Core.podspec"; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + FB4894EB93A32A29593D7C21C5BC5206 /* SDWebImageDownloaderDecryptor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageDownloaderDecryptor.h; path = SDWebImage/Core/SDWebImageDownloaderDecryptor.h; sourceTree = ""; }; + FB5E02F705B5785F5C448E7F5BB16885 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; + FB756877FF590DEFF1987C875B4D4D47 /* react-native-cameraroll.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = "react-native-cameraroll.podspec"; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + FB75CC17DF6EE4993179AFAEDD6BAAE1 /* react-native-document-picker.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = "react-native-document-picker.podspec"; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + FB7E71716798790222C019BF31D097D7 /* React-cxxreact.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-cxxreact.xcconfig"; sourceTree = ""; }; + FB8DD48B45AF9489F3422CCD27B9D3BF /* UMPermissionsInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMPermissionsInterface.h; path = UMPermissionsInterface/UMPermissionsInterface.h; sourceTree = ""; }; FB9ACCB262979045248720B56036D60E /* StringKeyedMap.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = StringKeyedMap.h; path = folly/experimental/StringKeyedMap.h; sourceTree = ""; }; + FB9F0EF2E722FA751011AA90735B4349 /* RCTRequired.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RCTRequired.xcconfig; sourceTree = ""; }; FBA0837C03BCC9FE4E8F7AB2C57E4B23 /* Sched.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = Sched.cpp; path = folly/portability/Sched.cpp; sourceTree = ""; }; FBA85ACF43FF0FAEF4C6707191AD5DE6 /* SKBufferingPlugin+CPPInitialization.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "SKBufferingPlugin+CPPInitialization.h"; path = "iOS/Plugins/FlipperKitNetworkPlugin/FlipperKitNetworkPlugin/SKBufferingPlugin+CPPInitialization.h"; sourceTree = ""; }; FBCD2C9820EF885E9D7871FE7CCEF998 /* FIRCoreDiagnosticsConnector.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCoreDiagnosticsConnector.h; path = FirebaseCore/Sources/Private/FIRCoreDiagnosticsConnector.h; sourceTree = ""; }; FBD14A3280D3F0EAC56BEE624043B955 /* MallctlHelper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MallctlHelper.h; path = folly/memory/MallctlHelper.h; sourceTree = ""; }; - FC0FBCEDAA524F547423E330109EF828 /* IOS7Polyfill.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = IOS7Polyfill.h; path = ios/IOS7Polyfill.h; sourceTree = ""; }; - FC13892E86EE8C031817B89F4C794345 /* RCTRequired.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTRequired.h; path = RCTRequired/RCTRequired.h; sourceTree = ""; }; - FC173FDB05B7BEFFF5A3A8234F36C097 /* REABezierNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REABezierNode.m; sourceTree = ""; }; + FBD8E3F4B4ED49CD6910E86F1AE7885D /* RCTSpringAnimation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSpringAnimation.h; sourceTree = ""; }; + FBDBD188870AB892C69DFBC5EF887A83 /* SDImageLoader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageLoader.h; path = SDWebImage/Core/SDImageLoader.h; sourceTree = ""; }; + FBE0FCA67C09C9EE5D7F24219E390E2C /* RCTRequired.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTRequired.h; path = RCTRequired/RCTRequired.h; sourceTree = ""; }; + FBFC30F32120E94E520F8ADA9BF1F696 /* NSImage+Compatibility.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSImage+Compatibility.h"; path = "SDWebImage/Core/NSImage+Compatibility.h"; sourceTree = ""; }; FC29260E3B6C1C5EBC8743347383E8F6 /* da-DK.lproj */ = {isa = PBXFileReference; includeInIndex = 1; name = "da-DK.lproj"; path = "Objective-C/TOCropViewController/Resources/da-DK.lproj"; sourceTree = ""; }; + FC29D92F99AB6BCBFBF94C7B4DB85DA6 /* RCTNativeModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTNativeModule.h; sourceTree = ""; }; FC3C5BF456C03582D51729D8F77A34D9 /* RecordIO.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RecordIO.h; path = folly/io/RecordIO.h; sourceTree = ""; }; FC532428432E804195A4FCFA849F055A /* Flipper-DoubleConversion-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Flipper-DoubleConversion-dummy.m"; sourceTree = ""; }; FC5A3E541C208102CA0FA2FE082E6974 /* IndexedMemPool.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = IndexedMemPool.h; path = folly/IndexedMemPool.h; sourceTree = ""; }; FC6047C7715AC0C09653607C8FEC3E33 /* Singleton-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "Singleton-inl.h"; path = "folly/Singleton-inl.h"; sourceTree = ""; }; - FC60657ABF083F4E205C72EFD4A89ED6 /* UMModuleRegistry.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMModuleRegistry.h; sourceTree = ""; }; FC645CA549A188CF71F5B24852F61F73 /* RSocketRequester.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RSocketRequester.h; path = rsocket/RSocketRequester.h; sourceTree = ""; }; - FC67C6BDDEAF5A2442364063DE94D1BB /* RNUserDefaults.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RNUserDefaults.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - FC68D9162CBA36911F5898E1AEAA0A3B /* RNCSafeAreaView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCSafeAreaView.m; path = ios/SafeAreaView/RNCSafeAreaView.m; sourceTree = ""; }; FC68EA81DFB6AFC80791473DFEFA648E /* IPAddress.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = IPAddress.h; path = folly/detail/IPAddress.h; sourceTree = ""; }; - FC6F87B7F612DF3143D29D6AE4896240 /* RCTInspectorPackagerConnection.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTInspectorPackagerConnection.h; sourceTree = ""; }; + FC6C7C1163FF79760B0D649CB5C81C66 /* React-RCTNetwork-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-RCTNetwork-prefix.pch"; sourceTree = ""; }; FC8A23409DD44B5F9F4C09C9F1739D71 /* F14Table.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = F14Table.cpp; path = folly/container/detail/F14Table.cpp; sourceTree = ""; }; FC934A18A4378BE16D1C1A8EB50DA6FE /* tls1.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = tls1.h; path = ios/include/openssl/tls1.h; sourceTree = ""; }; - FC9BCDA28BEB23EC13E2DC0BD9A1CD6E /* SDWebImageDownloaderResponseModifier.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageDownloaderResponseModifier.h; path = SDWebImage/Core/SDWebImageDownloaderResponseModifier.h; sourceTree = ""; }; - FCA944816518E50AC3DD696784739696 /* QBAssetsViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = QBAssetsViewController.h; path = ios/QBImagePicker/QBImagePicker/QBAssetsViewController.h; sourceTree = ""; }; FCBB5CDE0891A424562D3C9DCB1D606E /* cached-powers.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "cached-powers.h"; path = "double-conversion/cached-powers.h"; sourceTree = ""; }; + FCBB799233713D6125A6EF556649905A /* RNPushKit.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNPushKit.m; path = RNNotifications/RNPushKit.m; sourceTree = ""; }; + FCC02691A09920C2F75CF333B48B1A1E /* EXAppleAuthentication.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = EXAppleAuthentication.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; FCC1E7218B355A770625F3479BA534A8 /* http.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = http.h; path = src/event2/http.h; sourceTree = ""; }; FCE8F09C178656DBDAFDA0B025C9066A /* ReentrantAllocator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ReentrantAllocator.h; path = folly/memory/ReentrantAllocator.h; sourceTree = ""; }; - FCF1E186581D4AB90F54D0F475088693 /* BugsnagUser.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagUser.m; sourceTree = ""; }; + FCE9A9C4C8B59B9F1DCD731805B34181 /* RCTAlertManager.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTAlertManager.mm; sourceTree = ""; }; FCF61D9B2B75054A9A3185DDC609B7FF /* libSDWebImageWebPCoder.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libSDWebImageWebPCoder.a; path = libSDWebImageWebPCoder.a; sourceTree = BUILT_PRODUCTS_DIR; }; FD101156B2BC06522BA75AE5CBC21471 /* ConsumerBase.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = ConsumerBase.cpp; path = rsocket/statemachine/ConsumerBase.cpp; sourceTree = ""; }; + FD20870EF3F3A46EB58FFC48DB1B5224 /* SDAnimatedImageView+WebCache.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "SDAnimatedImageView+WebCache.m"; path = "SDWebImage/Core/SDAnimatedImageView+WebCache.m"; sourceTree = ""; }; FD21676449E7EEF83007E2106E0355B9 /* StringKeyedUnorderedMap.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = StringKeyedUnorderedMap.h; path = folly/experimental/StringKeyedUnorderedMap.h; sourceTree = ""; }; - FD2915E38674C2C900EFA33041163379 /* EXReactNativeUserNotificationCenterProxy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXReactNativeUserNotificationCenterProxy.m; path = EXPermissions/EXReactNativeUserNotificationCenterProxy.m; sourceTree = ""; }; FD37D9DB352ACC3730DA54F00CAF1728 /* DoubleConversion-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "DoubleConversion-prefix.pch"; sourceTree = ""; }; FD427A3E7446688D2E946889E162EF7C /* Combine.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Combine.h; path = folly/gen/Combine.h; sourceTree = ""; }; FD4CBEB374B0D3ABC89AA41A573F7D51 /* FirebaseCore.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = FirebaseCore.xcconfig; sourceTree = ""; }; - FD61AA0240C1699452A5688EF562C34A /* RNFetchBlobNetwork.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNFetchBlobNetwork.h; path = ios/RNFetchBlobNetwork.h; sourceTree = ""; }; + FD51AAA3719AD0CF882F25611059F1A8 /* RCTNetworkPlugins.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTNetworkPlugins.h; path = Libraries/Network/RCTNetworkPlugins.h; sourceTree = ""; }; + FD565267FFB4070334FDBE9D3B727745 /* EXAppleAuthentication.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = EXAppleAuthentication.xcconfig; sourceTree = ""; }; + FD577C2F7F91F5B261EED150577BB210 /* JsArgumentHelpers.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = JsArgumentHelpers.h; sourceTree = ""; }; FD6708B675C2F8B1F60BD6569F43FE01 /* muxedit.c */ = {isa = PBXFileReference; includeInIndex = 1; name = muxedit.c; path = src/mux/muxedit.c; sourceTree = ""; }; - FD6B34FC6E26776DA0EBE08258EAB0FF /* RNReanimated.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNReanimated.xcconfig; sourceTree = ""; }; - FDA2307EF278D12863DA802831D9EA81 /* UMTaskLaunchReason.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMTaskLaunchReason.h; path = UMTaskManagerInterface/UMTaskLaunchReason.h; sourceTree = ""; }; + FD8C98C03E189AC8EA90F9C6621B52C5 /* SDAnimatedImageView+WebCache.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "SDAnimatedImageView+WebCache.h"; path = "SDWebImage/Core/SDAnimatedImageView+WebCache.h"; sourceTree = ""; }; + FDA6A3D8F18E9D02D90C74DF636D1B74 /* RNDeviceInfo.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RNDeviceInfo.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; FDB002D534600214F4271BBA8E723272 /* backward_references_enc.c */ = {isa = PBXFileReference; includeInIndex = 1; name = backward_references_enc.c; path = src/enc/backward_references_enc.c; sourceTree = ""; }; - FDB87EC9C7DA726F66E1568B61EB1DCE /* UMCameraInterface.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = UMCameraInterface.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - FDC5BC8B851B9E5FF7B416AB1BDD8C10 /* RCTSafeAreaView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSafeAreaView.m; sourceTree = ""; }; - FDD46653AD02B0C0FB80E8DD6D577764 /* RCTRedBoxExtraDataViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTRedBoxExtraDataViewController.m; sourceTree = ""; }; + FDBB35EFC537ABD82E88A8DCAC345F1C /* RNSScreenContainer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNSScreenContainer.h; path = ios/RNSScreenContainer.h; sourceTree = ""; }; FDDE42B7E3BA3D737A67D830BA7CB2F5 /* SKButtonDescriptor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SKButtonDescriptor.h; path = iOS/Plugins/FlipperKitLayoutPlugin/FlipperKitLayoutPlugin/descriptors/SKButtonDescriptor.h; sourceTree = ""; }; + FDF07E2256DA17120878011408E9FFC6 /* RCTDeviceInfo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTDeviceInfo.h; path = React/CoreModules/RCTDeviceInfo.h; sourceTree = ""; }; FDF3EB101141ED2880B209625EBD273C /* AsyncGeneratorShim.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AsyncGeneratorShim.h; path = yarpl/flowable/AsyncGeneratorShim.h; sourceTree = ""; }; - FDF5377FFC3A9BA9CC53D6C97ADD2E4E /* react-native-jitsi-meet-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "react-native-jitsi-meet-dummy.m"; sourceTree = ""; }; - FDFEC8B96013B1DE8EFFE4967BC17D42 /* SDAnimatedImage.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDAnimatedImage.m; path = SDWebImage/Core/SDAnimatedImage.m; sourceTree = ""; }; FE081383A92435653EE42E2C8C4EAB5D /* FlipperStep.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FlipperStep.h; path = xplat/Flipper/FlipperStep.h; sourceTree = ""; }; + FE09B14E292E628590EBAA410326B953 /* EXImageLoader.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = EXImageLoader.xcconfig; sourceTree = ""; }; FE14511732DF9092162809773043F4D5 /* 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 = ""; }; - FE19B7DAAB2672D88B1F5E74DE62B517 /* RCTRawTextViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTRawTextViewManager.h; sourceTree = ""; }; FE1E812071397E31AE21DFF368B781B1 /* TOCropViewControllerBundle.bundle */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; name = TOCropViewControllerBundle.bundle; path = "TOCropViewController-TOCropViewControllerBundle.bundle"; sourceTree = BUILT_PRODUCTS_DIR; }; + FE222648312FC765F32405109A39FF59 /* RCTMaskedViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTMaskedViewManager.h; sourceTree = ""; }; FE2D7DF4575D500D9A9592204018B389 /* SSLSession.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SSLSession.h; path = folly/ssl/SSLSession.h; sourceTree = ""; }; - FE2D90C34D9C0A9A6644DEAEDC0436CB /* RCTErrorCustomizer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTErrorCustomizer.h; sourceTree = ""; }; - FE33B6D87F46148EA40455A33D94BA39 /* RNFirebaseAdMob.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNFirebaseAdMob.m; sourceTree = ""; }; - FE46EB0DFA751BDEFDEC9AAB2626A64D /* UMCore-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "UMCore-prefix.pch"; sourceTree = ""; }; - FE7137F593DB4D74102C04004E6ECE76 /* REAModule.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = REAModule.m; path = ios/REAModule.m; sourceTree = ""; }; + FE5FB221275BC08195438E6A375AF4EB /* RCTImageViewManager.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTImageViewManager.mm; sourceTree = ""; }; FE7B9294FF05AAFD1653E2104E10844A /* libReact-RCTAnimation.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libReact-RCTAnimation.a"; path = "libReact-RCTAnimation.a"; sourceTree = BUILT_PRODUCTS_DIR; }; + FE7DAAA929184EE2972600D683C3F606 /* SDImageFrame.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageFrame.h; path = SDWebImage/Core/SDImageFrame.h; sourceTree = ""; }; FE820CDC63138126A93DFA9D1289691C /* FlipperRSocketResponder.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = FlipperRSocketResponder.cpp; path = xplat/Flipper/FlipperRSocketResponder.cpp; sourceTree = ""; }; - FE86AD7E797D9914BE9A74EC7BC13ADF /* BSG_KSMach_Arm64.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSMach_Arm64.c; sourceTree = ""; }; - FE96DC8BB3D1E56398BB5DC38C611909 /* RNFirebaseDatabase.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNFirebaseDatabase.m; sourceTree = ""; }; FE9B33B992732EE00524ABA85B7829D1 /* ieee.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ieee.h; path = "double-conversion/ieee.h"; sourceTree = ""; }; + FEA9A464E6CA3A4057B3414E672AD6B7 /* RCTNetworking.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTNetworking.mm; sourceTree = ""; }; + FEAD297F7DAC54FCDAAE8AF277732D69 /* RCTParserUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTParserUtils.h; sourceTree = ""; }; FEB3E3A918DA80435DD0BC14CF927F1F /* Frame.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Frame.h; path = rsocket/framing/Frame.h; sourceTree = ""; }; - FEF078F0F06D226117C9B44CCF7A934A /* BugsnagErrorReportApiClient.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagErrorReportApiClient.m; sourceTree = ""; }; + FECC29C6CD052CA647018FD2E22DA0DE /* RCTSpringAnimation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSpringAnimation.m; sourceTree = ""; }; + FED2C434111B58544FE00142915D2BB1 /* SDImageCacheConfig.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageCacheConfig.h; path = SDWebImage/Core/SDImageCacheConfig.h; sourceTree = ""; }; + FEF28775DEFA2385EB86C92F748330A6 /* ARTSolidColor.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = ARTSolidColor.m; sourceTree = ""; }; + FEF30937C7417CE5CEB42200DA9287A4 /* RNBridgeModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNBridgeModule.h; path = RNNotifications/RNBridgeModule.h; sourceTree = ""; }; FF0C368240181DC19A047556A75A06A1 /* EventBaseThread.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = EventBaseThread.cpp; path = folly/io/async/EventBaseThread.cpp; sourceTree = ""; }; + FF292360ACBBCCEF30A4CC47FC351942 /* RNDateTimePicker-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNDateTimePicker-prefix.pch"; sourceTree = ""; }; FF399EC9637444DDFFBABC8692C8FA70 /* FBLPromise+Wrap.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "FBLPromise+Wrap.m"; path = "Sources/FBLPromises/FBLPromise+Wrap.m"; sourceTree = ""; }; - FF4202637A81AEA50739266A3B02FCCA /* REACallFuncNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REACallFuncNode.m; sourceTree = ""; }; - FF797AFF7642211A0E1F523358E1D58F /* RCTConvert.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTConvert.m; sourceTree = ""; }; - FF7A46FBAAA619DA4120EFA07966DA0E /* ARTSurfaceViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = ARTSurfaceViewManager.h; sourceTree = ""; }; + FF4714A3879493644B3D4DC29109E32F /* RCTNativeAnimatedModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTNativeAnimatedModule.h; path = Libraries/NativeAnimation/RCTNativeAnimatedModule.h; sourceTree = ""; }; + FF69B0975F1DCD7AEFAD2F90486ED57D /* RCTTextViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTextViewManager.h; sourceTree = ""; }; + FF8D4BFBF8C8FED9E95609E2E7DF692A /* RNUserDefaults.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNUserDefaults.h; path = ios/RNUserDefaults.h; sourceTree = ""; }; FF91004CA8D43870E149DF688938A87C /* SocketFileDescriptorMap.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SocketFileDescriptorMap.h; path = folly/net/detail/SocketFileDescriptorMap.h; sourceTree = ""; }; + FF970CB46DC1A064CDF0ED99E28CBE3A /* React-RCTSettings.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = "React-RCTSettings.podspec"; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + FFB28A7BE52FA9FC2E26FC5B3F39A1DD /* UMUtilities.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMUtilities.h; path = UMCore/UMUtilities.h; sourceTree = ""; }; FFB6A79C2797E4E6E8D7E12A68887DBA /* Base.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Base.h; path = folly/gen/Base.h; sourceTree = ""; }; FFBD976BE791AD9DDF1BC7B789CF0041 /* AtFork.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = AtFork.cpp; path = folly/detail/AtFork.cpp; sourceTree = ""; }; FFD4D97C2F3F13F89A50B8B6C6E52B07 /* StreamFragmentAccumulator.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = StreamFragmentAccumulator.cpp; path = rsocket/statemachine/StreamFragmentAccumulator.cpp; sourceTree = ""; }; @@ -10245,64 +10247,14 @@ path = Firebase; sourceTree = ""; }; - 00A079864AD33771F2A53BCE5E0B145F /* Pod */ = { + 009C09204D8309F2BE9B076B0AC7ED4A /* messaging */ = { isa = PBXGroup; children = ( - FDB87EC9C7DA726F66E1568B61EB1DCE /* UMCameraInterface.podspec */, + 1A28F957568227D81348FE6BF5774559 /* RNFirebaseMessaging.h */, + 3D11D0A873DF3F8BAABDB68DF0556EBE /* RNFirebaseMessaging.m */, ); - name = Pod; - sourceTree = ""; - }; - 00B176A437B84AD0E5FF29B7160CFAC4 /* Pod */ = { - isa = PBXGroup; - children = ( - 755B3090F7C748B785591640685B7DD1 /* RNFirebase.podspec */, - ); - name = Pod; - sourceTree = ""; - }; - 0195942E39A8F0E0C975DC2EF4643C08 /* TextInput */ = { - isa = PBXGroup; - children = ( - 08ABEBB9725655CC6ED26B3DEDB4CA00 /* RCTBackedTextInputDelegate.h */, - EDEFE166DD7CD1DDB8170EB2EDC5647C /* RCTBackedTextInputDelegateAdapter.h */, - D674B7043399AE923A8080EB3E0DD7B3 /* RCTBackedTextInputViewProtocol.h */, - CC268622DF95F0EB5FF95B5D1027B2AD /* RCTBaseTextInputShadowView.h */, - AD3342661710A1005E85BC5965CB60F6 /* RCTBaseTextInputView.h */, - 3636F14631625280E28D82BACF327AEB /* RCTBaseTextInputViewManager.h */, - D93AE0391E8B04BF035C5947E9A419FE /* RCTInputAccessoryShadowView.h */, - 02EACCEF85C6401CE759EC23BFD20E25 /* RCTInputAccessoryView.h */, - 71531F4D01A58061478E016FA6E16A8B /* RCTInputAccessoryViewContent.h */, - B16549F7FED2D0ACB373B44ACA8AC112 /* RCTInputAccessoryViewManager.h */, - C64946AD6C95C8CC4F360037CB623723 /* RCTTextSelection.h */, - 9DA30316620B5362601D5BD1EF70BF5D /* Multiline */, - A78D1B9F33705E69D8CE3AE6B6568F34 /* Singleline */, - ); - name = TextInput; - path = Libraries/Text/TextInput; - sourceTree = ""; - }; - 022CDCB55D54F00EBD4BB6B240C8815E /* React-jsinspector */ = { - isa = PBXGroup; - children = ( - 32D8F496A70588E5E81E35795E7BD3EB /* InspectorInterfaces.cpp */, - D5B352B7AC0F23E844B39268237DF74C /* InspectorInterfaces.h */, - 8F297E5EB29BF8AFD4F647BDF4BA0188 /* Pod */, - 02B5FE0E6EA60F77EAF971E472504A0A /* Support Files */, - ); - name = "React-jsinspector"; - path = "../../node_modules/react-native/ReactCommon/jsinspector"; - sourceTree = ""; - }; - 02B5FE0E6EA60F77EAF971E472504A0A /* Support Files */ = { - isa = PBXGroup; - children = ( - 0E4627AF647F69A0666BB332B99DFB32 /* React-jsinspector.xcconfig */, - C447C2F56F60AB7FBB7B476E7BE16CF5 /* React-jsinspector-dummy.m */, - EDB961063E6B91D50C655FB6D99E7937 /* React-jsinspector-prefix.pch */, - ); - name = "Support Files"; - path = "../../../../ios/Pods/Target Support Files/React-jsinspector"; + name = messaging; + path = RNFirebase/messaging; sourceTree = ""; }; 02B9B4543CCDD217470D0F3A1DB86777 /* Fabric */ = { @@ -10317,31 +10269,12 @@ path = Fabric; sourceTree = ""; }; - 02E1FA65B159716F1B71BBCBBC48444F /* RNRootView */ = { + 03935AEED0233E5E0069D327ADED3551 /* turbomodule */ = { isa = PBXGroup; children = ( - AF1F6FD35CBC3BA539E068BB68FA6300 /* RootView.h */, - 9DD6B4AD935BF557920D22C91DE77005 /* RootView.m */, - 224E968E09E112B6026EDF9E9E6A13CE /* Pod */, - F83F66880ABE8AF483C777FA6360A013 /* Support Files */, + DF8DE5793B7A7EB3BA27B244274C97E3 /* core */, ); - name = RNRootView; - path = "../../node_modules/rn-root-view"; - sourceTree = ""; - }; - 045BC7589D43B21F9E8D5C1AEAD08961 /* Resources */ = { - isa = PBXGroup; - children = ( - AF46CB11B96AE2F376EA3DBCCE72CE3A /* de.lproj */, - 5CA21ACF7962D1714E14223EB2D8BCDF /* en.lproj */, - D5A70010BFF9BA939B57367CD2398C01 /* es.lproj */, - 516A725FD2FA0C22DB6B7DB0B99F417C /* fr.lproj */, - C45617988D2E356E57BF3F7A0FE0E174 /* ja.lproj */, - 8E76D6C44A81A38F97B20CB129A923D3 /* pl.lproj */, - 757B5E8A67E8D556A6A4A5C8AE81BD35 /* QBImagePicker.storyboard */, - 306C50F833A0809C36C0DD5B74E014D1 /* zh-Hans.lproj */, - ); - name = Resources; + name = turbomodule; sourceTree = ""; }; 0479CE164E19B7899B8DD49B70760072 /* Crashlytics */ = { @@ -10361,374 +10294,185 @@ path = Crashlytics; sourceTree = ""; }; - 05092DF600E7A7957FF4F53F9A3A8149 /* Profiler */ = { + 052224516D405AFF8E6B0BA7D0D64857 /* Pod */ = { isa = PBXGroup; children = ( - D464809C3C3854D1F9775A805FC36A2C /* RCTMacros.h */, - 209CA054AFC6D7B52A3633988433EACE /* RCTProfile.h */, - 081E5EECE46CD1A347C6EF95EB9C8529 /* RCTProfile.m */, - 54A3463CC32DA92D00E4D68BA05B415E /* RCTProfileTrampoline-arm.S */, - 9F805C09F19ACC63F9DA6181B3059F82 /* RCTProfileTrampoline-arm64.S */, - 2B5B4D65517EA9E604FDECF4A1846876 /* RCTProfileTrampoline-i386.S */, - 67DE68077134FE64C136C6E93320E3E3 /* RCTProfileTrampoline-x86_64.S */, - ); - name = Profiler; - path = React/Profiler; - sourceTree = ""; - }; - 05BE414C0768A61070674D2FE684EF11 /* Pod */ = { - isa = PBXGroup; - children = ( - C75D22E6E9E3499FEE0A3861088D7C3F /* LICENSE */, - 1A3B2D322C2010B68E5E905B86DF2C62 /* README.md */, - B7A321B55CC1F2DCA106C34A4E57F86E /* rn-extensions-share.podspec */, + 02DB79CDC0B9E865F7A2FAED587BBCFE /* LICENSE */, + 7902601D1679CE7746DB860DA70C5D14 /* README.md */, + 5E3E1B3686FD88301EB36FFA941CE2C4 /* RNBootSplash.podspec */, ); name = Pod; sourceTree = ""; }; - 072E58720E64EFBFFCB06BEB9058C49F /* Requesters */ = { + 05D62F4CCB08B73EF77BD8EF1C3A070F /* UMModuleRegistry */ = { isa = PBXGroup; children = ( - 85F8D5372BED8FB4C056F83AA254D36F /* RemoteNotification */, - A7C96B52313A17DA4FD956C2A944AD03 /* UserNotification */, + CE5D5C6FCCCC0DEA7E9C7F3B7EDEED30 /* UMModuleRegistry.h */, + B62DE4832C1D15758D7BBAC7DC334C78 /* UMModuleRegistry.m */, + 1A252F8F2A3346D5D48322B8C0E7524E /* UMModuleRegistryDelegate.h */, + ); + name = UMModuleRegistry; + path = UMCore/UMModuleRegistry; + sourceTree = ""; + }; + 0723016064C5C27AF3F442F3FB2DB09C /* Singleline */ = { + isa = PBXGroup; + children = ( + E3D89053C2BC8351F351CECAE1B7878B /* RCTSinglelineTextInputView.m */, + E47100F23244066B9AD6894496AC87A0 /* RCTSinglelineTextInputViewManager.m */, + D76E5D4D40B091BE48E35504FC2F21AB /* RCTUITextField.m */, + ); + name = Singleline; + path = Singleline; + sourceTree = ""; + }; + 083CF2A47C766D4C4BF953EB81ECEB60 /* bugsnag-cocoa */ = { + isa = PBXGroup; + children = ( + 575952F1E2803CAF8092944BAA88A832 /* Source */, + ); + name = "bugsnag-cocoa"; + path = "bugsnag-cocoa"; + sourceTree = ""; + }; + 08888980DE870DF5D26BF4384271B095 /* Pod */ = { + isa = PBXGroup; + children = ( + A94B3E0A837B5E100E9DA52E307F913D /* README.md */, + 98FDA0265059DC53F1154F99180F9704 /* RNCMaskedView.podspec */, + ); + name = Pod; + sourceTree = ""; + }; + 09D3452A800C7010D70FD2BD5597F533 /* Pod */ = { + isa = PBXGroup; + children = ( + 98A8C13484C0EFE4F30451553A5B15E0 /* React-RCTNetwork.podspec */, + ); + name = Pod; + sourceTree = ""; + }; + 09EE71E646B25ED865DB004805B82020 /* Requesters */ = { + isa = PBXGroup; + children = ( + AA574A245E72CE4C6784161BD9AA2880 /* RemoteNotification */, + FAEF1333EDBC742EF8D95E53E4E52457 /* UserNotification */, ); name = Requesters; path = EXPermissions/Requesters; sourceTree = ""; }; - 088989501B4A141B664624095782831E /* Pod */ = { + 0A29A3810F17C94C16E53762DEDC5D4C /* Pod */ = { isa = PBXGroup; children = ( - E9D7BBEE4380591D1FE584D6FBDEE88A /* React-jsi.podspec */, + ADC9523244AF164FA29F67402A05EF79 /* LICENCE */, + FB756877FF590DEFF1987C875B4D4D47 /* react-native-cameraroll.podspec */, + CD54C3D7CD1A3A72DE3FF2EC8508F68C /* README.md */, ); name = Pod; sourceTree = ""; }; - 08CA95BACAF838E76E27885FDF146257 /* React */ = { + 0A772D3CE57E3BFBB21917546ED945A5 /* React-RCTImage */ = { isa = PBXGroup; children = ( - 19DDEEEEB67DC748AE42D5B711A22795 /* Pod */, - 87429C6BA0139D97302A68158C3AED74 /* Support Files */, + 7FCB1E4C3CCF5E377D0545A0A22C52AB /* RCTAnimatedImage.m */, + 3C528C8598189CB088765189D608C72A /* RCTGIFImageDecoder.mm */, + E7278CB107A953A655B1A97187CE67A7 /* RCTImageBlurUtils.m */, + 34FABA7B30D3A9D6C7D6FDE389477AD8 /* RCTImageCache.m */, + DFAA4C02B9431D0A75FEBD39D72EFBAB /* RCTImageEditingManager.mm */, + 0288216AD777E20758A9407FEBC14AB8 /* RCTImageLoader.mm */, + EC10EAD1ADD133B64234EC22E156F4F3 /* RCTImagePlugins.mm */, + 69040346FE87DD94EE03D0CA2DAD94DE /* RCTImageShadowView.m */, + 6218F903901039453CE958BDA4DA217B /* RCTImageStoreManager.mm */, + DD6E18E641FA8579A9370B09BE6F7866 /* RCTImageUtils.m */, + ADB4B73DED1F16EE49890B2A31F437E4 /* RCTImageView.mm */, + FE5FB221275BC08195438E6A375AF4EB /* RCTImageViewManager.mm */, + 3DE4BD99927633465141F54CC59CC0CF /* RCTLocalAssetImageLoader.mm */, + C2F2AD7683409365750CC090551D941C /* RCTResizeMode.m */, + 1868C7A428739E45D4F043D32EC030D8 /* RCTUIImageViewAnimated.m */, + DEFD420FDC32730C6E50AAD7ECCCF701 /* Pod */, + D66D1DEFCA6705F6AE87672ADB1070DB /* Support Files */, ); - name = React; - path = "../../node_modules/react-native"; + name = "React-RCTImage"; + path = "../../node_modules/react-native/Libraries/Image"; sourceTree = ""; }; - 08D632601A45AAD452C6EEB3C8632622 /* Drivers */ = { + 0AE9D1BA77D89AF8EAFD379ADC5C7424 /* Pod */ = { isa = PBXGroup; children = ( - 0BA71B3682336787CBEDC68D8B7DEFCD /* RCTDecayAnimation.m */, - 6F6EAD38009DDEBD60F96F13B1500506 /* RCTEventAnimation.m */, - 14979149F23DF62C17F9E7A21EE83969 /* RCTFrameAnimation.m */, - 5EE0EABCCC36003AE9A066A1311388C6 /* RCTSpringAnimation.m */, + 78CF49F7A34BA455F8057B84974018D2 /* UMConstantsInterface.podspec */, ); - name = Drivers; - path = Drivers; + name = Pod; sourceTree = ""; }; - 08DD0716338B6985C2F338612F8A4A24 /* RawText */ = { + 0C60FDD6D6B081F99B9B45AB70A6113C /* Support Files */ = { isa = PBXGroup; children = ( - 85CC15D655072A7A9895561BE72AD16C /* RCTRawTextShadowView.m */, - 9C99C09197F47A717D2D6F03FDACA5EA /* RCTRawTextViewManager.m */, - ); - name = RawText; - path = RawText; - sourceTree = ""; - }; - 0963B9F98307DC3FBFB51DA0B96F1A78 /* Core */ = { - isa = PBXGroup; - children = ( - ); - name = Core; - sourceTree = ""; - }; - 0B0C18D8AD22C1FD5A52EDD9E3FD2025 /* Support Files */ = { - isa = PBXGroup; - children = ( - 6E1662013842AD470983BDAD74E96EAE /* RNLocalize.xcconfig */, - FAE48DC6CFAB94B34462D824F058AFCB /* RNLocalize-dummy.m */, - 5F5E46E13226ECF39A9863F5EC501736 /* RNLocalize-prefix.pch */, + BAB013510915D0909C84CB9E076EE887 /* EXVideoThumbnails.xcconfig */, + 4F24913A141036E9AC7793EBAC897DEB /* EXVideoThumbnails-dummy.m */, + DEC46F894C30A1FBFD26C23251C07277 /* EXVideoThumbnails-prefix.pch */, ); name = "Support Files"; - path = "../../ios/Pods/Target Support Files/RNLocalize"; + path = "../../../ios/Pods/Target Support Files/EXVideoThumbnails"; sourceTree = ""; }; - 0B1C2E8D8EB325D292C25F38A959046B /* Support Files */ = { + 0D036929CFD52A741556408E51CD6954 /* Pod */ = { isa = PBXGroup; children = ( - 85AC90391ADECD53E3556D7003D3A23F /* UMSensorsInterface.xcconfig */, + DA84A45396570829337342D1700D9790 /* LICENSE */, + ACE3962C93E16E9FEC0EBF2E9D9B5523 /* README.md */, + A2F038EAD72AFB346797300EBC58442B /* RNLocalize.podspec */, + ); + name = Pod; + sourceTree = ""; + }; + 0D7679AD187E453E8FB0BC89B12F813D /* react-native-background-timer */ = { + isa = PBXGroup; + children = ( + C42FF7329B3B62D137089F10708D9284 /* RNBackgroundTimer.h */, + 94678CA3241175099C6B297014249FDB /* RNBackgroundTimer.m */, + ABDDA3E3B4F5587547FD0E8B09A9C876 /* Pod */, + D0ADF067B62A8D397152EF28F27B2005 /* Support Files */, + ); + name = "react-native-background-timer"; + path = "../../node_modules/react-native-background-timer"; + sourceTree = ""; + }; + 0D88C14C17230FBF378F5064DAC3153F /* Pod */ = { + isa = PBXGroup; + children = ( + 1C0A236EABB777058D78D5E1E78FC676 /* EXPermissions.podspec */, + ); + name = Pod; + sourceTree = ""; + }; + 0E66A76AFDFECFA1E8944929A54FD73D /* Support Files */ = { + isa = PBXGroup; + children = ( + 9EC8F9D6D8887D3604B590E6E5D3BF19 /* RCTTypeSafety.xcconfig */, + 19D04EC0207EFCCC2041840F5352AD2A /* RCTTypeSafety-dummy.m */, + 9BF041D1DCF0FDAF18FE9640F746D6CB /* RCTTypeSafety-prefix.pch */, ); name = "Support Files"; - path = "../../../ios/Pods/Target Support Files/UMSensorsInterface"; + path = "../../../../ios/Pods/Target Support Files/RCTTypeSafety"; sourceTree = ""; }; - 0BAEE6158DDEBCE3F2D3D828463FEDF1 /* Tools */ = { + 0EB1AB82C22F56CE5A3C895C9FF26452 /* Support Files */ = { isa = PBXGroup; children = ( - 57F56536E891B238679FB9405792E45F /* BSG_KSArchSpecific.h */, - 17BF13DD148057E6199EEF5D184DF394 /* BSG_KSBacktrace.c */, - 912327CD24447113DCBE5E0204334FC2 /* BSG_KSBacktrace.h */, - 713882D8685596882A1DA0DCAC5ACF8C /* BSG_KSBacktrace_Private.h */, - 411C77468EFAC449BC05F4BE98E07F71 /* BSG_KSCrashCallCompletion.h */, - 119FA8BE700BB585F326E8DDDBE2097B /* BSG_KSCrashCallCompletion.m */, - 3B298DC760AAF3986A2D64997749D50B /* BSG_KSDynamicLinker.c */, - C5363E2E18C3E2582BC14D74EF29FEAD /* BSG_KSDynamicLinker.h */, - 555614C4441CCF93180DF6410C9F48EA /* BSG_KSFileUtils.c */, - 50AC756E0E949F216873FC9F7F3C7DF6 /* BSG_KSFileUtils.h */, - 29747568ABBBA9E9A1EC0F48BD467C22 /* BSG_KSJSONCodec.c */, - 8D33DE116D0794F9ECB3257024ACF204 /* BSG_KSJSONCodec.h */, - A8CBE9BA702F9353DB44F29C05C20508 /* BSG_KSJSONCodecObjC.h */, - 078ACB560B9DF301B22DB27AC0251D1B /* BSG_KSJSONCodecObjC.m */, - 1A0B8792CF6208F57C912BB7C29B4FCB /* BSG_KSLogger.h */, - F14592AC28964F7719B2E418774F7A9B /* BSG_KSLogger.m */, - D032D6FEA72FCE92B1AC6AAF34468012 /* BSG_KSMach.c */, - C5CA0AEF5EA89992EB0B35EE86E02AA7 /* BSG_KSMach.h */, - C0A320184E361CD4261DBE4243AFAC31 /* BSG_KSMach_Arm.c */, - FE86AD7E797D9914BE9A74EC7BC13ADF /* BSG_KSMach_Arm64.c */, - 1E76B6BB36B2A3C42DDF3D7B633F5976 /* BSG_KSMach_x86_32.c */, - B982F2A245C062D03E9D0007425EFD88 /* BSG_KSMach_x86_64.c */, - 0DFBE72CD90D262E7A6933E7E30E47E9 /* BSG_KSMachApple.h */, - 2F6E770107F0F9662E99148E09934317 /* BSG_KSObjC.c */, - 91031C2D142B91C4659188043CFBB59E /* BSG_KSObjC.h */, - 41CB39FD5D11539EAE2ECF837C19AC7F /* BSG_KSObjCApple.h */, - 1EC15084DB3363D73309F2FFC704EC04 /* BSG_KSSignalInfo.c */, - A401BFC2002B1F9F6DAFF5F0A3777E03 /* BSG_KSSignalInfo.h */, - 1F6F2CFA01EC3575434B192A4A609F3A /* BSG_KSSingleton.h */, - 465454A21A09429BC53A1110206D6B71 /* BSG_KSString.c */, - 22DC540653AA6DEFE018F0E96892639A /* BSG_KSString.h */, - 777059C692B7C55601D372692929E4C5 /* BSG_KSSysCtl.c */, - 0E942DCB54F046D2146E9F69DC7E1335 /* BSG_KSSysCtl.h */, - FAFD364A32A0320AB9E8550CAC48CB22 /* BSG_RFC3339DateTool.h */, - E0F9503131ACB8C4FD70E76CA14C2EF5 /* BSG_RFC3339DateTool.m */, - 23FC3234B2DB57E1ED7030BCE13BB424 /* NSError+BSG_SimpleConstructor.h */, - 1A007ACDD8283948E99A5DD959DE9242 /* NSError+BSG_SimpleConstructor.m */, - ); - name = Tools; - path = Tools; - sourceTree = ""; - }; - 0BDA0E5DAE60284E397056711DB96C3D /* Support Files */ = { - isa = PBXGroup; - children = ( - 22F817D447B0FBFC5E919D280677C049 /* EXWebBrowser.xcconfig */, - 7F0600C755BC4C06B2F73F1604FE74D4 /* EXWebBrowser-dummy.m */, - EC0296D9829486EAB25598C847B99257 /* EXWebBrowser-prefix.pch */, + FB9F0EF2E722FA751011AA90735B4349 /* RCTRequired.xcconfig */, ); name = "Support Files"; - path = "../../../ios/Pods/Target Support Files/EXWebBrowser"; + path = "../../../../ios/Pods/Target Support Files/RCTRequired"; sourceTree = ""; }; - 0C52D7E905C9C54B83D4559802B3C107 /* Support Files */ = { + 0F8F50CC42A25C4FC8F2F11298A906B1 /* Pod */ = { isa = PBXGroup; children = ( - B85F14B1A3321F67D57FB3E5D50DEF80 /* React-RCTSettings.xcconfig */, - 18462B43FFBDF05E68BAB2E07C605FB9 /* React-RCTSettings-dummy.m */, - 9B1EF8C47031ED85B03BA1723CCA998B /* React-RCTSettings-prefix.pch */, + 8AB2DA80B6338FBAE60EA8D89A2C8F03 /* README.md */, + 3AB56A19915C4E46BC00E406E06FC5F1 /* RNRootView.podspec */, ); - name = "Support Files"; - path = "../../../../ios/Pods/Target Support Files/React-RCTSettings"; - sourceTree = ""; - }; - 0CC265D5D87E747A8FC6AEACB14A603A /* Support Files */ = { - isa = PBXGroup; - children = ( - 0004CD2B1C7A554C35DAB64B5EBAE612 /* EXConstants.xcconfig */, - 7B1D9EE485F3205646C5051B7F089AFA /* EXConstants-dummy.m */, - 3AD9E3A089699EE37B9B9DB63D50FD4E /* EXConstants-prefix.pch */, - ); - name = "Support Files"; - path = "../../../ios/Pods/Target Support Files/EXConstants"; - sourceTree = ""; - }; - 0E2F0D7BF28C56D98D40123E6864E55B /* Core */ = { - isa = PBXGroup; - children = ( - AEACA277E79E36A282E3096230EDE338 /* NSBezierPath+SDRoundedCorners.h */, - 48FF178F4A6064362BE104052C28F435 /* NSBezierPath+SDRoundedCorners.m */, - 69BD22B376ED5AF2061DF89B1D183BBB /* NSButton+WebCache.h */, - DE1A03993F221E91A060D8EF328972C0 /* NSButton+WebCache.m */, - F8A31A8DA974B49272E80FBD49044CBB /* NSData+ImageContentType.h */, - EF816D90F70DF67C69E47BF0B325AF38 /* NSData+ImageContentType.m */, - E7C5136987B75A558800AA09668F379D /* NSImage+Compatibility.h */, - 311652007C95DA14AF3C4E1583B6843E /* NSImage+Compatibility.m */, - 16A19D3BA60E31A56CD6F95F12C0CD07 /* SDAnimatedImage.h */, - FDFEC8B96013B1DE8EFFE4967BC17D42 /* SDAnimatedImage.m */, - 1DAE28EC73109D44B9C46C23181E60BC /* SDAnimatedImagePlayer.h */, - 9C6C0395078634D7C1B9E8CF716DE049 /* SDAnimatedImagePlayer.m */, - EFA3675606B15D277BA608131C2B6151 /* SDAnimatedImageRep.h */, - 7E9752BC689397DC85C1EB924545728A /* SDAnimatedImageRep.m */, - 82C01AE34B43424EA0DE03555983062D /* SDAnimatedImageView.h */, - D35AA32383740911279CBEFB0A7CED01 /* SDAnimatedImageView.m */, - F7678F697CCE24251E2DEEB64D3E414A /* SDAnimatedImageView+WebCache.h */, - 597D02897C3C579AA756348F14235739 /* SDAnimatedImageView+WebCache.m */, - 3D6A10E15B062A93E4B205F47161AD9B /* SDAssociatedObject.h */, - 0A9937D7A360E83F8CA7E0155AF042E5 /* SDAssociatedObject.m */, - 76421776D82B4D7F763F40B43681EE6B /* SDAsyncBlockOperation.h */, - 3E5E391D33A2890AD170E829C7D11427 /* SDAsyncBlockOperation.m */, - 4B4B25C480CA6B76598CB40CEAF97417 /* SDDeviceHelper.h */, - 8C4A42E529DA8C82241503BA7483D779 /* SDDeviceHelper.m */, - FAA104852192F9F2689C07B555B3293D /* SDDiskCache.h */, - 104C42A61B3D6157224ED06DBE2DF1F4 /* SDDiskCache.m */, - DC45F7A3D4A7E67D6A6C04602CF64F57 /* SDDisplayLink.h */, - 433B2105FDE53C5CBB3D124CBA9AF726 /* SDDisplayLink.m */, - 630E4D6E25D676B51822CBF1F082FDB8 /* SDFileAttributeHelper.h */, - 1E1CFFFAB8A4A2D75524936EE293EC91 /* SDFileAttributeHelper.m */, - 874E66AD127D6AABA1479A242A5DF47A /* SDGraphicsImageRenderer.h */, - 87214272F27375D3F241FF271FEDB77A /* SDGraphicsImageRenderer.m */, - 7F8A10F0233DA3B3CBEE27074EBFC203 /* SDImageAPNGCoder.h */, - E179F2A5B71E45A8909EB9C9A0471081 /* SDImageAPNGCoder.m */, - E58ABE3A117EE7B01E6E6D36BE5510F2 /* SDImageAssetManager.h */, - B16642936BFFA1575F0F8B1C60743341 /* SDImageAssetManager.m */, - F9AC5E09B6219F4FAECA474AD5900E6A /* SDImageCache.h */, - C45340E1BD37FF39D4D1428478240EFF /* SDImageCache.m */, - CCF4D0A31596C7ACCD7B68399DBE7374 /* SDImageCacheConfig.h */, - BFB653590FB299B61B9D0198545B5D53 /* SDImageCacheConfig.m */, - 307AC7E91B54A8B513EEE19246B784DA /* SDImageCacheDefine.h */, - B6B49746D7B4C1049D33AFCA620292EF /* SDImageCacheDefine.m */, - ABAB5A64E39FD3A82EEDA09B578377C8 /* SDImageCachesManager.h */, - 14E9E31486EBBBC68C0749E85DD654F7 /* SDImageCachesManager.m */, - BFC7C2CDFD20C9563CC341F59F84CCAC /* SDImageCachesManagerOperation.h */, - 942C04CD3160AE3DFED89E1A2E902892 /* SDImageCachesManagerOperation.m */, - 4A9C870E415384C1941E5FEE0F27CBD9 /* SDImageCoder.h */, - 23B988FF7781A76A0B6F07682B8E3871 /* SDImageCoder.m */, - 39C2B4A45BAEFA2B83291B29E21C89F4 /* SDImageCoderHelper.h */, - D20E73799E6FA24169DD964E9C5688F4 /* SDImageCoderHelper.m */, - A80277C8113E75C2E96371380BE4F8DA /* SDImageCodersManager.h */, - D65D4E79DCD9838F91437CD602771ADD /* SDImageCodersManager.m */, - B63947E2B5A38C4724077A19011B71D3 /* SDImageFrame.h */, - B3734B6DEF352FA194A23D8BF4EB7C2B /* SDImageFrame.m */, - 69E84637B197F201A5C192376A7F6D80 /* SDImageGIFCoder.h */, - 18D02EE20BF587B8F1FD8003EE186FD8 /* SDImageGIFCoder.m */, - EFBD4A456ED89497B04A66A5DFD19923 /* SDImageGraphics.h */, - AB65728D71BBEAE5B472C8895E06E6C6 /* SDImageGraphics.m */, - 1B606C3DDAF2EFB94FD81B5B70B0A198 /* SDImageHEICCoder.h */, - 7B755882455E18414CD2AF4E615548B3 /* SDImageHEICCoder.m */, - BFA07440A8E55C4863268CEC6E8C645C /* SDImageHEICCoderInternal.h */, - 7E62C990994B163B1E63FABB01328E5E /* SDImageIOAnimatedCoder.h */, - 9AEE6076F5BF5AECC6C41B7DD7149A05 /* SDImageIOAnimatedCoder.m */, - 48BFF4507769ED087BF273D65AA632EC /* SDImageIOAnimatedCoderInternal.h */, - 83CFF644F37AB474C65E4D5EB0CD86FE /* SDImageIOCoder.h */, - 31E08DAC1A619FCDA26A814273FD6980 /* SDImageIOCoder.m */, - CE60317C58AFC60DCD0B604500EE9586 /* SDImageLoader.h */, - 47589F57C14460D5BDC99E69B4E10519 /* SDImageLoader.m */, - D7603F1BAF85E5C25B87E41D2D5AC5D1 /* SDImageLoadersManager.h */, - D9274FD89581B52AE591700F394D0E7A /* SDImageLoadersManager.m */, - 73C7E748D6247016CD225AF20049FBC9 /* SDImageTransformer.h */, - 8933F929FA40BDE07338D3050D54C5CD /* SDImageTransformer.m */, - 6BD12214F5826815CB7FDB5BED2E67ED /* SDInternalMacros.h */, - 9FCAF078C3CB21E5E988A1FA178661F2 /* SDInternalMacros.m */, - F88A3985D747C9830996E834577B7AB3 /* SDMemoryCache.h */, - C8C8F2005685BA0606C2E4D9A04FA8D0 /* SDMemoryCache.m */, - B88BF0F6E8E0D9231FE0B18A655A9D4C /* SDmetamacros.h */, - 393A3EC9791AAD4CA73A390DC97CBD6A /* SDWeakProxy.h */, - 9420282DA92F21A459E07B57C79802C5 /* SDWeakProxy.m */, - 9ED4561357600270D36518FF1E8B923E /* SDWebImage.h */, - 4C79CE516CD630657363DDBDCA522425 /* SDWebImageCacheKeyFilter.h */, - A4A38F32B082EE0D0EA4116F164EDFCA /* SDWebImageCacheKeyFilter.m */, - 1E4C989A33D90A61D1AFE1A7A4E7A113 /* SDWebImageCacheSerializer.h */, - 335BEEEE056B1F03F417E347AC410F26 /* SDWebImageCacheSerializer.m */, - F1A9580C819BC6B80BEA8F9EB5C50B6F /* SDWebImageCompat.h */, - 91741A8C0473252C0B3C652A5EDF7A50 /* SDWebImageCompat.m */, - 234B1411B48C8BE2215721F896C6B79A /* SDWebImageDefine.h */, - A483E9CBDE0930880E6851AC0CBD8B79 /* SDWebImageDefine.m */, - 2B7E6CF1DA3AC611617928B73C696AA2 /* SDWebImageDownloader.h */, - EF2624022163DF8547EBDEA01D8173FF /* SDWebImageDownloader.m */, - 45416CE24440AC226668176D00E285BA /* SDWebImageDownloaderConfig.h */, - 0A8F55A8C8BB50C6855CDE1204DD1AFF /* SDWebImageDownloaderConfig.m */, - 87F1EBB941B35CC24467F4DC20EF659B /* SDWebImageDownloaderDecryptor.h */, - 14DE5E20048BA83B6CF49A1811EE2017 /* SDWebImageDownloaderDecryptor.m */, - 131281C3CA3CBEF8B374B1DA5946C719 /* SDWebImageDownloaderOperation.h */, - 0FEB237EFA588675D5F1D8F4365EE764 /* SDWebImageDownloaderOperation.m */, - 10814B74CDE15DC6EB1F5120B83AF3C0 /* SDWebImageDownloaderRequestModifier.h */, - C7022D39F0131D8DE5EE4852EFFE46A5 /* SDWebImageDownloaderRequestModifier.m */, - FC9BCDA28BEB23EC13E2DC0BD9A1CD6E /* SDWebImageDownloaderResponseModifier.h */, - 4BA7636E5ED7A99CC81EDA96CECE6609 /* SDWebImageDownloaderResponseModifier.m */, - 9ECFA9D5D7BB61AD5F9595852FD24E18 /* SDWebImageError.h */, - 50E24753E2BF7235A9180BA697DF606A /* SDWebImageError.m */, - 01AF6B3F7CCE670710F45E8B5157C55F /* SDWebImageIndicator.h */, - 7BFB63298D093460F7276CE628FD93AC /* SDWebImageIndicator.m */, - C6A3C5875C4FA522C69652AFDFA30B60 /* SDWebImageManager.h */, - B198F49D093D4120C0EFEA102F189FE1 /* SDWebImageManager.m */, - 7A67725609E5F803B60526CF2258D59F /* SDWebImageOperation.h */, - 874DD879EBBA0887150F2F86F07E12C7 /* SDWebImageOperation.m */, - 2533E13A6E27DC148740766B9E66FAB2 /* SDWebImageOptionsProcessor.h */, - F56B5CF5EB9A68ABE832746E0B370670 /* SDWebImageOptionsProcessor.m */, - D1DA016AD9C4ABE9530E299EE9495FD8 /* SDWebImagePrefetcher.h */, - 2FFD01ED62EB70B241703996ED004808 /* SDWebImagePrefetcher.m */, - 406126CDE866DEC6B775C6D397305C58 /* SDWebImageTransition.h */, - ADD867981938A544D7253B6A062EA2D9 /* SDWebImageTransition.m */, - 2134642023B5EEA4EDF1B56B7AACAAE6 /* UIButton+WebCache.h */, - EB14F126E96758354800E2285FA57A06 /* UIButton+WebCache.m */, - C8E57C46428DDC0632FE24C7BF610613 /* UIColor+SDHexString.h */, - 501080DAE21711CE6E8FADCE54B0D5D5 /* UIColor+SDHexString.m */, - 5590AA1C00F0472D5C2137DBFD262D8B /* UIImage+ExtendedCacheData.h */, - 84019186F066F8D813942800C2E415BC /* UIImage+ExtendedCacheData.m */, - C8896265D038C4A8BC58E1851B938227 /* UIImage+ForceDecode.h */, - 7E5138C96BF9E64D500B447348CB329D /* UIImage+ForceDecode.m */, - BEB772AE2895A7AE60AEE2B71F800759 /* UIImage+GIF.h */, - 0C63A47DAF16CD2A0834B1A35401355C /* UIImage+GIF.m */, - AF5CE5148857621B9A277B87101F41BF /* UIImage+MemoryCacheCost.h */, - 1571AEAE2EF0732E6D6067B2390563D0 /* UIImage+MemoryCacheCost.m */, - 1480D363919A35F1E19FE10FC4D6B113 /* UIImage+Metadata.h */, - 4241AFA83AB806724D464D03F5808DBB /* UIImage+Metadata.m */, - E407E78CE1F9669988D1BBC2C9EFEF6B /* UIImage+MultiFormat.h */, - F6CE2FC04ED6483FE6A99948553E7C25 /* UIImage+MultiFormat.m */, - 7DBB41E2265A85A4A5A23B38A7B6E88E /* UIImage+Transform.h */, - 28449F76B89032B07C051A3E0089EC0B /* UIImage+Transform.m */, - 21687532BBF95813285D4614E00325D8 /* UIImageView+HighlightedWebCache.h */, - DA0B7541A49C2650D4598D443197E8C8 /* UIImageView+HighlightedWebCache.m */, - A6247BFFD6345418184A0A399334C902 /* UIImageView+WebCache.h */, - ED85978DBD2A2A4FCC68CC490BE3CE4D /* UIImageView+WebCache.m */, - A39A26BA33C5E32A2591D22BC6F9B47F /* UIView+WebCache.h */, - DB39F9CF2B97369F70DE7538C2026439 /* UIView+WebCache.m */, - C8A26A69F3EF4F2DE018599DA2868F89 /* UIView+WebCacheOperation.h */, - 14678CD44F55B1A64B7CCF96F5E94126 /* UIView+WebCacheOperation.m */, - ); - name = Core; - sourceTree = ""; - }; - 0F7067B2B36F003E69A4DAB0A768A9A8 /* BugsnagReactNative */ = { - isa = PBXGroup; - children = ( - 2475A083CA7E9531F5DF98EB4E5E1B57 /* BugsnagReactNative.h */, - 4669A53C93BC1B653C57B87A2DD1CFFA /* BugsnagReactNative.m */, - 0963B9F98307DC3FBFB51DA0B96F1A78 /* Core */, - 9F294B654934236B675B6241DA9D6D0C /* Pod */, - 87893C2F0862C48AF9A3B0634CFEF11B /* Support Files */, - 8FC7093F051AAD0C014CD72B31406F47 /* vendor */, - ); - name = BugsnagReactNative; - path = "../../node_modules/bugsnag-react-native"; - sourceTree = ""; - }; - 101FF42C7904DE9D979F50F6F443FB2C /* EXPermissions */ = { - isa = PBXGroup; - children = ( - 86AC22B4BB409F1E101B286CF2109DB4 /* EXPermissions.h */, - C3093E8DB076B814FC199B208E9B3C15 /* EXPermissions.m */, - C73F242C04336D7FF6A7E8E1A751127D /* EXReactNativeUserNotificationCenterProxy.h */, - FD2915E38674C2C900EFA33041163379 /* EXReactNativeUserNotificationCenterProxy.m */, - 8C25CAF0585B48705E634DD3620AA65B /* Pod */, - 072E58720E64EFBFFCB06BEB9058C49F /* Requesters */, - 5BABCC3389C6D56CF2B8CA6247E086F4 /* Support Files */, - ); - name = EXPermissions; - path = "../../node_modules/expo-permissions/ios"; - sourceTree = ""; - }; - 1025CE3A3508A0D6797CC0868926333A /* RNDeviceInfo */ = { - isa = PBXGroup; - children = ( - 5FF124BFE4789E564508AA5A571693E7 /* DeviceUID.h */, - CBAB0F47CDDDF4B890096A8A31547545 /* DeviceUID.m */, - 59149DB4D7BD69A028948BDB37206DF2 /* RNDeviceInfo.h */, - E4717C28EB9B27DF783198B758A4CF07 /* RNDeviceInfo.m */, - 999BF1A5966256F0CBA646850A42B180 /* Pod */, - B0C8E59E32D9E87D0FB976FCF301BB08 /* Support Files */, - ); - name = RNDeviceInfo; - path = "../../node_modules/react-native-device-info"; + name = Pod; sourceTree = ""; }; 10790653138889F070A782E6FAD80A03 /* Support Files */ = { @@ -10741,38 +10485,72 @@ path = "../Target Support Files/FirebaseCoreDiagnostics"; sourceTree = ""; }; - 1116BC4E32F4BC8C3355FD27CB06BFAF /* UMFontInterface */ = { + 118115952BB351C34FEF15907B785821 /* Pod */ = { isa = PBXGroup; children = ( - 7CBD602AD6DCD7613DB5467CED953E8F /* UMFontManagerInterface.h */, - E090ED2ECA03CB8C46EB494202C518DA /* UMFontProcessorInterface.h */, - 0E8F0C8A8EA584A96DEEF4825A115884 /* UMFontScalerInterface.h */, - 1A18989B04E0616980D292BD374E4DD7 /* UMFontScalersManagerInterface.h */, - 12D8633DA1E0F7C1C0AC39229CF07B89 /* Pod */, - C2D5468CE3FCDDDAE11CF6D139E212BC /* Support Files */, - ); - name = UMFontInterface; - path = "../../node_modules/unimodules-font-interface/ios"; - sourceTree = ""; - }; - 112B87124D6DD86DB98C788B1A15D9D8 /* converters */ = { - isa = PBXGroup; - children = ( - 6060942BEAD2B3B29663F1F50D7605DD /* RCTConvert+UIBackgroundFetchResult.h */, - 3E41A3B00394163C9CBAF010F4ECE1B6 /* RCTConvert+UIBackgroundFetchResult.m */, - ); - name = converters; - path = RNFirebase/converters; - sourceTree = ""; - }; - 12D8633DA1E0F7C1C0AC39229CF07B89 /* Pod */ = { - isa = PBXGroup; - children = ( - A8D8282349A5EE2BA6014CDD4B5CB405 /* UMFontInterface.podspec */, + 76220C1615CC82E0A785D4512859F3FA /* LICENSE */, + A3AEEF4C31844E7B75D00BDEF3750729 /* README.md */, + F1168FFC600026FF976606675B2864DB /* RNImageCropPicker.podspec */, ); name = Pod; sourceTree = ""; }; + 11EDF8E5C4C08B0272F061B6B947A8C6 /* Recording */ = { + isa = PBXGroup; + children = ( + 973DF85DF9AE404CBBC25A0E5B4C06C8 /* BSG_KSCrash.h */, + D0FFC0CFDACFBB27D8CD29CD96BB83D6 /* BSG_KSCrash.m */, + 701CC102E35E467BDCF858727E4F0D79 /* BSG_KSCrashAdvanced.h */, + F42DACE44BA7604D9C48616C9FEF332B /* BSG_KSCrashC.c */, + 4EFC8C6939C0CA67C20AA47F229527E7 /* BSG_KSCrashC.h */, + 3CE8B337A02FD6186B3CE7AEA07AE380 /* BSG_KSCrashContext.h */, + 86EFF9B0108428BA2CCCD99017815624 /* BSG_KSCrashDoctor.h */, + 29589E6E9E730FD0965264637DE985D5 /* BSG_KSCrashDoctor.m */, + A9622FAF256FEAB83C7DC8367852D67A /* BSG_KSCrashIdentifier.h */, + 12E989223DA58403D8F25F90FBFE8DCB /* BSG_KSCrashIdentifier.m */, + B978B14C05594E588D93AFF8AB53CE0A /* BSG_KSCrashReport.c */, + 94B1AD85F33D74C18253627654D39221 /* BSG_KSCrashReport.h */, + 7419193FF4A667D9EEC16DD23D6FD3AE /* BSG_KSCrashReportFields.h */, + 0FE5F65DB5679525ECA89DF642E89D41 /* BSG_KSCrashReportStore.h */, + 48E7E03C4B61425FE65E20EB8E88F881 /* BSG_KSCrashReportStore.m */, + 7F9F9B95B3D7132BDF6AE5E4920A97EC /* BSG_KSCrashReportVersion.h */, + 94D850A63ACBA225AC020102A47C5349 /* BSG_KSCrashState.h */, + DA7A978F0BC842852F7D42C3C856DCE6 /* BSG_KSCrashState.m */, + E625D021E09C9F838D67D872B0F3B4C8 /* BSG_KSCrashType.c */, + 2D1E434D8F0C729C65FBABAEA976A74C /* BSG_KSCrashType.h */, + 065CA76DC9A9623CBEA4AE67EF82CE52 /* BSG_KSSystemCapabilities.h */, + DB18D4F26133679F2F7255491CA3E0BA /* BSG_KSSystemInfo.h */, + 737E68F840664F7F96841913D5BFB4D2 /* BSG_KSSystemInfo.m */, + F15177F3F98AB6CCA981FCEEC5CFE2D9 /* BSG_KSSystemInfoC.h */, + 62A8EDB7556809C3533A5DE74C9DFA02 /* Sentry */, + 8473F186A20A882B7160D2EAE603ECA6 /* Tools */, + ); + name = Recording; + path = Recording; + sourceTree = ""; + }; + 124E5A7CCD821049F23A3D155F7597B4 /* KSCrash */ = { + isa = PBXGroup; + children = ( + 11EDF8E5C4C08B0272F061B6B947A8C6 /* Recording */, + 5270B655D56359D12718CE04CE10B7C6 /* Reporting */, + ); + name = KSCrash; + path = KSCrash; + sourceTree = ""; + }; + 135AC89D226AC20DE912F0D6709B99DC /* EXImageLoader */ = { + isa = PBXGroup; + children = ( + 66BC2755707DD9BBE0D3BCAC8B6E6314 /* EXImageLoader.h */, + 19B053085DA6EF5728AFC1F76197099A /* EXImageLoader.m */, + 171E22F308D2B47DEC9D02F6948ADF40 /* Pod */, + 4C3F286BE90A23F677223818FB7867C7 /* Support Files */, + ); + name = EXImageLoader; + path = "../../node_modules/expo-image-loader/ios"; + sourceTree = ""; + }; 13FF510C367D171AA3FE2A078CFEA2A4 /* Frameworks */ = { isa = PBXGroup; children = ( @@ -10782,176 +10560,152 @@ name = Frameworks; sourceTree = ""; }; - 1466488A6AB81BD8262F74CD34216623 /* Pod */ = { + 15F181DB266AFFBE087AB9D4C89C2DC4 /* Pod */ = { isa = PBXGroup; children = ( - E1F9BCA1437F86681BEEFD0484AFC0F0 /* LICENSE.md */, - 7EDDBD66CBFF6B1708122EE42C2FB9C5 /* react-native-document-picker.podspec */, - 5C1C3620764CF08A1D6E8EAC6C0012F3 /* README.md */, + 065576DC7B13712EB9E7F21B3FE1E0B4 /* EXLocalAuthentication.podspec */, ); name = Pod; sourceTree = ""; }; - 1632A3616DC0CFF32A742A24767312F9 /* Support Files */ = { + 161C470CDAD021A787C232BE86727494 /* RNReanimated */ = { isa = PBXGroup; children = ( - 9DF547BCD14061CD62E58880D6A92DB5 /* ReactNativeART.xcconfig */, - 0DC4753856349A20BF60E239F3DE0374 /* ReactNativeART-dummy.m */, - 8281F16DD5F0C7D51335DF5FCD121D39 /* ReactNativeART-prefix.pch */, + 98B48B57988B4C1C778A2FAAD4DF8C40 /* REAModule.h */, + B05EFE69BDDEC5A71A7E669C83750D9F /* REAModule.m */, + 23FC904C31EFF26791961F1234B41F0C /* REANodesManager.h */, + 574F77FD0BFB0D8805DF0F6B18469D76 /* REANodesManager.m */, + 1C63379B39A97FAEF69035BFB3D2E30D /* REAUtils.h */, + 1F0B24D70BBEA237887CD21BFCE8054C /* Nodes */, + 9B0D4DD331CA75BF0013EE8B27D1ED84 /* Pod */, + DF4699EC691010828C58523C41E03147 /* Support Files */, + 5BA183CF219C8DE8EBE61D91880E0147 /* Transitioning */, + ); + name = RNReanimated; + path = "../../node_modules/react-native-reanimated"; + sourceTree = ""; + }; + 1670B1DDB3A057FB4919430588573F38 /* admob */ = { + isa = PBXGroup; + children = ( + 6CF8DF9486ADB690C43C6843FBD675D6 /* BannerComponent.h */, + BEC3AFB0C3F4A99C632502870555D838 /* BannerComponent.m */, + 00E3A5686CE7C3369D636DFA716C9BB0 /* NativeExpressComponent.h */, + A08F43B95C60C5D88E07DFAAE23FF764 /* NativeExpressComponent.m */, + F91D4B7109CF2E8FCED0CBC80F266FF8 /* RNFirebaseAdMob.h */, + 302CC1F73D2932EF41A58CFB019F761C /* RNFirebaseAdMob.m */, + F920E5D26F2F6711D709A39866FB9A0A /* RNFirebaseAdMobBannerManager.h */, + FB1D49F917FE2E2982946838B08AA1AC /* RNFirebaseAdMobBannerManager.m */, + 7F5B1FE3EF55176F25FE41E85F1EFDAD /* RNFirebaseAdMobInterstitial.h */, + FB30611A5F577518B0A1EA6896A717CE /* RNFirebaseAdMobInterstitial.m */, + 5656A08C3B9793B137BE4B43A9A3646A /* RNFirebaseAdMobNativeExpressManager.h */, + 73F8FBE8D7A3E43B5EEC41D91B4F8E82 /* RNFirebaseAdMobNativeExpressManager.m */, + 9181CD547B312286C9B74399143DF4E4 /* RNFirebaseAdMobRewardedVideo.h */, + E4D333D4BA3F02FCE6EDA22EBDCA1C10 /* RNFirebaseAdMobRewardedVideo.m */, + ); + name = admob; + path = RNFirebase/admob; + sourceTree = ""; + }; + 171E22F308D2B47DEC9D02F6948ADF40 /* Pod */ = { + isa = PBXGroup; + children = ( + 7143738C4C4CD3B3552B0D9846492E16 /* EXImageLoader.podspec */, + ); + name = Pod; + sourceTree = ""; + }; + 173BAED57B778686B4A1AA8157B82D7E /* CoreModulesHeaders */ = { + isa = PBXGroup; + children = ( + CD96AC991B3CE727227BB3420D9CD294 /* CoreModulesPlugins.h */, + 72F3D1AEE210E583BE6F25D0CEEDDEC3 /* RCTAccessibilityManager.h */, + B256B556EA988AE051CC39B6E82ED387 /* RCTActionSheetManager.h */, + BE97773D8C3DAF9FCDCB748359496A88 /* RCTAlertManager.h */, + 1B8503DBB6CE226E6F22A2D205D7FF46 /* RCTAppearance.h */, + BECF7B9FB0FFFF7788B6C688A498DAC2 /* RCTAppState.h */, + 01E4117FE7EA1D36E5017B0F7E24C4C0 /* RCTAsyncLocalStorage.h */, + 17702DBAFDF2C4C69C7D85A543D652CC /* RCTClipboard.h */, + FDF07E2256DA17120878011408E9FFC6 /* RCTDeviceInfo.h */, + BF11A6A2A534E1BC60B988376BCD57C2 /* RCTDevMenu.h */, + 90753126CCBCB9603F6E5AEA8AF43BBE /* RCTDevSettings.h */, + E5528A4BB07AD017B9DD85E146CC365B /* RCTExceptionsManager.h */, + AFAF6C2791F7EC98D653618B16FEB483 /* RCTFPSGraph.h */, + A57E6CA3367F3AEA100FF515D402297D /* RCTI18nManager.h */, + F4B09EB2C56502336DCA5CA60C0FA235 /* RCTKeyboardObserver.h */, + 618FE908C3F774F89089B1A1A0D1E4E7 /* RCTLogBox.h */, + E8D327EEDF399F295F136B6152D3F9CB /* RCTPlatform.h */, + AD6804036572C0AEBF851DCD33B1EA11 /* RCTRedBox.h */, + F788F960F2FE8AE7C3E9DF1D29939E78 /* RCTSourceCode.h */, + CD29597D116D606D128EEE2B84D8A47E /* RCTStatusBarManager.h */, + BBE4E706C49C9A15F96835316AE66969 /* RCTTiming.h */, + 192C49840EFB37F6BF22E13BD1FEE7B1 /* RCTTVNavigationEventEmitter.h */, + FAFEF6C60948663BA51B3996AE82FE4E /* RCTWebSocketExecutor.h */, + 868848EE008D5B6B2D4B9C56EF508588 /* RCTWebSocketModule.h */, + ); + name = CoreModulesHeaders; + sourceTree = ""; + }; + 174D5F2A5D170AC00E4E4EEFE90A9E99 /* UMCore */ = { + isa = PBXGroup; + children = ( + 560F3DF8F084F79B6928B769F95E0C48 /* UMAppDelegateWrapper.h */, + 0F96951AC94234573E82080F6A13DEE2 /* UMAppDelegateWrapper.m */, + 1CC9BB09BFD4F1A9FD8FF6C35AB5F8DB /* UMDefines.h */, + 308213306CADB3BB2BE07F5AB7B6C62C /* UMErrorCodes.h */, + 8BC50CC11FB102E9AF6A708BB3EEDCC6 /* UMErrorCodes.m */, + E1BF00A498E8F2B330789DA0C9B84C5F /* UMExportedModule.h */, + 0C6B81D69B35EC84BF3B585025BFA48B /* UMExportedModule.m */, + 5C52F6682F729545F3391BA73094232A /* UMSingletonModule.h */, + 5D44C7DE7261D40B856C623576AFF1E9 /* UMSingletonModule.m */, + FFB28A7BE52FA9FC2E26FC5B3F39A1DD /* UMUtilities.h */, + DE58BC1E40261CB1AFD48A2215220FAC /* UMUtilities.m */, + C62852A57ECECC01001915BC13F9DAB0 /* UMViewManager.h */, + 08DDE9FE6DA89816C9D2D808455CFC86 /* UMViewManager.m */, + 30F42A9E6B226187CD6CA1E71F0459CD /* Pod */, + 8720288BC872BC2EBF3CD91E210D403D /* Protocols */, + 274B7E79456474A4C621BCB5F1FA63F9 /* Services */, + 245710CABE12DFD9618AB9ADA8226BD3 /* Support Files */, + 05D62F4CCB08B73EF77BD8EF1C3A070F /* UMModuleRegistry */, + 2462EC5B6BEBEA609E87E9644D114963 /* UMModuleRegistryProvider */, + ); + name = UMCore; + path = "../../node_modules/@unimodules/core/ios"; + sourceTree = ""; + }; + 1759960005F9F14E1D298897928ED6FF /* Pod */ = { + isa = PBXGroup; + children = ( + 4328FF5AA88C222B8DB4B2B180A8D046 /* LICENSE.md */, + F85A0660BF79342932FF3B60C4FF71B8 /* README.md */, + 07D2B9A5E19E6952441CA5E2EDE964E4 /* RNDateTimePicker.podspec */, + ); + name = Pod; + sourceTree = ""; + }; + 1803EC7791F3EDCA9C1D6CDB0B55F550 /* Pod */ = { + isa = PBXGroup; + children = ( + 361F8772A2063143C0A872C6AF0CBBD7 /* UMAppLoader.podspec */, + ); + name = Pod; + sourceTree = ""; + }; + 183430F0594464CAF88FE192FA546D40 /* Support Files */ = { + isa = PBXGroup; + children = ( + 6E004A1597FF77E9605176232AF208B6 /* ReactNativeART.xcconfig */, + 85C1156312F9CEBB9D1A0C6DB38ED48C /* ReactNativeART-dummy.m */, + 7E43F826345CD4E40C27310900F3F2CF /* ReactNativeART-prefix.pch */, ); name = "Support Files"; path = "../../../ios/Pods/Target Support Files/ReactNativeART"; sourceTree = ""; }; - 1671EB795F52EEEDDD044A9107D7C23A /* react-native-appearance */ = { + 1AB707A5CF142C3E968A4062583361C8 /* Pod */ = { isa = PBXGroup; children = ( - EC9F9FB50FE02D6165060C3BB45997DD /* RNCAppearance.h */, - 122E04F7E1EC2E9AFE681E66A2D5D1FC /* RNCAppearance.m */, - 9AFFEDDE7CFB2C5E2CA5311D2F76B264 /* RNCAppearanceProvider.h */, - 2744D69B7CA848FB0307E86A45438935 /* RNCAppearanceProvider.m */, - A7C9923AFC25F79D1EE735484960E4C2 /* RNCAppearanceProviderManager.h */, - B0F818123E207CD4DD66F14D8EE99606 /* RNCAppearanceProviderManager.m */, - 5FA3D5B563F60ADA267450E6EDEDB551 /* Pod */, - 7F7C8D1A9124A040EBF1D8C16262386C /* Support Files */, - ); - name = "react-native-appearance"; - path = "../../node_modules/react-native-appearance"; - sourceTree = ""; - }; - 17FCFBABA3BEE8CE1EDED474A90D781B /* KeyCommands */ = { - isa = PBXGroup; - children = ( - 3AC743AAF093BEA69296F8D19A4A63DB /* RCTKeyCommandConstants.h */, - D6A54E68A069603C40EB24A3073DD1FA /* RCTKeyCommandConstants.m */, - 879C4675A42A906C9C1BAC3DFB52488A /* RCTKeyCommandsManager.h */, - 01E29E1E919123FA73529DB1E40266E0 /* RCTKeyCommandsManager.m */, - 27CBE4131BDDBD724884CD5D33B3A062 /* Pod */, - 6835B1809D0F5824A10DF34E15B66122 /* Support Files */, - ); - name = KeyCommands; - path = "../../node_modules/react-native-keycommands"; - sourceTree = ""; - }; - 1858AD2396CA758854000DF829897208 /* Pod */ = { - isa = PBXGroup; - children = ( - C898C23FFB4EA1B7C6820BB604B3C061 /* react-native-slider.podspec */, - ); - name = Pod; - sourceTree = ""; - }; - 18F3B84D071BF6E03A17202E54D4FD0A /* RNFastImage */ = { - isa = PBXGroup; - children = ( - 9470C0122B1CEFE0E5EB0E44CB510B68 /* FFFastImageSource.h */, - 998AF8A34DBB39420D04028C3FFCBF77 /* FFFastImageSource.m */, - C6C36B4CF0EFE6B9FBE55B0E968F387A /* FFFastImageView.h */, - 2625B767D0A3165A55BF95193B14F6A5 /* FFFastImageView.m */, - 6AB6F7A05712378F1F168AF79F14103E /* FFFastImageViewManager.h */, - C42295A853EA3272C33CC1007B5EA749 /* FFFastImageViewManager.m */, - BA82F24AE9818ECFBAAC74D9D13B0DC1 /* RCTConvert+FFFastImage.h */, - 3149899EA1140A5AAE52CCD55745C11B /* RCTConvert+FFFastImage.m */, - F2C96C477D8226F4791C9F63C3A28860 /* Pod */, - C97AD079866FF412E88ADF0012A68C29 /* Support Files */, - ); - name = RNFastImage; - path = "../../node_modules/react-native-fast-image"; - sourceTree = ""; - }; - 197CCF54254EB41F35CB9E7ED5C936CF /* Pod */ = { - isa = PBXGroup; - children = ( - C08CA5F5FD4835B128CFCF8A10302E56 /* RCTRequired.podspec */, - ); - name = Pod; - sourceTree = ""; - }; - 19DDEEEEB67DC748AE42D5B711A22795 /* Pod */ = { - isa = PBXGroup; - children = ( - F30CA48894CE9AB7992D762A62BEEB5D /* React.podspec */, - ); - name = Pod; - sourceTree = ""; - }; - 1A52D4B6AFA8602F4D6E078053FC4B7E /* React-RCTImage */ = { - isa = PBXGroup; - children = ( - 00E181409EB769E1E4567A58BB6438BC /* RCTAnimatedImage.m */, - 346826B90C891C3D7725CA4C9354B292 /* RCTGIFImageDecoder.mm */, - 5B6158AB2550CBA102DCA35CC0DC2013 /* RCTImageBlurUtils.m */, - 9BB1B2939F9907FFAD48E3DD565AEE10 /* RCTImageCache.m */, - 2660850DDB2DA283DA5E458102EAF98A /* RCTImageEditingManager.mm */, - 2D1FDE73C0584894CCEAA11A49E2129D /* RCTImageLoader.mm */, - D4A7990730C79B33E94B1BD3679B751B /* RCTImagePlugins.mm */, - 5B2843009ACC56D555D6CECDF3265A53 /* RCTImageShadowView.m */, - 5CE3DF498DAECCDBB770650734DEA869 /* RCTImageStoreManager.mm */, - C56C1693BDC084EDD80C7D26ADD67C9E /* RCTImageUtils.m */, - D16CF1F5F589134A5AD03CAAF6FF4E3A /* RCTImageView.mm */, - 10BC9BB79CE745F5F7AA23B9ACEDFC2A /* RCTImageViewManager.mm */, - 786509F4FA686BA87CF7D9D1756FE1E3 /* RCTLocalAssetImageLoader.mm */, - 7A7AD95B78F3A4DF14DA2B010AF9E31F /* RCTResizeMode.m */, - 87BC5392A15D33DF52E1EA10F18A8449 /* RCTUIImageViewAnimated.m */, - 9C7BED83817A7DCA4244F0B0096A6873 /* Pod */, - 808B97661809063B9FBF83711979460C /* Support Files */, - ); - name = "React-RCTImage"; - path = "../../node_modules/react-native/Libraries/Image"; - sourceTree = ""; - }; - 1AEFF8718A96DF986DA163FF3C3FA634 /* RCTImageHeaders */ = { - isa = PBXGroup; - children = ( - 26F32BCDDA6E518EC2F330306560C1D7 /* RCTAnimatedImage.h */, - 1B4B04C675AD000807C98844D4BCB30A /* RCTGIFImageDecoder.h */, - 06FB3CE26855FB694C1788270CD863E2 /* RCTImageBlurUtils.h */, - E707EF4A9F0B2CF92BFFC42E09E49239 /* RCTImageCache.h */, - 5C4190CC70591447D20794606785FDE8 /* RCTImageDataDecoder.h */, - DEB1C53ABC82E6C91B3D561E55026863 /* RCTImageEditingManager.h */, - 595D8F4E3C8DC70C61DEEE557893DE27 /* RCTImageLoader.h */, - A38031CF428F811D52F5E8700628EF3E /* RCTImageLoaderProtocol.h */, - A59E89BC17764FD67238AFCB3714E538 /* RCTImageLoaderWithAttributionProtocol.h */, - 513CCD42219FDB82C128464C0AD3C6CF /* RCTImagePlugins.h */, - CE6120ADA01F94B73B9EC7AB04DE0BE4 /* RCTImageShadowView.h */, - 4294ADC52CAD14B81DE5D364BF4332DB /* RCTImageStoreManager.h */, - 6648E271EB48C91A24CD30B895D7B530 /* RCTImageURLLoader.h */, - 07AA1343D184912CDFB622E045546DFF /* RCTImageURLLoaderWithAttribution.h */, - 5BC8D48210994F43DAE85577F073A325 /* RCTImageUtils.h */, - A090CF9C0A7BD1841F9ABBB8AEBDA75F /* RCTImageView.h */, - E24952E40FC2451E5EF180170FA299D5 /* RCTImageViewManager.h */, - 131CD649B2B7FE421F563A3FE5F15B97 /* RCTLocalAssetImageLoader.h */, - B6758DD46ADA704C20414E9814387441 /* RCTResizeMode.h */, - 0AEBB74E46017DCAE9ED28A67AE68D17 /* RCTUIImageViewAnimated.h */, - ); - name = RCTImageHeaders; - sourceTree = ""; - }; - 1B33BBDE85A572343E7D60B37DEBA6B5 /* Support Files */ = { - isa = PBXGroup; - children = ( - 63738A7284C8997966EA3B6F6B1C94BE /* ReactNativeKeyboardTrackingView.xcconfig */, - 9CBDA1D4944626DCD719D472BAD21DAD /* ReactNativeKeyboardTrackingView-dummy.m */, - DB3FACCE62965BA349C71B1CE35C403A /* ReactNativeKeyboardTrackingView-prefix.pch */, - ); - name = "Support Files"; - path = "../../ios/Pods/Target Support Files/ReactNativeKeyboardTrackingView"; - sourceTree = ""; - }; - 1B3879BDE51988479417A1B4943A6069 /* storage */ = { - isa = PBXGroup; - children = ( - C229DD1D2670A9D83AB53E37B472BE4C /* RNFirebaseStorage.h */, - F0F0CA4750B2846C91E0E6F8CC2F958B /* RNFirebaseStorage.m */, - ); - name = storage; - path = RNFirebase/storage; - sourceTree = ""; - }; - 1B726160768B9D92E1F2C13CF497AE30 /* Pod */ = { - isa = PBXGroup; - children = ( - 72F06AEF19767243AF081CAA23DC7E00 /* UMImageLoaderInterface.podspec */, + 5AE5AD4D6E1120F59E6FCEBF55F3BD80 /* React-Core.podspec */, ); name = Pod; sourceTree = ""; @@ -11005,72 +10759,122 @@ path = PromisesObjC; sourceTree = ""; }; - 1DD0B2EAFF2752623CB47676CBA5E973 /* Pod */ = { + 1C601049393116E711AFD0A481FDD4CB /* Support Files */ = { isa = PBXGroup; children = ( - 30BAC8AC4EF89E119C4D7156A861883C /* UMAppLoader.podspec */, - ); - name = Pod; - sourceTree = ""; - }; - 1E48829C241F58F37038166B20133A2D /* Pod */ = { - isa = PBXGroup; - children = ( - 44B9D8C69D69194F6D4A1FD5B0FF9ACE /* React-RCTBlob.podspec */, - ); - name = Pod; - sourceTree = ""; - }; - 1F9759B38C8F969AD772CB8F85AC4271 /* KSCrash */ = { - isa = PBXGroup; - children = ( - 68B28725610D0DD6C112641D47D2E566 /* Recording */, - 41CE3199D539E6A65D353C0231418F1C /* Reporting */, - ); - name = KSCrash; - path = KSCrash; - sourceTree = ""; - }; - 1F9EA41B88E4043A93C3C7FFA882F505 /* Support Files */ = { - isa = PBXGroup; - children = ( - 90C9BF5355CE3D22296D117057869FA9 /* RNGestureHandler.xcconfig */, - C4F1DF0D45EFB894C49030EFCEC3E5C1 /* RNGestureHandler-dummy.m */, - 896C4FB5CBD85DE33F5DCC0E34C9FC89 /* RNGestureHandler-prefix.pch */, + F5533FF4E173115AA0F77A12282598BC /* UMConstantsInterface.xcconfig */, ); name = "Support Files"; - path = "../../ios/Pods/Target Support Files/RNGestureHandler"; + path = "../../../ios/Pods/Target Support Files/UMConstantsInterface"; sourceTree = ""; }; - 1FCC6901162177014F3E1488CF628E09 /* UIUtils */ = { + 1CD94CC9C275E0A5BCA5652403D1C327 /* perf */ = { isa = PBXGroup; children = ( - 643C99E95EE10C5CE0A53CA23B7D7076 /* RCTUIUtils.h */, - 025E645C19027FF11B2AD002927427AD /* RCTUIUtils.m */, + 591D38364EB8299172D9C086BC05B87E /* RNFirebasePerformance.h */, + 36A376FF467EC3CDC4C7116372284927 /* RNFirebasePerformance.m */, ); - name = UIUtils; - path = React/UIUtils; + name = perf; + path = RNFirebase/perf; sourceTree = ""; }; - 215579E01CA51AC2DB90459D02EF36CC /* Singleline */ = { + 1CF547901F1B8346AB75ED23D36C30D2 /* Support Files */ = { isa = PBXGroup; children = ( - CDC6EBF6C7FAA54E8C3C87677CF4A20B /* RCTSinglelineTextInputView.m */, - F7AE66658B6D58193498536A962DE0A1 /* RCTSinglelineTextInputViewManager.m */, - 2444EE42E0284DE98A0E99D5624D1937 /* RCTUITextField.m */, + 1BEC1EB9E1D3680227515B298D3F4F4E /* react-native-document-picker.xcconfig */, + 71E18A5D75C4D4C29F1DE0ED91933EC6 /* react-native-document-picker-dummy.m */, + 0283A3002F44757BA1B3AF6061982331 /* react-native-document-picker-prefix.pch */, ); - name = Singleline; - path = Singleline; + name = "Support Files"; + path = "../../ios/Pods/Target Support Files/react-native-document-picker"; sourceTree = ""; }; - 21A37FD95C0465FF9F99F759118EABC0 /* Pod */ = { + 1DA352D4CDB2B7B2BBD5E77DC741A3E2 /* Pod */ = { isa = PBXGroup; children = ( - B7A1BE671777394FB2197CB0F8D38DDF /* FBLazyVector.podspec */, + A304871AE199D3FE35A90EF5CAC3AABF /* LICENSE */, + 7E2C4C1293460CFC239070FBF8E8CC96 /* react-native-safe-area-context.podspec */, + 02F4BD7B00C8135F8D62498B738ABDDA /* README.md */, ); name = Pod; sourceTree = ""; }; + 1F0B24D70BBEA237887CD21BFCE8054C /* Nodes */ = { + isa = PBXGroup; + children = ( + EBC4106BF941C1E24DE8147C1955EF6D /* REAAlwaysNode.h */, + 6CF43B31E190BC61E79AEC9711B7F496 /* REAAlwaysNode.m */, + BCD5BDEE49BAB38CF958DC41A38F7E28 /* REABezierNode.h */, + 828360F2C5EBD150D6C1422C8205CFE7 /* REABezierNode.m */, + 53BE9593DD3B59D4F27CCEEEEE01CD82 /* REABlockNode.h */, + 68A7667113C27C43A8AE50CDE437706A /* REABlockNode.m */, + 1536A2517FBDC7303862D1460299D00D /* REACallFuncNode.h */, + 00C920FE6A7C2E00A87998E93213D845 /* REACallFuncNode.m */, + 3FCBD9A198766DC5A90CE8EE2A7EEC25 /* REAClockNodes.h */, + D60CCBE897105F696DBA18045F670001 /* REAClockNodes.m */, + 8372FF8B7ABBCACFD7717706CC40F8D1 /* REAConcatNode.h */, + D55A9BEA525ECC99503941E43AD92B6E /* REAConcatNode.m */, + C2D4EB37DBC86E89625C75AB59DF4C7C /* REACondNode.h */, + 39A58431605AC4E10D49D9A287B166A2 /* REACondNode.m */, + 31F00CD9709CD358D4803D259F185D52 /* READebugNode.h */, + D2331A3DB4A7F7F2EA09871F7949E3B5 /* READebugNode.m */, + BBDDFD2576299ABD12AD8C07FD8CD6C5 /* REAEventNode.h */, + 0F6027A1B0EC49F593EF0E034F4D51C4 /* REAEventNode.m */, + C66923D07A4E755E225E655983497FAE /* REAFunctionNode.h */, + EDA997DA46A6869B2F24BFFCE01E1DBC /* REAFunctionNode.m */, + BFEA78FD1A11C6A8C6F0FDE796F4010B /* REAJSCallNode.h */, + A9C90B2CE097ECF49E1BB74BCCD4F1B6 /* REAJSCallNode.m */, + 2FF1012EBC98F00CF77CDF5E8ADC5331 /* REANode.h */, + C996BE03A7BA2CDC4E8EB2B86081FB7A /* REANode.m */, + EB7B259697BB5166461D289E034DE3BA /* REAOperatorNode.h */, + 717981A8C10CAF4407754DA1FE68F149 /* REAOperatorNode.m */, + CFC26328D166090CEF5A8AD3B96BF4B6 /* REAParamNode.h */, + 0F43B4E4107DC5E86D54B2C3C3D3958F /* REAParamNode.m */, + 9AED82AC0992CA90E633CE53D498FFD5 /* REAPropsNode.h */, + 68E366A8676F4931B436DC3BCB3205A3 /* REAPropsNode.m */, + 892ECBB32033CF5319C2A79BFA0DF6A4 /* REASetNode.h */, + BBAA5BA723F4CAF2352845BC16A24E44 /* REASetNode.m */, + 3D88C1D1AB6DDE903F51E028CAA6D0A5 /* REAStyleNode.h */, + 88ECFC89CCAD191725DD91E7F4F9B135 /* REAStyleNode.m */, + 780A9D480ECAE95CFD1A2214A4250ABF /* REATransformNode.h */, + C39B56B0AB2AC1FB3B5ACE926A107F62 /* REATransformNode.m */, + 13793D27D9663EE2DFE9483A184CEDF5 /* REAValueNode.h */, + B067FB353840014C51AFE3B3786E0A4C /* REAValueNode.m */, + ); + name = Nodes; + path = ios/Nodes; + sourceTree = ""; + }; + 1F3604E3F1D965A32004224A3BCA0210 /* Support Files */ = { + isa = PBXGroup; + children = ( + ED3650B9AC8E675BC39758884790E286 /* RNCAsyncStorage.xcconfig */, + 4B7E3E56833975B9944ADCE7C22117DE /* RNCAsyncStorage-dummy.m */, + 17C4D754119B450DA4F8E6BDD55537D4 /* RNCAsyncStorage-prefix.pch */, + ); + name = "Support Files"; + path = "../../../ios/Pods/Target Support Files/RNCAsyncStorage"; + sourceTree = ""; + }; + 20104AA91A6F13D528B030CDD18FD541 /* Pod */ = { + isa = PBXGroup; + children = ( + 87B5274D56C6FAF9A5AB98C3F54A417E /* UMPermissionsInterface.podspec */, + ); + name = Pod; + sourceTree = ""; + }; + 2126B9B48F979211693EBC798D165E50 /* Support Files */ = { + isa = PBXGroup; + children = ( + E41481304ED3CC13F1D82769C44E671F /* ReactNativeKeyboardInput.xcconfig */, + B9D8FDF66E36BB4042F0B2DDF2F724FE /* ReactNativeKeyboardInput-dummy.m */, + 672173E61524AEE9DFD81B5C96A4C854 /* ReactNativeKeyboardInput-prefix.pch */, + ); + name = "Support Files"; + path = "../../ios/Pods/Target Support Files/ReactNativeKeyboardInput"; + sourceTree = ""; + }; 220E8AFE711CCC2F2A01FE53AAB60789 /* FlipperKit */ = { isa = PBXGroup; children = ( @@ -11092,63 +10896,83 @@ path = FlipperKit; sourceTree = ""; }; - 224E968E09E112B6026EDF9E9E6A13CE /* Pod */ = { + 22A0097185DE5FAB0D1017A8DF884218 /* ViewManagers */ = { isa = PBXGroup; children = ( - 01C8D2F0DA3AC1453C4A4E1AAEBEDAF0 /* README.md */, - 6E484E6752AFB0619F0ED1AD505354CF /* RNRootView.podspec */, + 3A6AC2C3226991D005019717AE015C45 /* ARTGroupManager.h */, + 9EBC1EB2B9F5C4AF5CA545985640E087 /* ARTGroupManager.m */, + ACDD01CC361DCC116F79A0AAF9401EF1 /* ARTNodeManager.h */, + B8ED15CD12C9B59F2F324CCC68D22FD4 /* ARTNodeManager.m */, + 473F02F4D428A4AD6748CBB62E874C13 /* ARTRenderableManager.h */, + 2ACF30ED9C4843CE6121C3225A01ABAC /* ARTRenderableManager.m */, + 43CD7B746747F2A250267511076E9D08 /* ARTShapeManager.h */, + 481F5BDC0821ACF8ED5831526566E112 /* ARTShapeManager.m */, + 893713BF698F9D6CD7BB26EA5372A990 /* ARTSurfaceViewManager.h */, + D7339345B900ED086E872BD9031F64BE /* ARTSurfaceViewManager.m */, + ACECABC145F13DC1C30D839FBBCA96ED /* ARTTextManager.h */, + 13CFFC02BC55E77948F98BD3E18ADF15 /* ARTTextManager.m */, + ); + name = ViewManagers; + path = ios/ViewManagers; + sourceTree = ""; + }; + 2302AC52873A96CAF3DFA33728A1AFCC /* Source */ = { + isa = PBXGroup; + children = ( + 124E5A7CCD821049F23A3D155F7597B4 /* KSCrash */, + ); + name = Source; + path = Source; + sourceTree = ""; + }; + 233D54C1C55295F3518CEF8FA696EEEE /* Pod */ = { + isa = PBXGroup; + children = ( + 87582EA6E61006A440F724E6FE877EA9 /* LICENSE */, + A52A1231CE648E5090526BC85272325C /* README.md */, + A1DA803FBAA1370B941169760193931B /* RNUserDefaults.podspec */, ); name = Pod; sourceTree = ""; }; - 22B8878C03FF0E845D30531EF34198D9 /* React-jsiexecutor */ = { + 23C498ADFB6B72D9F59F16B1935F239C /* Singleline */ = { isa = PBXGroup; children = ( - 0339FF0394421A78EC4E62FACD4BBDEB /* JSIExecutor.cpp */, - 85D7EA372D091B41050D682B16FBD362 /* JSIExecutor.h */, - 449186A1FD562F7DCB008783E13C8BCE /* JSINativeModules.cpp */, - 7BFD2EF897B8C56DCB198B1BAB5FC9E7 /* JSINativeModules.h */, - 67C1609F0508825F322811C96A4007A8 /* Pod */, - 4F576D1987C11155DAA506741CBC77DB /* Support Files */, + 6669BBABA3CA6F813B03FA1C2B330DD1 /* RCTSinglelineTextInputView.h */, + 5A7DCFB3F575C0CBEB1478EE7B915259 /* RCTSinglelineTextInputViewManager.h */, + 0413E64D3D0161176688283A1DC4E85F /* RCTUITextField.h */, ); - name = "React-jsiexecutor"; - path = "../../node_modules/react-native/ReactCommon/jsiexecutor"; + name = Singleline; + path = Singleline; sourceTree = ""; }; - 23C007FAAC3BF44C6DCDF0FA37F53CBF /* Support Files */ = { + 245710CABE12DFD9618AB9ADA8226BD3 /* Support Files */ = { isa = PBXGroup; children = ( - 4170EA930CC1710E8CD10295F5027F00 /* rn-extensions-share.xcconfig */, - DA85E657E1A04BF36A3D6719725246AA /* rn-extensions-share-dummy.m */, - 904A4896430B13B9E0ED745E2F64C6AC /* rn-extensions-share-prefix.pch */, + F5108F76DDB23647D6A8A6B30B55CD9B /* UMCore.xcconfig */, + 200635613A73F94C802EE45C3A6DE4E0 /* UMCore-dummy.m */, + 93007B76A6582C2A4DB63A4335261E04 /* UMCore-prefix.pch */, ); name = "Support Files"; - path = "../../ios/Pods/Target Support Files/rn-extensions-share"; + path = "../../../../ios/Pods/Target Support Files/UMCore"; sourceTree = ""; }; - 247B1300D13C1611C7F59AB97414AD50 /* EXConstants */ = { + 2462EC5B6BEBEA609E87E9644D114963 /* UMModuleRegistryProvider */ = { isa = PBXGroup; children = ( - 05E0A0D2314B170BE1F42E0C84F1599A /* EXConstants.h */, - 1642B5970EA2D1E7F8CA2E2121764DEB /* EXConstants.m */, - 5B7F0E33C1B2FD4761AFBF32AF3615FB /* EXConstantsService.h */, - C44725A1EC6B0D7042E990E8FFAD2EBC /* EXConstantsService.m */, - 62DD65BDAD21786832F1665CF4036965 /* Pod */, - 0CC265D5D87E747A8FC6AEACB14A603A /* Support Files */, + 6593EFE3ED56BECBC63BBC8141AEC958 /* UMModuleRegistryProvider.h */, + 0097D11539DB09FDF8537B5F03892D6A /* UMModuleRegistryProvider.m */, ); - name = EXConstants; - path = "../../node_modules/expo-constants/ios"; + name = UMModuleRegistryProvider; + path = UMCore/UMModuleRegistryProvider; sourceTree = ""; }; - 25CB0469783D4D915BD07DD663977BF4 /* Support Files */ = { + 259EFF8F09E6336127295EC54A463829 /* Pod */ = { isa = PBXGroup; children = ( - 050293ECCB39238309F20D196347F57D /* React-RCTText.xcconfig */, - 94B1495E7AC6173D77EE9923CB0C47DD /* React-RCTText-dummy.m */, - 65452C3A8D28695AB45DB372121151EA /* React-RCTText-prefix.pch */, + 2D77F3BDBF68CAFA88D4D953B4D3BBE5 /* FBLazyVector.podspec */, ); - name = "Support Files"; - path = "../../../../ios/Pods/Target Support Files/React-RCTText"; + name = Pod; sourceTree = ""; }; 25F537B91CC2261AB7550F2D39AB6DFD /* FlipperKitUserDefaultsPlugin */ = { @@ -11162,44 +10986,59 @@ name = FlipperKitUserDefaultsPlugin; sourceTree = ""; }; - 265D0857017BE95DEAD1E52EAF9FBA28 /* Services */ = { + 264884825172409ECB29DE30F0EC9516 /* Pod */ = { isa = PBXGroup; children = ( - A70BC19B9CE70FBC2F3A251A3BCC2C56 /* UMLogManager.h */, - 1749F6851479091C87395887DCD61E51 /* UMLogManager.m */, + B2C36029F5F99FBFEC67ED432D99C331 /* LICENSE */, + 82A2E1000F98F68AB290D792511BDA1E /* README.md */, + 2A8C598E7D13712E2A6522664C2CF902 /* RNFastImage.podspec */, + ); + name = Pod; + sourceTree = ""; + }; + 26996BC4B090F7A699255ABA0A044CC9 /* rn-fetch-blob */ = { + isa = PBXGroup; + children = ( + DA4CEC5047545E3556229DF8CB6541BC /* IOS7Polyfill.h */, + 072B9E791180B7D7FE19C97C893B6653 /* RNFetchBlobConst.h */, + 19A5C1BAF8428B34150303C337E44879 /* RNFetchBlobConst.m */, + 6909042DFF19168DA427F9C7AB105438 /* RNFetchBlobFS.h */, + 315E30612ACC9C13920085075E20ECF5 /* RNFetchBlobFS.m */, + DEB3479887188EAFB1998B464C6ADEB3 /* RNFetchBlobNetwork.h */, + 252073097B750D2CAB7B88D7EDE405FD /* RNFetchBlobNetwork.m */, + 8DA21CF66F10294ADF736D5CA5E81706 /* RNFetchBlobProgress.h */, + A7AA527D7FE5D0F6C82B2404F06A5960 /* RNFetchBlobProgress.m */, + 9AB085AADF89EE159EE7B7C3A83EBE18 /* RNFetchBlobReqBuilder.h */, + 1CF7CEE1C42E8D00C7C092FD3DC9283E /* RNFetchBlobReqBuilder.m */, + B4791BC487C6BE27262A5F71B4048162 /* RNFetchBlobRequest.h */, + ED89A604A4896CB788F8BBFB19CDBC67 /* RNFetchBlobRequest.m */, + 8CF24F769C4432B016BDCE8624F9DD06 /* Pod */, + 70521524E0BE801C7335DDAE3BDA795E /* RNFetchBlob */, + 3739FC9533CBB35F8960FB403B9D2BF5 /* Support Files */, + ); + name = "rn-fetch-blob"; + path = "../../node_modules/rn-fetch-blob"; + sourceTree = ""; + }; + 274B7E79456474A4C621BCB5F1FA63F9 /* Services */ = { + isa = PBXGroup; + children = ( + 3646527743CE2F902987E585B9697E4F /* UMLogManager.h */, + C0AFC2A3F699ACD26839D82946D8B10D /* UMLogManager.m */, ); name = Services; path = UMCore/Services; sourceTree = ""; }; - 266C53CD9F82282A7CAB70AECF3D67A7 /* callinvoker */ = { + 27B08A9FD0C116B5DF94C4EA59718BB3 /* Support Files */ = { isa = PBXGroup; children = ( - 156000D09829F9412CE412849106C412 /* BridgeJSCallInvoker.cpp */, - 30D01623D5B2069095D4078A25ADB625 /* BridgeJSCallInvoker.h */, - 4921921C7C64404DD7FF84797378B2BD /* CallInvoker.h */, - E2DDA6DC942834BBBE14643AF830A50A /* MessageQueueThreadCallInvoker.cpp */, - 6F5705092A7E5EC01EFB09386E8FAEEF /* MessageQueueThreadCallInvoker.h */, + 12C15A8BB31648A1D34690B78BC5735C /* RNCMaskedView.xcconfig */, + E50204785706C0FB755F40E85186379D /* RNCMaskedView-dummy.m */, + 9E8D7A1E3CE26C9ACC0A1520B8423ED7 /* RNCMaskedView-prefix.pch */, ); - name = callinvoker; - sourceTree = ""; - }; - 26CB6B03B1B6A74D7E8525B3C972F701 /* Source */ = { - isa = PBXGroup; - children = ( - 1F9759B38C8F969AD772CB8F85AC4271 /* KSCrash */, - ); - name = Source; - path = Source; - sourceTree = ""; - }; - 27CBE4131BDDBD724884CD5D33B3A062 /* Pod */ = { - isa = PBXGroup; - children = ( - 5B64365F2CE08876FF36A80AA1783DA8 /* KeyCommands.podspec */, - BE479547392B4094703EFDBC6509C671 /* README.md */, - ); - name = Pod; + name = "Support Files"; + path = "../../../ios/Pods/Target Support Files/RNCMaskedView"; sourceTree = ""; }; 280CE93A920EB70C7634F8D7DFCC87C6 /* Support Files */ = { @@ -11211,33 +11050,12 @@ path = "../Target Support Files/FirebaseCoreDiagnosticsInterop"; sourceTree = ""; }; - 28A73EF51796778EE8EAC3A975651DFC /* Resources */ = { + 28C4ACFFEE74D50BF1708CF213708B38 /* Pod */ = { isa = PBXGroup; children = ( - A0FEBA98F4D9A822A665C76B34936BF8 /* AntDesign.ttf */, - 696068ADA8823D325D81CEAB7E79445A /* Entypo.ttf */, - 49AC4F1EDFD471A0178ED2F38D110BE8 /* EvilIcons.ttf */, - 5963C665BE241CBBFBF347C93599A890 /* Feather.ttf */, - BA4660B8FF0C9BCA3CE3504D7C65E022 /* FontAwesome.ttf */, - 693FF7F5A48A54001372327577F4738F /* FontAwesome5_Brands.ttf */, - 89AC205EF8525776E545D30976209280 /* FontAwesome5_Regular.ttf */, - 524F9C9E4189025DCA5E843BA359C667 /* FontAwesome5_Solid.ttf */, - 62846AD2796D14779D9E039E090C56FF /* Fontisto.ttf */, - B0C3213F266EE3934FC3A0D35E47A08D /* Foundation.ttf */, - BF02A4360C993EA209F4841480D7BFCC /* Ionicons.ttf */, - 3C8355C5A727F67C1B3CC117903FECB9 /* MaterialCommunityIcons.ttf */, - 0E42CC7555AD8E8F6B67AFD7B4427870 /* MaterialIcons.ttf */, - 6029FFF1B1A0E895DC80EC2F2BD7646E /* Octicons.ttf */, - 0FBF585EBA9B386402A60BD79F70A534 /* SimpleLineIcons.ttf */, - 4997FC565EB64A458E9459418736C6B6 /* Zocial.ttf */, - ); - name = Resources; - sourceTree = ""; - }; - 28CEE3B53434016CBAFAF3FFE7C7B5B2 /* Pod */ = { - isa = PBXGroup; - children = ( - 81F5C2EF37CF8CEA19EE31033EF82125 /* UMPermissionsInterface.podspec */, + 89AA02F55FB6020E6DC4422FDAA52118 /* LICENSE */, + 42304D04296C104C5A04AB9D9878BB8B /* ReactNativeKeyboardTrackingView.podspec */, + 509028E070AB957F72F727EC93936D7C /* README.md */, ); name = Pod; sourceTree = ""; @@ -11250,53 +11068,71 @@ name = Frameworks; sourceTree = ""; }; - 2B82DD34B6F225D7C08445875360AB61 /* Pod */ = { + 29FF0CCC1720778AE2ABB62F7B32D8D8 /* EXPermissions */ = { isa = PBXGroup; children = ( - 77CA1053BDB2B72809CA94CC2AD8CC5F /* LICENSE */, - 066BB0768735A88992CD059E35B6F38F /* react-native-jitsi-meet.podspec */, - 8A1DBB81EFCFB6432AC159B9FB62D2FF /* README.md */, + 9E2782C076229A3A4F57ABBE803EECBE /* EXPermissions.h */, + 64837325DA9D6A7135EAB9B8DE48E7E6 /* EXPermissions.m */, + BAEDE1CCBE0BCB69157858C188FAE38F /* EXReactNativeUserNotificationCenterProxy.h */, + 391CA92AF38B070C9D48198DA95E01F1 /* EXReactNativeUserNotificationCenterProxy.m */, + 0D88C14C17230FBF378F5064DAC3153F /* Pod */, + 09EE71E646B25ED865DB004805B82020 /* Requesters */, + 2E656B8278A96BDF3512A99878F652C3 /* Support Files */, + ); + name = EXPermissions; + path = "../../node_modules/expo-permissions/ios"; + sourceTree = ""; + }; + 2A41B5CEDBF670947CD578B0D538884F /* FBLazyVector */ = { + isa = PBXGroup; + children = ( + 784DF0D67E7C8BCF1BDCDBD7B77329A6 /* FBLazyIterator.h */, + 6660FF36E9DF007812804E2479A90A67 /* FBLazyVector.h */, + 259EFF8F09E6336127295EC54A463829 /* Pod */, + F769BA449D6CBBD1BA2B6D949567A492 /* Support Files */, + ); + name = FBLazyVector; + path = "../../node_modules/react-native/Libraries/FBLazyVector"; + sourceTree = ""; + }; + 2B03C9BC8B25190AF279BD60F5CD2F72 /* Pod */ = { + isa = PBXGroup; + children = ( + B879AA4880A9E10FBF9549AB4DC915F2 /* LICENSE */, + C1FC9167130E87E5FE4099E1FADF8B45 /* ReactNativeKeyboardInput.podspec */, + 01F4F7D53CF25246E7BCE70691A4403B /* README.md */, ); name = Pod; sourceTree = ""; }; - 2BCD39FFC62C1C72493B04CB4BE77F10 /* database */ = { + 2B7D4C58DF4FC12FDA2E8857C2374C30 /* Text */ = { isa = PBXGroup; children = ( - 9A07EB1BB471CCBD3DDB3373E225CFD6 /* RNFirebaseDatabase.h */, - FE96DC8BB3D1E56398BB5DC38C611909 /* RNFirebaseDatabase.m */, - 0B3D37D4AD8CFFB551561CAB8EFED1F7 /* RNFirebaseDatabaseReference.h */, - A1C749454E7A224BF2E84D8812788E93 /* RNFirebaseDatabaseReference.m */, + 33B6127CA909C10B3039F6A36F103041 /* NSTextStorage+FontScaling.m */, + 769B15941AB9A886CBC4D62243ECB089 /* RCTTextShadowView.m */, + 62F5544F3B0E6E40B0BE63A40E428E64 /* RCTTextView.m */, + 185CD58BED2B02551383ABB98EB8B447 /* RCTTextViewManager.m */, ); - name = database; - path = RNFirebase/database; + name = Text; + path = Text; sourceTree = ""; }; - 2BFCCD8FB1F341ABE2FDBB306D0E837E /* Pod */ = { + 2BD34408034135082AF9275C3036904F /* Pod */ = { isa = PBXGroup; children = ( - 4BD12A4E0E9E120671E3595F05564CB8 /* FBReactNativeSpec.podspec */, + 78829D61E9319B929CF22DDFFF0C76B6 /* UMFontInterface.podspec */, ); name = Pod; sourceTree = ""; }; - 2D08631F78712C1B13DFC454C6A721A9 /* EXAppleAuthentication */ = { + 2C1C3AB8966602357A75D53C8361D41C /* Pod */ = { isa = PBXGroup; children = ( - 9882D646B43B77E05AD92A8392005D1F /* EXAppleAuthentication.h */, - 40DD3FADDC87FB94BC8C59709E9960A3 /* EXAppleAuthentication.m */, - 906EAEFB0C5A8EE1E65224A170387B98 /* EXAppleAuthenticationButton.h */, - 43E4F1558AC479BE196BDD1CFC6902BA /* EXAppleAuthenticationButton.m */, - 8F4AF770831C42771BFF441F32A06190 /* EXAppleAuthenticationButtonViewManagers.m */, - 8531146500933BC6E506E180A61DEEB1 /* EXAppleAuthenticationMappings.h */, - 62381861DE4FD973F0A21B9ACADB2F15 /* EXAppleAuthenticationMappings.m */, - 4CD8D621D244624D31D23B1C91014A93 /* EXAppleAuthenticationRequest.h */, - 4831228447E518D4B8D8BFB7333FFE97 /* EXAppleAuthenticationRequest.m */, - C67A0E6AAA8F1033C8EA52378A6606BC /* Pod */, - B9314F7A099277D1AC5E63B641B433C5 /* Support Files */, + AE63F53BA7000B9AE1CA5FADEECA08B1 /* LICENSE */, + 8C205DE98FB735CBA9C074D3AF8C53BC /* README.md */, + E18C0161248F1BFFB1495B94FA7FE68E /* RNGestureHandler.podspec */, ); - name = EXAppleAuthentication; - path = "../../node_modules/expo-apple-authentication/ios"; + name = Pod; sourceTree = ""; }; 2D0BC511DE014646C3246B137502B404 /* Support Files */ = { @@ -11320,61 +11156,160 @@ path = "OpenSSL-Universal"; sourceTree = ""; }; - 2E85BCF9B180B4C7DE7F28C05D0685C1 /* Support Files */ = { + 2E656B8278A96BDF3512A99878F652C3 /* Support Files */ = { isa = PBXGroup; children = ( - CD89CF5BA6AB187F237B8A20B4CFA470 /* UMAppLoader.xcconfig */, - ACBC6B28CBAE195DCE491C2C0BF291BA /* UMAppLoader-dummy.m */, - AA59683EAE2D4F30A185132700EC4A23 /* UMAppLoader-prefix.pch */, + CCF550282A5878C616CBF4F0FEA8C767 /* EXPermissions.xcconfig */, + 910DFCD3F0EC720CAEE9477DA097E65B /* EXPermissions-dummy.m */, + BE0DD49575309677001AAA0ADD607183 /* EXPermissions-prefix.pch */, ); name = "Support Files"; - path = "../../../ios/Pods/Target Support Files/UMAppLoader"; + path = "../../../ios/Pods/Target Support Files/EXPermissions"; sourceTree = ""; }; - 2F0F7BB0491A7C6EB25A3ACC13673717 /* EXWebBrowser */ = { + 2EFF6ABD2FF999AAF512837E58103D52 /* Support Files */ = { isa = PBXGroup; children = ( - CFC9523B63CD897F2AB2DCE4C52B265E /* EXWebBrowser.h */, - 8B5B25E03A4B03627DAF31A4398E5009 /* EXWebBrowser.m */, - 47E7742150B55ECE42CAB139243FEBD4 /* Pod */, - 0BDA0E5DAE60284E397056711DB96C3D /* Support Files */, + 1EC71A35AFECF54C8539BF3186408413 /* UMCameraInterface.xcconfig */, ); - name = EXWebBrowser; - path = "../../node_modules/expo-web-browser/ios"; + name = "Support Files"; + path = "../../../ios/Pods/Target Support Files/UMCameraInterface"; sourceTree = ""; }; - 302FEAE76257008346957632C0FCCEA6 /* SurfaceHostingView */ = { + 304F3EB9ADE22A89751B810FC02AC8D3 /* react-native-notifications */ = { isa = PBXGroup; children = ( - 564DEFDF58ED06E037C757714E253443 /* RCTSurfaceHostingProxyRootView.h */, - 6AAC0C247FEA5320D92290C2AA6F16A1 /* RCTSurfaceHostingProxyRootView.mm */, - 75D557C23935A8E80A7188A1DCF5E3BE /* RCTSurfaceHostingView.h */, - 86BCF8918FA45AE14CB04B6ADA4D6627 /* RCTSurfaceHostingView.mm */, - 5203E8481C68C7F88B05A6095736E0F2 /* RCTSurfaceSizeMeasureMode.h */, - A66DACA6A2BC66D2AD2A1C50D43D9D59 /* RCTSurfaceSizeMeasureMode.mm */, + 573A852C61AEA240A3CEBECB8EE12406 /* RCTConvert+RNNotifications.h */, + E5BF776F5AA6FDB065E29C3947EE33A0 /* RCTConvert+RNNotifications.m */, + FEF30937C7417CE5CEB42200DA9287A4 /* RNBridgeModule.h */, + 4DC84E745BE05BFB6B02C10D85B2CB44 /* RNBridgeModule.m */, + 550F7B33D97D673FC5789E786A40D16F /* RNCommandsHandler.h */, + CA654CC2D3556857A8BA944DF2C6E89C /* RNCommandsHandler.m */, + 969B38C40EB4B3C167E85CEC96A4B05F /* RNEventEmitter.h */, + F7BF842F2D161BD3F11404C48C359F4D /* RNEventEmitter.m */, + 69A2F3EC12693E34204C481C3C8E7977 /* RNNotificationCenter.h */, + 1E28E449FF97CFFC696F2A7853D0E4C3 /* RNNotificationCenter.m */, + 488EA45EBA343D1BD2A4E6DAA324BD75 /* RNNotificationCenterListener.h */, + B9FB9C8FD441AEF1F1C7A7B31A94754E /* RNNotificationCenterListener.m */, + 405CE6E42958F6497FCC871639B27D12 /* RNNotificationCenterMulticast.h */, + 97DC3F18B3CA75DA1B62A7EA796D8FD7 /* RNNotificationCenterMulticast.m */, + DC584F4853C49B6A47A239ABA299F455 /* RNNotificationEventHandler.h */, + 8819E9AFD8883C315FB38B53E616EC46 /* RNNotificationEventHandler.m */, + F3BFB553EE581EF66B7540E20EB2B2D8 /* RNNotificationParser.h */, + E32C20D73ADD0C1F17C16EAF8AA1EFCD /* RNNotificationParser.m */, + 98838DD15580B0FED5C489DFEE193B57 /* RNNotifications.h */, + F23B25CE57184699A97E24551384BA90 /* RNNotifications.m */, + C9632E2040F40F5BFC7BE04BD414A025 /* RNNotificationsStore.h */, + 467975DF49FA8AE7AFE680622496B593 /* RNNotificationsStore.m */, + 58052050747C3FE6DB77709BD5A8A66F /* RNNotificationUtils.h */, + CD37982FBCA468722CE773FF5F5A4F79 /* RNNotificationUtils.m */, + 049220A983DD98D10CD3B951DD39C6B4 /* RNPushKit.h */, + FCBB799233713D6125A6EF556649905A /* RNPushKit.m */, + BE71F3AFE22012555B5D1DCDEFB2CF62 /* RNPushKitEventHandler.h */, + A99A041ED33EBAA221EA360164457909 /* RNPushKitEventHandler.m */, + 90FD86B01596B0B8A1B81C346B478834 /* RNPushKitEventListener.h */, + 68CB741F2F5B84BBA0F11CE1031DF816 /* RNPushKitEventListener.m */, + D827203C511D299134197DC4948A0763 /* Pod */, + 352C73F9CEF4A494097B28AE6F93CF3C /* Support Files */, ); - name = SurfaceHostingView; - path = SurfaceHostingView; + name = "react-native-notifications"; + path = "../../node_modules/react-native-notifications"; sourceTree = ""; }; - 303DC452A2F618FF0F8D530EB8ECC9C2 /* Pod */ = { + 30F42A9E6B226187CD6CA1E71F0459CD /* Pod */ = { isa = PBXGroup; children = ( - 241396C8A411DEA5271976B765D0DB6B /* LICENSE */, - 6A5315283474BCB6DFD5D91C8B339DD9 /* README.md */, - D66CC6911658BDC0840E34D562559037 /* RNReanimated.podspec */, + CD5401A19DD3DC1B730BFBBC7E0F3137 /* UMCore.podspec */, ); name = Pod; sourceTree = ""; }; - 305431BE074DD17F30563ECC511D40FC /* VirtualText */ = { + 312C461759B647FAC18CC55BACF4031D /* Base */ = { isa = PBXGroup; children = ( - 6988A2C472E936589B7F837072850348 /* RCTVirtualTextShadowView.m */, - 3DC83B2F3CD5791A8779CE94324B6B47 /* RCTVirtualTextViewManager.m */, + 3A0F410686B929E48A45C2FFDB884AC4 /* RCTAssert.h */, + C4AE0CF38FB42ABE030B6B83F558201C /* RCTAssert.m */, + F176B9B10C37030B40F8D88EED0D9A51 /* RCTBridge.h */, + 137FE58F1CDB2EC5FF9EF933090BAFAE /* RCTBridge.m */, + 3BEFCF7F952DDC32218B9E04B414E1CF /* RCTBridge+Private.h */, + CBBDBC408FFFE7DC971C3C44329E3DB3 /* RCTBridgeDelegate.h */, + B9A8CE8AB23F13A5DE6C1D112A93B1E2 /* RCTBridgeMethod.h */, + 2DB0380EF9E1141B65BE3D7DA88631E4 /* RCTBridgeModule.h */, + D638F221E3CE34933AF13D4EA28C170A /* RCTBundleURLProvider.h */, + 3FF3FF75DD075F7CA62B764F72CEBD64 /* RCTBundleURLProvider.m */, + D0A3C68B487A7AA617560F9733EB33FE /* RCTComponentEvent.h */, + 10E7A69DA6A55396675CCA922EB93C4B /* RCTComponentEvent.m */, + 73C5B2ACE4F0154BAB393D453FC8E258 /* RCTConstants.h */, + AAB8791040F75B9ED1111A26A19615DB /* RCTConstants.m */, + 5CCFF5CD2190A19D027A776722CA4AD3 /* RCTConvert.h */, + 0BA9BC34F99DC62F2FC25B815203955B /* RCTConvert.m */, + CE2D5D4ED26C35F734EA94744CEF59DA /* RCTCxxConvert.h */, + 79E9108E881442C8CC274962D6041082 /* RCTCxxConvert.m */, + 1E7C3B2B241134A08DEAD77648CFB6D7 /* RCTDefines.h */, + AD8629C1590BC91E6D89DD35DBA5D904 /* RCTDisplayLink.h */, + 53C28BDA6F66A6FA5DF59665F1716305 /* RCTDisplayLink.m */, + 1F89EA536C6C65EA83A27CD06AB074FE /* RCTErrorCustomizer.h */, + DA4C4CFBE719F9CCE6BA84D57D186139 /* RCTErrorInfo.h */, + 510C5D22CFBB0301BA66BCAF7BA31495 /* RCTErrorInfo.m */, + F55ECEF025F79E3E7E6BAF4979AC34FE /* RCTEventDispatcher.h */, + 4837ADC18FC3FDBAA05379BDC872B182 /* RCTEventDispatcher.m */, + 9AB42448500785C24E67529CB5AB1F4B /* RCTFrameUpdate.h */, + 1756A88F6DBB44BAD5C3CAE0F5EB6FD3 /* RCTFrameUpdate.m */, + A92E58613D509249E06AED4B27E88E0D /* RCTImageSource.h */, + 7B83E53DF7A6FF8F260959DB6E7FAB45 /* RCTImageSource.m */, + 19D7D6F0E17D927BBE30DCDE0FCE37FB /* RCTInvalidating.h */, + 4B12D9CDA0680E9AC201A085DC0E2D6C /* RCTJavaScriptExecutor.h */, + 325AFA73CDE70E8C6AC0BE5AF94DACA9 /* RCTJavaScriptLoader.h */, + 1DAF91F53F6948D0D5A58CA5E32D0DE5 /* RCTJavaScriptLoader.mm */, + B0897776AFCF780ACA05469D1693C30D /* RCTJSStackFrame.h */, + B7830A2BEAF6E48C6DA926A85E247D65 /* RCTJSStackFrame.m */, + 5718D65ACAFDA3E380A795D2213C9FD5 /* RCTKeyCommands.h */, + B5E98AAC0018BFC8FE541116C1FE66BD /* RCTKeyCommands.m */, + B1C240F0D5FAD5625752B46A494B4C5E /* RCTLog.h */, + 8E0A02ABFB91E677BFFDBD8D9EB7D940 /* RCTLog.mm */, + 4A0A044F7C56744E4ACD3967FBB587CF /* RCTManagedPointer.h */, + C082C061C52B41DC74CF1FF0B88F2D31 /* RCTManagedPointer.mm */, + ADC8662D2B225266F38ACAE80CCE4755 /* RCTModuleData.h */, + 3AFC24C975DF60D33325002D50551F2D /* RCTModuleData.mm */, + 3E836991B71B728A813D372F81097379 /* RCTModuleMethod.h */, + A0E427C7108909EFB5B15D46A98F8E9B /* RCTModuleMethod.mm */, + 5CBCE6689D73624EB52DC50A7A547061 /* RCTMultipartDataTask.h */, + 22523B8328A113E5BFC3B03C112318A3 /* RCTMultipartDataTask.m */, + 23B7C6A6D953E1B949A355CF8CC81241 /* RCTMultipartStreamReader.h */, + 445B5D874D9279FC5543322472F105D8 /* RCTMultipartStreamReader.m */, + CD4A0028E5BBD4F2C7395135B4E845FE /* RCTNullability.h */, + FEAD297F7DAC54FCDAAE8AF277732D69 /* RCTParserUtils.h */, + B262D82F6BD4B463D3577BE73FB17FBE /* RCTParserUtils.m */, + 72E198311F24C1FB49B976D9D5A22732 /* RCTPerformanceLogger.h */, + E5894364459636BB0BB2A1C4817C7901 /* RCTPerformanceLogger.m */, + B77946B7B7F16FECC6DFCFA73EA557D7 /* RCTRedBoxSetEnabled.h */, + 81AFDEF547C5C5756ED77C489BE02B72 /* RCTRedBoxSetEnabled.m */, + 1B48034B35121007E76DEFC40B7D903A /* RCTReloadCommand.h */, + 92A1BAE7EC0FE27F54294005FB25DC2C /* RCTReloadCommand.m */, + 1989F090528758E27F7161706F8B361A /* RCTRootContentView.h */, + 2F0325724007B72AFA7EE715258DDB4F /* RCTRootContentView.m */, + 13F2CAD9162D050C6960CDA99D8FA813 /* RCTRootView.h */, + AFEE683D106C72392F7771B6BC5A8E3F /* RCTRootView.m */, + A345FE4E7777B59E1D2D315643B09957 /* RCTRootViewDelegate.h */, + 2E7BFCBEA87A5744BCEABEF955612D99 /* RCTRootViewInternal.h */, + 7BFD569DDAA4E13A2C31FE824026A992 /* RCTTouchEvent.h */, + EC11D56910273407F9CEE37E167F3CBB /* RCTTouchEvent.m */, + 77A500EDCB6B70D13DC0361DEEE1B687 /* RCTTouchHandler.h */, + 8C0FCA294C4FAA53822A596DB70AD113 /* RCTTouchHandler.m */, + 4207E3CFE2B8D22E118EEB6161388B41 /* RCTURLRequestDelegate.h */, + 451D0D92F2148140AEF5B245B955B7A4 /* RCTURLRequestHandler.h */, + D51449D4A44F7D5B052ACFB57D074E72 /* RCTUtils.h */, + B546FB1416D2A98D9823F6DE5E687639 /* RCTUtils.m */, + 95EA76A62A25B3C0A87966E01C27818F /* RCTUtilsUIOverride.h */, + 2FB541B83A2F7F69060002F122465ABB /* RCTUtilsUIOverride.m */, + ED585EDDA1FD3A410BC1A7519DE62690 /* RCTVersion.h */, + 18DC5708BAE034786152C1250EFBB451 /* RCTVersion.m */, + F06427FA5DBE7CDEE87B2B2DA8EF2E48 /* RCTWeakProxy.h */, + 83B78F749963DCB88F05E67EA16225F4 /* RCTWeakProxy.m */, + 90882F93C2A3481A8DA65031135588FB /* Surface */, ); - name = VirtualText; - path = VirtualText; + name = Base; + path = React/Base; sourceTree = ""; }; 31516D027AF40B4FB1323F057D75EA9E /* Support Files */ = { @@ -11386,82 +11321,31 @@ path = "../Target Support Files/GoogleAppMeasurement"; sourceTree = ""; }; - 317BE13528C9A8D44F3F0482124D3ABA /* Support Files */ = { + 3163C3AEC16910DC556B1896F57308C7 /* LNInterpolation */ = { isa = PBXGroup; children = ( - 69AE13D23811D322D270415DA06E5638 /* UMCameraInterface.xcconfig */, + 145F4DF6B52C9A75A68E1E67CAA81C7A /* Color+Interpolation.h */, + E9A745D1EE5A7A4991E265DBB7F47D76 /* Color+Interpolation.m */, + C30E9ABC632F2958332FE681AD77591A /* LNAnimator.h */, + AA4409B962C6BD063E2902E75EF0692E /* LNAnimator.m */, + 284B9B89A1F33F4189DF7F7A93A6AD3D /* LNInterpolable.h */, + 6A35C307642B049F4D1461ACB8C35E86 /* LNInterpolable.m */, + ACA4BBCB6F88E1B04C71884CEAFA064F /* LNInterpolation.h */, + 8B3D4A840C5ADC51C6C3DDBF09DE5D29 /* NSValue+Interpolation.h */, + ); + name = LNInterpolation; + path = lib/ios/LNInterpolation; + sourceTree = ""; + }; + 352C73F9CEF4A494097B28AE6F93CF3C /* Support Files */ = { + isa = PBXGroup; + children = ( + DF5620D9B6A7BE0EF8BC9BFAA4FDD6A4 /* react-native-notifications.xcconfig */, + 9CA417C75F904BCF9CC1D2051C8884C8 /* react-native-notifications-dummy.m */, + 261BA239030D207AE2E7AA6C2E423B9B /* react-native-notifications-prefix.pch */, ); name = "Support Files"; - path = "../../../ios/Pods/Target Support Files/UMCameraInterface"; - sourceTree = ""; - }; - 31EEAEF9BB8126F345C6F0940CEBB640 /* CxxModule */ = { - isa = PBXGroup; - children = ( - B61566486D10B9EFC3DC1FD535454F71 /* DispatchMessageQueueThread.h */, - 6E1C039B9169CD68726A5B2C2A4FE067 /* RCTCxxMethod.h */, - D9279E8DCDD76912B395B18D4F8F102A /* RCTCxxMethod.mm */, - 995AC1B7D0FFC307FBDE42396BEC7495 /* RCTCxxModule.h */, - 92CD58808BEC1B77743DB330D006FE17 /* RCTCxxModule.mm */, - 4A400B04CC4314064FFD73A023EE9C4D /* RCTCxxUtils.h */, - 5A8E5DA5F58F53A59DF787F4DBDA183C /* RCTCxxUtils.mm */, - 8F4541A76FB78D77FA3A964755798242 /* RCTNativeModule.h */, - 0EA2652DADB72FFC3372DC4610D94043 /* RCTNativeModule.mm */, - ); - name = CxxModule; - path = React/CxxModule; - sourceTree = ""; - }; - 31FE5332728AA1413BC004D2B00A9A7F /* Text */ = { - isa = PBXGroup; - children = ( - 16BEFE6A5F51633D8AE6553FDE7F2B38 /* NSTextStorage+FontScaling.h */, - 53BA2EEBDACA3F00B86D18D7ED315D3E /* RCTTextShadowView.h */, - F8103D0961FA2AD9D3D3475D5F5BB421 /* RCTTextView.h */, - 795879AD145A8FC49CE63D2F23335CD9 /* RCTTextViewManager.h */, - ); - name = Text; - path = Libraries/Text/Text; - sourceTree = ""; - }; - 32741838E12ED0B06ACA1CCA9323259F /* Support Files */ = { - isa = PBXGroup; - children = ( - 7B819EFA3A99D5AFE206DDF40E01CCE0 /* FBLazyVector.xcconfig */, - ); - name = "Support Files"; - path = "../../../../ios/Pods/Target Support Files/FBLazyVector"; - sourceTree = ""; - }; - 331FB15FFDC76C6F4701C2909CFFE04D /* Pod */ = { - isa = PBXGroup; - children = ( - 2A01A31FE793FB476EBD3590E428F3CA /* React-cxxreact.podspec */, - ); - name = Pod; - sourceTree = ""; - }; - 33E16EF53E0DD3D0E1F253D4EE6F3AA6 /* Support Files */ = { - isa = PBXGroup; - children = ( - 6F8655AEBCB33048C58824700009949B /* UMFaceDetectorInterface.xcconfig */, - ); - name = "Support Files"; - path = "../../../ios/Pods/Target Support Files/UMFaceDetectorInterface"; - sourceTree = ""; - }; - 342D5BA51ADE304F60B4392CA06F18D6 /* UMModuleRegistryAdapter */ = { - isa = PBXGroup; - children = ( - 42361CCA7EE61E9ECF248240D46300FA /* UMModuleRegistryAdapter.h */, - 86CF0BC0CA68A46963CF070AD7302459 /* UMModuleRegistryAdapter.m */, - 9BF31BBF6F96CABF7114F9C5DABEBDCD /* UMModuleRegistryHolderReactModule.h */, - D6F3946CB852E1E2D18BE5EB7F732CB5 /* UMModuleRegistryHolderReactModule.m */, - 15BC50236B6BFC8A12A25EA5714EEE3C /* UMViewManagerAdapterClassesRegistry.h */, - C600E0C9557D33A1A03EDF81C56E1C6D /* UMViewManagerAdapterClassesRegistry.m */, - ); - name = UMModuleRegistryAdapter; - path = UMReactNativeAdapter/UMModuleRegistryAdapter; + path = "../../ios/Pods/Target Support Files/react-native-notifications"; sourceTree = ""; }; 352C7A61BB6029C6E16D490C4B3D02F7 /* DoubleConversion */ = { @@ -11491,36 +11375,37 @@ path = DoubleConversion; sourceTree = ""; }; - 36AD6E626C9602E439258E341D6144C9 /* Support Files */ = { + 36515B0AA7BD94031B0B30E252AD51BF /* EXLocalAuthentication */ = { isa = PBXGroup; children = ( - 27740AED39B856AD14E9D9FEF84F85D7 /* React-RCTAnimation.xcconfig */, - 09E6F1B93BCEDB39360721493C91D27F /* React-RCTAnimation-dummy.m */, - ED5B0B99E28BEFBAA178E44EB85B60FE /* React-RCTAnimation-prefix.pch */, + 07B9D1C1C458EDCC710AF4C3881744F3 /* EXLocalAuthentication.h */, + 09F2E4C3C70FFCBA21F0A8C53FBCD359 /* EXLocalAuthentication.m */, + 15F181DB266AFFBE087AB9D4C89C2DC4 /* Pod */, + 8984D4BEBFA9FCBE4772D4B040944AC3 /* Support Files */, ); - name = "Support Files"; - path = "../../../../ios/Pods/Target Support Files/React-RCTAnimation"; + name = EXLocalAuthentication; + path = "../../node_modules/expo-local-authentication/ios"; sourceTree = ""; }; - 379B196334DADD48ED925872400F4667 /* RCTVibrationHeaders */ = { + 36681ED6BCEFA3BFA82C1C31894D645C /* Pod */ = { isa = PBXGroup; children = ( - A6D61A98BE3838A974047F5F353B5506 /* RCTVibration.h */, - 3FA37BB8D5CE3A4D72821970E36DAD96 /* RCTVibrationPlugins.h */, - ); - name = RCTVibrationHeaders; - sourceTree = ""; - }; - 37AC86349167CE22DBCE3ADF2770AE4A /* Pod */ = { - isa = PBXGroup; - children = ( - 0C7E521014162B0C14C9EB7404009500 /* LICENSE */, - 596AE8F30AA47CA16D08FE5E41198F0B /* react-native-orientation-locker.podspec */, - 6DEB40674BC3CEF1213783E57BD533DA /* README.md */, + A5EBE91008B190B92A86AEA307F26608 /* React-CoreModules.podspec */, ); name = Pod; sourceTree = ""; }; + 3739FC9533CBB35F8960FB403B9D2BF5 /* Support Files */ = { + isa = PBXGroup; + children = ( + 80B02CBBA322ED01E5AD7A3B1891806C /* rn-fetch-blob.xcconfig */, + 3313BDB4C4B1E90E23206E02F7FC3565 /* rn-fetch-blob-dummy.m */, + 99997FFE3181F1CD27D47FFB40539210 /* rn-fetch-blob-prefix.pch */, + ); + name = "Support Files"; + path = "../../ios/Pods/Target Support Files/rn-fetch-blob"; + sourceTree = ""; + }; 37B11CC49A738188121844B878F751AD /* Support Files */ = { isa = PBXGroup; children = ( @@ -11531,35 +11416,18 @@ path = "../Target Support Files/FirebaseCore"; sourceTree = ""; }; - 380DBB4F886FD18306B0100941C30DC1 /* React-RCTLinking */ = { + 37E768EE9449A77B04DE0C370859FFED /* react-native-slider */ = { isa = PBXGroup; children = ( - CACF2B685B649906EB9892ADAC750941 /* RCTLinkingManager.mm */, - DBA6C305890D75EAECC073B075616CC6 /* RCTLinkingPlugins.mm */, - 6C7AB5E57803928A10DB3B26F2FD287B /* Pod */, - 5EA619D241822FE3E6925F88112922D0 /* Support Files */, + A3EDD26FB84042F2AF97833D63518172 /* RNCSlider.h */, + AA184AA44C09A55DD786659F1C305647 /* RNCSlider.m */, + 11604FDD5EC9FBC4D21992042188DD12 /* RNCSliderManager.h */, + 8B2699394777EA90163AA28934A6219D /* RNCSliderManager.m */, + 71B99AC7BA882711B631B4B1721913FA /* Pod */, + 9582D09DF69A3A1AAD79706375AA148D /* Support Files */, ); - name = "React-RCTLinking"; - path = "../../node_modules/react-native/Libraries/LinkingIOS"; - sourceTree = ""; - }; - 3820C957CF703D246758D4F95FEF8CF9 /* TextInput */ = { - isa = PBXGroup; - children = ( - 5D43CF61D8784FE6287055564C6F9EB4 /* RCTBackedTextInputDelegateAdapter.m */, - DE381473802F29281EA11A762D3463A0 /* RCTBaseTextInputShadowView.m */, - 612BBADAE25F5CC04DCF32929D459F74 /* RCTBaseTextInputView.m */, - 501799D18FF728DE0379BD277745DE90 /* RCTBaseTextInputViewManager.m */, - D40BCDA9810F056BB68B0CE6A9A38580 /* RCTInputAccessoryShadowView.m */, - 2DF42191E5D0F0270A08953BE5753EBA /* RCTInputAccessoryView.m */, - 03055D7A42E5E850114489ED90D99F78 /* RCTInputAccessoryViewContent.m */, - 77B9E249C98CA27B5638458542B2F44E /* RCTInputAccessoryViewManager.m */, - 98E83548474CF2527CD74F317FE6A0D3 /* RCTTextSelection.m */, - 5D57A9C7F2C1BF322DDC4D75B2835682 /* Multiline */, - 215579E01CA51AC2DB90459D02EF36CC /* Singleline */, - ); - name = TextInput; - path = TextInput; + name = "react-native-slider"; + path = "../../node_modules/@react-native-community/slider"; sourceTree = ""; }; 38380F63B9B4888F311398DEE99F44D8 /* Flipper-Glog */ = { @@ -11583,13 +11451,12 @@ path = "Flipper-Glog"; sourceTree = ""; }; - 38553B08D4B44A82ED7318CC5C628633 /* Support Files */ = { + 38DE75268ADBE8AB1C541C3AF5601B5A /* Pod */ = { isa = PBXGroup; children = ( - 4E535088C379402A8A0165AE84AC64BA /* UMConstantsInterface.xcconfig */, + 5C1A144D95EBD4C91D6712702A1A230C /* React-RCTVibration.podspec */, ); - name = "Support Files"; - path = "../../../ios/Pods/Target Support Files/UMConstantsInterface"; + name = Pod; sourceTree = ""; }; 392473E5D65A5DA8950060501ED4DC78 /* Support Files */ = { @@ -11772,55 +11639,53 @@ path = "Flipper-RSocket"; sourceTree = ""; }; - 39A56978D6F28AAD11DCA7EF8335D2A8 /* Support Files */ = { + 3A6EFB1B601AAF883B4B4944CD48A36C /* Pod */ = { isa = PBXGroup; children = ( - E61CF60153E47AD3BE61F120E5496976 /* React-RCTActionSheet.xcconfig */, - ); - name = "Support Files"; - path = "../../../../ios/Pods/Target Support Files/React-RCTActionSheet"; - sourceTree = ""; - }; - 3B01D6BED5725FF86EB5BCC66EE9AB1E /* Support Files */ = { - isa = PBXGroup; - children = ( - 0489DFAD8CDFB314CDC540B95FD79C84 /* react-native-notifications.xcconfig */, - 0013155BD637465406EC7C9A5EBFD577 /* react-native-notifications-dummy.m */, - 489B2BE56ECB5369B8A21803E6CBA421 /* react-native-notifications-prefix.pch */, - ); - name = "Support Files"; - path = "../../ios/Pods/Target Support Files/react-native-notifications"; - sourceTree = ""; - }; - 3C5E6BAEAC84F75A9778746E8E78E13A /* fabric */ = { - isa = PBXGroup; - children = ( - 83B8ECDC47881A70923CD35CA2E2DCA0 /* crashlytics */, - ); - name = fabric; - path = RNFirebase/fabric; - sourceTree = ""; - }; - 3CAC4DC5BC7BCB3C6B5719BD364C1F06 /* Pod */ = { - isa = PBXGroup; - children = ( - 4F5764F79EDB89B2E56B1DC234C9CDBD /* LICENCE */, - BFF73D90E1EB134A59A319885D6799A2 /* react-native-cameraroll.podspec */, - D2153814AB3E52F623233D1B9A1C5DF7 /* README.md */, + 1BA8516AF19B9C00C4B38AA2037B3C35 /* UMSensorsInterface.podspec */, ); name = Pod; sourceTree = ""; }; - 3CF1DE621832047911CB90DA773D9C30 /* RNUserDefaults */ = { + 3A872639F851E347AF5AF15043462581 /* crashlytics */ = { isa = PBXGroup; children = ( - 741C3A3B5625053E83FF3307CC09A3DC /* RNUserDefaults.h */, - 28E7299B4D7DC027AEA6FF8027B16E29 /* RNUserDefaults.m */, - 6B003C27A1CC5E397BF46797E17455DB /* Pod */, - 3DE1BC7FFF42B100200871F070C8A9A1 /* Support Files */, + 82EB565C0F82A998B5CEA6A1F08709AE /* RNFirebaseCrashlytics.h */, + 5C9A32219598A95DA7FD3946860DAC48 /* RNFirebaseCrashlytics.m */, ); - name = RNUserDefaults; - path = "../../node_modules/rn-user-defaults"; + name = crashlytics; + path = crashlytics; + sourceTree = ""; + }; + 3BBA9F1E0500F90C69F39D2E2D8E142C /* Resources */ = { + isa = PBXGroup; + children = ( + BA4FF9508396DC37615DCC245E93ACA5 /* AntDesign.ttf */, + E9DE038E00670E6D5E01D814B6CF2D3C /* Entypo.ttf */, + 90D983B6CFBACEC8FA0142C592FAE845 /* EvilIcons.ttf */, + DE4B478BAF024CD13B198C5492FF8780 /* Feather.ttf */, + F502C88FF7864718ACCAC37339D2AD72 /* FontAwesome.ttf */, + AE4BEF08A5CF7CE51D657240D7A67911 /* FontAwesome5_Brands.ttf */, + A011D2D495A1516FA55E1E919A592DEB /* FontAwesome5_Regular.ttf */, + 16AB3CD3F70D507EA705BBD047DC1CD7 /* FontAwesome5_Solid.ttf */, + E2F639178DE4C4A627B62C3D173413B8 /* Fontisto.ttf */, + 12E9A93D13DA9FBBB4E97F2E712C7DBF /* Foundation.ttf */, + BFF3FA1D08A33FAF76007643DA01218F /* Ionicons.ttf */, + 05FCC769D72BD7FD4A361B16CE5B87D3 /* MaterialCommunityIcons.ttf */, + DA454E70C14FA7D40170EDD0F56B6C6F /* MaterialIcons.ttf */, + 1231FB4D14B77E0E66B8591FC93D3067 /* Octicons.ttf */, + F568AC3A51A66F4363C1CB1896C4646D /* SimpleLineIcons.ttf */, + C066451C629CEEF452CDFC6A8CCA77BF /* Zocial.ttf */, + ); + name = Resources; + sourceTree = ""; + }; + 3CE9C64CA191894447313EF155F7BCE7 /* Pod */ = { + isa = PBXGroup; + children = ( + 63C0A91F2F4B8DE1D11850DA84A079BA /* UMFileSystemInterface.podspec */, + ); + name = Pod; sourceTree = ""; }; 3D16D20D4E8D5D4564004B5DF7D5CE87 /* FBCxxFollyDynamicConvert */ = { @@ -11832,82 +11697,50 @@ name = FBCxxFollyDynamicConvert; sourceTree = ""; }; - 3DD32296F6DE280701C4477F3F72126C /* Support Files */ = { + 3D2EDD2ECFBC4F73DFFDDCFA65C529EE /* Support Files */ = { isa = PBXGroup; children = ( - F04329074D27EAB622ADF38E5694313D /* EXHaptics.xcconfig */, - 9B210DEA7F13EE96BA6DA8B363A2EFD3 /* EXHaptics-dummy.m */, - BF1A51A3817F94FE9F6D656316439DF9 /* EXHaptics-prefix.pch */, + 9A96D7FADB2B3BF64F2F9061C01B14AA /* React-RCTSettings.xcconfig */, + 2B4FE23C1B1B0B1C72E5E9684CCFBD4A /* React-RCTSettings-dummy.m */, + 6AA0B32AF7EF63D5FD6713F2E9B21273 /* React-RCTSettings-prefix.pch */, ); name = "Support Files"; - path = "../../../ios/Pods/Target Support Files/EXHaptics"; + path = "../../../../ios/Pods/Target Support Files/React-RCTSettings"; sourceTree = ""; }; - 3DE1BC7FFF42B100200871F070C8A9A1 /* Support Files */ = { + 3D503F79BF8CA993C3FB2D772EB2D77A /* React-CoreModules */ = { isa = PBXGroup; children = ( - D0AB169A9A57CF2E1200E72299D75C26 /* RNUserDefaults.xcconfig */, - D25D1E1BBC70B6001EA6BA3DC4F722CA /* RNUserDefaults-dummy.m */, - 21DF973E0B0381E6F81ACD448A537C4E /* RNUserDefaults-prefix.pch */, + 60F5052B2993115C13F986CABC31AED6 /* CoreModulesPlugins.mm */, + 13A121E1C5CEF11DC3036020F0D9B306 /* RCTAccessibilityManager.mm */, + A18DB1F88984A19F7F2006007082F67F /* RCTActionSheetManager.mm */, + FCE9A9C4C8B59B9F1DCD731805B34181 /* RCTAlertManager.mm */, + D32A6891FB41D3CC2908430B13AB1EFE /* RCTAppearance.mm */, + 38894E3C88DE686E681C02F992C59685 /* RCTAppState.mm */, + 11D2E193F815FCC16109E3E518583288 /* RCTAsyncLocalStorage.mm */, + C3B7ED5A7F18975F0BDD30F4FDEE4BF5 /* RCTClipboard.mm */, + 9F0713994162CEDC5CE861D95FB38CAA /* RCTDeviceInfo.mm */, + B262DBFF8BC858AE4A4CF5FA9D59BC16 /* RCTDevMenu.mm */, + 304742E7A35470A67B5DC35A03BAD9E6 /* RCTDevSettings.mm */, + DDAC57966DBA29BE27501D75073BEAAC /* RCTExceptionsManager.mm */, + CD727DB3448D14B384860C6235420DD0 /* RCTFPSGraph.m */, + 70D8905F06D265CF84C6E91D7418C2E6 /* RCTI18nManager.mm */, + 0A68C5D28DBCE392CF63F916CC3F7262 /* RCTKeyboardObserver.mm */, + DE8728CD22EF370A33592E0D7F24649A /* RCTLogBox.mm */, + 825FA67B5A05BA2C03A27AB6B3F518B0 /* RCTPerfMonitor.mm */, + 880F16204E26838532A9E66CE3F45CF9 /* RCTPlatform.mm */, + 8A96509ECA1FBAF6C8E58DEDF54D065C /* RCTRedBox.mm */, + 011B2F1FDDCC3FFFCB54972D1C18B1EB /* RCTSourceCode.mm */, + 2FE202FE8BDE8756A41A567D0E8DF692 /* RCTStatusBarManager.mm */, + 333276E0DEE349E58047CEB243CBDAD6 /* RCTTiming.mm */, + C60788B4BE7B0625FB777C36587DA53D /* RCTTVNavigationEventEmitter.mm */, + 12D38373AB43F2527570A9F95C0148FE /* RCTWebSocketExecutor.mm */, + 9C32EED59E3EB4F48C75CF7A271FB89F /* RCTWebSocketModule.mm */, + 36681ED6BCEFA3BFA82C1C31894D645C /* Pod */, + CCB0A0598CF7F4DDAB8652BDA68BB49D /* Support Files */, ); - name = "Support Files"; - path = "../../ios/Pods/Target Support Files/RNUserDefaults"; - sourceTree = ""; - }; - 3E59569D16CD6F05673EB5DE2284EAF9 /* RNCAsyncStorage */ = { - isa = PBXGroup; - children = ( - 8F20EA7B3F5905572DE6CF16610A8A2C /* RNCAsyncStorage.h */, - 99B30853C542D2115F98448315C2D52D /* RNCAsyncStorage.m */, - BE2A853BA7F9A576904BEA2F920D162A /* RNCAsyncStorageDelegate.h */, - DD933C3C950F07C5529BEABC3E8C5FFF /* Pod */, - 8D31F7E502F792082BBBF53BD639EAD5 /* Support Files */, - ); - name = RNCAsyncStorage; - path = "../../node_modules/@react-native-community/async-storage"; - sourceTree = ""; - }; - 3EA78CDA244356545F1446DC8913E26D /* Filters */ = { - isa = PBXGroup; - children = ( - CA16BF55FDA9DBC46F00C4AF3230C6D5 /* BSG_KSCrashReportFilter.h */, - 938A92659A2B571EE3FA5B905DDD2A1B /* BSG_KSCrashReportFilterCompletion.h */, - ); - name = Filters; - path = Filters; - sourceTree = ""; - }; - 3EC524AB128B75456FB45376D6957A29 /* React-RCTSettings */ = { - isa = PBXGroup; - children = ( - A26A7EF563377345BE162F627EAD070F /* RCTSettingsManager.mm */, - A277DF5B66397F66164BD142D7155F5E /* RCTSettingsPlugins.mm */, - F5517A089DAB12A29DF2BAF32329221A /* Pod */, - 0C52D7E905C9C54B83D4559802B3C107 /* Support Files */, - ); - name = "React-RCTSettings"; - path = "../../node_modules/react-native/Libraries/Settings"; - sourceTree = ""; - }; - 3EDC428094876DEF1D9458F57F523962 /* Support Files */ = { - isa = PBXGroup; - children = ( - 8F7080514B2DC132D8D9E4F8F6B307F3 /* RNScreens.xcconfig */, - C4F76CE918BDF24D3B02B9768F7BCB3B /* RNScreens-dummy.m */, - 8CF69344B3E34A32C259EDE32B6D68C1 /* RNScreens-prefix.pch */, - ); - name = "Support Files"; - path = "../../ios/Pods/Target Support Files/RNScreens"; - sourceTree = ""; - }; - 3F43C9D190A43BB2B9AF16C6D00A899B /* Pod */ = { - isa = PBXGroup; - children = ( - 443ED58974BE5CC32B09E74F5A784381 /* LICENSE */, - BE0C45CE0B456AF7B20E80160D87113A /* README.md */, - 70E0E86D8435F505B9026D6968E02EC0 /* RNGestureHandler.podspec */, - ); - name = Pod; + name = "React-CoreModules"; + path = "../../node_modules/react-native/React/CoreModules"; sourceTree = ""; }; 402211E3E291023565E9F0F090AFCBE2 /* Flipper-DoubleConversion */ = { @@ -11937,15 +11770,43 @@ path = "Flipper-DoubleConversion"; sourceTree = ""; }; - 412A3306FA919717E628FCD2816593DB /* Support Files */ = { + 40370E026614345A7C067DA6F6FF113A /* Pod */ = { isa = PBXGroup; children = ( - 45739967460E2D1904354C494EDEEB86 /* EXVideoThumbnails.xcconfig */, - 0633D4BC2B6C74F5592307ACB6CA753E /* EXVideoThumbnails-dummy.m */, - 6D1B8F9D5C016E7F3E093EC478D6067B /* EXVideoThumbnails-prefix.pch */, + 52BC3E6A0626DB35820D0A9BC703FB17 /* EXConstants.podspec */, + ); + name = Pod; + sourceTree = ""; + }; + 40F4A2E13BFDA0ECE6C33D43F8DA7AC5 /* ios */ = { + isa = PBXGroup; + children = ( + C28FBB7A0C7B4C9057C33CE3168BE672 /* RCTTurboModule.h */, + F94B0D2B3AB5111162D15B4C67DA5D69 /* RCTTurboModule.mm */, + 413B555D063451CA6495EEDD7CC94227 /* RCTTurboModuleManager.h */, + 383EBEDADAB457D2F1D95B9A9C96B417 /* RCTTurboModuleManager.mm */, + ); + name = ios; + path = ios; + sourceTree = ""; + }; + 4108CB4ED2856ADD86460507D08898CD /* Support Files */ = { + isa = PBXGroup; + children = ( + FB7E71716798790222C019BF31D097D7 /* React-cxxreact.xcconfig */, + 1A2E3BFE91AA2D838D063275BE067CC8 /* React-cxxreact-dummy.m */, + 8DE3F28BA9404B8836D1BF044E45C9C0 /* React-cxxreact-prefix.pch */, ); name = "Support Files"; - path = "../../../ios/Pods/Target Support Files/EXVideoThumbnails"; + path = "../../../../ios/Pods/Target Support Files/React-cxxreact"; + sourceTree = ""; + }; + 411CE792795FFF072B8FAE1724115CF7 /* Pod */ = { + isa = PBXGroup; + children = ( + FCC02691A09920C2F75CF333B48B1A1E /* EXAppleAuthentication.podspec */, + ); + name = Pod; sourceTree = ""; }; 41C5A03E78256F1F08282B5C2AA2FF41 /* Frameworks */ = { @@ -11957,15 +11818,6 @@ name = Frameworks; sourceTree = ""; }; - 41CE3199D539E6A65D353C0231418F1C /* Reporting */ = { - isa = PBXGroup; - children = ( - 3EA78CDA244356545F1446DC8913E26D /* Filters */, - ); - name = Reporting; - path = Reporting; - sourceTree = ""; - }; 424FC6815FF3644493EEBD58BEBC0532 /* mux */ = { isa = PBXGroup; children = ( @@ -11980,41 +11832,6 @@ name = mux; sourceTree = ""; }; - 42D849C4DB1F4E7A81DD314A5E8124DF /* Support Files */ = { - isa = PBXGroup; - children = ( - 0B64EEB3F7933A5B2098647909E0ED92 /* UMCore.xcconfig */, - 87F5B9141D7DADA8D05A9CFFBDE907C6 /* UMCore-dummy.m */, - FE46EB0DFA751BDEFDEC9AAB2626A64D /* UMCore-prefix.pch */, - ); - name = "Support Files"; - path = "../../../../ios/Pods/Target Support Files/UMCore"; - sourceTree = ""; - }; - 430868DBC24D3C3594A17F82C637639F /* RCTTextHeaders */ = { - isa = PBXGroup; - children = ( - 24289386D837C7C24973A780A5CFC145 /* RCTConvert+Text.h */, - 396BCC1103806DB62E13A01085BFDB9A /* RCTTextAttributes.h */, - 4AA5953CEC6B4F9133E614A9B1EDAF92 /* RCTTextTransform.h */, - FA020F1D7148238F70324A38FC757611 /* BaseText */, - 585D34274855BF0119B6A9E500D7F05E /* RawText */, - 31FE5332728AA1413BC004D2B00A9A7F /* Text */, - 0195942E39A8F0E0C975DC2EF4643C08 /* TextInput */, - 69C54614F75748C758C57626C4F9199B /* VirtualText */, - ); - name = RCTTextHeaders; - sourceTree = ""; - }; - 4333278F1391611065DA33934F7200AE /* DevSupport */ = { - isa = PBXGroup; - children = ( - C447DE37E8999BE13AC6EE5FA7663FAB /* DevSupport */, - F5E16C2C6E06593544B52720DB25D207 /* Inspector */, - ); - name = DevSupport; - sourceTree = ""; - }; 433C73FED5D05883FF3D921E1099BB8F /* demux */ = { isa = PBXGroup; children = ( @@ -12025,46 +11842,46 @@ name = demux; sourceTree = ""; }; - 4532E1AC9DA617EBCF83479C74103116 /* Pod */ = { + 44A0655D23855A039B5D0EBD883594EC /* SDWebImage */ = { isa = PBXGroup; children = ( - 215B5C61A1572BEF192E6E40890740CB /* UMFaceDetectorInterface.podspec */, + FA6E7B3005EBC76D0B37EB87FABD5048 /* Core */, + FC3EB8118FEFFF62E7D885015F484D44 /* Support Files */, ); - name = Pod; + name = SDWebImage; + path = SDWebImage; sourceTree = ""; }; - 45EB4CB9D90AACEC24EB02C2E4ABB0AE /* Support Files */ = { + 44D6F295C292060A6C7D394872F76745 /* Support Files */ = { isa = PBXGroup; children = ( - 39F4D653B834C5AD699B8608F1CDACEF /* ResourceBundle-QBImagePicker-RNImageCropPicker-Info.plist */, - 36DD59698462AF3BB58AFA0B87ACAA45 /* RNImageCropPicker.xcconfig */, - 4A5089756CA01445DAA8F58801683705 /* RNImageCropPicker-dummy.m */, - CA714758B676185C739362094E502FA4 /* RNImageCropPicker-prefix.pch */, + DF78CEA0E43CCA1C6E5B7A1CEA5DB4B6 /* UMAppLoader.xcconfig */, + 72AC0F494D210A5373A91E4FA76E45C3 /* UMAppLoader-dummy.m */, + 045CE851EBDF3C903F0B03627EC25C0C /* UMAppLoader-prefix.pch */, ); name = "Support Files"; - path = "../../ios/Pods/Target Support Files/RNImageCropPicker"; + path = "../../../ios/Pods/Target Support Files/UMAppLoader"; sourceTree = ""; }; - 461D1E9F71F246EA74A92D336F337133 /* React-jsi */ = { + 450D31DFC62AE45CB659920BD8999907 /* Multiline */ = { isa = PBXGroup; children = ( - 78545C54F7F735A7E71AC86B01AB3CD3 /* JSCRuntime.cpp */, - 1578EE1C0EA94CFE091DEC4F00AE2E2C /* JSCRuntime.h */, - FE0CEFE039C99D812D1C87353FD3ACB8 /* jsi */, - 088989501B4A141B664624095782831E /* Pod */, - DF2A823F424957A7FF17D40A88D63422 /* Support Files */, + A6C8222EFA36663530D99FE0CE80ECF8 /* RCTMultilineTextInputView.m */, + 27C5B870EA804AE0BB08FE09575867E5 /* RCTMultilineTextInputViewManager.m */, + 3481CF02F874B055313278FAF6552F55 /* RCTUITextView.m */, ); - name = "React-jsi"; - path = "../../node_modules/react-native/ReactCommon/jsi"; + name = Multiline; + path = Multiline; sourceTree = ""; }; - 46E5AD6F69D9519C386602DF76606A6A /* RCTSettingsHeaders */ = { + 464009DFA633FFFBB8E2E76383F533B9 /* config */ = { isa = PBXGroup; children = ( - 33D551B60F8530F4356EB55964B4FA03 /* RCTSettingsManager.h */, - 78912319CEF3413E7D31B12DDCF6E9D0 /* RCTSettingsPlugins.h */, + 15948571050FD31827612100B8318596 /* RNFirebaseRemoteConfig.h */, + 52EDE0561C5B212AAB971CD89D231544 /* RNFirebaseRemoteConfig.m */, ); - name = RCTSettingsHeaders; + name = config; + path = RNFirebase/config; sourceTree = ""; }; 46E7C624D3C29B3AB6BDE86C7B98348E /* Support Files */ = { @@ -12076,34 +11893,6 @@ path = "../Target Support Files/Fabric"; sourceTree = ""; }; - 47C249B9C18E719786A318853DFD9D04 /* RCTBlobHeaders */ = { - isa = PBXGroup; - children = ( - 1D4D41211C446BE6090144A856378B10 /* RCTBlobManager.h */, - 41E9388F4F2F474F51343984C953523A /* RCTFileReaderModule.h */, - ); - name = RCTBlobHeaders; - sourceTree = ""; - }; - 47C42C77AE6EA8C457516FAE62B37AE9 /* Support Files */ = { - isa = PBXGroup; - children = ( - 5401F36DD46724F06EC804A065EE1E28 /* React-CoreModules.xcconfig */, - DE1A9DCFA71D2A144B640AFE2807BA7F /* React-CoreModules-dummy.m */, - 1D33A07A03A476E1AFF9662BAA20BB2B /* React-CoreModules-prefix.pch */, - ); - name = "Support Files"; - path = "../../../../ios/Pods/Target Support Files/React-CoreModules"; - sourceTree = ""; - }; - 47E7742150B55ECE42CAB139243FEBD4 /* Pod */ = { - isa = PBXGroup; - children = ( - DB086192F7C5B024A9119AECE8ADE1D7 /* EXWebBrowser.podspec */, - ); - name = Pod; - sourceTree = ""; - }; 47F76561CAB618F276F1C9A6E91F49F4 /* boost-for-react-native */ = { isa = PBXGroup; children = ( @@ -12113,29 +11902,13 @@ path = "boost-for-react-native"; sourceTree = ""; }; - 480ECE216EBC9B3B769B95077F785439 /* Pod */ = { + 47FF1439FC576199A237C98A169F79AF /* vendor */ = { isa = PBXGroup; children = ( - C38F2DF546EC0B7401DD3FD817DF5A7A /* EXImageLoader.podspec */, + 083CF2A47C766D4C4BF953EB81ECEB60 /* bugsnag-cocoa */, ); - name = Pod; - sourceTree = ""; - }; - 4918C3ED866941C93DA3FAEC45EAB269 /* RNReanimated */ = { - isa = PBXGroup; - children = ( - 571BAD26D9BC6F164E5EB00F633B8668 /* REAModule.h */, - FE7137F593DB4D74102C04004E6ECE76 /* REAModule.m */, - 721AB46BD809C2987EF958E95073BFF2 /* REANodesManager.h */, - A0A5BC613C561149D537888AC2E00F65 /* REANodesManager.m */, - 854D1744DD389D5D8C1ACE4FA1387DE9 /* REAUtils.h */, - 9B39715FD3535FE90C4437C61C5DBE58 /* Nodes */, - 303DC452A2F618FF0F8D530EB8ECC9C2 /* Pod */, - FDF367A413F3FF61D6DA07F3B6BFB869 /* Support Files */, - E0B0F2B680537CFA8404EBD652D2C36A /* Transitioning */, - ); - name = RNReanimated; - path = "../../node_modules/react-native-reanimated"; + name = vendor; + path = cocoa/vendor; sourceTree = ""; }; 496A55A037DB7441D97AC80C9BBA8C16 /* Support Files */ = { @@ -12154,56 +11927,93 @@ name = decode; sourceTree = ""; }; - 4A06001556AA7308EA70997ECE34506A /* UMAppLoader */ = { + 4A183FEDB3E7507DF1E87B151E3A9215 /* UMConstantsInterface */ = { isa = PBXGroup; children = ( - 2E04D3A647F36E8B028E2D8851475024 /* UMAppLoaderProvider.h */, - 107E6EA09D55A51A08CC1346FF70D5AC /* UMAppLoaderProvider.m */, - FC58C2812ADC3931119894A3085D7C9B /* Interfaces */, - 1DD0B2EAFF2752623CB47676CBA5E973 /* Pod */, - 2E85BCF9B180B4C7DE7F28C05D0685C1 /* Support Files */, + A1638D33FB9FD9E9142E2A6AB27D6690 /* UMConstantsInterface.h */, + 0AE9D1BA77D89AF8EAFD379ADC5C7424 /* Pod */, + 1C601049393116E711AFD0A481FDD4CB /* Support Files */, ); - name = UMAppLoader; - path = "../../node_modules/unimodules-app-loader/ios"; + name = UMConstantsInterface; + path = "../../node_modules/unimodules-constants-interface/ios"; sourceTree = ""; }; - 4A3EF155D81E1A88F1BB2F484ECAD67B /* core */ = { + 4A81CA6A6035D65A9944C3C7A5A163F8 /* EXKeepAwake */ = { isa = PBXGroup; children = ( - 9BB449E0F6493A29C62B20ED4EB2BF00 /* LongLivedObject.cpp */, - 83A50FFDF1FBD07F4FD73E119C3704D2 /* LongLivedObject.h */, - 1D14771DAF845523B655DB9144C5891D /* TurboCxxModule.cpp */, - 2306FB1ABBEFA9CE789F81A2FAC42EE6 /* TurboCxxModule.h */, - 0EF2C04C9FBCE8D759B215220D6D7AE3 /* TurboModule.cpp */, - EAC5057FC760FBFD55BC580C40F920CE /* TurboModule.h */, - 3B468DA312920E115DBC601B9DD70210 /* TurboModuleBinding.cpp */, - 4FA133FF443545FD679E492E568820B6 /* TurboModuleBinding.h */, - 0A3317667F31F7168FA5A80542BA6B0B /* TurboModuleUtils.cpp */, - 40CC5CEBEF1FD6B260ECFB4E7B4A77EC /* TurboModuleUtils.h */, - DCE7C0512B08275E79393733DD6559DD /* platform */, + 1279C4ABA374EFA8A9057FF167E8435B /* EXKeepAwake.h */, + 01CAEC0CCF45F48DFFB7270BDEEE1EB7 /* EXKeepAwake.m */, + C9257BDF5B9392B420B242539CC5E31D /* Pod */, + 897BC75FEB4616073285EBC56E25F29C /* Support Files */, ); - name = core; + name = EXKeepAwake; + path = "../../node_modules/expo-keep-awake/ios"; sourceTree = ""; }; - 4ACB44402D6A5B0462D05663FFC2BAAF /* Support Files */ = { + 4AA977867DE063DF54290BDC02D92549 /* Pod */ = { isa = PBXGroup; children = ( - BD696F1412B23F77ADFF152EF3F0A69D /* react-native-slider.xcconfig */, - B2AAE58A26E1DF2320BB3B2AD7277A1E /* react-native-slider-dummy.m */, - B5156710EF4D21CBABD4FB4802D33794 /* react-native-slider-prefix.pch */, - ); - name = "Support Files"; - path = "../../../ios/Pods/Target Support Files/react-native-slider"; - sourceTree = ""; - }; - 4B0E585FE0E1E6F4CE16345AA3F74056 /* Pod */ = { - isa = PBXGroup; - children = ( - 5954A915F296FDBAE51B798050C998FB /* UMBarCodeScannerInterface.podspec */, + C245363D5D5A721EA86FF342C69BDCAC /* LICENSE */, + 212402EFA8EC8E5B84B51D8B6A8BFF3B /* README.md */, + FDA6A3D8F18E9D02D90C74DF636D1B74 /* RNDeviceInfo.podspec */, ); name = Pod; sourceTree = ""; }; + 4AF5C226D1880948898396C806B74E38 /* Pod */ = { + isa = PBXGroup; + children = ( + 7CDC9A92A23150D79B1472FB2AA64D36 /* React-jsi.podspec */, + ); + name = Pod; + sourceTree = ""; + }; + 4AF8AB35B6F103D68BF3499542D0B2E9 /* DevSupport */ = { + isa = PBXGroup; + children = ( + 82AE80253AFBC545D11E8DAD3CD5DCC8 /* RCTDevLoadingView.h */, + 3361B4E72C8FCEB3AD3A3065E0CD2F39 /* RCTDevLoadingView.m */, + 191FF3A1FAFCAFC9296631904C6E3D49 /* RCTInspectorDevServerHelper.h */, + 3977B723678582324CAE299A9A867B7E /* RCTInspectorDevServerHelper.mm */, + 354E0CF6123FD7C6CB2290A9B3B94905 /* RCTPackagerClient.h */, + 31E9DD0C540F21C1682C294155AE278C /* RCTPackagerClient.m */, + 55AED8C8BD4D71E6494BD85030045A2B /* RCTPackagerConnection.h */, + C7801D1469FE2CF9E5087267BBB71BBF /* RCTPackagerConnection.mm */, + ); + name = DevSupport; + path = React/DevSupport; + sourceTree = ""; + }; + 4B53022243721C7173309FB6C4139E54 /* Pod */ = { + isa = PBXGroup; + children = ( + FF970CB46DC1A064CDF0ED99E28CBE3A /* React-RCTSettings.podspec */, + ); + name = Pod; + sourceTree = ""; + }; + 4BFB955771410A2C3C1AC0B4CA96BCD1 /* Support Files */ = { + isa = PBXGroup; + children = ( + 9F91B51CEBD5ACA9F2D77ADEF63B81F1 /* React-RCTNetwork.xcconfig */, + BA4668EB557AA660903EA29C83EBF83A /* React-RCTNetwork-dummy.m */, + FC6C7C1163FF79760B0D649CB5C81C66 /* React-RCTNetwork-prefix.pch */, + ); + name = "Support Files"; + path = "../../../../ios/Pods/Target Support Files/React-RCTNetwork"; + sourceTree = ""; + }; + 4C3F286BE90A23F677223818FB7867C7 /* Support Files */ = { + isa = PBXGroup; + children = ( + FE09B14E292E628590EBAA410326B953 /* EXImageLoader.xcconfig */, + 8DA8A1E1E53484F0F3E701C78D6DCA8F /* EXImageLoader-dummy.m */, + AF0DDA38ADFDEA96EB7483B59F23E246 /* EXImageLoader-prefix.pch */, + ); + name = "Support Files"; + path = "../../../ios/Pods/Target Support Files/EXImageLoader"; + sourceTree = ""; + }; 4C9C00A9A947C8D0144651514259CB34 /* Flipper-Folly */ = { isa = PBXGroup; children = ( @@ -12836,56 +12646,6 @@ path = "Flipper-Folly"; sourceTree = ""; }; - 4DEDC9B6BA0086EA042F5365E4392AB3 /* UMCore */ = { - isa = PBXGroup; - children = ( - 49C3C2D766AD5EBFBF77708CF363A786 /* UMAppDelegateWrapper.h */, - 55E8A6E0210B59074AACE28BDB6B9E52 /* UMAppDelegateWrapper.m */, - EC4A6E943C7DAEEA950D96EE96271C15 /* UMDefines.h */, - 512B8149A1DDC202F6AE37A0577E9EB2 /* UMErrorCodes.h */, - 49F37D41ACDCF417C3F20711F4D42ECC /* UMErrorCodes.m */, - 82FFF75FB306AB23B867834650F67403 /* UMExportedModule.h */, - 6D24767B02EB893827AF0338BBB8ABFA /* UMExportedModule.m */, - 3849EEFE0D7DD1DDED58F4F9AF3B84B4 /* UMSingletonModule.h */, - E970F038C92A074F5CDFDFED75311D5C /* UMSingletonModule.m */, - 44A77B66CB563D3BB5FF97B8CBFEC42F /* UMUtilities.h */, - 003EAF4329308F1EC6185DA44A1D66DC /* UMUtilities.m */, - 83FBC58A4E8CE4DD3045967787AC7A8A /* UMViewManager.h */, - 12FC96FD85B0EE6C53FFF770B8B474F5 /* UMViewManager.m */, - DC4E9203EEAAF5AB4FEA8687B1A872E4 /* Pod */, - 61762E0F01CF291269A0204FA0E84808 /* Protocols */, - 265D0857017BE95DEAD1E52EAF9FBA28 /* Services */, - 42D849C4DB1F4E7A81DD314A5E8124DF /* Support Files */, - F4F451FE4EC5499630858AEFD9F886B9 /* UMModuleRegistry */, - CE334D4FE774D312554D8BD58CB7C00A /* UMModuleRegistryProvider */, - ); - name = UMCore; - path = "../../node_modules/@unimodules/core/ios"; - sourceTree = ""; - }; - 4E3FDB910F80273D04FC0A3423061974 /* Support Files */ = { - isa = PBXGroup; - children = ( - 6F0EF6046A20A68989C5B5B8DD839E33 /* UMReactNativeAdapter.xcconfig */, - 071EAC1216B90DC198CDBCF0BD16D771 /* UMReactNativeAdapter-dummy.m */, - D82087B9CDF9C978097ED1884BCFEBF5 /* UMReactNativeAdapter-prefix.pch */, - ); - name = "Support Files"; - path = "../../../../ios/Pods/Target Support Files/UMReactNativeAdapter"; - sourceTree = ""; - }; - 4EEC1118E267BAB027555E67DC4C2B44 /* RNLocalize */ = { - isa = PBXGroup; - children = ( - D94271F55B4B4578FBF5D306CDE13760 /* RNLocalize.h */, - 7849699F5D9238F474EA192DBE3B1BD3 /* RNLocalize.m */, - 5DD34C1192395A01CAC59A1F1C53FFF3 /* Pod */, - 0B0C18D8AD22C1FD5A52EDD9E3FD2025 /* Support Files */, - ); - name = RNLocalize; - path = "../../node_modules/react-native-localize"; - sourceTree = ""; - }; 4F3253A1691213F124EF835815078D87 /* Support Files */ = { isa = PBXGroup; children = ( @@ -12895,36 +12655,47 @@ path = "../Target Support Files/boost-for-react-native"; sourceTree = ""; }; - 4F576D1987C11155DAA506741CBC77DB /* Support Files */ = { + 4FAE82C85F04C1E0067AE63D1E9C6790 /* UMImageLoaderInterface */ = { isa = PBXGroup; children = ( - B4DB9002992F6C1F1B0D7325578F65D8 /* React-jsiexecutor.xcconfig */, - BFDC408389CB2C71CCB52D6A88B529F1 /* React-jsiexecutor-dummy.m */, - 26E6F381E54D63B3B6494AEBD4A5B28E /* React-jsiexecutor-prefix.pch */, + A985A8068DBA8FB709317DA511B658A2 /* UMImageLoaderInterface.h */, + 4FD1587D37A7CA9438FEB6E4CE0DF1B3 /* Pod */, + CBE25BA6000081FD935287946A505D27 /* Support Files */, ); - name = "Support Files"; - path = "../../../../ios/Pods/Target Support Files/React-jsiexecutor"; + name = UMImageLoaderInterface; + path = "../../node_modules/unimodules-image-loader-interface/ios"; sourceTree = ""; }; - 5057049FEC168F7A6584384331BAB91E /* Support Files */ = { + 4FD1587D37A7CA9438FEB6E4CE0DF1B3 /* Pod */ = { isa = PBXGroup; children = ( - 756DB69AC60ABE66C85FA7A50F750FED /* react-native-orientation-locker.xcconfig */, - 60BC1B16DBA95BF0B4A0A58D8D19924C /* react-native-orientation-locker-dummy.m */, - 8349C1ED2875E354054E1A1C6D0DCAB1 /* react-native-orientation-locker-prefix.pch */, + 61B63056811F93094D9AFA2233F13D5D /* UMImageLoaderInterface.podspec */, ); - name = "Support Files"; - path = "../../ios/Pods/Target Support Files/react-native-orientation-locker"; + name = Pod; sourceTree = ""; }; - 50C581FD4D8D9DCF06347AE8C8F2ECE8 /* auth */ = { + 50620F6D22ACF23DC90427435DAEC039 /* Handlers */ = { isa = PBXGroup; children = ( - EC9D4A28059892E242284CB4F0ABA042 /* RNFirebaseAuth.h */, - C51E3248075DA87730F8569F1ABA1D10 /* RNFirebaseAuth.m */, + 9C5BC0B9B1C8D8959DBC75666862E4B7 /* RNFlingHandler.h */, + E3B0CBE9F74F2050E6523049D4DA30BF /* RNFlingHandler.m */, + 2BAB484E574AD0E1F43ED70EDCB51B4D /* RNForceTouchHandler.h */, + 5A8666C51AA970E98956600ECED8846D /* RNForceTouchHandler.m */, + 3DF56B9AFF929D69C47E7F571A6525C8 /* RNLongPressHandler.h */, + EADE9F3CC8C4D432074313BD08A7C56D /* RNLongPressHandler.m */, + ABA5AE74FC77D8005BB3AB05665EC8D9 /* RNNativeViewHandler.h */, + 20C41C56D086BEEA0D2C3001A5805B71 /* RNNativeViewHandler.m */, + BEDE4FBD021F20A454182E3ECE0E08DD /* RNPanHandler.h */, + 47BED96EE84514335B2988730E69EE32 /* RNPanHandler.m */, + 585ED006419E0DFF75DA1CD7A2E2276A /* RNPinchHandler.h */, + 57E822B1A9FA7DC3935F090255E3FE1C /* RNPinchHandler.m */, + 24CBB92E375EA7A225F7FEDCDD7936A5 /* RNRotationHandler.h */, + 69624FADA2965423910E0A13E16D897F /* RNRotationHandler.m */, + E1C86DCAEA35DB7EF574F26C31F9F1ED /* RNTapHandler.h */, + 802DED528A3120C56B740F3E6778385B /* RNTapHandler.m */, ); - name = auth; - path = RNFirebase/auth; + name = Handlers; + path = ios/Handlers; sourceTree = ""; }; 50CE2A98724B88B6511B9FC9A63BD750 /* libwebp */ = { @@ -12939,6 +12710,28 @@ path = libwebp; sourceTree = ""; }; + 50DE5BAF2C922F57B4FE1374386AC703 /* Support Files */ = { + isa = PBXGroup; + children = ( + 2364233793BEFB6E9F7C4FD57080BCBB /* react-native-cameraroll.xcconfig */, + A036BF858B9C45767DF6C1955C9BE6A2 /* react-native-cameraroll-dummy.m */, + C978322306749FDF168D90C7DF3CACB1 /* react-native-cameraroll-prefix.pch */, + ); + name = "Support Files"; + path = "../../../ios/Pods/Target Support Files/react-native-cameraroll"; + sourceTree = ""; + }; + 518B8BCA252C955929916D392561A068 /* Support Files */ = { + isa = PBXGroup; + children = ( + 718C6051015263C943C1B19DB3B75F4B /* EXHaptics.xcconfig */, + 50703713C580250670B68B264D2FF5D9 /* EXHaptics-dummy.m */, + A6F7B7A823F46B449D3389D5ABFE812F /* EXHaptics-prefix.pch */, + ); + name = "Support Files"; + path = "../../../ios/Pods/Target Support Files/EXHaptics"; + sourceTree = ""; + }; 519321310C6145F0BC711C3B3BC24F11 /* Pods-RocketChatRN */ = { isa = PBXGroup; children = ( @@ -12956,6 +12749,52 @@ path = "Target Support Files/Pods-RocketChatRN"; sourceTree = ""; }; + 51DC58D3FE9518D3266BB7D5F1438646 /* react-native-orientation-locker */ = { + isa = PBXGroup; + children = ( + 95CEC26F847DB54D49844CF88621B9CD /* Orientation.h */, + DA051E5A2D63F5A738B878BAD97D4958 /* Orientation.m */, + A7D2EC369C618A046E4E00D708A0E36D /* Pod */, + 669395C0823F05FD49AF1F9FB80611B0 /* Support Files */, + ); + name = "react-native-orientation-locker"; + path = "../../node_modules/react-native-orientation-locker"; + sourceTree = ""; + }; + 5270B655D56359D12718CE04CE10B7C6 /* Reporting */ = { + isa = PBXGroup; + children = ( + D19990B18A20B171CD845016191187A9 /* Filters */, + ); + name = Reporting; + path = Reporting; + sourceTree = ""; + }; + 540A6CB1D6E649E7E6C6D31A5AC21E63 /* React-RCTText */ = { + isa = PBXGroup; + children = ( + DB6FE7776E3827BB6846BBC6741A7928 /* RCTConvert+Text.m */, + ADD684420F0E3B1C8F6DE6C07F842F82 /* RCTTextAttributes.m */, + 66CEC54DBD95783533C6CD0C7A6E3104 /* BaseText */, + A2ADCBD34E27985AD70F3CE40A1BA39F /* Pod */, + CDAEF8AEC43994949DA9D41CF469F235 /* RawText */, + D65D3083A266A05D703B9413E7C3337D /* Support Files */, + 2B7D4C58DF4FC12FDA2E8857C2374C30 /* Text */, + 8F802BB06AF0C14817270D99A4FE761C /* TextInput */, + F42B3AF8502AAA17326796168D4871EA /* VirtualText */, + ); + name = "React-RCTText"; + path = "../../node_modules/react-native/Libraries/Text"; + sourceTree = ""; + }; + 541AB2FDD3DB593A0D1E7117374864EE /* Pod */ = { + isa = PBXGroup; + children = ( + 9829F06E7006373B5F14790CD9EC3848 /* React-RCTBlob.podspec */, + ); + name = Pod; + sourceTree = ""; + }; 543AC9958110B577106FB5FE196BF6A6 /* Support Files */ = { isa = PBXGroup; children = ( @@ -12966,161 +12805,242 @@ path = "../Target Support Files/GoogleDataTransport"; sourceTree = ""; }; - 54F9C92849F083966F15EBEDD414A1C0 /* Support Files */ = { + 553895A6C953BE5E1F266E357130EDCF /* RNFirebase */ = { isa = PBXGroup; children = ( - E91AD6284DD4AB7F771C29815C3A0022 /* EXLocalAuthentication.xcconfig */, - ED55C10A7DA7EE91F2EF2FBF40E36ED5 /* EXLocalAuthentication-dummy.m */, - 5B6435866EEF6A5BB90B65DE63BD83B3 /* EXLocalAuthentication-prefix.pch */, + 308610A6762D5A0F7D9B48416021E79B /* RNFirebase.h */, + 2260CA770ABA3546238DEB503474FE5A /* RNFirebase.m */, + 2754641E5E1C3BA1D28BFF8DF52FC106 /* RNFirebaseEvents.h */, + F868C93B3C86FF0080F9EAE49E858ADE /* RNFirebaseUtil.h */, + B1DDF97FC386A36B1A16FC310A8C01DA /* RNFirebaseUtil.m */, + 1670B1DDB3A057FB4919430588573F38 /* admob */, + AC6B466329F380A66DC111A23218C603 /* analytics */, + 7C3B2C08E6ECA0952A422319A8C1B490 /* auth */, + 464009DFA633FFFBB8E2E76383F533B9 /* config */, + BCD57B903E7160809BD2F6B6AAC397BD /* converters */, + 957F4384F8139D4886191CCC81D21C17 /* database */, + B33B8E46E65D34CCE21C45CCA43C0317 /* fabric */, + A6E0AEA5F16D69E27E1F49F6DCD4F188 /* firestore */, + C77A8C7A58D10ADD35D65AB729F7A58F /* functions */, + 89ADC059859AB023CF3B3287AD10BC42 /* instanceid */, + 790B08121E83316A3E64B5D18F810DBC /* links */, + 009C09204D8309F2BE9B076B0AC7ED4A /* messaging */, + C4E084EE43E1C05F929DC206DDE1035E /* notifications */, + 1CD94CC9C275E0A5BCA5652403D1C327 /* perf */, + 6A71BE28287FCF1FA01EB92421638D83 /* Pod */, + CFA3C8C05C3472049C27FC584CCBA512 /* storage */, + E72CB026F2B38A74346C2D0CD804C869 /* Support Files */, ); - name = "Support Files"; - path = "../../../ios/Pods/Target Support Files/EXLocalAuthentication"; + name = RNFirebase; + path = "../../node_modules/react-native-firebase/ios"; sourceTree = ""; }; - 55384BCA896B2711670C68DF64D3D330 /* Pod */ = { + 5577A40E1F9C174AE9773AA900C903FC /* Pod */ = { isa = PBXGroup; children = ( - 032664ABA202E30892CBB23A17DB14F3 /* LICENSE */, - 1606FAF1B7E71C3407C25835E69D6CF9 /* README.md */, - 8E5089BAFB07659F6E7AC0E0316AC029 /* rn-fetch-blob.podspec */, + E1031DC1B42680FEAE36C5ADDFDE3653 /* UMTaskManagerInterface.podspec */, ); name = Pod; sourceTree = ""; }; - 555D4A8EBD4041A0B52AA2F56957D6DA /* FBReactNativeSpec */ = { + 5581BF5997ABBED31D712692C41B908C /* UIUtils */ = { isa = PBXGroup; children = ( - F01F18AEA282CB9E34DD14D19C2D63A1 /* FBReactNativeSpec.h */, - 688D0ABC174C6A9DB209984CF35D97C7 /* FBReactNativeSpec-generated.mm */, - 2BFCCD8FB1F341ABE2FDBB306D0E837E /* Pod */, - F10C7E5318941DCA2B337E21F2877404 /* Support Files */, + 2C84EC5317FE953C40888C2DFEECF5CB /* RCTUIUtils.h */, + ECF33A7749B132EA8845371627394D38 /* RCTUIUtils.m */, ); - name = FBReactNativeSpec; - path = "../../node_modules/react-native/Libraries/FBReactNativeSpec"; + name = UIUtils; + path = React/UIUtils; sourceTree = ""; }; - 56CA0842623633108B5E2C2CBE0338A3 /* Nodes */ = { + 568327834AD26543F1FEF0318BEEF5E7 /* Pod */ = { isa = PBXGroup; children = ( - 86B6EA59C8167D6CAF1A59391D82DA84 /* RCTAdditionAnimatedNode.h */, - 1B2948ABDB21DABAE59D9D6DFF951012 /* RCTAnimatedNode.h */, - 2C2FBC0A054D33CDCCF8C06A100B019E /* RCTDiffClampAnimatedNode.h */, - 5FAEB419F66E1976F7843B1EC7F1F451 /* RCTDivisionAnimatedNode.h */, - 4D30D8C74FFA15785DB15BC7AFBAA963 /* RCTInterpolationAnimatedNode.h */, - 14491B988359F95819D696C672587578 /* RCTModuloAnimatedNode.h */, - 0615D3DFC82C26757E1BD398535DAACC /* RCTMultiplicationAnimatedNode.h */, - A37715BF54D25621CFB1E49A366C553C /* RCTPropsAnimatedNode.h */, - 887C85C30BFFB73C5ACCE12EB42C4735 /* RCTStyleAnimatedNode.h */, - B74B3D0393A1DA20C2CFA6536BD32337 /* RCTSubtractionAnimatedNode.h */, - 86E7A2742CDDAC5A74CEFA4B2A333DE2 /* RCTTrackingAnimatedNode.h */, - 88956C81AA4B077BC4788F5BD4D3B66D /* RCTTransformAnimatedNode.h */, - 2DB92C8FC3FC92540D11087C99286E40 /* RCTValueAnimatedNode.h */, + 877C42E5C07C8B5843512624CAA59B9E /* LICENSE */, + 481C31B92E77F1A3D0612DE9CF1EBF9D /* README.md */, + C314FD85927B7F436A1943A280B73F35 /* RNVectorIcons.podspec */, ); - name = Nodes; - path = Libraries/NativeAnimation/Nodes; + name = Pod; sourceTree = ""; }; - 56CB59F734C755F10DA425C075879FEE /* Support Files */ = { + 5705713DE9071865B9BD21FA779AA585 /* DevSupport */ = { isa = PBXGroup; children = ( - 51EDE4A352C03CEEFF24BC91E49758F7 /* react-native-safe-area-context.xcconfig */, - 7FB0C95DF7E2E303FFFE3017E48AF553 /* react-native-safe-area-context-dummy.m */, - 2868DBB725094899C2B14D6416E2A0E2 /* react-native-safe-area-context-prefix.pch */, + 4AF8AB35B6F103D68BF3499542D0B2E9 /* DevSupport */, + AC5F8D0F09DCB7DFA7998AB73DAF45C5 /* Inspector */, + ); + name = DevSupport; + sourceTree = ""; + }; + 575952F1E2803CAF8092944BAA88A832 /* Source */ = { + isa = PBXGroup; + children = ( + 709CD2DECFBE92EBAA54F428848D1F81 /* BSG_KSCrashReportWriter.h */, + B3C68EF037255E557CF6936B4C86785B /* BSGConnectivity.h */, + E3AC80F6DEE183DD7CF938F00BAE732E /* BSGConnectivity.m */, + B89A338733C87A40A6DC008330D97288 /* BSGOutOfMemoryWatchdog.h */, + B87CB92FBA80CAC31896794FF4B9EFA4 /* BSGOutOfMemoryWatchdog.m */, + CA846BDE2EDE3F5DC81DBA1812FB3C9F /* BSGSerialization.h */, + 118E42AF1BC7F24909BA337877CE0805 /* BSGSerialization.m */, + BCE2B66B16E38723E924E2A58640BD9B /* Bugsnag.h */, + 7AC093452642F039FE07351294D1D94E /* Bugsnag.m */, + DA555520E55808EAFC7410EECA5D6856 /* BugsnagApiClient.h */, + BDF91B2D8013804B3B247CEAAFE62A04 /* BugsnagApiClient.m */, + 562254EECFA240A680811AEA44C71397 /* BugsnagBreadcrumb.h */, + 214F75E0C1D6794C8A998E9B77AAA69E /* BugsnagBreadcrumb.m */, + DA8BC124F2E327FF1FAFEB594EA867F0 /* BugsnagCollections.h */, + 0EDC966D5F288AF64A01C3BF698E0A5E /* BugsnagCollections.m */, + EC0288E7FC24922EE25F901CF9ED9725 /* BugsnagConfiguration.h */, + 87C7E9F876B44CFB7BCD2DB3330F4511 /* BugsnagConfiguration.m */, + 6D595FF639EDE09CA0B9D1E01B2695EC /* BugsnagCrashReport.h */, + 13AB55238B4874EF9DC2114874CF65B3 /* BugsnagCrashReport.m */, + 6BD6B36952346B1A6E7D39AB05FB5F14 /* BugsnagCrashSentry.h */, + F279545A0943A45D78742438434BFE7E /* BugsnagCrashSentry.m */, + 1B29820901D0645F926FEDA287854125 /* BugsnagErrorReportApiClient.h */, + 7DDE7A89F4A196143E6A33D558D24471 /* BugsnagErrorReportApiClient.m */, + 21134F497393F62143AF30FAC168E662 /* BugsnagFileStore.h */, + C8372AC96207D4A27A40EE1FA0BC8EEC /* BugsnagFileStore.m */, + 9442B35307D98C612F326A2F3D6F5A1A /* BugsnagHandledState.h */, + CF3FD070471CF5A9316F47805256A4F6 /* BugsnagHandledState.m */, + EB843E6AC3CC71F9610EDF2B1B2B53C0 /* BugsnagKeys.h */, + 5C097A47FC864491F16FFB2F9B811822 /* BugsnagKSCrashSysInfoParser.h */, + F8571A632FF52A4D8BB24D54FD871303 /* BugsnagKSCrashSysInfoParser.m */, + 46C31A2BA6F70DAA95C855900A0815DD /* BugsnagLogger.h */, + 0D506BAB8ED343238D0B812184000603 /* BugsnagMetaData.h */, + 3BBE6D92798A461EFCA9D5A47C083203 /* BugsnagMetaData.m */, + 0B57FDB912A64CE327E7E3F4AEBF13EB /* BugsnagNotifier.h */, + DB235A35325A6D3FAA0D69E5E99B322F /* BugsnagNotifier.m */, + 2CAB9455E7C439073AD7677FC69858E7 /* BugsnagPlugin.h */, + E7D31FF6221AF2CC2A559B30707B918A /* BugsnagSession.h */, + 557BD8421208AFAB1AAF766F4A4B99DE /* BugsnagSession.m */, + FA8EAA9C71DDEB34B6E5D073854CD31F /* BugsnagSessionFileStore.h */, + 4804FDF618F2127C10ED13EED4716393 /* BugsnagSessionFileStore.m */, + 879CBC951898F167B87A604EA6A12D15 /* BugsnagSessionTracker.h */, + 09DD8BB15FFE71AEB378FE3CFC19A219 /* BugsnagSessionTracker.m */, + 910EE1481A0CEC8D3EA79187B2EC0CC0 /* BugsnagSessionTrackingApiClient.h */, + 2C1299DBD1706104A23932D328B02DFB /* BugsnagSessionTrackingApiClient.m */, + 3F241A568E0C01C07080A95F2E673F09 /* BugsnagSessionTrackingPayload.h */, + ADF426CEFF5DA0F624BC223B7779A349 /* BugsnagSessionTrackingPayload.m */, + 9FB325EA319135F9DA515CD7A006ED3F /* BugsnagSink.h */, + 700E1E96E2A4740123B8FB417A820909 /* BugsnagSink.m */, + DB32E526E1445FE7B012C65BD6376240 /* BugsnagUser.h */, + 6EAF17DFB63D2F9F9F36D733AC58E9DB /* BugsnagUser.m */, + 3EDB6D361FBC4C557F4B41919CD34F03 /* Private.h */, + CF6B99CA49724ABFA45467689E523DD8 /* KSCrash */, + ); + name = Source; + path = Source; + sourceTree = ""; + }; + 57DBACCE272D84C3780F5EC5FA01923E /* Support Files */ = { + isa = PBXGroup; + children = ( + D9FC58B2BA1BFB5C040F369CEABE2C66 /* RNScreens.xcconfig */, + C844BF9C6186707B9A73B3D28E631584 /* RNScreens-dummy.m */, + 2D3760408329F3467063E49052CF55BA /* RNScreens-prefix.pch */, ); name = "Support Files"; - path = "../../ios/Pods/Target Support Files/react-native-safe-area-context"; + path = "../../ios/Pods/Target Support Files/RNScreens"; sourceTree = ""; }; - 575672154DAAF25A043C03758C7ACC82 /* admob */ = { + 583C21624FEA4DB2FFFEB97DD3F43C05 /* Support Files */ = { isa = PBXGroup; children = ( - 56329E2231A05D55C0A5FF45601A5F03 /* BannerComponent.h */, - 3D71F8CB11FA9EFCE632EF2ADC483214 /* BannerComponent.m */, - 2CF59DE05A098DAA833C7A70753F25BC /* NativeExpressComponent.h */, - D93AB3281682C4922FEE2F3E42D74976 /* NativeExpressComponent.m */, - 9F629F100430310341B2F399E260D8E6 /* RNFirebaseAdMob.h */, - FE33B6D87F46148EA40455A33D94BA39 /* RNFirebaseAdMob.m */, - 5A4F53AB3445FE3C43E2B355A096F6D5 /* RNFirebaseAdMobBannerManager.h */, - 066FD3A91B0F1517F1463DB5F7CABA38 /* RNFirebaseAdMobBannerManager.m */, - B9101611D1081DAA8646B34923008FE7 /* RNFirebaseAdMobInterstitial.h */, - A038D71AFF5935A62E96279F15FB1CA9 /* RNFirebaseAdMobInterstitial.m */, - 7AC151F4ACB07F1042E6F75F7183386D /* RNFirebaseAdMobNativeExpressManager.h */, - B36E7575D09CE06B36B64262E56AD7A1 /* RNFirebaseAdMobNativeExpressManager.m */, - 0E3265C42333A48771EC37248BBC59B3 /* RNFirebaseAdMobRewardedVideo.h */, - 218422C5163CBAD686311A3CF0701DF7 /* RNFirebaseAdMobRewardedVideo.m */, - ); - name = admob; - path = RNFirebase/admob; - sourceTree = ""; - }; - 585D34274855BF0119B6A9E500D7F05E /* RawText */ = { - isa = PBXGroup; - children = ( - 0A8028BCC58743A6AB3702379DF66EB6 /* RCTRawTextShadowView.h */, - FE19B7DAAB2672D88B1F5E74DE62B517 /* RCTRawTextViewManager.h */, - ); - name = RawText; - path = Libraries/Text/RawText; - sourceTree = ""; - }; - 59641CADCE1F13341419F7DE2A2694FC /* Text */ = { - isa = PBXGroup; - children = ( - 91A3294E0CAE80277F6BA9F07BE963ED /* NSTextStorage+FontScaling.m */, - F91B915CE87D11F1EC02D7B6AE542EC5 /* RCTTextShadowView.m */, - 9A8D977AFC2C5F8CB3A5F09188EB520E /* RCTTextView.m */, - 404125022A4DE6ACDF8B89CC27579A03 /* RCTTextViewManager.m */, - ); - name = Text; - path = Text; - sourceTree = ""; - }; - 5B08F74F43DB6AA8D2D7C89F425E89D8 /* UMSensorsInterface */ = { - isa = PBXGroup; - children = ( - 9BB37923E297A754832080958B8B5FEC /* UMAccelerometerInterface.h */, - 8FE5E457B8AA0BA085359B0443A137B2 /* UMBarometerInterface.h */, - C72EFF39F9845C65ECAFF95FFC67AED7 /* UMDeviceMotionInterface.h */, - 461AC52930C06809C3A0A91CCC3D7E5B /* UMGyroscopeInterface.h */, - 60CEF74DE427937C7D1DF1E267410A4C /* UMMagnetometerInterface.h */, - A68E398CE32D7ADB78DE83D46C0163BD /* UMMagnetometerUncalibratedInterface.h */, - C77D241DC3FE4B81336FC547EB076024 /* Pod */, - 0B1C2E8D8EB325D292C25F38A959046B /* Support Files */, - ); - name = UMSensorsInterface; - path = "../../node_modules/unimodules-sensors-interface/ios"; - sourceTree = ""; - }; - 5BABCC3389C6D56CF2B8CA6247E086F4 /* Support Files */ = { - isa = PBXGroup; - children = ( - 9B11399D7D9C0CC421366F0B70405608 /* EXPermissions.xcconfig */, - 92BC26C6959C651149076B70977E6A2D /* EXPermissions-dummy.m */, - 53D7F6BFEC09B23AD74FFD107A935416 /* EXPermissions-prefix.pch */, + F44EFE0803F8B53A55186AAA8295928F /* UMSensorsInterface.xcconfig */, ); name = "Support Files"; - path = "../../../ios/Pods/Target Support Files/EXPermissions"; + path = "../../../ios/Pods/Target Support Files/UMSensorsInterface"; sourceTree = ""; }; - 5BD3CDDAA18AEA0F7499B011397E3CA1 /* React-RCTActionSheet */ = { + 59D89F472CC2829E035A145168D27CA6 /* event */ = { isa = PBXGroup; children = ( - D09F2CCCE0B5BECE9759D5AF56E0DC67 /* Pod */, - 39A56978D6F28AAD11DCA7EF8335D2A8 /* Support Files */, + 13A02F286E0993491012177E63DC267A /* event.cpp */, + 975B45C783D99F78182782A13C67F00E /* event.h */, ); - name = "React-RCTActionSheet"; - path = "../../node_modules/react-native/Libraries/ActionSheetIOS"; + name = event; + path = yoga/event; sourceTree = ""; }; - 5CE6AC589C5C4294462A7296BAF6484D /* ReactCommon */ = { + 5A07DFBD9EB2219F98B5CC514670D3EB /* SurfaceHostingView */ = { isa = PBXGroup; children = ( - 266C53CD9F82282A7CAB70AECF3D67A7 /* callinvoker */, - A3BA2B2AFCB59E1AB204ADFBFEC7DFC4 /* Support Files */, - F328997D35C107D877CD77AF7AE95930 /* turbomodule */, + AEE5B1178974C42B0AD7B48FCBEF3FF9 /* RCTSurfaceHostingProxyRootView.h */, + 95D98A716220DA801BC8F2D61AD6769C /* RCTSurfaceHostingProxyRootView.mm */, + 573404D65999E8662D177E005915F5FA /* RCTSurfaceHostingView.h */, + 9991C9E831092525615436BA5C28D5F5 /* RCTSurfaceHostingView.mm */, + D30A41CBCCBACA94DBCC8F15ABC8BECA /* RCTSurfaceSizeMeasureMode.h */, + 06BFEF585249683DDB63A5FFCD6DB695 /* RCTSurfaceSizeMeasureMode.mm */, ); - name = ReactCommon; - path = "../../node_modules/react-native/ReactCommon"; + name = SurfaceHostingView; + path = SurfaceHostingView; + sourceTree = ""; + }; + 5A43005AD9B321B81437712E9C2B15E0 /* Video */ = { + isa = PBXGroup; + children = ( + 518871DD5597807A14869C4A7A3A9C7F /* EXVideoManager.h */, + 83E1ED294B06F48CE20CDDCFB104C9AF /* EXVideoManager.m */, + 0D1E7B3AAB592A39BB127BDA3FA92FC9 /* EXVideoPlayerViewController.h */, + 7623975154610CA2E1AE466A7CEBE8E0 /* EXVideoPlayerViewController.m */, + B43C3E2D661BFB7286547B6494BCC258 /* EXVideoPlayerViewControllerDelegate.h */, + 94D5B38B9DB2B6F88C585A961A08DA72 /* EXVideoView.h */, + 7242B0B52023ED80CB4CCBD4BF5BE02B /* EXVideoView.m */, + ); + name = Video; + path = EXAV/Video; + sourceTree = ""; + }; + 5BA183CF219C8DE8EBE61D91880E0147 /* Transitioning */ = { + isa = PBXGroup; + children = ( + 05949F61F0C1FBC29880B1B893FB0545 /* RCTConvert+REATransition.h */, + 3B00863C14E21A0D3D585CDB272267A9 /* RCTConvert+REATransition.m */, + 9519ACFDFF2FFC75797D69BF67A4C342 /* REAAllTransitions.h */, + 89494BCB117F7BC9030F763513F1BAE0 /* REAAllTransitions.m */, + 7DC5154565FB95E2BE6043062A2E46AD /* REATransition.h */, + 9C0A1BB3D5CF3B3B97C66C9A585B4776 /* REATransition.m */, + F4716D0D64532F6E34E33873158CD06E /* REATransitionAnimation.h */, + 0F8EBCA3681FC7E917B0E2DFAA50C6AD /* REATransitionAnimation.m */, + 71E80AAD667669B63C01591B4CA4D9E2 /* REATransitionManager.h */, + C4B2C5709C514C2A60E9E90B11DD4F53 /* REATransitionManager.m */, + 3A48F0FA2EFE25FC4D67D9B2D3ECF49D /* REATransitionValues.h */, + B58827B26E4A27503B4CA101D529FF77 /* REATransitionValues.m */, + ); + name = Transitioning; + path = ios/Transitioning; + sourceTree = ""; + }; + 5BBF6EBEFB376F0A1C6DCE9807E87FCE /* BaseText */ = { + isa = PBXGroup; + children = ( + 1C1CA5FFC31390049418CEB7C731C099 /* RCTBaseTextShadowView.h */, + B09E491F61B4BE049237FB2E5CDB0F56 /* RCTBaseTextViewManager.h */, + ); + name = BaseText; + path = Libraries/Text/BaseText; + sourceTree = ""; + }; + 5BFABFA81241DD86BC7337A52B543F1D /* Support Files */ = { + isa = PBXGroup; + children = ( + D3691543AE2B2E485F506D4E3B618754 /* rn-extensions-share.xcconfig */, + 731777336C3CA503DD0A5DA5DB2164B1 /* rn-extensions-share-dummy.m */, + 24FAB53EC793E84129BEFE10FC504C99 /* rn-extensions-share-prefix.pch */, + ); + name = "Support Files"; + path = "../../ios/Pods/Target Support Files/rn-extensions-share"; + sourceTree = ""; + }; + 5C049135084DA469324AC896A2DAEC04 /* Support Files */ = { + isa = PBXGroup; + children = ( + F5F54331714288D4B87EA907858D17D8 /* React-Core.xcconfig */, + 92600053C1570D4B99BA29B10E6E558E /* React-Core-dummy.m */, + 7B0825AD8CDCE3CD72669837CC39ACC5 /* React-Core-prefix.pch */, + ); + name = "Support Files"; + path = "../../ios/Pods/Target Support Files/React-Core"; sourceTree = ""; }; 5D294D3CAF4E18644A598886692185E0 /* Support Files */ = { @@ -13132,203 +13052,114 @@ path = "../Target Support Files/Firebase"; sourceTree = ""; }; - 5D57A9C7F2C1BF322DDC4D75B2835682 /* Multiline */ = { + 5D595F6A537604CC211E650E999EB0D5 /* React-jsiexecutor */ = { isa = PBXGroup; children = ( - 0FBCF12118BE36F18E343B01FE292CBC /* RCTMultilineTextInputView.m */, - D66BC7D0B852BE873C1CC9FC4836A3F7 /* RCTMultilineTextInputViewManager.m */, - 4B4D3FE3A0902B85586AB8E1709522DA /* RCTUITextView.m */, + C4137DC46FF694731547B518598BA2E2 /* JSIExecutor.cpp */, + 602ED221728EAF1F970B09A19C83C3EA /* JSIExecutor.h */, + C38D77E4FF706ACDC4472375DFF52014 /* JSINativeModules.cpp */, + 93FCBE3E7A4F4294ADB97EC1ACE0DC43 /* JSINativeModules.h */, + 6C1A447191B9E0FE98C8421BA39C67A9 /* Pod */, + B5C052819E84DC86510B172F8FD9C134 /* Support Files */, ); - name = Multiline; - path = Multiline; + name = "React-jsiexecutor"; + path = "../../node_modules/react-native/ReactCommon/jsiexecutor"; sourceTree = ""; }; - 5DD34C1192395A01CAC59A1F1C53FFF3 /* Pod */ = { + 5E3DC8793FEF462E78B92B65EF314B4F /* RNScreens */ = { isa = PBXGroup; children = ( - BAEB73E466BB265D89EE1E33D6DA3E00 /* LICENSE */, - 7106EEAFBE6BAE4A506A5118B384AB1F /* README.md */, - CD54189EB54FEDC36E9CEB99FAE74F47 /* RNLocalize.podspec */, + 2E3FBB4B21D8F7FB43EB51557DF76628 /* RNSScreen.h */, + B63C5C2599926AFDC26C0A3D48BCC8BE /* RNSScreen.m */, + FDBB35EFC537ABD82E88A8DCAC345F1C /* RNSScreenContainer.h */, + DCF5F74F414D69D59E8E603C60730F28 /* RNSScreenContainer.m */, + 212E462CD956DCFF5391D39795C41FC0 /* RNSScreenStack.h */, + 1887071717657DDAFB53BA65C7B5EE7B /* RNSScreenStack.m */, + 5FB6901D181CD76F365D0B8CA453FCEB /* RNSScreenStackHeaderConfig.h */, + 0D677C7EB0FF4DC9417331352B0AD105 /* RNSScreenStackHeaderConfig.m */, + BD10DF67FD38D94878EC204958A97A64 /* Pod */, + 57DBACCE272D84C3780F5EC5FA01923E /* Support Files */, ); - name = Pod; + name = RNScreens; + path = "../../node_modules/react-native-screens"; sourceTree = ""; }; - 5EA619D241822FE3E6925F88112922D0 /* Support Files */ = { + 5FEFFD03A11FDA1EFC7EE298CF681601 /* Support Files */ = { isa = PBXGroup; children = ( - 6DF84C4AC2FF0FD8AF3C923CCBCA3EEB /* React-RCTLinking.xcconfig */, - 902C59283CA9D5897D96DC5A6A036B75 /* React-RCTLinking-dummy.m */, - B458A529C776F13CD9070EB18C8504A3 /* React-RCTLinking-prefix.pch */, + 8069C3A9598D86CED1E4219CBB67961D /* React-RCTActionSheet.xcconfig */, ); name = "Support Files"; - path = "../../../../ios/Pods/Target Support Files/React-RCTLinking"; + path = "../../../../ios/Pods/Target Support Files/React-RCTActionSheet"; sourceTree = ""; }; - 5F703CFEEE07B41A508F85312EA62CFA /* Pod */ = { + 6063B3189F1A147FC775ACDF096D2784 /* Support Files */ = { isa = PBXGroup; children = ( - 79F313B36542D7D26580C516EABE6289 /* EXAV.podspec */, + A7337D3BE715CC565A00F1ECE675785A /* RNDateTimePicker.xcconfig */, + 0790CCAD0E750D1F50CAEE0E3F6EBFA9 /* RNDateTimePicker-dummy.m */, + FF292360ACBBCCEF30A4CC47FC351942 /* RNDateTimePicker-prefix.pch */, + ); + name = "Support Files"; + path = "../../../ios/Pods/Target Support Files/RNDateTimePicker"; + sourceTree = ""; + }; + 615AA9B934E4046DE275EB52317EB4E7 /* Pod */ = { + isa = PBXGroup; + children = ( + C5C6D5BD9D296EDD799A90075258D190 /* EXHaptics.podspec */, ); name = Pod; sourceTree = ""; }; - 5FA3D5B563F60ADA267450E6EDEDB551 /* Pod */ = { + 62A8EDB7556809C3533A5DE74C9DFA02 /* Sentry */ = { isa = PBXGroup; children = ( - 53BD81CD8513B30AA00AC0C699A9998F /* LICENSE */, - AA8CD82969CCBF7E27116E4DF0040E1E /* react-native-appearance.podspec */, - 454B7DA6BA91FEB1C6431A46061AE923 /* README.md */, + 18A34D18A67341C128316BCECAD79394 /* BSG_KSCrashSentry.c */, + A6512FCD0C8C561FC74BFD741610BB9B /* BSG_KSCrashSentry.h */, + 5845569959B014162BF3DBB71C0DC32A /* BSG_KSCrashSentry_CPPException.h */, + FA344C3855C0E0D813CC3A07CD96FD9A /* BSG_KSCrashSentry_CPPException.mm */, + 1A268979E01721FDB835889EC1A77B28 /* BSG_KSCrashSentry_MachException.c */, + 0D23C8446A63613DDE65863DB9A8961D /* BSG_KSCrashSentry_MachException.h */, + 47DF6A5E8E22CBC99575166076BBFF9C /* BSG_KSCrashSentry_NSException.h */, + A8DED098DA264CAECA3C1F977D252144 /* BSG_KSCrashSentry_NSException.m */, + E6B34594D7FE35E2F2B9EF061D6A4174 /* BSG_KSCrashSentry_Private.h */, + C9B85E132A98984C63D3561D481812B6 /* BSG_KSCrashSentry_Signal.c */, + 06FF96511A3C3A8824ADBA61056687CA /* BSG_KSCrashSentry_Signal.h */, + 1D6F792707429EAB0641A6D0DDAC97FE /* BSG_KSCrashSentry_User.c */, + 818F50374AF6697018699132471F5A9B /* BSG_KSCrashSentry_User.h */, ); - name = Pod; + name = Sentry; + path = Sentry; sourceTree = ""; }; - 61762E0F01CF291269A0204FA0E84808 /* Protocols */ = { + 62D980FC0C8CFB603763923ECE3F1D1C /* Brushes */ = { isa = PBXGroup; children = ( - 4CB1F7A50693D9CF3D1B8F89276D0618 /* UMAppLifecycleListener.h */, - ED5BC9D96294FFB993377139D192A7E2 /* UMAppLifecycleService.h */, - 554B22F03906055DC4B73FDEE5372239 /* UMEventEmitter.h */, - 40E6DCD80E4FC6FFB164600E707463D7 /* UMEventEmitterService.h */, - 1B87F8E16A65AB0AA58EBDC9AC6B343F /* UMInternalModule.h */, - BB6917060CD8E3BCC7BAC43AAF2FDFEE /* UMJavaScriptContextProvider.h */, - F99A0A68F1381494A19F623FB3B97C43 /* UMKernelService.h */, - 55DED3FBCD9CA821EF7A18DF058FC1EE /* UMLogHandler.h */, - 3F96DF6D6BA0CF581CC46C988CF8122B /* UMModuleRegistryConsumer.h */, - F0AEA7B0AFBBC79FE0CA376439E2A09B /* UMUIManager.h */, - 762BEEE67A6C2BA66BC01DC9BDDEBEE5 /* UMUtilitiesInterface.h */, + 21896A0E5A77DDB3232CDEF7D8507DF1 /* ARTBrush.h */, + 72D72FC9A38216D6880CE47E00B26E86 /* ARTBrush.m */, + C1F7C370E1B231730123F7F7DC481D25 /* ARTLinearGradient.h */, + 5A03C80D3D1ACD77DB9FD585D938955D /* ARTLinearGradient.m */, + 9B892B57F11497C792BA221D59BCEACE /* ARTPattern.h */, + 712F53208F9FE0886B389CD72E923EFE /* ARTPattern.m */, + 1E19BE1737EE6C285809F2BB8451B5DF /* ARTRadialGradient.h */, + E877A2558FF6A9C6AC1FDFB384220918 /* ARTRadialGradient.m */, + 77A8132F5B05840EEA012A5B0835CD43 /* ARTSolidColor.h */, + FEF28775DEFA2385EB86C92F748330A6 /* ARTSolidColor.m */, ); - name = Protocols; - path = UMCore/Protocols; + name = Brushes; + path = ios/Brushes; sourceTree = ""; }; - 61A1692F5A4B578EAF8EF4A23F6CD6A4 /* react-native-jitsi-meet */ = { + 669395C0823F05FD49AF1F9FB80611B0 /* Support Files */ = { isa = PBXGroup; children = ( - 91937954EC3D19154FBDF69F9966BDCD /* RNJitsiMeetView.h */, - 911B53B91157F66224EA02E8A8FA0B7F /* RNJitsiMeetView.m */, - 2DCFC81374FB80B7085A8B149771FECD /* RNJitsiMeetViewManager.h */, - A836149B7ADFE67BA66D94796213734B /* RNJitsiMeetViewManager.m */, - 2B82DD34B6F225D7C08445875360AB61 /* Pod */, - AD8F51D43C17C1F674A78CC20CCD51B4 /* Support Files */, + 968F253DD1557CE33882DB03532614C7 /* react-native-orientation-locker.xcconfig */, + 67A8DB554686638B37240B1872C5680F /* react-native-orientation-locker-dummy.m */, + 193492E67D4FBEB6D91CAE5E97067526 /* react-native-orientation-locker-prefix.pch */, ); - name = "react-native-jitsi-meet"; - path = "../../node_modules/react-native-jitsi-meet"; - sourceTree = ""; - }; - 62DD65BDAD21786832F1665CF4036965 /* Pod */ = { - isa = PBXGroup; - children = ( - D24D871466449AFC51109827456C4216 /* EXConstants.podspec */, - ); - name = Pod; - sourceTree = ""; - }; - 635DBA49E5037EF9089256C518CFBA5F /* Source */ = { - isa = PBXGroup; - children = ( - F1E839D3BA68E28756EAAC8A5913028E /* BSG_KSCrashReportWriter.h */, - 931FE198A25C9BC87758418B8F903556 /* BSGConnectivity.h */, - EF5486049EDC1824356D857F5C0F6915 /* BSGConnectivity.m */, - 0C879FAF890CC44C742103804933655E /* BSGOutOfMemoryWatchdog.h */, - 956FA2E8F3CB9BCD8C901DE0C9995E5F /* BSGOutOfMemoryWatchdog.m */, - 7AD03E484778128BB377B052A004064B /* BSGSerialization.h */, - 37895F3BEBC6FBAE7B69AC1E9B664C63 /* BSGSerialization.m */, - 9FD63B7A2E08464D5A03789191955423 /* Bugsnag.h */, - B15C487F4DC80F8BE99777A46A89376A /* Bugsnag.m */, - 6F77194E54C6A747E949B4AAA15A0675 /* BugsnagApiClient.h */, - 0AC9C1DB7C04328B5BB8E33489022D4E /* BugsnagApiClient.m */, - BEDD8EF93D0127ED2A373DF630F9E051 /* BugsnagBreadcrumb.h */, - 2B73E343A993E6CEF42350881F8F0E84 /* BugsnagBreadcrumb.m */, - 3F82FA274BA7E705C804627258FC1AFD /* BugsnagCollections.h */, - DF467F947B74376C96C9A29D47C69BD8 /* BugsnagCollections.m */, - 1E84BABFA46907C3092C5F2ABC995C29 /* BugsnagConfiguration.h */, - 2D64575D372A7F5A5C6B1E7CAA66CD49 /* BugsnagConfiguration.m */, - 7FDA191D4CCF1F4510BEEA4F4E9F2B67 /* BugsnagCrashReport.h */, - 047E3082BDAAFDB754C2F948E1FB9C07 /* BugsnagCrashReport.m */, - 1DB63DF1A95876A2FAC34C050BCC3855 /* BugsnagCrashSentry.h */, - CD70D2AA3F9709DFA32D80C23A668901 /* BugsnagCrashSentry.m */, - 1676FC615941B3942BB2D9289298A715 /* BugsnagErrorReportApiClient.h */, - FEF078F0F06D226117C9B44CCF7A934A /* BugsnagErrorReportApiClient.m */, - 1FC9F360C6E2DE922732719E9CF39F59 /* BugsnagFileStore.h */, - F48F0353F4F7EE6357B920EF17DCE593 /* BugsnagFileStore.m */, - 3763AB04A89529750855C4C3533760D9 /* BugsnagHandledState.h */, - 2D8409785A38DCC8B6E9EFC8DDF80F5E /* BugsnagHandledState.m */, - 8D520DB62B2AA74B6834DC2104F6A540 /* BugsnagKeys.h */, - B9C741BBFDA15841A9940FD832CA71D0 /* BugsnagKSCrashSysInfoParser.h */, - F0CC2A5C60683A04E50F08667B3742AC /* BugsnagKSCrashSysInfoParser.m */, - 6AC3F7E4DAF9A0BCDF52264CFFE374A8 /* BugsnagLogger.h */, - 3924139DCBF1E96013E3D806FA355B7C /* BugsnagMetaData.h */, - 14B051DDE46778264E83099E407929F4 /* BugsnagMetaData.m */, - 9652CB5F5744FD7E236307D575339A15 /* BugsnagNotifier.h */, - 4B16BF17465FB62E0B3AEEDF1623DC8C /* BugsnagNotifier.m */, - 5856E498F87DC64E56AF486736B65248 /* BugsnagPlugin.h */, - B72142B3DCD694D56D81DDC466849790 /* BugsnagSession.h */, - 71AE41B49320B7D195F1396292016E9B /* BugsnagSession.m */, - 884E3962C61598FE083992ECDA7986DF /* BugsnagSessionFileStore.h */, - E4715A68BDF3486D832920D916ECA375 /* BugsnagSessionFileStore.m */, - 4A5D8F44DCDE87F173CBE63A075DB058 /* BugsnagSessionTracker.h */, - 7D0B357A176559069BF4F07A11BD76F2 /* BugsnagSessionTracker.m */, - 17BC9E5C4DEB82B74B5BFC4E7C56357F /* BugsnagSessionTrackingApiClient.h */, - ECF4AFAE13A35FFC1A16CE050FFC238B /* BugsnagSessionTrackingApiClient.m */, - 3861A556F991E0FB85827D1D364AA6EA /* BugsnagSessionTrackingPayload.h */, - 25BDBD014796225914C8BE9790EEAF48 /* BugsnagSessionTrackingPayload.m */, - F3367CCC04776A1175C5A45EFB6529C8 /* BugsnagSink.h */, - 3B45B6C3975F42178855A0EA49CAAF12 /* BugsnagSink.m */, - 9916466C8411EAC9AAC96756257A4EBE /* BugsnagUser.h */, - FCF1E186581D4AB90F54D0F475088693 /* BugsnagUser.m */, - 2C4AD36AF9A99718600B5ECBED9C08F9 /* Private.h */, - D2226D46095F80681CDF073214B64209 /* KSCrash */, - ); - name = Source; - path = Source; - sourceTree = ""; - }; - 64DF6A39AFBA9668F142BB1022043253 /* Yoga */ = { - isa = PBXGroup; - children = ( - D6E511CDA073D7085B98A69C0BF9E92B /* BitUtils.h */, - 4DD6B706D7C83809F01C6C0B11777F78 /* CompactValue.h */, - 3CCC75DE3E19DBDCDC976CB51121AA6A /* log.cpp */, - E65CACEB67E1652527A2057E33BD3A9A /* log.h */, - 2F4B4CF25B4C47002CC185DC4D991BFD /* Utils.cpp */, - D8C74FA13B259036623D80DFFD327CA9 /* Utils.h */, - E8DB26D72064B358DEF28E118D4717F5 /* YGConfig.cpp */, - B5B719F0E723B85512C67960D063CAFF /* YGConfig.h */, - 6A32CB6BF5B614879CA8331936310E6A /* YGEnums.cpp */, - CC8F9EEB184C73EAF0EDBFFB9A9448F2 /* YGEnums.h */, - D10621A800B7B97AA6F5E01BCDFACEA6 /* YGFloatOptional.h */, - 2148262530D07D32B42FD8E37018A73A /* YGLayout.cpp */, - 251536CB04DA819939DE200CBD5BA105 /* YGLayout.h */, - 1EF403D5ED7B4AC1BD1B459C3D9B0A38 /* YGMacros.h */, - 6CDB31BDF2D8BFC7451FA2DE3DEAEEB8 /* YGNode.cpp */, - 08286E5500972EC4C7AFF7710EB30701 /* YGNode.h */, - 0C16D5592AAF54FDAD9945573AAF7295 /* YGNodePrint.cpp */, - BE91CEE35AB92D55B46F5AE10BF32F0C /* YGNodePrint.h */, - DAF9878961E52E9EEA3D247C43084864 /* YGStyle.cpp */, - DBEF8150E3FFC9506A7843EDB9AFD1BD /* YGStyle.h */, - 31B9586A25A945DFDF336F9090B11E07 /* YGValue.cpp */, - 4E8ED8A83DA5B53CBED456E31C005406 /* YGValue.h */, - 9CF2193318F09D8D55E14A40590398F6 /* Yoga.cpp */, - 16EDF9F4F68DD8A45FAF7D7434479632 /* Yoga.h */, - 30E7AB436B129FA770A942480C3CCFD1 /* Yoga-internal.h */, - B30DCF40B8113D7FBD77F511662841CF /* event */, - 77F64B007C151AB85BD97621050EA0C4 /* internal */, - F444A175FD45C81AC68FA64C4A9C5211 /* Pod */, - B09CE1CED6ED41A93C1F440616D45FDA /* Support Files */, - ); - name = Yoga; - path = "../../node_modules/react-native/ReactCommon/yoga"; - sourceTree = ""; - }; - 663891084B71F8392225208F585031EB /* UMConstantsInterface */ = { - isa = PBXGroup; - children = ( - A2DA013639549EE873CF7EE0CD0D4B78 /* UMConstantsInterface.h */, - DC9AB5AC18E12C0261EF0F622A2B6804 /* Pod */, - 38553B08D4B44A82ED7318CC5C628633 /* Support Files */, - ); - name = UMConstantsInterface; - path = "../../node_modules/unimodules-constants-interface/ios"; + name = "Support Files"; + path = "../../ios/Pods/Target Support Files/react-native-orientation-locker"; sourceTree = ""; }; 66BE12F4855C4E39C8CC6926F1CE4466 /* Flipper */ = { @@ -13366,12 +13197,28 @@ path = Flipper; sourceTree = ""; }; - 67C1609F0508825F322811C96A4007A8 /* Pod */ = { + 66CEC54DBD95783533C6CD0C7A6E3104 /* BaseText */ = { isa = PBXGroup; children = ( - 0660A4AF44B1A8B709A1A279D0F0352C /* React-jsiexecutor.podspec */, + ADEBEA78A5A2FA33F1C32DDB91846980 /* RCTBaseTextShadowView.m */, + FAF75F2BC4C588B84E1F34EBC56716E7 /* RCTBaseTextViewManager.m */, ); - name = Pod; + name = BaseText; + path = BaseText; + sourceTree = ""; + }; + 67E2E147AB30F73FDA50A3B6AA547121 /* react-native-jitsi-meet */ = { + isa = PBXGroup; + children = ( + C3F1A0AE9A8D78D358EC27C3B482274B /* RNJitsiMeetView.h */, + 6C46334BCA482341224CBD6F985BBA8E /* RNJitsiMeetView.m */, + 20D04AAC9A737C5CF857361F435308B5 /* RNJitsiMeetViewManager.h */, + B862F9B12681D41BF10EE0EBB5E23658 /* RNJitsiMeetViewManager.m */, + FEA5CEE5AE3156ACF237AE1E93AA9114 /* Pod */, + D57894C85ED46CB5D40094DA60643922 /* Support Files */, + ); + name = "react-native-jitsi-meet"; + path = "../../node_modules/react-native-jitsi-meet"; sourceTree = ""; }; 68180C47913914AC645F8C6326B4E79A /* JitsiMeetSDK */ = { @@ -13384,59 +13231,34 @@ path = JitsiMeetSDK; sourceTree = ""; }; - 6835B1809D0F5824A10DF34E15B66122 /* Support Files */ = { + 69772EA06054D5766BB7683385577427 /* Support Files */ = { isa = PBXGroup; children = ( - CEAB7B1C6528C25F32EC288834418C84 /* KeyCommands.xcconfig */, - 3082B4F67DF8A2C570FEF766BE0A18F3 /* KeyCommands-dummy.m */, - 008D4EEA0505267E416DCDEBB6A3CB34 /* KeyCommands-prefix.pch */, + 2ED7C8D28CC217E2C58459E3ADB5A56D /* React.xcconfig */, ); name = "Support Files"; - path = "../../ios/Pods/Target Support Files/KeyCommands"; + path = "../../ios/Pods/Target Support Files/React"; sourceTree = ""; }; - 68B28725610D0DD6C112641D47D2E566 /* Recording */ = { + 69FC9B2CE8355119DAD1A9DADE42AE76 /* RCTNetworkHeaders */ = { isa = PBXGroup; children = ( - 7034C52AF5A115A04C42690DE056D075 /* BSG_KSCrash.h */, - C7B7295CBF6EF405A44F84AAE4205705 /* BSG_KSCrash.m */, - ADE10929ECA897064616AF907B1E46F7 /* BSG_KSCrashAdvanced.h */, - 82B4266BB676B66E2D74AD3DDE2289B0 /* BSG_KSCrashC.c */, - 4102C6ABE9B6D8A970C2C548F9BE4FCA /* BSG_KSCrashC.h */, - E1302BA0F105DBBB6C1DD6892800572C /* BSG_KSCrashContext.h */, - 6702D43F6FF76BC785818390BF2715CF /* BSG_KSCrashDoctor.h */, - 6EB757A79FF3B69AD6B9E4791A7020F0 /* BSG_KSCrashDoctor.m */, - 19EB35F2F254B311138218F74DE97208 /* BSG_KSCrashIdentifier.h */, - A6B6585247FA2579ED5CCC001FF52D48 /* BSG_KSCrashIdentifier.m */, - 15DF0AD1F4D72162B8B16CBE2821BB68 /* BSG_KSCrashReport.c */, - 557D849BDD58B5EDD349B0A4B70B353F /* BSG_KSCrashReport.h */, - 6986DCB9B08399021A0D79977F8DD2AD /* BSG_KSCrashReportFields.h */, - E26EAC0D5FFC97756CB264A63EE8C6AD /* BSG_KSCrashReportStore.h */, - BA402C1554FE2BDBAB76A90DFB51A5C1 /* BSG_KSCrashReportStore.m */, - E59AAFF2863D30569902D759C7E4886B /* BSG_KSCrashReportVersion.h */, - 9587AC33DF69DBB7AC794A5FFF90F085 /* BSG_KSCrashState.h */, - B79690820F853D09C764DCD73376DDA2 /* BSG_KSCrashState.m */, - 09AEF2D1F4A3A89E05BC42A67C9A9078 /* BSG_KSCrashType.c */, - 5716A6D1621B8CE34399740BD56D3A5A /* BSG_KSCrashType.h */, - E48FF155CEACF2D353DD9A1988CA19C6 /* BSG_KSSystemCapabilities.h */, - F5ADEEE062EADEFBE896922E862E906F /* BSG_KSSystemInfo.h */, - 21F2D742801090DEBF0FE24B3991700C /* BSG_KSSystemInfo.m */, - 43216B6B4C1AEA1BD2A30C66CA5DA2E9 /* BSG_KSSystemInfoC.h */, - FC1A2AC9EADFDB33FC36BABAA944D95E /* Sentry */, - 0BAEE6158DDEBCE3F2D3D828463FEDF1 /* Tools */, + 93E842ACF5DDF109E79EB438534ADF14 /* RCTDataRequestHandler.h */, + B3BFAA648A1F49C682608DAE064C7EE4 /* RCTFileRequestHandler.h */, + B0381E5639F69FFE1EC07842147C0385 /* RCTHTTPRequestHandler.h */, + FB3155D2A8179FCA4521BD598B5232AC /* RCTNetworking.h */, + FD51AAA3719AD0CF882F25611059F1A8 /* RCTNetworkPlugins.h */, + 0C3D5B22C76B93E520B9CCDF06C95291 /* RCTNetworkTask.h */, ); - name = Recording; - path = Recording; + name = RCTNetworkHeaders; sourceTree = ""; }; - 69C54614F75748C758C57626C4F9199B /* VirtualText */ = { + 6A71BE28287FCF1FA01EB92421638D83 /* Pod */ = { isa = PBXGroup; children = ( - 187879FBE986DDC8A947A11CEDC57826 /* RCTVirtualTextShadowView.h */, - 57171E8592D216A0BCACF19A6FCE78FB /* RCTVirtualTextViewManager.h */, + 209AFC471B9B4BF54D5E586DCF8E06B2 /* RNFirebase.podspec */, ); - name = VirtualText; - path = Libraries/Text/VirtualText; + name = Pod; sourceTree = ""; }; 6A912DFBEF3C3AA952685022884D3B52 /* CoreOnly */ = { @@ -13447,36 +13269,27 @@ name = CoreOnly; sourceTree = ""; }; - 6B003C27A1CC5E397BF46797E17455DB /* Pod */ = { + 6AFEEE18787650BF57FBC8D22AF11915 /* Support Files */ = { isa = PBXGroup; children = ( - E104B46A43DFAA4D5F590037BBD1B791 /* LICENSE */, - 664A19866F0F704D6D518F77B73F550F /* README.md */, - FC67C6BDDEAF5A2442364063DE94D1BB /* RNUserDefaults.podspec */, - ); - name = Pod; - sourceTree = ""; - }; - 6B0CAB366CC3BD5C6ED31F3A127D4025 /* Support Files */ = { - isa = PBXGroup; - children = ( - B99C9BB3EF243DDDCB218744CD0C9125 /* React-cxxreact.xcconfig */, - 418793307BC38610A8688BBDC0102CF2 /* React-cxxreact-dummy.m */, - 9F21288D0DC16C988FA9A185036BDFAA /* React-cxxreact-prefix.pch */, + 1127F85247DE1FD3C77B7099CEC8B530 /* UMReactNativeAdapter.xcconfig */, + 5543726EBB5319EBD0B38E1E77D6B8AB /* UMReactNativeAdapter-dummy.m */, + 8ED7357F3403C2CC31569B84570D798A /* UMReactNativeAdapter-prefix.pch */, ); name = "Support Files"; - path = "../../../../ios/Pods/Target Support Files/React-cxxreact"; + path = "../../../../ios/Pods/Target Support Files/UMReactNativeAdapter"; sourceTree = ""; }; - 6B3F1D0652DDF2F6C431EEC0F4C29AFF /* RCTWebSocket */ = { + 6B4C0A49D2D57FADD9BA4943FAB167E2 /* ReactNativeKeyboardInput */ = { isa = PBXGroup; children = ( - 81A037AD65496FFC1B100F0F22692DEC /* RCTReconnectingWebSocket.h */, - A546E06EEC18CC5AB5459E96314B48FF /* RCTReconnectingWebSocket.m */, - 365A6806983A06E40D88574D1A430189 /* RCTSRWebSocket.h */, - 1BE06198C27F8E9E487826A3D1389423 /* RCTSRWebSocket.m */, + 3163C3AEC16910DC556B1896F57308C7 /* LNInterpolation */, + 2B03C9BC8B25190AF279BD60F5CD2F72 /* Pod */, + 6DCA6108B444BED7E4CE16D9223DF114 /* RCTCustomInputController */, + 2126B9B48F979211693EBC798D165E50 /* Support Files */, ); - name = RCTWebSocket; + name = ReactNativeKeyboardInput; + path = "../../node_modules/react-native-keyboard-input"; sourceTree = ""; }; 6B6C67192AE9F11CBBD87057B8D02F8D /* Frameworks */ = { @@ -13487,10 +13300,10 @@ name = Frameworks; sourceTree = ""; }; - 6C7AB5E57803928A10DB3B26F2FD287B /* Pod */ = { + 6C1A447191B9E0FE98C8421BA39C67A9 /* Pod */ = { isa = PBXGroup; children = ( - 90F5D0DCF5243D92714915E6A47EC69A /* React-RCTLinking.podspec */, + 3C5553D6F15DDC67CAF3656C92A2CC34 /* React-jsiexecutor.podspec */, ); name = Pod; sourceTree = ""; @@ -13544,68 +13357,112 @@ path = FirebaseCore; sourceTree = ""; }; - 6DBE6BED24524D3B8AC0D2BE7659AE3B /* React-RCTText */ = { + 6DCA6108B444BED7E4CE16D9223DF114 /* RCTCustomInputController */ = { isa = PBXGroup; children = ( - E17B60C58DF1CD7EBC60C27183ECCBB2 /* RCTConvert+Text.m */, - 95DEEB975C251DC0DD518B4F697B113D /* RCTTextAttributes.m */, - AA010E07B27634C44BBA986629A540E9 /* BaseText */, - 80ED7F24B4AEEBF0D1B3CD22CF027CE7 /* Pod */, - 08DD0716338B6985C2F338612F8A4A24 /* RawText */, - 25CB0469783D4D915BD07DD663977BF4 /* Support Files */, - 59641CADCE1F13341419F7DE2A2694FC /* Text */, - 3820C957CF703D246758D4F95FEF8CF9 /* TextInput */, - 305431BE074DD17F30563ECC511D40FC /* VirtualText */, + 48A95C1610D450A725E7176E5F26A44C /* RCTCustomInputController.h */, + 65A8DB6AFE39F2A7B99B1F4F48ED63D7 /* RCTCustomInputController.m */, + 8900AAAA738BF04DCE5E1B94E2DC9332 /* RCTCustomKeyboardViewController.h */, + 4ACA0D1B0261A4F4E5C355640D74D97F /* RCTCustomKeyboardViewController.m */, ); - name = "React-RCTText"; - path = "../../node_modules/react-native/Libraries/Text"; + name = RCTCustomInputController; + path = lib/ios/RCTCustomInputController; sourceTree = ""; }; - 6F71257E6B9C99F6C8427C0987236D5A /* react-native-cameraroll */ = { + 6EFE3F167530E16EB174B95BEE1E4886 /* RNLocalize */ = { isa = PBXGroup; children = ( - 96AA26E861DA5B0E29D148F918CC770E /* RNCAssetsLibraryRequestHandler.h */, - 382504A213EAEA9F7B9E6159D87B51D8 /* RNCAssetsLibraryRequestHandler.m */, - 766D25EE8AC06E2F849B9A4EF23CD32F /* RNCCameraRollManager.h */, - F95EDB6F891DB33312838AF3CFEBCE5D /* RNCCameraRollManager.m */, - 3CAC4DC5BC7BCB3C6B5719BD364C1F06 /* Pod */, - FC6A41A889E0B1DFAC58BC9611C90F15 /* Support Files */, + 95E4686E8313303F58C784A42B8EB400 /* RNLocalize.h */, + 37EBE83DA9320659CF94AA655941DF94 /* RNLocalize.m */, + 0D036929CFD52A741556408E51CD6954 /* Pod */, + E5DA226AD6C1B20A12B8E5C3EDC8A34E /* Support Files */, ); - name = "react-native-cameraroll"; - path = "../../node_modules/@react-native-community/cameraroll"; + name = RNLocalize; + path = "../../node_modules/react-native-localize"; sourceTree = ""; }; - 70F0D36986108076B2A3C6C0049783AC /* Support Files */ = { + 6F00DD1E10ECA90CBF4E1ED64CE7B7AC /* EXWebBrowser */ = { isa = PBXGroup; children = ( - ACAF80EA5DCDD687AEC7BBCB213D0F14 /* React-RCTBlob.xcconfig */, - DFE199A94F260A920AA2102D8E7655CF /* React-RCTBlob-dummy.m */, - BD3966D75FB07B1018792CD8943F35A1 /* React-RCTBlob-prefix.pch */, + BE3A0131962D726235C4F8FB91460D68 /* EXWebBrowser.h */, + D091D700F24941E07A35B24C3426446B /* EXWebBrowser.m */, + F5E761BD1970F599ABC4A16618C7AE4D /* Pod */, + BC079A9FE2D5AA718DCC4B0DF82F5326 /* Support Files */, + ); + name = EXWebBrowser; + path = "../../node_modules/expo-web-browser/ios"; + sourceTree = ""; + }; + 70521524E0BE801C7335DDAE3BDA795E /* RNFetchBlob */ = { + isa = PBXGroup; + children = ( + D68C945A45AF0954542789114D907B4C /* RNFetchBlob.h */, + A8702A169E5E1E960019144E3EF19780 /* RNFetchBlob.m */, + ); + name = RNFetchBlob; + path = ios/RNFetchBlob; + sourceTree = ""; + }; + 710586CB38E6646505BE57FA8A8A55FF /* Support Files */ = { + isa = PBXGroup; + children = ( + 66DA963474C6AB6CFAF8439678988D99 /* React-jsinspector.xcconfig */, + 2C41DB5D4429F6735546346E78BC1842 /* React-jsinspector-dummy.m */, + 1709E356773919EDA9B878732D63D36E /* React-jsinspector-prefix.pch */, ); name = "Support Files"; - path = "../../../../ios/Pods/Target Support Files/React-RCTBlob"; + path = "../../../../ios/Pods/Target Support Files/React-jsinspector"; sourceTree = ""; }; - 7165973A2EC6C3767F453FFD0D325345 /* UMNativeModulesProxy */ = { + 71846102461F1B443C7B66B5DC39ED3D /* internal */ = { isa = PBXGroup; children = ( - 2CAC25D7FC5DF89ED2F7953785D55282 /* UMNativeModulesProxy.h */, - F162F61E596682F0B5B70E78B59DA9D3 /* UMNativeModulesProxy.m */, + CC08FF1981C31A110913C70E1FDEEDFC /* experiments.cpp */, + DBAAA55F592C3AA7B25B62A64E9C4C6C /* experiments.h */, + E205CB84D03BBD7E0E565811D3164D88 /* experiments-inl.h */, ); - name = UMNativeModulesProxy; - path = UMReactNativeAdapter/UMNativeModulesProxy; + name = internal; + path = yoga/internal; sourceTree = ""; }; - 7174316D001163E013D06DECBF94C1B1 /* react-native-background-timer */ = { + 71B99AC7BA882711B631B4B1721913FA /* Pod */ = { isa = PBXGroup; children = ( - 7C9BCECBF660D3275D3D5A4996817653 /* RNBackgroundTimer.h */, - 3826C185CC437E8F905232507D722145 /* RNBackgroundTimer.m */, - B89AE84D6449A40818C0930A0DEF4233 /* Pod */, - ED39A00065888605FC9737FD399E8FEB /* Support Files */, + 99B7B07728D30D564B273BCA823362C9 /* react-native-slider.podspec */, ); - name = "react-native-background-timer"; - path = "../../node_modules/react-native-background-timer"; + name = Pod; + sourceTree = ""; + }; + 722F61B74058D65BBD386F3CF5DA063E /* Support Files */ = { + isa = PBXGroup; + children = ( + 64854B520FC94F5B351A4D57F4BD9CFD /* KeyCommands.xcconfig */, + F9D00D29DD456C4EABBD99588E3E8E88 /* KeyCommands-dummy.m */, + AAB0076654BE0EC33522D4EC085A1B6D /* KeyCommands-prefix.pch */, + ); + name = "Support Files"; + path = "../../ios/Pods/Target Support Files/KeyCommands"; + sourceTree = ""; + }; + 72856DC58D0767728DBB45057A9CFE8D /* Nodes */ = { + isa = PBXGroup; + children = ( + 7D664B087A294B3328938907EF3E8A93 /* RCTAdditionAnimatedNode.m */, + 31A23BF4764F4A6B16A512C5E4A2B191 /* RCTAnimatedNode.m */, + B3CBD31201FDE6C5A712F634102E43BD /* RCTDiffClampAnimatedNode.m */, + CABA6F93F6472AC7B667512C26819F35 /* RCTDivisionAnimatedNode.m */, + 52AD4D8731F8C93D59E1B21EFC16995F /* RCTInterpolationAnimatedNode.m */, + 0BDC48158257177D1F6962E8131E1367 /* RCTModuloAnimatedNode.m */, + ACB988BE0BB6DC701ADBFF25CD159A79 /* RCTMultiplicationAnimatedNode.m */, + D7C680AD9FBB4FA05BB74919D14AF39D /* RCTPropsAnimatedNode.m */, + C1BA7C0A7B250DD8A9CDA8A914A6094D /* RCTStyleAnimatedNode.m */, + 7F36A4E184B87B46E2BE4C146D740885 /* RCTSubtractionAnimatedNode.m */, + 580F6E5E1D33658F91C91269E63E48B8 /* RCTTrackingAnimatedNode.m */, + 5C84CC67438080ABFCF66A533D7497CB /* RCTTransformAnimatedNode.m */, + 00F51CB288113EE1922EB726BFE070F6 /* RCTValueAnimatedNode.m */, + ); + name = Nodes; + path = Nodes; sourceTree = ""; }; 72B50A7632FE42309F2928649B30816C /* TOCropViewController */ = { @@ -13637,54 +13494,12 @@ path = TOCropViewController; sourceTree = ""; }; - 73A73EC1CCF460370FA4A5ADE48366C0 /* Support Files */ = { + 72E22EC69F58540BED4C7EF7A2E14730 /* Pod */ = { isa = PBXGroup; children = ( - 3E330A0088F6483DE33FAE71EA483B80 /* RNBootSplash.xcconfig */, - 46A45D2EF0AD50250C14EC10A064ADF9 /* RNBootSplash-dummy.m */, - 0C87E1F4965B92CF2B0D2DECD11DAE13 /* RNBootSplash-prefix.pch */, + 3B19BCD8785DE2C3C96E8378CB6ED9E6 /* RCTRequired.podspec */, ); - name = "Support Files"; - path = "../../ios/Pods/Target Support Files/RNBootSplash"; - sourceTree = ""; - }; - 74B4CC0534C7AFF613170B15DF4E6E22 /* EXKeepAwake */ = { - isa = PBXGroup; - children = ( - 74DE5ECD6B64E6F47DF433971EAD8225 /* EXKeepAwake.h */, - B9FB1155EF84D6AC90960986987D4C56 /* EXKeepAwake.m */, - A6E8C630B93C509E768D59012E983627 /* Pod */, - F54F8A9C7509943B758510D02EB572D7 /* Support Files */, - ); - name = EXKeepAwake; - path = "../../node_modules/expo-keep-awake/ios"; - sourceTree = ""; - }; - 7568F3FC5805FF88772A35996E118BCA /* RNGestureHandler */ = { - isa = PBXGroup; - children = ( - DF6C3C2A27E578BC883D91EFB730AD7F /* RNGestureHandler.h */, - CB0136873C962E55A307219684FD01DA /* RNGestureHandler.m */, - 71A81006D808932FC42B12786BECA152 /* RNGestureHandlerButton.h */, - 229D455DAF28AED347F98E3AA7A9215F /* RNGestureHandlerButton.m */, - 61641261A2D33040F051EBEF497D174F /* RNGestureHandlerDirection.h */, - 452F41A12ABBAAB84397380B42284D60 /* RNGestureHandlerEvents.h */, - AB19388EE5EB2981E1C9A9DF67E6FF9C /* RNGestureHandlerEvents.m */, - EB9D4B812F643F74A25D57EA9EB4B7C5 /* RNGestureHandlerManager.h */, - F1A053F801616ED4AD79D36175CDEF89 /* RNGestureHandlerManager.m */, - E9CB0FF20BC5770F5B661AE9BD63A55E /* RNGestureHandlerModule.h */, - 4CFDB601BC80758537EFDD2CD961C812 /* RNGestureHandlerModule.m */, - 1912C5AEC1649E0A26A6C8D886057FB6 /* RNGestureHandlerRegistry.h */, - A32DD059BD65EAF034E7A33D7CE1B88C /* RNGestureHandlerRegistry.m */, - CFA2603FABAEAAB495CB1DA0BB90CBF2 /* RNGestureHandlerState.h */, - 284D9D2232E840D4407AF909CFEC6332 /* RNRootViewGestureRecognizer.h */, - 754BADBA4BFF71A5E54EF704A1ECF345 /* RNRootViewGestureRecognizer.m */, - 75FAAA0FFB98808174F8D1081B25CFD2 /* Handlers */, - 3F43C9D190A43BB2B9AF16C6D00A899B /* Pod */, - 1F9EA41B88E4043A93C3C7FFA882F505 /* Support Files */, - ); - name = RNGestureHandler; - path = "../../node_modules/react-native-gesture-handler"; + name = Pod; sourceTree = ""; }; 7580C6647A7E005D0E732BE95D3EDAD8 /* Products */ = { @@ -13787,101 +13602,14 @@ name = Products; sourceTree = ""; }; - 75FAAA0FFB98808174F8D1081B25CFD2 /* Handlers */ = { + 790B08121E83316A3E64B5D18F810DBC /* links */ = { isa = PBXGroup; children = ( - AEA925593969061E24617E29F3435905 /* RNFlingHandler.h */, - C5079FCBD5EEF4C3D19A4559DF39DA35 /* RNFlingHandler.m */, - B2801CE3D0AA03D69A9078311329EAF6 /* RNForceTouchHandler.h */, - 664B5DC0915CFC4E8AB867A5708297D9 /* RNForceTouchHandler.m */, - 1E0E785CEC2D81D047949A009814CE8F /* RNLongPressHandler.h */, - A22087B248A717DD8210B86F366BCBA8 /* RNLongPressHandler.m */, - 94C0242D134E88E6F06939B09DB92DE1 /* RNNativeViewHandler.h */, - 792E8146D665B9BE40716A7239F38CB7 /* RNNativeViewHandler.m */, - ECE9D044A0D0A72C4ABBDE19C8C41E14 /* RNPanHandler.h */, - 92B4938E17DE6E0F57D621D9A0B535B6 /* RNPanHandler.m */, - 2E4E3D7778CEABC0932F3CD31EEC5032 /* RNPinchHandler.h */, - B345A3B464A66FC1F84CD8C067A5243E /* RNPinchHandler.m */, - 9DB214EB8B00630F1D5159C416C5A867 /* RNRotationHandler.h */, - 4771CCC3D05E5289CEBBA3375D768D88 /* RNRotationHandler.m */, - E84D0FB226B76CEC903DA2F88387ADFE /* RNTapHandler.h */, - 25F57D1BC4A85048563BB3D7FD14366B /* RNTapHandler.m */, + 8E22610E8AFEC617EB54D9239AF48133 /* RNFirebaseLinks.h */, + 63285016609FF49B863E4ED8B264A4DF /* RNFirebaseLinks.m */, ); - name = Handlers; - path = ios/Handlers; - sourceTree = ""; - }; - 76E31D768139B42A0295F13E40189339 /* React-Core */ = { - isa = PBXGroup; - children = ( - E68A45510D3D2214B0D208BC8E5F233A /* CoreModulesHeaders */, - B2390E8E4378FE6619A8D76AEBCBF8A3 /* Default */, - 4333278F1391611065DA33934F7200AE /* DevSupport */, - A95E1B05BED2D06151899E350FC7EF2E /* Pod */, - 9424DEAC091141078B8EF5449BB12DDD /* RCTAnimationHeaders */, - 47C249B9C18E719786A318853DFD9D04 /* RCTBlobHeaders */, - 1AEFF8718A96DF986DA163FF3C3FA634 /* RCTImageHeaders */, - DEE486CB55E39DFF0FBE91EFE1146050 /* RCTLinkingHeaders */, - 7BA911FDA7201871841AC88AB0EBA5E1 /* RCTNetworkHeaders */, - 46E5AD6F69D9519C386602DF76606A6A /* RCTSettingsHeaders */, - 430868DBC24D3C3594A17F82C637639F /* RCTTextHeaders */, - 379B196334DADD48ED925872400F4667 /* RCTVibrationHeaders */, - 6B3F1D0652DDF2F6C431EEC0F4C29AFF /* RCTWebSocket */, - 9EC5600BCBA1669EA17AAB433A93EBB4 /* Support Files */, - ); - name = "React-Core"; - path = "../../node_modules/react-native"; - sourceTree = ""; - }; - 77F64B007C151AB85BD97621050EA0C4 /* internal */ = { - isa = PBXGroup; - children = ( - 81AD6C487CCEAA0F5DAFF49CC9DDD9F9 /* experiments.cpp */, - CDBD8119ABE1F1E9D8EC59A46B8188D7 /* experiments.h */, - FA26F5CD6039D854B695DE1B9100EB5E /* experiments-inl.h */, - ); - name = internal; - path = yoga/internal; - sourceTree = ""; - }; - 78B6E09563CBBB52D2F5B8C7864D4301 /* react-native-notifications */ = { - isa = PBXGroup; - children = ( - 5024867E4249A0B59A14EEC601A826C8 /* RCTConvert+RNNotifications.h */, - F2C3E67B7EB1144D81752B5938C9B7DC /* RCTConvert+RNNotifications.m */, - 79815458817C4C36E6AD52E9F494CCCD /* RNBridgeModule.h */, - 70BBF9B79ED5994105858E2CF4EFF638 /* RNBridgeModule.m */, - BC0B68D6DE8ED8D2C98B906BF4672B2F /* RNCommandsHandler.h */, - 8314C783AAAD40DF3EC8B2AB3571FDCD /* RNCommandsHandler.m */, - C227F4B7992430DBAC04276C2B6014C1 /* RNEventEmitter.h */, - D442A7464ADD235A918A775E8F1FE747 /* RNEventEmitter.m */, - 648C3C9B39B77082CA8AE80E2173EBD5 /* RNNotificationCenter.h */, - 8FA7B030CA0FC5FE7424D5B176BCC195 /* RNNotificationCenter.m */, - E8B20DC75F836A5E02E9E2ECB20ABDED /* RNNotificationCenterListener.h */, - 3C705C1315A99F2E22859FD59954D434 /* RNNotificationCenterListener.m */, - 8FC9625141225307F54CA8F7D5C31D65 /* RNNotificationCenterMulticast.h */, - 3F143168A55B0B275D7ABE38E92D0A7C /* RNNotificationCenterMulticast.m */, - A53DBE7B1126235D0DFB30AD452911FA /* RNNotificationEventHandler.h */, - 429E81C70FB1627BEAB071C56E303483 /* RNNotificationEventHandler.m */, - 3978E0817217815A03BD8559CBC212A0 /* RNNotificationParser.h */, - E57A68CDEEEECB747100BA81E12450CE /* RNNotificationParser.m */, - 8E2F48AAC45A184290900EF2E16526FA /* RNNotifications.h */, - 98F4C41C33A646AB98C7D298B382D8D2 /* RNNotifications.m */, - D81CAB99456950B46A500274DF8DBFAF /* RNNotificationsStore.h */, - 22E30478C4160A8365B501CC0D700C84 /* RNNotificationsStore.m */, - 77551D21D017ED844EB6B8D74A5B0FEC /* RNNotificationUtils.h */, - 069507335A033B9D3A7F90B470BDB266 /* RNNotificationUtils.m */, - EB7AC2F1B7531D26A22F4D278FE0599D /* RNPushKit.h */, - E20B1B67C0A60279B2E2E8D87D79E25B /* RNPushKit.m */, - 0CB1410A921E227EA20B80E650DF64E8 /* RNPushKitEventHandler.h */, - 0C69A4C9BEE6C6DB95D331757A1B845D /* RNPushKitEventHandler.m */, - 2C0DFEE7AB0E2E06D08C7A0E58297A01 /* RNPushKitEventListener.h */, - 9EDE8B04F6E09D2755963245B947C89B /* RNPushKitEventListener.m */, - E1657A85F442979F755796DE6AB7768F /* Pod */, - 3B01D6BED5725FF86EB5BCC66EE9AB1E /* Support Files */, - ); - name = "react-native-notifications"; - path = "../../node_modules/react-native-notifications"; + name = links; + path = RNFirebase/links; sourceTree = ""; }; 79A8B05E3CDB5B6325BB3E6C3D8B5F36 /* CocoaAsyncSocket */ = { @@ -13897,91 +13625,43 @@ path = CocoaAsyncSocket; sourceTree = ""; }; - 79D015AEF41FDCF7169B6653196E257B /* Support Files */ = { + 7A3E9DD9DEBF5B1BE156C1BC0F4F938E /* React-RCTVibration */ = { isa = PBXGroup; children = ( - 7CB50B1B70E1F32BA1A0D0477F868DBE /* rn-fetch-blob.xcconfig */, - 70D2F1DE32D8D83ED283D13D70AE9546 /* rn-fetch-blob-dummy.m */, - E1050B17E10A8FA20BBE522DF1CDE9C5 /* rn-fetch-blob-prefix.pch */, + C89C5B2F338E234BAF2194AEA625B2D6 /* RCTVibration.mm */, + 0AF1AD54C5CF460203BD0AA933CE0D69 /* RCTVibrationPlugins.mm */, + 38DE75268ADBE8AB1C541C3AF5601B5A /* Pod */, + AEF4C07137694E6869D2AE426888B060 /* Support Files */, ); - name = "Support Files"; - path = "../../ios/Pods/Target Support Files/rn-fetch-blob"; + name = "React-RCTVibration"; + path = "../../node_modules/react-native/Libraries/Vibration"; sourceTree = ""; }; - 7A39C7AFF8E3B0C1D9204C86F6DA2588 /* RCTTypeSafety */ = { + 7B1EC213E9E1083715E718E0F3F02C0F /* platform */ = { isa = PBXGroup; children = ( - 612968A96E8A41623D518BAAAAC894B7 /* RCTConvertHelpers.h */, - 7F28FCD5E18CE510ADEDC2288AF4189C /* RCTConvertHelpers.mm */, - 0C5479F774B6CA1B2BC9515C2724511F /* RCTTypedModuleConstants.h */, - 2B9791A84E3FD01985C6E61A8FE2E3BA /* RCTTypedModuleConstants.mm */, - B07DCEC5B87D7C9350BB3CDBE94A1262 /* Pod */, - 86FDDED91A1C3E40B067BF42DD6568FA /* Support Files */, + 40F4A2E13BFDA0ECE6C33D43F8DA7AC5 /* ios */, ); - name = RCTTypeSafety; - path = "../../node_modules/react-native/Libraries/TypeSafety"; + name = platform; + path = turbomodule/core/platform; sourceTree = ""; }; - 7A69BC9E31B660FD0D04786D5722995B /* EXLocalAuthentication */ = { + 7C3B2C08E6ECA0952A422319A8C1B490 /* auth */ = { isa = PBXGroup; children = ( - 983C8D4D1F255DEB3F4CD2C3EA0D1AD8 /* EXLocalAuthentication.h */, - 1210196EDCC2368A83CE532E53CAB073 /* EXLocalAuthentication.m */, - CD9E977EE1D3C9829E74B5E00AEE7F24 /* Pod */, - 54F9C92849F083966F15EBEDD414A1C0 /* Support Files */, + 5FA1E0760FEB7158C2E0A758440A7AB4 /* RNFirebaseAuth.h */, + AE8035DF834BCD014B264E9E1E4AE128 /* RNFirebaseAuth.m */, ); - name = EXLocalAuthentication; - path = "../../node_modules/expo-local-authentication/ios"; + name = auth; + path = RNFirebase/auth; sourceTree = ""; }; - 7B7D62B3ADBDF5FD943A3683665DE51E /* EXVideoThumbnails */ = { + 7CFCDD7B47B3E0B558F5F328F9D6B02D /* Pod */ = { isa = PBXGroup; children = ( - BF71B6B50AE0EA0C42E1995CB3D90984 /* EXVideoThumbnailsModule.h */, - F3A088F5E94959F5608F4899D57DA206 /* EXVideoThumbnailsModule.m */, - DD046720E12F5A0A22EDDD4F431A7770 /* Pod */, - 412A3306FA919717E628FCD2816593DB /* Support Files */, - ); - name = EXVideoThumbnails; - path = "../../node_modules/expo-video-thumbnails/ios"; - sourceTree = ""; - }; - 7BA911FDA7201871841AC88AB0EBA5E1 /* RCTNetworkHeaders */ = { - isa = PBXGroup; - children = ( - 7C389B355B317DAF3433694C53E04F99 /* RCTDataRequestHandler.h */, - 8006576A15E920884603E8789CAB9F3C /* RCTFileRequestHandler.h */, - 2D780F29E8B27EF815A15DF6A4D809F3 /* RCTHTTPRequestHandler.h */, - 4E6A5B0627CF2430FBEEDDDF9D3C6E43 /* RCTNetworking.h */, - 87879C5F90E0BF186BD7EB7751024664 /* RCTNetworkPlugins.h */, - 2D2D1751ACFF90E1CCB30E85EEEB3C24 /* RCTNetworkTask.h */, - ); - name = RCTNetworkHeaders; - sourceTree = ""; - }; - 7BDABBB205135C97CD389299C2BADFF2 /* React-RCTAnimation */ = { - isa = PBXGroup; - children = ( - C1A63DDB109BA4203505D76411BFC8F3 /* RCTAnimationPlugins.mm */, - 8F365C38338057419C36E893C210572D /* RCTAnimationUtils.m */, - F5E0495E51B25D3727E20E65FAC40054 /* RCTNativeAnimatedModule.mm */, - C65DE3A05F1889FCBA86E8368027A1AD /* RCTNativeAnimatedNodesManager.m */, - 08D632601A45AAD452C6EEB3C8632622 /* Drivers */, - AB97F816DCD149D7B806A8261096EB7E /* Nodes */, - 8EE4F6739D321EEE724DD30836E74DEF /* Pod */, - 36AD6E626C9602E439258E341D6144C9 /* Support Files */, - ); - name = "React-RCTAnimation"; - path = "../../node_modules/react-native/Libraries/NativeAnimation"; - sourceTree = ""; - }; - 7CE66DB324C180CD6469517639A4571B /* Pod */ = { - isa = PBXGroup; - children = ( - E35AC1E2768077668B60A8ED1902042C /* api.md */, - F9490B778417DFE2B630B576B8871191 /* LICENSE */, - 45687295D331495FAC12FB8AA20733E6 /* ReactNativeART.podspec */, - 7F0A7446707EA1C6ED5A30A9CC9AEDD4 /* README.md */, + E5ACEC84F43BF0030230FD107058D770 /* LICENSE */, + ACA2C239D391E416666146CE353C7537 /* react-native-appearance.podspec */, + 117DB187AEB1789099734D5233BE55B9 /* README.md */, ); name = Pod; sourceTree = ""; @@ -14009,36 +13689,15 @@ path = "../Target Support Files/SDWebImageWebPCoder"; sourceTree = ""; }; - 7DEB487513949393BDCD443560AA995E /* messaging */ = { + 7F481BFA97C1214108D8EE3C76D2888B /* Support Files */ = { isa = PBXGroup; children = ( - 9BB894F231018CC975693BDF8F83262E /* RNFirebaseMessaging.h */, - 1754C542BA03C7EB47091AA16D3D4B49 /* RNFirebaseMessaging.m */, - ); - name = messaging; - path = RNFirebase/messaging; - sourceTree = ""; - }; - 7F2C4C41C3FC2FECB5F6E4E3750C45D1 /* Support Files */ = { - isa = PBXGroup; - children = ( - 35F091C33CF755F5204262A08B542402 /* react-native-webview.xcconfig */, - 1A00D7608C84CD3E9E40FFA4EAE992A4 /* react-native-webview-dummy.m */, - DFEA7C535EEB73060DBCDC1CBE5D3D9E /* react-native-webview-prefix.pch */, + 3AE067E84E3E01C7DE7EC097E7B3FB13 /* EXFileSystem.xcconfig */, + F604E26AC9E58450ED00F501FB34CF55 /* EXFileSystem-dummy.m */, + 481A48D7D1833FE4B030F8A30FF1AC05 /* EXFileSystem-prefix.pch */, ); name = "Support Files"; - path = "../../ios/Pods/Target Support Files/react-native-webview"; - sourceTree = ""; - }; - 7F7C8D1A9124A040EBF1D8C16262386C /* Support Files */ = { - isa = PBXGroup; - children = ( - E1B0203EEAA6794298B1232415B345A3 /* react-native-appearance.xcconfig */, - C9F5249E7488AC68C5C1BF0BC0810D36 /* react-native-appearance-dummy.m */, - 5F010C588037ABA18A5891B2D87C817B /* react-native-appearance-prefix.pch */, - ); - name = "Support Files"; - path = "../../ios/Pods/Target Support Files/react-native-appearance"; + path = "../../../ios/Pods/Target Support Files/EXFileSystem"; sourceTree = ""; }; 7FEA1BA30009FF4ED0BBB9710B2C6ABB /* Frameworks */ = { @@ -14052,14 +13711,13 @@ name = Frameworks; sourceTree = ""; }; - 800E41EE9ADD1686F7B7593D0C47F491 /* CxxUtils */ = { + 801202E84855D900161AF889D86D3FDA /* Support Files */ = { isa = PBXGroup; children = ( - 34E54A0143BAC6774E7ED46216E9562D /* RCTFollyConvert.h */, - 7A2F23E4B697DCF260B94A6A4A8E1A8A /* RCTFollyConvert.mm */, + B9433C56C4D908FF1C792232B5C78E5D /* UMFaceDetectorInterface.xcconfig */, ); - name = CxxUtils; - path = React/CxxUtils; + name = "Support Files"; + path = "../../../ios/Pods/Target Support Files/UMFaceDetectorInterface"; sourceTree = ""; }; 804DDD14BFF95CE89D0324F62E428AC7 /* Environment */ = { @@ -14079,23 +13737,31 @@ name = Environment; sourceTree = ""; }; - 808B97661809063B9FBF83711979460C /* Support Files */ = { + 8074C23C145B6228C74FD6DE8EFF477D /* CxxModule */ = { isa = PBXGroup; children = ( - E4B85E9CA9529BA3CA89A024EF880435 /* React-RCTImage.xcconfig */, - B8CA43372B9273DDF55F3E98AD3F76ED /* React-RCTImage-dummy.m */, - 1996D9C230EB0924BA74B49833FEC80B /* React-RCTImage-prefix.pch */, + C3ADB50DAA4E351BC5620570DD152692 /* DispatchMessageQueueThread.h */, + 6DF1C826BE5F262719D3FD06E82CBC45 /* RCTCxxMethod.h */, + 67A2DD1D2920C3953254B39BCF61227E /* RCTCxxMethod.mm */, + A59B2F8DFD8B8E4BEB6A90FDB730E539 /* RCTCxxModule.h */, + E7749513D67CBE0A923D65AFFAC259E3 /* RCTCxxModule.mm */, + DEB7A7FB5005C873436DB2B27F174EB1 /* RCTCxxUtils.h */, + 329D53AA3B2CB48810229043407F62BB /* RCTCxxUtils.mm */, + FC29D92F99AB6BCBFBF94C7B4DB85DA6 /* RCTNativeModule.h */, + 99471A1A0B8A1DC5E335BB60103415FA /* RCTNativeModule.mm */, ); - name = "Support Files"; - path = "../../../../ios/Pods/Target Support Files/React-RCTImage"; + name = CxxModule; + path = React/CxxModule; sourceTree = ""; }; - 80ED7F24B4AEEBF0D1B3CD22CF027CE7 /* Pod */ = { + 80961DE24CA449393F891B9042C948C4 /* React */ = { isa = PBXGroup; children = ( - 9D21E7EF7232E7B2F07E97553A3BA5CE /* React-RCTText.podspec */, + C9A548BCE601A64A9BCAFCB3CE3AEF49 /* Pod */, + 69772EA06054D5766BB7683385577427 /* Support Files */, ); - name = Pod; + name = React; + path = "../../node_modules/react-native"; sourceTree = ""; }; 8103BDE362746AD07C007034A687D3B3 /* Frameworks */ = { @@ -14117,20 +13783,6 @@ path = "../Target Support Files/nanopb"; sourceTree = ""; }; - 8146BA21018A7B2664F3089B667CFA71 /* React-RCTBlob */ = { - isa = PBXGroup; - children = ( - 623682EDC77E46A028080B8E884FBEAA /* RCTBlobCollector.mm */, - 24B6F7ED44E5EE98C4B53B63797D9E0D /* RCTBlobManager.mm */, - F6093427BE39449CF4B7B503DE60F1CA /* RCTBlobPlugins.mm */, - EA00899B601D90EE6586A95E2062D486 /* RCTFileReaderModule.mm */, - 1E48829C241F58F37038166B20133A2D /* Pod */, - 70F0D36986108076B2A3C6C0049783AC /* Support Files */, - ); - name = "React-RCTBlob"; - path = "../../node_modules/react-native/Libraries/Blob"; - sourceTree = ""; - }; 814C63AC772830844D0748FD66F8F6B6 /* Support Files */ = { isa = PBXGroup; children = ( @@ -14140,78 +13792,115 @@ path = "../Target Support Files/JitsiMeetSDK"; sourceTree = ""; }; - 82BB307478C72B3DF801D43367453AA5 /* UMTaskManagerInterface */ = { + 81D9D9E45C72B950F819E3CF1D2D4AB2 /* React-cxxreact */ = { isa = PBXGroup; children = ( - 11893D7D91D9CBDF71B033F695F52827 /* UMTaskConsumerInterface.h */, - 7B0B8D92CD92DD9D473C5D6444E69D53 /* UMTaskInterface.h */, - FDA2307EF278D12863DA802831D9EA81 /* UMTaskLaunchReason.h */, - 9BBC53C72E4690F1F9660AA072BFBCD0 /* UMTaskManagerInterface.h */, - 020B4A74E08D3438BA845901F7EAE0C1 /* UMTaskServiceInterface.h */, - F715E9434EC6EF1E33CA6D85BD7F95C6 /* Pod */, - E6F7914799F07EF468AF568F9B8008DF /* Support Files */, + 44C204F08D7FDCB716039E9B06AD5BFE /* CxxModule.h */, + D659810DBF3098763A0330404C481861 /* CxxNativeModule.cpp */, + B9EFE79B1E1A98E02D5E2E0A8D011ED1 /* CxxNativeModule.h */, + EC41547B1A1B9C2CC524D664316F30F3 /* Instance.cpp */, + 7592BEE88F55B1933E91D62CDCC4197E /* Instance.h */, + FD577C2F7F91F5B261EED150577BB210 /* JsArgumentHelpers.h */, + CA77C74F4D176630CC28F40A8A678945 /* JsArgumentHelpers-inl.h */, + C79180B09CA5051DF178E70BA3FAD457 /* JSBigString.cpp */, + 5A81CF38AF46EBBC47CC47C7C86B9B6C /* JSBigString.h */, + 475E65892171D3E2755B509923A9E710 /* JSBundleType.cpp */, + 61E428D9FD42017082055B0D52355133 /* JSBundleType.h */, + 61555E5E0F798D1371B9A807803E31E1 /* JSDeltaBundleClient.cpp */, + 380F21485E96746C91776F76BBBB30AE /* JSDeltaBundleClient.h */, + 62B3DC410786505577F4FF8CBE63EF60 /* JSExecutor.cpp */, + 1A6C82A164E50B21DB858AE0EC8D013D /* JSExecutor.h */, + A293382EF6E465BCA37E9E3F8E6834A0 /* JSIndexedRAMBundle.cpp */, + F0822D860C7C5F32767F89D0E73CC9A4 /* JSIndexedRAMBundle.h */, + 3CE01FEB50DC096AF2DFB8E73361EB85 /* JSModulesUnbundle.h */, + A6D148BA049F78A1798D79165B0A7455 /* MessageQueueThread.h */, + 69EEC8D0BE82BAE2C416C772018A2ACF /* MethodCall.cpp */, + F879F8013DC94DDB6A651CD089574CE5 /* MethodCall.h */, + F55F340203A7C818FDDE9F3705310908 /* ModuleRegistry.cpp */, + 56A4B28EAA5307C31E1B8BD60DD44CFC /* ModuleRegistry.h */, + BEDA20293B86A27BA5072659F10607FF /* NativeModule.h */, + 92618CDA795D5074D33BCF6116E24E46 /* NativeToJsBridge.cpp */, + 6CFCA17DB7AE639E1C1FF0528A2D9C85 /* NativeToJsBridge.h */, + 7CE91569D663F35D8BBBE0EACE3C4B77 /* RAMBundleRegistry.cpp */, + 06C409AFE8FEA001361BA0AA4211B64D /* RAMBundleRegistry.h */, + 6ABA5EAB78B6D361C3EFD3C8975D10F4 /* ReactMarker.cpp */, + A11BA247591C5A318445351BD305EA7B /* ReactMarker.h */, + 7686CE6070F2C405E2CFCFA2E6755B98 /* RecoverableError.h */, + ADD2590F64B2A7DA2E9048BD9E1F4C15 /* SharedProxyCxxModule.h */, + 51681A4FBE814BE04C9821B1BE05FF53 /* SystraceSection.h */, + DF6CA39C6A240EE867D068984EA01794 /* Pod */, + 4108CB4ED2856ADD86460507D08898CD /* Support Files */, ); - name = UMTaskManagerInterface; - path = "../../node_modules/unimodules-task-manager-interface/ios"; + name = "React-cxxreact"; + path = "../../node_modules/react-native/ReactCommon/cxxreact"; sourceTree = ""; }; - 82F42776458D7A3AE266E944CA191615 /* Support Files */ = { + 82DC077B1D2904424821BB211986FE4A /* Multiline */ = { isa = PBXGroup; children = ( - B349A54F4D2FD519D2D0B5F20BE0EC7E /* RNCMaskedView.xcconfig */, - B83F19BE55D1F77902A11954FA99A98B /* RNCMaskedView-dummy.m */, - B68538A195431A933EA46D81A51FBC48 /* RNCMaskedView-prefix.pch */, + 609FB1F9A3F3610061E577D5F90A57BA /* RCTMultilineTextInputView.h */, + D217CFE89B9E5B40B749EA8A663694A2 /* RCTMultilineTextInputViewManager.h */, + 156869A8B62C20E749C3CE92925A920D /* RCTUITextView.h */, ); - name = "Support Files"; - path = "../../../ios/Pods/Target Support Files/RNCMaskedView"; + name = Multiline; + path = Multiline; sourceTree = ""; }; - 8304FCCCE6BCBB13152C7B49243442D1 /* links */ = { + 8444A2FB4011FCDF080AF7F2B7BDA414 /* callinvoker */ = { isa = PBXGroup; children = ( - 072440311BE630265E8A9BA9FE4B579C /* RNFirebaseLinks.h */, - BB759F07AA4F96184B483DA4D5D1044A /* RNFirebaseLinks.m */, + 9AB3163B0A3BE8F8D7E6A06A6F9E1FD8 /* BridgeJSCallInvoker.cpp */, + 5779018A1CDB41D9CABB2FCFAC1227DD /* BridgeJSCallInvoker.h */, + 97698FCE3D288E738184B1B75A32D7A2 /* CallInvoker.h */, + F20EFDBA87EE56FC92707CA2A45C76C5 /* MessageQueueThreadCallInvoker.cpp */, + D27E76B79A0C3F8EAEFA9DCDDBCEC5B1 /* MessageQueueThreadCallInvoker.h */, ); - name = links; - path = RNFirebase/links; + name = callinvoker; sourceTree = ""; }; - 834362F1E8D1719B6D969EE019EFAFEE /* Pod */ = { + 8473F186A20A882B7160D2EAE603ECA6 /* Tools */ = { isa = PBXGroup; children = ( - CAAFE38A769152050B34DD379E1655FC /* LICENSE */, - BD70DEA8AEFD95E482D660919D2119E1 /* react-native-webview.podspec */, - AAD40C0280E8F25C4C55F966D4D1DC33 /* README.md */, + B0402D91F9F427FCE7015844415B7E01 /* BSG_KSArchSpecific.h */, + 0E9656B6E38543AFA92FD375694AA063 /* BSG_KSBacktrace.c */, + 3B5F8EF60EF2A23C717DF05557342770 /* BSG_KSBacktrace.h */, + 4E6AD46A5FCC5FED2D096C94C7DE5DA0 /* BSG_KSBacktrace_Private.h */, + F6188B67F727BC8D9803627142F8EFEC /* BSG_KSCrashCallCompletion.h */, + CFE14123E8388B7836BBD9604DD84E98 /* BSG_KSCrashCallCompletion.m */, + AE1D4F9079B9928925B40030D28090BD /* BSG_KSDynamicLinker.c */, + D9572DF8232D8A2EAC02EC1EF655A843 /* BSG_KSDynamicLinker.h */, + 800C3A1045AE80D098764718B680BD2D /* BSG_KSFileUtils.c */, + 90EC14969D8667885B5B03C0EFC3214E /* BSG_KSFileUtils.h */, + BB0E3C8AA55095D15427D08BF810B6FB /* BSG_KSJSONCodec.c */, + 839841D83C0E15B51C7266678BF09983 /* BSG_KSJSONCodec.h */, + 67D3491ABDB10FBA04D260AC4457D3A9 /* BSG_KSJSONCodecObjC.h */, + 8AAD211E267197C6B8D8D8EE6F9F479D /* BSG_KSJSONCodecObjC.m */, + 428E22FE6E3F4BDB53C8B9ACA6B13938 /* BSG_KSLogger.h */, + 28304FBADAA1DE586D58C92C0673E75A /* BSG_KSLogger.m */, + 7FE0AA1E207FD887A7D730C551A2DF1A /* BSG_KSMach.c */, + 473155BF324F475906811E6C81045BB4 /* BSG_KSMach.h */, + 9E6A9DCA4ED720A2E4EC9B6E9AB6A01F /* BSG_KSMach_Arm.c */, + 19E7A2A4E41D61738906A56A8E94902C /* BSG_KSMach_Arm64.c */, + 5FDF0B99E17104D8D42E24B93857C087 /* BSG_KSMach_x86_32.c */, + A189C3FAFD9021E81A1E83518C64C92F /* BSG_KSMach_x86_64.c */, + A99B9A2FD8E990A6D6B0B89A0615D68D /* BSG_KSMachApple.h */, + ACA9379001E5C2076EFC437494FBF2BE /* BSG_KSObjC.c */, + 10AFB724F1BD20A55EBE95DD3FA755C0 /* BSG_KSObjC.h */, + 318B64AE25ED8CA579ED1FD92C0473CC /* BSG_KSObjCApple.h */, + 3128089847F295173218573240CA62E0 /* BSG_KSSignalInfo.c */, + BAB9FA6346E6E9AF7F7387AB38D68016 /* BSG_KSSignalInfo.h */, + 2D6EF7CE3655E35BBB5D43A557C623D4 /* BSG_KSSingleton.h */, + E25C0B6FEA3B8807E9F7FB31203D1737 /* BSG_KSString.c */, + FADCB19DDD8851D0D167270D30A74E2B /* BSG_KSString.h */, + 22ED5EC342654ED25ABF836C2666043D /* BSG_KSSysCtl.c */, + 75B0968693C493BAEFE99F0982B10496 /* BSG_KSSysCtl.h */, + A377BD2FEC39CD97268F5497BF735EF3 /* BSG_RFC3339DateTool.h */, + F86B4084BDBE006107E646C6452C8D26 /* BSG_RFC3339DateTool.m */, + 2FE8B577D2DEB6FA142EB03FF7D631E6 /* NSError+BSG_SimpleConstructor.h */, + 91E25DA8C3E7D938E9CDA6A5684CBEDA /* NSError+BSG_SimpleConstructor.m */, ); - name = Pod; - sourceTree = ""; - }; - 83B8ECDC47881A70923CD35CA2E2DCA0 /* crashlytics */ = { - isa = PBXGroup; - children = ( - 42B0FA4D0C81A84BABD6BF79E80D54FD /* RNFirebaseCrashlytics.h */, - 259A7A98CD2D59BD5742C7E41787EBD7 /* RNFirebaseCrashlytics.m */, - ); - name = crashlytics; - path = crashlytics; - sourceTree = ""; - }; - 843AB984121E158AFAE94E519F12AFF6 /* Brushes */ = { - isa = PBXGroup; - children = ( - 57DC9EA4D5833A0806D27ADB335ED964 /* ARTBrush.h */, - BB2D3C3460F8F63518DD4E289F7D0265 /* ARTBrush.m */, - 327656D2867C9A9125E6AD17423A15D1 /* ARTLinearGradient.h */, - CE77A43CB054B9B1F4219449FA68BD3D /* ARTLinearGradient.m */, - CC9296090CAECF07215252DE287A9C3A /* ARTPattern.h */, - 5AE8FFCD5A5113CC66524CC9F466CEB7 /* ARTPattern.m */, - A724BD0C25F5146F814C94E6A142AE77 /* ARTRadialGradient.h */, - 40DA589797B65249F51467C00467339A /* ARTRadialGradient.m */, - 86E393A367FE82ABC7B17ECBE2B0B1E2 /* ARTSolidColor.h */, - 7B070620454ABD843CBAC84F6D6C3662 /* ARTSolidColor.m */, - ); - name = Brushes; - path = ios/Brushes; + name = Tools; + path = Tools; sourceTree = ""; }; 847A91BC53838E022F037E31415CB62F /* Support Files */ = { @@ -14225,6 +13914,19 @@ path = "../Target Support Files/CocoaAsyncSocket"; sourceTree = ""; }; + 84E6EDF7FC8BCB884229CE20354D68AD /* RefreshControl */ = { + isa = PBXGroup; + children = ( + 1E9E1AF5720FF021B30236E13D6388F7 /* RCTRefreshableProtocol.h */, + 59D327E1F6566D942A5F35032664D5A9 /* RCTRefreshControl.h */, + 7B7D4D659420B9891D3A0EC8BAB650C4 /* RCTRefreshControl.m */, + 136E655496E176517522A7487C4759A4 /* RCTRefreshControlManager.h */, + D6C8C121D48F259FEB693D05B24AF852 /* RCTRefreshControlManager.m */, + ); + name = RefreshControl; + path = RefreshControl; + sourceTree = ""; + }; 85036FAFEB60A7A7F38257AB58E1EC8B /* Targets Support Files */ = { isa = PBXGroup; children = ( @@ -14234,6 +13936,19 @@ name = "Targets Support Files"; sourceTree = ""; }; + 85274F7E164D8786AA0DE615B68991CF /* Support Files */ = { + isa = PBXGroup; + children = ( + 87C319A89D3207460B09DC7A0E301483 /* Yoga.modulemap */, + 1CE30CC6099EAD1AC1D7DC029C409682 /* Yoga.xcconfig */, + 6F606FB1A4ADEE677F2D6EA1C1167C40 /* Yoga-dummy.m */, + C591EA68A34B862CC77AEDE75BAEC8B7 /* Yoga-prefix.pch */, + 52EC118013247B38026F6CDEFEE08F41 /* Yoga-umbrella.h */, + ); + name = "Support Files"; + path = "../../../../ios/Pods/Target Support Files/Yoga"; + sourceTree = ""; + }; 858A79202A0D2FCE774F4E0C21E99B8F /* webp */ = { isa = PBXGroup; children = ( @@ -14389,131 +14104,167 @@ name = webp; sourceTree = ""; }; - 858CE34E11A8A610E14A8E58A1FDD044 /* RCTRequired */ = { + 859A1E4626172DDA43B9071111D39D95 /* UMSensorsInterface */ = { isa = PBXGroup; children = ( - FC13892E86EE8C031817B89F4C794345 /* RCTRequired.h */, - 197CCF54254EB41F35CB9E7ED5C936CF /* Pod */, - C5CC8AC01C3B8A00A916BE9550337C77 /* Support Files */, + 080B4680A156478BF9518255124A7C76 /* UMAccelerometerInterface.h */, + B710E03AECC12673987B92238BF53474 /* UMBarometerInterface.h */, + 40EFB3E96DA9E898B95532B00CD74371 /* UMDeviceMotionInterface.h */, + 69791ED58D01EC75AF5ACE94AE02C55F /* UMGyroscopeInterface.h */, + 8A3310C9835AFFAD1BD5021C9B809BCE /* UMMagnetometerInterface.h */, + 8D51E2CC4AB65F076E7492FA272C393B /* UMMagnetometerUncalibratedInterface.h */, + 3A6EFB1B601AAF883B4B4944CD48A36C /* Pod */, + 583C21624FEA4DB2FFFEB97DD3F43C05 /* Support Files */, ); - name = RCTRequired; - path = "../../node_modules/react-native/Libraries/RCTRequired"; + name = UMSensorsInterface; + path = "../../node_modules/unimodules-sensors-interface/ios"; sourceTree = ""; }; - 85F8D5372BED8FB4C056F83AA254D36F /* RemoteNotification */ = { + 8720288BC872BC2EBF3CD91E210D403D /* Protocols */ = { isa = PBXGroup; children = ( - 7C6406852A37DF0AEA527CEAEB1001E0 /* EXRemoteNotificationPermissionRequester.h */, - 0C17DAEB767685E151CBEEE677106E5A /* EXRemoteNotificationPermissionRequester.m */, + 2770335EEDFE5580A891C85517D01FBC /* UMAppLifecycleListener.h */, + EAB9724D2F065EDDDD75CD95F953E1F6 /* UMAppLifecycleService.h */, + 486877CB108264C0CFC7D7AFDB47BF05 /* UMEventEmitter.h */, + 94F1DACBB879A0258514B8FB23EB1181 /* UMEventEmitterService.h */, + 5CE8764C07B564BCC6BBF4259ABD13DD /* UMInternalModule.h */, + 4435D53A1F514AE77A346D607F70F3A3 /* UMJavaScriptContextProvider.h */, + 5E4D0ED6D8181AABC21FB1D6BDF44CBA /* UMKernelService.h */, + 337768C93212495645F0A6F77B206DD3 /* UMLogHandler.h */, + 60DF8A0824672D3D82D31FFA66C40175 /* UMModuleRegistryConsumer.h */, + 3E3C8E2BC87AC6B588DBF61937F26263 /* UMUIManager.h */, + 90A2374AB985D9E724E7505FAF895F2F /* UMUtilitiesInterface.h */, ); - name = RemoteNotification; - path = RemoteNotification; + name = Protocols; + path = UMCore/Protocols; sourceTree = ""; }; - 86E655BA6DB99509E8240D44FF7EF897 /* Pod */ = { + 87A5D2BC48FF85E81C04229BB13310D3 /* Support Files */ = { isa = PBXGroup; children = ( - 9629E23ED9D547986D588B68E344F095 /* README.md */, - 9F7A0FE0D72F2FD6789A27F3F0257FB5 /* RNCMaskedView.podspec */, - ); - name = Pod; - sourceTree = ""; - }; - 86FDDED91A1C3E40B067BF42DD6568FA /* Support Files */ = { - isa = PBXGroup; - children = ( - 36C3AB77231D2DA03640B39959D39D09 /* RCTTypeSafety.xcconfig */, - 30E068B0B144FCD0EAD039ECE9DB57A8 /* RCTTypeSafety-dummy.m */, - 5B6D80A8766FB5EE8F0249FBC6411379 /* RCTTypeSafety-prefix.pch */, + 2CF4A4990F18F91BDA1F18FCACB939BA /* RNFastImage.xcconfig */, + 93CE9A1E0DD380608A483F45CDFD4880 /* RNFastImage-dummy.m */, + EB323642F514CE2453011B890D1D6691 /* RNFastImage-prefix.pch */, ); name = "Support Files"; - path = "../../../../ios/Pods/Target Support Files/RCTTypeSafety"; + path = "../../../ios/Pods/Target Support Files/RNFastImage"; sourceTree = ""; }; - 8730E74AC6EE504B097AE7CB023D437B /* RNBootSplash */ = { + 88221E6CEF57902293F3CB0B3EE2C468 /* UMFileSystemInterface */ = { isa = PBXGroup; children = ( - 9BBA45778A6D490CC1EDD321DF57F656 /* RNBootSplash.h */, - 4B167CBAC7DC720B989DFA450011E400 /* RNBootSplash.m */, - 8C9932923AE74564F5F6161B45952232 /* Pod */, - 73A73EC1CCF460370FA4A5ADE48366C0 /* Support Files */, + 91A0A85C0997237E5898C36FC0E95ADA /* UMFilePermissionModuleInterface.h */, + 32AD5D4175F53D91B15D567ECECAB5E8 /* UMFileSystemInterface.h */, + 3CE9C64CA191894447313EF155F7BCE7 /* Pod */, + F76A231E1ED7D87BD5D5917E364CB179 /* Support Files */, ); - name = RNBootSplash; - path = "../../node_modules/react-native-bootsplash"; + name = UMFileSystemInterface; + path = "../../node_modules/unimodules-file-system-interface/ios"; sourceTree = ""; }; - 87429C6BA0139D97302A68158C3AED74 /* Support Files */ = { + 8930E12C0E5052BEA072FF0FFD8514AB /* Resources */ = { isa = PBXGroup; children = ( - 00E976495F86A5FC584B964CB92ADF63 /* React.xcconfig */, + 5E06CE2ACD9844827B676BB53E645921 /* de.lproj */, + 675C095EBCEA9AD4F768FCF263B6F1B5 /* en.lproj */, + 6166E13FD35F32C6E8BD2FA170A2C4AF /* es.lproj */, + 40FF4A345C09A510EEA9726C9D40C4AC /* fr.lproj */, + 6D344A054FDE1477792585264715B486 /* ja.lproj */, + 3EBDE28092167B49EB3B497865336224 /* pl.lproj */, + ADB7F55FC2FADC25301D81F6E03C8939 /* QBImagePicker.storyboard */, + F703EAFE90AEF7E802BEF5394112484B /* zh-Hans.lproj */, + ); + name = Resources; + sourceTree = ""; + }; + 89316C11AAE21E40C935F68A64E14EC9 /* RNCMaskedView */ = { + isa = PBXGroup; + children = ( + EDAAE69411DA40D901BB43E7F756448F /* RNCMaskedView.h */, + B89C723751374F11718F5A5D5EFCC394 /* RNCMaskedView.m */, + 7CB4910ABF9A6D272D4608D270D47E4E /* RNCMaskedViewManager.h */, + B7B5A9901324BCA9C32318C069FE9783 /* RNCMaskedViewManager.m */, + 08888980DE870DF5D26BF4384271B095 /* Pod */, + 27B08A9FD0C116B5DF94C4EA59718BB3 /* Support Files */, + ); + name = RNCMaskedView; + path = "../../node_modules/@react-native-community/masked-view"; + sourceTree = ""; + }; + 8932D3F7DA9C3C5C9E367F8BDED955F5 /* Interfaces */ = { + isa = PBXGroup; + children = ( + B082C061FCEA6C7EC9DA72241ED14B74 /* UMAppLoaderInterface.h */, + 2B8F0562C13ADD5D42DC1FD10F122F37 /* UMAppRecordInterface.h */, + ); + name = Interfaces; + path = UMAppLoader/Interfaces; + sourceTree = ""; + }; + 897BC75FEB4616073285EBC56E25F29C /* Support Files */ = { + isa = PBXGroup; + children = ( + 0D624D60ED21A60D148726AD24981930 /* EXKeepAwake.xcconfig */, + A7521A5B7DF154770C60A3652B33D089 /* EXKeepAwake-dummy.m */, + 99445921A615425F61CE8A2E2A1F65EE /* EXKeepAwake-prefix.pch */, ); name = "Support Files"; - path = "../../ios/Pods/Target Support Files/React"; + path = "../../../ios/Pods/Target Support Files/EXKeepAwake"; sourceTree = ""; }; - 87893C2F0862C48AF9A3B0634CFEF11B /* Support Files */ = { + 8984D4BEBFA9FCBE4772D4B040944AC3 /* Support Files */ = { isa = PBXGroup; children = ( - F04F96BD284F3D632696C76096959613 /* BugsnagReactNative.xcconfig */, - 5A21B730283D7A49ECA943EC16683056 /* BugsnagReactNative-dummy.m */, - 8C15AF75882E5BE815D73705B6F34817 /* BugsnagReactNative-prefix.pch */, + 70AC8C777BB97FFA5673DF29335EE763 /* EXLocalAuthentication.xcconfig */, + A03A8F6DD32DB385864D9A186CDA2E4F /* EXLocalAuthentication-dummy.m */, + 24FD9402A309DB035AF586983A13E6F3 /* EXLocalAuthentication-prefix.pch */, ); name = "Support Files"; - path = "../../ios/Pods/Target Support Files/BugsnagReactNative"; + path = "../../../ios/Pods/Target Support Files/EXLocalAuthentication"; sourceTree = ""; }; - 886DEAD4CD6EF8212FA4449DDF2D7D64 /* notifications */ = { + 89A517AA8A486003D3073C9F07B627D3 /* Pod */ = { isa = PBXGroup; children = ( - C4056A95B9082E2CB7A6161D92837DDB /* RNFirebaseNotifications.h */, - 64E354D0B781F4A56820F61138A82ACF /* RNFirebaseNotifications.m */, - ); - name = notifications; - path = RNFirebase/notifications; - sourceTree = ""; - }; - 88941AEF6D71470BAA096A9A89414C8D /* Pod */ = { - isa = PBXGroup; - children = ( - 5C90F222FC5C01B89F9E67EB26D92DE6 /* EXHaptics.podspec */, + 0B431477ACB5A85264BFD888CE0845BB /* LICENSE */, + 2148797ECE55FE444A64B2DC92E6B71D /* README.md */, + 191D953F452F4470BA07837CE5D05115 /* RNCAsyncStorage.podspec */, ); name = Pod; sourceTree = ""; }; - 88BDC54124484DC24791C6DFCEDBBF43 /* Pod */ = { + 89ADC059859AB023CF3B3287AD10BC42 /* instanceid */ = { isa = PBXGroup; children = ( - A78DE93255125EB0D55025FCE381012D /* UMFileSystemInterface.podspec */, + 190A889778918EFAD08E3046A4E784F1 /* RNFirebaseInstanceId.h */, + 4A2AA9ED3472A469364C9039E4696788 /* RNFirebaseInstanceId.m */, ); - name = Pod; + name = instanceid; + path = RNFirebase/instanceid; sourceTree = ""; }; - 8A14AEF962D8A98A959A8A28FFD80099 /* EXHaptics */ = { + 8A9DDD9CA35F122A1C580487211307FF /* react-native-webview */ = { isa = PBXGroup; children = ( - 5AEC85FB0ECEB95C270BBC108B611442 /* EXHapticsModule.h */, - 310CCBD58CAC10932222DD449C29A85E /* EXHapticsModule.m */, - 88941AEF6D71470BAA096A9A89414C8D /* Pod */, - 3DD32296F6DE280701C4477F3F72126C /* Support Files */, + 741197283CA157345932A937948D1B9A /* RNCWebView.h */, + 8AFD68E5597A93926FC1142E4AD5893D /* RNCWebView.m */, + 2DD091879376E20B8F2125188DF93C9F /* RNCWebViewManager.h */, + 9CD2CBBBCA92EADE3D2CF06DB0726F81 /* RNCWebViewManager.m */, + A4D92F4E5AD43C000D17EC9F087594EE /* RNCWKProcessPoolManager.h */, + C367AE07D1F067F9C856D65ECF9B89FC /* RNCWKProcessPoolManager.m */, + D42A73C1C5E114ACB959E151D847942B /* Pod */, + BA3B9AD530BD182760D6A2A5DE84810E /* Support Files */, ); - name = EXHaptics; - path = "../../node_modules/expo-haptics/ios"; + name = "react-native-webview"; + path = "../../node_modules/react-native-webview"; sourceTree = ""; }; - 8C25CAF0585B48705E634DD3620AA65B /* Pod */ = { + 8CF24F769C4432B016BDCE8624F9DD06 /* Pod */ = { isa = PBXGroup; children = ( - BAA3C129648E585E934FD903D1C96652 /* EXPermissions.podspec */, - ); - name = Pod; - sourceTree = ""; - }; - 8C9932923AE74564F5F6161B45952232 /* Pod */ = { - isa = PBXGroup; - children = ( - F74F51402CA616F76A43BEE74FFBA664 /* LICENSE */, - A8496B7000568ED2B46217716ECFC5D8 /* README.md */, - 6B1F61D96101BF69D9C0A5E74A1BE48B /* RNBootSplash.podspec */, + C2DD37C37E98ACC3EC112B31D8784CC3 /* LICENSE */, + 953AD6125142197C28D955AC4BB05E01 /* README.md */, + 5D44CB68D2C1F519B6A1C0718671A946 /* rn-fetch-blob.podspec */, ); name = Pod; sourceTree = ""; @@ -14559,33 +14310,6 @@ path = CocoaLibEvent; sourceTree = ""; }; - 8D31F7E502F792082BBBF53BD639EAD5 /* Support Files */ = { - isa = PBXGroup; - children = ( - C23CD0A21EBD2999A882F84B9F233AD5 /* RNCAsyncStorage.xcconfig */, - 67919E9EA3B4D9F98265CA9D9D1E588E /* RNCAsyncStorage-dummy.m */, - 51DECBC4E486E8A8C1C355E6C19A8843 /* RNCAsyncStorage-prefix.pch */, - ); - name = "Support Files"; - path = "../../../ios/Pods/Target Support Files/RNCAsyncStorage"; - sourceTree = ""; - }; - 8EE4F6739D321EEE724DD30836E74DEF /* Pod */ = { - isa = PBXGroup; - children = ( - D9D902ABD851156DF10A01DEC00F0123 /* React-RCTAnimation.podspec */, - ); - name = Pod; - sourceTree = ""; - }; - 8F297E5EB29BF8AFD4F647BDF4BA0188 /* Pod */ = { - isa = PBXGroup; - children = ( - 68E5C1887F6952E167CC07F80FD866E3 /* React-jsinspector.podspec */, - ); - name = Pod; - sourceTree = ""; - }; 8F3F9A745BA6313500B68AB69A642318 /* FlipperKitLayoutTextSearchable */ = { isa = PBXGroup; children = ( @@ -14594,13 +14318,32 @@ name = FlipperKitLayoutTextSearchable; sourceTree = ""; }; - 8FC7093F051AAD0C014CD72B31406F47 /* vendor */ = { + 8F802BB06AF0C14817270D99A4FE761C /* TextInput */ = { isa = PBXGroup; children = ( - 97A90BAF5C036F8FF315C05BC64D3D76 /* bugsnag-cocoa */, + 05DB8FC8A4E23D049196E1228AAC5402 /* RCTBackedTextInputDelegateAdapter.m */, + 8553F718EA3BAA0C1A26F85C456334A5 /* RCTBaseTextInputShadowView.m */, + 8EA6D7A458D18ED3D28C44B821858E70 /* RCTBaseTextInputView.m */, + 5200F04647BE068B2CF832CA1AD0F0CC /* RCTBaseTextInputViewManager.m */, + 7F59DCCDC1C23753DE418FEAE620D632 /* RCTInputAccessoryShadowView.m */, + 096554FD575819BD9B6AA44AA32074DE /* RCTInputAccessoryView.m */, + B7F4FC59F25581AC94EE0BCAF8F06E64 /* RCTInputAccessoryViewContent.m */, + 737C63A707933054830C90D0CCDE6973 /* RCTInputAccessoryViewManager.m */, + AF40E8187338935662AB479227DD9BA0 /* RCTTextSelection.m */, + 450D31DFC62AE45CB659920BD8999907 /* Multiline */, + 0723016064C5C27AF3F442F3FB2DB09C /* Singleline */, ); - name = vendor; - path = cocoa/vendor; + name = TextInput; + path = TextInput; + sourceTree = ""; + }; + 8FE2FBB869E5EB8EF7B3F7AA65837D2E /* RCTVibrationHeaders */ = { + isa = PBXGroup; + children = ( + B86ECB3152FE8BC4D9C224274DC407B8 /* RCTVibration.h */, + 2568CCEE6BB01871189B53944A0492DF /* RCTVibrationPlugins.h */, + ); + name = RCTVibrationHeaders; sourceTree = ""; }; 8FED26F502E2920C9AA2FBDDB1ADE0FE /* GoogleUtilities */ = { @@ -14620,16 +14363,79 @@ path = GoogleUtilities; sourceTree = ""; }; - 9262A2316A90CB9BDC512EE169A6AB4F /* React-RCTVibration */ = { + 902F599A39344B1DF1178D618B54D132 /* React-Core */ = { isa = PBXGroup; children = ( - 47CEEEC269B05BDC532D4EA71D6E2901 /* RCTVibration.mm */, - 4BF56BE3E96D4B9ADB90A98D1091192B /* RCTVibrationPlugins.mm */, - F0D24934AB932CFE3017CF97EC12DCD7 /* Pod */, - E72A2C8168FA7019CBF069BDE9C23983 /* Support Files */, + 173BAED57B778686B4A1AA8157B82D7E /* CoreModulesHeaders */, + D956C406ADD430A42EC5B561C66108D7 /* Default */, + 5705713DE9071865B9BD21FA779AA585 /* DevSupport */, + 1AB707A5CF142C3E968A4062583361C8 /* Pod */, + CC122B26EEEB91B3E431BBC031BD6E3B /* RCTAnimationHeaders */, + A585A01B339EC458D655A9ACB61AA5CB /* RCTBlobHeaders */, + 9CB10119AB0060D763CA14963880DD12 /* RCTImageHeaders */, + CCA17EE3C3690193A80674B08D67709F /* RCTLinkingHeaders */, + 69FC9B2CE8355119DAD1A9DADE42AE76 /* RCTNetworkHeaders */, + BBA382AD9734974457AAFFCAB5797ED6 /* RCTSettingsHeaders */, + EBF7911B2A57530BE1737AE937909112 /* RCTTextHeaders */, + 8FE2FBB869E5EB8EF7B3F7AA65837D2E /* RCTVibrationHeaders */, + 91BB534F5B5D85520AE259F92EF81865 /* RCTWebSocket */, + 5C049135084DA469324AC896A2DAEC04 /* Support Files */, ); - name = "React-RCTVibration"; - path = "../../node_modules/react-native/Libraries/Vibration"; + name = "React-Core"; + path = "../../node_modules/react-native"; + sourceTree = ""; + }; + 90882F93C2A3481A8DA65031135588FB /* Surface */ = { + isa = PBXGroup; + children = ( + DF8FE8637B96B3C9A8B0EC48EEDB3651 /* RCTSurface.h */, + 56D1AA8F50179674979BBEC1A3F9AE6A /* RCTSurface.mm */, + 78EE734148AADC58A891BBB0E623DDE9 /* RCTSurfaceDelegate.h */, + 4E5616F0EB35B1DF2940951F0F7B92CE /* RCTSurfaceRootShadowView.h */, + EADFCE0D4B87D6F30B6ACA043D79E8DA /* RCTSurfaceRootShadowView.m */, + BAED4468D05D161445D0F7A31E853712 /* RCTSurfaceRootShadowViewDelegate.h */, + CCB5574E1F505CEF5791FC3C0A833AB1 /* RCTSurfaceRootView.h */, + AC919BFFBEA8F33104A0410C7A183BED /* RCTSurfaceRootView.mm */, + 6A878E168BC3EC6F6489E25BF070CDB0 /* RCTSurfaceStage.h */, + CA2BF4BBCDF6539C646099A203B17AD1 /* RCTSurfaceStage.m */, + 9A43BCBEA831533C3913F04BC78B4C33 /* RCTSurfaceView.h */, + 572103F624B2A243C03FD6DC981B5F04 /* RCTSurfaceView.mm */, + 6B4B783D440A37DF09E0B1A2960BA264 /* RCTSurfaceView+Internal.h */, + 5A07DFBD9EB2219F98B5CC514670D3EB /* SurfaceHostingView */, + ); + name = Surface; + path = Surface; + sourceTree = ""; + }; + 919DBDF4E970EC01572338A7BD3E1E03 /* Pod */ = { + isa = PBXGroup; + children = ( + F415F6E88CE52F29D00E17C834E365CB /* Yoga.podspec */, + ); + name = Pod; + sourceTree = ""; + }; + 91BB534F5B5D85520AE259F92EF81865 /* RCTWebSocket */ = { + isa = PBXGroup; + children = ( + CB03EDF0C8DB3F9E7E92507D0CE264A3 /* RCTReconnectingWebSocket.h */, + BE0FF235482A59A4D7088558559F5A66 /* RCTReconnectingWebSocket.m */, + 9155F1558DD326F6623D3BB9857B7CEC /* RCTSRWebSocket.h */, + 7882D59EB464A6BE1CD402F091960ED9 /* RCTSRWebSocket.m */, + ); + name = RCTWebSocket; + sourceTree = ""; + }; + 91CAF50339CDAFEAAFEC20C44984063D /* RNRootView */ = { + isa = PBXGroup; + children = ( + CB3B7AFBD07CC17642512E01958C226F /* RootView.h */, + 79010F55B58205B366B018393D416C39 /* RootView.m */, + 0F8F50CC42A25C4FC8F2F11298A906B1 /* Pod */, + DDAC3F2285DEB197E2CB5F909D96E261 /* Support Files */, + ); + name = RNRootView; + path = "../../node_modules/rn-root-view"; sourceTree = ""; }; 92BBBFCEF02E438F7A934ACF7CFC72C7 /* FlipperKitReactPlugin */ = { @@ -14641,29 +14447,43 @@ name = FlipperKitReactPlugin; sourceTree = ""; }; - 942026784B56774D5FFBB481548BC399 /* react-native-orientation-locker */ = { + 92D21B297BF3B57CC5E3C1B3D5704503 /* EXAppleAuthentication */ = { isa = PBXGroup; children = ( - 21DBB7108A9FA1EEFCA9735DD0E85D7D /* Orientation.h */, - 1605C45A7EB80DD78D498C6ACE428CF4 /* Orientation.m */, - 37AC86349167CE22DBCE3ADF2770AE4A /* Pod */, - 5057049FEC168F7A6584384331BAB91E /* Support Files */, + 116B302449CE440A21E2528007401B44 /* EXAppleAuthentication.h */, + 2542B527E964202FDCCF8B947C336232 /* EXAppleAuthentication.m */, + 9CF163AA457BF8E4BF0F5D320F33EDDB /* EXAppleAuthenticationButton.h */, + 38B043FC39B1D9FF6E5BCE40BA273F59 /* EXAppleAuthenticationButton.m */, + 3E32FE0F21A00210D276A032C57E7D94 /* EXAppleAuthenticationButtonViewManagers.m */, + B7A66C67DC4DECE559AE93BECB13E938 /* EXAppleAuthenticationMappings.h */, + ED2936B1CF7F8C8B4285CFE09F1D1156 /* EXAppleAuthenticationMappings.m */, + A54BBF829F3B2564E6F4C54D40B2E31E /* EXAppleAuthenticationRequest.h */, + 10B05F8A962EFF81475D49929A49373A /* EXAppleAuthenticationRequest.m */, + 411CE792795FFF072B8FAE1724115CF7 /* Pod */, + D1CD9309BE735D20913EB317EA407B12 /* Support Files */, ); - name = "react-native-orientation-locker"; - path = "../../node_modules/react-native-orientation-locker"; + name = EXAppleAuthentication; + path = "../../node_modules/expo-apple-authentication/ios"; sourceTree = ""; }; - 9424DEAC091141078B8EF5449BB12DDD /* RCTAnimationHeaders */ = { + 93E20C3855CB436B728560F8F7E5BB9D /* Drivers */ = { isa = PBXGroup; children = ( - A97B54AF94D69E660EA7DC1739BA3584 /* RCTAnimationPlugins.h */, - CFEFBEA04FA99AD9C4C0CCF8E7EC85FF /* RCTAnimationUtils.h */, - 80B980A2DC985D47E5B4F3CF526DFD78 /* RCTNativeAnimatedModule.h */, - 3181EBFF3AA9E8E21FE1CB080DDF96F4 /* RCTNativeAnimatedNodesManager.h */, - C56B6E4DC08FD464B4569419D3E5E42F /* Drivers */, - 56CA0842623633108B5E2C2CBE0338A3 /* Nodes */, + C8396231DC1ED4DBE06F3BEE7B308131 /* RCTDecayAnimation.m */, + 98D7873E2D84726B0BF9B0F1242E5B30 /* RCTEventAnimation.m */, + 079AB77EDD953DCF82A8C9EDD5677892 /* RCTFrameAnimation.m */, + FECC29C6CD052CA647018FD2E22DA0DE /* RCTSpringAnimation.m */, ); - name = RCTAnimationHeaders; + name = Drivers; + path = Drivers; + sourceTree = ""; + }; + 947D86985105D6D3938DAF06FF245FB1 /* Pod */ = { + isa = PBXGroup; + children = ( + A8E288CC2CEC3E4674A638CCCEA0FB6A /* RCTTypeSafety.podspec */, + ); + name = Pod; sourceTree = ""; }; 94F799760A06FEB9BF350D68FE8F87FD /* AppDelegateSwizzler */ = { @@ -14681,12 +14501,27 @@ name = AppDelegateSwizzler; sourceTree = ""; }; - 9616C550EE284ADC18EE45FA6E79539F /* Pod */ = { + 957F4384F8139D4886191CCC81D21C17 /* database */ = { isa = PBXGroup; children = ( - 9394189BEBBF07FF4D1B068C8F7250C2 /* React-RCTNetwork.podspec */, + 5C27A8387D44E157028D30D55AF1AC7D /* RNFirebaseDatabase.h */, + 6EDC66F482CB24D6058DE1A85DDB886A /* RNFirebaseDatabase.m */, + 8795626E1963B04831CE86BC66CB9FF5 /* RNFirebaseDatabaseReference.h */, + 510C01E26D94D8122E44BA05A2766DAB /* RNFirebaseDatabaseReference.m */, ); - name = Pod; + name = database; + path = RNFirebase/database; + sourceTree = ""; + }; + 9582D09DF69A3A1AAD79706375AA148D /* Support Files */ = { + isa = PBXGroup; + children = ( + 3FDD277195F563A711D3DC40AE2087EC /* react-native-slider.xcconfig */, + E317F58825157FE70AF972818D4D8EBB /* react-native-slider-dummy.m */, + F3FE8FACEB7A80859FB6B29D15B360C5 /* react-native-slider-prefix.pch */, + ); + name = "Support Files"; + path = "../../../ios/Pods/Target Support Files/react-native-slider"; sourceTree = ""; }; 96B49BB4A070DBD8FC8A851FF52F92B4 /* Static */ = { @@ -14805,28 +14640,36 @@ name = Core; sourceTree = ""; }; - 97A90BAF5C036F8FF315C05BC64D3D76 /* bugsnag-cocoa */ = { + 97D3C07B356363355972098541D8B515 /* Pod */ = { isa = PBXGroup; children = ( - 635DBA49E5037EF9089256C518CFBA5F /* Source */, + DCE4B0C491D7DBCE4ABC183906E5F8B1 /* UMFaceDetectorInterface.podspec */, ); - name = "bugsnag-cocoa"; - path = "bugsnag-cocoa"; + name = Pod; sourceTree = ""; }; - 9824DA50CDE37B270C88EFC711EA344C /* Video */ = { + 9806C5B79FE4CA63C25F34E18DB6F478 /* React-jsinspector */ = { isa = PBXGroup; children = ( - 86A09AE5C83D80F26243E9C6A3BC235E /* EXVideoManager.h */, - FA1617111E51F830287C52C9066B2E55 /* EXVideoManager.m */, - 31172A1D79DC9491F3DE61DC9D8DE12B /* EXVideoPlayerViewController.h */, - 0F40B52FC2DFDB13480B387C4F29CA0F /* EXVideoPlayerViewController.m */, - 0E1555A71B1B88690357F182AE3E27EA /* EXVideoPlayerViewControllerDelegate.h */, - 8D12E7F5CECBA2EC6D11887658B661A2 /* EXVideoView.h */, - C0C8628D3ECA2DC14F6E5DAFEF019A26 /* EXVideoView.m */, + 9B9161345C52D307F492A98B689B4C4D /* InspectorInterfaces.cpp */, + B59325D29B6F441407613919EA56C5F0 /* InspectorInterfaces.h */, + F50DB291E9F86BE872B46ABD0397B244 /* Pod */, + 710586CB38E6646505BE57FA8A8A55FF /* Support Files */, ); - name = Video; - path = EXAV/Video; + name = "React-jsinspector"; + path = "../../node_modules/react-native/ReactCommon/jsinspector"; + sourceTree = ""; + }; + 98D3BB620BF0197794B1D91476F066F8 /* rn-extensions-share */ = { + isa = PBXGroup; + children = ( + E10645E04E00D679C0847AA3A4B1D7C4 /* ReactNativeShareExtension.h */, + 0DB7857045518792C326351B1DBEB75D /* ReactNativeShareExtension.m */, + DEA718FDFB0DD8E14A212807156A4D89 /* Pod */, + 5BFABFA81241DD86BC7337A52B543F1D /* Support Files */, + ); + name = "rn-extensions-share"; + path = "../../node_modules/rn-extensions-share"; sourceTree = ""; }; 9947F30BFF1E6439578095A21FABE5E5 /* CppBridge */ = { @@ -14836,40 +14679,15 @@ name = CppBridge; sourceTree = ""; }; - 999BF1A5966256F0CBA646850A42B180 /* Pod */ = { + 9A45CF9E8312F202C82A1E8CCB7A4AA3 /* Support Files */ = { isa = PBXGroup; children = ( - B672C2FF341C2CBC84CE7C181369DAED /* LICENSE */, - C4BEA3F947F7BCB04367E48FD3A8CEAB /* README.md */, - 6D5D1E85E2F0BC368B16D1F1C550518A /* RNDeviceInfo.podspec */, + 81FA983594CECD154E888E5A13800819 /* React-RCTBlob.xcconfig */, + 1C1855B280861CA49944DD6264214F3E /* React-RCTBlob-dummy.m */, + 2CF592E7BFA05329CFF059EB3C6FE874 /* React-RCTBlob-prefix.pch */, ); - name = Pod; - sourceTree = ""; - }; - 9A120C340496610EC2E5B01FE0CA82C9 /* QBImagePickerController */ = { - isa = PBXGroup; - children = ( - 2C514716EB275CDB666C4007580DC233 /* QBAlbumCell.h */, - 4491B07A5A45C84FDC154B2DFC264C3D /* QBAlbumCell.m */, - 9D261CBE9D3D62109B6D4E8FA46F0BCD /* QBAlbumsViewController.h */, - 7427F37FF19E195E55A9669219AD60B2 /* QBAlbumsViewController.m */, - 4036DA66AEAADDE67F7AF5FF9DD0B667 /* QBAssetCell.h */, - B592100B4B0203A70764DFDE23FCAD33 /* QBAssetCell.m */, - FCA944816518E50AC3DD696784739696 /* QBAssetsViewController.h */, - 8027FF476E99F0262910226C469925AA /* QBAssetsViewController.m */, - BF7875275D133A28394FE406760DC9CE /* QBCheckmarkView.h */, - 877ECD691ABB300A0857DC2D3F38502D /* QBCheckmarkView.m */, - B913B0DE28EC59A4F79F6DB78A261708 /* QBImagePickerController.h */, - B0308D260F31194A500BE1434E9FC9BF /* QBImagePickerController.m */, - 049121CD6C0B1D64E58E3C9027BDCEFB /* QBSlomoIconView.h */, - 09CF615CD864B0E7013EFE0697D54749 /* QBSlomoIconView.m */, - 5FD47A2CFA0C7E037D8822F94D6775F8 /* QBVideoIconView.h */, - FABD8E76822F5C6BF39C74CB704D5A8B /* QBVideoIconView.m */, - 491AED04763753D48BB1E360F814442C /* QBVideoIndicatorView.h */, - B93E931A811386F363040FE7E7792B66 /* QBVideoIndicatorView.m */, - 045BC7589D43B21F9E8D5C1AEAD08961 /* Resources */, - ); - name = QBImagePickerController; + name = "Support Files"; + path = "../../../../ios/Pods/Target Support Files/React-RCTBlob"; sourceTree = ""; }; 9AB292B2F9BFA5B7C2925CCFBE327F69 /* Support Files */ = { @@ -14883,68 +14701,66 @@ path = "../Target Support Files/libwebp"; sourceTree = ""; }; - 9B39715FD3535FE90C4437C61C5DBE58 /* Nodes */ = { + 9B0D4DD331CA75BF0013EE8B27D1ED84 /* Pod */ = { isa = PBXGroup; children = ( - BB307728748153F595011FB99B180AD5 /* REAAlwaysNode.h */, - 27022965E30076F988DA9D6535E05F09 /* REAAlwaysNode.m */, - 6D63D68250D517F7A8A6FB42EDD1F2EB /* REABezierNode.h */, - FC173FDB05B7BEFFF5A3A8234F36C097 /* REABezierNode.m */, - 7C5BF9AA9C782B87608E0F4E3255B3AA /* REABlockNode.h */, - CDD98338FF52785F209DFBB76641F9F9 /* REABlockNode.m */, - 1BE6C709B2CDA1C8F74B0EB1C19753A3 /* REACallFuncNode.h */, - FF4202637A81AEA50739266A3B02FCCA /* REACallFuncNode.m */, - 568D062A0FF6D94B39E569F10DE6AD41 /* REAClockNodes.h */, - 5D5395056415CAF584F742E8375FDA75 /* REAClockNodes.m */, - CB4578475007A74E070102107138CF00 /* REAConcatNode.h */, - C6F1748B403E6E5764097A0DFD44854C /* REAConcatNode.m */, - 85155F53DD15AAF844D7921324350B39 /* REACondNode.h */, - 3A8EB6CB82FF58D29DCA66F92F103701 /* REACondNode.m */, - DF7167F2BF896C12BBCF5BD8C375A50C /* READebugNode.h */, - 26D34E8EF25EA2FB1249DD3B286FD598 /* READebugNode.m */, - C0BF5F99115EE471188E590055260764 /* REAEventNode.h */, - 8A21DF5AF76A2B8062D40CB737C1DADA /* REAEventNode.m */, - 1A1D9610A449D2388F01014781CD204A /* REAFunctionNode.h */, - 0F0512CBCDA1447DCD89511D30DA8FCF /* REAFunctionNode.m */, - AB48E873BEAA1DD110680782677F158D /* REAJSCallNode.h */, - CFBC723AEB7D761951B2444283230789 /* REAJSCallNode.m */, - D41D779CF58921FD4B98EDD73A15EF24 /* REANode.h */, - 35FF01812EF4A19AF5A496A538F75336 /* REANode.m */, - 28BBE692349E857ED55046519762BAA7 /* REAOperatorNode.h */, - D3F91A5AC125245092B53FBCC0CFA84F /* REAOperatorNode.m */, - 9EFBCED0F028458C60D260A2443070DE /* REAParamNode.h */, - 32D6CEEE188F5E019A0E0D332B9CDF02 /* REAParamNode.m */, - 5027F0CC646A6516D16F1A731BCE3023 /* REAPropsNode.h */, - D194CD066A6620297A9ABEF104160B18 /* REAPropsNode.m */, - 70FE932D7EE0A2E6E295FF0F651AC85F /* REASetNode.h */, - 3C4D934407C0DE63D6FCEF3662980C0D /* REASetNode.m */, - 4AD6C8ED2DA49566A7EF6CBB775EA267 /* REAStyleNode.h */, - 719CB1BCA06AACF1CB60A6CA66317BF6 /* REAStyleNode.m */, - ACC10530C3FEADFF050AA7DD6DDEADDA /* REATransformNode.h */, - 0B0EB0C1455E1309931489C3C4346DC9 /* REATransformNode.m */, - 4E3187C6C948132009DB5543F9704A1D /* REAValueNode.h */, - 842878067937A44B227D66C01C43030D /* REAValueNode.m */, + A6782C5B1836C26C8A30D2166BE7DC0C /* LICENSE */, + EE8BB895C0148F20FC6269E2E6A328AC /* README.md */, + 04E9EA8890CC70D63158E0944A315B35 /* RNReanimated.podspec */, ); - name = Nodes; - path = ios/Nodes; + name = Pod; sourceTree = ""; }; - 9BBDED08BD901CB1D10B2FFDC62F8F58 /* react-native-document-picker */ = { + 9C185A72740841064436B7675BDBA488 /* Support Files */ = { isa = PBXGroup; children = ( - E190A81436A1E6A3B90BE76CDA87269B /* RNDocumentPicker.h */, - 21FA8F5FC5A5FA3D930E63232DACA794 /* RNDocumentPicker.m */, - 1466488A6AB81BD8262F74CD34216623 /* Pod */, - B10DDD4F9730AAF7627A0109F2C34C46 /* Support Files */, + 31BF8E9A69B7962F3C4A496E22C8CE72 /* RNDeviceInfo.xcconfig */, + A1FEA8F5E246D542705C116C20E9EE8E /* RNDeviceInfo-dummy.m */, + 54FF570364C67C4800E016D8BE9DF534 /* RNDeviceInfo-prefix.pch */, ); - name = "react-native-document-picker"; - path = "../../node_modules/react-native-document-picker"; + name = "Support Files"; + path = "../../ios/Pods/Target Support Files/RNDeviceInfo"; sourceTree = ""; }; - 9C7BED83817A7DCA4244F0B0096A6873 /* Pod */ = { + 9C471ABA34B74756426D18C2CF3ED7DF /* Pod */ = { isa = PBXGroup; children = ( - 6373D9E4E8F697C98D3DBA57A8DBF2AD /* React-RCTImage.podspec */, + 0F34BB7CBA420C7AC1B6C2A580D80420 /* React-RCTAnimation.podspec */, + ); + name = Pod; + sourceTree = ""; + }; + 9CB10119AB0060D763CA14963880DD12 /* RCTImageHeaders */ = { + isa = PBXGroup; + children = ( + 5CA400AF4AA1898D16063CD1F4799A3F /* RCTAnimatedImage.h */, + 297C1427D1883C033093F4F85675077B /* RCTGIFImageDecoder.h */, + 348DC81981FE90DE486FD92B8BCC8ABD /* RCTImageBlurUtils.h */, + C14E739F3F6B19F2164BDAA53543E8B1 /* RCTImageCache.h */, + DB4A1BB82B6FDCE2D55B3B427C79E4F3 /* RCTImageDataDecoder.h */, + 25E6C85722864CE68C2A101629DD1411 /* RCTImageEditingManager.h */, + 47DC97CD2BEF59C115D143CF75DD164D /* RCTImageLoader.h */, + 2E53AA22994BC70E4C865791B17953DA /* RCTImageLoaderProtocol.h */, + B6CF0EE8C1645A913462FB59BEDFCCB3 /* RCTImageLoaderWithAttributionProtocol.h */, + D9AD525BD78EE273535FA726D075393C /* RCTImagePlugins.h */, + 6D1EA97BF3175816CC0EBC6D033B4D09 /* RCTImageShadowView.h */, + EEF9D5D77F08ED6807BF9C978556DF29 /* RCTImageStoreManager.h */, + 170701BBADABFC1E9E6393032F3AEF81 /* RCTImageURLLoader.h */, + 7DEF68E13AEC93637B382CE7A47271FB /* RCTImageURLLoaderWithAttribution.h */, + 580AB02B6EC238E51579F77DFB232B3A /* RCTImageUtils.h */, + 66E8ACA3FF16AACDD5AF0FC3E90339F8 /* RCTImageView.h */, + 14C93CE3A3DFC7CAAF264012E42B4CDC /* RCTImageViewManager.h */, + 758C1AFE17A1B19EFCEC94C65C27A9F7 /* RCTLocalAssetImageLoader.h */, + 6C52E58A2A2B01E9BB3484BE88FC3F3E /* RCTResizeMode.h */, + 16555BDC20B5B1863AA97229A58A197E /* RCTUIImageViewAnimated.h */, + ); + name = RCTImageHeaders; + sourceTree = ""; + }; + 9D60141EA12D9D3EF984E60AC33D1578 /* Pod */ = { + isa = PBXGroup; + children = ( + 2444484AED9986F4FC30861022F76884 /* FBReactNativeSpec.podspec */, ); name = Pod; sourceTree = ""; @@ -14962,46 +14778,60 @@ path = "../Target Support Files/FlipperKit"; sourceTree = ""; }; - 9DA30316620B5362601D5BD1EF70BF5D /* Multiline */ = { + 9DD7A0CE0BCA939F55B969A8C466BCC6 /* Support Files */ = { isa = PBXGroup; children = ( - C9C73D7D00469115D46057DBC13A85F7 /* RCTMultilineTextInputView.h */, - 6D4994A75D45527F7F5930F67C8B5BEB /* RCTMultilineTextInputViewManager.h */, - F86499206B3CCEFEDBF06F69F36D7B91 /* RCTUITextView.h */, - ); - name = Multiline; - path = Multiline; - sourceTree = ""; - }; - 9EC5600BCBA1669EA17AAB433A93EBB4 /* Support Files */ = { - isa = PBXGroup; - children = ( - 079F6E76299A18536226AD3A42E9764F /* React-Core.xcconfig */, - E6F633DA233010259078C80B210B8CB0 /* React-Core-dummy.m */, - 8ED94D8BE07D4006C71DDCE06EF299BA /* React-Core-prefix.pch */, + A96B9A374B1980315BA061F659A6F150 /* UMBarCodeScannerInterface.xcconfig */, ); name = "Support Files"; - path = "../../ios/Pods/Target Support Files/React-Core"; + path = "../../../ios/Pods/Target Support Files/UMBarCodeScannerInterface"; sourceTree = ""; }; - 9F294B654934236B675B6241DA9D6D0C /* Pod */ = { + 9E011BDB166FF147F3D49787971B7D06 /* Pod */ = { isa = PBXGroup; children = ( - 9C1792EAAB3134FE54B51A82E9C58BBE /* BugsnagReactNative.podspec */, - 3A087F03D451E89A5AAD301D0B58B36C /* LICENSE.txt */, - C702028BE0E9F17B34F2C20BC017AD83 /* README.md */, + D4A296B853DFB8F6B64BDE0E876B6D03 /* EXAV.podspec */, ); name = Pod; sourceTree = ""; }; - 9F87E7AC51EDEBF22E4988AE59997F65 /* SDWebImage */ = { + 9EF6159D8C3AEFFE546C6E60C35EE85C /* Support Files */ = { isa = PBXGroup; children = ( - 0E2F0D7BF28C56D98D40123E6864E55B /* Core */, - D72CCAA127A922673A34F6FA79B55D1C /* Support Files */, + 5E678DA453BED12C85EC160E1227B75A /* React-RCTLinking.xcconfig */, + 14F7B3A9167028C7088E419A2FDCC1AA /* React-RCTLinking-dummy.m */, + 942CB00ACBC4A5B36371564BB424065F /* React-RCTLinking-prefix.pch */, ); - name = SDWebImage; - path = SDWebImage; + name = "Support Files"; + path = "../../../../ios/Pods/Target Support Files/React-RCTLinking"; + sourceTree = ""; + }; + 9F4C302E299DEBB2D5181F9D95870C66 /* Support Files */ = { + isa = PBXGroup; + children = ( + 764EAFD88430FA98D20C9C73C96E5186 /* RNBootSplash.xcconfig */, + 4FA787B4E7BB643A1744D70272BE7E4C /* RNBootSplash-dummy.m */, + 78F2B3888F5CA3B17CE01C43E8A4709F /* RNBootSplash-prefix.pch */, + ); + name = "Support Files"; + path = "../../ios/Pods/Target Support Files/RNBootSplash"; + sourceTree = ""; + }; + 9F5035384ED3E28784B512FEB8CA989A /* Support Files */ = { + isa = PBXGroup; + children = ( + 9474A83225E7D2F439DC8D96E46811E4 /* UMTaskManagerInterface.xcconfig */, + ); + name = "Support Files"; + path = "../../../ios/Pods/Target Support Files/UMTaskManagerInterface"; + sourceTree = ""; + }; + A009D5590F6558FD202247C78473D60E /* Pod */ = { + isa = PBXGroup; + children = ( + E7C8D58DF67E184584720880EC449EA0 /* UMBarCodeScannerInterface.podspec */, + ); + name = Pod; sourceTree = ""; }; A00FF58D0E86FB776D0EFA6AFE66C950 /* Support Files */ = { @@ -15032,15 +14862,28 @@ name = SKIOSNetworkPlugin; sourceTree = ""; }; - A0B0E69071D422E89F8A9AFF6AECE6B8 /* Support Files */ = { + A0BE516FD7FEE16E5AA3DF307D539E61 /* Text */ = { isa = PBXGroup; children = ( - 2649E0E14CC40301FE5BC5CBCFE7C60C /* EXAV.xcconfig */, - 86159C8534820A22070AD2CBF12AF275 /* EXAV-dummy.m */, - 7AA39110DD8D8834D95E5D61309C0695 /* EXAV-prefix.pch */, + C676779F45FF6BC42177BCB13DF550B3 /* NSTextStorage+FontScaling.h */, + 785228C5185FAFB6F3841D742E180506 /* RCTTextShadowView.h */, + 8924ACA12AAF6E1269144BCD0D55495B /* RCTTextView.h */, + FF69B0975F1DCD7AEFAD2F90486ED57D /* RCTTextViewManager.h */, + ); + name = Text; + path = Libraries/Text/Text; + sourceTree = ""; + }; + A1106A43A0D1F1E4328F00FA9490D22F /* Support Files */ = { + isa = PBXGroup; + children = ( + CEC6348DCFA0BE73C82999BF9D2BF3D8 /* ResourceBundle-QBImagePicker-RNImageCropPicker-Info.plist */, + 0CEF4454A8598F68A23B09EE381083DD /* RNImageCropPicker.xcconfig */, + B60643436E9FCF4E4BA07D9E2DC75F56 /* RNImageCropPicker-dummy.m */, + 49403DD0A6F2893E9B98EEEC15C36C16 /* RNImageCropPicker-prefix.pch */, ); name = "Support Files"; - path = "../../../ios/Pods/Target Support Files/EXAV"; + path = "../../ios/Pods/Target Support Files/RNImageCropPicker"; sourceTree = ""; }; A1523A15AB1E0B92DC88479E9B680AB8 /* NSData+zlib */ = { @@ -15052,43 +14895,159 @@ name = "NSData+zlib"; sourceTree = ""; }; - A382696B6B1FB012CA2DE1875EF35AE4 /* Pod */ = { + A1A5B1DA91C7CAA069DC128DB57A0C79 /* UMFaceDetectorInterface */ = { isa = PBXGroup; children = ( - BE02C0418CF8EE6054A6B6631E06DCDA /* EXFileSystem.podspec */, + C7F746DB3BB961BBE963495CE702F2C2 /* UMFaceDetectorManager.h */, + 4B2671E0D7FF0A9EF0D5FBB2355A3FB0 /* UMFaceDetectorManagerProvider.h */, + 97D3C07B356363355972098541D8B515 /* Pod */, + 801202E84855D900161AF889D86D3FDA /* Support Files */, + ); + name = UMFaceDetectorInterface; + path = "../../node_modules/unimodules-face-detector-interface/ios"; + sourceTree = ""; + }; + A2ADCBD34E27985AD70F3CE40A1BA39F /* Pod */ = { + isa = PBXGroup; + children = ( + 304938CE06B836B9FFCF307EE419A0FD /* React-RCTText.podspec */, ); name = Pod; sourceTree = ""; }; - A3B5CCE2A3D44117B0F1B14E2A1BC6B2 /* EXFileSystem */ = { + A2C08275B7AC7F50D79712C9E5DC95CC /* Pod */ = { isa = PBXGroup; children = ( - CB37AA76C764D977AF9EA4B1FA538F9D /* EXDownloadDelegate.h */, - 2498A4DA779B27626860F0C820BF4D36 /* EXDownloadDelegate.m */, - 3DFF981C47CA2DEF0ABD18204C9C309B /* EXFilePermissionModule.h */, - 22067950C5C6A4A4DC87C7D141E6E076 /* EXFilePermissionModule.m */, - 198A5250D407D50D33F2AAC0B8048876 /* EXFileSystem.h */, - 1711B188EC11F4C1FEAD7932A4A1A3DE /* EXFileSystem.m */, - 65D682C26CA14926B14CC0283B7F7337 /* EXFileSystemAssetLibraryHandler.h */, - 9AE3E53F317299930F0492639EF01984 /* EXFileSystemAssetLibraryHandler.m */, - B2D4DDB8592A5368609B572269B0F1D2 /* EXFileSystemLocalFileHandler.h */, - 0E3C14843CFD8E90981B9685A9A32E31 /* EXFileSystemLocalFileHandler.m */, - A382696B6B1FB012CA2DE1875EF35AE4 /* Pod */, - CB3AF880AEAA2464B866814E4AB8B022 /* Support Files */, + B7C4E20C3C4EA935130F6A34E83114D9 /* UMCameraInterface.podspec */, ); - name = EXFileSystem; - path = "../../node_modules/expo-file-system/ios"; + name = Pod; sourceTree = ""; }; - A3BA2B2AFCB59E1AB204ADFBFEC7DFC4 /* Support Files */ = { + A2CE8C4ECD0911F8885BD1FD4864B860 /* Support Files */ = { isa = PBXGroup; children = ( - 0B0A67F61C92A74A973F3AD157FF31AE /* ReactCommon.xcconfig */, - C14E45FD9623CC58C10518AD113563CE /* ReactCommon-dummy.m */, - A163430C5570F89037762F4E9A150712 /* ReactCommon-prefix.pch */, + 22EEFDC1FF381CE63EEEE36D980DE498 /* FBReactNativeSpec.xcconfig */, + 9AC12F189B625BCB582A97975AD90108 /* FBReactNativeSpec-dummy.m */, + A9BFB46B6832302A3D8501189A3A243F /* FBReactNativeSpec-prefix.pch */, ); name = "Support Files"; - path = "../../../ios/Pods/Target Support Files/ReactCommon"; + path = "../../../../ios/Pods/Target Support Files/FBReactNativeSpec"; + sourceTree = ""; + }; + A4814781EA9971F89142234CBC32E80C /* Support Files */ = { + isa = PBXGroup; + children = ( + 98CBE4F3143ABC2A602EDE05CCA1ACFA /* UMPermissionsInterface.xcconfig */, + 176BCE4DA8EDE6EDCBEEF5A622C2C38E /* UMPermissionsInterface-dummy.m */, + 5A5A0CD4572775BF0416EA4D83C07822 /* UMPermissionsInterface-prefix.pch */, + ); + name = "Support Files"; + path = "../../../ios/Pods/Target Support Files/UMPermissionsInterface"; + sourceTree = ""; + }; + A49DD8474408026AA68F951F911B9968 /* Development Pods */ = { + isa = PBXGroup; + children = ( + CB92E3BBBE4FF45888713B9B693E9C9D /* BugsnagReactNative */, + 92D21B297BF3B57CC5E3C1B3D5704503 /* EXAppleAuthentication */, + D73D2631CC98928FF2F34CA0604CB0D2 /* EXAV */, + FE45A7E914710433109E02D43C665E4D /* EXConstants */, + B72A4E2D47415B01D15F251C4EB59CE9 /* EXFileSystem */, + B21409B0717C212072628D6F3F19D90D /* EXHaptics */, + 135AC89D226AC20DE912F0D6709B99DC /* EXImageLoader */, + 4A81CA6A6035D65A9944C3C7A5A163F8 /* EXKeepAwake */, + 36515B0AA7BD94031B0B30E252AD51BF /* EXLocalAuthentication */, + 29FF0CCC1720778AE2ABB62F7B32D8D8 /* EXPermissions */, + E3974590B2F875C0246C119BBA162F04 /* EXVideoThumbnails */, + 6F00DD1E10ECA90CBF4E1ED64CE7B7AC /* EXWebBrowser */, + 2A41B5CEDBF670947CD578B0D538884F /* FBLazyVector */, + E44DEC5176C6B1D9471E3E6CF1D869C6 /* FBReactNativeSpec */, + D85BB3CCBC3E86C23837B1A807FC49C5 /* KeyCommands */, + D078512572E1955EF7741F8F1B319291 /* RCTRequired */, + B8DAD9F9CE6D1F9F0C4CEB393EF07EF5 /* RCTTypeSafety */, + 80961DE24CA449393F891B9042C948C4 /* React */, + 902F599A39344B1DF1178D618B54D132 /* React-Core */, + 3D503F79BF8CA993C3FB2D772EB2D77A /* React-CoreModules */, + 81D9D9E45C72B950F819E3CF1D2D4AB2 /* React-cxxreact */, + EBE4145F4399C61612F74C67CA36F615 /* React-jsi */, + 5D595F6A537604CC211E650E999EB0D5 /* React-jsiexecutor */, + 9806C5B79FE4CA63C25F34E18DB6F478 /* React-jsinspector */, + F777E77902613F7C972A6FCD1FBA7595 /* react-native-appearance */, + 0D7679AD187E453E8FB0BC89B12F813D /* react-native-background-timer */, + DEF4D4B51FD07461BDC5F23CE394DCB2 /* react-native-cameraroll */, + AADB536D5C528696B383AC735E6A895B /* react-native-document-picker */, + 67E2E147AB30F73FDA50A3B6AA547121 /* react-native-jitsi-meet */, + 304F3EB9ADE22A89751B810FC02AC8D3 /* react-native-notifications */, + 51DC58D3FE9518D3266BB7D5F1438646 /* react-native-orientation-locker */, + C99C847DEB87BE16DACD9F1E84179992 /* react-native-safe-area-context */, + 37E768EE9449A77B04DE0C370859FFED /* react-native-slider */, + 8A9DDD9CA35F122A1C580487211307FF /* react-native-webview */, + D84145441887C557A4C3B2F17198911C /* React-RCTActionSheet */, + AAC4068B5147D2801ABF8DEA3B0D42E9 /* React-RCTAnimation */, + EF29766FFEC54BB473D3D86002F4B120 /* React-RCTBlob */, + 0A772D3CE57E3BFBB21917546ED945A5 /* React-RCTImage */, + F13DE045CEA0A44A7E05941EA26990AC /* React-RCTLinking */, + DD3B4017CA124C46D825FC047479BBD7 /* React-RCTNetwork */, + F2FDC8D560FD43D95A1DC549F936C1C8 /* React-RCTSettings */, + 540A6CB1D6E649E7E6C6D31A5AC21E63 /* React-RCTText */, + 7A3E9DD9DEBF5B1BE156C1BC0F4F938E /* React-RCTVibration */, + C059B0CB56DE4BD87C52E029695B9CD0 /* ReactCommon */, + F33D0F04595E70495BEEFD68E7BB7641 /* ReactNativeART */, + 6B4C0A49D2D57FADD9BA4943FAB167E2 /* ReactNativeKeyboardInput */, + ACB9231751AA1772537DDF7E2E7EB96C /* ReactNativeKeyboardTrackingView */, + 98D3BB620BF0197794B1D91476F066F8 /* rn-extensions-share */, + 26996BC4B090F7A699255ABA0A044CC9 /* rn-fetch-blob */, + F02693760A6B96BFE391F7A5A59D4646 /* RNBootSplash */, + FA2179C196584DEF6FC48E26CD0EBD81 /* RNCAsyncStorage */, + 89316C11AAE21E40C935F68A64E14EC9 /* RNCMaskedView */, + C26E12B4888B1AB2186531501842F2A6 /* RNDateTimePicker */, + C2B0AB18E5B820C1AFE17ECDC5A59360 /* RNDeviceInfo */, + C00B7053BFF6A62C3C6D015A3A3510D2 /* RNFastImage */, + 553895A6C953BE5E1F266E357130EDCF /* RNFirebase */, + BAC4CC0E135DF9A2665F41B533B60725 /* RNGestureHandler */, + B5FEF5CB4C011C26DCB4DAB3EE423C2C /* RNImageCropPicker */, + 6EFE3F167530E16EB174B95BEE1E4886 /* RNLocalize */, + 161C470CDAD021A787C232BE86727494 /* RNReanimated */, + 91CAF50339CDAFEAAFEC20C44984063D /* RNRootView */, + 5E3DC8793FEF462E78B92B65EF314B4F /* RNScreens */, + FEDD141D05B038F6F3794DD60F66DC10 /* RNUserDefaults */, + B5737466BB71F8E891A9E96AFB98ADD4 /* RNVectorIcons */, + C7326BB75F6FCDA8180247A0A93CD28E /* UMAppLoader */, + DA184E20B978F7AEB62079D66D6DC7AA /* UMBarCodeScannerInterface */, + C11D7F04E2B894209FA573906329D7C0 /* UMCameraInterface */, + 4A183FEDB3E7507DF1E87B151E3A9215 /* UMConstantsInterface */, + 174D5F2A5D170AC00E4E4EEFE90A9E99 /* UMCore */, + A1A5B1DA91C7CAA069DC128DB57A0C79 /* UMFaceDetectorInterface */, + 88221E6CEF57902293F3CB0B3EE2C468 /* UMFileSystemInterface */, + E299B908BEB381A128757A048726CEFE /* UMFontInterface */, + 4FAE82C85F04C1E0067AE63D1E9C6790 /* UMImageLoaderInterface */, + D3EF89EBCDFDC9AF5268AA3F277C9CB0 /* UMPermissionsInterface */, + E9839F4496FA5949DAA0D229B6E9F15C /* UMReactNativeAdapter */, + 859A1E4626172DDA43B9071111D39D95 /* UMSensorsInterface */, + DB965E3B0896161C32C205790719E9D8 /* UMTaskManagerInterface */, + EF8AEB62E89BC220B3620E6367ED914B /* Yoga */, + ); + name = "Development Pods"; + sourceTree = ""; + }; + A4B2332FCD3DE264264C5AC589E72AED /* Support Files */ = { + isa = PBXGroup; + children = ( + C53A341F26A850ED2FFD606A431186B2 /* EXConstants.xcconfig */, + DAD593560DDDAC4ED56FC5AAAEE80665 /* EXConstants-dummy.m */, + 5DDB7A090167C17F85864AD113A501C6 /* EXConstants-prefix.pch */, + ); + name = "Support Files"; + path = "../../../ios/Pods/Target Support Files/EXConstants"; + sourceTree = ""; + }; + A585A01B339EC458D655A9ACB61AA5CB /* RCTBlobHeaders */ = { + isa = PBXGroup; + children = ( + 477696EE8AF422E97A4C7E1FBAA61078 /* RCTBlobManager.h */, + E7DED3D8285C228837F9D243F63BD987 /* RCTFileReaderModule.h */, + ); + name = RCTBlobHeaders; sourceTree = ""; }; A59353DB0870ED6577E60D8D39E21610 /* MethodSwizzler */ = { @@ -15120,23 +15079,28 @@ path = "../Target Support Files/FirebaseAnalytics"; sourceTree = ""; }; - A6E8C630B93C509E768D59012E983627 /* Pod */ = { + A6E0AEA5F16D69E27E1F49F6DCD4F188 /* firestore */ = { isa = PBXGroup; children = ( - D539CB3FCDAB4B52C26A6288C51EFEC0 /* EXKeepAwake.podspec */, + 36C6EFB7DF751CCA66B5AAAFEC78F70E /* RNFirebaseFirestore.h */, + C46B3CD9E0A3FF13718E7CA92A2880C4 /* RNFirebaseFirestore.m */, + 673CA4162C4C9FD06D79A99C02149D2F /* RNFirebaseFirestoreCollectionReference.h */, + E51F6E74217C96C2013A76540F8AFD14 /* RNFirebaseFirestoreCollectionReference.m */, + C3E090A4891088B0395C87EA07C77B16 /* RNFirebaseFirestoreDocumentReference.h */, + 714190363DEE99AEDB46A0EF9761FFE2 /* RNFirebaseFirestoreDocumentReference.m */, ); - name = Pod; + name = firestore; + path = RNFirebase/firestore; sourceTree = ""; }; - A78D1B9F33705E69D8CE3AE6B6568F34 /* Singleline */ = { + A76B0D2F113F073CDA5DB07FE806A3CC /* RawText */ = { isa = PBXGroup; children = ( - 267F6C74F5F2AB98971FC8EA2F47B183 /* RCTSinglelineTextInputView.h */, - 124072C8CF5B3C82CAF4ECD605BC4C4E /* RCTSinglelineTextInputViewManager.h */, - 90D34DFF04C9FC93FBC548E5C5BC1EC1 /* RCTUITextField.h */, + AA29A83E3F33D4D1A190DA06EEE1623F /* RCTRawTextShadowView.h */, + 6EDBCA5FD95AB321FE8A8C344BA44126 /* RCTRawTextViewManager.h */, ); - name = Singleline; - path = Singleline; + name = RawText; + path = Libraries/Text/RawText; sourceTree = ""; }; A798E741FBE2780C2247A64322076790 /* Pods */ = { @@ -15172,7 +15136,7 @@ B4D0A45A793AB373F9D51054D4F0431D /* nanopb */, 2E476DD1009CDFC78D61CD10021DF883 /* OpenSSL-Universal */, 1C288610EF2F997BEF7BE0F98A6B8320 /* PromisesObjC */, - 9F87E7AC51EDEBF22E4988AE59997F65 /* SDWebImage */, + 44A0655D23855A039B5D0EBD883594EC /* SDWebImage */, DBB14556B7BC813FF0021EA25C03CC50 /* SDWebImageWebPCoder */, 72B50A7632FE42309F2928649B30816C /* TOCropViewController */, E49C0A05DA62BEEB2D9F143654CD0C04 /* YogaKit */, @@ -15180,63 +15144,12 @@ name = Pods; sourceTree = ""; }; - A7C96B52313A17DA4FD956C2A944AD03 /* UserNotification */ = { + A7D2EC369C618A046E4E00D708A0E36D /* Pod */ = { isa = PBXGroup; children = ( - CF6E7C96EC29BA645245BB12B05D8BBD /* EXUserNotificationPermissionRequester.h */, - 533A436110B2A43D96258CDCDC425754 /* EXUserNotificationPermissionRequester.m */, - ); - name = UserNotification; - path = UserNotification; - sourceTree = ""; - }; - A7FE8EE23B062EB05226A784920F4B5F /* RNCMaskedView */ = { - isa = PBXGroup; - children = ( - DB64B1122545BBAF21C429CE6B63462E /* RNCMaskedView.h */, - 3E417FCC99890ADA6613B3B742D3E0C9 /* RNCMaskedView.m */, - B6AD0FF33C5C0376F2D1F42D1945EF20 /* RNCMaskedViewManager.h */, - 16820BBC6885750171296D2BFF8E857A /* RNCMaskedViewManager.m */, - 86E655BA6DB99509E8240D44FF7EF897 /* Pod */, - 82F42776458D7A3AE266E944CA191615 /* Support Files */, - ); - name = RNCMaskedView; - path = "../../node_modules/@react-native-community/masked-view"; - sourceTree = ""; - }; - A82D8687F061DD3E30BBF64E4CDDE8FD /* Support Files */ = { - isa = PBXGroup; - children = ( - 06AAD9D0F4DA3DB3A4910B53E9778504 /* ReactNativeKeyboardInput.xcconfig */, - 759ADEA0F49999ED003E12B3140CEA1C /* ReactNativeKeyboardInput-dummy.m */, - 2C67267A8A17001BD55473995B72CDCF /* ReactNativeKeyboardInput-prefix.pch */, - ); - name = "Support Files"; - path = "../../ios/Pods/Target Support Files/ReactNativeKeyboardInput"; - sourceTree = ""; - }; - A9102972D0D0EBC24A846628566EDB0C /* RNScreens */ = { - isa = PBXGroup; - children = ( - 134E75B44815EFD151A2D9B70BD40986 /* RNSScreen.h */, - 7A37CA79C6B36FB48C96D5E545155E9C /* RNSScreen.m */, - A7933DE23E2E94AB414A61ADF5BF0B52 /* RNSScreenContainer.h */, - 878DC5AA91F3DFEE8A5FCE23CDF9F154 /* RNSScreenContainer.m */, - 876083BCCE2D2CC8E94DE4899EB6ADAD /* RNSScreenStack.h */, - 6B41E4FCC74576391ADB7ACBFD2CB539 /* RNSScreenStack.m */, - 96425385B1223999EC8995BC6E3AFA06 /* RNSScreenStackHeaderConfig.h */, - 2905F5558875923B7AF4A82D78A04C68 /* RNSScreenStackHeaderConfig.m */, - FEEADD289671AB3FDE86B26916E5686A /* Pod */, - 3EDC428094876DEF1D9458F57F523962 /* Support Files */, - ); - name = RNScreens; - path = "../../node_modules/react-native-screens"; - sourceTree = ""; - }; - A95E1B05BED2D06151899E350FC7EF2E /* Pod */ = { - isa = PBXGroup; - children = ( - FB7AD6B3ADA10DF50D786C20607F7CB7 /* React-Core.podspec */, + 982361A8B7843197478B692DD1446359 /* LICENSE */, + E32E897FA4AAF329B774A5AB200BFCCE /* react-native-orientation-locker.podspec */, + D375CA24D8AFEFF449ED6D802DAB7D1C /* README.md */, ); name = Pod; sourceTree = ""; @@ -15253,35 +15166,59 @@ path = FirebaseCoreDiagnostics; sourceTree = ""; }; - AA010E07B27634C44BBA986629A540E9 /* BaseText */ = { + AA160F6E19A6BB39CEBC07923A989526 /* Support Files */ = { isa = PBXGroup; children = ( - B01F3DAB08F37744FF6F8C05B00B9C18 /* RCTBaseTextShadowView.m */, - 77B684152044F95724A69EDE979113A0 /* RCTBaseTextViewManager.m */, + 6E869BE1BE808D2666B7222B4EC25A38 /* UMFontInterface.xcconfig */, ); - name = BaseText; - path = BaseText; + name = "Support Files"; + path = "../../../ios/Pods/Target Support Files/UMFontInterface"; sourceTree = ""; }; - AB97F816DCD149D7B806A8261096EB7E /* Nodes */ = { + AA574A245E72CE4C6784161BD9AA2880 /* RemoteNotification */ = { isa = PBXGroup; children = ( - C18252439B490C91FC5F74CCC76918A3 /* RCTAdditionAnimatedNode.m */, - 59A38D76ECF6D3A2CF7979FB90B2B2E4 /* RCTAnimatedNode.m */, - 041293840B618AC2B9040C82E56A4EC6 /* RCTDiffClampAnimatedNode.m */, - 2AC7952E4EB82FDF80EE45F4F7C9817C /* RCTDivisionAnimatedNode.m */, - 2F453AB8650E5E04AF66A8676A2B8967 /* RCTInterpolationAnimatedNode.m */, - 5910B455F2DD57F89C0663BA82E590FB /* RCTModuloAnimatedNode.m */, - 23F91F7ECFFD18675908FE501CA1B836 /* RCTMultiplicationAnimatedNode.m */, - BAB32DAC1CCB947DB9B0F1CACD9FFADE /* RCTPropsAnimatedNode.m */, - 71FC861FA342057264415C3E6A5BF805 /* RCTStyleAnimatedNode.m */, - 1B68E7E8F81A7A29F567BCAF59647574 /* RCTSubtractionAnimatedNode.m */, - 87A15D379D5A6FF0CA7347DCFDE9F8DD /* RCTTrackingAnimatedNode.m */, - 4E3FD77131EA5EDCE0E84A962E4F4B4A /* RCTTransformAnimatedNode.m */, - BC6BF1D7ED08F18910811808E32D7B8E /* RCTValueAnimatedNode.m */, + 764A81F1BEE39F8E3E25CA0BA171EDDE /* EXRemoteNotificationPermissionRequester.h */, + 96962B33A01681C19E695E4F3FC9A75D /* EXRemoteNotificationPermissionRequester.m */, ); - name = Nodes; - path = Nodes; + name = RemoteNotification; + path = RemoteNotification; + sourceTree = ""; + }; + AAC4068B5147D2801ABF8DEA3B0D42E9 /* React-RCTAnimation */ = { + isa = PBXGroup; + children = ( + E1B54E64A0E9F806D85B7AA1EDA7F1CF /* RCTAnimationPlugins.mm */, + 854DFA1E151E11854184F8B47D28B5BE /* RCTAnimationUtils.m */, + 14A94FE58DC768AA3FE9299715DA6EF2 /* RCTNativeAnimatedModule.mm */, + CC2AA0F5BD26F0F491F2F094178E76CA /* RCTNativeAnimatedNodesManager.m */, + 93E20C3855CB436B728560F8F7E5BB9D /* Drivers */, + 72856DC58D0767728DBB45057A9CFE8D /* Nodes */, + 9C471ABA34B74756426D18C2CF3ED7DF /* Pod */, + AD76D6CC4E1E0BE5A7679E58D689B032 /* Support Files */, + ); + name = "React-RCTAnimation"; + path = "../../node_modules/react-native/Libraries/NativeAnimation"; + sourceTree = ""; + }; + AADB536D5C528696B383AC735E6A895B /* react-native-document-picker */ = { + isa = PBXGroup; + children = ( + EEBB40606CBEF5ED5427218DDC0F775B /* RNDocumentPicker.h */, + 87D7C7C971E7E0DA4B32416966950A17 /* RNDocumentPicker.m */, + D38E8877736A8F59F9AD35F6CACC3BE3 /* Pod */, + 1CF547901F1B8346AB75ED23D36C30D2 /* Support Files */, + ); + name = "react-native-document-picker"; + path = "../../node_modules/react-native-document-picker"; + sourceTree = ""; + }; + AB52BB2E0F1B896F953FF8A2063D30F4 /* Pod */ = { + isa = PBXGroup; + children = ( + 4CD0A82EB71A43CAA081C0FA6178BE58 /* React-RCTActionSheet.podspec */, + ); + name = Pod; sourceTree = ""; }; ABD6D4AA9A75376B07AA8CFE7F1B0CD8 /* Reachability */ = { @@ -15295,6 +15232,16 @@ name = Reachability; sourceTree = ""; }; + ABDDA3E3B4F5587547FD0E8B09A9C876 /* Pod */ = { + isa = PBXGroup; + children = ( + 30E86DAB45478CBCE68E4AA9FDC62FE8 /* LICENSE */, + 1763107E641AC6DA72EA44F5A2132AC6 /* react-native-background-timer.podspec */, + FB5E02F705B5785F5C448E7F5BB16885 /* README.md */, + ); + name = Pod; + sourceTree = ""; + }; AC534666E5D1992937AD465AEC6E6EF4 /* Logger */ = { isa = PBXGroup; children = ( @@ -15305,24 +15252,42 @@ name = Logger; sourceTree = ""; }; - ACB2DFF2E33E6E5F07A5D80D1C1EF6B8 /* Pod */ = { + AC5F8D0F09DCB7DFA7998AB73DAF45C5 /* Inspector */ = { isa = PBXGroup; children = ( - 3762FECAFF7F556152C59808B990F279 /* React-CoreModules.podspec */, + 377CF5BBA777BAB19C2A23B45AE67323 /* RCTInspector.h */, + F041A1ED81DB509451BEAB1A0A955539 /* RCTInspector.mm */, + 72BA2D973062321833DC71EA631B9A46 /* RCTInspectorPackagerConnection.h */, + 076D49CBA83759E8A47F4244DA64417A /* RCTInspectorPackagerConnection.m */, ); - name = Pod; + name = Inspector; + path = React/Inspector; sourceTree = ""; }; - ACFAEBF4C6C1A7053D0137F3437085BA /* FBLazyVector */ = { + AC6B466329F380A66DC111A23218C603 /* analytics */ = { isa = PBXGroup; children = ( - 966F02B48C3446EE8A1C530C620F08CE /* FBLazyIterator.h */, - 4865AD148FB95A16B139DE3AD0BB5331 /* FBLazyVector.h */, - 21A37FD95C0465FF9F99F759118EABC0 /* Pod */, - 32741838E12ED0B06ACA1CCA9323259F /* Support Files */, + BC650A70C91226CF525858855AE2EF24 /* RNFirebaseAnalytics.h */, + 1BE9A8CD55DC781F4413E34D62808E82 /* RNFirebaseAnalytics.m */, ); - name = FBLazyVector; - path = "../../node_modules/react-native/Libraries/FBLazyVector"; + name = analytics; + path = RNFirebase/analytics; + sourceTree = ""; + }; + ACB9231751AA1772537DDF7E2E7EB96C /* ReactNativeKeyboardTrackingView */ = { + isa = PBXGroup; + children = ( + 17F6A57C57C11A1B1F8360CD7BEE32F2 /* KeyboardTrackingViewManager.h */, + 85F2264BEB9F97800F262A70B774113F /* KeyboardTrackingViewManager.m */, + F01F30CE19BA84D9736764B3B7DE1E16 /* ObservingInputAccessoryView.h */, + A1813F22650AEFA76A175560FFED1162 /* ObservingInputAccessoryView.m */, + F65E4A14C98B1F2F8CC5765A052B9CFA /* UIResponder+FirstResponder.h */, + 260F37D4A8E3C4253139756D5D412679 /* UIResponder+FirstResponder.m */, + 28C4ACFFEE74D50BF1708CF213708B38 /* Pod */, + B633E5F6755AD12BC6153E7A2CEE868F /* Support Files */, + ); + name = ReactNativeKeyboardTrackingView; + path = "../../node_modules/react-native-keyboard-tracking-view"; sourceTree = ""; }; AD07D6129601D36043F603D1825C8DD7 /* GoogleDataTransportCCTSupport */ = { @@ -15346,15 +15311,26 @@ path = GoogleDataTransportCCTSupport; sourceTree = ""; }; - AD8F51D43C17C1F674A78CC20CCD51B4 /* Support Files */ = { + AD5B1B55D0DBCB091C5C0DCC54F1FC12 /* Support Files */ = { isa = PBXGroup; children = ( - E0495102CDC8237B6AC8990EE9CE248D /* react-native-jitsi-meet.xcconfig */, - FDF5377FFC3A9BA9CC53D6C97ADD2E4E /* react-native-jitsi-meet-dummy.m */, - C955267DE061468D6AEE4D05FE950850 /* react-native-jitsi-meet-prefix.pch */, + 20F82DAE42B6D6E69AB9C92BA1FF5FDD /* react-native-safe-area-context.xcconfig */, + B7A2911494A89522CAD7B3C4E310BFE5 /* react-native-safe-area-context-dummy.m */, + 253B2CF1BF6337E6F75CF1B1DDBB13C4 /* react-native-safe-area-context-prefix.pch */, ); name = "Support Files"; - path = "../../ios/Pods/Target Support Files/react-native-jitsi-meet"; + path = "../../ios/Pods/Target Support Files/react-native-safe-area-context"; + sourceTree = ""; + }; + AD76D6CC4E1E0BE5A7679E58D689B032 /* Support Files */ = { + isa = PBXGroup; + children = ( + BAAFF78F17BDCEF3F136BE29EE8409E9 /* React-RCTAnimation.xcconfig */, + 4DD6EF9FFB6D58F494D3251F805BF0A0 /* React-RCTAnimation-dummy.m */, + F588CB6A96F0B0EDCE2BCD672E284AED /* React-RCTAnimation-prefix.pch */, + ); + name = "Support Files"; + path = "../../../../ios/Pods/Target Support Files/React-RCTAnimation"; sourceTree = ""; }; AD9F9EC9BD3E83CB1760763FE97FB773 /* UserDefaults */ = { @@ -15366,6 +15342,28 @@ name = UserDefaults; sourceTree = ""; }; + AE769A037706A0F53757AC23183DD98F /* Support Files */ = { + isa = PBXGroup; + children = ( + B505364CF978A6BB6EE63DF3031F59E7 /* React-jsi.xcconfig */, + 014A3DC181408BEE2897FF34FE2B8E46 /* React-jsi-dummy.m */, + 944EEF12556B8975D97DA4550652BA5C /* React-jsi-prefix.pch */, + ); + name = "Support Files"; + path = "../../../../ios/Pods/Target Support Files/React-jsi"; + sourceTree = ""; + }; + AEF4C07137694E6869D2AE426888B060 /* Support Files */ = { + isa = PBXGroup; + children = ( + 762F6F815E6393255BF8888C6AC94D38 /* React-RCTVibration.xcconfig */, + A8C934A443682E25A5C118561898718A /* React-RCTVibration-dummy.m */, + B1908AF1E996A1D9B68A927E6E36FF52 /* React-RCTVibration-prefix.pch */, + ); + name = "Support Files"; + path = "../../../../ios/Pods/Target Support Files/React-RCTVibration"; + sourceTree = ""; + }; AF2822ABC2FA5B0E08EA2A2236520F83 /* FirebaseCoreDiagnosticsInterop */ = { isa = PBXGroup; children = ( @@ -15377,6 +15375,32 @@ path = FirebaseCoreDiagnosticsInterop; sourceTree = ""; }; + AF3AE6C2B45EE50D5C26585A6182780C /* Modules */ = { + isa = PBXGroup; + children = ( + 6DD7CF14E9EE7BCCC59FCF32D8BC8FA1 /* RCTEventEmitter.h */, + 6CBD4994018FA1DC151E3369D0986690 /* RCTEventEmitter.m */, + 9057D3899F930CE2294A71B350CB480D /* RCTI18nUtil.h */, + 467241756A34BCF9F5DE1B2D76062086 /* RCTI18nUtil.m */, + 6582FB6679770ECE60F64859D4EAD7EF /* RCTLayoutAnimation.h */, + AB17B74C4F0476D139535A28C1FAD564 /* RCTLayoutAnimation.m */, + 1F2049C2175DCE75DD718C8896B5B6FF /* RCTLayoutAnimationGroup.h */, + 09FB5B11084F8AE4D8C395522E7DD90C /* RCTLayoutAnimationGroup.m */, + 4A090700F56D9999D1A4365A62E2FFC8 /* RCTRedBoxExtraDataViewController.h */, + 2B8651236CC6FA4973221A47C3851521 /* RCTRedBoxExtraDataViewController.m */, + 0550464CE86161D1E121046A5841DA4A /* RCTSurfacePresenterStub.h */, + 51346FC0571E153FB9138F156D84D7C4 /* RCTSurfacePresenterStub.m */, + D9A49EBCBD7B4004ACAFC5E5691F8EE8 /* RCTUIManager.h */, + 66A213075DBB0B320DB019C68BC2A999 /* RCTUIManager.m */, + EE78588B86575470EC01F1D67CFF2496 /* RCTUIManagerObserverCoordinator.h */, + 37DE4B02A082C8089801E554E38E5D0E /* RCTUIManagerObserverCoordinator.mm */, + 5336120F44EB40D62631E5D977203C7F /* RCTUIManagerUtils.h */, + 9CC8B2C12E1EA99667A5E5B1C4A4593A /* RCTUIManagerUtils.m */, + ); + name = Modules; + path = React/Modules; + sourceTree = ""; + }; AF7916CE69792784B2952A1A6D12AC2E /* GoogleDataTransport */ = { isa = PBXGroup; children = ( @@ -15427,6 +15451,22 @@ path = GoogleDataTransport; sourceTree = ""; }; + AFCF848D0993CAD0771B2B5DDF8B7AF3 /* Services */ = { + isa = PBXGroup; + children = ( + EEAB5A80CDF7B164E09CFE82EFD0A74F /* UMReactFontManager.h */, + 7548031C7F55209E79DE43120A326F64 /* UMReactFontManager.m */, + 843B6C30CF16C180A1CB3FEB045188A0 /* UMReactLogHandler.h */, + A5F3EEF0E74F17391ECE9AAB545B80A6 /* UMReactLogHandler.m */, + E484C17206B331EDA9C9BFDA944A5385 /* UMReactNativeAdapter.h */, + 75C8CC500EF18715756735BA84F6B23D /* UMReactNativeAdapter.m */, + 5472EC6616960C5882FAE7C9C7837442 /* UMReactNativeEventEmitter.h */, + 5B54DCCBB9C9F5B553048183F574F9B2 /* UMReactNativeEventEmitter.m */, + ); + name = Services; + path = UMReactNativeAdapter/Services; + sourceTree = ""; + }; B002A4D47D1C2F2A7CC609EA66454809 /* Resources */ = { isa = PBXGroup; children = ( @@ -15460,38 +15500,6 @@ name = Resources; sourceTree = ""; }; - B07DCEC5B87D7C9350BB3CDBE94A1262 /* Pod */ = { - isa = PBXGroup; - children = ( - 49A408345DF37A714779AD3FFCBB21B6 /* RCTTypeSafety.podspec */, - ); - name = Pod; - sourceTree = ""; - }; - B09CE1CED6ED41A93C1F440616D45FDA /* Support Files */ = { - isa = PBXGroup; - children = ( - 10A12DBED3913027E742D5A12B53ADD7 /* Yoga.modulemap */, - 1FAE064E6AFB8845B5FF3B9D0AFC6863 /* Yoga.xcconfig */, - AE644E26D8F04368E378F7B19A941786 /* Yoga-dummy.m */, - 30496EEC07B29FD00B42D064DFA20B22 /* Yoga-prefix.pch */, - 9A9969B4DCAEDA5FDE7CC095E40E1F88 /* Yoga-umbrella.h */, - ); - name = "Support Files"; - path = "../../../../ios/Pods/Target Support Files/Yoga"; - sourceTree = ""; - }; - B0C8E59E32D9E87D0FB976FCF301BB08 /* Support Files */ = { - isa = PBXGroup; - children = ( - F8498E65BBEA1AC78421FD1CD28DD3C1 /* RNDeviceInfo.xcconfig */, - C3601DDF73E4E0C163E9C1038E282EC0 /* RNDeviceInfo-dummy.m */, - CB60C8A4B544F593510DB187DC0A069B /* RNDeviceInfo-prefix.pch */, - ); - name = "Support Files"; - path = "../../ios/Pods/Target Support Files/RNDeviceInfo"; - sourceTree = ""; - }; B0E54F5744BF4257FE1E438D50A52C89 /* FBDefines */ = { isa = PBXGroup; children = ( @@ -15500,30 +15508,24 @@ name = FBDefines; sourceTree = ""; }; - B10DDD4F9730AAF7627A0109F2C34C46 /* Support Files */ = { + B19A88D1472CC10B347F7EBA75F2AD98 /* Pod */ = { isa = PBXGroup; children = ( - BA32D40EBE0AFE838FD881CE4EE07058 /* react-native-document-picker.xcconfig */, - 4D49C85A499B83A5304FA3A56A2B4282 /* react-native-document-picker-dummy.m */, - 8B630653DF2C7D123BDAACC2154B1C69 /* react-native-document-picker-prefix.pch */, + 7718B9D246E0914239AA9DF831692661 /* EXFileSystem.podspec */, ); - name = "Support Files"; - path = "../../ios/Pods/Target Support Files/react-native-document-picker"; + name = Pod; sourceTree = ""; }; - B2390E8E4378FE6619A8D76AEBCBF8A3 /* Default */ = { + B21409B0717C212072628D6F3F19D90D /* EXHaptics */ = { isa = PBXGroup; children = ( - EF101346827132AEE9E75EAF863FBD9C /* Base */, - CC5A7B321BEE4F736E178D1AF877EA74 /* CxxBridge */, - 31EEAEF9BB8126F345C6F0940CEBB640 /* CxxModule */, - 800E41EE9ADD1686F7B7593D0C47F491 /* CxxUtils */, - C15CADC6370864CD11E29C48D8214078 /* Modules */, - 05092DF600E7A7957FF4F53F9A3A8149 /* Profiler */, - 1FCC6901162177014F3E1488CF628E09 /* UIUtils */, - D242A5FAE7D2C38C174312DC5E204960 /* Views */, + 33721795E258A337460BB68AD0878BC4 /* EXHapticsModule.h */, + 2AD25C4584C36E1652A6A750B2FC83D3 /* EXHapticsModule.m */, + 615AA9B934E4046DE275EB52317EB4E7 /* Pod */, + 518B8BCA252C955929916D392561A068 /* Support Files */, ); - name = Default; + name = EXHaptics; + path = "../../node_modules/expo-haptics/ios"; sourceTree = ""; }; B24DDE008E58DB7CA2AC442955C12013 /* Support Files */ = { @@ -15537,27 +15539,24 @@ path = "../Target Support Files/Flipper"; sourceTree = ""; }; - B30DCF40B8113D7FBD77F511662841CF /* event */ = { + B2B869959E1F91FB5BA1DB170AFF2267 /* Support Files */ = { isa = PBXGroup; children = ( - D3E09970D79DFEC086D95A80EEF6D680 /* event.cpp */, - 951BC93835E6D048000E726EC9375F42 /* event.h */, + 5EC7CEBFC323467AA850A03744CBE464 /* RNVectorIcons.xcconfig */, + A0663E6F04278F135C5BB5E4F5DA8156 /* RNVectorIcons-dummy.m */, + 2E66F3FF0B7BBB43B5320FEA1518AB08 /* RNVectorIcons-prefix.pch */, ); - name = event; - path = yoga/event; + name = "Support Files"; + path = "../../ios/Pods/Target Support Files/RNVectorIcons"; sourceTree = ""; }; - B31CC9B5ABF0346CB1C310E703755CCC /* RNVectorIcons */ = { + B33B8E46E65D34CCE21C45CCA43C0317 /* fabric */ = { isa = PBXGroup; children = ( - B34A9F6EDA96558160E687E2DDA559D2 /* RNVectorIconsManager.h */, - DF7B0433CB697E740BA7B259FE091C76 /* RNVectorIconsManager.m */, - DB4F86AF789CFDB5546FB60A4F64559A /* Pod */, - 28A73EF51796778EE8EAC3A975651DFC /* Resources */, - C4FAA5B2484BC06072052CB0D4AC9B5F /* Support Files */, + 3A872639F851E347AF5AF15043462581 /* crashlytics */, ); - name = RNVectorIcons; - path = "../../node_modules/react-native-vector-icons"; + name = fabric; + path = RNFirebase/fabric; sourceTree = ""; }; B3B9CD674C8B830081DAFDB07A8B4FCD /* Support Files */ = { @@ -15571,14 +15570,26 @@ path = "../Target Support Files/Flipper-DoubleConversion"; sourceTree = ""; }; - B3C33D99736F5F708364766B1EAD1502 /* UMViewManagerAdapter */ = { + B3FFE1481A079002C7D25101DF23A309 /* Support Files */ = { isa = PBXGroup; children = ( - 3112F58816F680D616BEE524C8BA9360 /* UMViewManagerAdapter.h */, - 42F5A0B87ADC713878A1F9951DA416B4 /* UMViewManagerAdapter.m */, + 2DF3FE9A90E35F4B2262D0927A9BDD72 /* ReactCommon.xcconfig */, + 019388B2AD000029A641B277E52D3A7D /* ReactCommon-dummy.m */, + BF606E900C00805F2C18145463811455 /* ReactCommon-prefix.pch */, ); - name = UMViewManagerAdapter; - path = UMReactNativeAdapter/UMViewManagerAdapter; + name = "Support Files"; + path = "../../../ios/Pods/Target Support Files/ReactCommon"; + sourceTree = ""; + }; + B439068E9AA2F55AF076DA9C5C9F9E41 /* Pod */ = { + isa = PBXGroup; + children = ( + D3BEC03FCF87F6FC2773903FD5DA652A /* api.md */, + A1BB1C73FE63B7AA2DF5E763DDB62AD6 /* LICENSE */, + 3C88673051F7D7F99FF3602C2DDA3444 /* ReactNativeART.podspec */, + 485AAD44B28407AF4DAC8AE5A1EEA8D2 /* README.md */, + ); + name = Pod; sourceTree = ""; }; B4D0A45A793AB373F9D51054D4F0431D /* nanopb */ = { @@ -15599,34 +15610,78 @@ path = nanopb; sourceTree = ""; }; - B73F590C037EA64810F70D0F00FD3259 /* UMPermissionsInterface */ = { + B5737466BB71F8E891A9E96AFB98ADD4 /* RNVectorIcons */ = { isa = PBXGroup; children = ( - BE4AC730FBA061A5322A81174F81411B /* UMPermissionsInterface.h */, - 27E6AED9FBDEF38A7FA78B749F80EA24 /* UMPermissionsMethodsDelegate.h */, - 423C28B97E7DA33075093A150B611AE6 /* UMPermissionsMethodsDelegate.m */, - AE8ED7807A76E21DB0AB58FBD57A8F9F /* UMUserNotificationCenterProxyInterface.h */, - 28CEE3B53434016CBAFAF3FFE7C7B5B2 /* Pod */, - C751EA224DAC549B9BD459458C4407BC /* Support Files */, + F35D05315FC6B6B6EDA9DF179E993EE9 /* RNVectorIconsManager.h */, + B58818128D71948C8EBF51C9ADC8345C /* RNVectorIconsManager.m */, + 568327834AD26543F1FEF0318BEEF5E7 /* Pod */, + 3BBA9F1E0500F90C69F39D2E2D8E142C /* Resources */, + B2B869959E1F91FB5BA1DB170AFF2267 /* Support Files */, ); - name = UMPermissionsInterface; - path = "../../node_modules/unimodules-permissions-interface/ios"; + name = RNVectorIcons; + path = "../../node_modules/react-native-vector-icons"; sourceTree = ""; }; - B77C011FAE805EDCD20822E9F44C0F2C /* React-RCTNetwork */ = { + B5C052819E84DC86510B172F8FD9C134 /* Support Files */ = { isa = PBXGroup; children = ( - 63CA347E5BAE58E1D36EB34AFEE1CFB0 /* RCTDataRequestHandler.mm */, - 40721705024406AE4E8607335A91AF04 /* RCTFileRequestHandler.mm */, - B9F916A9CD68EB11468EC27D469A2F29 /* RCTHTTPRequestHandler.mm */, - 8BF0077A70654BAC3859123D7D2207EA /* RCTNetworking.mm */, - 8E77041415D1CD541F3146A37A299F94 /* RCTNetworkPlugins.mm */, - 00738B77A5CE05C854F2D2638BD918C2 /* RCTNetworkTask.mm */, - 9616C550EE284ADC18EE45FA6E79539F /* Pod */, - C5C562542E1C23329F20B86637262D18 /* Support Files */, + E449164144807AC1B5053DB10638ACA3 /* React-jsiexecutor.xcconfig */, + 83C56E34D9977B3F182946FBCA36820E /* React-jsiexecutor-dummy.m */, + D21E40951541B2F0CF302EFA694C14E4 /* React-jsiexecutor-prefix.pch */, ); - name = "React-RCTNetwork"; - path = "../../node_modules/react-native/Libraries/Network"; + name = "Support Files"; + path = "../../../../ios/Pods/Target Support Files/React-jsiexecutor"; + sourceTree = ""; + }; + B5FEF5CB4C011C26DCB4DAB3EE423C2C /* RNImageCropPicker */ = { + isa = PBXGroup; + children = ( + A246E9F82AE2BBDA19FB7D56CBB32A17 /* Compression.h */, + A629B817ACAA496C88A066E80943A5D4 /* Compression.m */, + E1AF6F668DDC2FE9EBE1D6160C6901DD /* ImageCropPicker.h */, + 1F4830428FD4A5E894279DE690CBA5CD /* ImageCropPicker.m */, + E77C6EF35804E2DA91EAB8864DBFBC87 /* UIImage+Extension.h */, + B935559ECF8BE33373521DF4C55C26C6 /* UIImage+Extension.m */, + 0AB4F00648ECDD7EB9847E2E41DE63DB /* UIImage+Resize.h */, + DB1CBA66AF986F90E2BF03987ED44F69 /* UIImage+Resize.m */, + 118115952BB351C34FEF15907B785821 /* Pod */, + F025E3B2119B678626DDAB0E70D9F5D3 /* QBImagePickerController */, + A1106A43A0D1F1E4328F00FA9490D22F /* Support Files */, + ); + name = RNImageCropPicker; + path = "../../node_modules/react-native-image-crop-picker"; + sourceTree = ""; + }; + B633E5F6755AD12BC6153E7A2CEE868F /* Support Files */ = { + isa = PBXGroup; + children = ( + 44ED7AA4DDDE5E75EFF44282C588460D /* ReactNativeKeyboardTrackingView.xcconfig */, + 7D6608AA920DE840866750AE10978017 /* ReactNativeKeyboardTrackingView-dummy.m */, + 3919D6196217FAA56028214F360D6D30 /* ReactNativeKeyboardTrackingView-prefix.pch */, + ); + name = "Support Files"; + path = "../../ios/Pods/Target Support Files/ReactNativeKeyboardTrackingView"; + sourceTree = ""; + }; + B72A4E2D47415B01D15F251C4EB59CE9 /* EXFileSystem */ = { + isa = PBXGroup; + children = ( + 5E95CCB65EA66A6DA10DA4AC44B761D1 /* EXDownloadDelegate.h */, + 25CEE608A8368A58E6EBAA490E1B1212 /* EXDownloadDelegate.m */, + E106072A9786E64AC33CA00920659D39 /* EXFilePermissionModule.h */, + F32C9DEFD7D2E12BCD98F3FE66EFBB50 /* EXFilePermissionModule.m */, + CDB0674E4606FBF4E6A0A200A6374982 /* EXFileSystem.h */, + 1B95F55FF707C060F41F30735F0725FA /* EXFileSystem.m */, + E866F2020E5230470DC35024A47C9A0D /* EXFileSystemAssetLibraryHandler.h */, + 1D84C39AB078DE44B1581D23560B8248 /* EXFileSystemAssetLibraryHandler.m */, + 1CDBDB451C7853A08F67B5013F43D8EC /* EXFileSystemLocalFileHandler.h */, + 4315336C79990A97C6FB023C7F26E713 /* EXFileSystemLocalFileHandler.m */, + B19A88D1472CC10B347F7EBA75F2AD98 /* Pod */, + 7F481BFA97C1214108D8EE3C76D2888B /* Support Files */, + ); + name = EXFileSystem; + path = "../../node_modules/expo-file-system/ios"; sourceTree = ""; }; B82A1175EC7F5408E2232EF7F89AA16D /* Network */ = { @@ -15646,96 +15701,133 @@ name = Network; sourceTree = ""; }; - B8875DFCD37D3B35E127C79DA8E94649 /* ReactNativeKeyboardTrackingView */ = { + B8DAD9F9CE6D1F9F0C4CEB393EF07EF5 /* RCTTypeSafety */ = { isa = PBXGroup; children = ( - 077E104C263332DB4F4F7BD9DA062B78 /* KeyboardTrackingViewManager.h */, - 6FA0DAC29FA8635BEA326384C7007408 /* KeyboardTrackingViewManager.m */, - 02CA029FB79AF696A740D09145194B3B /* ObservingInputAccessoryView.h */, - A93A9E7A65732180621ADEFAE3CDD08A /* ObservingInputAccessoryView.m */, - 2294975A06913B08D41195CE013BB1C8 /* UIResponder+FirstResponder.h */, - 74B387B68F9239F26E4E1D3379EC1140 /* UIResponder+FirstResponder.m */, - F020484A4D965B457F3A9894F1533253 /* Pod */, - 1B33BBDE85A572343E7D60B37DEBA6B5 /* Support Files */, + 4B0BDCD96533560254D9A26471FEED1F /* RCTConvertHelpers.h */, + 0BD770BE826215295C464B2BD109D4F0 /* RCTConvertHelpers.mm */, + AAEC32AC425688FBB8601407BC3EDCE9 /* RCTTypedModuleConstants.h */, + 13001F964D6B21E722744820848AADB7 /* RCTTypedModuleConstants.mm */, + 947D86985105D6D3938DAF06FF245FB1 /* Pod */, + 0E66A76AFDFECFA1E8944929A54FD73D /* Support Files */, ); - name = ReactNativeKeyboardTrackingView; - path = "../../node_modules/react-native-keyboard-tracking-view"; + name = RCTTypeSafety; + path = "../../node_modules/react-native/Libraries/TypeSafety"; sourceTree = ""; }; - B89AE84D6449A40818C0930A0DEF4233 /* Pod */ = { + BA3B9AD530BD182760D6A2A5DE84810E /* Support Files */ = { isa = PBXGroup; children = ( - 3E175DE75BEC8374D35C99F207F91DDC /* LICENSE */, - 63BDC72996A2EA0EC90A0E5F2AA1AF7F /* react-native-background-timer.podspec */, - 27C8EAF9DFEB41BE5E435DD9FD81B42E /* README.md */, - ); - name = Pod; - sourceTree = ""; - }; - B9314F7A099277D1AC5E63B641B433C5 /* Support Files */ = { - isa = PBXGroup; - children = ( - A222D2976B2D979BDC00DB9FC9C41331 /* EXAppleAuthentication.xcconfig */, - DE6F9E64C16924524823CD9584DAF35A /* EXAppleAuthentication-dummy.m */, - 4B05EA68892A43B772F2291B520793E2 /* EXAppleAuthentication-prefix.pch */, + 7979F000C239BF12E3EFFDB43C992451 /* react-native-webview.xcconfig */, + 6232CFE8A5FED9D0E581F5B00179C313 /* react-native-webview-dummy.m */, + 7D06BBDAA65248E73AB83C3F8107ADFD /* react-native-webview-prefix.pch */, ); name = "Support Files"; - path = "../../../ios/Pods/Target Support Files/EXAppleAuthentication"; + path = "../../ios/Pods/Target Support Files/react-native-webview"; sourceTree = ""; }; - BA46010420227A138838E15187F42456 /* Pod */ = { + BAC4CC0E135DF9A2665F41B533B60725 /* RNGestureHandler */ = { isa = PBXGroup; children = ( - B1EA30D9FCBC11603609FA51E1FC4CD4 /* LICENSE */, - 35CF31EF6370977242F693B963634BA3 /* ReactNativeKeyboardInput.podspec */, - D2B198303EEB7951EA6825BD8F0F5C7C /* README.md */, + 0C8A5ACEDCFCD0396BDDE985B5B2700A /* RNGestureHandler.h */, + C2C113C82B064D9F09A75FF1B1E8A2FB /* RNGestureHandler.m */, + A5AF3C392D5CFECECBC5E3221C393D3F /* RNGestureHandlerButton.h */, + 5ACC6896DC9C198D03B1183295897EFC /* RNGestureHandlerButton.m */, + 329DC7A633BAB76938D6214F8A7A7D35 /* RNGestureHandlerDirection.h */, + FA8D33F24E77B5DEC4B298DA68780BE8 /* RNGestureHandlerEvents.h */, + D400D934A2849471466218B8F60D46C6 /* RNGestureHandlerEvents.m */, + 8FD0DFA6661DE03F251336C50BA56578 /* RNGestureHandlerManager.h */, + D501F2EDE2698FD9A2CF24928AB10B2D /* RNGestureHandlerManager.m */, + 4B2C5CF3A41C270913C7F523DC4F09EF /* RNGestureHandlerModule.h */, + 39EA084BB2A4266A7CF778C94C6DF124 /* RNGestureHandlerModule.m */, + 996FDEC30EB0580430CF5ED5D554EA05 /* RNGestureHandlerRegistry.h */, + A7D58D0EA02BB76DC06B12ECBA7F98C2 /* RNGestureHandlerRegistry.m */, + 9D0F083E8592F1F28DB118F4EC642305 /* RNGestureHandlerState.h */, + EB073CD71C8EC16275D6B7ECF0B92D55 /* RNRootViewGestureRecognizer.h */, + 47F989B94765482BFD24D2F8FFBF61DC /* RNRootViewGestureRecognizer.m */, + 50620F6D22ACF23DC90427435DAEC039 /* Handlers */, + 2C1C3AB8966602357A75D53C8361D41C /* Pod */, + E5274CA91931B67698AD072C6EF4CD38 /* Support Files */, + ); + name = RNGestureHandler; + path = "../../node_modules/react-native-gesture-handler"; + sourceTree = ""; + }; + BB910FAA89DB1DB48A269F796360DDA4 /* Pod */ = { + isa = PBXGroup; + children = ( + 7F2CBBD70B6F88CACA6CE5B43166A56F /* UMReactNativeAdapter.podspec */, ); name = Pod; sourceTree = ""; }; - BB112B1428A15475EFB4426A405FF7E2 /* RefreshControl */ = { + BBA382AD9734974457AAFFCAB5797ED6 /* RCTSettingsHeaders */ = { isa = PBXGroup; children = ( - BDB692241C92CA225252AEABAEC15D9F /* RCTRefreshableProtocol.h */, - 3A0F82FC8E543DE98A2ACB23CE52A960 /* RCTRefreshControl.h */, - 6258E6EF9E8CD1193204427CC6AFFC6E /* RCTRefreshControl.m */, - E3E3D986F55303FD249D648C662FC6A5 /* RCTRefreshControlManager.h */, - 91C9001DC2995C2676B8F6DFFC44F09A /* RCTRefreshControlManager.m */, + 219931B3E45A613A5805F42527116231 /* RCTSettingsManager.h */, + 2F0C67D3A613AAE0E62B18C637A57394 /* RCTSettingsPlugins.h */, ); - name = RefreshControl; - path = RefreshControl; + name = RCTSettingsHeaders; sourceTree = ""; }; - BB1ED37B11A273E7ED15884E01A49464 /* ios */ = { + BC079A9FE2D5AA718DCC4B0DF82F5326 /* Support Files */ = { isa = PBXGroup; children = ( - 6080F667BA4C8DBB344B350BA981E929 /* RCTTurboModule.h */, - 5C756581AB88D6880122C38CC658BCB0 /* RCTTurboModule.mm */, - E974C64B2F6DDAA335304461A064BA87 /* RCTTurboModuleManager.h */, - 1E83938C524F8F5A17A8F7FD3FDD03B6 /* RCTTurboModuleManager.mm */, + 9BAEDC2A0F83594107D093CAF4138F50 /* EXWebBrowser.xcconfig */, + 02358F229DE8AC7C2942F97A400A0B38 /* EXWebBrowser-dummy.m */, + 889CF8B7AAAAA8A91670C85BD35D4148 /* EXWebBrowser-prefix.pch */, ); - name = ios; - path = ios; + name = "Support Files"; + path = "../../../ios/Pods/Target Support Files/EXWebBrowser"; sourceTree = ""; }; - BBA46CC960FEF03FF532D949F317CE03 /* Pod */ = { + BCD57B903E7160809BD2F6B6AAC397BD /* converters */ = { isa = PBXGroup; children = ( - F6C46D21BE0A2441A6384EEFB91F7ACA /* LICENSE */, - B873DE6CCB46CA30C83644140F52C62B /* react-native-safe-area-context.podspec */, - 1A7B039C29307375F1B0ABD08E3E46AF /* README.md */, + C58AB2A65F439CAF0F3F52271B89C5B8 /* RCTConvert+UIBackgroundFetchResult.h */, + 35790A06CA6341A8862F31EE0036A964 /* RCTConvert+UIBackgroundFetchResult.m */, + ); + name = converters; + path = RNFirebase/converters; + sourceTree = ""; + }; + BD10DF67FD38D94878EC204958A97A64 /* Pod */ = { + isa = PBXGroup; + children = ( + 69EEC607DDAB4D884B6BC34D8A040FA4 /* LICENSE */, + 718043431240AAFA802E235A1E5B23A4 /* README.md */, + 895BA921EBE122C396858FCFBC52C9CA /* RNScreens.podspec */, ); name = Pod; sourceTree = ""; }; - BD01F6F265EAF44ABC9D9C4EF2AA9527 /* analytics */ = { + C00B7053BFF6A62C3C6D015A3A3510D2 /* RNFastImage */ = { isa = PBXGroup; children = ( - E6EEFCFD363248FF906BA5F5B0A32E75 /* RNFirebaseAnalytics.h */, - 7C62E93D5388B7592EDAB0D07709AE40 /* RNFirebaseAnalytics.m */, + D14357FAA97904A82A822AF6ADDE9B66 /* FFFastImageSource.h */, + 86257A97ADDBD4BB3AC0EA25D1E1191B /* FFFastImageSource.m */, + E628938263C2178EBF71B1FA2E84FBF6 /* FFFastImageView.h */, + E9579DC85087657D5B0F17AFDE446A38 /* FFFastImageView.m */, + 0F0A7636B11BE0C89E122CA2C9F175B5 /* FFFastImageViewManager.h */, + 4919EAAE3570A94883BB9DFCC0A8654D /* FFFastImageViewManager.m */, + D047F15DED537FA1AF41E4476B46447E /* RCTConvert+FFFastImage.h */, + 71EAB343DAEF9715E19AF441DAF4D377 /* RCTConvert+FFFastImage.m */, + 264884825172409ECB29DE30F0EC9516 /* Pod */, + 87A5D2BC48FF85E81C04229BB13310D3 /* Support Files */, ); - name = analytics; - path = RNFirebase/analytics; + name = RNFastImage; + path = "../../node_modules/@rocket.chat/react-native-fast-image"; + sourceTree = ""; + }; + C059B0CB56DE4BD87C52E029695B9CD0 /* ReactCommon */ = { + isa = PBXGroup; + children = ( + 8444A2FB4011FCDF080AF7F2B7BDA414 /* callinvoker */, + B3FFE1481A079002C7D25101DF23A309 /* Support Files */, + 03935AEED0233E5E0069D327ADED3551 /* turbomodule */, + ); + name = ReactCommon; + path = "../../node_modules/react-native/ReactCommon"; sourceTree = ""; }; C0E7A22E5C445960EED35B0EAEC61E96 /* FlipperKitNetworkPlugin */ = { @@ -15757,59 +15849,15 @@ name = FlipperKitNetworkPlugin; sourceTree = ""; }; - C15CADC6370864CD11E29C48D8214078 /* Modules */ = { + C11D7F04E2B894209FA573906329D7C0 /* UMCameraInterface */ = { isa = PBXGroup; children = ( - 7B6D26A831CE82E291EBDB3E08181A0B /* RCTEventEmitter.h */, - 381EE808730B845CBEACA73A6C0A99BB /* RCTEventEmitter.m */, - 76562F5F8706D4210AA85753CB3215FA /* RCTI18nUtil.h */, - 2D1897FAFE5D5F8C700B53AD1E489BE0 /* RCTI18nUtil.m */, - B9EAE944D077E66FA8DEE13865B489B0 /* RCTLayoutAnimation.h */, - 6B6C97675A37EFAC4203BE9D24797F2D /* RCTLayoutAnimation.m */, - AFD37B29F35DDD37893B7883D8662A56 /* RCTLayoutAnimationGroup.h */, - A2C604A5CBE7F32526D81258BAF2A7CE /* RCTLayoutAnimationGroup.m */, - 8E9324CC0326A8408FF7A078995E113D /* RCTRedBoxExtraDataViewController.h */, - FDD46653AD02B0C0FB80E8DD6D577764 /* RCTRedBoxExtraDataViewController.m */, - F5DBA3F2E8CDCBEF00EBF286758F73E4 /* RCTSurfacePresenterStub.h */, - C0CDD00DDFA68C0DF72E3957B9D462CF /* RCTSurfacePresenterStub.m */, - E53AEEF65E5EA757BE3F9EE86AD64F87 /* RCTUIManager.h */, - C4819B006A4CB7BDE21A5A4D9D1239BF /* RCTUIManager.m */, - 06A065E51F4D81504E316C27A77D26C1 /* RCTUIManagerObserverCoordinator.h */, - 31544FA1A34C77D66C793534B5D01D8F /* RCTUIManagerObserverCoordinator.mm */, - 3C4A7193D1505AB4E7B8EEB458479E5B /* RCTUIManagerUtils.h */, - 25551C2EFCC1B8A180FFC6ED5CACC156 /* RCTUIManagerUtils.m */, + B35F7E8E13BCEC2B5A18C668D26E642F /* UMCameraInterface.h */, + A2C08275B7AC7F50D79712C9E5DC95CC /* Pod */, + 2EFF6ABD2FF999AAF512837E58103D52 /* Support Files */, ); - name = Modules; - path = React/Modules; - sourceTree = ""; - }; - C17C119265C79EB985DA81D2CA0DB6D4 /* ViewManagers */ = { - isa = PBXGroup; - children = ( - 2C2F1EF0A75899E0297AE7C0ED554440 /* ARTGroupManager.h */, - A6CB24B50A72644E27C2B50F6A4FD641 /* ARTGroupManager.m */, - 90B5D4FA2839C90675EB5D0AAA62BFF8 /* ARTNodeManager.h */, - 653690A988FDAE65DF8631ABF83513FB /* ARTNodeManager.m */, - 522A8FF859ABCC748887C4355C5DD8BB /* ARTRenderableManager.h */, - 183E61566B54F596580EB43C7A97F866 /* ARTRenderableManager.m */, - 203227B7E5F123C2C18C807954C432A9 /* ARTShapeManager.h */, - CFDE95EB166389A17BCDB994E0C3BE14 /* ARTShapeManager.m */, - FF7A46FBAAA619DA4120EFA07966DA0E /* ARTSurfaceViewManager.h */, - 6709F8F6033B97457E1E19BCF1304EB8 /* ARTSurfaceViewManager.m */, - C1BC8CA70E28EA5EF4D34F254C9D63C3 /* ARTTextManager.h */, - 0B54E1D7B3FDC8FE90C21E035DC2B477 /* ARTTextManager.m */, - ); - name = ViewManagers; - path = ios/ViewManagers; - sourceTree = ""; - }; - C1A9E9980F7D58C16C2CA53D7C41F9ED /* Support Files */ = { - isa = PBXGroup; - children = ( - 6B372B63DDB5329AEF0838FD23034936 /* UMImageLoaderInterface.xcconfig */, - ); - name = "Support Files"; - path = "../../../ios/Pods/Target Support Files/UMImageLoaderInterface"; + name = UMCameraInterface; + path = "../../node_modules/unimodules-camera-interface/ios"; sourceTree = ""; }; C2044A4BC878759D6A621D958E340462 /* FirebaseAnalytics */ = { @@ -15822,24 +15870,48 @@ path = FirebaseAnalytics; sourceTree = ""; }; - C2A1559A5E9E3D2C431B6D27FFB2E82D /* UMImageLoaderInterface */ = { + C26E12B4888B1AB2186531501842F2A6 /* RNDateTimePicker */ = { isa = PBXGroup; children = ( - 52AEAC0B41502A6E3712BEB90D9E8EC6 /* UMImageLoaderInterface.h */, - 1B726160768B9D92E1F2C13CF497AE30 /* Pod */, - C1A9E9980F7D58C16C2CA53D7C41F9ED /* Support Files */, + 155BD20FEC2D6644EBC5AD7D346012B5 /* RNDateTimePicker.h */, + 79DA77C222099A6FB5A493355E54E9CF /* RNDateTimePicker.m */, + BEDA74E4AE6E9223E6529946F29BB572 /* RNDateTimePickerManager.h */, + 6AB85D67ED6BBEFFF728A5B2FDCE90F9 /* RNDateTimePickerManager.m */, + 1759960005F9F14E1D298897928ED6FF /* Pod */, + 6063B3189F1A147FC775ACDF096D2784 /* Support Files */, ); - name = UMImageLoaderInterface; - path = "../../node_modules/unimodules-image-loader-interface/ios"; + name = RNDateTimePicker; + path = "../../node_modules/@react-native-community/datetimepicker"; sourceTree = ""; }; - C2D5468CE3FCDDDAE11CF6D139E212BC /* Support Files */ = { + C2B0AB18E5B820C1AFE17ECDC5A59360 /* RNDeviceInfo */ = { isa = PBXGroup; children = ( - 5D2B02C30C03507A4EC318CD198E032A /* UMFontInterface.xcconfig */, + 5F6F803080EC7233FE2E0366B906B720 /* DeviceUID.h */, + CA1B7FEDA86A8D14935CADECB5540CBC /* DeviceUID.m */, + 11B93378FF4BA7D70A5B6DF266EE4358 /* RNDeviceInfo.h */, + 478A8F266F78C102886EA488C4B0E0E1 /* RNDeviceInfo.m */, + 4AA977867DE063DF54290BDC02D92549 /* Pod */, + 9C185A72740841064436B7675BDBA488 /* Support Files */, ); - name = "Support Files"; - path = "../../../ios/Pods/Target Support Files/UMFontInterface"; + name = RNDeviceInfo; + path = "../../node_modules/react-native-device-info"; + sourceTree = ""; + }; + C3629BB0964989BFCD5A01D873D52563 /* SafeAreaView */ = { + isa = PBXGroup; + children = ( + 09B37705AC1DB27483F491055BB8BA47 /* RCTSafeAreaShadowView.h */, + 3FE2F9DE1939F09C2C49717FD3292786 /* RCTSafeAreaShadowView.m */, + 7B1DD2412AE65552F5D046C53B4E51FF /* RCTSafeAreaView.h */, + C05399A912AE7E3A02AEA641DBCCCB65 /* RCTSafeAreaView.m */, + 6F29E665FBF0798C3DD682B569A0FAC8 /* RCTSafeAreaViewLocalData.h */, + E467F6389545E7EF2C34977C096EE289 /* RCTSafeAreaViewLocalData.m */, + 9BBE83C00E1454A6987265E27BEF4559 /* RCTSafeAreaViewManager.h */, + EC3D5971D31870ED99985B1E42FB92C8 /* RCTSafeAreaViewManager.m */, + ); + name = SafeAreaView; + path = SafeAreaView; sourceTree = ""; }; C445442E593BC4CF59AE90FD35C8AAF5 /* Support Files */ = { @@ -15852,44 +15924,14 @@ path = "../Target Support Files/FirebaseInstallations"; sourceTree = ""; }; - C447DE37E8999BE13AC6EE5FA7663FAB /* DevSupport */ = { + C4E084EE43E1C05F929DC206DDE1035E /* notifications */ = { isa = PBXGroup; children = ( - FA9DD52D3ED759F100B2EDAFDF5E699C /* RCTDevLoadingView.h */, - 443BB3D0D8491A15B4E8DF3A73DE016D /* RCTDevLoadingView.m */, - 3F7005D6F70287937B451E5C38FB180B /* RCTInspectorDevServerHelper.h */, - 5962B2E1763F0298920CAE87F9F6365D /* RCTInspectorDevServerHelper.mm */, - 916C8D170D3596242144EB807F11113B /* RCTPackagerClient.h */, - F5AD7442235FB6BDB4ED75B9F5F8A9DB /* RCTPackagerClient.m */, - C94E090C7AA8B2A12C7852C77FF192F2 /* RCTPackagerConnection.h */, - 92D5EA8127BD486680F99368655E6E32 /* RCTPackagerConnection.mm */, + 6BA5908D25EA639F1F010452B4AAB9EF /* RNFirebaseNotifications.h */, + CA62B316E8E8936B1BFBB3C5CC0469FD /* RNFirebaseNotifications.m */, ); - name = DevSupport; - path = React/DevSupport; - sourceTree = ""; - }; - C4FAA5B2484BC06072052CB0D4AC9B5F /* Support Files */ = { - isa = PBXGroup; - children = ( - 7D762E43B438E1B0A696CE4CF33E1D2F /* RNVectorIcons.xcconfig */, - 6473A1A5035B1F43BB549E01BEF8EB93 /* RNVectorIcons-dummy.m */, - D85ACF279A6EAE02EC6B4ABCFF66207E /* RNVectorIcons-prefix.pch */, - ); - name = "Support Files"; - path = "../../ios/Pods/Target Support Files/RNVectorIcons"; - sourceTree = ""; - }; - C56B6E4DC08FD464B4569419D3E5E42F /* Drivers */ = { - isa = PBXGroup; - children = ( - AA531003DDE8FDDEBA57CA4EAB5089AD /* RCTAnimationDriver.h */, - AC9588F1D3452A95C29AADEAE2654DAC /* RCTDecayAnimation.h */, - D18F95E7F3C8C615CDFB0C61CE2BA37D /* RCTEventAnimation.h */, - 029C1BABC6D0EB3908C82817D94E6D87 /* RCTFrameAnimation.h */, - 07AF9A5578F23EBDE628D7A0CD44EE44 /* RCTSpringAnimation.h */, - ); - name = Drivers; - path = Libraries/NativeAnimation/Drivers; + name = notifications; + path = RNFirebase/notifications; sourceTree = ""; }; C5BC7726B44A676BC4CB5F5335A68A17 /* Support Files */ = { @@ -15901,48 +15943,6 @@ path = "../Target Support Files/OpenSSL-Universal"; sourceTree = ""; }; - C5C562542E1C23329F20B86637262D18 /* Support Files */ = { - isa = PBXGroup; - children = ( - B17F6AAE182AF3E3A8FD25F42D0C1C87 /* React-RCTNetwork.xcconfig */, - 276BFC8506A1910A5AD973FEAEFB2BD6 /* React-RCTNetwork-dummy.m */, - 1A6472F58B3F93C36DF8E6328DB2BC31 /* React-RCTNetwork-prefix.pch */, - ); - name = "Support Files"; - path = "../../../../ios/Pods/Target Support Files/React-RCTNetwork"; - sourceTree = ""; - }; - C5CC8AC01C3B8A00A916BE9550337C77 /* Support Files */ = { - isa = PBXGroup; - children = ( - 4149C036165F6D00E7345C44173AC0C4 /* RCTRequired.xcconfig */, - ); - name = "Support Files"; - path = "../../../../ios/Pods/Target Support Files/RCTRequired"; - sourceTree = ""; - }; - C63DB56158A40CE847D9504A270AC54A /* RNDateTimePicker */ = { - isa = PBXGroup; - children = ( - 00D1A29C97764FB371DCC4BB85B342F6 /* RNDateTimePicker.h */, - 401D6E755CD3B998E73591B856E4DA14 /* RNDateTimePicker.m */, - A94BEBCFD78E12A3722A2AA65B282DA0 /* RNDateTimePickerManager.h */, - DBB7788A06D05618E07B0B1B9644E3F0 /* RNDateTimePickerManager.m */, - D5B23C46F69BBFCDD5348F47191613D6 /* Pod */, - CD02C23233A6E4047811A64D9564A018 /* Support Files */, - ); - name = RNDateTimePicker; - path = "../../node_modules/@react-native-community/datetimepicker"; - sourceTree = ""; - }; - C67A0E6AAA8F1033C8EA52378A6606BC /* Pod */ = { - isa = PBXGroup; - children = ( - 65DC7EBD28B2C650FBDC9581AB10F889 /* EXAppleAuthentication.podspec */, - ); - name = Pod; - sourceTree = ""; - }; C69C7333B7F9E260427AE8725E1FFDCF /* Support Files */ = { isa = PBXGroup; children = ( @@ -15954,32 +15954,25 @@ path = "../Target Support Files/Flipper-Glog"; sourceTree = ""; }; - C707852EF210B5DD282D40572211E829 /* react-native-safe-area-context */ = { + C706466EC4B1E217B4778A1BB4EBEAF3 /* Nodes */ = { isa = PBXGroup; children = ( - 6A3900AA83F87E3377256675111C8DFD /* RCTView+SafeAreaCompat.h */, - A2E4A8E1BBA2C9D7FA64DD67F7403DD0 /* RCTView+SafeAreaCompat.m */, - 0DC98997424B18CC73CB93D3C00FFEDB /* RNCSafeAreaProvider.h */, - B3648D2D15D59DC311C3D5148E86B72A /* RNCSafeAreaProvider.m */, - 75837F0DE68E61DE16C1B5C9520E90BF /* RNCSafeAreaProviderManager.h */, - E555307E8E5A077248C236B23FD72B3D /* RNCSafeAreaProviderManager.m */, - 1A7AEEC1C24F87D64A9A5FB6FD6B6539 /* RNCSafeAreaShadowView.h */, - 473D39B5852C9156257BE56DF22F3A38 /* RNCSafeAreaShadowView.m */, - E481E4C8F8218D44428C1C7ED1AF79F3 /* RNCSafeAreaView.h */, - FC68D9162CBA36911F5898E1AEAA0A3B /* RNCSafeAreaView.m */, - 690389F5E10DA39DE49214507DD19D78 /* RNCSafeAreaViewEdges.h */, - B86E9D751996B3935492481335FA6C60 /* RNCSafeAreaViewEdges.m */, - F7A0FBDCCD90814E8084C90BA1BAA2AB /* RNCSafeAreaViewLocalData.h */, - 379625BE5B27420085234B6B8BF607D0 /* RNCSafeAreaViewLocalData.m */, - 93B71F85D013AD75E8796FA20E4D523C /* RNCSafeAreaViewManager.h */, - 799C66ABBD581DDD88595D23EE45D9DD /* RNCSafeAreaViewManager.m */, - 89B66AA65776D5D011CDADCFCB4F1093 /* RNCSafeAreaViewMode.h */, - BAEAFDD188CD0F7613AD9D7734ADFC80 /* RNCSafeAreaViewMode.m */, - BBA46CC960FEF03FF532D949F317CE03 /* Pod */, - 56CB59F734C755F10DA425C075879FEE /* Support Files */, + 6E0B44A004F1EF63F6E963268DD21C2A /* RCTAdditionAnimatedNode.h */, + 54929942CD3B304BCBACED3577A551D5 /* RCTAnimatedNode.h */, + AFFD5A677E453A8EBFFDB95411C36F12 /* RCTDiffClampAnimatedNode.h */, + E67603E5319D2A076DD7532744C6EB24 /* RCTDivisionAnimatedNode.h */, + ADC029174C414146767FB794F08E18DF /* RCTInterpolationAnimatedNode.h */, + 9F71BB6C150C9561A8F81C26D5B6072D /* RCTModuloAnimatedNode.h */, + 73EE8687E6D48FEE79F189234F943459 /* RCTMultiplicationAnimatedNode.h */, + 0743141D8418C1A30DAD5A62843860FB /* RCTPropsAnimatedNode.h */, + D250F0883792162B480F14F15C08D081 /* RCTStyleAnimatedNode.h */, + 813E2591B78AB2F816E30E147390CBB9 /* RCTSubtractionAnimatedNode.h */, + 340ED29903801A2D2027931C0A257BA3 /* RCTTrackingAnimatedNode.h */, + 3E27859F0D8EA8982399668BD3F83DFC /* RCTTransformAnimatedNode.h */, + B8213C1146F242DC3EF093DFBB0A945E /* RCTValueAnimatedNode.h */, ); - name = "react-native-safe-area-context"; - path = "../../node_modules/react-native-safe-area-context"; + name = Nodes; + path = Libraries/NativeAnimation/Nodes; sourceTree = ""; }; C710F78489756BA6EDF2E39408A446B1 /* Support Files */ = { @@ -15993,131 +15986,71 @@ path = "../Target Support Files/DoubleConversion"; sourceTree = ""; }; - C751EA224DAC549B9BD459458C4407BC /* Support Files */ = { + C7326BB75F6FCDA8180247A0A93CD28E /* UMAppLoader */ = { isa = PBXGroup; children = ( - FAE1EDA8C27D4883EC4479E376EDA087 /* UMPermissionsInterface.xcconfig */, - CFE7BFE58F1EC912851ACA188960FAA9 /* UMPermissionsInterface-dummy.m */, - 867CAF5B22EC96C7FAF2D9FEBDE794F8 /* UMPermissionsInterface-prefix.pch */, + B51908D587BB63DC563FC6F15AC054C8 /* UMAppLoaderProvider.h */, + 9F95B7430831BB3264E99F2ECD0494D4 /* UMAppLoaderProvider.m */, + 8932D3F7DA9C3C5C9E367F8BDED955F5 /* Interfaces */, + 1803EC7791F3EDCA9C1D6CDB0B55F550 /* Pod */, + 44D6F295C292060A6C7D394872F76745 /* Support Files */, ); - name = "Support Files"; - path = "../../../ios/Pods/Target Support Files/UMPermissionsInterface"; + name = UMAppLoader; + path = "../../node_modules/unimodules-app-loader/ios"; sourceTree = ""; }; - C77D241DC3FE4B81336FC547EB076024 /* Pod */ = { + C77A8C7A58D10ADD35D65AB729F7A58F /* functions */ = { isa = PBXGroup; children = ( - AA61A310B696E563645519817B84CD91 /* UMSensorsInterface.podspec */, + 6348A4ACAEE5E3271B1A6A9A7DAA9154 /* RNFirebaseFunctions.h */, + 25299E74E57A0AC8BAFDBED3EBCA680F /* RNFirebaseFunctions.m */, + ); + name = functions; + path = RNFirebase/functions; + sourceTree = ""; + }; + C9257BDF5B9392B420B242539CC5E31D /* Pod */ = { + isa = PBXGroup; + children = ( + C2ECDA3334C5C2C8D3905F13DF2B2E68 /* EXKeepAwake.podspec */, ); name = Pod; sourceTree = ""; }; - C7D4753E1A7BCA6EED1A3C255A57F95E /* UMFaceDetectorInterface */ = { + C99C847DEB87BE16DACD9F1E84179992 /* react-native-safe-area-context */ = { isa = PBXGroup; children = ( - A5D5568A07B4779107F09DCBA5369C8E /* UMFaceDetectorManager.h */, - 74F235836617F870DA81A96E2071E3F9 /* UMFaceDetectorManagerProvider.h */, - 4532E1AC9DA617EBCF83479C74103116 /* Pod */, - 33E16EF53E0DD3D0E1F253D4EE6F3AA6 /* Support Files */, + 43071553AC045D2CD70F487D1D378897 /* RCTView+SafeAreaCompat.h */, + 325DB89FBB298D1E53FDDF619466097F /* RCTView+SafeAreaCompat.m */, + E22A9D5EEF614A05576A5B6C33F25CE0 /* RNCSafeAreaProvider.h */, + 491897499B0006206DACF8971EFC2E9A /* RNCSafeAreaProvider.m */, + D6F9CB4C309F68636C64074C5475CB51 /* RNCSafeAreaProviderManager.h */, + 5CE3EFC7D18F69D1E674D1A862A3C23E /* RNCSafeAreaProviderManager.m */, + D420AE4BA9B45717CC7950B4CC063655 /* RNCSafeAreaShadowView.h */, + 3D242988DC8370E44FB5E929F942516D /* RNCSafeAreaShadowView.m */, + D411AA4649BB99BC6B74804C19F46E1E /* RNCSafeAreaView.h */, + 66B4ED8E409E95AAAAC1C14C121B3A4B /* RNCSafeAreaView.m */, + B803F2945A9EC1D4D6F4A508E76A39FD /* RNCSafeAreaViewEdges.h */, + F8A2C80712E2830ECB9873DCB6A00ED9 /* RNCSafeAreaViewEdges.m */, + AD0B04DF894CA0F11A1EFF61329BAAC5 /* RNCSafeAreaViewLocalData.h */, + 85A0955D86E4C98A00DB4C29038EA8E8 /* RNCSafeAreaViewLocalData.m */, + 235CB33ECE9E46D4D8063E8B101D6DC2 /* RNCSafeAreaViewManager.h */, + 46D5095CD1417D745D56DE8A24297F6B /* RNCSafeAreaViewManager.m */, + 1A6CF2D002AFB3235B3239C9F964B9A0 /* RNCSafeAreaViewMode.h */, + A350542A58D4A22D9930D1AA009C76A7 /* RNCSafeAreaViewMode.m */, + 1DA352D4CDB2B7B2BBD5E77DC741A3E2 /* Pod */, + AD5B1B55D0DBCB091C5C0DCC54F1FC12 /* Support Files */, ); - name = UMFaceDetectorInterface; - path = "../../node_modules/unimodules-face-detector-interface/ios"; + name = "react-native-safe-area-context"; + path = "../../node_modules/react-native-safe-area-context"; sourceTree = ""; }; - C97AD079866FF412E88ADF0012A68C29 /* Support Files */ = { + C9A548BCE601A64A9BCAFCB3CE3AEF49 /* Pod */ = { isa = PBXGroup; children = ( - 663D2FB7BE11E42950372FC16A69A8DE /* RNFastImage.xcconfig */, - 7C30C30074F4C0A197B79ED68957C6ED /* RNFastImage-dummy.m */, - F7D1D36337ECA72485D5817D13522685 /* RNFastImage-prefix.pch */, + A81873EB7106563CF355F079BEDA8040 /* React.podspec */, ); - name = "Support Files"; - path = "../../ios/Pods/Target Support Files/RNFastImage"; - sourceTree = ""; - }; - C994F9CA386F5D146AB6275DDA0ACB58 /* Development Pods */ = { - isa = PBXGroup; - children = ( - 0F7067B2B36F003E69A4DAB0A768A9A8 /* BugsnagReactNative */, - 2D08631F78712C1B13DFC454C6A721A9 /* EXAppleAuthentication */, - CFB8C1A208841D481B61B95B463DA117 /* EXAV */, - 247B1300D13C1611C7F59AB97414AD50 /* EXConstants */, - A3B5CCE2A3D44117B0F1B14E2A1BC6B2 /* EXFileSystem */, - 8A14AEF962D8A98A959A8A28FFD80099 /* EXHaptics */, - CF395261A5FB97FBEFAF43E4CEFCAE2C /* EXImageLoader */, - 74B4CC0534C7AFF613170B15DF4E6E22 /* EXKeepAwake */, - 7A69BC9E31B660FD0D04786D5722995B /* EXLocalAuthentication */, - 101FF42C7904DE9D979F50F6F443FB2C /* EXPermissions */, - 7B7D62B3ADBDF5FD943A3683665DE51E /* EXVideoThumbnails */, - 2F0F7BB0491A7C6EB25A3ACC13673717 /* EXWebBrowser */, - ACFAEBF4C6C1A7053D0137F3437085BA /* FBLazyVector */, - 555D4A8EBD4041A0B52AA2F56957D6DA /* FBReactNativeSpec */, - 17FCFBABA3BEE8CE1EDED474A90D781B /* KeyCommands */, - 858CE34E11A8A610E14A8E58A1FDD044 /* RCTRequired */, - 7A39C7AFF8E3B0C1D9204C86F6DA2588 /* RCTTypeSafety */, - 08CA95BACAF838E76E27885FDF146257 /* React */, - 76E31D768139B42A0295F13E40189339 /* React-Core */, - CABEA27C53AFF7C0B514BB1656FD9F5C /* React-CoreModules */, - E8D0130BEEBD865783E051DCCB3D91BB /* React-cxxreact */, - 461D1E9F71F246EA74A92D336F337133 /* React-jsi */, - 22B8878C03FF0E845D30531EF34198D9 /* React-jsiexecutor */, - 022CDCB55D54F00EBD4BB6B240C8815E /* React-jsinspector */, - 1671EB795F52EEEDDD044A9107D7C23A /* react-native-appearance */, - 7174316D001163E013D06DECBF94C1B1 /* react-native-background-timer */, - 6F71257E6B9C99F6C8427C0987236D5A /* react-native-cameraroll */, - 9BBDED08BD901CB1D10B2FFDC62F8F58 /* react-native-document-picker */, - 61A1692F5A4B578EAF8EF4A23F6CD6A4 /* react-native-jitsi-meet */, - 78B6E09563CBBB52D2F5B8C7864D4301 /* react-native-notifications */, - 942026784B56774D5FFBB481548BC399 /* react-native-orientation-locker */, - C707852EF210B5DD282D40572211E829 /* react-native-safe-area-context */, - E39FD8676EB82286378081606B0A6A8D /* react-native-slider */, - F381048309BA1C1901E7EF2C9EEDB38E /* react-native-webview */, - 5BD3CDDAA18AEA0F7499B011397E3CA1 /* React-RCTActionSheet */, - 7BDABBB205135C97CD389299C2BADFF2 /* React-RCTAnimation */, - 8146BA21018A7B2664F3089B667CFA71 /* React-RCTBlob */, - 1A52D4B6AFA8602F4D6E078053FC4B7E /* React-RCTImage */, - 380DBB4F886FD18306B0100941C30DC1 /* React-RCTLinking */, - B77C011FAE805EDCD20822E9F44C0F2C /* React-RCTNetwork */, - 3EC524AB128B75456FB45376D6957A29 /* React-RCTSettings */, - 6DBE6BED24524D3B8AC0D2BE7659AE3B /* React-RCTText */, - 9262A2316A90CB9BDC512EE169A6AB4F /* React-RCTVibration */, - 5CE6AC589C5C4294462A7296BAF6484D /* ReactCommon */, - E5AA62D88ECD11B81CF4F7FC77E43FE8 /* ReactNativeART */, - FD3BA3B7E487DB54EDF067F293B88DDB /* ReactNativeKeyboardInput */, - B8875DFCD37D3B35E127C79DA8E94649 /* ReactNativeKeyboardTrackingView */, - F6FE39A766D890F4EABCFF0EAEDC4CB0 /* rn-extensions-share */, - D666E187BF297B6C04E56F41AE266B43 /* rn-fetch-blob */, - 8730E74AC6EE504B097AE7CB023D437B /* RNBootSplash */, - 3E59569D16CD6F05673EB5DE2284EAF9 /* RNCAsyncStorage */, - A7FE8EE23B062EB05226A784920F4B5F /* RNCMaskedView */, - C63DB56158A40CE847D9504A270AC54A /* RNDateTimePicker */, - 1025CE3A3508A0D6797CC0868926333A /* RNDeviceInfo */, - 18F3B84D071BF6E03A17202E54D4FD0A /* RNFastImage */, - E4D9761352C49BDDDCF1E019B7629188 /* RNFirebase */, - 7568F3FC5805FF88772A35996E118BCA /* RNGestureHandler */, - DAA23F099264B991B61FE60DEF365262 /* RNImageCropPicker */, - 4EEC1118E267BAB027555E67DC4C2B44 /* RNLocalize */, - 4918C3ED866941C93DA3FAEC45EAB269 /* RNReanimated */, - 02E1FA65B159716F1B71BBCBBC48444F /* RNRootView */, - A9102972D0D0EBC24A846628566EDB0C /* RNScreens */, - 3CF1DE621832047911CB90DA773D9C30 /* RNUserDefaults */, - B31CC9B5ABF0346CB1C310E703755CCC /* RNVectorIcons */, - 4A06001556AA7308EA70997ECE34506A /* UMAppLoader */, - F5EA1132D12EBE0D44C88A50126916F9 /* UMBarCodeScannerInterface */, - F5BA84817B455B52937635C1AF266E45 /* UMCameraInterface */, - 663891084B71F8392225208F585031EB /* UMConstantsInterface */, - 4DEDC9B6BA0086EA042F5365E4392AB3 /* UMCore */, - C7D4753E1A7BCA6EED1A3C255A57F95E /* UMFaceDetectorInterface */, - E2FC72AA47DB8A8EF8F6903024EA3D94 /* UMFileSystemInterface */, - 1116BC4E32F4BC8C3355FD27CB06BFAF /* UMFontInterface */, - C2A1559A5E9E3D2C431B6D27FFB2E82D /* UMImageLoaderInterface */, - B73F590C037EA64810F70D0F00FD3259 /* UMPermissionsInterface */, - FF5668EC16B58B916EF561EC6DDA9EEE /* UMReactNativeAdapter */, - 5B08F74F43DB6AA8D2D7C89F425E89D8 /* UMSensorsInterface */, - 82BB307478C72B3DF801D43367453AA5 /* UMTaskManagerInterface */, - 64DF6A39AFBA9668F142BB1022043253 /* Yoga */, - ); - name = "Development Pods"; + name = Pod; sourceTree = ""; }; C9ABAAABCFF465BD6C943A24482D145D /* Support Files */ = { @@ -16142,50 +16075,18 @@ path = "../Target Support Files/glog"; sourceTree = ""; }; - CABEA27C53AFF7C0B514BB1656FD9F5C /* React-CoreModules */ = { + CB92E3BBBE4FF45888713B9B693E9C9D /* BugsnagReactNative */ = { isa = PBXGroup; children = ( - F413EB8549ECEB611157781FBA189FF5 /* CoreModulesPlugins.mm */, - 9AF0129EA8B4E8F540AA07097DCCEED4 /* RCTAccessibilityManager.mm */, - 80CF828602B6DB507E88F991AE246BED /* RCTActionSheetManager.mm */, - BD5F3EF6EB0059568C5D5E1ACE4D16DF /* RCTAlertManager.mm */, - 52F3D7704D7909815C5F8B22E38B57D8 /* RCTAppearance.mm */, - E6E736646CFBF4EBA7384B1E486EE94E /* RCTAppState.mm */, - 16663CF894AFA1FC253A61AE2AC172FB /* RCTAsyncLocalStorage.mm */, - 47B935784748CD8C29C62EF1B15E2040 /* RCTClipboard.mm */, - D97E945EAB5262C724CF49D188714044 /* RCTDeviceInfo.mm */, - E183097BAB8F512043C9880F96EC7BE3 /* RCTDevMenu.mm */, - AF9BBCCCA38CF3024A8E55E70FC480AC /* RCTDevSettings.mm */, - 759214E0404777E80647BBF378BB40EA /* RCTExceptionsManager.mm */, - 6741F01CF2C988A856EB20335F1192E4 /* RCTFPSGraph.m */, - 675B2C2AFE90C3AE02FB47A8366ECCD7 /* RCTI18nManager.mm */, - C33745890C9F91ADF6EB4AB0EB5ECE70 /* RCTKeyboardObserver.mm */, - B8FF9CD3EB5A10C3E96DCF23DE830F73 /* RCTLogBox.mm */, - 934A92F5F919E8F07588C83383514BDA /* RCTPerfMonitor.mm */, - D88A67B31EF4DDFDB2555341940D783D /* RCTPlatform.mm */, - A657A818C7D66B71AF1E3C4B05C4962C /* RCTRedBox.mm */, - C1D5A570574B92F76B7BD7A8A1BDF5A3 /* RCTSourceCode.mm */, - BE5EBF9B9E5EF12CBD5AD12B3E6B42B2 /* RCTStatusBarManager.mm */, - 8703D2055FA62C7E75DC2CEC5F8A8D2A /* RCTTiming.mm */, - A844ABFB86195E29719BE7A3A70722D8 /* RCTTVNavigationEventEmitter.mm */, - 7AFD68A83DDE516F3EC744376B026DC2 /* RCTWebSocketExecutor.mm */, - BFF25A5890088FE3163334A7ED4D8814 /* RCTWebSocketModule.mm */, - ACB2DFF2E33E6E5F07A5D80D1C1EF6B8 /* Pod */, - 47C42C77AE6EA8C457516FAE62B37AE9 /* Support Files */, + AF165617754A4A94907ED4B9931CD212 /* BugsnagReactNative.h */, + ACFD73BE9A35CEA1289DA078EC4C6F01 /* BugsnagReactNative.m */, + D9BE6417E8BF3A50B554CE818FF39AF3 /* Core */, + F2291D93C879F47069F8AD5076C3217D /* Pod */, + D7973912F2086F32451E2F7104F446F0 /* Support Files */, + 47FF1439FC576199A237C98A169F79AF /* vendor */, ); - name = "React-CoreModules"; - path = "../../node_modules/react-native/React/CoreModules"; - sourceTree = ""; - }; - CB3AF880AEAA2464B866814E4AB8B022 /* Support Files */ = { - isa = PBXGroup; - children = ( - 68412A060E9246180930483E6972D374 /* EXFileSystem.xcconfig */, - F82298BC5DBE46DE8B924039E3EB09D6 /* EXFileSystem-dummy.m */, - B4825CFEDB0585F0E10F2E8B16198D66 /* EXFileSystem-prefix.pch */, - ); - name = "Support Files"; - path = "../../../ios/Pods/Target Support Files/EXFileSystem"; + name = BugsnagReactNative; + path = "../../node_modules/bugsnag-react-native"; sourceTree = ""; }; CBC2EDADC6F69074AC9A2B2A628E6E42 /* FirebaseInstallations */ = { @@ -16233,41 +16134,56 @@ path = FirebaseInstallations; sourceTree = ""; }; - CC5A7B321BEE4F736E178D1AF877EA74 /* CxxBridge */ = { + CBE25BA6000081FD935287946A505D27 /* Support Files */ = { isa = PBXGroup; children = ( - 4B85BFB057BF705D4CEA4E38A4925154 /* JSCExecutorFactory.h */, - 093068FC0E267C91415EDE13698C369A /* JSCExecutorFactory.mm */, - 0B7FF6573344CDA68FFC6BB1457E8553 /* NSDataBigString.h */, - 035AED08D71C220C5E407091F2A6CC0F /* NSDataBigString.mm */, - 35808B26E361D66266FCEDC142699F57 /* RCTCxxBridge.mm */, - CB247F3BE4B697A22587F15676F850EA /* RCTCxxBridgeDelegate.h */, - 99D5C8C0B6B045FFA224BAC71C1C3860 /* RCTMessageThread.h */, - 9640D0649B16529059D96E55D217B937 /* RCTMessageThread.mm */, - 2C8937263FFB2C59A5E5A48194035D49 /* RCTObjcExecutor.h */, - F52F69A8A78568067E27D7CA98BE4C69 /* RCTObjcExecutor.mm */, - ); - name = CxxBridge; - path = React/CxxBridge; - sourceTree = ""; - }; - CD02C23233A6E4047811A64D9564A018 /* Support Files */ = { - isa = PBXGroup; - children = ( - 510DE00B6A6C5033471591E3A351D1AA /* RNDateTimePicker.xcconfig */, - 617926486224D0C074E090159BA81200 /* RNDateTimePicker-dummy.m */, - 36006A5D327E48945D7E0C370C648DE9 /* RNDateTimePicker-prefix.pch */, + 11DBD2E827F7F79844C5E1DCCEDD3BCD /* UMImageLoaderInterface.xcconfig */, ); name = "Support Files"; - path = "../../../ios/Pods/Target Support Files/RNDateTimePicker"; + path = "../../../ios/Pods/Target Support Files/UMImageLoaderInterface"; sourceTree = ""; }; - CD9E977EE1D3C9829E74B5E00AEE7F24 /* Pod */ = { + CC122B26EEEB91B3E431BBC031BD6E3B /* RCTAnimationHeaders */ = { isa = PBXGroup; children = ( - DA113318C6CB1B615002F1D963BF9086 /* EXLocalAuthentication.podspec */, + 08ED769A31355E94E8B29A14CC12140F /* RCTAnimationPlugins.h */, + F23246D98774B014519F397FFFD5EDFD /* RCTAnimationUtils.h */, + FF4714A3879493644B3D4DC29109E32F /* RCTNativeAnimatedModule.h */, + 279DFE0F392F03FFE4686EC8AC1E9807 /* RCTNativeAnimatedNodesManager.h */, + F4253B7308BED0323718169486D73C40 /* Drivers */, + C706466EC4B1E217B4778A1BB4EBEAF3 /* Nodes */, ); - name = Pod; + name = RCTAnimationHeaders; + sourceTree = ""; + }; + CCA17EE3C3690193A80674B08D67709F /* RCTLinkingHeaders */ = { + isa = PBXGroup; + children = ( + DE06A06FE5187FC2B9612FB0A7C41939 /* RCTLinkingManager.h */, + 4FD80BB7AF33EAFDC716C40AA889522F /* RCTLinkingPlugins.h */, + ); + name = RCTLinkingHeaders; + sourceTree = ""; + }; + CCB0A0598CF7F4DDAB8652BDA68BB49D /* Support Files */ = { + isa = PBXGroup; + children = ( + 13AC71B6253B71FA0A15698F5F7817BE /* React-CoreModules.xcconfig */, + 76D660193F2384193780B23275856585 /* React-CoreModules-dummy.m */, + CE48061473F85F3DAA2E0178E25628F9 /* React-CoreModules-prefix.pch */, + ); + name = "Support Files"; + path = "../../../../ios/Pods/Target Support Files/React-CoreModules"; + sourceTree = ""; + }; + CDAEF8AEC43994949DA9D41CF469F235 /* RawText */ = { + isa = PBXGroup; + children = ( + A3E1769EF87D6BAF3AF5EC5E77CEC455 /* RCTRawTextShadowView.m */, + AB0D8208F0206723646686CE2F7EDCD5 /* RCTRawTextViewManager.m */, + ); + name = RawText; + path = RawText; sourceTree = ""; }; CDBD27982F4AECDE29B0BCB0DB89AF94 /* FlipperKitHighlightOverlay */ = { @@ -16279,21 +16195,40 @@ name = FlipperKitHighlightOverlay; sourceTree = ""; }; - CE334D4FE774D312554D8BD58CB7C00A /* UMModuleRegistryProvider */ = { + CE286024BFC7FB15C54AB65C797464FE /* CxxUtils */ = { isa = PBXGroup; children = ( - 0F10B8B6674550EA000A3ABB3BCA9273 /* UMModuleRegistryProvider.h */, - 094B2079D554B45CE52B8DB78B37ADE8 /* UMModuleRegistryProvider.m */, + 347C1369A1F9E9A6B99CC9B3E9CC2BE1 /* RCTFollyConvert.h */, + 83693D5451FDF4316F3F70951A39E917 /* RCTFollyConvert.mm */, ); - name = UMModuleRegistryProvider; - path = UMCore/UMModuleRegistryProvider; + name = CxxUtils; + path = React/CxxUtils; + sourceTree = ""; + }; + CEC7CD5FEB7F5774F20246773A48EB14 /* jsi */ = { + isa = PBXGroup; + children = ( + 91AA6E03E106485D4765994A8DE247C8 /* decorator.h */, + 216DF5C441FD73380BA2454F45BE4D14 /* instrumentation.h */, + 19298D512AA0D99DDA14EB516B188814 /* jsi.cpp */, + 699B7632AC09FCB0701F60DB2E4C7967 /* jsi.h */, + 564FE4F3C1E7F747E4B89EFE5CB8CD88 /* jsi-inl.h */, + D1799F590A945B2052C32F94A995465E /* JSIDynamic.cpp */, + C3E5869E1588794267E6340A86F54539 /* JSIDynamic.h */, + 41041D74CF1A153B6221896510014D66 /* jsilib.h */, + 4959DB2E841802837EE55AADD8292050 /* jsilib-posix.cpp */, + CA52F3E3FE3237E33EED21A84E91E617 /* jsilib-windows.cpp */, + A7186477CE3EFB969E49B458B0B8DF56 /* threadsafe.h */, + ); + name = jsi; + path = jsi; sourceTree = ""; }; CF1408CF629C7361332E53B88F7BD30C = { isa = PBXGroup; children = ( 9D940727FF8FB9C785EB98E56350EF41 /* Podfile */, - C994F9CA386F5D146AB6275DDA0ACB58 /* Development Pods */, + A49DD8474408026AA68F951F911B9968 /* Development Pods */, D89477F20FB1DE18A04690586D7808C4 /* Frameworks */, A798E741FBE2780C2247A64322076790 /* Pods */, 7580C6647A7E005D0E732BE95D3EDAD8 /* Products */, @@ -16301,44 +16236,45 @@ ); sourceTree = ""; }; - CF395261A5FB97FBEFAF43E4CEFCAE2C /* EXImageLoader */ = { + CF6B99CA49724ABFA45467689E523DD8 /* KSCrash */ = { isa = PBXGroup; children = ( - E721562F74F04D176D6F843613186636 /* EXImageLoader.h */, - BD9BD89BC0C5C60E9EAD7A81AEF71D12 /* EXImageLoader.m */, - 480ECE216EBC9B3B769B95077F785439 /* Pod */, - F7ACBD2E52F57141CB0F91C7B25449FF /* Support Files */, + 2302AC52873A96CAF3DFA33728A1AFCC /* Source */, ); - name = EXImageLoader; - path = "../../node_modules/expo-image-loader/ios"; + name = KSCrash; + path = KSCrash; sourceTree = ""; }; - CFB8C1A208841D481B61B95B463DA117 /* EXAV */ = { + CFA3C8C05C3472049C27FC584CCBA512 /* storage */ = { isa = PBXGroup; children = ( - E2AED86520903893606E05C7A2D91A43 /* EXAudioRecordingPermissionRequester.h */, - 3486F0BAF3DFB19D0DC2AB86584B4982 /* EXAudioRecordingPermissionRequester.m */, - AFB2F99EB1D0F838AAD992D65571C7EB /* EXAudioSessionManager.h */, - 0BF107D5D9DB209E57E52C2D601BFC40 /* EXAudioSessionManager.m */, - E416310D18DD3D674787588A75E53E4D /* EXAV.h */, - B6704FC3280FC62B58879C7FD72A1BB7 /* EXAV.m */, - E3FD50FC8643C8B1FDABAEB11FCC55B5 /* EXAVObject.h */, - 026D365C03F0738EBB8705648566148D /* EXAVPlayerData.h */, - F49072E3106022C4325A6F7AC7A47024 /* EXAVPlayerData.m */, - 5F703CFEEE07B41A508F85312EA62CFA /* Pod */, - A0B0E69071D422E89F8A9AFF6AECE6B8 /* Support Files */, - 9824DA50CDE37B270C88EFC711EA344C /* Video */, + CEB0D77A507A7BC67665B0AE8F76407E /* RNFirebaseStorage.h */, + CD7654D56F1B46D5C7FB152669A5DE9B /* RNFirebaseStorage.m */, ); - name = EXAV; - path = "../../node_modules/expo-av/ios"; + name = storage; + path = RNFirebase/storage; sourceTree = ""; }; - D09F2CCCE0B5BECE9759D5AF56E0DC67 /* Pod */ = { + D078512572E1955EF7741F8F1B319291 /* RCTRequired */ = { isa = PBXGroup; children = ( - 25683557B86FEB22A5831C6F008419E1 /* React-RCTActionSheet.podspec */, + FBE0FCA67C09C9EE5D7F24219E390E2C /* RCTRequired.h */, + 72E22EC69F58540BED4C7EF7A2E14730 /* Pod */, + 0EB1AB82C22F56CE5A3C895C9FF26452 /* Support Files */, ); - name = Pod; + name = RCTRequired; + path = "../../node_modules/react-native/Libraries/RCTRequired"; + sourceTree = ""; + }; + D0ADF067B62A8D397152EF28F27B2005 /* Support Files */ = { + isa = PBXGroup; + children = ( + 69FC4D209E239602E9E17B702963DB48 /* react-native-background-timer.xcconfig */, + 372DB417B8F87A158C454137856913C5 /* react-native-background-timer-dummy.m */, + 9097789ED6905591E55DDDCC38617199 /* react-native-background-timer-prefix.pch */, + ); + name = "Support Files"; + path = "../../ios/Pods/Target Support Files/react-native-background-timer"; sourceTree = ""; }; D112AD4DEDECFC9FE9A5F53B8BD63F8C /* FKPortForwarding */ = { @@ -16351,109 +16287,103 @@ name = FKPortForwarding; sourceTree = ""; }; - D2226D46095F80681CDF073214B64209 /* KSCrash */ = { + D19990B18A20B171CD845016191187A9 /* Filters */ = { isa = PBXGroup; children = ( - 26CB6B03B1B6A74D7E8525B3C972F701 /* Source */, + 83FC675644CE3B3C8013873E836AFB44 /* BSG_KSCrashReportFilter.h */, + 7CC7EB7774595B40CC66AF9C91DA7E4E /* BSG_KSCrashReportFilterCompletion.h */, ); - name = KSCrash; - path = KSCrash; + name = Filters; + path = Filters; sourceTree = ""; }; - D242A5FAE7D2C38C174312DC5E204960 /* Views */ = { + D1CD9309BE735D20913EB317EA407B12 /* Support Files */ = { isa = PBXGroup; children = ( - 082248F149CA01E5F5092279617FFF33 /* RCTActivityIndicatorView.h */, - BE326A8BBAF4AE76275FB5B30C2D2869 /* RCTActivityIndicatorView.m */, - C0DD9DF6859C411D62FA7DB0B4ADAB70 /* RCTActivityIndicatorViewManager.h */, - AF9C9C70D76802E90418693DC909EBB5 /* RCTActivityIndicatorViewManager.m */, - 24B4674663B10F5919335B67C8807E6E /* RCTAnimationType.h */, - 70B3C3AE5C2CDC52BD74F7C527EF126E /* RCTAutoInsetsProtocol.h */, - 37B394D80684978604DE1A7BBE048EE9 /* RCTBorderDrawing.h */, - 5A81C8324F3038F8CCD8CC6BD84FBE51 /* RCTBorderDrawing.m */, - 9CBBE1E99E32DCF4AAAA2E6EE13B85B3 /* RCTBorderStyle.h */, - AEF05B137E6222CA20F7C962A1AE1E34 /* RCTComponent.h */, - 040AA9DAA7862B475B2E5120A5EEF914 /* RCTComponentData.h */, - 77371F5FF68EF2101F411997A7F2A3DA /* RCTComponentData.m */, - 7E0E27B24E2B25BC67038E12CDDC0EBD /* RCTConvert+CoreLocation.h */, - 739CC36EF22AB6A559FB5581FD5EC465 /* RCTConvert+CoreLocation.m */, - 12EDE432BD3D8860F80EBFF04A6C53E4 /* RCTConvert+Transform.h */, - 418F58C2275BDE975AAB7658A777A532 /* RCTConvert+Transform.m */, - 00A208973A5C820DB58EA49C7ADFEB32 /* RCTDatePicker.h */, - 077B84BC0E5BCB688AF3980FA3447CFC /* RCTDatePicker.m */, - 2394FD30544F1A0E0D6827F674CAFF38 /* RCTDatePickerManager.h */, - 32A66B75467762CA4BE821738EB96B6D /* RCTDatePickerManager.m */, - 3CC873D1D6B745AC90DADC4CB32145AA /* RCTFont.h */, - E5D173BDA9C7CE1F83CBB562AED745EC /* RCTFont.mm */, - FA69A99024BDCBE4333176094838F08B /* RCTLayout.h */, - F5A35DF865955D1D0F752C21439DD2BB /* RCTLayout.m */, - 55A754F94E16C39635E2AF9354FBFA4B /* RCTMaskedView.h */, - 756E6084FBDF051F9DC7F4553649C4B0 /* RCTMaskedView.m */, - E8A93A2F6D99EEE18CCA27D6486437B7 /* RCTMaskedViewManager.h */, - ACB4201D7961B401EC845571B7E1E960 /* RCTMaskedViewManager.m */, - EF3CF074EFB514AB39C2972DA32E2ABA /* RCTModalHostView.h */, - F6D9633881EF5E6D8E4F89C510C6968F /* RCTModalHostView.m */, - 5C14E98BA965F968CFF8E6D76B8CD33C /* RCTModalHostViewController.h */, - 93D5D1140E791F42067DC156835CA7B0 /* RCTModalHostViewController.m */, - 6ABBF6A6D0FACB32AD2FDE3C593A3775 /* RCTModalHostViewManager.h */, - E198EDF62D4D911560F20BC10B47319D /* RCTModalHostViewManager.m */, - D83CB939607381669FBAA5BC805FFD91 /* RCTModalManager.h */, - 63BDBC2D3708BDA03D43E9A7001DDB9D /* RCTModalManager.m */, - 009E1A7B40B535EB77ACA21024028C42 /* RCTPicker.h */, - 2955E1F0E269B00A6DF445737D241CC5 /* RCTPicker.m */, - 70BA231528C44BD9AB5D994D37520985 /* RCTPickerManager.h */, - 2E5F66F8E856DEE00B552564AF706E9D /* RCTPickerManager.m */, - 560D612F81C9E8306A80EFA23F21AFF3 /* RCTPointerEvents.h */, - 5D23D21EB4044F0DCF536F1F68A0615F /* RCTProgressViewManager.h */, - 199009BB4DC631CE1BED656007525A3B /* RCTProgressViewManager.m */, - 7E4E7A3A90D98C8D9583F48BA556A809 /* RCTRootShadowView.h */, - 0D124C870BD1AD4EF03CD7AC69FA610F /* RCTRootShadowView.m */, - 106F6B8D6E0E1D4159EFC59CA49D35ED /* RCTSegmentedControl.h */, - E613C10854AA0E97A10A1F81C1CE65B1 /* RCTSegmentedControl.m */, - 36F1336686CF053FAF0D1F783F28DEDC /* RCTSegmentedControlManager.h */, - 9E7721F7CEB4EB662B6BCEA76FD28E5C /* RCTSegmentedControlManager.m */, - AD6619459190D5772FFED9BDD939E82D /* RCTShadowView.h */, - 08841ACBAD03EBFF0D2F52BD702B6CDA /* RCTShadowView.m */, - CA0BE73E7B2154150E2F4CEAB088D002 /* RCTShadowView+Internal.h */, - 7FBBBFE618BCE4C5D50EB9810A6637CD /* RCTShadowView+Internal.m */, - 359E24958405B6EDF860F722188F7647 /* RCTShadowView+Layout.h */, - 4F9CFEA5DE5CD59C3161B14BC08A7D4C /* RCTShadowView+Layout.m */, - 1E1749F8D2A7A46634E4C9E76C88DA67 /* RCTSlider.h */, - 835EC2AB03939CB3829F05F29BF62A32 /* RCTSlider.m */, - 5613065B221600F128B6FF6153943DAD /* RCTSliderManager.h */, - E37AF67FCF09E4158EF00B66B07F22C3 /* RCTSliderManager.m */, - 4B9AEFF14A0B7431D172233187A20862 /* RCTSwitch.h */, - E68CC1DF95728CD766E101D0963B0270 /* RCTSwitch.m */, - B4423D352B299A86B76B33FB2B911D68 /* RCTSwitchManager.h */, - 55C8AA679A3AD6B024B4E86F3ADE1654 /* RCTSwitchManager.m */, - 3B0BB472098B8C1333572351A2D915B6 /* RCTTextDecorationLineType.h */, - 12760B2ADEEB617BF703F0D43FEFCC77 /* RCTView.h */, - 2701234FB9632D24B2506BBBD4163530 /* RCTView.m */, - F626CA309CF77982C5504E2DAD7F257D /* RCTViewManager.h */, - 91D367B3158E8031400E77558EF77B03 /* RCTViewManager.m */, - B2A5B2891ADB13F1C0DE555A9C630A6F /* RCTWrapperViewController.h */, - D9E75B890724EA1F30A7C8E719D2E280 /* RCTWrapperViewController.m */, - D0D3A712CE905DA36F783872BBCC9C90 /* UIView+Private.h */, - 60124DCD1F20F3DFE9902D3F831F0CFA /* UIView+React.h */, - 4A1C7E7294D784E84D6A63A4ADF99834 /* UIView+React.m */, - BB112B1428A15475EFB4426A405FF7E2 /* RefreshControl */, - FEB30BCEF3A4F49DA247DB58582B834F /* SafeAreaView */, - E6826505C0C84794D1533471916E8641 /* ScrollView */, + FD565267FFB4070334FDBE9D3B727745 /* EXAppleAuthentication.xcconfig */, + 582C2A4462B529E5726252F83E30AAFA /* EXAppleAuthentication-dummy.m */, + 69AF65151DFEC6F1BA50B5CD3C49228E /* EXAppleAuthentication-prefix.pch */, ); - name = Views; - path = React/Views; + name = "Support Files"; + path = "../../../ios/Pods/Target Support Files/EXAppleAuthentication"; sourceTree = ""; }; - D5B23C46F69BBFCDD5348F47191613D6 /* Pod */ = { + D244D3D18662725278FBD7F0F781EB21 /* ScrollView */ = { isa = PBXGroup; children = ( - 2D6D7B9EFBE1AC81F29FC86693A8CAB1 /* LICENSE.md */, - 98FC2A234D724546E17110F349418D27 /* README.md */, - A98B1CDB4B1984AFE972010457F0498B /* RNDateTimePicker.podspec */, + 26F711C72BF23EDBF0FEE1F6D24E2D77 /* RCTScrollableProtocol.h */, + F5CCFB431F7C4C78274C702E5C5068EC /* RCTScrollContentShadowView.h */, + AC90E40536A4150AAD8796714CC5221C /* RCTScrollContentShadowView.m */, + A786107FDA8F3C5A5B92841E35A3A935 /* RCTScrollContentView.h */, + BA9ED6B28A9A074873F964B7DBA69E26 /* RCTScrollContentView.m */, + ADE2CC5B996CC3ACF2BFCB35026C18EA /* RCTScrollContentViewManager.h */, + 9D95CEB9C9C0B13F0DE264A05811E840 /* RCTScrollContentViewManager.m */, + D274AB23ADE37587DD0CFD72700BE333 /* RCTScrollEvent.h */, + 10C0B7CC1D09FF9456E6432C3AAEB02D /* RCTScrollEvent.m */, + 9B308CD0792C54830C61CB851D9F8EA2 /* RCTScrollView.h */, + 21A4E6E4B5F7E89DC64A29C0181F1681 /* RCTScrollView.m */, + B2470DA147041292B86B96DF99A86A05 /* RCTScrollViewManager.h */, + 7D26AF808C0663F5447E6935843F2B2B /* RCTScrollViewManager.m */, + ); + name = ScrollView; + path = ScrollView; + sourceTree = ""; + }; + D38E8877736A8F59F9AD35F6CACC3BE3 /* Pod */ = { + isa = PBXGroup; + children = ( + 17B6E203796A439F6B5F9DAFEF0C70A3 /* LICENSE.md */, + FB75CC17DF6EE4993179AFAEDD6BAAE1 /* react-native-document-picker.podspec */, + 12F285178BDD6B391BDB1020A4DCDE13 /* README.md */, ); name = Pod; sourceTree = ""; }; + D3EF89EBCDFDC9AF5268AA3F277C9CB0 /* UMPermissionsInterface */ = { + isa = PBXGroup; + children = ( + FB8DD48B45AF9489F3422CCD27B9D3BF /* UMPermissionsInterface.h */, + 5B6B4BC02A816B7BBEDECAF405C0C1FB /* UMPermissionsMethodsDelegate.h */, + BFD11B5FDE9ED168815BBE7C6FFABCB9 /* UMPermissionsMethodsDelegate.m */, + 232D6AF246FE0EF63B77AA187D35FF44 /* UMUserNotificationCenterProxyInterface.h */, + 20104AA91A6F13D528B030CDD18FD541 /* Pod */, + A4814781EA9971F89142234CBC32E80C /* Support Files */, + ); + name = UMPermissionsInterface; + path = "../../node_modules/unimodules-permissions-interface/ios"; + sourceTree = ""; + }; + D42A73C1C5E114ACB959E151D847942B /* Pod */ = { + isa = PBXGroup; + children = ( + 0B217D51308A68DF44C777F4D508D308 /* LICENSE */, + D0B6D98F368CB8B0BBCB008A32C54D43 /* react-native-webview.podspec */, + 033F019538DDE7D294F0051C7E1C4514 /* README.md */, + ); + name = Pod; + sourceTree = ""; + }; + D57894C85ED46CB5D40094DA60643922 /* Support Files */ = { + isa = PBXGroup; + children = ( + 59C0920E4C304B529F7BD975803B566E /* react-native-jitsi-meet.xcconfig */, + A90DDACC59AD11DBAF2AFC2B338DFBC4 /* react-native-jitsi-meet-dummy.m */, + 5DEF112859E8A98635A3519234ED4609 /* react-native-jitsi-meet-prefix.pch */, + ); + name = "Support Files"; + path = "../../ios/Pods/Target Support Files/react-native-jitsi-meet"; + sourceTree = ""; + }; + D5BA1D37054047D943879A7CDDFAF238 /* VirtualText */ = { + isa = PBXGroup; + children = ( + 8D7295B454566C4A4DB062AAF1C5D94B /* RCTVirtualTextShadowView.h */, + 722BE3870D0E12A2F6B24031E137F07D /* RCTVirtualTextViewManager.h */, + ); + name = VirtualText; + path = Libraries/Text/VirtualText; + sourceTree = ""; + }; D5BB1383136539B27EE1A7FD128C6A0E /* FlipperKitLayoutPlugin */ = { isa = PBXGroup; children = ( @@ -16502,61 +16432,96 @@ name = FlipperKitLayoutPlugin; sourceTree = ""; }; - D644F66B201D6179F2CDC47D654BE9EE /* RCTCustomInputController */ = { + D65D3083A266A05D703B9413E7C3337D /* Support Files */ = { isa = PBXGroup; children = ( - 4130B32047215C733F9E8513CEBCCE71 /* RCTCustomInputController.h */, - 2874635C8ACF2F545342C9694BF49DC3 /* RCTCustomInputController.m */, - B1B61F997B01F01E1EB62509328A65C4 /* RCTCustomKeyboardViewController.h */, - 4CAE3FAD576DFEF9531504E3694317A5 /* RCTCustomKeyboardViewController.m */, - ); - name = RCTCustomInputController; - path = lib/ios/RCTCustomInputController; - sourceTree = ""; - }; - D666E187BF297B6C04E56F41AE266B43 /* rn-fetch-blob */ = { - isa = PBXGroup; - children = ( - FC0FBCEDAA524F547423E330109EF828 /* IOS7Polyfill.h */, - 46FC4C5A659A3EED85B9083A283C545B /* RNFetchBlobConst.h */, - DA5D0AA93E7BE6BC076BCC751014EF46 /* RNFetchBlobConst.m */, - 9EEDA8D0F3FF14A8194A586EB92E3B3D /* RNFetchBlobFS.h */, - 31EE61B5B2C4934ACFE959BCEB6D5CAA /* RNFetchBlobFS.m */, - FD61AA0240C1699452A5688EF562C34A /* RNFetchBlobNetwork.h */, - 75C81C87FF4DB6BF91F3159D1B5ECF78 /* RNFetchBlobNetwork.m */, - 1413FFFF6ADE74BB4EC379BF8CDCAFBD /* RNFetchBlobProgress.h */, - 7CA58CB6C1F0627723A8061FDB5F32DA /* RNFetchBlobProgress.m */, - 56053D89CCBFA0BA3CDE1D02E7595E6B /* RNFetchBlobReqBuilder.h */, - 8972D5894EA23710DC85AAD79723BCC6 /* RNFetchBlobReqBuilder.m */, - E2A2C3E229486D9A05F7BD609DCC9FF1 /* RNFetchBlobRequest.h */, - 6F5684FFDE03F8CF2C40486769C419CF /* RNFetchBlobRequest.m */, - 55384BCA896B2711670C68DF64D3D330 /* Pod */, - FA7EAECB9AC9BF29E6D0E9D29F1CC228 /* RNFetchBlob */, - 79D015AEF41FDCF7169B6653196E257B /* Support Files */, - ); - name = "rn-fetch-blob"; - path = "../../node_modules/rn-fetch-blob"; - sourceTree = ""; - }; - D72CCAA127A922673A34F6FA79B55D1C /* Support Files */ = { - isa = PBXGroup; - children = ( - 1EBCB9F825BB74349DA8464E4078D6CD /* SDWebImage.xcconfig */, - 95FEEE73FE294BCF172DF9D75458CD19 /* SDWebImage-dummy.m */, - 3E296909E6CC7D70178295D47836CEB5 /* SDWebImage-prefix.pch */, + A5445E71DCF0CE110ABCD9AC90289C2B /* React-RCTText.xcconfig */, + AAE8FDF22C8DECF917FAE894D8E30F24 /* React-RCTText-dummy.m */, + 32405027C9B55B8B729CCE839004473A /* React-RCTText-prefix.pch */, ); name = "Support Files"; - path = "../Target Support Files/SDWebImage"; + path = "../../../../ios/Pods/Target Support Files/React-RCTText"; sourceTree = ""; }; - D7B4E8B0144AA3183FB8B231B57A7330 /* config */ = { + D66D1DEFCA6705F6AE87672ADB1070DB /* Support Files */ = { isa = PBXGroup; children = ( - DCE394A0E0B69B37E3C5223460D02999 /* RNFirebaseRemoteConfig.h */, - 0231B9765D9737322AAC9865EC423544 /* RNFirebaseRemoteConfig.m */, + 3A78826F61DDB107AAB10944EC45B467 /* React-RCTImage.xcconfig */, + 30A7ACE64949128CF3F1F8D22E3DDAA7 /* React-RCTImage-dummy.m */, + 56EC8894F57E03D43A1177DE5EE7B401 /* React-RCTImage-prefix.pch */, ); - name = config; - path = RNFirebase/config; + name = "Support Files"; + path = "../../../../ios/Pods/Target Support Files/React-RCTImage"; + sourceTree = ""; + }; + D73D2631CC98928FF2F34CA0604CB0D2 /* EXAV */ = { + isa = PBXGroup; + children = ( + 5EF8A04887DBDC4DB6E94F8116E19F61 /* EXAudioRecordingPermissionRequester.h */, + 009F1A08CB0A50EA5E3CAB30B726B94B /* EXAudioRecordingPermissionRequester.m */, + E48A225EE28C7E04CBEA32486A3DF3D1 /* EXAudioSessionManager.h */, + 1A50A89720C38C6F8D00510AC3D00E66 /* EXAudioSessionManager.m */, + C0950CB23480E915E946BD4A5C8ABBEA /* EXAV.h */, + 3D566A28BB25AE718B3973068E7680C8 /* EXAV.m */, + 6D66E9F00BE1EAFF7960FC6BA7708B8C /* EXAVObject.h */, + 413E9E02B89504D07AD0848098C54E14 /* EXAVPlayerData.h */, + 1CF01376D9C0B8D19424414D36C50DCC /* EXAVPlayerData.m */, + 9E011BDB166FF147F3D49787971B7D06 /* Pod */, + E9682CA6AA55F6C3A6D8B66E3A8EF901 /* Support Files */, + 5A43005AD9B321B81437712E9C2B15E0 /* Video */, + ); + name = EXAV; + path = "../../node_modules/expo-av/ios"; + sourceTree = ""; + }; + D7973912F2086F32451E2F7104F446F0 /* Support Files */ = { + isa = PBXGroup; + children = ( + CFDE3CE6B14F32CB5B666D96795FCD7A /* BugsnagReactNative.xcconfig */, + 04A422BC8833BA57C417BBD13984BBA9 /* BugsnagReactNative-dummy.m */, + 5137E436DE4843B07273A2FB6FB5D018 /* BugsnagReactNative-prefix.pch */, + ); + name = "Support Files"; + path = "../../ios/Pods/Target Support Files/BugsnagReactNative"; + sourceTree = ""; + }; + D827203C511D299134197DC4948A0763 /* Pod */ = { + isa = PBXGroup; + children = ( + C06035B5E167EB2920F8D209C67720BB /* advancedIos.md */, + CE65D3405BF3F41EC63FEEE3E30E77B2 /* installation.md */, + 905DC87941BB1A73D388D99DA4D2E89F /* LICENSE */, + 498CC854F890DC4FDD8DAF88FE88D945 /* localNotifications.md */, + CD36A2444D394C81C2B2E9BF0521B699 /* notificationsEvents.md */, + F6A33D5A58626C882225DB518AF72946 /* react-native-notifications.podspec */, + 04285C5707B3DA7F659E7F985E5A4F61 /* README.md */, + 213BA18ACEF77710E9161A51FCB156A4 /* subscription.md */, + ); + name = Pod; + sourceTree = ""; + }; + D84145441887C557A4C3B2F17198911C /* React-RCTActionSheet */ = { + isa = PBXGroup; + children = ( + AB52BB2E0F1B896F953FF8A2063D30F4 /* Pod */, + 5FEFFD03A11FDA1EFC7EE298CF681601 /* Support Files */, + ); + name = "React-RCTActionSheet"; + path = "../../node_modules/react-native/Libraries/ActionSheetIOS"; + sourceTree = ""; + }; + D85BB3CCBC3E86C23837B1A807FC49C5 /* KeyCommands */ = { + isa = PBXGroup; + children = ( + C2223C2E29771101F6D806E52FE5022A /* RCTKeyCommandConstants.h */, + 906D73B0CFB0B58166459E4132CB0CEF /* RCTKeyCommandConstants.m */, + 07A912C18DDE4C25DF54EFA9ED83B6A0 /* RCTKeyCommandsManager.h */, + D77BAC0E8E8AE4F49A6DF5729DECB2CC /* RCTKeyCommandsManager.m */, + F5E83C574FF3F120B6FD272F47D0C5A6 /* Pod */, + 722F61B74058D65BBD386F3CF5DA063E /* Support Files */, + ); + name = KeyCommands; + path = "../../node_modules/react-native-keycommands"; sourceTree = ""; }; D89477F20FB1DE18A04690586D7808C4 /* Frameworks */ = { @@ -16566,23 +16531,38 @@ name = Frameworks; sourceTree = ""; }; - DAA23F099264B991B61FE60DEF365262 /* RNImageCropPicker */ = { + D956C406ADD430A42EC5B561C66108D7 /* Default */ = { isa = PBXGroup; children = ( - 6A97BA1C32F0EB20E5033FB242187B5D /* Compression.h */, - 8455501E57C734BAE091778D44D2E199 /* Compression.m */, - 3438ADEC6BFD173853DBE02CDB14D4E6 /* ImageCropPicker.h */, - E30318F688F0094C6830361CADB31299 /* ImageCropPicker.m */, - 2E31D2EDC5ECA24821ED9B416DBC9795 /* UIImage+Extension.h */, - 9C3F9D9A17FA6EF6E6CDE166CF171727 /* UIImage+Extension.m */, - F7CB6BF66BCA18F01B9CF33D6B04566E /* UIImage+Resize.h */, - B53AA8B5C803FAFC7AB1D0090127D684 /* UIImage+Resize.m */, - E938CDBCF16E85D6BEAFE779B120AD56 /* Pod */, - 9A120C340496610EC2E5B01FE0CA82C9 /* QBImagePickerController */, - 45EB4CB9D90AACEC24EB02C2E4ABB0AE /* Support Files */, + 312C461759B647FAC18CC55BACF4031D /* Base */, + EB688698F9417A5C757B2C6D42EF5D74 /* CxxBridge */, + 8074C23C145B6228C74FD6DE8EFF477D /* CxxModule */, + CE286024BFC7FB15C54AB65C797464FE /* CxxUtils */, + AF3AE6C2B45EE50D5C26585A6182780C /* Modules */, + EAFB20E0590EF0C25F947AFB154A94E7 /* Profiler */, + 5581BF5997ABBED31D712692C41B908C /* UIUtils */, + E131867BC20A7D96F1EC5FB6B1E73CF3 /* Views */, ); - name = RNImageCropPicker; - path = "../../node_modules/react-native-image-crop-picker"; + name = Default; + sourceTree = ""; + }; + D9BE6417E8BF3A50B554CE818FF39AF3 /* Core */ = { + isa = PBXGroup; + children = ( + ); + name = Core; + sourceTree = ""; + }; + DA184E20B978F7AEB62079D66D6DC7AA /* UMBarCodeScannerInterface */ = { + isa = PBXGroup; + children = ( + E31C4EDD0CD0EEC517885CA1AC8E61D0 /* UMBarCodeScannerInterface.h */, + 14CEEBE2C3B7E3508FC4A255944CB04F /* UMBarCodeScannerProviderInterface.h */, + A009D5590F6558FD202247C78473D60E /* Pod */, + 9DD7A0CE0BCA939F55B969A8C466BCC6 /* Support Files */, + ); + name = UMBarCodeScannerInterface; + path = "../../node_modules/unimodules-barcode-scanner-interface/ios"; sourceTree = ""; }; DAC6E360B631FEA5DC741AA03E87C2E6 /* Frameworks */ = { @@ -16594,36 +16574,19 @@ name = Frameworks; sourceTree = ""; }; - DAF4DBD0285BD09916D0C072B983EA9F /* Surface */ = { + DB965E3B0896161C32C205790719E9D8 /* UMTaskManagerInterface */ = { isa = PBXGroup; children = ( - 985D6DB3D9A4AE44DF523A65D604550F /* RCTSurface.h */, - 95F07232DD6C43A691C9B7768164DA05 /* RCTSurface.mm */, - 5787EFC5AEE0F00EE6CA2F88DF3F334D /* RCTSurfaceDelegate.h */, - 578E76A091CE645BF475F243B3511735 /* RCTSurfaceRootShadowView.h */, - C04903A37365E963E54413DF6FD9FD6A /* RCTSurfaceRootShadowView.m */, - B3AC8C4510805B6693BC08157D72D931 /* RCTSurfaceRootShadowViewDelegate.h */, - 126199C73856BB1169A9044CA9A5649D /* RCTSurfaceRootView.h */, - B181DF32FCFDFC18F9571FF848A2232D /* RCTSurfaceRootView.mm */, - C4D42313D4DAF406D2817B141A119FA9 /* RCTSurfaceStage.h */, - B3622350A596E3E5F6990B705F2C4E34 /* RCTSurfaceStage.m */, - A5B1AD30F29FFCA73FADF2C224811D06 /* RCTSurfaceView.h */, - 70AB7F4C521B0B8F336CC49326F2D305 /* RCTSurfaceView.mm */, - 03415F6712E38CEF6B5BA9AC87327B01 /* RCTSurfaceView+Internal.h */, - 302FEAE76257008346957632C0FCCEA6 /* SurfaceHostingView */, + 0169CA62EDDE06816622F7F21E2D6C0C /* UMTaskConsumerInterface.h */, + 01833D28E65227B47ACD0B88434E1A07 /* UMTaskInterface.h */, + 1BA46722248C528CD847FC598DE62F76 /* UMTaskLaunchReason.h */, + A21B95C6F2CD1A1C7B0ABE2884BC38F3 /* UMTaskManagerInterface.h */, + 0FA9B2C2D5754D63FD96CB78C1559C15 /* UMTaskServiceInterface.h */, + 5577A40E1F9C174AE9773AA900C903FC /* Pod */, + 9F5035384ED3E28784B512FEB8CA989A /* Support Files */, ); - name = Surface; - path = Surface; - sourceTree = ""; - }; - DB4F86AF789CFDB5546FB60A4F64559A /* Pod */ = { - isa = PBXGroup; - children = ( - DC507D39669E4B322D76C50178A05CC5 /* LICENSE */, - 4422005A2570BE2F6D0A557FB2C06481 /* README.md */, - 5DAE76D5E6A4A89DDADCBA7C79C9D2F9 /* RNVectorIcons.podspec */, - ); - name = Pod; + name = UMTaskManagerInterface; + path = "../../node_modules/unimodules-task-manager-interface/ios"; sourceTree = ""; }; DBB14556B7BC813FF0021EA25C03CC50 /* SDWebImageWebPCoder */ = { @@ -16667,14 +16630,6 @@ path = "../Target Support Files/PromisesObjC"; sourceTree = ""; }; - DC4E9203EEAAF5AB4FEA8687B1A872E4 /* Pod */ = { - isa = PBXGroup; - children = ( - 185705258B307AF0CBC2F59ED6261B25 /* UMCore.podspec */, - ); - name = Pod; - sourceTree = ""; - }; DC6A71CE51B9234F595DE540300935EC /* Support Files */ = { isa = PBXGroup; children = ( @@ -16686,14 +16641,6 @@ path = "../Target Support Files/Folly"; sourceTree = ""; }; - DC9AB5AC18E12C0261EF0F622A2B6804 /* Pod */ = { - isa = PBXGroup; - children = ( - B1FB70333B2D1B428F8E37FB5295B612 /* UMConstantsInterface.podspec */, - ); - name = Pod; - sourceTree = ""; - }; DCCC2EF2E1E0DB6FEC9BE8904C110BED /* encode */ = { isa = PBXGroup; children = ( @@ -16701,21 +16648,41 @@ name = encode; sourceTree = ""; }; - DCE7C0512B08275E79393733DD6559DD /* platform */ = { + DD3B4017CA124C46D825FC047479BBD7 /* React-RCTNetwork */ = { isa = PBXGroup; children = ( - BB1ED37B11A273E7ED15884E01A49464 /* ios */, + 8E880C8FADC348B3A40BE9FD9BA79079 /* RCTDataRequestHandler.mm */, + E843686E57A6A99B4E2E728BF1AD7402 /* RCTFileRequestHandler.mm */, + 94B7035A8CBF7ED9FB4B21339F78291C /* RCTHTTPRequestHandler.mm */, + FEA9A464E6CA3A4057B3414E672AD6B7 /* RCTNetworking.mm */, + B7A6BF06A279724ECA7634343AFB76DC /* RCTNetworkPlugins.mm */, + 3B96B6057DCEA9A6E71122E0606928F1 /* RCTNetworkTask.mm */, + 09D3452A800C7010D70FD2BD5597F533 /* Pod */, + 4BFB955771410A2C3C1AC0B4CA96BCD1 /* Support Files */, ); - name = platform; - path = turbomodule/core/platform; + name = "React-RCTNetwork"; + path = "../../node_modules/react-native/Libraries/Network"; sourceTree = ""; }; - DD046720E12F5A0A22EDDD4F431A7770 /* Pod */ = { + DD5E621C47D4F132A89D858A5AF08081 /* TextInput */ = { isa = PBXGroup; children = ( - 4E686F63A3EC5D34AB3B20235ACBEA07 /* EXVideoThumbnails.podspec */, + 38AE59C5F76AE8294DEE93C2A2934A1F /* RCTBackedTextInputDelegate.h */, + 8A134C867AFCCA54CF0D6394079E8BBE /* RCTBackedTextInputDelegateAdapter.h */, + 94026BAA4E4E9401D51BCAF032C4F65E /* RCTBackedTextInputViewProtocol.h */, + 2C6F3978CA685DFEFB1773CCB1B9CE28 /* RCTBaseTextInputShadowView.h */, + DC6592B4391775FBC8ED0AF7FD7C660B /* RCTBaseTextInputView.h */, + B5B0E7AB0A4CC6D0C106EFD7FCE0A45F /* RCTBaseTextInputViewManager.h */, + 1234D762A2CB0BFC75543A7CFE6CB8F5 /* RCTInputAccessoryShadowView.h */, + 13CC2D28BDC280DC4C8E82643F75B4B9 /* RCTInputAccessoryView.h */, + 61FFFEA945BB4074669BE0FC675DB87D /* RCTInputAccessoryViewContent.h */, + 0949276B5398E3DE89E7AA787164CA6B /* RCTInputAccessoryViewManager.h */, + 892AFB3B042F739654D6A76821FA453C /* RCTTextSelection.h */, + 82DC077B1D2904424821BB211986FE4A /* Multiline */, + 23C498ADFB6B72D9F59F16B1935F239C /* Singleline */, ); - name = Pod; + name = TextInput; + path = Libraries/Text/TextInput; sourceTree = ""; }; DD8BE39581B027039CA45CB5DB5F5DEB /* Pods-ShareRocketChatRN */ = { @@ -16734,14 +16701,15 @@ path = "Target Support Files/Pods-ShareRocketChatRN"; sourceTree = ""; }; - DD933C3C950F07C5529BEABC3E8C5FFF /* Pod */ = { + DDAC3F2285DEB197E2CB5F909D96E261 /* Support Files */ = { isa = PBXGroup; children = ( - 9BA5A3B1BE1BC7C2F0000E120ACE8D69 /* LICENSE */, - 11145ABC1368532AD8C8BAA8E947BA5F /* README.md */, - 1E2AA7FC7161AAC1C25764F3B0C67935 /* RNCAsyncStorage.podspec */, + EFD141DC1EAB9E7F0D4A721FFCA200C3 /* RNRootView.xcconfig */, + 799C9AC7F954CB78BD975A95932FB0FE /* RNRootView-dummy.m */, + ACD23349C8CCB11788B6AC8E8CAD4B9B /* RNRootView-prefix.pch */, ); - name = Pod; + name = "Support Files"; + path = "../../ios/Pods/Target Support Files/RNRootView"; sourceTree = ""; }; DDBEA8E6B1460B9E399A52A6DE8DC407 /* Support Files */ = { @@ -16753,13 +16721,36 @@ path = "../Target Support Files/CocoaLibEvent"; sourceTree = ""; }; - DEE486CB55E39DFF0FBE91EFE1146050 /* RCTLinkingHeaders */ = { + DEA718FDFB0DD8E14A212807156A4D89 /* Pod */ = { isa = PBXGroup; children = ( - AC0BB14BEB73A57DC8B734160F84C2FF /* RCTLinkingManager.h */, - 3C867FCCE49877A00F3EF1D8BFF334BF /* RCTLinkingPlugins.h */, + F310D14408DC9ADCEBE5DF3900588B85 /* LICENSE */, + 8B6C3E5CEC11D65E8E7539E5401088A1 /* README.md */, + 447D47EF91F884C3A6D2B040CB7A1A76 /* rn-extensions-share.podspec */, ); - name = RCTLinkingHeaders; + name = Pod; + sourceTree = ""; + }; + DEF4D4B51FD07461BDC5F23CE394DCB2 /* react-native-cameraroll */ = { + isa = PBXGroup; + children = ( + 7C76F6872D692AF01A093C9AF06DC19B /* RNCAssetsLibraryRequestHandler.h */, + DB0616CD128BDB76F5EB428C77F48A37 /* RNCAssetsLibraryRequestHandler.m */, + CBD405D8C22367F829A5AAC74B92B8AB /* RNCCameraRollManager.h */, + CC7F9315E3352B0D9A7BBDE3D06FB105 /* RNCCameraRollManager.m */, + 0A29A3810F17C94C16E53762DEDC5D4C /* Pod */, + 50DE5BAF2C922F57B4FE1374386AC703 /* Support Files */, + ); + name = "react-native-cameraroll"; + path = "../../node_modules/@react-native-community/cameraroll"; + sourceTree = ""; + }; + DEFD420FDC32730C6E50AAD7ECCCF701 /* Pod */ = { + isa = PBXGroup; + children = ( + A1A477C815678DDA9EFD61BF3628F64D /* React-RCTImage.podspec */, + ); + name = Pod; sourceTree = ""; }; DF135E954D745CC65C2C1C45637AA4C0 /* Folly */ = { @@ -16786,76 +16777,182 @@ path = Folly; sourceTree = ""; }; - DF2A823F424957A7FF17D40A88D63422 /* Support Files */ = { + DF4699EC691010828C58523C41E03147 /* Support Files */ = { isa = PBXGroup; children = ( - C0F313FB5F1E7F6BF4108813F8D2502F /* React-jsi.xcconfig */, - A1361018C52F1CE31D87BA70147752DA /* React-jsi-dummy.m */, - 3D6A6B77DF11FFD47C326907BC67E4D4 /* React-jsi-prefix.pch */, + D50AD6DD2BE7BFED97EE7DC57A82A819 /* RNReanimated.xcconfig */, + BA2D585E516A138559369AA2E2257387 /* RNReanimated-dummy.m */, + 6FCC41E3ABC5C2D3543CE7099BF6DF48 /* RNReanimated-prefix.pch */, ); name = "Support Files"; - path = "../../../../ios/Pods/Target Support Files/React-jsi"; + path = "../../ios/Pods/Target Support Files/RNReanimated"; sourceTree = ""; }; - E0B0F2B680537CFA8404EBD652D2C36A /* Transitioning */ = { + DF6CA39C6A240EE867D068984EA01794 /* Pod */ = { isa = PBXGroup; children = ( - F8198A7A6C2B189CB145A78371FA8AA4 /* RCTConvert+REATransition.h */, - EB1E2EDE818FF878E59B569B3AEE6CEC /* RCTConvert+REATransition.m */, - EDCA066DC697E9BEF2EEF64778751C22 /* REAAllTransitions.h */, - E4F0FF6714F5FE177E51FB3A81A96F1F /* REAAllTransitions.m */, - E38F69EED7E21E41AD71AFA75F839F10 /* REATransition.h */, - D406E3712049C5BE639C6990990E7FEF /* REATransition.m */, - 93E8E380CB23AE9CCFCB94F089475E53 /* REATransitionAnimation.h */, - B7931EC6A86AD2739772BCE8C2756096 /* REATransitionAnimation.m */, - D47EB0EB7BBF5533FCDA0908164CB63F /* REATransitionManager.h */, - 74CB6B32052B4980712DC85AF207A391 /* REATransitionManager.m */, - 22AE0F027BA8E662707B93E6A49025BC /* REATransitionValues.h */, - D2546F5A27DAACFE9A10A9538869FCFD /* REATransitionValues.m */, - ); - name = Transitioning; - path = ios/Transitioning; - sourceTree = ""; - }; - E1657A85F442979F755796DE6AB7768F /* Pod */ = { - isa = PBXGroup; - children = ( - 80B9C566904D39AD05752A435EC43878 /* advancedIos.md */, - 229BD827D7F4F590318CD67644EB6FDE /* installation.md */, - 6BEDA019BC58CBE06110408C4101AA6F /* LICENSE */, - A71753D566CA5BDA4BF18B727FAA5C67 /* localNotifications.md */, - BB828946A49B6FEAB8FB73999205B6A0 /* notificationsEvents.md */, - D356A7A9F6E88F519F68C48AC58E7029 /* react-native-notifications.podspec */, - 64BA0011B0C78B7C1CA671E856C9A559 /* README.md */, - 29F3B76C0EF0EF9795762A690523B285 /* subscription.md */, + 75581D01FBDF9656BD27A8A1879141A9 /* React-cxxreact.podspec */, ); name = Pod; sourceTree = ""; }; - E2FC72AA47DB8A8EF8F6903024EA3D94 /* UMFileSystemInterface */ = { + DF8DE5793B7A7EB3BA27B244274C97E3 /* core */ = { isa = PBXGroup; children = ( - 9E2B8CD84A97A366FCD6F728A31C3CE4 /* UMFilePermissionModuleInterface.h */, - 2FD687F7A3E9231B853C6F9BB2506528 /* UMFileSystemInterface.h */, - 88BDC54124484DC24791C6DFCEDBBF43 /* Pod */, - E5C34FC2AAE4FF05CA9B4A222C1C7A21 /* Support Files */, + EF2F4C2510566B811AD1F0B4FFDE78A5 /* LongLivedObject.cpp */, + 0EF5E543404D4EB3CA8D67FB8B099920 /* LongLivedObject.h */, + 49065EA13CF906BAB7811E5CE8A95B97 /* TurboCxxModule.cpp */, + E90222C72A6406535921E464B42BFBC9 /* TurboCxxModule.h */, + 29B38072416B901FA476EE882CF93A28 /* TurboModule.cpp */, + 274E9CA3F19C4A5A90B7C3123C3ADE1A /* TurboModule.h */, + 60CE2DB18C78571E37CA81E831D99F3D /* TurboModuleBinding.cpp */, + 09A04ADE0053D599FD3C7F5E4EB1D387 /* TurboModuleBinding.h */, + 82505B6EB86B278B705E2B164F5A4D51 /* TurboModuleUtils.cpp */, + 0840F831C696E2F3C6A6216E2C1FE3E7 /* TurboModuleUtils.h */, + 7B1EC213E9E1083715E718E0F3F02C0F /* platform */, ); - name = UMFileSystemInterface; - path = "../../node_modules/unimodules-file-system-interface/ios"; + name = core; sourceTree = ""; }; - E39FD8676EB82286378081606B0A6A8D /* react-native-slider */ = { + E0F3172617CEAA9E87A52B689B80A1F9 /* Pod */ = { isa = PBXGroup; children = ( - EB8FADF2D99C656B2A39992CC07D3C26 /* RNCSlider.h */, - 3190F6F63102777D0B20446986C48AC0 /* RNCSlider.m */, - 60B2F43322E7CC4D115FE92140100910 /* RNCSliderManager.h */, - 09A01FEB7B8297EBB01FB336C4B31A7F /* RNCSliderManager.m */, - 1858AD2396CA758854000DF829897208 /* Pod */, - 4ACB44402D6A5B0462D05663FFC2BAAF /* Support Files */, + 169BB7B537AA1A84AD89C605599A9CA3 /* EXVideoThumbnails.podspec */, ); - name = "react-native-slider"; - path = "../../node_modules/@react-native-community/slider"; + name = Pod; + sourceTree = ""; + }; + E131867BC20A7D96F1EC5FB6B1E73CF3 /* Views */ = { + isa = PBXGroup; + children = ( + F2F37C5F3075E0A85D6D52321252AADA /* RCTActivityIndicatorView.h */, + 6150911CCFCD0DF7E5A2BA107C5E1472 /* RCTActivityIndicatorView.m */, + 3497C53C154E585DC539075DEAE714FB /* RCTActivityIndicatorViewManager.h */, + 3DDECD684136C17D1282F66070325249 /* RCTActivityIndicatorViewManager.m */, + DBE35416D83D1B94DB65A1759A98C57C /* RCTAnimationType.h */, + 2A2794ABC6F0F9A92B0C680B4D7DC350 /* RCTAutoInsetsProtocol.h */, + 729BD433E983E03BE1D0DC9F7C1BEDF2 /* RCTBorderDrawing.h */, + 12D03474B370C62E4FCAEDB9AAD78165 /* RCTBorderDrawing.m */, + 2A6F65F4B0F74C7D35F8BEEBC0871B78 /* RCTBorderStyle.h */, + CA067CF703D09999E06B5ABC63FE518D /* RCTComponent.h */, + EC746D19C478B48C7F576E1613A76E3B /* RCTComponentData.h */, + 03D0F30AE308D4259F67334FF1D3969B /* RCTComponentData.m */, + 9CD076F60F79CD89DA9BEE202F59A9A3 /* RCTConvert+CoreLocation.h */, + 1759CEB888E5987814F821AFE339BFAF /* RCTConvert+CoreLocation.m */, + 9CA1F1822C820511B079449E3589F64D /* RCTConvert+Transform.h */, + A2587F7227146F6F4E2C2FEA2D245017 /* RCTConvert+Transform.m */, + 8A5A36992848EF0C83A2A15573A741EC /* RCTDatePicker.h */, + 68CFD377B2521C3971DB87126F7E1D9E /* RCTDatePicker.m */, + 58B7613416711737F6538A479F793D7B /* RCTDatePickerManager.h */, + 54161D29392E345441AA956C2FB76506 /* RCTDatePickerManager.m */, + BCC4D855AACA3DD8AE78A555F77C84D8 /* RCTFont.h */, + 762DC98B3A6DE4FC6084B565D9FB90E5 /* RCTFont.mm */, + B096F2B0A044D9B4E531C0A85DB9698C /* RCTLayout.h */, + ED7F52EA8E9D5ED153FEB67355F9C6D6 /* RCTLayout.m */, + AE41CBA7D7724FB150597E80EEE32D54 /* RCTMaskedView.h */, + A63CE8D3C5D5A13906556F9595209227 /* RCTMaskedView.m */, + FE222648312FC765F32405109A39FF59 /* RCTMaskedViewManager.h */, + A64E076FD356846B65E9A99A0C063A4D /* RCTMaskedViewManager.m */, + 60F8CD471528CA1B2153C497681181DF /* RCTModalHostView.h */, + 57F76DEC4BA22FD0CB95C78A9D7F80A5 /* RCTModalHostView.m */, + 13E446B7980C89510B45F4AC8D1DBA16 /* RCTModalHostViewController.h */, + 66FE20FFDA5F3ADA0C05B13BC7CAC482 /* RCTModalHostViewController.m */, + F7C63095C9483BE20BF327642FCFA2F5 /* RCTModalHostViewManager.h */, + 2CCE0261D8E1FAB467E72EAF18BE5367 /* RCTModalHostViewManager.m */, + F2F096D7B3C560D1DE69671848D9ADA3 /* RCTModalManager.h */, + A7141C293676555BF0CC52A4D0E555B8 /* RCTModalManager.m */, + 227CB7EDB6CE0BD93BA21EFE897D3AEE /* RCTPicker.h */, + 91A5A630626CC57ADDEFEBE5275192C9 /* RCTPicker.m */, + 0F23A58D8E0D9A90535E8C7C0ECB2486 /* RCTPickerManager.h */, + F47A67C689CCD9CA0744E44505079741 /* RCTPickerManager.m */, + 156687D4952C66CA95FC142C1F806D61 /* RCTPointerEvents.h */, + 2D38BC1365EFC740D026D894B50F8F4B /* RCTProgressViewManager.h */, + F6FFE52AE1CBC0B042DF4B3C520778F3 /* RCTProgressViewManager.m */, + 33F2996066106B24E60929081ED488EA /* RCTRootShadowView.h */, + E6D98AED4B7AA4C281DC7EF695254416 /* RCTRootShadowView.m */, + 4B80933D1A235F6C228F81689B5C40A1 /* RCTSegmentedControl.h */, + B9CFE2221F7454019D76A123B7E67452 /* RCTSegmentedControl.m */, + 58F8471DFBC5C0459C6050D44256A07A /* RCTSegmentedControlManager.h */, + 7CE3A5AB6AC4FB4B8253F48C96879E6B /* RCTSegmentedControlManager.m */, + DE281431DE2725390C8E80DFA7F3ECA9 /* RCTShadowView.h */, + 2821AB3094CDBDE4CF840241C0BDE5AB /* RCTShadowView.m */, + 58388C4E426361C1B7F11ABC6FDE5D68 /* RCTShadowView+Internal.h */, + B2B74623200907111425F47D85E13F87 /* RCTShadowView+Internal.m */, + A656530FCBC00836B154E428A92A214E /* RCTShadowView+Layout.h */, + B582E1212EAC311770DFFFB2CA2A66D6 /* RCTShadowView+Layout.m */, + DD4934136A00333DA2230477E34E3C3B /* RCTSlider.h */, + EB1533A0CD974D86B26F4A4E5A77366D /* RCTSlider.m */, + 57826D5215B3A7BD6F723B49B7080785 /* RCTSliderManager.h */, + 05255BC744941A25A1961830419487AC /* RCTSliderManager.m */, + 35CB5326695BA15ACEB3979E9AF3C1F6 /* RCTSwitch.h */, + E061B4BB8E2EBF5350C19253CE0BD79B /* RCTSwitch.m */, + 1C2DA79642A223E0B8CB8DCAE42D5F97 /* RCTSwitchManager.h */, + 035F8DF3FA0EA1570EF9C1E43CA9AE75 /* RCTSwitchManager.m */, + 6FC9F99A5B1B339B1B270C73A9317012 /* RCTTextDecorationLineType.h */, + 15373706DB87B83C8D3203CAA194A599 /* RCTView.h */, + 5D5FF0C31960268F09B44977A369A259 /* RCTView.m */, + 9ADEF2907DA90AC6CEC93DCD1621716A /* RCTViewManager.h */, + 0CA9509B1F8F03C4F5576D2175D6CF93 /* RCTViewManager.m */, + DDF37CD605C26917BAB25ADD66F85E0E /* RCTWrapperViewController.h */, + E7770225D1011CBA81539BB31146DE18 /* RCTWrapperViewController.m */, + 430CE20FBFBA757BC977C881F5455E02 /* UIView+Private.h */, + 5A97357E1BB30BEA08AA2A2D702C5EE3 /* UIView+React.h */, + EFB850B31F34F7E04F799DFC69C4612E /* UIView+React.m */, + 84E6EDF7FC8BCB884229CE20354D68AD /* RefreshControl */, + C3629BB0964989BFCD5A01D873D52563 /* SafeAreaView */, + D244D3D18662725278FBD7F0F781EB21 /* ScrollView */, + ); + name = Views; + path = React/Views; + sourceTree = ""; + }; + E17337FC7F4F63F373AC97654F23BC3A /* Support Files */ = { + isa = PBXGroup; + children = ( + 4965F83FB63F17DDF7135B269495CDB3 /* react-native-appearance.xcconfig */, + 14258755F986E21328B0012F754CD726 /* react-native-appearance-dummy.m */, + 83A43C907B6DFDA8CD215975225E6471 /* react-native-appearance-prefix.pch */, + ); + name = "Support Files"; + path = "../../ios/Pods/Target Support Files/react-native-appearance"; + sourceTree = ""; + }; + E299B908BEB381A128757A048726CEFE /* UMFontInterface */ = { + isa = PBXGroup; + children = ( + 244A265A15C21DFF21DF1B853FBEF726 /* UMFontManagerInterface.h */, + D6AC4D5AA1573AA2CACAE01DD556EA8C /* UMFontProcessorInterface.h */, + 9DD6C0726CE8C933BCD11887953ADF35 /* UMFontScalerInterface.h */, + F93AC4B8B0B96DE17BB8F83FB63E6458 /* UMFontScalersManagerInterface.h */, + 2BD34408034135082AF9275C3036904F /* Pod */, + AA160F6E19A6BB39CEBC07923A989526 /* Support Files */, + ); + name = UMFontInterface; + path = "../../node_modules/unimodules-font-interface/ios"; + sourceTree = ""; + }; + E3974590B2F875C0246C119BBA162F04 /* EXVideoThumbnails */ = { + isa = PBXGroup; + children = ( + 7FDF0F24A5C291A3514EA45D08188575 /* EXVideoThumbnailsModule.h */, + 0DA218512ECDA548220EBC5D4723BD8D /* EXVideoThumbnailsModule.m */, + E0F3172617CEAA9E87A52B689B80A1F9 /* Pod */, + 0C60FDD6D6B081F99B9B45AB70A6113C /* Support Files */, + ); + name = EXVideoThumbnails; + path = "../../node_modules/expo-video-thumbnails/ios"; + sourceTree = ""; + }; + E44DEC5176C6B1D9471E3E6CF1D869C6 /* FBReactNativeSpec */ = { + isa = PBXGroup; + children = ( + C6DEBA0649BC2A802F9FBEB21DBB6DE5 /* FBReactNativeSpec.h */, + 55EFC35BEA41B74034867F1151BAA50B /* FBReactNativeSpec-generated.mm */, + 9D60141EA12D9D3EF984E60AC33D1578 /* Pod */, + A2CE8C4ECD0911F8885BD1FD4864B860 /* Support Files */, + ); + name = FBReactNativeSpec; + path = "../../node_modules/react-native/Libraries/FBReactNativeSpec"; sourceTree = ""; }; E49C0A05DA62BEEB2D9F143654CD0C04 /* YogaKit */ = { @@ -16873,73 +16970,26 @@ path = YogaKit; sourceTree = ""; }; - E4D9761352C49BDDDCF1E019B7629188 /* RNFirebase */ = { + E5274CA91931B67698AD072C6EF4CD38 /* Support Files */ = { isa = PBXGroup; children = ( - 3FE10C005ADB64B0306F9E69FE080DBB /* RNFirebase.h */, - 1D32B0B459AAE9F44209A8B2B4D7350D /* RNFirebase.m */, - DA8A3EE127539AED404FDA1002228B72 /* RNFirebaseEvents.h */, - 041999B01F33F5728EADE2E9A551CF9B /* RNFirebaseUtil.h */, - 33A0B92651A94B287FDE6B14359D92F7 /* RNFirebaseUtil.m */, - 575672154DAAF25A043C03758C7ACC82 /* admob */, - BD01F6F265EAF44ABC9D9C4EF2AA9527 /* analytics */, - 50C581FD4D8D9DCF06347AE8C8F2ECE8 /* auth */, - D7B4E8B0144AA3183FB8B231B57A7330 /* config */, - 112B87124D6DD86DB98C788B1A15D9D8 /* converters */, - 2BCD39FFC62C1C72493B04CB4BE77F10 /* database */, - 3C5E6BAEAC84F75A9778746E8E78E13A /* fabric */, - FD406D539F70993503632EB7C6FA592B /* firestore */, - EE65B4D0AA6B0373DC94EF18B6FEECFB /* functions */, - FC2007B2E0D345AEFB91F15E753E2B8C /* instanceid */, - 8304FCCCE6BCBB13152C7B49243442D1 /* links */, - 7DEB487513949393BDCD443560AA995E /* messaging */, - 886DEAD4CD6EF8212FA4449DDF2D7D64 /* notifications */, - FC3E6C674406C765F6FD7B111CF7DBCE /* perf */, - 00B176A437B84AD0E5FF29B7160CFAC4 /* Pod */, - 1B3879BDE51988479417A1B4943A6069 /* storage */, - F2A223D05F18CE3A60AE0A64BDE71432 /* Support Files */, - ); - name = RNFirebase; - path = "../../node_modules/react-native-firebase/ios"; - sourceTree = ""; - }; - E5AA62D88ECD11B81CF4F7FC77E43FE8 /* ReactNativeART */ = { - isa = PBXGroup; - children = ( - 8E738DA767C7CE949F8736ECD117A1FC /* ARTCGFloatArray.h */, - CBBC38F9624D3BDEC7BF597C25BABD18 /* ARTContainer.h */, - 3EAC43B84F9547719B73E62784E57016 /* ARTGroup.h */, - 52C61D7A22F52E9650234D81BBB72159 /* ARTGroup.m */, - 68F052FA093CABB36D1690961D6FAD17 /* ARTNode.h */, - 07C4828CD0AFEB81ABBE1417846D2AAB /* ARTNode.m */, - C019C5E38C06F44F4D7C9B8CA3265E20 /* ARTRenderable.h */, - BCC9E8E36491D208809DBABC0A43343D /* ARTRenderable.m */, - 94B935719C753F605BEFC3442F21321C /* ARTShadow.h */, - 43F70EEC92DC6532FEB97B8FB47495B5 /* ARTShape.h */, - 15C31B504AFEF2F1081FAA0B4C5C45FE /* ARTShape.m */, - A8161AF7903D5BD9636CBDBFD812B802 /* ARTSurfaceView.h */, - 5048C882B6B24ACED251F005937C600C /* ARTSurfaceView.m */, - EEB527A333FF5A4AEF63DF312B770FA7 /* ARTText.h */, - 136C438561B6D5CB3D1286C9153B7C31 /* ARTText.m */, - 02BC12FC7B6F443A4F115B707678242C /* ARTTextFrame.h */, - 4391A5FFBDF8ABD0DBF0BD40A41B7DA8 /* RCTConvert+ART.h */, - DE30E8B82C1AD9F0CD3F2D5D4CD5A950 /* RCTConvert+ART.m */, - 843AB984121E158AFAE94E519F12AFF6 /* Brushes */, - 7CE66DB324C180CD6469517639A4571B /* Pod */, - 1632A3616DC0CFF32A742A24767312F9 /* Support Files */, - C17C119265C79EB985DA81D2CA0DB6D4 /* ViewManagers */, - ); - name = ReactNativeART; - path = "../../node_modules/@react-native-community/art"; - sourceTree = ""; - }; - E5C34FC2AAE4FF05CA9B4A222C1C7A21 /* Support Files */ = { - isa = PBXGroup; - children = ( - 6FA1BE721DD739533ED82AD189404F48 /* UMFileSystemInterface.xcconfig */, + 095516377AB8DD4947052A1C89D7D3B7 /* RNGestureHandler.xcconfig */, + E93179E4068DA43969A26650ABD7C0AC /* RNGestureHandler-dummy.m */, + BF5EBBD86D7C35D9F2C18C083C2BA62C /* RNGestureHandler-prefix.pch */, ); name = "Support Files"; - path = "../../../ios/Pods/Target Support Files/UMFileSystemInterface"; + path = "../../ios/Pods/Target Support Files/RNGestureHandler"; + sourceTree = ""; + }; + E5DA226AD6C1B20A12B8E5C3EDC8A34E /* Support Files */ = { + isa = PBXGroup; + children = ( + D089407D7DCF62F19DBF6CC111610FD4 /* RNLocalize.xcconfig */, + 9FA87C026ADD44DD88FCE72CA739EA3E /* RNLocalize-dummy.m */, + 960CD55290C77C3D5C02663989C3A980 /* RNLocalize-prefix.pch */, + ); + name = "Support Files"; + path = "../../ios/Pods/Target Support Files/RNLocalize"; sourceTree = ""; }; E63D645CC0A83B796700091ABBBC125A /* glog */ = { @@ -16963,131 +17013,112 @@ path = glog; sourceTree = ""; }; - E6826505C0C84794D1533471916E8641 /* ScrollView */ = { + E72CB026F2B38A74346C2D0CD804C869 /* Support Files */ = { isa = PBXGroup; children = ( - 0BD21030CD3C2076216E327F1F2AB1A2 /* RCTScrollableProtocol.h */, - 73FDEBC4D7AB872C43D0B328CA04F2C4 /* RCTScrollContentShadowView.h */, - D43403F0933FFC1A5067920E9A1085A0 /* RCTScrollContentShadowView.m */, - 0BFB651D0748DF11336DEDB9ED0D4468 /* RCTScrollContentView.h */, - D1D70E1B0FB4018A3A748137894CFA0F /* RCTScrollContentView.m */, - 02C81FEA3987E502AC2FE0D8F1CA6DE2 /* RCTScrollContentViewManager.h */, - 7C654678F23645C68953FBF5656D65B5 /* RCTScrollContentViewManager.m */, - 64E7F1F10D01964468F070DE8D4DF3A6 /* RCTScrollEvent.h */, - 903382244D64A1D81775D162DD79F692 /* RCTScrollEvent.m */, - 8A4DEC464191F28F0E9ADFCAF7A6F699 /* RCTScrollView.h */, - 2B6B94978324A1717A292F62AC242F43 /* RCTScrollView.m */, - CE82D196E79A1F0F729CFA3631A98AF1 /* RCTScrollViewManager.h */, - 65ED8E6D61F888582FD232F2EF962FE9 /* RCTScrollViewManager.m */, - ); - name = ScrollView; - path = ScrollView; - sourceTree = ""; - }; - E68A45510D3D2214B0D208BC8E5F233A /* CoreModulesHeaders */ = { - isa = PBXGroup; - children = ( - A3EB9FAAF052112714D0C5942EFF1010 /* CoreModulesPlugins.h */, - 42CEC327588106C76B062F4A34140ACC /* RCTAccessibilityManager.h */, - F4D44A24E665E939DDBC6BAB72EAC6BC /* RCTActionSheetManager.h */, - 4045917217D1231943C756B745F1F8E7 /* RCTAlertManager.h */, - 2C5CE9C01B4C47DC2AF69CC5D89C02F9 /* RCTAppearance.h */, - 7C9A64743CE64AB168ABC1325EEA9023 /* RCTAppState.h */, - AD296C57DB3D2B54D892B4F48C13E137 /* RCTAsyncLocalStorage.h */, - DDBB08E3D181710D8A5354CE16AA64E3 /* RCTClipboard.h */, - 8E787D7856136E44A7AEABFC6D199618 /* RCTDeviceInfo.h */, - F71FB544BCBA56AEDEF822FD83066F59 /* RCTDevMenu.h */, - 5D7193CF5CA94828C6A59C143EB401FD /* RCTDevSettings.h */, - 26E2B81D847EE92831E2B4214E2580F8 /* RCTExceptionsManager.h */, - EE149B93DC504931B021DFE29EBC4CF1 /* RCTFPSGraph.h */, - E3289749F213D3A834E919489BE3C09C /* RCTI18nManager.h */, - 86063991790753F559A821BD48B65DF7 /* RCTKeyboardObserver.h */, - 752EBEF4EC71B1AA44A5C0D90110F58E /* RCTLogBox.h */, - 0E07A1EA86C3DEBCE81DC09370DFC974 /* RCTPlatform.h */, - C8D1B31BC5FDE2E2292F2D47E7079016 /* RCTRedBox.h */, - E86A3DEE59098AEA0F18200A1B624959 /* RCTSourceCode.h */, - A40454307D55504010728E2F84CC410A /* RCTStatusBarManager.h */, - B4709D727E040593EF466742C728E8C8 /* RCTTiming.h */, - 96989709EBA4251565F487F8F55924DA /* RCTTVNavigationEventEmitter.h */, - 44F9B6AFD75F2837103BC8793D42A32A /* RCTWebSocketExecutor.h */, - D388AAA7C7F5EDA01A9A47721D674723 /* RCTWebSocketModule.h */, - ); - name = CoreModulesHeaders; - sourceTree = ""; - }; - E6F7914799F07EF468AF568F9B8008DF /* Support Files */ = { - isa = PBXGroup; - children = ( - B8CAC0F1215C8A25A9642BA111595AAD /* UMTaskManagerInterface.xcconfig */, + F7BDC62B2AB23C3D09681D3939BA0C71 /* RNFirebase.xcconfig */, + B0E0EE7ABBF7557AE52CBFDD38CE973B /* RNFirebase-dummy.m */, + 94CF78D57B3BB561335A6AB3FB2E04DB /* RNFirebase-prefix.pch */, ); name = "Support Files"; - path = "../../../ios/Pods/Target Support Files/UMTaskManagerInterface"; + path = "../../../ios/Pods/Target Support Files/RNFirebase"; sourceTree = ""; }; - E72A2C8168FA7019CBF069BDE9C23983 /* Support Files */ = { + E9682CA6AA55F6C3A6D8B66E3A8EF901 /* Support Files */ = { isa = PBXGroup; children = ( - 23920DCA27BEDAE8BD8AAC64F3753841 /* React-RCTVibration.xcconfig */, - 94AF4CF0A65C8AB152607484CCCA5A2C /* React-RCTVibration-dummy.m */, - E69C5BF678C8C6208B7F3FABB874E845 /* React-RCTVibration-prefix.pch */, + CF060C36B53596B60E63A4C08A05728B /* EXAV.xcconfig */, + 88EBF81B8F7873445389E00FDC5FCDDE /* EXAV-dummy.m */, + ED7F7A9A3C26EE2210F79060E2FF1BAC /* EXAV-prefix.pch */, ); name = "Support Files"; - path = "../../../../ios/Pods/Target Support Files/React-RCTVibration"; + path = "../../../ios/Pods/Target Support Files/EXAV"; sourceTree = ""; }; - E8D0130BEEBD865783E051DCCB3D91BB /* React-cxxreact */ = { + E9839F4496FA5949DAA0D229B6E9F15C /* UMReactNativeAdapter */ = { isa = PBXGroup; children = ( - D466A4F271A3AC7DCC2FF8D781077753 /* CxxModule.h */, - 276C646216FB007F4DA63A5EA1E23167 /* CxxNativeModule.cpp */, - 03C971251727F36F630D77196BF3442A /* CxxNativeModule.h */, - 61227F156D2BAF36E0807BBD1DBC487C /* Instance.cpp */, - 0C4E83823B124CE4BEA4F71B475706AD /* Instance.h */, - 2E7E8B77C5E49902748BAC6FD806AE7F /* JsArgumentHelpers.h */, - 5A3E41456E3005A4422ADF8711F097AF /* JsArgumentHelpers-inl.h */, - C0270F97695905D849A9C64C389F5E31 /* JSBigString.cpp */, - 85684341D05B09C596F5F3B29156D604 /* JSBigString.h */, - 6E498CD5CA0351C79B920D298531B9D9 /* JSBundleType.cpp */, - 43172E33D97ACB9262B3896A1C8EEA25 /* JSBundleType.h */, - 6B26DEFDF2E6A80D97F00BBDFE7FF911 /* JSDeltaBundleClient.cpp */, - F315CF8B919693216DB3F453348507C8 /* JSDeltaBundleClient.h */, - 8ABCD543DFDA4EF993833E21A010BD22 /* JSExecutor.cpp */, - 025E0CDFD18867BDA9A8DB9B3184A6C1 /* JSExecutor.h */, - 9F28B4595538423795CA3120E3354615 /* JSIndexedRAMBundle.cpp */, - 53126359D02D735A3E1AC5815EF5ACB5 /* JSIndexedRAMBundle.h */, - 4152E8E084F479AC464AB66097CCDDFD /* JSModulesUnbundle.h */, - A6635C4C480B1A9D8C117CA1FCC87D13 /* MessageQueueThread.h */, - 287C8A93C301A3B7B63F622356930F97 /* MethodCall.cpp */, - 3DBF61F838B1097FD62D7591FEB07A99 /* MethodCall.h */, - 12CD988AB5526B4808905AE557BF0F4D /* ModuleRegistry.cpp */, - 631EE7042AECD78F7ADF02C610C56469 /* ModuleRegistry.h */, - 0553A531F07D4AE16DD483083B42D7A9 /* NativeModule.h */, - 4FFCF1FC0664854C3FB32F39781917B1 /* NativeToJsBridge.cpp */, - B1897F8260B9D094F9D17905153180F8 /* NativeToJsBridge.h */, - 84B6CA5103C86DFBDF45453A429A0B28 /* RAMBundleRegistry.cpp */, - 90B17DBDA0609D754ECFFCA38F7E5BDD /* RAMBundleRegistry.h */, - 4712A829EE1ADFA4F46D1872DA3A3A90 /* ReactMarker.cpp */, - 8F3A9328D29018CCFA541797D682CE25 /* ReactMarker.h */, - 5EEBBF2B34ED0914BFAEA5DEDD08585C /* RecoverableError.h */, - DAAFD3BEED2FCC9A7E213213A3D52304 /* SharedProxyCxxModule.h */, - 65AF201D1A2210CCBBA39FB03570C461 /* SystraceSection.h */, - 331FB15FFDC76C6F4701C2909CFFE04D /* Pod */, - 6B0CAB366CC3BD5C6ED31F3A127D4025 /* Support Files */, + F21249D284935A4E9ACE3232B6CD057C /* UMBridgeModule.h */, + BB910FAA89DB1DB48A269F796360DDA4 /* Pod */, + AFCF848D0993CAD0771B2B5DDF8B7AF3 /* Services */, + 6AFEEE18787650BF57FBC8D22AF11915 /* Support Files */, + EE7E17FEF7CD6C50D8F8287841B2826B /* UMModuleRegistryAdapter */, + FF69A34C319E2ED513B861D82B19B932 /* UMNativeModulesProxy */, + EF2EB3B468371A619850DCBC220CC4E0 /* UMViewManagerAdapter */, ); - name = "React-cxxreact"; - path = "../../node_modules/react-native/ReactCommon/cxxreact"; + name = UMReactNativeAdapter; + path = "../../node_modules/@unimodules/react-native-adapter/ios"; sourceTree = ""; }; - E938CDBCF16E85D6BEAFE779B120AD56 /* Pod */ = { + EAFB20E0590EF0C25F947AFB154A94E7 /* Profiler */ = { isa = PBXGroup; children = ( - 0C1D0B760CCF24755B2727D31B9EDCE0 /* LICENSE */, - F420C626CAFF3E6735E6F77B8167E9C5 /* README.md */, - E5230453CA59337317E8DD208589185E /* RNImageCropPicker.podspec */, + A7D84183EF4181F8322902ED969165C0 /* RCTMacros.h */, + 1DFF90256321A8BC2CD3C51BD1C11E00 /* RCTProfile.h */, + 6365446E5C18E379A60C23BE3F13AB88 /* RCTProfile.m */, + E726D0F6F7579BF0AE564E1DCC024151 /* RCTProfileTrampoline-arm.S */, + BFEB54173ED83DC4030CA266F119B8D2 /* RCTProfileTrampoline-arm64.S */, + 2ED2342C10FD39C1A52702417DE88FE2 /* RCTProfileTrampoline-i386.S */, + A4795321C69CF82E180EB5008B2DDB9E /* RCTProfileTrampoline-x86_64.S */, + ); + name = Profiler; + path = React/Profiler; + sourceTree = ""; + }; + EB688698F9417A5C757B2C6D42EF5D74 /* CxxBridge */ = { + isa = PBXGroup; + children = ( + F7B387CEF9B7DC1323039E764E7290AC /* JSCExecutorFactory.h */, + 4488D4C64E5B8944241131213438A309 /* JSCExecutorFactory.mm */, + 722E6C2C002559D696DFB10F3CD55E57 /* NSDataBigString.h */, + 7624436CBC0E8626F97E01E75CC8153E /* NSDataBigString.mm */, + 211C567D4CEA45A5940C808708EAC12B /* RCTCxxBridge.mm */, + 33EA3625C89AF9C55E037A6063FE914A /* RCTCxxBridgeDelegate.h */, + CF90071C78D7A98508E84FBAF8B6A50A /* RCTMessageThread.h */, + 84958FEE733A0752D626DB9D4BDB26B2 /* RCTMessageThread.mm */, + 7B263EEBD8CB0393F6D1B28D8E743068 /* RCTObjcExecutor.h */, + E0D3D9D8A043C05C3D18F9A7A572F996 /* RCTObjcExecutor.mm */, + ); + name = CxxBridge; + path = React/CxxBridge; + sourceTree = ""; + }; + EBA53D458831E5E05CC19632DCB6E14B /* Pod */ = { + isa = PBXGroup; + children = ( + 63E70F26A8FB2CEAA22A6D9C2F418FB1 /* React-RCTLinking.podspec */, ); name = Pod; sourceTree = ""; }; + EBE4145F4399C61612F74C67CA36F615 /* React-jsi */ = { + isa = PBXGroup; + children = ( + 3D1619F7D2598DD15A2839483CE4BF9E /* JSCRuntime.cpp */, + 4CB1AC9694F15DC9890F261628C68E9F /* JSCRuntime.h */, + CEC7CD5FEB7F5774F20246773A48EB14 /* jsi */, + 4AF5C226D1880948898396C806B74E38 /* Pod */, + AE769A037706A0F53757AC23183DD98F /* Support Files */, + ); + name = "React-jsi"; + path = "../../node_modules/react-native/ReactCommon/jsi"; + sourceTree = ""; + }; + EBF7911B2A57530BE1737AE937909112 /* RCTTextHeaders */ = { + isa = PBXGroup; + children = ( + 33066923C6F654D679137ADBB1EAA68D /* RCTConvert+Text.h */, + 4A566499049C1F44790724F96962AE1C /* RCTTextAttributes.h */, + CC987FD1C9D20A946E34C5BFE332EE1A /* RCTTextTransform.h */, + 5BBF6EBEFB376F0A1C6DCE9807E87FCE /* BaseText */, + A76B0D2F113F073CDA5DB07FE806A3CC /* RawText */, + A0BE516FD7FEE16E5AA3DF307D539E61 /* Text */, + DD5E621C47D4F132A89D858A5AF08081 /* TextInput */, + D5BA1D37054047D943879A7CDDFAF238 /* VirtualText */, + ); + name = RCTTextHeaders; + sourceTree = ""; + }; ECD0922592F9E143FAB024BCFD8A027C /* Support Files */ = { isa = PBXGroup; children = ( @@ -17101,211 +17132,204 @@ path = "../Target Support Files/YogaKit"; sourceTree = ""; }; - ED39A00065888605FC9737FD399E8FEB /* Support Files */ = { + EE7E17FEF7CD6C50D8F8287841B2826B /* UMModuleRegistryAdapter */ = { isa = PBXGroup; children = ( - 87652A5B57CFCE1AE72BF7CAE1484B6F /* react-native-background-timer.xcconfig */, - 4D11220ABDB67C6C08B65828ED1B9A50 /* react-native-background-timer-dummy.m */, - BF0174832FA170F6A181A9B8FD01957F /* react-native-background-timer-prefix.pch */, + 026346E1EF45B14D6A4896FC4B250C40 /* UMModuleRegistryAdapter.h */, + 4D0771F19766B40C0526619A98BEDEA7 /* UMModuleRegistryAdapter.m */, + 1DC3A38291602404DF9C037F60F8033F /* UMModuleRegistryHolderReactModule.h */, + 23BF18B6DA1A3CBB7A34C06EC9328DBF /* UMModuleRegistryHolderReactModule.m */, + 4CDE974C6A3448610A705D1840228F96 /* UMViewManagerAdapterClassesRegistry.h */, + 93E30264A1328C537A036A978AFBF847 /* UMViewManagerAdapterClassesRegistry.m */, ); - name = "Support Files"; - path = "../../ios/Pods/Target Support Files/react-native-background-timer"; + name = UMModuleRegistryAdapter; + path = UMReactNativeAdapter/UMModuleRegistryAdapter; sourceTree = ""; }; - EE65B4D0AA6B0373DC94EF18B6FEECFB /* functions */ = { + EF29766FFEC54BB473D3D86002F4B120 /* React-RCTBlob */ = { isa = PBXGroup; children = ( - 22FAF742CB5CC4C9D7C3DC50F3094EAB /* RNFirebaseFunctions.h */, - 852FE4D4C630CDD04A0F67358C135738 /* RNFirebaseFunctions.m */, + C8E4EDDF6E319A8BA5C073AC8E4A4B48 /* RCTBlobCollector.mm */, + 1DCE4A565AF42911C714A82B3D102689 /* RCTBlobManager.mm */, + 293F3A5861041C8FCB16C201994E495A /* RCTBlobPlugins.mm */, + F6BC12CCAC36E171F1E235CC58124D72 /* RCTFileReaderModule.mm */, + 541AB2FDD3DB593A0D1E7117374864EE /* Pod */, + 9A45CF9E8312F202C82A1E8CCB7A4AA3 /* Support Files */, ); - name = functions; - path = RNFirebase/functions; + name = "React-RCTBlob"; + path = "../../node_modules/react-native/Libraries/Blob"; sourceTree = ""; }; - EF101346827132AEE9E75EAF863FBD9C /* Base */ = { + EF2EB3B468371A619850DCBC220CC4E0 /* UMViewManagerAdapter */ = { isa = PBXGroup; children = ( - 8115FE918D09220F2DE70FDF0B87A2E1 /* RCTAssert.h */, - A3FC3367489FCDCEAAFAC08B10599EC1 /* RCTAssert.m */, - 2E72E9D52F37CD871C6EFA0C46E5899D /* RCTBridge.h */, - ABF3E02DF86394EF28191B22D5FB3F12 /* RCTBridge.m */, - 8B6A582F34B9B493FF15016EE89BE48F /* RCTBridge+Private.h */, - 80448D56DD2B463BCDBFBB3E5763237E /* RCTBridgeDelegate.h */, - F3A0A2FEF9B77CEC928875C842D41586 /* RCTBridgeMethod.h */, - 2B816DA2D6F8861904EA446D74DFF951 /* RCTBridgeModule.h */, - 3B71A920C29887C22EF38F089AC74AC3 /* RCTBundleURLProvider.h */, - DF22B26A42CCFCCA352128CBD25F0A45 /* RCTBundleURLProvider.m */, - AEF51B0C250F3801E5F3D379897E6638 /* RCTComponentEvent.h */, - 6D4954EAB8F90824EDE56AB510D5EE73 /* RCTComponentEvent.m */, - 0A0CD1151988E642F6763E1E0FEBC062 /* RCTConstants.h */, - 1701BB16E424CF991A1E406CC52B285A /* RCTConstants.m */, - E75FF60B158B1B011137F71422617F65 /* RCTConvert.h */, - FF797AFF7642211A0E1F523358E1D58F /* RCTConvert.m */, - 6C5289DEFC56ED39BD71D8EC5B4C8A94 /* RCTCxxConvert.h */, - C04CAF1C9D2A557190D23C05A5E1215A /* RCTCxxConvert.m */, - 16086B523FED7F06189654E0468CA934 /* RCTDefines.h */, - B20198EFA4160D60463C44CAC66050AB /* RCTDisplayLink.h */, - 6A450AD5397BFD2E0D6FDB4F0F6450FE /* RCTDisplayLink.m */, - FE2D90C34D9C0A9A6644DEAEDC0436CB /* RCTErrorCustomizer.h */, - 9B1F98A9F2248FB8361C4DE18FFAF51F /* RCTErrorInfo.h */, - 326D36A3C74DC68345558AC3A851ADC9 /* RCTErrorInfo.m */, - 04368F41390E638813991BAD65E58B7B /* RCTEventDispatcher.h */, - 95549270A926FC4112B9DB87B1B81B07 /* RCTEventDispatcher.m */, - 63CC07745CC112A9D0FD8C382B2E4996 /* RCTFrameUpdate.h */, - A20E0FF6E32A8014393A252BE69DCB70 /* RCTFrameUpdate.m */, - 0ACC86BFC387731739DC830B7201E00D /* RCTImageSource.h */, - 5153E4056ECE5A55050793F2F68FFE44 /* RCTImageSource.m */, - D6C4E57C2A32AB291E71C5C57F0003C6 /* RCTInvalidating.h */, - 0A3B08539A1E5B0286CB3F069942B8C7 /* RCTJavaScriptExecutor.h */, - 8F5772719D832396BF64A57BE9B84093 /* RCTJavaScriptLoader.h */, - AC06E8BB8CABAFF99B9F61176E5F56DA /* RCTJavaScriptLoader.mm */, - 85402553C855BA51F1055005117A39FF /* RCTJSStackFrame.h */, - 91D62D79BF728D7D47458B94EDD49343 /* RCTJSStackFrame.m */, - CFF32CC3D0FB184C73F3C51E065F5D86 /* RCTKeyCommands.h */, - 03D7B85BCC7288374F354DCD44FC86E9 /* RCTKeyCommands.m */, - 033AEAAFCE60615AF48A038283404C6B /* RCTLog.h */, - BF7626FC6716B8FFD496BE502D49929E /* RCTLog.mm */, - 67F39C23F14E1B6B3DD1CDCE99A24B17 /* RCTManagedPointer.h */, - 3121408745595749887D41BA8C1D4AB2 /* RCTManagedPointer.mm */, - 4D38B1CF0BD847B29727942342B11073 /* RCTModuleData.h */, - 24A7EE7C1875E720E6FD85B5EEE4C368 /* RCTModuleData.mm */, - 1DD31C9CD7C36C6C05AA5884262620D1 /* RCTModuleMethod.h */, - 4E79E7C4475819BE6183F64D6F78755E /* RCTModuleMethod.mm */, - B618191C488469517862C07BD8B81C74 /* RCTMultipartDataTask.h */, - 828FBD145761D75B0E31ABC077DB5116 /* RCTMultipartDataTask.m */, - C90E0C7B1D9E78D0B532D1E356CCD82E /* RCTMultipartStreamReader.h */, - 33663800333B2DE3B96EF0EC3C8A7306 /* RCTMultipartStreamReader.m */, - 9FDF17D3E268D3800790669D4706ECD0 /* RCTNullability.h */, - 3BA5BEBF5EA5AEAF9C55ADFDF12357EB /* RCTParserUtils.h */, - 78292FDA999C9C32726C8A5E4C3A1CE8 /* RCTParserUtils.m */, - 5BED72909D9D39B0BB048E44A539BCCF /* RCTPerformanceLogger.h */, - 7EEF847DAF7DFCB10B8D9F2F6AD2C9AB /* RCTPerformanceLogger.m */, - 5C2D2383D87C2AA4BF53D7569872A92E /* RCTRedBoxSetEnabled.h */, - B6650A0AD796D6E7B79B515E7D756EF7 /* RCTRedBoxSetEnabled.m */, - 708760842867F929E52FEE8EF9CB114F /* RCTReloadCommand.h */, - D1C1E335ECAE091937087AEF551B8518 /* RCTReloadCommand.m */, - EA772201825DCD0D0BD240A7017BAF9F /* RCTRootContentView.h */, - 35D65F11FB88FBD45804F6317971486A /* RCTRootContentView.m */, - 36CBBA01812843981C3B21BD724C267F /* RCTRootView.h */, - B71CC676F795E509843A7A323A901A01 /* RCTRootView.m */, - 6C01B0B04ED5559FDBFB6896F2E1CD1B /* RCTRootViewDelegate.h */, - EB0503C4040CB6D5AB321E65307863ED /* RCTRootViewInternal.h */, - 3DC4C8830B7C0D76E6F9DEF1FE64BC05 /* RCTTouchEvent.h */, - 6C64BF2A1D2437CA52AEE039EF8792AA /* RCTTouchEvent.m */, - C0A3B1DB40C9E348BFB3FE22BA06305C /* RCTTouchHandler.h */, - 41949BFA1C03419EA1DBC94919B131BF /* RCTTouchHandler.m */, - 085AB487C8EB644BA63C60DAF68D9AC4 /* RCTURLRequestDelegate.h */, - 2151AAB814BA4694A87F13FCB2CE314C /* RCTURLRequestHandler.h */, - 52D70E6A6AE650734FECF0BA7B5B3005 /* RCTUtils.h */, - 389456A7DF76B1A6643347A601988A77 /* RCTUtils.m */, - 811549BA5884DCB69CBD81DD7841462B /* RCTUtilsUIOverride.h */, - B8236816F9EF6C835ADEF7EBD8A51FEE /* RCTUtilsUIOverride.m */, - E38BAD38A31B5ED29F98169234AC11AF /* RCTVersion.h */, - 495A5EEC39F246A0D653BAFDC490350C /* RCTVersion.m */, - 5050A1FCDE105C0CA29E4FD8D2768331 /* RCTWeakProxy.h */, - 920FAF2B438559869A6D0190293E50AC /* RCTWeakProxy.m */, - DAF4DBD0285BD09916D0C072B983EA9F /* Surface */, + 3946D661F26F8CD342B8AECEC042778D /* UMViewManagerAdapter.h */, + 6EF1AA06CE823061D52ADF10C6D10E02 /* UMViewManagerAdapter.m */, ); - name = Base; - path = React/Base; + name = UMViewManagerAdapter; + path = UMReactNativeAdapter/UMViewManagerAdapter; sourceTree = ""; }; - F020484A4D965B457F3A9894F1533253 /* Pod */ = { + EF8AEB62E89BC220B3620E6367ED914B /* Yoga */ = { isa = PBXGroup; children = ( - 03EFB66160C26CFADD86A2D0EF4170B2 /* LICENSE */, - 87B71FD51EA1572EA6A630BDD7648867 /* ReactNativeKeyboardTrackingView.podspec */, - 58B93084D8745E5D0FB2F92B61D24F47 /* README.md */, + AF418F68F0F15D466B7CE3C7187E7C91 /* BitUtils.h */, + 89EE65AC3EC2EAE0411369C8BF245F24 /* CompactValue.h */, + D3780A9E809F0C5A16D713F2E0F0ECB2 /* log.cpp */, + 4745AF174D142835C084841119CF095D /* log.h */, + 489F0F3B465EAA66CBF8E2FF8BC18A4F /* Utils.cpp */, + B7C738501213DF7BA864DB8C722B5F55 /* Utils.h */, + BE191BB1F9A0D534ECCF9AC72F80AA03 /* YGConfig.cpp */, + 3F7E080C7767A10A417F5E5A45BEC454 /* YGConfig.h */, + 508389C53318E4312B3FE5BF0AEAEB2D /* YGEnums.cpp */, + E651C920E7D985973C23534C9C7D50F4 /* YGEnums.h */, + 5E9164152232BD9BCA6DA1580B915619 /* YGFloatOptional.h */, + D00754C442A7521A277AED36CF599A9A /* YGLayout.cpp */, + B7DFC6136FDF82940F2E14358896A30C /* YGLayout.h */, + AEF55CDCBDB02907B3E948D1A9F24DE5 /* YGMacros.h */, + C44F0DD346E6E691E805C3357725F999 /* YGNode.cpp */, + 596544AC58B464D81D296BF551C7A66C /* YGNode.h */, + EADED44A7E13FCE5B69DB97D9FC27441 /* YGNodePrint.cpp */, + 32354813AD17F8B119F088F385ED3A21 /* YGNodePrint.h */, + D0E69AABAF3D5E8170782606595C686C /* YGStyle.cpp */, + B06ACF2F89632A6B3EFC0D6EE70C3313 /* YGStyle.h */, + 27E75A58374AF4D65C9D681F436DA77D /* YGValue.cpp */, + 49FF0EBB0C9CC5B18B7F87E719B84FCD /* YGValue.h */, + D94FCB502C78D02BF63E1CE32E8E6C5D /* Yoga.cpp */, + DB6735B38020BAF443720BEF9222ADE0 /* Yoga.h */, + 8E6470A46B1B5072E89C06A9CF8C471D /* Yoga-internal.h */, + 59D89F472CC2829E035A145168D27CA6 /* event */, + 71846102461F1B443C7B66B5DC39ED3D /* internal */, + 919DBDF4E970EC01572338A7BD3E1E03 /* Pod */, + 85274F7E164D8786AA0DE615B68991CF /* Support Files */, + ); + name = Yoga; + path = "../../node_modules/react-native/ReactCommon/yoga"; + sourceTree = ""; + }; + F025E3B2119B678626DDAB0E70D9F5D3 /* QBImagePickerController */ = { + isa = PBXGroup; + children = ( + A7CAAD1ED4F12E5B2F74362B2A7C67E2 /* QBAlbumCell.h */, + B599B1FF1EA73833D1957077D22D6459 /* QBAlbumCell.m */, + 4A1E990DE7C5E9061369D6E21A2B2B11 /* QBAlbumsViewController.h */, + 1CFF36678EC0BC917B348604CF042798 /* QBAlbumsViewController.m */, + F91C8A02C11CEDBF8B71E7580A4C7325 /* QBAssetCell.h */, + B2FDEF14CB347682E989448C98CC7F33 /* QBAssetCell.m */, + F48ECF1191ACC5304D8488328ECFF95D /* QBAssetsViewController.h */, + F2C9551D85D1D5A383009812457FA039 /* QBAssetsViewController.m */, + 44F26DE043B093BF0008239D78CC79B5 /* QBCheckmarkView.h */, + E4A980EC5E135E073BD60E890BB899CC /* QBCheckmarkView.m */, + B8F98B09CE1B8A8C25952C0834F6C886 /* QBImagePickerController.h */, + 011F9539823FF372ADF8DDED69488A4C /* QBImagePickerController.m */, + 6966F7D983FC80CC395542046F2CBC5C /* QBSlomoIconView.h */, + 0DE8FD68C12095C34E9DB34D506F06B0 /* QBSlomoIconView.m */, + 95CEC13D041A8788A3A6DBBB8224F596 /* QBVideoIconView.h */, + 4F4F57B098C6AA5F9B85E76499C5DCD9 /* QBVideoIconView.m */, + 2DA6FAC6C0E1D26442FDF849CB49F96B /* QBVideoIndicatorView.h */, + 91D4639CCF8AA8BFAE1C6D04362F0DBD /* QBVideoIndicatorView.m */, + 8930E12C0E5052BEA072FF0FFD8514AB /* Resources */, + ); + name = QBImagePickerController; + sourceTree = ""; + }; + F02693760A6B96BFE391F7A5A59D4646 /* RNBootSplash */ = { + isa = PBXGroup; + children = ( + BA96749385CBDE0CCB010AB3A0192BD3 /* RNBootSplash.h */, + CBA342BD99C5EDFE388B9A0EE09B9D1D /* RNBootSplash.m */, + 052224516D405AFF8E6B0BA7D0D64857 /* Pod */, + 9F4C302E299DEBB2D5181F9D95870C66 /* Support Files */, + ); + name = RNBootSplash; + path = "../../node_modules/react-native-bootsplash"; + sourceTree = ""; + }; + F13DE045CEA0A44A7E05941EA26990AC /* React-RCTLinking */ = { + isa = PBXGroup; + children = ( + E8D48D9E754A19671CCA6F4DCCC43B75 /* RCTLinkingManager.mm */, + 65BEB90BE7B53E88E5BBB269DB4117BE /* RCTLinkingPlugins.mm */, + EBA53D458831E5E05CC19632DCB6E14B /* Pod */, + 9EF6159D8C3AEFFE546C6E60C35EE85C /* Support Files */, + ); + name = "React-RCTLinking"; + path = "../../node_modules/react-native/Libraries/LinkingIOS"; + sourceTree = ""; + }; + F2291D93C879F47069F8AD5076C3217D /* Pod */ = { + isa = PBXGroup; + children = ( + 63C4048F1F829AFE0D7EC218751ADD96 /* BugsnagReactNative.podspec */, + 73C56D2E6697C1188A12E31B616D2627 /* LICENSE.txt */, + 34FE37133A8BB7891A2F8E574BB2FA11 /* README.md */, ); name = Pod; sourceTree = ""; }; - F0D24934AB932CFE3017CF97EC12DCD7 /* Pod */ = { + F2FDC8D560FD43D95A1DC549F936C1C8 /* React-RCTSettings */ = { isa = PBXGroup; children = ( - F8D8807D2F9F38A8B1D0137B955713B0 /* React-RCTVibration.podspec */, + 5E3F476E74DD223B1A141DE6F15D76E9 /* RCTSettingsManager.mm */, + AC6C66141EB68FB0DF7B8B82D9435216 /* RCTSettingsPlugins.mm */, + 4B53022243721C7173309FB6C4139E54 /* Pod */, + 3D2EDD2ECFBC4F73DFFDDCFA65C529EE /* Support Files */, ); - name = Pod; + name = "React-RCTSettings"; + path = "../../node_modules/react-native/Libraries/Settings"; sourceTree = ""; }; - F10C7E5318941DCA2B337E21F2877404 /* Support Files */ = { + F33D0F04595E70495BEEFD68E7BB7641 /* ReactNativeART */ = { isa = PBXGroup; children = ( - 0CBE6A03E32FC26465FCF0F3AF1DFDEB /* FBReactNativeSpec.xcconfig */, - 60858CE18B6F41A28DF33F05A605755F /* FBReactNativeSpec-dummy.m */, - DB4C55ACA9CBDCF6D9EC77EA48215B9D /* FBReactNativeSpec-prefix.pch */, + 813A7430388309B418DD081264472193 /* ARTCGFloatArray.h */, + AF22D40689FCFF5C60FDDA19CE656E10 /* ARTContainer.h */, + 132512A9488538200230AE9B85864B1B /* ARTGroup.h */, + F5E574017DE188FB157E9C148E67D9A4 /* ARTGroup.m */, + 9D69A9CA01FD4A1D10E9F992B60BAB56 /* ARTNode.h */, + 2A445D57406D89161D847FE6F493ED4B /* ARTNode.m */, + DD2994025FEE926A7B3A139CD7CC1019 /* ARTRenderable.h */, + A81BF880660132943B1E49E251DD074A /* ARTRenderable.m */, + 00921F7873CACBCE0A54AEDD40B739E1 /* ARTShadow.h */, + 1E21A9098DB891F78979916E9D051107 /* ARTShape.h */, + 14CD3FC365738EB6C10A99DD724BC984 /* ARTShape.m */, + A2F701C62B224B575C2C151A5CA544D0 /* ARTSurfaceView.h */, + CF24F12DAB81E975DC3CDA46DA641907 /* ARTSurfaceView.m */, + 48BBE9DE98509E29FD0517D37E242CE9 /* ARTText.h */, + EF70A307184FCF86D6BF324F32546930 /* ARTText.m */, + 3216D6E46C1C5A0CD982628FC88EC10E /* ARTTextFrame.h */, + 03638B0C01AF832F3970C20F5A684465 /* RCTConvert+ART.h */, + 23B3BDE3B10C6430AEFC0C93E3FABCBF /* RCTConvert+ART.m */, + 62D980FC0C8CFB603763923ECE3F1D1C /* Brushes */, + B439068E9AA2F55AF076DA9C5C9F9E41 /* Pod */, + 183430F0594464CAF88FE192FA546D40 /* Support Files */, + 22A0097185DE5FAB0D1017A8DF884218 /* ViewManagers */, ); - name = "Support Files"; - path = "../../../../ios/Pods/Target Support Files/FBReactNativeSpec"; + name = ReactNativeART; + path = "../../node_modules/@react-native-community/art"; sourceTree = ""; }; - F235A942234865F3EF20F2D0B41AD9D0 /* Services */ = { + F4253B7308BED0323718169486D73C40 /* Drivers */ = { isa = PBXGroup; children = ( - 5E7CB605C99232859478956B9F5666B1 /* UMReactFontManager.h */, - C5F49D1EC24C9C8AD979AEF0E0EFFCA9 /* UMReactFontManager.m */, - 12D61B0E0EB973297C194764B16CFAC9 /* UMReactLogHandler.h */, - 3472323B1AEFB0C13EE49F7103F6F7E0 /* UMReactLogHandler.m */, - BB81AFF45CB95797F486992B1E8100EA /* UMReactNativeAdapter.h */, - B97BDA6F53DC963FFDAB0486599E7CE5 /* UMReactNativeAdapter.m */, - 5D2517773353E46D53822F93FCD03A52 /* UMReactNativeEventEmitter.h */, - 567A0387E0B73D92544B9B6AE5BD82B3 /* UMReactNativeEventEmitter.m */, + 0D7E51FB5AD15ED2B782EC8ABDA4F405 /* RCTAnimationDriver.h */, + 76DADF74CB705D187B99638538FC19E4 /* RCTDecayAnimation.h */, + AF71F1C43B5C9DFF04B6B15E9A6940A9 /* RCTEventAnimation.h */, + EDD536EDC605E381D750F904F141E0BA /* RCTFrameAnimation.h */, + FBD8E3F4B4ED49CD6910E86F1AE7885D /* RCTSpringAnimation.h */, ); - name = Services; - path = UMReactNativeAdapter/Services; + name = Drivers; + path = Libraries/NativeAnimation/Drivers; sourceTree = ""; }; - F2A223D05F18CE3A60AE0A64BDE71432 /* Support Files */ = { + F42B3AF8502AAA17326796168D4871EA /* VirtualText */ = { isa = PBXGroup; children = ( - 2EA97B926A768539C6BAA099C794686B /* RNFirebase.xcconfig */, - 7C618878BFD5F90425C57D631F36882B /* RNFirebase-dummy.m */, - DA3AA52165A726BA9E523EDA3D56A8F6 /* RNFirebase-prefix.pch */, + 3285D9B72175CF0C2521DD29C3BAE674 /* RCTVirtualTextShadowView.m */, + C0000B38299D5F22C8F43DF382FF1EDD /* RCTVirtualTextViewManager.m */, ); - name = "Support Files"; - path = "../../../ios/Pods/Target Support Files/RNFirebase"; - sourceTree = ""; - }; - F2C96C477D8226F4791C9F63C3A28860 /* Pod */ = { - isa = PBXGroup; - children = ( - F39A5404AA239D0E75CB950CF411FE80 /* LICENSE */, - F5389A68C398F18674C3B6301B3D9BE9 /* README.md */, - 82534E17B8C568B7A4B034494BFCFCDA /* RNFastImage.podspec */, - ); - name = Pod; - sourceTree = ""; - }; - F328997D35C107D877CD77AF7AE95930 /* turbomodule */ = { - isa = PBXGroup; - children = ( - 4A3EF155D81E1A88F1BB2F484ECAD67B /* core */, - ); - name = turbomodule; - sourceTree = ""; - }; - F381048309BA1C1901E7EF2C9EEDB38E /* react-native-webview */ = { - isa = PBXGroup; - children = ( - 813969899FF7A97B2580ECA23BEF72A2 /* RNCWebView.h */, - 564AA92D57D9228644E3BE9F170936B2 /* RNCWebView.m */, - 2A825626709AF13F75D065EFCC2E9178 /* RNCWebViewManager.h */, - 57339AC3E4854CA0132274F301561DC6 /* RNCWebViewManager.m */, - DE47BFDAFC0E663561F7E81427C0C6FD /* RNCWKProcessPoolManager.h */, - E282F321953E292EEE8FEE03D7E56028 /* RNCWKProcessPoolManager.m */, - 834362F1E8D1719B6D969EE019EFAFEE /* Pod */, - 7F2C4C41C3FC2FECB5F6E4E3750C45D1 /* Support Files */, - ); - name = "react-native-webview"; - path = "../../node_modules/react-native-webview"; - sourceTree = ""; - }; - F444A175FD45C81AC68FA64C4A9C5211 /* Pod */ = { - isa = PBXGroup; - children = ( - 3128C28642D3ACDF91F0A1B18869FF79 /* Yoga.podspec */, - ); - name = Pod; + name = VirtualText; + path = VirtualText; sourceTree = ""; }; F4D615014D307CD94C9909174108B919 /* Support Files */ = { @@ -17318,323 +17342,302 @@ path = "../Target Support Files/GoogleDataTransportCCTSupport"; sourceTree = ""; }; - F4F451FE4EC5499630858AEFD9F886B9 /* UMModuleRegistry */ = { + F50DB291E9F86BE872B46ABD0397B244 /* Pod */ = { isa = PBXGroup; children = ( - FC60657ABF083F4E205C72EFD4A89ED6 /* UMModuleRegistry.h */, - 9DDEACF6D9F9C551705FE0806A63C8A8 /* UMModuleRegistry.m */, - B9FEEC4F1C841ACAA260B57643E7C1DC /* UMModuleRegistryDelegate.h */, - ); - name = UMModuleRegistry; - path = UMCore/UMModuleRegistry; - sourceTree = ""; - }; - F54F8A9C7509943B758510D02EB572D7 /* Support Files */ = { - isa = PBXGroup; - children = ( - AC7AD2E3DC6B86D1E8C1603D810A6621 /* EXKeepAwake.xcconfig */, - E9102DC33F063D111268F43954462C5F /* EXKeepAwake-dummy.m */, - C80F0E598D55849543372327E7C3B29C /* EXKeepAwake-prefix.pch */, - ); - name = "Support Files"; - path = "../../../ios/Pods/Target Support Files/EXKeepAwake"; - sourceTree = ""; - }; - F5517A089DAB12A29DF2BAF32329221A /* Pod */ = { - isa = PBXGroup; - children = ( - 4DD8F5BBEF8845E9E86F103F6C46EAEB /* React-RCTSettings.podspec */, + B461FC172601FC5B65885467EC7D6D81 /* React-jsinspector.podspec */, ); name = Pod; sourceTree = ""; }; - F5BA84817B455B52937635C1AF266E45 /* UMCameraInterface */ = { + F5E761BD1970F599ABC4A16618C7AE4D /* Pod */ = { isa = PBXGroup; children = ( - 3C414E485D7D4519F47F6D97898A8A82 /* UMCameraInterface.h */, - 00A079864AD33771F2A53BCE5E0B145F /* Pod */, - 317BE13528C9A8D44F3F0482124D3ABA /* Support Files */, - ); - name = UMCameraInterface; - path = "../../node_modules/unimodules-camera-interface/ios"; - sourceTree = ""; - }; - F5E16C2C6E06593544B52720DB25D207 /* Inspector */ = { - isa = PBXGroup; - children = ( - 517ABDB6A1D22F90BC800E73D1E05B81 /* RCTInspector.h */, - 89720CB68A82B2FF5B98EE4FA09BF861 /* RCTInspector.mm */, - FC6F87B7F612DF3143D29D6AE4896240 /* RCTInspectorPackagerConnection.h */, - 0A3AF7F862CC74712717A4D37F702C87 /* RCTInspectorPackagerConnection.m */, - ); - name = Inspector; - path = React/Inspector; - sourceTree = ""; - }; - F5EA1132D12EBE0D44C88A50126916F9 /* UMBarCodeScannerInterface */ = { - isa = PBXGroup; - children = ( - EC8C4041B73C5CB3A45BA4332D46F52A /* UMBarCodeScannerInterface.h */, - A013810CEF6D83C459DDA3977033960D /* UMBarCodeScannerProviderInterface.h */, - 4B0E585FE0E1E6F4CE16345AA3F74056 /* Pod */, - F7105646CA276323D0626FCD34A9F27B /* Support Files */, - ); - name = UMBarCodeScannerInterface; - path = "../../node_modules/unimodules-barcode-scanner-interface/ios"; - sourceTree = ""; - }; - F6FE39A766D890F4EABCFF0EAEDC4CB0 /* rn-extensions-share */ = { - isa = PBXGroup; - children = ( - E0AD1427763970DC8ED1AC36E05D631A /* ReactNativeShareExtension.h */, - 54D49797DB034BD9AFCF33501341C011 /* ReactNativeShareExtension.m */, - 05BE414C0768A61070674D2FE684EF11 /* Pod */, - 23C007FAAC3BF44C6DCDF0FA37F53CBF /* Support Files */, - ); - name = "rn-extensions-share"; - path = "../../node_modules/rn-extensions-share"; - sourceTree = ""; - }; - F7105646CA276323D0626FCD34A9F27B /* Support Files */ = { - isa = PBXGroup; - children = ( - 761EAF3FCA2645F60BC33C873CD2F36A /* UMBarCodeScannerInterface.xcconfig */, - ); - name = "Support Files"; - path = "../../../ios/Pods/Target Support Files/UMBarCodeScannerInterface"; - sourceTree = ""; - }; - F715E9434EC6EF1E33CA6D85BD7F95C6 /* Pod */ = { - isa = PBXGroup; - children = ( - 3780662E1E04FF442BC6E58B98F204FF /* UMTaskManagerInterface.podspec */, + 0CAE368C8A53780368D62B25F3EC15CC /* EXWebBrowser.podspec */, ); name = Pod; sourceTree = ""; }; - F7A3EE7BE439217096ED1A8E4053E51B /* Pod */ = { + F5E83C574FF3F120B6FD272F47D0C5A6 /* Pod */ = { isa = PBXGroup; children = ( - 703A7C3217E38DACDBE6920B34456205 /* UMReactNativeAdapter.podspec */, + 2A54C74343506DD8F9DB00DE1828162E /* KeyCommands.podspec */, + E79BEA93FC21D229BBB696849EC49633 /* README.md */, ); name = Pod; sourceTree = ""; }; - F7ACBD2E52F57141CB0F91C7B25449FF /* Support Files */ = { + F769BA449D6CBBD1BA2B6D949567A492 /* Support Files */ = { isa = PBXGroup; children = ( - 9EFD597556152014E460AB59EA35433F /* EXImageLoader.xcconfig */, - 14DB85DA281E7406A95457602CC430B7 /* EXImageLoader-dummy.m */, - E099E92E0B7F38EA63EE0169305F4CF8 /* EXImageLoader-prefix.pch */, + 2A2F2DE8B28F8EE7AA23F9C17E4A6265 /* FBLazyVector.xcconfig */, ); name = "Support Files"; - path = "../../../ios/Pods/Target Support Files/EXImageLoader"; + path = "../../../../ios/Pods/Target Support Files/FBLazyVector"; sourceTree = ""; }; - F83F66880ABE8AF483C777FA6360A013 /* Support Files */ = { + F76A231E1ED7D87BD5D5917E364CB179 /* Support Files */ = { isa = PBXGroup; children = ( - 3E35514A3865F337BAB34807B357E24B /* RNRootView.xcconfig */, - 9D82889CC21A3DDC1621A270CDF87004 /* RNRootView-dummy.m */, - 110E77A6AB839639D0BB6E6E11CA239A /* RNRootView-prefix.pch */, + 134E16391744A20EC630C21C6A5E930E /* UMFileSystemInterface.xcconfig */, ); name = "Support Files"; - path = "../../ios/Pods/Target Support Files/RNRootView"; + path = "../../../ios/Pods/Target Support Files/UMFileSystemInterface"; sourceTree = ""; }; - FA020F1D7148238F70324A38FC757611 /* BaseText */ = { + F777E77902613F7C972A6FCD1FBA7595 /* react-native-appearance */ = { isa = PBXGroup; children = ( - 969B6F69D32F2EB84CFA0A410BDA47DF /* RCTBaseTextShadowView.h */, - F31B10DD59C3075F35A0B2716A3B6DFB /* RCTBaseTextViewManager.h */, + B836EF8DCDD813AF20196405111B4CFB /* RNCAppearance.h */, + F63CF6D8A75D7791060392A80D1FF74D /* RNCAppearance.m */, + 344CE5009D65C274F4AD6785A32E6357 /* RNCAppearanceProvider.h */, + 087220498ABB5A8FD1700F9DB776AF7E /* RNCAppearanceProvider.m */, + 66EA7B30251E087C9A48B9140A0D146F /* RNCAppearanceProviderManager.h */, + 119A86EF874A697FF838E52CD77370EB /* RNCAppearanceProviderManager.m */, + 7CFCDD7B47B3E0B558F5F328F9D6B02D /* Pod */, + E17337FC7F4F63F373AC97654F23BC3A /* Support Files */, ); - name = BaseText; - path = Libraries/Text/BaseText; + name = "react-native-appearance"; + path = "../../node_modules/react-native-appearance"; sourceTree = ""; }; - FA7EAECB9AC9BF29E6D0E9D29F1CC228 /* RNFetchBlob */ = { + FA2179C196584DEF6FC48E26CD0EBD81 /* RNCAsyncStorage */ = { isa = PBXGroup; children = ( - 8794386314BC0C939B3CB5F62BEF3F43 /* RNFetchBlob.h */, - 54F82C1E638911B9626F6A00BAF5B246 /* RNFetchBlob.m */, + C343B2786CEE68D3AB66F5D59A12F86F /* RNCAsyncStorage.h */, + B4D31501231135BD6F9C77D30D0D71E6 /* RNCAsyncStorage.m */, + EF4B8F7C058E572DCBD603D8A4AD2E5E /* RNCAsyncStorageDelegate.h */, + 89A517AA8A486003D3073C9F07B627D3 /* Pod */, + 1F3604E3F1D965A32004224A3BCA0210 /* Support Files */, ); - name = RNFetchBlob; - path = ios/RNFetchBlob; + name = RNCAsyncStorage; + path = "../../node_modules/@react-native-community/async-storage"; sourceTree = ""; }; - FBEFC76A7AA91C7D536FD1FC328DDB4C /* LNInterpolation */ = { + FA6E7B3005EBC76D0B37EB87FABD5048 /* Core */ = { isa = PBXGroup; children = ( - C6276349EE478C396F4BC9158E31AE4F /* Color+Interpolation.h */, - CB96AF637F193EB9518FE01E94128B9C /* Color+Interpolation.m */, - 29338AFC017E7E5A79D48DB5F1F97991 /* LNAnimator.h */, - 080EC6C50A948DD67F2B8A2304C6EB5F /* LNAnimator.m */, - 73AA7F6FDD0109D9B53978B88A0903BA /* LNInterpolable.h */, - F9E2008C989F4237835E3833036DF057 /* LNInterpolable.m */, - 4069652AA03B0E7510525C531D945EC2 /* LNInterpolation.h */, - 37A782E342242AD117AB051759601D63 /* NSValue+Interpolation.h */, + 8DA2CB45D21859F95DD55D1AADC9C04B /* NSBezierPath+SDRoundedCorners.h */, + DD5D01DBFEAF61F0C7CC9A8C1B30C162 /* NSBezierPath+SDRoundedCorners.m */, + C41134D489B1012CFE2822E772D00509 /* NSButton+WebCache.h */, + E84082D55677B5A881FBE68FD01FBDFA /* NSButton+WebCache.m */, + 1A3B7763382C804E1C2BF90289FC018D /* NSData+ImageContentType.h */, + 52378BBFB370CC0FC841244F60B7D504 /* NSData+ImageContentType.m */, + FBFC30F32120E94E520F8ADA9BF1F696 /* NSImage+Compatibility.h */, + C13162978A24E5E967EEE703E95D17ED /* NSImage+Compatibility.m */, + 61AC145B5EE6989D9E5570F2D41E648E /* SDAnimatedImage.h */, + C098C8D5C715F5E1A1A851402AD3DDD1 /* SDAnimatedImage.m */, + AFC773FB089807C6B296B5993EBAE0BA /* SDAnimatedImagePlayer.h */, + 50FBB239ECC5D997D96FB4D43BD76245 /* SDAnimatedImagePlayer.m */, + 21F177EFEF22345D597A4CC3E0A136B9 /* SDAnimatedImageRep.h */, + 7482609638507AC0F8E7C1EF39177AF2 /* SDAnimatedImageRep.m */, + 792BF75F2B73DBDBCA89D430142AA25A /* SDAnimatedImageView.h */, + 594263C5F8C23C0F6549C3D357EAA8D9 /* SDAnimatedImageView.m */, + FD8C98C03E189AC8EA90F9C6621B52C5 /* SDAnimatedImageView+WebCache.h */, + FD20870EF3F3A46EB58FFC48DB1B5224 /* SDAnimatedImageView+WebCache.m */, + 2952E27BF9F0CFCCA04A79B288B61238 /* SDAssociatedObject.h */, + 3C758720FBDFC405651DAA85A702C271 /* SDAssociatedObject.m */, + B9E16A1627374EC1824A246EEC40C717 /* SDAsyncBlockOperation.h */, + F3566984308705C175703B7F89A6833E /* SDAsyncBlockOperation.m */, + 3DEC874383540423F3B8411C57D547CF /* SDDeviceHelper.h */, + 95CB55A7B0A49266F5B1D14830566C37 /* SDDeviceHelper.m */, + 54BBCFBF9867A2D6114CDC91D4345CE7 /* SDDiskCache.h */, + 228982F3D54A22FFDF10D1183691C680 /* SDDiskCache.m */, + CBE3F6150FEC3B7B1922FA9926E7EEEB /* SDDisplayLink.h */, + 18E617FD1CB69EA7B27B6351957EFB23 /* SDDisplayLink.m */, + EED2AAD6B55F43BE137678CC34902005 /* SDFileAttributeHelper.h */, + 36EC21E539621DCC9EB876104EBA996B /* SDFileAttributeHelper.m */, + B635DF33BB6AECF36841D30C5ECBEB8B /* SDGraphicsImageRenderer.h */, + 4B88BC78BEF6D9D5545EED4ADAAE9F03 /* SDGraphicsImageRenderer.m */, + 7C7359202C1CCC5A66272D7A852D4AC2 /* SDImageAPNGCoder.h */, + E1857959E99AF4C358B3C474EB7A392C /* SDImageAPNGCoder.m */, + 0543D000A1973D9F088EDAC9C9FC2797 /* SDImageAssetManager.h */, + 8C87F594BE17F7E0282B084DB701CB81 /* SDImageAssetManager.m */, + F8BAA4003782CA3A60F2B4D3BB7086B3 /* SDImageCache.h */, + 0E054B45EF98F3699A1A102C4A72AEC1 /* SDImageCache.m */, + FED2C434111B58544FE00142915D2BB1 /* SDImageCacheConfig.h */, + 3FB43F8CBBD97000C841E4D7F68D2B2B /* SDImageCacheConfig.m */, + F167CFFD284B0FFF442ACF950541A2E5 /* SDImageCacheDefine.h */, + C51A4E95B315C339E2A51008F8D90AED /* SDImageCacheDefine.m */, + 30C96B6FBE38ADE27EA3D6006C0AC7A0 /* SDImageCachesManager.h */, + DE6ADD67CF5B23EF6C19E4E5FC85A7F4 /* SDImageCachesManager.m */, + 29DBCFDBAB5E42ECA99B47E3A80A0D86 /* SDImageCachesManagerOperation.h */, + 5B24F284A1BC4020648A52078D771409 /* SDImageCachesManagerOperation.m */, + 00D71C6B7C575E7010F9C45456E08673 /* SDImageCoder.h */, + C0BDE6661197138B7F27DBEA70D7413C /* SDImageCoder.m */, + 27F8044BB7E4A1EC51400677033141C4 /* SDImageCoderHelper.h */, + 215427389590D7CA8681B2760C5628F8 /* SDImageCoderHelper.m */, + A6B65A06905EF54F40604862EE0F13D8 /* SDImageCodersManager.h */, + EE58664FCD565913AE6871C3D5B803C3 /* SDImageCodersManager.m */, + FE7DAAA929184EE2972600D683C3F606 /* SDImageFrame.h */, + 9C23991C3FDE1C776B675DA6C6CD438D /* SDImageFrame.m */, + 9556D10762D83AFDD3A82F844A9A594C /* SDImageGIFCoder.h */, + 0D0FDF41D4C7385A156979B710531C43 /* SDImageGIFCoder.m */, + 2032067482139E870F3D76AEBECF70D2 /* SDImageGraphics.h */, + E7E1CA3ECAD3AC58D7569AE3459DADCB /* SDImageGraphics.m */, + 2448764A175B560A796BE14DE72879B9 /* SDImageHEICCoder.h */, + 5645770560E1721D6A2068A2709B5B7F /* SDImageHEICCoder.m */, + 6AF4A3D6A542CE9E60A67A05D478C9F5 /* SDImageHEICCoderInternal.h */, + F48C2FDD95A944210BAC17E3F2A81D10 /* SDImageIOAnimatedCoder.h */, + B9182C7B43C9EA92F371808DB25BE9FC /* SDImageIOAnimatedCoder.m */, + 4A91A33C96BF578F37C37B3C171CC164 /* SDImageIOAnimatedCoderInternal.h */, + 6BFE8B284F1D5547C6E7C6FD275323A0 /* SDImageIOCoder.h */, + 74A054457DFE284200295BC67C233360 /* SDImageIOCoder.m */, + FBDBD188870AB892C69DFBC5EF887A83 /* SDImageLoader.h */, + F96EF64A44E8970497DDC90707CE5836 /* SDImageLoader.m */, + 8FCF04EC25DF8DDE61BA20A55F00221F /* SDImageLoadersManager.h */, + 370BF6933A1D93E0D3E88C028131E57F /* SDImageLoadersManager.m */, + 8F7B3DD8A8ADDB7D03896EBBEFEAD73F /* SDImageTransformer.h */, + 51890F9C01601CCC053E579463C52B0C /* SDImageTransformer.m */, + FB321BADAFA9397745118AE2D9F5D006 /* SDInternalMacros.h */, + 801B6580E775822080DE883164D5DBAE /* SDInternalMacros.m */, + 29C6A4E0DF9F91DE9CC5D92B1EDDF966 /* SDMemoryCache.h */, + 78A2D37DD7BFBBF51787FC6E94FB6A57 /* SDMemoryCache.m */, + 46B971B08FAAA9FA99ABF2E1B15E978A /* SDmetamacros.h */, + 9054BED36DA34AD256BAA55AC56F757E /* SDWeakProxy.h */, + 8F80D233C9B17483F731DE53534A5FEC /* SDWeakProxy.m */, + AEC62D162C442A6BF709A0F065459958 /* SDWebImage.h */, + 7FA6B50EAC9CA7DB8CF121FB5D7A5DFF /* SDWebImageCacheKeyFilter.h */, + 791EF85493741457ADCCC411F079EED5 /* SDWebImageCacheKeyFilter.m */, + C83DD93FD4E6AE1433C2F04BA609814C /* SDWebImageCacheSerializer.h */, + 2E87E59039E4BB326DC1CB1885E97319 /* SDWebImageCacheSerializer.m */, + 4D95D1860729A449E53146FB33AEB650 /* SDWebImageCompat.h */, + A50FBFDCC81267B08BA18C8E1327E23A /* SDWebImageCompat.m */, + CD7A37ACAA26355BA694F50A7739DE39 /* SDWebImageDefine.h */, + 6649BF50D876000CF02E5C42034F1878 /* SDWebImageDefine.m */, + B3F5DEBD532BBA42CE5F4B8F24C5A6CD /* SDWebImageDownloader.h */, + 8027D5D7C0EA673B28C61FFDCBA57939 /* SDWebImageDownloader.m */, + DB52526C36BC5C432E60D08D5715CD9D /* SDWebImageDownloaderConfig.h */, + B4AAF705609470DBD312A25B2E70A768 /* SDWebImageDownloaderConfig.m */, + FB4894EB93A32A29593D7C21C5BC5206 /* SDWebImageDownloaderDecryptor.h */, + 065E410EED9B34228BDF3AA55B9E85CF /* SDWebImageDownloaderDecryptor.m */, + 9EC6AB611780C8DEB792590428B46134 /* SDWebImageDownloaderOperation.h */, + 6E11B4F2519819CF7BCB537EB99904C0 /* SDWebImageDownloaderOperation.m */, + E8272C83E7406895D3FF58AA4451AC95 /* SDWebImageDownloaderRequestModifier.h */, + B22747AFC2C1934DAE7CE8C57047FA8A /* SDWebImageDownloaderRequestModifier.m */, + 3FB9F58959D458A4778A50E45AD6CBEF /* SDWebImageDownloaderResponseModifier.h */, + BD2E760D12539816B328A961CA97446C /* SDWebImageDownloaderResponseModifier.m */, + 08059AC4183ADBABDD17776B88788A08 /* SDWebImageError.h */, + E5A932D638E8B5BFA3E4F591C0F9FFA1 /* SDWebImageError.m */, + 33065731262EBDAC80BA38EDAB757A99 /* SDWebImageIndicator.h */, + D28D8C010541734A827ADDA48F4D69B5 /* SDWebImageIndicator.m */, + 700D61B93A014530A83DDAD4C2C6BC55 /* SDWebImageManager.h */, + 055F1FB54BFD80FFBFF62315A5BB21A5 /* SDWebImageManager.m */, + E1724977BC9821DC1A38684F88F8838B /* SDWebImageOperation.h */, + AC5EE4CAEE5EB08A574D75553DC5F91A /* SDWebImageOperation.m */, + 21E22075986CC9418A285BB180999C59 /* SDWebImageOptionsProcessor.h */, + B1B14D59DA08249468CFCB53C23BC6C0 /* SDWebImageOptionsProcessor.m */, + E69F73F0F050189060AEDD9232B2CAFD /* SDWebImagePrefetcher.h */, + C2609D085BBE7D426688E865F2D2155E /* SDWebImagePrefetcher.m */, + 187C95183B76EDED4819676F4FCAA8B7 /* SDWebImageTransition.h */, + D71EB1CADF7D1CAB6C7B0E5E74DA1196 /* SDWebImageTransition.m */, + 8EDB9DF0E65C5FE1F5149E93D6A48BD3 /* SDWebImageTransitionInternal.h */, + 6064C286A06D68E762BC7DBF84D30658 /* UIButton+WebCache.h */, + 57C51E509DBFDE9435124C87144D4DE9 /* UIButton+WebCache.m */, + 771BFFF07D9F4769D5A8B659E9E01666 /* UIColor+SDHexString.h */, + F37ECB64502A0D830FF2CF8F85A68B42 /* UIColor+SDHexString.m */, + 6697DB0C2CED532AD0B53577480A84E3 /* UIImage+ExtendedCacheData.h */, + 1DE06F29316C24D20AC38BA5C68A1D8C /* UIImage+ExtendedCacheData.m */, + 715B9CFD01E3E361C5BD4C73114E7931 /* UIImage+ForceDecode.h */, + 2D71622D3B17E49A160FEB716B01283C /* UIImage+ForceDecode.m */, + CAA69E1BFFDBE31AAE6AB019733C887E /* UIImage+GIF.h */, + ECE4D3F9A9B7EC1C23DF0139BE3486A1 /* UIImage+GIF.m */, + 00D7E51B3E6D16C666589649A5730D0B /* UIImage+MemoryCacheCost.h */, + 679F1C294EE4D54382BF793EEED1ABFA /* UIImage+MemoryCacheCost.m */, + 9946DFEC1C3A62450EF79BA1ABB6EF03 /* UIImage+Metadata.h */, + A6BDC93EC86E8A30D2F6801B94949AC8 /* UIImage+Metadata.m */, + 7F21E3E56A59AE7A0B72F5B9D7D4683D /* UIImage+MultiFormat.h */, + 20890F63B71F0D4B2162B5C9F2807E0F /* UIImage+MultiFormat.m */, + 5397CA5724A8A4990CF3952B433F59FE /* UIImage+Transform.h */, + E4796F6121A2ACD66D4EC63D00FED6E3 /* UIImage+Transform.m */, + 23A407B3E1976B12EF9A6DECCB95E35B /* UIImageView+HighlightedWebCache.h */, + 4A66F8075DD9275EB8E3E2D3F3C8CA70 /* UIImageView+HighlightedWebCache.m */, + 7098C0DAF37152FF8BD31A8A60D7FC0F /* UIImageView+WebCache.h */, + 92A9CFF14F428AD5116CFFDFEFC1CADF /* UIImageView+WebCache.m */, + 4E60CDDC422A732752DCC7C642B75B25 /* UIView+WebCache.h */, + EA60C36F2633ACD90522EC25F34E1E51 /* UIView+WebCache.m */, + 6316AB30742F032AA69752ABB984A17C /* UIView+WebCacheOperation.h */, + D69C504BE239B2F7184FE45A1300E08C /* UIView+WebCacheOperation.m */, ); - name = LNInterpolation; - path = lib/ios/LNInterpolation; + name = Core; sourceTree = ""; }; - FC1A2AC9EADFDB33FC36BABAA944D95E /* Sentry */ = { + FAEF1333EDBC742EF8D95E53E4E52457 /* UserNotification */ = { isa = PBXGroup; children = ( - 11124971ECBA9E121883A6EF7A92CE49 /* BSG_KSCrashSentry.c */, - 2932CAE48B908051425DCA562EFACA17 /* BSG_KSCrashSentry.h */, - A7798071B7755EBB888C05B185A09583 /* BSG_KSCrashSentry_CPPException.h */, - E38BCF23A3F366BF569AA51ED7A07FD0 /* BSG_KSCrashSentry_CPPException.mm */, - 902655D099DB95E0ABE2787457DD2742 /* BSG_KSCrashSentry_MachException.c */, - A3A2A3F1F5208C1B538ADD5DFDB74382 /* BSG_KSCrashSentry_MachException.h */, - E1A6DDD38250927F90533C1838189EAE /* BSG_KSCrashSentry_NSException.h */, - B09BEB8BF8B9A86ECDA18517AA7D8677 /* BSG_KSCrashSentry_NSException.m */, - F6E605DA6AFD3BC9439BAE111882C82E /* BSG_KSCrashSentry_Private.h */, - 42F77A23ED4C373C3DC6188163D412D8 /* BSG_KSCrashSentry_Signal.c */, - 8054C319CDF752742F2FD0C739ED8E1E /* BSG_KSCrashSentry_Signal.h */, - 4B7280DC6FED85AD9589A66AC5647B62 /* BSG_KSCrashSentry_User.c */, - 167E5DDA48F3A4D87178E63BE121B4F0 /* BSG_KSCrashSentry_User.h */, + E4B1EADA882818362F61F9FD6D1774D9 /* EXUserNotificationPermissionRequester.h */, + EA5B235566D917469402608226FD6112 /* EXUserNotificationPermissionRequester.m */, ); - name = Sentry; - path = Sentry; + name = UserNotification; + path = UserNotification; sourceTree = ""; }; - FC2007B2E0D345AEFB91F15E753E2B8C /* instanceid */ = { + FC06B9ED355AC8BAF53FB2D5DCFAFFBB /* Support Files */ = { isa = PBXGroup; children = ( - BD4ECE5FE09353799C30DF0C2A06044D /* RNFirebaseInstanceId.h */, - BEE2BAEED37A6A2D75DE4F8C9C7D1970 /* RNFirebaseInstanceId.m */, - ); - name = instanceid; - path = RNFirebase/instanceid; - sourceTree = ""; - }; - FC3E6C674406C765F6FD7B111CF7DBCE /* perf */ = { - isa = PBXGroup; - children = ( - B88FACE80867F4D89F910D7379D7C891 /* RNFirebasePerformance.h */, - 8F720EC32BC0BA1F12D5E70A9617F5BC /* RNFirebasePerformance.m */, - ); - name = perf; - path = RNFirebase/perf; - sourceTree = ""; - }; - FC58C2812ADC3931119894A3085D7C9B /* Interfaces */ = { - isa = PBXGroup; - children = ( - 2A4F57D2ACE402704AF6C758AA83E669 /* UMAppLoaderInterface.h */, - 5FFF96ABF69D0252C424846E63667455 /* UMAppRecordInterface.h */, - ); - name = Interfaces; - path = UMAppLoader/Interfaces; - sourceTree = ""; - }; - FC6A41A889E0B1DFAC58BC9611C90F15 /* Support Files */ = { - isa = PBXGroup; - children = ( - CC8B8994A39160475530121E7891B407 /* react-native-cameraroll.xcconfig */, - 39CDDF3FC6F08B54E8F1E21067DD7181 /* react-native-cameraroll-dummy.m */, - 0BF0F433723BD9A207365B72398890D4 /* react-native-cameraroll-prefix.pch */, + 3035324485AF0B35786E811996BA977F /* RNUserDefaults.xcconfig */, + AFA1D653A46DF0AB4FDF5CC4161D86DA /* RNUserDefaults-dummy.m */, + BCB8C7C1B4E67AC19AB1D8B50699EFCB /* RNUserDefaults-prefix.pch */, ); name = "Support Files"; - path = "../../../ios/Pods/Target Support Files/react-native-cameraroll"; + path = "../../ios/Pods/Target Support Files/RNUserDefaults"; sourceTree = ""; }; - FD3BA3B7E487DB54EDF067F293B88DDB /* ReactNativeKeyboardInput */ = { + FC3EB8118FEFFF62E7D885015F484D44 /* Support Files */ = { isa = PBXGroup; children = ( - FBEFC76A7AA91C7D536FD1FC328DDB4C /* LNInterpolation */, - BA46010420227A138838E15187F42456 /* Pod */, - D644F66B201D6179F2CDC47D654BE9EE /* RCTCustomInputController */, - A82D8687F061DD3E30BBF64E4CDDE8FD /* Support Files */, - ); - name = ReactNativeKeyboardInput; - path = "../../node_modules/react-native-keyboard-input"; - sourceTree = ""; - }; - FD406D539F70993503632EB7C6FA592B /* firestore */ = { - isa = PBXGroup; - children = ( - 456B93874F92763985E86C307582D5DE /* RNFirebaseFirestore.h */, - 9583CF8EFBACFAE010E25C678AF3E5BF /* RNFirebaseFirestore.m */, - C8D4187F04A5CB8410455373AE01BFCC /* RNFirebaseFirestoreCollectionReference.h */, - 442EA89BCAF0FF088622BB0E7290853A /* RNFirebaseFirestoreCollectionReference.m */, - B2A65FAA3A125CE2669673364E022301 /* RNFirebaseFirestoreDocumentReference.h */, - 9B0CD0417F916A41DD2426DD4B7A9391 /* RNFirebaseFirestoreDocumentReference.m */, - ); - name = firestore; - path = RNFirebase/firestore; - sourceTree = ""; - }; - FDF367A413F3FF61D6DA07F3B6BFB869 /* Support Files */ = { - isa = PBXGroup; - children = ( - FD6B34FC6E26776DA0EBE08258EAB0FF /* RNReanimated.xcconfig */, - 34F0B89001764776FAF3677B7137DC39 /* RNReanimated-dummy.m */, - 8D5E73822210E38DB75755A0BBD9557B /* RNReanimated-prefix.pch */, + 61A641D30E03AD12C038341E2E7DEED1 /* SDWebImage.xcconfig */, + F86071C10ED414C07FFA2D7A0F3AA6D1 /* SDWebImage-dummy.m */, + 9148595F62C0B594EF655D5BA1628566 /* SDWebImage-prefix.pch */, ); name = "Support Files"; - path = "../../ios/Pods/Target Support Files/RNReanimated"; + path = "../Target Support Files/SDWebImage"; sourceTree = ""; }; - FE0CEFE039C99D812D1C87353FD3ACB8 /* jsi */ = { + FE45A7E914710433109E02D43C665E4D /* EXConstants */ = { isa = PBXGroup; children = ( - 750EE3CC561AB7E2DC7055E64BC1C283 /* decorator.h */, - 496E921652C2248A6FFB1951C61E9A2D /* instrumentation.h */, - 60446DD3F09C36183FC3DA8D35698A06 /* jsi.cpp */, - 34D5C6524B5EECBE4308D60A0177C1B9 /* jsi.h */, - 56E325018147BA656AC7A8A93CB4E276 /* jsi-inl.h */, - 226258FFBB4B604235CD4E538EFD58C3 /* JSIDynamic.cpp */, - 5A86E589764F933047B0A925C146591B /* JSIDynamic.h */, - 8FA90F039328C541D138AE86D8DC0093 /* jsilib.h */, - D4991175000D7060B41FF0388F84CD7B /* jsilib-posix.cpp */, - 55A1D43E300473C503149B12A5DF80D5 /* jsilib-windows.cpp */, - 4FC3B717C83FAC114AB040CD800E0E06 /* threadsafe.h */, + AE710147FA7C87A097FC7A3D6E6FC6B9 /* EXConstants.h */, + F99F1E1E90A8C2BBEEF517DBF4DF16A2 /* EXConstants.m */, + 952D138586468613EE302CA1D85F2595 /* EXConstantsService.h */, + 8C2357EA439844C8E2AA136486074415 /* EXConstantsService.m */, + 40370E026614345A7C067DA6F6FF113A /* Pod */, + A4B2332FCD3DE264264C5AC589E72AED /* Support Files */, ); - name = jsi; - path = jsi; + name = EXConstants; + path = "../../node_modules/expo-constants/ios"; sourceTree = ""; }; - FEB30BCEF3A4F49DA247DB58582B834F /* SafeAreaView */ = { + FEA5CEE5AE3156ACF237AE1E93AA9114 /* Pod */ = { isa = PBXGroup; children = ( - 750F7D35BE6E5845F73D68C57008522E /* RCTSafeAreaShadowView.h */, - CDE35C2B2F1E4560292F5C3E61E299BD /* RCTSafeAreaShadowView.m */, - 59E809009F32F76F6EC89317B89936F2 /* RCTSafeAreaView.h */, - FDC5BC8B851B9E5FF7B416AB1BDD8C10 /* RCTSafeAreaView.m */, - CB369CFCAECE6DD313C9B476C0BE97F6 /* RCTSafeAreaViewLocalData.h */, - CCD0F420A8164C8556D141806692A281 /* RCTSafeAreaViewLocalData.m */, - 0021AAD20B41A86FC16C442527F9535C /* RCTSafeAreaViewManager.h */, - 7E124D38A17FD4250EBC351A8C9F437C /* RCTSafeAreaViewManager.m */, - ); - name = SafeAreaView; - path = SafeAreaView; - sourceTree = ""; - }; - FEEADD289671AB3FDE86B26916E5686A /* Pod */ = { - isa = PBXGroup; - children = ( - B61ECFB3E9BAFBC3D9925A972D6B2E97 /* LICENSE */, - 4B653310B719340E4D330E97918BFC1B /* README.md */, - F2FC7D21C4F7A9EFE1B819387B07DCF2 /* RNScreens.podspec */, + B566125088FDE987FC61485CA1C186A8 /* LICENSE */, + 02F6C9E569ED0CDDA7D3B52CF67FE997 /* react-native-jitsi-meet.podspec */, + B147F4167C13F2075A17A774B53B025B /* README.md */, ); name = Pod; sourceTree = ""; }; - FF5668EC16B58B916EF561EC6DDA9EEE /* UMReactNativeAdapter */ = { + FEDD141D05B038F6F3794DD60F66DC10 /* RNUserDefaults */ = { isa = PBXGroup; children = ( - B393A8351F43494FB8EE8EEAADD868EF /* UMBridgeModule.h */, - F7A3EE7BE439217096ED1A8E4053E51B /* Pod */, - F235A942234865F3EF20F2D0B41AD9D0 /* Services */, - 4E3FDB910F80273D04FC0A3423061974 /* Support Files */, - 342D5BA51ADE304F60B4392CA06F18D6 /* UMModuleRegistryAdapter */, - 7165973A2EC6C3767F453FFD0D325345 /* UMNativeModulesProxy */, - B3C33D99736F5F708364766B1EAD1502 /* UMViewManagerAdapter */, + FF8D4BFBF8C8FED9E95609E2E7DF692A /* RNUserDefaults.h */, + 3D2FE0071CB8D5CA9CCC04EA01CD661B /* RNUserDefaults.m */, + 233D54C1C55295F3518CEF8FA696EEEE /* Pod */, + FC06B9ED355AC8BAF53FB2D5DCFAFFBB /* Support Files */, ); - name = UMReactNativeAdapter; - path = "../../node_modules/@unimodules/react-native-adapter/ios"; + name = RNUserDefaults; + path = "../../node_modules/rn-user-defaults"; + sourceTree = ""; + }; + FF69A34C319E2ED513B861D82B19B932 /* UMNativeModulesProxy */ = { + isa = PBXGroup; + children = ( + 8B45B5E01B5833D969E98D788D3C9D7A /* UMNativeModulesProxy.h */, + E712D133E8DA4FF4661B3B7D0880A010 /* UMNativeModulesProxy.m */, + ); + name = UMNativeModulesProxy; + path = UMReactNativeAdapter/UMNativeModulesProxy; sourceTree = ""; }; /* End PBXGroup section */ @@ -18042,6 +18045,86 @@ ); runOnlyForDeploymentPostprocessing = 0; }; + 685372702C82DB84D381D53E1BF703FB /* Headers */ = { + isa = PBXHeadersBuildPhase; + buildActionMask = 2147483647; + files = ( + CE92DF0BA0CC96BD819D5395E3F5D4AB /* NSBezierPath+SDRoundedCorners.h in Headers */, + A13E4C4D56442F5E2F209E1F3DC55BAF /* NSButton+WebCache.h in Headers */, + 377EDD40562D695DDBE096F504D81B53 /* NSData+ImageContentType.h in Headers */, + 2F358CCBC15C773B0E8BC8B20277192E /* NSImage+Compatibility.h in Headers */, + 2012AB3040CD09E593FE95CA831A1968 /* SDAnimatedImage.h in Headers */, + E7C136798440E586E451194FB447B02B /* SDAnimatedImagePlayer.h in Headers */, + 4AD9CCC85B3778658169C43F329DB13D /* SDAnimatedImageRep.h in Headers */, + D9EF1EACEF391E2D098EDDD48B5C1F7B /* SDAnimatedImageView+WebCache.h in Headers */, + 89FF6B6C4AA4FDAB376D7373078CBA26 /* SDAnimatedImageView.h in Headers */, + CEFA85387A5815500FDB776E71D8925D /* SDAssociatedObject.h in Headers */, + 988EB4AACD480182DA7844DBB5F793AE /* SDAsyncBlockOperation.h in Headers */, + 432FA6CECE7A4FDF913C7953D1433AA3 /* SDDeviceHelper.h in Headers */, + FB90E24396C26ED6126824A52A788876 /* SDDiskCache.h in Headers */, + 193ED99B119DFEA6FDAD04AEBB176FD6 /* SDDisplayLink.h in Headers */, + D63E8D24C60EFE8B5B1D85CD8003C1A0 /* SDFileAttributeHelper.h in Headers */, + C5802BF2D7023EA04E528D82B48D9901 /* SDGraphicsImageRenderer.h in Headers */, + 532946E00254F023EB8920E04D4C5B32 /* SDImageAPNGCoder.h in Headers */, + D1BD97AD13B56426DAA26A2468DA440C /* SDImageAssetManager.h in Headers */, + 207E203D4A0B00504A657AB0917BF71A /* SDImageCache.h in Headers */, + 4E3D47B57A0D93260990272056DED85D /* SDImageCacheConfig.h in Headers */, + 87E25D38EAFF2A33FA859D22936433C0 /* SDImageCacheDefine.h in Headers */, + 33E573075013DE8B348024AA6413D694 /* SDImageCachesManager.h in Headers */, + 075F9805B68154AF1104DF613BE6F9D9 /* SDImageCachesManagerOperation.h in Headers */, + 9493BDB77B9DBE1604961046C351611B /* SDImageCoder.h in Headers */, + 66EEB6F1DF23F5A10B2562852F58D32B /* SDImageCoderHelper.h in Headers */, + D2A983A6F32EA1B5199960179F79261B /* SDImageCodersManager.h in Headers */, + 033521D8D361BD79929F1C97CF0F357F /* SDImageFrame.h in Headers */, + 55FD2927EB4E68F18A417F5569DF1471 /* SDImageGIFCoder.h in Headers */, + 684AE69A17E2DD66B5DA5411EF613B6B /* SDImageGraphics.h in Headers */, + D88BE8A09092572D594C0337AD2C039C /* SDImageHEICCoder.h in Headers */, + FFB9245D233A3C0CCA0F2A43466826E2 /* SDImageHEICCoderInternal.h in Headers */, + 5590437394972755BDB7FD9DA85BBF4A /* SDImageIOAnimatedCoder.h in Headers */, + 4AE162265A0182AC50A6C8D4A09E0F1A /* SDImageIOAnimatedCoderInternal.h in Headers */, + 387EBCA8FD57EDD475BEFE8C73DD1051 /* SDImageIOCoder.h in Headers */, + 7A4168BC23C43D1A9C747C037A13AD9F /* SDImageLoader.h in Headers */, + D6EE21E0A81DC7E63751687071790BD2 /* SDImageLoadersManager.h in Headers */, + BFC35AD1D40EB56B4DA583649E8F5D13 /* SDImageTransformer.h in Headers */, + 906BCD291B4D2E061B4901A35B433424 /* SDInternalMacros.h in Headers */, + 56CC29AA7D6ECAF485F56ACF79A62324 /* SDMemoryCache.h in Headers */, + 23D1828C1260691ED059357C7CF17544 /* SDmetamacros.h in Headers */, + 6D6BE3F9307133BD33AA5369A0A212E3 /* SDWeakProxy.h in Headers */, + 58A14416A831C60BB7B5F99F3971D040 /* SDWebImage.h in Headers */, + B5C0784534B4C81936855874560F230C /* SDWebImageCacheKeyFilter.h in Headers */, + A3045BF0AB3663CF2F6AE4A494A26561 /* SDWebImageCacheSerializer.h in Headers */, + CEE0D3B7FFD05BE2465C81B2684F976A /* SDWebImageCompat.h in Headers */, + 3E64101FC90134AAB704521D67EC551E /* SDWebImageDefine.h in Headers */, + 6656A3BDBB5732C65FA4EFE23ED34161 /* SDWebImageDownloader.h in Headers */, + CE240EA868180FE4ECA7DDFF4A387514 /* SDWebImageDownloaderConfig.h in Headers */, + 6843B2F1D94E9E148304314D61C1717E /* SDWebImageDownloaderDecryptor.h in Headers */, + E102CFF1546031E99D8ED019337D349C /* SDWebImageDownloaderOperation.h in Headers */, + 9D51497EC2D05F3283426C9523C8394D /* SDWebImageDownloaderRequestModifier.h in Headers */, + 9DE38323C633F51207B437E17263CBEC /* SDWebImageDownloaderResponseModifier.h in Headers */, + 1D74DE102578CB79908C6B2FC695F3A6 /* SDWebImageError.h in Headers */, + 158836011C2C1CA8C0F79AE55BB228C1 /* SDWebImageIndicator.h in Headers */, + 7511831132AD02DF13E76422ABD73F09 /* SDWebImageManager.h in Headers */, + 62155DE9CF2AD9385BF11125981D1015 /* SDWebImageOperation.h in Headers */, + 5591AD18A453D3B2AD2D7DD15B14EA16 /* SDWebImageOptionsProcessor.h in Headers */, + F14AEB46631F4B9EE89D67F568E6713F /* SDWebImagePrefetcher.h in Headers */, + 0647B334661340B8A9F52EABF062C3EB /* SDWebImageTransition.h in Headers */, + 4F6830E3F6DD8CB7A6306B32FB83D855 /* SDWebImageTransitionInternal.h in Headers */, + A48573BC990762DA98475AA4E59F4C55 /* UIButton+WebCache.h in Headers */, + EDC979A9D849201D6DBC483E8B92354A /* UIColor+SDHexString.h in Headers */, + B01C36FAD05AC43B3637B8D0AB9459D9 /* UIImage+ExtendedCacheData.h in Headers */, + FF35D631BBD7CE3793F2585E076ABE37 /* UIImage+ForceDecode.h in Headers */, + CF0F0EE11DEB7BDA2FB659D3F65ADE64 /* UIImage+GIF.h in Headers */, + 57F2E9384A1C3DCF46CB5242DF03BD36 /* UIImage+MemoryCacheCost.h in Headers */, + 58A0D03F97F8754E1F8EC5EAE1911057 /* UIImage+Metadata.h in Headers */, + 5B648720A85B4FD11CA2665BBE8EF6F4 /* UIImage+MultiFormat.h in Headers */, + 11C1F06E5DAC4DB374846E51300D5020 /* UIImage+Transform.h in Headers */, + C4C603BD962E852D3D6ACCDC7E1FA6D9 /* UIImageView+HighlightedWebCache.h in Headers */, + 379AFF5081DCC0C9C35A52EB49F2FB09 /* UIImageView+WebCache.h in Headers */, + 20ADF4E535F2FBBC3732C70F1917A1F8 /* UIView+WebCache.h in Headers */, + CB70CA7763BD4D2B937C291757D03F8B /* UIView+WebCacheOperation.h in Headers */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; 6AFB48B1CF996B4F77FDA4972A298754 /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; @@ -19656,85 +19739,6 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - E74E8FD9BB8BD4784A1BD2BAF4D1F71C /* Headers */ = { - isa = PBXHeadersBuildPhase; - buildActionMask = 2147483647; - files = ( - 191ED4B1AD846F05B02798563A781F70 /* NSBezierPath+SDRoundedCorners.h in Headers */, - DFB1AFA14DA04F33017F0086D60693CF /* NSButton+WebCache.h in Headers */, - 73FC0DD23312E359AAF2BA654EAF7B6F /* NSData+ImageContentType.h in Headers */, - 90E82D5D145841FBCB0ACDE8334222B8 /* NSImage+Compatibility.h in Headers */, - 7F2FF85FC360BEEB533BB12DEC940E61 /* SDAnimatedImage.h in Headers */, - F272955FEB837F77CA7044A8841831DB /* SDAnimatedImagePlayer.h in Headers */, - 19912572D88D09628C2942291E7C9ED0 /* SDAnimatedImageRep.h in Headers */, - CC60FD647487AB617149066737938DBC /* SDAnimatedImageView+WebCache.h in Headers */, - 8EFE2147CC39B1A59725A0A336CBFCD6 /* SDAnimatedImageView.h in Headers */, - 9690E06E3CF2942C7D7DE920D72633DE /* SDAssociatedObject.h in Headers */, - A2D4FC56C5FBD42F95A12900620C2A65 /* SDAsyncBlockOperation.h in Headers */, - C61606AB4B09AD3974A7A65C762E5F1C /* SDDeviceHelper.h in Headers */, - BB91AF0B1144084593E5017E91C3A237 /* SDDiskCache.h in Headers */, - DC91434903C0446DBE4EC705CEBBB6DE /* SDDisplayLink.h in Headers */, - 640A5B859D78BF300F772830B148CF74 /* SDFileAttributeHelper.h in Headers */, - EF7E6C878AB8A30D92FFA18861A908EF /* SDGraphicsImageRenderer.h in Headers */, - 1C647BDA4A4AB160D974BD55DB2E0A02 /* SDImageAPNGCoder.h in Headers */, - 765E1045CE05FBCD4A3B66341064888F /* SDImageAssetManager.h in Headers */, - D59D6B91B38D40385B5671A02C789FFD /* SDImageCache.h in Headers */, - DB961B674D484615508DB15C8C03E3A7 /* SDImageCacheConfig.h in Headers */, - 3AF8B694617A74F8749ADBA3E1C57FB2 /* SDImageCacheDefine.h in Headers */, - 8502CB4758714A656E2ED14AEFBD8A98 /* SDImageCachesManager.h in Headers */, - FBBA5CBD3A64DB549CC7D70A8158B368 /* SDImageCachesManagerOperation.h in Headers */, - 137F2AB84ACCC13A5B70189CC62DA277 /* SDImageCoder.h in Headers */, - E4C0666D63FE7DC33BD914E34AAF77BF /* SDImageCoderHelper.h in Headers */, - 3C4E24A310EEFBA07294381C4AE6E302 /* SDImageCodersManager.h in Headers */, - 93ED1C2CEDC4EF1236212F0C80858B6E /* SDImageFrame.h in Headers */, - 9F3B692ADD43E5DE7C06A18ED59A21F9 /* SDImageGIFCoder.h in Headers */, - F08E1F3162FAE93CE66909E4583887AB /* SDImageGraphics.h in Headers */, - BB0E48F804C4577F614C7C4144E7757A /* SDImageHEICCoder.h in Headers */, - 2E5DDB53500E43F9F5A51245136962A6 /* SDImageHEICCoderInternal.h in Headers */, - 7051713F98CC30823562EB071DC39C96 /* SDImageIOAnimatedCoder.h in Headers */, - A91E2FEF560C2FB37C85DD84F1B01CFF /* SDImageIOAnimatedCoderInternal.h in Headers */, - D2F61C74B5DDE79B769222FCC98C82F6 /* SDImageIOCoder.h in Headers */, - 1DE91DD8D31AD923BC2F28C70E8E6F9C /* SDImageLoader.h in Headers */, - FFA5B034E4A506917A5D5ECDF9E13251 /* SDImageLoadersManager.h in Headers */, - DCDCE485909B5CE0B0BC06693D89E54E /* SDImageTransformer.h in Headers */, - FB92EE439043A66D7DA98BFDC70A3E17 /* SDInternalMacros.h in Headers */, - 21E15100946BAC576970F1812C06DAF4 /* SDMemoryCache.h in Headers */, - FE01338F38ED1D4F33168220521C0B44 /* SDmetamacros.h in Headers */, - EFFA7E6647BD21D78B6DAF725C5E62E5 /* SDWeakProxy.h in Headers */, - 20787CEC79E25AA6516AD59C8BEEB419 /* SDWebImage.h in Headers */, - A2AC30DF5EA70858EE380D76BB0D7697 /* SDWebImageCacheKeyFilter.h in Headers */, - 03C2E903CC5B4C7A1E6F9080A24B4926 /* SDWebImageCacheSerializer.h in Headers */, - 8FDCF28C63DB7284C66DC2C0C26B8361 /* SDWebImageCompat.h in Headers */, - 3EE1BBD1D425E3C37DDB027A7AA79791 /* SDWebImageDefine.h in Headers */, - 44DEAD0A33C7D76B606E996CF39F0A81 /* SDWebImageDownloader.h in Headers */, - 4A2CB3037F6044AC27BBEF315D60B6EE /* SDWebImageDownloaderConfig.h in Headers */, - 7A245D980616242AD065C7FF0609C46A /* SDWebImageDownloaderDecryptor.h in Headers */, - 9C7B992227884E45708C42CB4298926C /* SDWebImageDownloaderOperation.h in Headers */, - 197BAE778D92018BC73EC6A9A055401A /* SDWebImageDownloaderRequestModifier.h in Headers */, - 0E1047E03A54517A95C80F04356C0BAC /* SDWebImageDownloaderResponseModifier.h in Headers */, - 572EFBA1CE95B80BC7B2B0A8441AF172 /* SDWebImageError.h in Headers */, - 0DFDE05F3E991B70E27D2F6A9C2D5017 /* SDWebImageIndicator.h in Headers */, - 6FB0A78F16C8DC9FCA25121E22A34AD5 /* SDWebImageManager.h in Headers */, - 25B0C379434647D92E7295C0CC6A1B1C /* SDWebImageOperation.h in Headers */, - DA28A006984C9041039EA6EEB0F8195F /* SDWebImageOptionsProcessor.h in Headers */, - CECC1FBE7FC467B747E6C2BA8B0CCFE0 /* SDWebImagePrefetcher.h in Headers */, - 3B1C56C9C2CD7612390FFE5E14833E4F /* SDWebImageTransition.h in Headers */, - 8E24982870C8E41C148791A47D487770 /* UIButton+WebCache.h in Headers */, - 7DE0EFE6AB2647D5FACD08AF590EA581 /* UIColor+SDHexString.h in Headers */, - CD1FB10AF746E63E2B5968C20FF87173 /* UIImage+ExtendedCacheData.h in Headers */, - EA4E9E8232435EE430E8A5864860B289 /* UIImage+ForceDecode.h in Headers */, - 60A86E0DA64B94C3016CED19C96C0E66 /* UIImage+GIF.h in Headers */, - 6B217CCE28CC0B8DA7822706B41E3E8C /* UIImage+MemoryCacheCost.h in Headers */, - D23230B6BDBF204F574436EC80D5795B /* UIImage+Metadata.h in Headers */, - 5B5E9DD45758905E15ADE6E6580E1694 /* UIImage+MultiFormat.h in Headers */, - F5E977F9F31FB31665D9BB76A04FFF46 /* UIImage+Transform.h in Headers */, - E35C6D7DE7A931B32026F76A9CD0ADF1 /* UIImageView+HighlightedWebCache.h in Headers */, - 74300D3787589F62BD7ED937C2C6B714 /* UIImageView+WebCache.h in Headers */, - A5E0249E14EF89BD7EE9DC4EB19DDC64 /* UIView+WebCache.h in Headers */, - A578B94A41F41F9D07A358C7D2874C0C /* UIView+WebCacheOperation.h in Headers */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; E878A576929A6F843017ABC6ECDC8E42 /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; @@ -20291,7 +20295,7 @@ isa = PBXNativeTarget; buildConfigurationList = 1766630704755B3F6C8222993813BFF1 /* Build configuration list for PBXNativeTarget "SDWebImage" */; buildPhases = ( - E74E8FD9BB8BD4784A1BD2BAF4D1F71C /* Headers */, + 685372702C82DB84D381D53E1BF703FB /* Headers */, 08D87889061D20286FB7ABACA1274927 /* Sources */, D43449D69F2BB5ACD6EB1304EC371893 /* Frameworks */, ); @@ -26547,7 +26551,7 @@ }; 0346FF986F79C64343F99C0325D2CB9F /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = B17F6AAE182AF3E3A8FD25F42D0C1C87 /* React-RCTNetwork.xcconfig */; + baseConfigurationReference = 9F91B51CEBD5ACA9F2D77ADEF63B81F1 /* React-RCTNetwork.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -26599,7 +26603,7 @@ }; 06A7CD67A76F686A2A1D8F830D20E552 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 36DD59698462AF3BB58AFA0B87ACAA45 /* RNImageCropPicker.xcconfig */; + baseConfigurationReference = 0CEF4454A8598F68A23B09EE381083DD /* RNImageCropPicker.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -26626,7 +26630,7 @@ }; 07FADC14E782992AFF2F7671E2E7D23A /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = BD696F1412B23F77ADFF152EF3F0A69D /* react-native-slider.xcconfig */; + baseConfigurationReference = 3FDD277195F563A711D3DC40AE2087EC /* react-native-slider.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -26653,7 +26657,7 @@ }; 082626AE56C49C40C14786925EB6EE61 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 4149C036165F6D00E7345C44173AC0C4 /* RCTRequired.xcconfig */; + baseConfigurationReference = FB9F0EF2E722FA751011AA90735B4349 /* RCTRequired.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -26669,7 +26673,7 @@ }; 0A4A6F8962251341E9A322BE1EC5E4B1 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 7CB50B1B70E1F32BA1A0D0477F868DBE /* rn-fetch-blob.xcconfig */; + baseConfigurationReference = 80B02CBBA322ED01E5AD7A3B1891806C /* rn-fetch-blob.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -26722,7 +26726,7 @@ }; 0C325883D859D958B8BEF24647A7BD7E /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = B17F6AAE182AF3E3A8FD25F42D0C1C87 /* React-RCTNetwork.xcconfig */; + baseConfigurationReference = 9F91B51CEBD5ACA9F2D77ADEF63B81F1 /* React-RCTNetwork.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -26748,7 +26752,7 @@ }; 0DDF703E0A1E8E05DBFA959C12ECD11B /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = B8CAC0F1215C8A25A9642BA111595AAD /* UMTaskManagerInterface.xcconfig */; + baseConfigurationReference = 9474A83225E7D2F439DC8D96E46811E4 /* UMTaskManagerInterface.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -26764,7 +26768,7 @@ }; 104C62432BEECCD185B752987B22ACC1 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 1EBCB9F825BB74349DA8464E4078D6CD /* SDWebImage.xcconfig */; + baseConfigurationReference = 61A641D30E03AD12C038341E2E7DEED1 /* SDWebImage.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -26816,7 +26820,7 @@ }; 119D978732EA272928680A1EDD57368C /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 45739967460E2D1904354C494EDEEB86 /* EXVideoThumbnails.xcconfig */; + baseConfigurationReference = BAB013510915D0909C84CB9E076EE887 /* EXVideoThumbnails.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -26844,7 +26848,7 @@ }; 136DC5B10B3129544C45EAD704C682CB /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 36C3AB77231D2DA03640B39959D39D09 /* RCTTypeSafety.xcconfig */; + baseConfigurationReference = 9EC8F9D6D8887D3604B590E6E5D3BF19 /* RCTTypeSafety.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -26871,7 +26875,7 @@ }; 144C8D6F5DFCD73347E4C70832E1FA51 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 0B64EEB3F7933A5B2098647909E0ED92 /* UMCore.xcconfig */; + baseConfigurationReference = F5108F76DDB23647D6A8A6B30B55CD9B /* UMCore.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -26925,7 +26929,7 @@ }; 172823DAC41CFBCABEA0BA03135BB51D /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 87652A5B57CFCE1AE72BF7CAE1484B6F /* react-native-background-timer.xcconfig */; + baseConfigurationReference = 69FC4D209E239602E9E17B702963DB48 /* react-native-background-timer.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -26977,7 +26981,7 @@ }; 1833671E22AD2D6ED73818E0AE2D1ECB /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = CC8B8994A39160475530121E7891B407 /* react-native-cameraroll.xcconfig */; + baseConfigurationReference = 2364233793BEFB6E9F7C4FD57080BCBB /* react-native-cameraroll.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -27004,7 +27008,7 @@ }; 192F2140D8D96CFD79CCDC6126BDC355 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 3E330A0088F6483DE33FAE71EA483B80 /* RNBootSplash.xcconfig */; + baseConfigurationReference = 764EAFD88430FA98D20C9C73C96E5186 /* RNBootSplash.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -27031,7 +27035,7 @@ }; 1C6A4450E4C8F8FB4972753A2432DD29 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 8F7080514B2DC132D8D9E4F8F6B307F3 /* RNScreens.xcconfig */; + baseConfigurationReference = D9FC58B2BA1BFB5C040F369CEABE2C66 /* RNScreens.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -27101,7 +27105,7 @@ }; 1FD730E1AED9B4A80890683689AF92CC /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = D0AB169A9A57CF2E1200E72299D75C26 /* RNUserDefaults.xcconfig */; + baseConfigurationReference = 3035324485AF0B35786E811996BA977F /* RNUserDefaults.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -27128,7 +27132,7 @@ }; 211C4C82F5DF1D82CBB2D407761ED06C /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 69AE13D23811D322D270415DA06E5638 /* UMCameraInterface.xcconfig */; + baseConfigurationReference = 1EC71A35AFECF54C8539BF3186408413 /* UMCameraInterface.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -27160,7 +27164,7 @@ }; 21993510FEBBBB050D27D176EF7FF12B /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 1FAE064E6AFB8845B5FF3B9D0AFC6863 /* Yoga.xcconfig */; + baseConfigurationReference = 1CE30CC6099EAD1AC1D7DC029C409682 /* Yoga.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -27187,7 +27191,7 @@ }; 21F38FCE8441AA400CC5BD4C4317A9AD /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 6F0EF6046A20A68989C5B5B8DD839E33 /* UMReactNativeAdapter.xcconfig */; + baseConfigurationReference = 1127F85247DE1FD3C77B7099CEC8B530 /* UMReactNativeAdapter.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -27241,7 +27245,7 @@ }; 23CBFB3E266E8CF21EFE823F989A526F /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 0CBE6A03E32FC26465FCF0F3AF1DFDEB /* FBReactNativeSpec.xcconfig */; + baseConfigurationReference = 22EEFDC1FF381CE63EEEE36D980DE498 /* FBReactNativeSpec.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -27268,7 +27272,7 @@ }; 2460F60985C3F210DF73337B5546844A /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = E4B85E9CA9529BA3CA89A024EF880435 /* React-RCTImage.xcconfig */; + baseConfigurationReference = 3A78826F61DDB107AAB10944EC45B467 /* React-RCTImage.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -27355,7 +27359,7 @@ }; 26953C374A7AE6B44C19B0BB19DFC360 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = AC7AD2E3DC6B86D1E8C1603D810A6621 /* EXKeepAwake.xcconfig */; + baseConfigurationReference = 0D624D60ED21A60D148726AD24981930 /* EXKeepAwake.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -27409,7 +27413,7 @@ }; 27866C9CAFA37084A2F8A2BC5470991B /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = B4DB9002992F6C1F1B0D7325578F65D8 /* React-jsiexecutor.xcconfig */; + baseConfigurationReference = E449164144807AC1B5053DB10638ACA3 /* React-jsiexecutor.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -27435,7 +27439,7 @@ }; 2B8D1445F622D4CF87B5619297A4C3DE /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = E1B0203EEAA6794298B1232415B345A3 /* react-native-appearance.xcconfig */; + baseConfigurationReference = 4965F83FB63F17DDF7135B269495CDB3 /* react-native-appearance.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -27487,7 +27491,7 @@ }; 2BF6C04CA0DC7A51799793311AEF60EE /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = C0F313FB5F1E7F6BF4108813F8D2502F /* React-jsi.xcconfig */; + baseConfigurationReference = B505364CF978A6BB6EE63DF3031F59E7 /* React-jsi.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -27514,7 +27518,7 @@ }; 2CEF953D9176553A03F12772D7854FEF /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = BD696F1412B23F77ADFF152EF3F0A69D /* react-native-slider.xcconfig */; + baseConfigurationReference = 3FDD277195F563A711D3DC40AE2087EC /* react-native-slider.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -27540,7 +27544,7 @@ }; 2D6B15879D8FB32EFD2AF3EBD2EED716 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 06AAD9D0F4DA3DB3A4910B53E9778504 /* ReactNativeKeyboardInput.xcconfig */; + baseConfigurationReference = E41481304ED3CC13F1D82769C44E671F /* ReactNativeKeyboardInput.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -27567,7 +27571,7 @@ }; 2DBC10DC0499C957FD1EEE4576D28990 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 7D762E43B438E1B0A696CE4CF33E1D2F /* RNVectorIcons.xcconfig */; + baseConfigurationReference = 5EC7CEBFC323467AA850A03744CBE464 /* RNVectorIcons.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -27609,7 +27613,7 @@ }; 2E8F188D8D8AA7A857EB6C00C0EE6BF1 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 90C9BF5355CE3D22296D117057869FA9 /* RNGestureHandler.xcconfig */; + baseConfigurationReference = 095516377AB8DD4947052A1C89D7D3B7 /* RNGestureHandler.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -27636,7 +27640,7 @@ }; 32773B018020B1C9C403484A17245B36 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = CEAB7B1C6528C25F32EC288834418C84 /* KeyCommands.xcconfig */; + baseConfigurationReference = 64854B520FC94F5B351A4D57F4BD9CFD /* KeyCommands.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -27688,7 +27692,7 @@ }; 3524DD9801CA7FE1979B90B7C11ECF82 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 36C3AB77231D2DA03640B39959D39D09 /* RCTTypeSafety.xcconfig */; + baseConfigurationReference = 9EC8F9D6D8887D3604B590E6E5D3BF19 /* RCTTypeSafety.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -27729,7 +27733,7 @@ }; 39C67524A03DCAD424A71B388F938D6E /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = B4DB9002992F6C1F1B0D7325578F65D8 /* React-jsiexecutor.xcconfig */; + baseConfigurationReference = E449164144807AC1B5053DB10638ACA3 /* React-jsiexecutor.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -27756,7 +27760,7 @@ }; 3A0C36DCF0D838792ACADCA351DA7239 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 4E535088C379402A8A0165AE84AC64BA /* UMConstantsInterface.xcconfig */; + baseConfigurationReference = F5533FF4E173115AA0F77A12282598BC /* UMConstantsInterface.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -27773,7 +27777,7 @@ }; 3A37BE7A73D51BAA2813B529FEE9E8EA /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 9DF547BCD14061CD62E58880D6A92DB5 /* ReactNativeART.xcconfig */; + baseConfigurationReference = 6E004A1597FF77E9605176232AF208B6 /* ReactNativeART.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -27826,7 +27830,7 @@ }; 3F8E658BE58823DB07092F62E68AE9C3 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 6F8655AEBCB33048C58824700009949B /* UMFaceDetectorInterface.xcconfig */; + baseConfigurationReference = B9433C56C4D908FF1C792232B5C78E5D /* UMFaceDetectorInterface.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -27895,7 +27899,7 @@ }; 415A52154C0D00BB5981E4CD6EE8982B /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 2649E0E14CC40301FE5BC5CBCFE7C60C /* EXAV.xcconfig */; + baseConfigurationReference = CF060C36B53596B60E63A4C08A05728B /* EXAV.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -27923,7 +27927,7 @@ }; 41B932A40AFCEBA056F809ED2D43CBA4 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 36DD59698462AF3BB58AFA0B87ACAA45 /* RNImageCropPicker.xcconfig */; + baseConfigurationReference = 0CEF4454A8598F68A23B09EE381083DD /* RNImageCropPicker.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -27941,7 +27945,7 @@ }; 41E11E8C21A52C694A4D3BEE864D9AEC /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 6B372B63DDB5329AEF0838FD23034936 /* UMImageLoaderInterface.xcconfig */; + baseConfigurationReference = 11DBD2E827F7F79844C5E1DCCEDD3BCD /* UMImageLoaderInterface.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -28105,7 +28109,7 @@ }; 4DC88F1B94BA98100CCC2DBFCBF1170B /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = ACAF80EA5DCDD687AEC7BBCB213D0F14 /* React-RCTBlob.xcconfig */; + baseConfigurationReference = 81FA983594CECD154E888E5A13800819 /* React-RCTBlob.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -28147,7 +28151,7 @@ }; 4FC0A3ABC7C0A55EBAEB07FFC1BFEBC4 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 1FAE064E6AFB8845B5FF3B9D0AFC6863 /* Yoga.xcconfig */; + baseConfigurationReference = 1CE30CC6099EAD1AC1D7DC029C409682 /* Yoga.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -28175,7 +28179,7 @@ }; 50BCB5F1EEE1F97FD0276478C777BCB0 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 0489DFAD8CDFB314CDC540B95FD79C84 /* react-native-notifications.xcconfig */; + baseConfigurationReference = DF5620D9B6A7BE0EF8BC9BFAA4FDD6A4 /* react-native-notifications.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -28201,7 +28205,7 @@ }; 5147D2DB0A11697EDFA27B87341E852B /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 2649E0E14CC40301FE5BC5CBCFE7C60C /* EXAV.xcconfig */; + baseConfigurationReference = CF060C36B53596B60E63A4C08A05728B /* EXAV.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -28228,7 +28232,7 @@ }; 52A007D721D1D2D6BD14B70C9FABE5B1 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 6FA1BE721DD739533ED82AD189404F48 /* UMFileSystemInterface.xcconfig */; + baseConfigurationReference = 134E16391744A20EC630C21C6A5E930E /* UMFileSystemInterface.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -28244,7 +28248,7 @@ }; 54BE9E0B8B40988719562072F53CDD1C /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 6FA1BE721DD739533ED82AD189404F48 /* UMFileSystemInterface.xcconfig */; + baseConfigurationReference = 134E16391744A20EC630C21C6A5E930E /* UMFileSystemInterface.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -28261,7 +28265,7 @@ }; 57DC61FA52A3832C2CBAB748125714DE /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 4E535088C379402A8A0165AE84AC64BA /* UMConstantsInterface.xcconfig */; + baseConfigurationReference = F5533FF4E173115AA0F77A12282598BC /* UMConstantsInterface.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -28277,7 +28281,7 @@ }; 57F7DAB4A25A41E7061089F35621D18B /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = CEAB7B1C6528C25F32EC288834418C84 /* KeyCommands.xcconfig */; + baseConfigurationReference = 64854B520FC94F5B351A4D57F4BD9CFD /* KeyCommands.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -28303,7 +28307,7 @@ }; 590C90EE6FEA01582AE180BFEBD3DCA9 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 35F091C33CF755F5204262A08B542402 /* react-native-webview.xcconfig */; + baseConfigurationReference = 7979F000C239BF12E3EFFDB43C992451 /* react-native-webview.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -28329,7 +28333,7 @@ }; 598007DCBC5363C8FDBF87E241969ABE /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 4170EA930CC1710E8CD10295F5027F00 /* rn-extensions-share.xcconfig */; + baseConfigurationReference = D3691543AE2B2E485F506D4E3B618754 /* rn-extensions-share.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -28355,7 +28359,7 @@ }; 59F8A83A04EE60686800B304A0A1B420 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 51EDE4A352C03CEEFF24BC91E49758F7 /* react-native-safe-area-context.xcconfig */; + baseConfigurationReference = 20F82DAE42B6D6E69AB9C92BA1FF5FDD /* react-native-safe-area-context.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -28381,7 +28385,7 @@ }; 5A602A4A591A93C2FE3885D6F59E423D /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 3E330A0088F6483DE33FAE71EA483B80 /* RNBootSplash.xcconfig */; + baseConfigurationReference = 764EAFD88430FA98D20C9C73C96E5186 /* RNBootSplash.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -28407,7 +28411,7 @@ }; 5B681A10D993A1880ECC76BA11C8D827 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 9EFD597556152014E460AB59EA35433F /* EXImageLoader.xcconfig */; + baseConfigurationReference = FE09B14E292E628590EBAA410326B953 /* EXImageLoader.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -28463,7 +28467,7 @@ }; 5DA74E72D8EDEBC4C5FEDBE4BC3A7400 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 9B11399D7D9C0CC421366F0B70405608 /* EXPermissions.xcconfig */; + baseConfigurationReference = CCF550282A5878C616CBF4F0FEA8C767 /* EXPermissions.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -28491,7 +28495,7 @@ }; 5EDF89B6E42E865A92E659ED341FB36C /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 0B64EEB3F7933A5B2098647909E0ED92 /* UMCore.xcconfig */; + baseConfigurationReference = F5108F76DDB23647D6A8A6B30B55CD9B /* UMCore.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -28518,7 +28522,7 @@ }; 5FC3252789FC71BD4F07FF10A84D89FB /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 27740AED39B856AD14E9D9FEF84F85D7 /* React-RCTAnimation.xcconfig */; + baseConfigurationReference = BAAFF78F17BDCEF3F136BE29EE8409E9 /* React-RCTAnimation.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -28544,7 +28548,7 @@ }; 61013CC5330326ECBBE24E236D4756ED /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = E0495102CDC8237B6AC8990EE9CE248D /* react-native-jitsi-meet.xcconfig */; + baseConfigurationReference = 59C0920E4C304B529F7BD975803B566E /* react-native-jitsi-meet.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -28571,7 +28575,7 @@ }; 614D9852037C48BC510E8CD382C526C1 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 45739967460E2D1904354C494EDEEB86 /* EXVideoThumbnails.xcconfig */; + baseConfigurationReference = BAB013510915D0909C84CB9E076EE887 /* EXVideoThumbnails.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -28624,7 +28628,7 @@ }; 630D3143C493E80D71A24FDEC5E714D1 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 51EDE4A352C03CEEFF24BC91E49758F7 /* react-native-safe-area-context.xcconfig */; + baseConfigurationReference = 20F82DAE42B6D6E69AB9C92BA1FF5FDD /* react-native-safe-area-context.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -28651,7 +28655,7 @@ }; 646D288F19E706EE0C7FEF68D7AA7A08 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 2EA97B926A768539C6BAA099C794686B /* RNFirebase.xcconfig */; + baseConfigurationReference = F7BDC62B2AB23C3D09681D3939BA0C71 /* RNFirebase.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -28678,7 +28682,7 @@ }; 6587E0E85E50C6129418B61EE75243F0 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 756DB69AC60ABE66C85FA7A50F750FED /* react-native-orientation-locker.xcconfig */; + baseConfigurationReference = 968F253DD1557CE33882DB03532614C7 /* react-native-orientation-locker.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -28705,7 +28709,7 @@ }; 65E4EE47AAD5F8BE136CFEA39BC3B696 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = D0AB169A9A57CF2E1200E72299D75C26 /* RNUserDefaults.xcconfig */; + baseConfigurationReference = 3035324485AF0B35786E811996BA977F /* RNUserDefaults.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -28731,7 +28735,7 @@ }; 68189F95B1543CA95038FD98447B904A /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 7B819EFA3A99D5AFE206DDF40E01CCE0 /* FBLazyVector.xcconfig */; + baseConfigurationReference = 2A2F2DE8B28F8EE7AA23F9C17E4A6265 /* FBLazyVector.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -28816,7 +28820,7 @@ }; 6B8AFF9E35F50BAC0DE697F5E0C3EFA9 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 87652A5B57CFCE1AE72BF7CAE1484B6F /* react-native-background-timer.xcconfig */; + baseConfigurationReference = 69FC4D209E239602E9E17B702963DB48 /* react-native-background-timer.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -28843,7 +28847,7 @@ }; 6D620E1574035BE4B178936002B7BC8F /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 663D2FB7BE11E42950372FC16A69A8DE /* RNFastImage.xcconfig */; + baseConfigurationReference = 2CF4A4990F18F91BDA1F18FCACB939BA /* RNFastImage.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -28870,7 +28874,7 @@ }; 6DC1143AC9B3ADDDE273AD03BC717821 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 4149C036165F6D00E7345C44173AC0C4 /* RCTRequired.xcconfig */; + baseConfigurationReference = FB9F0EF2E722FA751011AA90735B4349 /* RCTRequired.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -28885,7 +28889,7 @@ }; 6E1EED754019B0D2FD4071647DD2554A /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 9EFD597556152014E460AB59EA35433F /* EXImageLoader.xcconfig */; + baseConfigurationReference = FE09B14E292E628590EBAA410326B953 /* EXImageLoader.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -28912,7 +28916,7 @@ }; 6FF5942A55CB716386FB81B3A661E7FB /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = B8CAC0F1215C8A25A9642BA111595AAD /* UMTaskManagerInterface.xcconfig */; + baseConfigurationReference = 9474A83225E7D2F439DC8D96E46811E4 /* UMTaskManagerInterface.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -28929,7 +28933,7 @@ }; 71E8415D6468DFBF796F1039C1E97625 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = B85F14B1A3321F67D57FB3E5D50DEF80 /* React-RCTSettings.xcconfig */; + baseConfigurationReference = 9A96D7FADB2B3BF64F2F9061C01B14AA /* React-RCTSettings.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -28955,7 +28959,7 @@ }; 7282579EA97D587611013797E31B73E6 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 0E4627AF647F69A0666BB332B99DFB32 /* React-jsinspector.xcconfig */; + baseConfigurationReference = 66DA963474C6AB6CFAF8439678988D99 /* React-jsinspector.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -28982,7 +28986,7 @@ }; 764669D8236F7BDD2D5A7B8E1528A8B9 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 5D2B02C30C03507A4EC318CD198E032A /* UMFontInterface.xcconfig */; + baseConfigurationReference = 6E869BE1BE808D2666B7222B4EC25A38 /* UMFontInterface.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -28999,7 +29003,7 @@ }; 79C3DC195028717BB3D7DDD12A46B8DF /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = FAE1EDA8C27D4883EC4479E376EDA087 /* UMPermissionsInterface.xcconfig */; + baseConfigurationReference = 98CBE4F3143ABC2A602EDE05CCA1ACFA /* UMPermissionsInterface.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -29053,7 +29057,7 @@ }; 7B7C0755F8375DAF3EF185586C94D369 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = B349A54F4D2FD519D2D0B5F20BE0EC7E /* RNCMaskedView.xcconfig */; + baseConfigurationReference = 12C15A8BB31648A1D34690B78BC5735C /* RNCMaskedView.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -29079,7 +29083,7 @@ }; 7BAAF8357658CAC4B5D6D0C4B80A3994 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 85AC90391ADECD53E3556D7003D3A23F /* UMSensorsInterface.xcconfig */; + baseConfigurationReference = F44EFE0803F8B53A55186AAA8295928F /* UMSensorsInterface.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -29095,7 +29099,7 @@ }; 7DB17BC8E09831F39FB08A7D81AA5907 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = F04F96BD284F3D632696C76096959613 /* BugsnagReactNative.xcconfig */; + baseConfigurationReference = CFDE3CE6B14F32CB5B666D96795FCD7A /* BugsnagReactNative.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -29121,7 +29125,7 @@ }; 7E677923F364581870FA8D124AFACE60 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 85AC90391ADECD53E3556D7003D3A23F /* UMSensorsInterface.xcconfig */; + baseConfigurationReference = F44EFE0803F8B53A55186AAA8295928F /* UMSensorsInterface.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -29138,7 +29142,7 @@ }; 80E28D6632D5DE4EF8E68CF8C231AFAC /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 5401F36DD46724F06EC804A065EE1E28 /* React-CoreModules.xcconfig */; + baseConfigurationReference = 13AC71B6253B71FA0A15698F5F7817BE /* React-CoreModules.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -29233,7 +29237,7 @@ }; 8870C3F12DF20A8A79E4B0A817E80111 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 0004CD2B1C7A554C35DAB64B5EBAE612 /* EXConstants.xcconfig */; + baseConfigurationReference = C53A341F26A850ED2FFD606A431186B2 /* EXConstants.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -29261,7 +29265,7 @@ }; 8904A84B684086F0B016083093CE07FE /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 050293ECCB39238309F20D196347F57D /* React-RCTText.xcconfig */; + baseConfigurationReference = A5445E71DCF0CE110ABCD9AC90289C2B /* React-RCTText.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -29288,7 +29292,7 @@ }; 8A594744D753D19412FBE936E712B047 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = C23CD0A21EBD2999A882F84B9F233AD5 /* RNCAsyncStorage.xcconfig */; + baseConfigurationReference = ED3650B9AC8E675BC39758884790E286 /* RNCAsyncStorage.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -29315,7 +29319,7 @@ }; 8B4C75AB2077821412B0BEABB795B133 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = E61CF60153E47AD3BE61F120E5496976 /* React-RCTActionSheet.xcconfig */; + baseConfigurationReference = 8069C3A9598D86CED1E4219CBB67961D /* React-RCTActionSheet.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -29330,7 +29334,7 @@ }; 8B55720C1BD1EFE406E82A759744EB7A /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = AC7AD2E3DC6B86D1E8C1603D810A6621 /* EXKeepAwake.xcconfig */; + baseConfigurationReference = 0D624D60ED21A60D148726AD24981930 /* EXKeepAwake.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -29451,7 +29455,7 @@ }; 8D6C7A34D73E3808BBA4673B8AE0C087 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = E91AD6284DD4AB7F771C29815C3A0022 /* EXLocalAuthentication.xcconfig */; + baseConfigurationReference = 70AC8C777BB97FFA5673DF29335EE763 /* EXLocalAuthentication.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -29479,7 +29483,7 @@ }; 8DE4E46184828C3AC9AE2F483CAEEB62 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = F04F96BD284F3D632696C76096959613 /* BugsnagReactNative.xcconfig */; + baseConfigurationReference = CFDE3CE6B14F32CB5B666D96795FCD7A /* BugsnagReactNative.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -29506,7 +29510,7 @@ }; 8FC7CBDFE142209F416AC981FCB80953 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 0E4627AF647F69A0666BB332B99DFB32 /* React-jsinspector.xcconfig */; + baseConfigurationReference = 66DA963474C6AB6CFAF8439678988D99 /* React-jsinspector.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -29548,7 +29552,7 @@ }; 91D4E468815E5E97CFA73772ED20A135 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 6F8655AEBCB33048C58824700009949B /* UMFaceDetectorInterface.xcconfig */; + baseConfigurationReference = B9433C56C4D908FF1C792232B5C78E5D /* UMFaceDetectorInterface.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -29564,7 +29568,7 @@ }; 92F00FF914CF5E1A4B27BF701A3F98EB /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = A222D2976B2D979BDC00DB9FC9C41331 /* EXAppleAuthentication.xcconfig */; + baseConfigurationReference = FD565267FFB4070334FDBE9D3B727745 /* EXAppleAuthentication.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -29592,7 +29596,7 @@ }; 94F96B3181B5C4A55422960AE29B071C /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = B99C9BB3EF243DDDCB218744CD0C9125 /* React-cxxreact.xcconfig */; + baseConfigurationReference = FB7E71716798790222C019BF31D097D7 /* React-cxxreact.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -29618,7 +29622,7 @@ }; 952D998029472DC4C4DFD6B66EFD440F /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 6DF84C4AC2FF0FD8AF3C923CCBCA3EEB /* React-RCTLinking.xcconfig */; + baseConfigurationReference = 5E678DA453BED12C85EC160E1227B75A /* React-RCTLinking.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -29645,7 +29649,7 @@ }; 962FD9D12A679DF0DA56E883AA397314 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 0489DFAD8CDFB314CDC540B95FD79C84 /* react-native-notifications.xcconfig */; + baseConfigurationReference = DF5620D9B6A7BE0EF8BC9BFAA4FDD6A4 /* react-native-notifications.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -29672,7 +29676,7 @@ }; 96BCE63753F828171C3FD05BBAA1ECCA /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 27740AED39B856AD14E9D9FEF84F85D7 /* React-RCTAnimation.xcconfig */; + baseConfigurationReference = BAAFF78F17BDCEF3F136BE29EE8409E9 /* React-RCTAnimation.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -29726,7 +29730,7 @@ }; 97B00E3BBA0AECB29905C5EC1B0E87EC /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 68412A060E9246180930483E6972D374 /* EXFileSystem.xcconfig */; + baseConfigurationReference = 3AE067E84E3E01C7DE7EC097E7B3FB13 /* EXFileSystem.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -29754,7 +29758,7 @@ }; 98371860A139A358FA6303DE392398B7 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 36DD59698462AF3BB58AFA0B87ACAA45 /* RNImageCropPicker.xcconfig */; + baseConfigurationReference = 0CEF4454A8598F68A23B09EE381083DD /* RNImageCropPicker.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -29772,7 +29776,7 @@ }; 995061D0C062167E8B6C0490A5125265 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 36DD59698462AF3BB58AFA0B87ACAA45 /* RNImageCropPicker.xcconfig */; + baseConfigurationReference = 0CEF4454A8598F68A23B09EE381083DD /* RNImageCropPicker.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -29798,7 +29802,7 @@ }; 9A256B0D575C1B9903CAA284900CEFE5 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 079F6E76299A18536226AD3A42E9764F /* React-Core.xcconfig */; + baseConfigurationReference = F5F54331714288D4B87EA907858D17D8 /* React-Core.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -29825,7 +29829,7 @@ }; 9B4801DC8D6EB696AFFB6202AEAC0D6D /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = FAE1EDA8C27D4883EC4479E376EDA087 /* UMPermissionsInterface.xcconfig */; + baseConfigurationReference = 98CBE4F3143ABC2A602EDE05CCA1ACFA /* UMPermissionsInterface.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -29879,7 +29883,7 @@ }; 9D09360779C91B7CD5A5D701B0D29033 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = E4B85E9CA9529BA3CA89A024EF880435 /* React-RCTImage.xcconfig */; + baseConfigurationReference = 3A78826F61DDB107AAB10944EC45B467 /* React-RCTImage.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -29920,7 +29924,7 @@ }; 9DEEE31A23BEFA95B0F652A29164D233 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 761EAF3FCA2645F60BC33C873CD2F36A /* UMBarCodeScannerInterface.xcconfig */; + baseConfigurationReference = A96B9A374B1980315BA061F659A6F150 /* UMBarCodeScannerInterface.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -29937,7 +29941,7 @@ }; A27739C2B1814FAB77CC3AD01C44D6A9 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 7D762E43B438E1B0A696CE4CF33E1D2F /* RNVectorIcons.xcconfig */; + baseConfigurationReference = 5EC7CEBFC323467AA850A03744CBE464 /* RNVectorIcons.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -29964,7 +29968,7 @@ }; A55D5C7C42C605BFB77735B7507A3903 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = C0F313FB5F1E7F6BF4108813F8D2502F /* React-jsi.xcconfig */; + baseConfigurationReference = B505364CF978A6BB6EE63DF3031F59E7 /* React-jsi.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -29990,7 +29994,7 @@ }; A58FA93F97A296717115907AA968DDAB /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 7B819EFA3A99D5AFE206DDF40E01CCE0 /* FBLazyVector.xcconfig */; + baseConfigurationReference = 2A2F2DE8B28F8EE7AA23F9C17E4A6265 /* FBLazyVector.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -30005,7 +30009,7 @@ }; A79F89732A48D404FA27EC70182FC350 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 63738A7284C8997966EA3B6F6B1C94BE /* ReactNativeKeyboardTrackingView.xcconfig */; + baseConfigurationReference = 44ED7AA4DDDE5E75EFF44282C588460D /* ReactNativeKeyboardTrackingView.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -30089,7 +30093,7 @@ }; A892379D8DBD903F9F5299ACE5AB9573 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 050293ECCB39238309F20D196347F57D /* React-RCTText.xcconfig */; + baseConfigurationReference = A5445E71DCF0CE110ABCD9AC90289C2B /* React-RCTText.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -30184,7 +30188,7 @@ }; AB6916FCBFF289595BB1FD37CB4239A6 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 6E1662013842AD470983BDAD74E96EAE /* RNLocalize.xcconfig */; + baseConfigurationReference = D089407D7DCF62F19DBF6CC111610FD4 /* RNLocalize.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -30211,7 +30215,7 @@ }; AB765F75D361A75CB79E1D9700DDB0D4 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 8F7080514B2DC132D8D9E4F8F6B307F3 /* RNScreens.xcconfig */; + baseConfigurationReference = D9FC58B2BA1BFB5C040F369CEABE2C66 /* RNScreens.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -30264,7 +30268,7 @@ }; AC2FA42C6AC72075B90CD2FF1B790DDC /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 90C9BF5355CE3D22296D117057869FA9 /* RNGestureHandler.xcconfig */; + baseConfigurationReference = 095516377AB8DD4947052A1C89D7D3B7 /* RNGestureHandler.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -30290,7 +30294,7 @@ }; AC3CF821ABE60EA5B1E7BE05E64047F0 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 5401F36DD46724F06EC804A065EE1E28 /* React-CoreModules.xcconfig */; + baseConfigurationReference = 13AC71B6253B71FA0A15698F5F7817BE /* React-CoreModules.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -30316,7 +30320,7 @@ }; AC4775936C29D295B6450EC08CEA5829 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 0CBE6A03E32FC26465FCF0F3AF1DFDEB /* FBReactNativeSpec.xcconfig */; + baseConfigurationReference = 22EEFDC1FF381CE63EEEE36D980DE498 /* FBReactNativeSpec.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -30342,7 +30346,7 @@ }; AD2FB5912891BCBB6C51DA8334CE98B9 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 510DE00B6A6C5033471591E3A351D1AA /* RNDateTimePicker.xcconfig */; + baseConfigurationReference = A7337D3BE715CC565A00F1ECE675785A /* RNDateTimePicker.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -30368,7 +30372,7 @@ }; ADB0CDDE1827CA646C52C523066D211C /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = FD6B34FC6E26776DA0EBE08258EAB0FF /* RNReanimated.xcconfig */; + baseConfigurationReference = D50AD6DD2BE7BFED97EE7DC57A82A819 /* RNReanimated.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -30394,7 +30398,7 @@ }; AE7A4B8707442677FE1CD9E0498C5BDD /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 22F817D447B0FBFC5E919D280677C049 /* EXWebBrowser.xcconfig */; + baseConfigurationReference = 9BAEDC2A0F83594107D093CAF4138F50 /* EXWebBrowser.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -30422,7 +30426,7 @@ }; AECEBCE712AC0C128D865D4E39988C78 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 663D2FB7BE11E42950372FC16A69A8DE /* RNFastImage.xcconfig */; + baseConfigurationReference = 2CF4A4990F18F91BDA1F18FCACB939BA /* RNFastImage.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -30448,7 +30452,7 @@ }; AFBC9B2636EE1DA9119ED359CF5814C8 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = E61CF60153E47AD3BE61F120E5496976 /* React-RCTActionSheet.xcconfig */; + baseConfigurationReference = 8069C3A9598D86CED1E4219CBB67961D /* React-RCTActionSheet.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -30479,7 +30483,7 @@ }; B3CD22B7EC2C67CFA2FB701F29289AD1 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 0004CD2B1C7A554C35DAB64B5EBAE612 /* EXConstants.xcconfig */; + baseConfigurationReference = C53A341F26A850ED2FFD606A431186B2 /* EXConstants.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -30531,7 +30535,7 @@ }; B44A36D415BFFEFF1BD92163209EAAD0 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = ACAF80EA5DCDD687AEC7BBCB213D0F14 /* React-RCTBlob.xcconfig */; + baseConfigurationReference = 81FA983594CECD154E888E5A13800819 /* React-RCTBlob.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -30557,7 +30561,7 @@ }; B54A78056E8E8F777325DFAD36EB43D4 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = FD6B34FC6E26776DA0EBE08258EAB0FF /* RNReanimated.xcconfig */; + baseConfigurationReference = D50AD6DD2BE7BFED97EE7DC57A82A819 /* RNReanimated.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -30584,7 +30588,7 @@ }; B61F008C099CB869F5B3E38B4D075F48 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = CD89CF5BA6AB187F237B8A20B4CFA470 /* UMAppLoader.xcconfig */; + baseConfigurationReference = DF78CEA0E43CCA1C6E5B7A1CEA5DB4B6 /* UMAppLoader.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -30612,7 +30616,7 @@ }; B7AD6090725057CB46AA61569BE0CCC1 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 06AAD9D0F4DA3DB3A4910B53E9778504 /* ReactNativeKeyboardInput.xcconfig */; + baseConfigurationReference = E41481304ED3CC13F1D82769C44E671F /* ReactNativeKeyboardInput.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -30638,7 +30642,7 @@ }; BBEBA8BC8D45B72A1F7C78820819ED5B /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = F8498E65BBEA1AC78421FD1CD28DD3C1 /* RNDeviceInfo.xcconfig */; + baseConfigurationReference = 31BF8E9A69B7962F3C4A496E22C8CE72 /* RNDeviceInfo.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -30664,7 +30668,7 @@ }; BD4DAD572553882617A36503DAE72BB1 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = CC8B8994A39160475530121E7891B407 /* react-native-cameraroll.xcconfig */; + baseConfigurationReference = 2364233793BEFB6E9F7C4FD57080BCBB /* react-native-cameraroll.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -30690,7 +30694,7 @@ }; BD8C555F387DC02E6524EA86AE69C7E4 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 63738A7284C8997966EA3B6F6B1C94BE /* ReactNativeKeyboardTrackingView.xcconfig */; + baseConfigurationReference = 44ED7AA4DDDE5E75EFF44282C588460D /* ReactNativeKeyboardTrackingView.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -30768,7 +30772,7 @@ }; C0AB43CFD0B16DF72729061865BC82A3 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 22F817D447B0FBFC5E919D280677C049 /* EXWebBrowser.xcconfig */; + baseConfigurationReference = 9BAEDC2A0F83594107D093CAF4138F50 /* EXWebBrowser.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -30795,7 +30799,7 @@ }; C2140C4487286D40FDDDE672BB0F8DC8 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 6E1662013842AD470983BDAD74E96EAE /* RNLocalize.xcconfig */; + baseConfigurationReference = D089407D7DCF62F19DBF6CC111610FD4 /* RNLocalize.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -30848,7 +30852,7 @@ }; C55480815892F9BB7C7BF102985FB172 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = C23CD0A21EBD2999A882F84B9F233AD5 /* RNCAsyncStorage.xcconfig */; + baseConfigurationReference = ED3650B9AC8E675BC39758884790E286 /* RNCAsyncStorage.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -30900,7 +30904,7 @@ }; C7608D4BF5509F4421796B0625F9EE31 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 23920DCA27BEDAE8BD8AAC64F3753841 /* React-RCTVibration.xcconfig */; + baseConfigurationReference = 762F6F815E6393255BF8888C6AC94D38 /* React-RCTVibration.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -30926,7 +30930,7 @@ }; CBE349CFB950987CBC1021A4C612051B /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 3E35514A3865F337BAB34807B357E24B /* RNRootView.xcconfig */; + baseConfigurationReference = EFD141DC1EAB9E7F0D4A721FFCA200C3 /* RNRootView.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -30978,7 +30982,7 @@ }; CD63E8958EC6FBA71ED080060B3C3DA1 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 756DB69AC60ABE66C85FA7A50F750FED /* react-native-orientation-locker.xcconfig */; + baseConfigurationReference = 968F253DD1557CE33882DB03532614C7 /* react-native-orientation-locker.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -31004,7 +31008,7 @@ }; CE86BC8747547C114C1EF56E764850DF /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = CD89CF5BA6AB187F237B8A20B4CFA470 /* UMAppLoader.xcconfig */; + baseConfigurationReference = DF78CEA0E43CCA1C6E5B7A1CEA5DB4B6 /* UMAppLoader.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -31031,7 +31035,7 @@ }; CF8A82D2305CC4EB7BF73381C538A5E9 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = E1B0203EEAA6794298B1232415B345A3 /* react-native-appearance.xcconfig */; + baseConfigurationReference = 4965F83FB63F17DDF7135B269495CDB3 /* react-native-appearance.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -31058,7 +31062,7 @@ }; CFF0829E30F943E442923B3BFABD26BA /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 5D2B02C30C03507A4EC318CD198E032A /* UMFontInterface.xcconfig */; + baseConfigurationReference = 6E869BE1BE808D2666B7222B4EC25A38 /* UMFontInterface.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -31074,7 +31078,7 @@ }; D44AE23116BFC459841E46F78A7D18D4 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 0B0A67F61C92A74A973F3AD157FF31AE /* ReactCommon.xcconfig */; + baseConfigurationReference = 2DF3FE9A90E35F4B2262D0927A9BDD72 /* ReactCommon.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -31143,7 +31147,7 @@ }; D6462DB5908EF31119072DF180707EFF /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 9DF547BCD14061CD62E58880D6A92DB5 /* ReactNativeART.xcconfig */; + baseConfigurationReference = 6E004A1597FF77E9605176232AF208B6 /* ReactNativeART.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -31169,7 +31173,7 @@ }; D6BAF1C6FB468A07A014451F2079E77B /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 2EA97B926A768539C6BAA099C794686B /* RNFirebase.xcconfig */; + baseConfigurationReference = F7BDC62B2AB23C3D09681D3939BA0C71 /* RNFirebase.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -31195,7 +31199,7 @@ }; D73FFAC8B9760363DD94D0DD18099667 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 69AE13D23811D322D270415DA06E5638 /* UMCameraInterface.xcconfig */; + baseConfigurationReference = 1EC71A35AFECF54C8539BF3186408413 /* UMCameraInterface.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -31239,7 +31243,7 @@ }; D8B2A5C994FAA699F9AB034F417CA033 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 35F091C33CF755F5204262A08B542402 /* react-native-webview.xcconfig */; + baseConfigurationReference = 7979F000C239BF12E3EFFDB43C992451 /* react-native-webview.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -31266,7 +31270,7 @@ }; D8D246725C7020402ADBA119535596A9 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = BA32D40EBE0AFE838FD881CE4EE07058 /* react-native-document-picker.xcconfig */; + baseConfigurationReference = 1BEC1EB9E1D3680227515B298D3F4F4E /* react-native-document-picker.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -31292,7 +31296,7 @@ }; DC2F76B5BB2274BFAA8345C2A93DC1CE /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 23920DCA27BEDAE8BD8AAC64F3753841 /* React-RCTVibration.xcconfig */; + baseConfigurationReference = 762F6F815E6393255BF8888C6AC94D38 /* React-RCTVibration.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -31360,7 +31364,7 @@ }; DD42D07940E9CC1333330CCEC47EDB63 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = F8498E65BBEA1AC78421FD1CD28DD3C1 /* RNDeviceInfo.xcconfig */; + baseConfigurationReference = 31BF8E9A69B7962F3C4A496E22C8CE72 /* RNDeviceInfo.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -31451,7 +31455,7 @@ }; DE7D558F8B19FD2028AA1A619EF12C1C /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 761EAF3FCA2645F60BC33C873CD2F36A /* UMBarCodeScannerInterface.xcconfig */; + baseConfigurationReference = A96B9A374B1980315BA061F659A6F150 /* UMBarCodeScannerInterface.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -31494,7 +31498,7 @@ }; E002F01A244490EC2D7BE0B5908EF609 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 4170EA930CC1710E8CD10295F5027F00 /* rn-extensions-share.xcconfig */; + baseConfigurationReference = D3691543AE2B2E485F506D4E3B618754 /* rn-extensions-share.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -31521,7 +31525,7 @@ }; E0407D5E33F8D74FFACAF38B739C8B29 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 6B372B63DDB5329AEF0838FD23034936 /* UMImageLoaderInterface.xcconfig */; + baseConfigurationReference = 11DBD2E827F7F79844C5E1DCCEDD3BCD /* UMImageLoaderInterface.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -31538,7 +31542,7 @@ }; E042A1F3DA2D655DF64065BDE71EEF04 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 6F0EF6046A20A68989C5B5B8DD839E33 /* UMReactNativeAdapter.xcconfig */; + baseConfigurationReference = 1127F85247DE1FD3C77B7099CEC8B530 /* UMReactNativeAdapter.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -31609,7 +31613,7 @@ }; E2343B210AF75F7D3FAFF5A1ADAA8E2B /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 3E35514A3865F337BAB34807B357E24B /* RNRootView.xcconfig */; + baseConfigurationReference = EFD141DC1EAB9E7F0D4A721FFCA200C3 /* RNRootView.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -31636,7 +31640,7 @@ }; E2D24AA18608BA090376E86DB7BCB26E /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = B349A54F4D2FD519D2D0B5F20BE0EC7E /* RNCMaskedView.xcconfig */; + baseConfigurationReference = 12C15A8BB31648A1D34690B78BC5735C /* RNCMaskedView.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -31663,7 +31667,7 @@ }; E2D6EA909158F38D23E09480CFC0012B /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 079F6E76299A18536226AD3A42E9764F /* React-Core.xcconfig */; + baseConfigurationReference = F5F54331714288D4B87EA907858D17D8 /* React-Core.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -31715,7 +31719,7 @@ }; E3C29AEA11F3223722658CFAD4CED5A3 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 00E976495F86A5FC584B964CB92ADF63 /* React.xcconfig */; + baseConfigurationReference = 2ED7C8D28CC217E2C58459E3ADB5A56D /* React.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -31731,7 +31735,7 @@ }; E4994CD19B3CE26912637B9AE5C584F6 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = E0495102CDC8237B6AC8990EE9CE248D /* react-native-jitsi-meet.xcconfig */; + baseConfigurationReference = 59C0920E4C304B529F7BD975803B566E /* react-native-jitsi-meet.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -31757,7 +31761,7 @@ }; EA78216D413AEF5509BC7B4DBF691BAC /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 7CB50B1B70E1F32BA1A0D0477F868DBE /* rn-fetch-blob.xcconfig */; + baseConfigurationReference = 80B02CBBA322ED01E5AD7A3B1891806C /* rn-fetch-blob.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -31783,7 +31787,7 @@ }; EB22789E6D5BAB3E3F969EDF91DE9BC1 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 00E976495F86A5FC584B964CB92ADF63 /* React.xcconfig */; + baseConfigurationReference = 2ED7C8D28CC217E2C58459E3ADB5A56D /* React.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -31798,7 +31802,7 @@ }; EF837CE35B7A473EFD08BF3C094E6D28 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 9B11399D7D9C0CC421366F0B70405608 /* EXPermissions.xcconfig */; + baseConfigurationReference = CCF550282A5878C616CBF4F0FEA8C767 /* EXPermissions.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -31825,7 +31829,7 @@ }; EFBC1B2B4FDA4EAFF967FBC3A5455A23 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = B85F14B1A3321F67D57FB3E5D50DEF80 /* React-RCTSettings.xcconfig */; + baseConfigurationReference = 9A96D7FADB2B3BF64F2F9061C01B14AA /* React-RCTSettings.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -31852,7 +31856,7 @@ }; F110780FDF9D939A972D53231EE6FA24 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 68412A060E9246180930483E6972D374 /* EXFileSystem.xcconfig */; + baseConfigurationReference = 3AE067E84E3E01C7DE7EC097E7B3FB13 /* EXFileSystem.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -31924,7 +31928,7 @@ }; F3D3F652EF48BAA51EBC8E2B8BF33B10 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = B99C9BB3EF243DDDCB218744CD0C9125 /* React-cxxreact.xcconfig */; + baseConfigurationReference = FB7E71716798790222C019BF31D097D7 /* React-cxxreact.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -31951,7 +31955,7 @@ }; F557FCBDFC24296FDD3F0B44C274A253 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 510DE00B6A6C5033471591E3A351D1AA /* RNDateTimePicker.xcconfig */; + baseConfigurationReference = A7337D3BE715CC565A00F1ECE675785A /* RNDateTimePicker.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -31978,7 +31982,7 @@ }; F7F7649CBC7C19196B8BBEF0DD2B193F /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 0B0A67F61C92A74A973F3AD157FF31AE /* ReactCommon.xcconfig */; + baseConfigurationReference = 2DF3FE9A90E35F4B2262D0927A9BDD72 /* ReactCommon.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -32112,7 +32116,7 @@ }; FA75107B9FA4AEC31421192228EAF167 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 6DF84C4AC2FF0FD8AF3C923CCBCA3EEB /* React-RCTLinking.xcconfig */; + baseConfigurationReference = 5E678DA453BED12C85EC160E1227B75A /* React-RCTLinking.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -32138,7 +32142,7 @@ }; FC4DE0C4A8D93C86E058BD266AD33FA9 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = E91AD6284DD4AB7F771C29815C3A0022 /* EXLocalAuthentication.xcconfig */; + baseConfigurationReference = 70AC8C777BB97FFA5673DF29335EE763 /* EXLocalAuthentication.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -32165,7 +32169,7 @@ }; FDF2A21B3998DDB018F0C3FB4296F569 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 1EBCB9F825BB74349DA8464E4078D6CD /* SDWebImage.xcconfig */; + baseConfigurationReference = 61A641D30E03AD12C038341E2E7DEED1 /* SDWebImage.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -32192,7 +32196,7 @@ }; FE406AD08760612EC992CA3361C500ED /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = A222D2976B2D979BDC00DB9FC9C41331 /* EXAppleAuthentication.xcconfig */; + baseConfigurationReference = FD565267FFB4070334FDBE9D3B727745 /* EXAppleAuthentication.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -32219,7 +32223,7 @@ }; FE5DF526A592397782C99673E1056E52 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = F04329074D27EAB622ADF38E5694313D /* EXHaptics.xcconfig */; + baseConfigurationReference = 718C6051015263C943C1B19DB3B75F4B /* EXHaptics.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -32246,7 +32250,7 @@ }; FEE2A6B5E74B79501495E1D072804DE2 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = BA32D40EBE0AFE838FD881CE4EE07058 /* react-native-document-picker.xcconfig */; + baseConfigurationReference = 1BEC1EB9E1D3680227515B298D3F4F4E /* react-native-document-picker.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -32273,7 +32277,7 @@ }; FFB88A23A6CBC95B90E15C63EDA3D2A9 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = F04329074D27EAB622ADF38E5694313D /* EXHaptics.xcconfig */; + baseConfigurationReference = 718C6051015263C943C1B19DB3B75F4B /* EXHaptics.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; diff --git a/ios/Pods/SDWebImage/README.md b/ios/Pods/SDWebImage/README.md index e83aaba8..03737944 100644 --- a/ios/Pods/SDWebImage/README.md +++ b/ios/Pods/SDWebImage/README.md @@ -133,6 +133,7 @@ You can use those directly, or create similar components of your own, by using t - If you **want to contribute**, read the [Contributing Guide](https://github.com/SDWebImage/SDWebImage/blob/master/.github/CONTRIBUTING.md) - For **development contribution guide**, read the [How-To-Contribute](https://github.com/SDWebImage/SDWebImage/wiki/How-to-Contribute) +- For **understanding code architecture**, read the [Code Architecture Analysis](https://github.com/SDWebImage/SDWebImage/wiki/5.6-Code-Architecture-Analysis) ## How To Use @@ -283,6 +284,12 @@ In the source files where you need to use the library, import the umbrella heade #import ``` +It's also recommend to use the module import syntax, available for CocoaPods(enable `modular_headers`)/Carthage/SwiftPM. + +```objecitivec +@import SDWebImage; +``` + ### Build Project At this point your workspace should build without error. If you are having problem, post to the Issue and the @@ -310,6 +317,8 @@ All source code is licensed under the [MIT License](https://github.com/SDWebImag ## Architecture +To learn about SDWebImage's architecture design for contribution, read [The Core of SDWebImage v5.6 Architecture](https://github.com/SDWebImage/SDWebImage/wiki/5.6-Code-Architecture-Analysis). Thanks @looseyi for the post and translation. + #### High Level Diagram

diff --git a/ios/Pods/SDWebImage/SDWebImage/Core/SDAnimatedImageView.h b/ios/Pods/SDWebImage/SDWebImage/Core/SDAnimatedImageView.h index 2d9ac665..5dc8ef29 100644 --- a/ios/Pods/SDWebImage/SDWebImage/Core/SDAnimatedImageView.h +++ b/ios/Pods/SDWebImage/SDWebImage/Core/SDAnimatedImageView.h @@ -81,6 +81,13 @@ */ @property (nonatomic, assign) BOOL resetFrameIndexWhenStopped; +/** + If the image has more than one frame, set this value to `YES` will automatically + play/stop the animation when the view become visible/invisible. + Default is YES. + */ +@property (nonatomic, assign) BOOL autoPlayAnimatedImage; + /** You can specify a runloop mode to let it rendering. Default is NSRunLoopCommonModes on multi-core device, NSDefaultRunLoopMode on single-core device diff --git a/ios/Pods/SDWebImage/SDWebImage/Core/SDAnimatedImageView.m b/ios/Pods/SDWebImage/SDWebImage/Core/SDAnimatedImageView.m index e5cad14d..e2bd432c 100644 --- a/ios/Pods/SDWebImage/SDWebImage/Core/SDAnimatedImageView.m +++ b/ios/Pods/SDWebImage/SDWebImage/Core/SDAnimatedImageView.m @@ -93,6 +93,7 @@ { // Pay attention that UIKit's `initWithImage:` will trigger a `setImage:` during initialization before this `commonInit`. // So the properties which rely on this order, should using lazy-evaluation or do extra check in `setImage:`. + self.autoPlayAnimatedImage = YES; self.shouldCustomLoopCount = NO; self.shouldIncrementalLoad = YES; self.playbackRate = 1.0; @@ -183,8 +184,8 @@ // Ensure disabled highlighting; it's not supported (see `-setHighlighted:`). super.highlighted = NO; - // Start animating - [self startAnimating]; + [self stopAnimating]; + [self checkPlay]; [self.imageViewLayer setNeedsDisplay]; } @@ -258,12 +259,7 @@ [super didMoveToSuperview]; #endif - [self updateShouldAnimate]; - if (self.shouldAnimate) { - [self startAnimating]; - } else { - [self stopAnimating]; - } + [self checkPlay]; } #if SD_MAC @@ -278,12 +274,7 @@ [super didMoveToWindow]; #endif - [self updateShouldAnimate]; - if (self.shouldAnimate) { - [self startAnimating]; - } else { - [self stopAnimating]; - } + [self checkPlay]; } #if SD_MAC @@ -298,24 +289,14 @@ [super setAlpha:alpha]; #endif - [self updateShouldAnimate]; - if (self.shouldAnimate) { - [self startAnimating]; - } else { - [self stopAnimating]; - } + [self checkPlay]; } - (void)setHidden:(BOOL)hidden { [super setHidden:hidden]; - [self updateShouldAnimate]; - if (self.shouldAnimate) { - [self startAnimating]; - } else { - [self stopAnimating]; - } + [self checkPlay]; } #pragma mark - UIImageView Method Overrides @@ -344,6 +325,8 @@ } else { #if SD_UIKIT [super startAnimating]; +#else + [super setAnimates:YES]; #endif } } @@ -362,6 +345,8 @@ } else { #if SD_UIKIT [super stopAnimating]; +#else + [super setAnimates:NO]; #endif } } @@ -378,9 +363,17 @@ #endif #if SD_MAC +- (BOOL)animates +{ + if (self.player) { + return self.player.isPlaying; + } else { + return [super animates]; + } +} + - (void)setAnimates:(BOOL)animates { - [super setAnimates:animates]; if (animates) { [self startAnimating]; } else { @@ -403,6 +396,19 @@ #pragma mark - Private Methods #pragma mark Animation +/// Check if it should be played +- (void)checkPlay +{ + if (self.autoPlayAnimatedImage) { + [self updateShouldAnimate]; + if (self.shouldAnimate) { + [self startAnimating]; + } else { + [self stopAnimating]; + } + } +} + // Don't repeatedly check our window & superview in `-displayDidRefresh:` for performance reasons. // Just update our cached value whenever the animated image or visibility (window, superview, hidden, alpha) is changed. - (void)updateShouldAnimate diff --git a/ios/Pods/SDWebImage/SDWebImage/Core/SDImageCoder.h b/ios/Pods/SDWebImage/SDWebImage/Core/SDImageCoder.h index fe5ca0cc..fe4c5f27 100644 --- a/ios/Pods/SDWebImage/SDWebImage/Core/SDImageCoder.h +++ b/ios/Pods/SDWebImage/SDWebImage/Core/SDImageCoder.h @@ -79,6 +79,14 @@ FOUNDATION_EXPORT SDImageCoderOption _Nonnull const SDImageCoderEncodeMaxPixelSi */ FOUNDATION_EXPORT SDImageCoderOption _Nonnull const SDImageCoderEncodeMaxFileSize; +/** + A Boolean value indicating the encoding format should contains a thumbnail image into the output data. Only some of image format (like JPEG/HEIF/AVIF) support this behavior. The embed thumbnail will be used during next time thumbnail decoding (provided `.thumbnailPixelSize`), which is faster than full image thumbnail decoding. (NSNumber) + Defaults to NO, which does not embed any thumbnail. + @note The thumbnail image's pixel size is not defined, the encoder can choose the proper pixel size which is suitable for encoding quality. + @note works for `SDImageCoder` + */ +FOUNDATION_EXPORT SDImageCoderOption _Nonnull const SDImageCoderEncodeEmbedThumbnail; + /** A SDWebImageContext object which hold the original context options from top-level API. (SDWebImageContext) This option is ignored for all built-in coders and take no effect. diff --git a/ios/Pods/SDWebImage/SDWebImage/Core/SDImageCoder.m b/ios/Pods/SDWebImage/SDWebImage/Core/SDImageCoder.m index 37dfdc41..0fda1983 100644 --- a/ios/Pods/SDWebImage/SDWebImage/Core/SDImageCoder.m +++ b/ios/Pods/SDWebImage/SDWebImage/Core/SDImageCoder.m @@ -18,5 +18,6 @@ SDImageCoderOption const SDImageCoderEncodeCompressionQuality = @"encodeCompress SDImageCoderOption const SDImageCoderEncodeBackgroundColor = @"encodeBackgroundColor"; SDImageCoderOption const SDImageCoderEncodeMaxPixelSize = @"encodeMaxPixelSize"; SDImageCoderOption const SDImageCoderEncodeMaxFileSize = @"encodeMaxFileSize"; +SDImageCoderOption const SDImageCoderEncodeEmbedThumbnail = @"encodeEmbedThumbnail"; SDImageCoderOption const SDImageCoderWebImageContext = @"webImageContext"; diff --git a/ios/Pods/SDWebImage/SDWebImage/Core/SDImageIOAnimatedCoder.m b/ios/Pods/SDWebImage/SDWebImage/Core/SDImageIOAnimatedCoder.m index 89220c88..df6415c3 100644 --- a/ios/Pods/SDWebImage/SDWebImage/Core/SDImageIOAnimatedCoder.m +++ b/ios/Pods/SDWebImage/SDWebImage/Core/SDImageIOAnimatedCoder.m @@ -476,6 +476,7 @@ static NSString * kSDCGImageDestinationRequestedFileSize = @"kCGImageDestination } else { finalPixelSize = maxPixelSize.height; } + properties[(__bridge NSString *)kCGImageDestinationImageMaxPixelSize] = @(finalPixelSize); } NSUInteger maxFileSize = [options[SDImageCoderEncodeMaxFileSize] unsignedIntegerValue]; if (maxFileSize > 0) { @@ -483,31 +484,31 @@ static NSString * kSDCGImageDestinationRequestedFileSize = @"kCGImageDestination // Remove the quality if we have file size limit properties[(__bridge NSString *)kCGImageDestinationLossyCompressionQuality] = nil; } + BOOL embedThumbnail = NO; + if (options[SDImageCoderEncodeEmbedThumbnail]) { + embedThumbnail = [options[SDImageCoderEncodeEmbedThumbnail] boolValue]; + } + properties[(__bridge NSString *)kCGImageDestinationEmbedThumbnail] = @(embedThumbnail); BOOL encodeFirstFrame = [options[SDImageCoderEncodeFirstFrameOnly] boolValue]; if (encodeFirstFrame || frames.count == 0) { // for static single images - if (finalPixelSize > 0) { - properties[(__bridge NSString *)kCGImageDestinationImageMaxPixelSize] = @(finalPixelSize); - } CGImageDestinationAddImage(imageDestination, imageRef, (__bridge CFDictionaryRef)properties); } else { // for animated images NSUInteger loopCount = image.sd_imageLoopCount; - NSDictionary *containerProperties = @{self.class.loopCountProperty : @(loopCount)}; - properties[self.class.dictionaryProperty] = containerProperties; - CGImageDestinationSetProperties(imageDestination, (__bridge CFDictionaryRef)properties); + NSDictionary *containerProperties = @{ + self.class.dictionaryProperty: @{self.class.loopCountProperty : @(loopCount)} + }; + // container level properties (applies for `CGImageDestinationSetProperties`, not individual frames) + CGImageDestinationSetProperties(imageDestination, (__bridge CFDictionaryRef)containerProperties); for (size_t i = 0; i < frames.count; i++) { SDImageFrame *frame = frames[i]; NSTimeInterval frameDuration = frame.duration; CGImageRef frameImageRef = frame.image.CGImage; - NSMutableDictionary *frameProperties = [NSMutableDictionary dictionary]; - frameProperties[self.class.dictionaryProperty] = @{self.class.delayTimeProperty : @(frameDuration)}; - if (finalPixelSize > 0) { - frameProperties[(__bridge NSString *)kCGImageDestinationImageMaxPixelSize] = @(finalPixelSize); - } - CGImageDestinationAddImage(imageDestination, frameImageRef, (__bridge CFDictionaryRef)frameProperties); + properties[self.class.dictionaryProperty] = @{self.class.delayTimeProperty : @(frameDuration)}; + CGImageDestinationAddImage(imageDestination, frameImageRef, (__bridge CFDictionaryRef)properties); } } // Finalize the destination. diff --git a/ios/Pods/SDWebImage/SDWebImage/Core/SDImageIOCoder.m b/ios/Pods/SDWebImage/SDWebImage/Core/SDImageIOCoder.m index df93e14e..11565e12 100644 --- a/ios/Pods/SDWebImage/SDWebImage/Core/SDImageIOCoder.m +++ b/ios/Pods/SDWebImage/SDWebImage/Core/SDImageIOCoder.m @@ -294,6 +294,11 @@ static NSString * kSDCGImageDestinationRequestedFileSize = @"kCGImageDestination // Remove the quality if we have file size limit properties[(__bridge NSString *)kCGImageDestinationLossyCompressionQuality] = nil; } + BOOL embedThumbnail = NO; + if (options[SDImageCoderEncodeEmbedThumbnail]) { + embedThumbnail = [options[SDImageCoderEncodeEmbedThumbnail] boolValue]; + } + properties[(__bridge NSString *)kCGImageDestinationEmbedThumbnail] = @(embedThumbnail); // Add your image to the destination. CGImageDestinationAddImage(imageDestination, imageRef, (__bridge CFDictionaryRef)properties); diff --git a/ios/Pods/SDWebImage/SDWebImage/Core/SDWebImageDefine.h b/ios/Pods/SDWebImage/SDWebImage/Core/SDWebImageDefine.h index 96f71d68..a714ccdd 100644 --- a/ios/Pods/SDWebImage/SDWebImage/Core/SDWebImageDefine.h +++ b/ios/Pods/SDWebImage/SDWebImage/Core/SDWebImageDefine.h @@ -272,9 +272,17 @@ FOUNDATION_EXPORT SDWebImageContextOption _Nonnull const SDWebImageContextQueryC */ FOUNDATION_EXPORT SDWebImageContextOption _Nonnull const SDWebImageContextStoreCacheType; +/** + The same behavior like `SDWebImageContextQueryCacheType`, but control the query cache type for the original image when you use image transformer feature. This allows the detail control of cache query for these two images. For example, if you want to query the transformed image from both memory/disk cache, query the original image from disk cache only, use `[.queryCacheType : .all, .originalQueryCacheType : .disk]` + If not provide or the value is invalid, we will use `SDImageCacheTypeNone`, which does not query the original image from cache. (NSNumber) + @note Which means, if you set this value to not be `.none`, we will query the original image from cache, then do transform with transformer, instead of actual downloading, which can save bandwidth usage. + */ +FOUNDATION_EXPORT SDWebImageContextOption _Nonnull const SDWebImageContextOriginalQueryCacheType; + /** The same behavior like `SDWebImageContextStoreCacheType`, but control the store cache type for the original image when you use image transformer feature. This allows the detail control of cache storage for these two images. For example, if you want to store the transformed image into both memory/disk cache, store the original image into disk cache only, use `[.storeCacheType : .all, .originalStoreCacheType : .disk]` If not provide or the value is invalid, we will use `SDImageCacheTypeNone`, which does not store the original image into cache. (NSNumber) + @note This only store the original image, if you want to use the original image without downloading in next query, specify `SDWebImageContextOriginalQueryCacheType` as well. */ FOUNDATION_EXPORT SDWebImageContextOption _Nonnull const SDWebImageContextOriginalStoreCacheType; diff --git a/ios/Pods/SDWebImage/SDWebImage/Core/SDWebImageDefine.m b/ios/Pods/SDWebImage/SDWebImage/Core/SDWebImageDefine.m index 2809af69..4c58061d 100644 --- a/ios/Pods/SDWebImage/SDWebImage/Core/SDWebImageDefine.m +++ b/ios/Pods/SDWebImage/SDWebImage/Core/SDWebImageDefine.m @@ -129,6 +129,7 @@ SDWebImageContextOption const SDWebImageContextImagePreserveAspectRatio = @"imag SDWebImageContextOption const SDWebImageContextImageThumbnailPixelSize = @"imageThumbnailPixelSize"; SDWebImageContextOption const SDWebImageContextQueryCacheType = @"queryCacheType"; SDWebImageContextOption const SDWebImageContextStoreCacheType = @"storeCacheType"; +SDWebImageContextOption const SDWebImageContextOriginalQueryCacheType = @"originalQueryCacheType"; SDWebImageContextOption const SDWebImageContextOriginalStoreCacheType = @"originalStoreCacheType"; SDWebImageContextOption const SDWebImageContextAnimatedImageClass = @"animatedImageClass"; SDWebImageContextOption const SDWebImageContextDownloadRequestModifier = @"downloadRequestModifier"; diff --git a/ios/Pods/SDWebImage/SDWebImage/Core/SDWebImageDownloaderDecryptor.h b/ios/Pods/SDWebImage/SDWebImage/Core/SDWebImageDownloaderDecryptor.h index 184d4f85..682bc933 100644 --- a/ios/Pods/SDWebImage/SDWebImage/Core/SDWebImageDownloaderDecryptor.h +++ b/ios/Pods/SDWebImage/SDWebImage/Core/SDWebImageDownloaderDecryptor.h @@ -30,7 +30,12 @@ A downloader response modifier class with block. */ @interface SDWebImageDownloaderDecryptor : NSObject +/// Create the data decryptor with block +/// @param block A block to control decrypt logic - (nonnull instancetype)initWithBlock:(nonnull SDWebImageDownloaderDecryptorBlock)block; + +/// Create the data decryptor with block +/// @param block A block to control decrypt logic + (nonnull instancetype)decryptorWithBlock:(nonnull SDWebImageDownloaderDecryptorBlock)block; @end diff --git a/ios/Pods/SDWebImage/SDWebImage/Core/SDWebImageDownloaderOperation.m b/ios/Pods/SDWebImage/SDWebImage/Core/SDWebImageDownloaderOperation.m index 00d803f2..57ac0571 100644 --- a/ios/Pods/SDWebImage/SDWebImage/Core/SDWebImageDownloaderOperation.m +++ b/ios/Pods/SDWebImage/SDWebImage/Core/SDWebImageDownloaderOperation.m @@ -474,7 +474,8 @@ didReceiveResponse:(NSURLResponse *)response UIImage *image = SDImageLoaderDecodeImageData(imageData, self.request.URL, [[self class] imageOptionsFromDownloaderOptions:self.options], self.context); CGSize imageSize = image.size; if (imageSize.width == 0 || imageSize.height == 0) { - [self callCompletionBlocksWithError:[NSError errorWithDomain:SDWebImageErrorDomain code:SDWebImageErrorBadImageData userInfo:@{NSLocalizedDescriptionKey : @"Downloaded image has 0 pixels"}]]; + NSString *description = image == nil ? @"Downloaded image decode failed" : @"Downloaded image has 0 pixels"; + [self callCompletionBlocksWithError:[NSError errorWithDomain:SDWebImageErrorDomain code:SDWebImageErrorBadImageData userInfo:@{NSLocalizedDescriptionKey : description}]]; } else { [self callCompletionBlocksWithImage:image imageData:imageData error:nil finished:YES]; } diff --git a/ios/Pods/SDWebImage/SDWebImage/Core/SDWebImageDownloaderRequestModifier.h b/ios/Pods/SDWebImage/SDWebImage/Core/SDWebImageDownloaderRequestModifier.h index eabdf61d..67f17992 100644 --- a/ios/Pods/SDWebImage/SDWebImage/Core/SDWebImageDownloaderRequestModifier.h +++ b/ios/Pods/SDWebImage/SDWebImage/Core/SDWebImageDownloaderRequestModifier.h @@ -29,7 +29,41 @@ typedef NSURLRequest * _Nullable (^SDWebImageDownloaderRequestModifierBlock)(NSU */ @interface SDWebImageDownloaderRequestModifier : NSObject +/// Create the request modifier with block +/// @param block A block to control modifier logic - (nonnull instancetype)initWithBlock:(nonnull SDWebImageDownloaderRequestModifierBlock)block; + +/// Create the request modifier with block +/// @param block A block to control modifier logic + (nonnull instancetype)requestModifierWithBlock:(nonnull SDWebImageDownloaderRequestModifierBlock)block; @end + +/** +A convenient request modifier to provide the HTTP request including HTTP Method, Headers and Body. +*/ +@interface SDWebImageDownloaderRequestModifier (Conveniences) + +/// Create the request modifier with HTTP Method. +/// @param method HTTP Method, nil means to GET. +/// @note This is for convenience, if you need code to control the logic, use block API instead. +- (nonnull instancetype)initWithMethod:(nullable NSString *)method; + +/// Create the request modifier with HTTP Headers. +/// @param headers HTTP Headers. Case insensitive according to HTTP/1.1(HTTP/2) standard. The headers will overide the same fileds from original request. +/// @note This is for convenience, if you need code to control the logic, use block API instead. +- (nonnull instancetype)initWithHeaders:(nullable NSDictionary *)headers; + +/// Create the request modifier with HTTP Body. +/// @param body HTTP Body. +/// @note This is for convenience, if you need code to control the logic, use block API instead. +- (nonnull instancetype)initWithBody:(nullable NSData *)body; + +/// Create the request modifier with HTTP Method, Headers and Body. +/// @param method HTTP Method, nil means to GET. +/// @param headers HTTP Headers. Case insensitive according to HTTP/1.1(HTTP/2) standard. The headers will overide the same fileds from original request. +/// @param body HTTP Body. +/// @note This is for convenience, if you need code to control the logic, use block API instead. +- (nonnull instancetype)initWithMethod:(nullable NSString *)method headers:(nullable NSDictionary *)headers body:(nullable NSData *)body; + +@end diff --git a/ios/Pods/SDWebImage/SDWebImage/Core/SDWebImageDownloaderRequestModifier.m b/ios/Pods/SDWebImage/SDWebImage/Core/SDWebImageDownloaderRequestModifier.m index 22d044af..7b81a40c 100644 --- a/ios/Pods/SDWebImage/SDWebImage/Core/SDWebImageDownloaderRequestModifier.m +++ b/ios/Pods/SDWebImage/SDWebImage/Core/SDWebImageDownloaderRequestModifier.m @@ -37,3 +37,35 @@ } @end + +@implementation SDWebImageDownloaderRequestModifier (Conveniences) + +- (instancetype)initWithMethod:(NSString *)method { + return [self initWithMethod:method headers:nil body:nil]; +} + +- (instancetype)initWithHeaders:(NSDictionary *)headers { + return [self initWithMethod:nil headers:headers body:nil]; +} + +- (instancetype)initWithBody:(NSData *)body { + return [self initWithMethod:nil headers:nil body:body]; +} + +- (instancetype)initWithMethod:(NSString *)method headers:(NSDictionary *)headers body:(NSData *)body { + method = [method copy]; + headers = [headers copy]; + body = [body copy]; + return [self initWithBlock:^NSURLRequest * _Nullable(NSURLRequest * _Nonnull request) { + NSMutableURLRequest *mutableRequest = [request mutableCopy]; + mutableRequest.HTTPMethod = method; + mutableRequest.HTTPBody = body; + for (NSString *header in headers) { + NSString *value = headers[header]; + [mutableRequest setValue:value forHTTPHeaderField:header]; + } + return [mutableRequest copy]; + }]; +} + +@end diff --git a/ios/Pods/SDWebImage/SDWebImage/Core/SDWebImageDownloaderResponseModifier.h b/ios/Pods/SDWebImage/SDWebImage/Core/SDWebImageDownloaderResponseModifier.h index a8bcc0b5..8c530688 100644 --- a/ios/Pods/SDWebImage/SDWebImage/Core/SDWebImageDownloaderResponseModifier.h +++ b/ios/Pods/SDWebImage/SDWebImage/Core/SDWebImageDownloaderResponseModifier.h @@ -29,7 +29,41 @@ typedef NSURLResponse * _Nullable (^SDWebImageDownloaderResponseModifierBlock)(N */ @interface SDWebImageDownloaderResponseModifier : NSObject +/// Create the response modifier with block +/// @param block A block to control modifier logic - (nonnull instancetype)initWithBlock:(nonnull SDWebImageDownloaderResponseModifierBlock)block; + +/// Create the response modifier with block +/// @param block A block to control modifier logic + (nonnull instancetype)responseModifierWithBlock:(nonnull SDWebImageDownloaderResponseModifierBlock)block; @end + +/** +A convenient response modifier to provide the HTTP response including HTTP Status Code, Version and Headers. +*/ +@interface SDWebImageDownloaderResponseModifier (Conveniences) + +/// Create the response modifier with HTTP Status code. +/// @param statusCode HTTP Status Code. +/// @note This is for convenience, if you need code to control the logic, use block API instead. +- (nonnull instancetype)initWithStatusCode:(NSInteger)statusCode; + +/// Create the response modifier with HTTP Version. Status code defaults to 200. +/// @param version HTTP Version, nil means "HTTP/1.1". +/// @note This is for convenience, if you need code to control the logic, use block API instead. +- (nonnull instancetype)initWithVersion:(nullable NSString *)version; + +/// Create the response modifier with HTTP Headers. Status code defaults to 200. +/// @param headers HTTP Headers. Case insensitive according to HTTP/1.1(HTTP/2) standard. The headers will overide the same fileds from original response. +/// @note This is for convenience, if you need code to control the logic, use block API instead. +- (nonnull instancetype)initWithHeaders:(nullable NSDictionary *)headers; + +/// Create the response modifier with HTTP Status Code, Version and Headers. +/// @param statusCode HTTP Status Code. +/// @param version HTTP Version, nil means "HTTP/1.1". +/// @param headers HTTP Headers. Case insensitive according to HTTP/1.1(HTTP/2) standard. The headers will overide the same fileds from original response. +/// @note This is for convenience, if you need code to control the logic, use block API instead. +- (nonnull instancetype)initWithStatusCode:(NSInteger)statusCode version:(nullable NSString *)version headers:(nullable NSDictionary *)headers; + +@end diff --git a/ios/Pods/SDWebImage/SDWebImage/Core/SDWebImageDownloaderResponseModifier.m b/ios/Pods/SDWebImage/SDWebImage/Core/SDWebImageDownloaderResponseModifier.m index 0894b953..6acf02a2 100644 --- a/ios/Pods/SDWebImage/SDWebImage/Core/SDWebImageDownloaderResponseModifier.m +++ b/ios/Pods/SDWebImage/SDWebImage/Core/SDWebImageDownloaderResponseModifier.m @@ -38,3 +38,36 @@ } @end + +@implementation SDWebImageDownloaderResponseModifier (Conveniences) + +- (instancetype)initWithStatusCode:(NSInteger)statusCode { + return [self initWithStatusCode:statusCode version:nil headers:nil]; +} + +- (instancetype)initWithVersion:(NSString *)version { + return [self initWithStatusCode:200 version:version headers:nil]; +} + +- (instancetype)initWithHeaders:(NSDictionary *)headers { + return [self initWithStatusCode:200 version:nil headers:headers]; +} + +- (instancetype)initWithStatusCode:(NSInteger)statusCode version:(NSString *)version headers:(NSDictionary *)headers { + version = version ? [version copy] : @"HTTP/1.1"; + headers = [headers copy]; + return [self initWithBlock:^NSURLResponse * _Nullable(NSURLResponse * _Nonnull response) { + if (![response isKindOfClass:NSHTTPURLResponse.class]) { + return response; + } + NSMutableDictionary *mutableHeaders = [((NSHTTPURLResponse *)response).allHeaderFields mutableCopy]; + for (NSString *header in headers) { + NSString *value = headers[header]; + mutableHeaders[header] = value; + } + NSHTTPURLResponse *httpResponse = [[NSHTTPURLResponse alloc] initWithURL:response.URL statusCode:statusCode HTTPVersion:version headerFields:[mutableHeaders copy]]; + return httpResponse; + }]; +} + +@end diff --git a/ios/Pods/SDWebImage/SDWebImage/Core/SDWebImageError.h b/ios/Pods/SDWebImage/SDWebImage/Core/SDWebImageError.h index e935ac97..dd84efa7 100644 --- a/ios/Pods/SDWebImage/SDWebImage/Core/SDWebImageError.h +++ b/ios/Pods/SDWebImage/SDWebImage/Core/SDWebImageError.h @@ -19,6 +19,7 @@ typedef NS_ERROR_ENUM(SDWebImageErrorDomain, SDWebImageError) { SDWebImageErrorInvalidURL = 1000, // The URL is invalid, such as nil URL or corrupted URL SDWebImageErrorBadImageData = 1001, // The image data can not be decoded to image, or the image data is empty SDWebImageErrorCacheNotModified = 1002, // The remote location specify that the cached image is not modified, such as the HTTP response 304 code. It's useful for `SDWebImageRefreshCached` + SDWebImageErrorBlackListed = 1003, // The URL is blacklisted because of unrecoverable failsure marked by downloader (such as 404), you can use `.retryFailed` option to avoid this SDWebImageErrorInvalidDownloadOperation = 2000, // The image download operation is invalid, such as nil operation or unexpected error occur when operation initialized SDWebImageErrorInvalidDownloadStatusCode = 2001, // The image download response a invalid status code. You can check the status code in error's userInfo under `SDWebImageErrorDownloadStatusCodeKey` SDWebImageErrorCancelled = 2002, // The image loading operation is cancelled before finished, during either async disk cache query, or waiting before actual network request. For actual network request error, check `NSURLErrorDomain` error domain and code. diff --git a/ios/Pods/SDWebImage/SDWebImage/Core/SDWebImageManager.h b/ios/Pods/SDWebImage/SDWebImage/Core/SDWebImageManager.h index c7e52ca9..36c3e4a5 100644 --- a/ios/Pods/SDWebImage/SDWebImage/Core/SDWebImageManager.h +++ b/ios/Pods/SDWebImage/SDWebImage/Core/SDWebImageManager.h @@ -261,6 +261,17 @@ SDWebImageManager *manager = [SDWebImageManager sharedManager]; */ - (void)cancelAll; +/** + * Remove the specify URL from failed black list. + * @param url The failed URL. + */ +- (void)removeFailedURL:(nonnull NSURL *)url; + +/** + * Remove all the URL from failed black list. + */ +- (void)removeAllFailedURLs; + /** * Return the cache key for a given URL, does not considerate transformer or thumbnail. * @note This method does not have context option, only use the url and manager level cacheKeyFilter to generate the cache key. diff --git a/ios/Pods/SDWebImage/SDWebImage/Core/SDWebImageManager.m b/ios/Pods/SDWebImage/SDWebImage/Core/SDWebImageManager.m index 2adf2b64..1f2bcdcc 100644 --- a/ios/Pods/SDWebImage/SDWebImage/Core/SDWebImageManager.m +++ b/ios/Pods/SDWebImage/SDWebImage/Core/SDWebImageManager.m @@ -194,7 +194,9 @@ static id _defaultImageLoader; } if (url.absoluteString.length == 0 || (!(options & SDWebImageRetryFailed) && isFailedUrl)) { - [self callCompletionBlockForOperation:operation completion:completedBlock error:[NSError errorWithDomain:SDWebImageErrorDomain code:SDWebImageErrorInvalidURL userInfo:@{NSLocalizedDescriptionKey : @"Image url is nil"}] url:url]; + NSString *description = isFailedUrl ? @"Image url is blacklisted" : @"Image url is nil"; + NSInteger code = isFailedUrl ? SDWebImageErrorBlackListed : SDWebImageErrorInvalidURL; + [self callCompletionBlockForOperation:operation completion:completedBlock error:[NSError errorWithDomain:SDWebImageErrorDomain code:code userInfo:@{NSLocalizedDescriptionKey : description}] url:url]; return operation; } @@ -226,9 +228,24 @@ static id _defaultImageLoader; return isRunning; } +- (void)removeFailedURL:(NSURL *)url { + if (!url) { + return; + } + SD_LOCK(self.failedURLsLock); + [self.failedURLs removeObject:url]; + SD_UNLOCK(self.failedURLsLock); +} + +- (void)removeAllFailedURLs { + SD_LOCK(self.failedURLsLock); + [self.failedURLs removeAllObjects]; + SD_UNLOCK(self.failedURLsLock); +} + #pragma mark - Private -// Query cache process +// Query normal cache process - (void)callCacheProcessForOperation:(nonnull SDWebImageCombinedOperation *)operation url:(nonnull NSURL *)url options:(SDWebImageOptions)options @@ -242,13 +259,15 @@ static id _defaultImageLoader; } else { imageCache = self.imageCache; } - // Check whether we should query cache - BOOL shouldQueryCache = !SD_OPTIONS_CONTAINS(options, SDWebImageFromLoaderOnly); + // Get the query cache type SDImageCacheType queryCacheType = SDImageCacheTypeAll; if (context[SDWebImageContextQueryCacheType]) { queryCacheType = [context[SDWebImageContextQueryCacheType] integerValue]; } + + // Check whether we should query cache + BOOL shouldQueryCache = !SD_OPTIONS_CONTAINS(options, SDWebImageFromLoaderOnly); if (shouldQueryCache) { NSString *key = [self cacheKeyForURL:url context:context]; @weakify(operation); @@ -259,7 +278,12 @@ static id _defaultImageLoader; [self callCompletionBlockForOperation:operation completion:completedBlock error:[NSError errorWithDomain:SDWebImageErrorDomain code:SDWebImageErrorCancelled userInfo:@{NSLocalizedDescriptionKey : @"Operation cancelled by user during querying the cache"}] url:url]; [self safelyRemoveOperationFromRunning:operation]; return; + } else if (context[SDWebImageContextImageTransformer] && !cachedImage) { + // Have a chance to quary original cache instead of downloading + [self callOriginalCacheProcessForOperation:operation url:url options:options context:context progress:progressBlock completed:completedBlock]; + return; } + // Continue download process [self callDownloadProcessForOperation:operation url:url options:options context:context cachedImage:cachedImage cachedData:cachedData cacheType:cacheType progress:progressBlock completed:completedBlock]; }]; @@ -269,6 +293,69 @@ static id _defaultImageLoader; } } +// Query original cache process +- (void)callOriginalCacheProcessForOperation:(nonnull SDWebImageCombinedOperation *)operation + url:(nonnull NSURL *)url + options:(SDWebImageOptions)options + context:(nullable SDWebImageContext *)context + progress:(nullable SDImageLoaderProgressBlock)progressBlock + completed:(nullable SDInternalCompletionBlock)completedBlock { + // Grab the image cache to use + id imageCache; + if ([context[SDWebImageContextImageCache] conformsToProtocol:@protocol(SDImageCache)]) { + imageCache = context[SDWebImageContextImageCache]; + } else { + imageCache = self.imageCache; + } + + // Get the original query cache type + SDImageCacheType originalQueryCacheType = SDImageCacheTypeNone; + if (context[SDWebImageContextOriginalQueryCacheType]) { + originalQueryCacheType = [context[SDWebImageContextOriginalQueryCacheType] integerValue]; + } + + // Check whether we should query original cache + BOOL shouldQueryOriginalCache = (originalQueryCacheType != SDImageCacheTypeNone); + if (shouldQueryOriginalCache) { + // Change originContext to mutable + SDWebImageMutableContext * __block originContext; + if (context) { + originContext = [context mutableCopy]; + } else { + originContext = [NSMutableDictionary dictionary]; + } + + // Disable transformer for cache key generation + id transformer = originContext[SDWebImageContextImageTransformer]; + originContext[SDWebImageContextImageTransformer] = [NSNull null]; + + NSString *key = [self cacheKeyForURL:url context:originContext]; + @weakify(operation); + operation.cacheOperation = [imageCache queryImageForKey:key options:options context:context cacheType:originalQueryCacheType completion:^(UIImage * _Nullable cachedImage, NSData * _Nullable cachedData, SDImageCacheType cacheType) { + @strongify(operation); + if (!operation || operation.isCancelled) { + // Image combined operation cancelled by user + [self callCompletionBlockForOperation:operation completion:completedBlock error:[NSError errorWithDomain:SDWebImageErrorDomain code:SDWebImageErrorCancelled userInfo:@{NSLocalizedDescriptionKey : @"Operation cancelled by user during querying the cache"}] url:url]; + [self safelyRemoveOperationFromRunning:operation]; + return; + } + + // Add original transformer + if (transformer) { + originContext[SDWebImageContextImageTransformer] = transformer; + } + + // Use the store cache process instead of downloading, and ignore .refreshCached option for now + [self callStoreCacheProcessForOperation:operation url:url options:options context:context downloadedImage:cachedImage downloadedData:cachedData finished:YES progress:progressBlock completed:completedBlock]; + + [self safelyRemoveOperationFromRunning:operation]; + }]; + } else { + // Continue download process + [self callDownloadProcessForOperation:operation url:url options:options context:context cachedImage:nil cachedData:nil cacheType:originalQueryCacheType progress:progressBlock completed:completedBlock]; + } +} + // Download process - (void)callDownloadProcessForOperation:(nonnull SDWebImageCombinedOperation *)operation url:(nonnull NSURL *)url @@ -286,6 +373,7 @@ static id _defaultImageLoader; } else { imageLoader = self.imageLoader; } + // Check whether we should download image from network BOOL shouldDownload = !SD_OPTIONS_CONTAINS(options, SDWebImageFromCacheOnly); shouldDownload &= (!cachedImage || options & SDWebImageRefreshCached); diff --git a/ios/Pods/SDWebImage/SDWebImage/Core/SDWebImageTransition.h b/ios/Pods/SDWebImage/SDWebImage/Core/SDWebImageTransition.h index ea52b313..5e7a5e04 100644 --- a/ios/Pods/SDWebImage/SDWebImage/Core/SDWebImageTransition.h +++ b/ios/Pods/SDWebImage/SDWebImage/Core/SDWebImageTransition.h @@ -15,7 +15,21 @@ typedef UIViewAnimationOptions SDWebImageAnimationOptions; #else typedef NS_OPTIONS(NSUInteger, SDWebImageAnimationOptions) { - SDWebImageAnimationOptionAllowsImplicitAnimation = 1 << 0, // specify `allowsImplicitAnimation` for the `NSAnimationContext` + SDWebImageAnimationOptionAllowsImplicitAnimation = 1 << 0, // specify `allowsImplicitAnimation` for the `NSAnimationContext` + + SDWebImageAnimationOptionCurveEaseInOut = 0 << 16, // default + SDWebImageAnimationOptionCurveEaseIn = 1 << 16, + SDWebImageAnimationOptionCurveEaseOut = 2 << 16, + SDWebImageAnimationOptionCurveLinear = 3 << 16, + + SDWebImageAnimationOptionTransitionNone = 0 << 20, // default + SDWebImageAnimationOptionTransitionFlipFromLeft = 1 << 20, + SDWebImageAnimationOptionTransitionFlipFromRight = 2 << 20, + SDWebImageAnimationOptionTransitionCurlUp = 3 << 20, + SDWebImageAnimationOptionTransitionCurlDown = 4 << 20, + SDWebImageAnimationOptionTransitionCrossDissolve = 5 << 20, + SDWebImageAnimationOptionTransitionFlipFromTop = 6 << 20, + SDWebImageAnimationOptionTransitionFlipFromBottom = 7 << 20, }; #endif @@ -42,7 +56,7 @@ typedef void (^SDWebImageTransitionCompletionBlock)(BOOL finished); /** The timing function used for all animations within this transition animation (macOS). */ -@property (nonatomic, strong, nullable) CAMediaTimingFunction *timingFunction API_UNAVAILABLE(ios, tvos, watchos); +@property (nonatomic, strong, nullable) CAMediaTimingFunction *timingFunction API_UNAVAILABLE(ios, tvos, watchos) API_DEPRECATED("Use SDWebImageAnimationOptions instead, or grab NSAnimationContext.currentContext and modify the timingFunction", macos(10.10, 10.10)); /** A mask of options indicating how you want to perform the animations. */ diff --git a/ios/Pods/SDWebImage/SDWebImage/Core/SDWebImageTransition.m b/ios/Pods/SDWebImage/SDWebImage/Core/SDWebImageTransition.m index b04a4c34..b7e379e1 100644 --- a/ios/Pods/SDWebImage/SDWebImage/Core/SDWebImageTransition.m +++ b/ios/Pods/SDWebImage/SDWebImage/Core/SDWebImageTransition.m @@ -11,7 +11,62 @@ #if SD_UIKIT || SD_MAC #if SD_MAC -#import +#import "SDWebImageTransitionInternal.h" +#import "SDInternalMacros.h" + +CAMediaTimingFunction * SDTimingFunctionFromAnimationOptions(SDWebImageAnimationOptions options) { + if (SD_OPTIONS_CONTAINS(SDWebImageAnimationOptionCurveLinear, options)) { + return [CAMediaTimingFunction functionWithName:kCAMediaTimingFunctionLinear]; + } else if (SD_OPTIONS_CONTAINS(SDWebImageAnimationOptionCurveEaseIn, options)) { + return [CAMediaTimingFunction functionWithName:kCAMediaTimingFunctionEaseIn]; + } else if (SD_OPTIONS_CONTAINS(SDWebImageAnimationOptionCurveEaseOut, options)) { + return [CAMediaTimingFunction functionWithName:kCAMediaTimingFunctionEaseOut]; + } else if (SD_OPTIONS_CONTAINS(SDWebImageAnimationOptionCurveEaseInOut, options)) { + return [CAMediaTimingFunction functionWithName:kCAMediaTimingFunctionEaseInEaseOut]; + } else { + return [CAMediaTimingFunction functionWithName:kCAMediaTimingFunctionDefault]; + } +} + +CATransition * SDTransitionFromAnimationOptions(SDWebImageAnimationOptions options) { + if (SD_OPTIONS_CONTAINS(options, SDWebImageAnimationOptionTransitionCrossDissolve)) { + CATransition *trans = [CATransition animation]; + trans.type = kCATransitionFade; + return trans; + } else if (SD_OPTIONS_CONTAINS(options, SDWebImageAnimationOptionTransitionFlipFromLeft)) { + CATransition *trans = [CATransition animation]; + trans.type = kCATransitionPush; + trans.subtype = kCATransitionFromLeft; + return trans; + } else if (SD_OPTIONS_CONTAINS(options, SDWebImageAnimationOptionTransitionFlipFromRight)) { + CATransition *trans = [CATransition animation]; + trans.type = kCATransitionPush; + trans.subtype = kCATransitionFromRight; + return trans; + } else if (SD_OPTIONS_CONTAINS(options, SDWebImageAnimationOptionTransitionFlipFromTop)) { + CATransition *trans = [CATransition animation]; + trans.type = kCATransitionPush; + trans.subtype = kCATransitionFromTop; + return trans; + } else if (SD_OPTIONS_CONTAINS(options, SDWebImageAnimationOptionTransitionFlipFromBottom)) { + CATransition *trans = [CATransition animation]; + trans.type = kCATransitionPush; + trans.subtype = kCATransitionFromBottom; + return trans; + } else if (SD_OPTIONS_CONTAINS(options, SDWebImageAnimationOptionTransitionCurlUp)) { + CATransition *trans = [CATransition animation]; + trans.type = kCATransitionReveal; + trans.subtype = kCATransitionFromTop; + return trans; + } else if (SD_OPTIONS_CONTAINS(options, SDWebImageAnimationOptionTransitionCurlDown)) { + CATransition *trans = [CATransition animation]; + trans.type = kCATransitionReveal; + trans.subtype = kCATransitionFromBottom; + return trans; + } else { + return nil; + } +} #endif @implementation SDWebImageTransition @@ -33,11 +88,7 @@ #if SD_UIKIT transition.animationOptions = UIViewAnimationOptionTransitionCrossDissolve | UIViewAnimationOptionAllowUserInteraction; #else - transition.animations = ^(__kindof NSView * _Nonnull view, NSImage * _Nullable image) { - CATransition *trans = [CATransition animation]; - trans.type = kCATransitionFade; - [view.layer addAnimation:trans forKey:kCATransition]; - }; + transition.animationOptions = SDWebImageAnimationOptionTransitionCrossDissolve; #endif return transition; } @@ -47,12 +98,7 @@ #if SD_UIKIT transition.animationOptions = UIViewAnimationOptionTransitionFlipFromLeft | UIViewAnimationOptionAllowUserInteraction; #else - transition.animations = ^(__kindof NSView * _Nonnull view, NSImage * _Nullable image) { - CATransition *trans = [CATransition animation]; - trans.type = kCATransitionPush; - trans.subtype = kCATransitionFromLeft; - [view.layer addAnimation:trans forKey:kCATransition]; - }; + transition.animationOptions = SDWebImageAnimationOptionTransitionFlipFromLeft; #endif return transition; } @@ -62,12 +108,7 @@ #if SD_UIKIT transition.animationOptions = UIViewAnimationOptionTransitionFlipFromRight | UIViewAnimationOptionAllowUserInteraction; #else - transition.animations = ^(__kindof NSView * _Nonnull view, NSImage * _Nullable image) { - CATransition *trans = [CATransition animation]; - trans.type = kCATransitionPush; - trans.subtype = kCATransitionFromRight; - [view.layer addAnimation:trans forKey:kCATransition]; - }; + transition.animationOptions = SDWebImageAnimationOptionTransitionFlipFromRight; #endif return transition; } @@ -77,12 +118,7 @@ #if SD_UIKIT transition.animationOptions = UIViewAnimationOptionTransitionFlipFromTop | UIViewAnimationOptionAllowUserInteraction; #else - transition.animations = ^(__kindof NSView * _Nonnull view, NSImage * _Nullable image) { - CATransition *trans = [CATransition animation]; - trans.type = kCATransitionPush; - trans.subtype = kCATransitionFromTop; - [view.layer addAnimation:trans forKey:kCATransition]; - }; + transition.animationOptions = SDWebImageAnimationOptionTransitionFlipFromTop; #endif return transition; } @@ -92,12 +128,7 @@ #if SD_UIKIT transition.animationOptions = UIViewAnimationOptionTransitionFlipFromBottom | UIViewAnimationOptionAllowUserInteraction; #else - transition.animations = ^(__kindof NSView * _Nonnull view, NSImage * _Nullable image) { - CATransition *trans = [CATransition animation]; - trans.type = kCATransitionPush; - trans.subtype = kCATransitionFromBottom; - [view.layer addAnimation:trans forKey:kCATransition]; - }; + transition.animationOptions = SDWebImageAnimationOptionTransitionFlipFromBottom; #endif return transition; } @@ -107,12 +138,7 @@ #if SD_UIKIT transition.animationOptions = UIViewAnimationOptionTransitionCurlUp | UIViewAnimationOptionAllowUserInteraction; #else - transition.animations = ^(__kindof NSView * _Nonnull view, NSImage * _Nullable image) { - CATransition *trans = [CATransition animation]; - trans.type = kCATransitionReveal; - trans.subtype = kCATransitionFromTop; - [view.layer addAnimation:trans forKey:kCATransition]; - }; + transition.animationOptions = SDWebImageAnimationOptionTransitionCurlUp; #endif return transition; } @@ -122,12 +148,7 @@ #if SD_UIKIT transition.animationOptions = UIViewAnimationOptionTransitionCurlDown | UIViewAnimationOptionAllowUserInteraction; #else - transition.animations = ^(__kindof NSView * _Nonnull view, NSImage * _Nullable image) { - CATransition *trans = [CATransition animation]; - trans.type = kCATransitionReveal; - trans.subtype = kCATransitionFromBottom; - [view.layer addAnimation:trans forKey:kCATransition]; - }; + transition.animationOptions = SDWebImageAnimationOptionTransitionCurlDown; #endif return transition; } diff --git a/ios/Pods/SDWebImage/SDWebImage/Core/UIView+WebCache.m b/ios/Pods/SDWebImage/SDWebImage/Core/UIView+WebCache.m index 5e9f030a..ca362fbf 100644 --- a/ios/Pods/SDWebImage/SDWebImage/Core/UIView+WebCache.m +++ b/ios/Pods/SDWebImage/SDWebImage/Core/UIView+WebCache.m @@ -11,6 +11,7 @@ #import "UIView+WebCacheOperation.h" #import "SDWebImageError.h" #import "SDInternalMacros.h" +#import "SDWebImageTransitionInternal.h" const int64_t SDWebImageProgressUnitCountUnknown = 1LL; @@ -52,10 +53,19 @@ const int64_t SDWebImageProgressUnitCountUnknown = 1LL; setImageBlock:(nullable SDSetImageBlock)setImageBlock progress:(nullable SDImageLoaderProgressBlock)progressBlock completed:(nullable SDInternalCompletionBlock)completedBlock { - context = [context copy]; // copy to avoid mutable object + if (context) { + // copy to avoid mutable object + context = [context copy]; + } else { + context = [NSDictionary dictionary]; + } NSString *validOperationKey = context[SDWebImageContextSetImageOperationKey]; if (!validOperationKey) { + // pass through the operation key to downstream, which can used for tracing operation or image view class validOperationKey = NSStringFromClass([self class]); + SDWebImageMutableContext *mutableContext = [context mutableCopy]; + mutableContext[SDWebImageContextSetImageOperationKey] = validOperationKey; + context = [mutableContext copy]; } self.sd_latestOperationKey = validOperationKey; [self sd_cancelImageLoadOperationWithKey:validOperationKey]; @@ -83,6 +93,11 @@ const int64_t SDWebImageProgressUnitCountUnknown = 1LL; SDWebImageManager *manager = context[SDWebImageContextCustomManager]; if (!manager) { manager = [SDWebImageManager sharedManager]; + } else { + // remove this manager to avoid retain cycle (manger -> loader -> operation -> context -> manager) + SDWebImageMutableContext *mutableContext = [context mutableCopy]; + mutableContext[SDWebImageContextCustomManager] = nil; + context = [mutableContext copy]; } SDImageLoaderProgressBlock combinedProgressBlock = ^(NSInteger receivedSize, NSInteger expectedSize, NSURL * _Nullable targetURL) { @@ -260,11 +275,22 @@ const int64_t SDWebImageProgressUnitCountUnknown = 1LL; } completionHandler:^{ [NSAnimationContext runAnimationGroup:^(NSAnimationContext * _Nonnull context) { context.duration = transition.duration; - context.timingFunction = transition.timingFunction; + #pragma clang diagnostic push + #pragma clang diagnostic ignored "-Wdeprecated-declarations" + CAMediaTimingFunction *timingFunction = transition.timingFunction; + #pragma clang diagnostic pop + if (!timingFunction) { + timingFunction = SDTimingFunctionFromAnimationOptions(transition.animationOptions); + } + context.timingFunction = timingFunction; context.allowsImplicitAnimation = SD_OPTIONS_CONTAINS(transition.animationOptions, SDWebImageAnimationOptionAllowsImplicitAnimation); if (finalSetImageBlock && !transition.avoidAutoSetImage) { finalSetImageBlock(image, imageData, cacheType, imageURL); } + CATransition *trans = SDTransitionFromAnimationOptions(transition.animationOptions); + if (trans) { + [view.layer addAnimation:trans forKey:kCATransition]; + } if (transition.animations) { transition.animations(view, image); } diff --git a/ios/Pods/SDWebImage/SDWebImage/Private/SDWebImageTransitionInternal.h b/ios/Pods/SDWebImage/SDWebImage/Private/SDWebImageTransitionInternal.h new file mode 100644 index 00000000..1b70649a --- /dev/null +++ b/ios/Pods/SDWebImage/SDWebImage/Private/SDWebImageTransitionInternal.h @@ -0,0 +1,19 @@ +/* +* This file is part of the SDWebImage package. +* (c) Olivier Poitrey +* +* For the full copyright and license information, please view the LICENSE +* file that was distributed with this source code. +*/ + +#import "SDWebImageCompat.h" + +#if SD_MAC + +#import + +/// Helper method for Core Animation transition +FOUNDATION_EXPORT CAMediaTimingFunction * _Nullable SDTimingFunctionFromAnimationOptions(SDWebImageAnimationOptions options); +FOUNDATION_EXPORT CATransition * _Nullable SDTransitionFromAnimationOptions(SDWebImageAnimationOptions options); + +#endif diff --git a/ios/Pods/SDWebImage/WebImage/SDWebImage.h b/ios/Pods/SDWebImage/WebImage/SDWebImage.h index eeadf43f..929f1b96 100644 --- a/ios/Pods/SDWebImage/WebImage/SDWebImage.h +++ b/ios/Pods/SDWebImage/WebImage/SDWebImage.h @@ -15,7 +15,7 @@ FOUNDATION_EXPORT double SDWebImageVersionNumber; //! Project version string for SDWebImage. FOUNDATION_EXPORT const unsigned char SDWebImageVersionString[]; -// In this header, you should import all the public headers of your framework using statements like #import +// In this header, you should import all the public headers of your framework using statements like #import #import #import diff --git a/ios/Pods/Target Support Files/RNFastImage/RNFastImage.xcconfig b/ios/Pods/Target Support Files/RNFastImage/RNFastImage.xcconfig index 75601136..8bb7f24e 100644 --- a/ios/Pods/Target Support Files/RNFastImage/RNFastImage.xcconfig +++ b/ios/Pods/Target Support Files/RNFastImage/RNFastImage.xcconfig @@ -6,7 +6,7 @@ OTHER_CFLAGS = $(inherited) -fmodule-map-file="${PODS_ROOT}/Headers/Public/yoga/ 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-fast-image +PODS_TARGET_SRCROOT = ${PODS_ROOT}/../../node_modules/@rocket.chat/react-native-fast-image 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 fd54dd48..137c4dc5 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 409b675d..4e5d4856 100644 --- a/package.json +++ b/package.json @@ -34,6 +34,7 @@ "@react-navigation/drawer": "5.8.1", "@react-navigation/native": "5.5.0", "@react-navigation/stack": "^5.3.9", + "@rocket.chat/react-native-fast-image": "^8.1.5", "@rocket.chat/sdk": "djorkaeffalexandre/Rocket.Chat.js.SDK#test.fix-ddp", "@rocket.chat/ui-kit": "0.8.0", "base-64": "0.1.0", @@ -70,7 +71,6 @@ "react-native-document-picker": "3.3.3", "react-native-easy-grid": "^0.2.2", "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-image-crop-picker": "RocketChat/react-native-image-crop-picker", diff --git a/yarn.lock b/yarn.lock index 80d86eaa..c763fe63 100644 --- a/yarn.lock +++ b/yarn.lock @@ -1825,6 +1825,11 @@ resolved "https://registry.yarnpkg.com/@redux-saga/types/-/types-1.1.0.tgz#0e81ce56b4883b4b2a3001ebe1ab298b84237204" integrity sha512-afmTuJrylUU/0OtqzaRkbyYFFNgCF73Bvel/sw90pvGrWIZ+vyoIJqA6eMSoA6+nb443kTmulmBtC9NerXboNg== +"@rocket.chat/react-native-fast-image@^8.1.5": + version "8.1.5" + resolved "https://registry.yarnpkg.com/@rocket.chat/react-native-fast-image/-/react-native-fast-image-8.1.5.tgz#325d80ebb351fb024436093b3e2add280696aba3" + integrity sha512-ZjSt7NXiCkJ9KQr4b/b+mYgiwDAIGHfHdChgEU020C9sBbhSk6VxslqnfdZoAjxRW7doWMbhWkoYMjx2TnsGRw== + "@rocket.chat/sdk@djorkaeffalexandre/Rocket.Chat.js.SDK#test.fix-ddp": version "1.0.0-dj.15" resolved "https://codeload.github.com/djorkaeffalexandre/Rocket.Chat.js.SDK/tar.gz/216de62f7e52dd4a9f73d7989d6943ced550a92a" @@ -11808,11 +11813,6 @@ react-native-easy-toast@^1.2.0: dependencies: prop-types "^15.5.10" -react-native-fast-image@8.1.5: - version "8.1.5" - resolved "https://registry.yarnpkg.com/react-native-fast-image/-/react-native-fast-image-8.1.5.tgz#0a6404c988dad68c98d26f91155d0a5293ba2ea5" - integrity sha512-DoAWGLeQ2hbllummrpXH9B38OgM0TFmNYCF34F90/hdHZirqUtYHzF4QDdb/NV7ebSijHmM3mpkzct8PXtcYyg== - react-native-firebase@5.6.0: version "5.6.0" resolved "https://registry.yarnpkg.com/react-native-firebase/-/react-native-firebase-5.6.0.tgz#6f6123f53cb73477915dd55c55f3e1de91db38d2"