From a937e6a6ac90e84e4f35fbcfb5518b877e50561e Mon Sep 17 00:00:00 2001 From: Djorkaeff Alexandre Date: Fri, 8 May 2020 09:55:26 -0300 Subject: [PATCH] [IMPROVEMENT] Keep screen awake while recording/playing some audio (#2089) * [IMPROVEMENT] Keep screen awake while recording/playing some audio * [FIX] Add expo-keep-awake mock --- __mocks__/expo-keep-awake.js | 4 + .../generated/BasePackageList.java | 1 + app/containers/MessageBox/Recording.js | 5 + app/containers/message/Audio.js | 10 + ios/Podfile.lock | 12 +- .../Headers/Private/EXKeepAwake/EXKeepAwake.h | 1 + .../SocketRocket/NSRunLoop+SRWebSocket.h | 1 - .../NSRunLoop+SRWebSocketPrivate.h | 1 - .../SocketRocket/NSURLRequest+SRWebSocket.h | 1 - .../NSURLRequest+SRWebSocketPrivate.h | 1 - .../Private/SocketRocket/SRConstants.h | 1 - .../SocketRocket/SRDelegateController.h | 1 - .../Headers/Private/SocketRocket/SRError.h | 1 - .../SocketRocket/SRHTTPConnectMessage.h | 1 - .../Headers/Private/SocketRocket/SRHash.h | 1 - .../Private/SocketRocket/SRIOConsumer.h | 1 - .../Private/SocketRocket/SRIOConsumerPool.h | 1 - ios/Pods/Headers/Private/SocketRocket/SRLog.h | 1 - .../Headers/Private/SocketRocket/SRMutex.h | 1 - .../SocketRocket/SRPinningSecurityPolicy.h | 1 - .../Private/SocketRocket/SRProxyConnect.h | 1 - .../Headers/Private/SocketRocket/SRRandom.h | 1 - .../Private/SocketRocket/SRRunLoopThread.h | 1 - .../Private/SocketRocket/SRSIMDHelpers.h | 1 - .../Private/SocketRocket/SRSecurityPolicy.h | 1 - .../Private/SocketRocket/SRURLUtilities.h | 1 - .../Private/SocketRocket/SRWebSocket.h | 1 - .../Private/SocketRocket/SocketRocket.h | 1 - .../Headers/Public/EXKeepAwake/EXKeepAwake.h | 1 + .../SocketRocket/NSRunLoop+SRWebSocket.h | 1 - .../SocketRocket/NSURLRequest+SRWebSocket.h | 1 - .../Public/SocketRocket/SRSecurityPolicy.h | 1 - .../Headers/Public/SocketRocket/SRWebSocket.h | 1 - .../Public/SocketRocket/SocketRocket.h | 1 - .../Local Podspecs/EXKeepAwake.podspec.json | 23 + ios/Pods/Manifest.lock | 12 +- ios/Pods/Pods.xcodeproj/project.pbxproj | 16867 ++++++++-------- .../EXKeepAwake/EXKeepAwake-dummy.m | 5 + .../EXKeepAwake-prefix.pch} | 0 .../EXKeepAwake.xcconfig} | 7 +- ...ods-RocketChatRN-acknowledgements.markdown | 33 - .../Pods-RocketChatRN-acknowledgements.plist | 39 - .../Pods-RocketChatRN.debug.xcconfig | 6 +- .../Pods-RocketChatRN.release.xcconfig | 6 +- ...hareRocketChatRN-acknowledgements.markdown | 33 - ...s-ShareRocketChatRN-acknowledgements.plist | 39 - .../Pods-ShareRocketChatRN.debug.xcconfig | 6 +- .../Pods-ShareRocketChatRN.release.xcconfig | 6 +- .../SocketRocket/SocketRocket-dummy.m | 5 - package.json | 1 + yarn.lock | 5 + 51 files changed, 8408 insertions(+), 8746 deletions(-) create mode 100644 __mocks__/expo-keep-awake.js create mode 120000 ios/Pods/Headers/Private/EXKeepAwake/EXKeepAwake.h delete mode 120000 ios/Pods/Headers/Private/SocketRocket/NSRunLoop+SRWebSocket.h delete mode 120000 ios/Pods/Headers/Private/SocketRocket/NSRunLoop+SRWebSocketPrivate.h delete mode 120000 ios/Pods/Headers/Private/SocketRocket/NSURLRequest+SRWebSocket.h delete mode 120000 ios/Pods/Headers/Private/SocketRocket/NSURLRequest+SRWebSocketPrivate.h delete mode 120000 ios/Pods/Headers/Private/SocketRocket/SRConstants.h delete mode 120000 ios/Pods/Headers/Private/SocketRocket/SRDelegateController.h delete mode 120000 ios/Pods/Headers/Private/SocketRocket/SRError.h delete mode 120000 ios/Pods/Headers/Private/SocketRocket/SRHTTPConnectMessage.h delete mode 120000 ios/Pods/Headers/Private/SocketRocket/SRHash.h delete mode 120000 ios/Pods/Headers/Private/SocketRocket/SRIOConsumer.h delete mode 120000 ios/Pods/Headers/Private/SocketRocket/SRIOConsumerPool.h delete mode 120000 ios/Pods/Headers/Private/SocketRocket/SRLog.h delete mode 120000 ios/Pods/Headers/Private/SocketRocket/SRMutex.h delete mode 120000 ios/Pods/Headers/Private/SocketRocket/SRPinningSecurityPolicy.h delete mode 120000 ios/Pods/Headers/Private/SocketRocket/SRProxyConnect.h delete mode 120000 ios/Pods/Headers/Private/SocketRocket/SRRandom.h delete mode 120000 ios/Pods/Headers/Private/SocketRocket/SRRunLoopThread.h delete mode 120000 ios/Pods/Headers/Private/SocketRocket/SRSIMDHelpers.h delete mode 120000 ios/Pods/Headers/Private/SocketRocket/SRSecurityPolicy.h delete mode 120000 ios/Pods/Headers/Private/SocketRocket/SRURLUtilities.h delete mode 120000 ios/Pods/Headers/Private/SocketRocket/SRWebSocket.h delete mode 120000 ios/Pods/Headers/Private/SocketRocket/SocketRocket.h create mode 120000 ios/Pods/Headers/Public/EXKeepAwake/EXKeepAwake.h delete mode 120000 ios/Pods/Headers/Public/SocketRocket/NSRunLoop+SRWebSocket.h delete mode 120000 ios/Pods/Headers/Public/SocketRocket/NSURLRequest+SRWebSocket.h delete mode 120000 ios/Pods/Headers/Public/SocketRocket/SRSecurityPolicy.h delete mode 120000 ios/Pods/Headers/Public/SocketRocket/SRWebSocket.h delete mode 120000 ios/Pods/Headers/Public/SocketRocket/SocketRocket.h create mode 100644 ios/Pods/Local Podspecs/EXKeepAwake.podspec.json create mode 100644 ios/Pods/Target Support Files/EXKeepAwake/EXKeepAwake-dummy.m rename ios/Pods/Target Support Files/{SocketRocket/SocketRocket-prefix.pch => EXKeepAwake/EXKeepAwake-prefix.pch} (100%) rename ios/Pods/Target Support Files/{SocketRocket/SocketRocket.xcconfig => EXKeepAwake/EXKeepAwake.xcconfig} (57%) delete mode 100644 ios/Pods/Target Support Files/SocketRocket/SocketRocket-dummy.m diff --git a/__mocks__/expo-keep-awake.js b/__mocks__/expo-keep-awake.js new file mode 100644 index 000000000..947b94723 --- /dev/null +++ b/__mocks__/expo-keep-awake.js @@ -0,0 +1,4 @@ +export default { + activateKeepAwake: () => '', + deactivateKeepAwake: () => '' +}; diff --git a/android/app/src/main/java/chat/rocket/reactnative/generated/BasePackageList.java b/android/app/src/main/java/chat/rocket/reactnative/generated/BasePackageList.java index 013db47e9..79b4ad22e 100644 --- a/android/app/src/main/java/chat/rocket/reactnative/generated/BasePackageList.java +++ b/android/app/src/main/java/chat/rocket/reactnative/generated/BasePackageList.java @@ -11,6 +11,7 @@ public class BasePackageList { new expo.modules.constants.ConstantsPackage(), new expo.modules.filesystem.FileSystemPackage(), new expo.modules.haptics.HapticsPackage(), + new expo.modules.keepawake.KeepAwakePackage(), new expo.modules.permissions.PermissionsPackage(), new expo.modules.webbrowser.WebBrowserPackage() ); diff --git a/app/containers/MessageBox/Recording.js b/app/containers/MessageBox/Recording.js index 8c1e54067..c471f2d94 100644 --- a/app/containers/MessageBox/Recording.js +++ b/app/containers/MessageBox/Recording.js @@ -5,6 +5,7 @@ import { } from 'react-native'; import { AudioRecorder, AudioUtils } from 'react-native-audio'; import { BorderlessButton } from 'react-native-gesture-handler'; +import { activateKeepAwake, deactivateKeepAwake } from 'expo-keep-awake'; import RNFetchBlob from 'rn-fetch-blob'; import styles from './styles'; @@ -75,12 +76,16 @@ export default class extends React.PureComponent { } }; AudioRecorder.startRecording(); + + activateKeepAwake(); } componentWillUnmount() { if (this.recording) { this.cancelAudioMessage(); } + + deactivateKeepAwake(); } finishRecording = (didSucceed, filePath, size) => { diff --git a/app/containers/message/Audio.js b/app/containers/message/Audio.js index a16ddb099..630e4703b 100644 --- a/app/containers/message/Audio.js +++ b/app/containers/message/Audio.js @@ -7,6 +7,7 @@ import { Audio } from 'expo-av'; import Slider from '@react-native-community/slider'; import moment from 'moment'; import equal from 'deep-equal'; +import { activateKeepAwake, deactivateKeepAwake } from 'expo-keep-awake'; import Touchable from './Touchable'; import Markdown from '../markdown'; @@ -157,6 +158,15 @@ class MessageAudio extends React.Component { return false; } + componentDidUpdate() { + const { paused } = this.state; + if (paused) { + deactivateKeepAwake(); + } else { + activateKeepAwake(); + } + } + async componentWillUnmount() { try { await this.sound.stopAsync(); diff --git a/ios/Podfile.lock b/ios/Podfile.lock index e3c060e42..6b5c50ef3 100644 --- a/ios/Podfile.lock +++ b/ios/Podfile.lock @@ -20,6 +20,8 @@ PODS: - UMFileSystemInterface - EXHaptics (6.0.0): - UMCore + - EXKeepAwake (8.1.0): + - UMCore - EXPermissions (6.0.0): - UMCore - UMPermissionsInterface @@ -403,7 +405,6 @@ PODS: - SDWebImageWebPCoder (0.2.5): - libwebp (~> 1.0) - SDWebImage/Core (~> 5.0) - - SocketRocket (0.5.1) - UMBarCodeScannerInterface (3.0.0) - UMCameraInterface (3.0.0) - UMConstantsInterface (3.0.0) @@ -429,6 +430,7 @@ DEPENDENCIES: - EXConstants (from `../node_modules/expo-constants/ios`) - EXFileSystem (from `../node_modules/expo-file-system/ios`) - EXHaptics (from `../node_modules/expo-haptics/ios`) + - EXKeepAwake (from `../node_modules/expo-keep-awake/ios`) - EXPermissions (from `../node_modules/expo-permissions/ios`) - EXWebBrowser (from `../node_modules/expo-web-browser/ios`) - FBLazyVector (from `../node_modules/react-native/Libraries/FBLazyVector`) @@ -487,7 +489,6 @@ DEPENDENCIES: - RNScreens (from `../node_modules/react-native-screens`) - RNUserDefaults (from `../node_modules/rn-user-defaults`) - RNVectorIcons (from `../node_modules/react-native-vector-icons`) - - SocketRocket (from `../node_modules/detox/ios_src/SocketRocket`) - UMBarCodeScannerInterface (from `../node_modules/unimodules-barcode-scanner-interface/ios`) - UMCameraInterface (from `../node_modules/unimodules-camera-interface/ios`) - UMConstantsInterface (from `../node_modules/unimodules-constants-interface/ios`) @@ -545,6 +546,9 @@ EXTERNAL SOURCES: EXHaptics: :path: !ruby/object:Pathname path: "../node_modules/expo-haptics/ios" + EXKeepAwake: + :path: !ruby/object:Pathname + path: "../node_modules/expo-keep-awake/ios" EXPermissions: :path: !ruby/object:Pathname path: "../node_modules/expo-permissions/ios" @@ -657,8 +661,6 @@ EXTERNAL SOURCES: :path: "../node_modules/rn-user-defaults" RNVectorIcons: :path: "../node_modules/react-native-vector-icons" - SocketRocket: - :path: "../node_modules/detox/ios_src/SocketRocket" UMBarCodeScannerInterface: :path: !ruby/object:Pathname path: "../node_modules/unimodules-barcode-scanner-interface/ios" @@ -713,6 +715,7 @@ SPEC CHECKSUMS: EXConstants: 5d81e84ca71b9a552529889cc798b4a04e9e22b3 EXFileSystem: 091907902fcec9f9182b656fdead41a82f30986a EXHaptics: f84c93d605e0905c47654e4a6e5dfbff78ed6906 + EXKeepAwake: d045bc2cf1ad5a04f0323cc7c894b95b414042e0 EXPermissions: 99e52dc3e5f8e55153f1958004f6df2a30a1f2f5 EXWebBrowser: def838b95aa9d396f9ce71ace4e614ee16e7ee30 Fabric: 706c8b8098fff96c33c0db69cbf81f9c551d0d74 @@ -786,7 +789,6 @@ SPEC CHECKSUMS: RSKImageCropper: a446db0e8444a036b34f3c43db01b2373baa4b2a SDWebImage: 4d5c027c935438f341ed33dbac53ff9f479922ca SDWebImageWebPCoder: 947093edd1349d820c40afbd9f42acb6cdecd987 - SocketRocket: dbb1554b8fc288ef8ef370d6285aeca7361be31e UMBarCodeScannerInterface: 84ea2d6b58ff0dc27ef9b68bab71286be18ee020 UMCameraInterface: 26b26005d1756a0d5f4f04f1e168e39ea9154535 UMConstantsInterface: 038bacb19de12b6fd328c589122c8dc977cccf61 diff --git a/ios/Pods/Headers/Private/EXKeepAwake/EXKeepAwake.h b/ios/Pods/Headers/Private/EXKeepAwake/EXKeepAwake.h new file mode 120000 index 000000000..9eeda1fc7 --- /dev/null +++ b/ios/Pods/Headers/Private/EXKeepAwake/EXKeepAwake.h @@ -0,0 +1 @@ +../../../../../node_modules/expo-keep-awake/ios/EXKeepAwake/EXKeepAwake.h \ No newline at end of file diff --git a/ios/Pods/Headers/Private/SocketRocket/NSRunLoop+SRWebSocket.h b/ios/Pods/Headers/Private/SocketRocket/NSRunLoop+SRWebSocket.h deleted file mode 120000 index 6dec42927..000000000 --- a/ios/Pods/Headers/Private/SocketRocket/NSRunLoop+SRWebSocket.h +++ /dev/null @@ -1 +0,0 @@ -../../../../../node_modules/detox/ios_src/SocketRocket/SocketRocket/NSRunLoop+SRWebSocket.h \ No newline at end of file diff --git a/ios/Pods/Headers/Private/SocketRocket/NSRunLoop+SRWebSocketPrivate.h b/ios/Pods/Headers/Private/SocketRocket/NSRunLoop+SRWebSocketPrivate.h deleted file mode 120000 index 0021c5cd8..000000000 --- a/ios/Pods/Headers/Private/SocketRocket/NSRunLoop+SRWebSocketPrivate.h +++ /dev/null @@ -1 +0,0 @@ -../../../../../node_modules/detox/ios_src/SocketRocket/SocketRocket/Internal/NSRunLoop+SRWebSocketPrivate.h \ No newline at end of file diff --git a/ios/Pods/Headers/Private/SocketRocket/NSURLRequest+SRWebSocket.h b/ios/Pods/Headers/Private/SocketRocket/NSURLRequest+SRWebSocket.h deleted file mode 120000 index eb3eaf591..000000000 --- a/ios/Pods/Headers/Private/SocketRocket/NSURLRequest+SRWebSocket.h +++ /dev/null @@ -1 +0,0 @@ -../../../../../node_modules/detox/ios_src/SocketRocket/SocketRocket/NSURLRequest+SRWebSocket.h \ No newline at end of file diff --git a/ios/Pods/Headers/Private/SocketRocket/NSURLRequest+SRWebSocketPrivate.h b/ios/Pods/Headers/Private/SocketRocket/NSURLRequest+SRWebSocketPrivate.h deleted file mode 120000 index 0179a85f6..000000000 --- a/ios/Pods/Headers/Private/SocketRocket/NSURLRequest+SRWebSocketPrivate.h +++ /dev/null @@ -1 +0,0 @@ -../../../../../node_modules/detox/ios_src/SocketRocket/SocketRocket/Internal/NSURLRequest+SRWebSocketPrivate.h \ No newline at end of file diff --git a/ios/Pods/Headers/Private/SocketRocket/SRConstants.h b/ios/Pods/Headers/Private/SocketRocket/SRConstants.h deleted file mode 120000 index c9972130d..000000000 --- a/ios/Pods/Headers/Private/SocketRocket/SRConstants.h +++ /dev/null @@ -1 +0,0 @@ -../../../../../node_modules/detox/ios_src/SocketRocket/SocketRocket/Internal/SRConstants.h \ No newline at end of file diff --git a/ios/Pods/Headers/Private/SocketRocket/SRDelegateController.h b/ios/Pods/Headers/Private/SocketRocket/SRDelegateController.h deleted file mode 120000 index 5e1a32105..000000000 --- a/ios/Pods/Headers/Private/SocketRocket/SRDelegateController.h +++ /dev/null @@ -1 +0,0 @@ -../../../../../node_modules/detox/ios_src/SocketRocket/SocketRocket/Internal/Delegate/SRDelegateController.h \ No newline at end of file diff --git a/ios/Pods/Headers/Private/SocketRocket/SRError.h b/ios/Pods/Headers/Private/SocketRocket/SRError.h deleted file mode 120000 index 073dc7562..000000000 --- a/ios/Pods/Headers/Private/SocketRocket/SRError.h +++ /dev/null @@ -1 +0,0 @@ -../../../../../node_modules/detox/ios_src/SocketRocket/SocketRocket/Internal/Utilities/SRError.h \ No newline at end of file diff --git a/ios/Pods/Headers/Private/SocketRocket/SRHTTPConnectMessage.h b/ios/Pods/Headers/Private/SocketRocket/SRHTTPConnectMessage.h deleted file mode 120000 index 02797ecfa..000000000 --- a/ios/Pods/Headers/Private/SocketRocket/SRHTTPConnectMessage.h +++ /dev/null @@ -1 +0,0 @@ -../../../../../node_modules/detox/ios_src/SocketRocket/SocketRocket/Internal/Utilities/SRHTTPConnectMessage.h \ No newline at end of file diff --git a/ios/Pods/Headers/Private/SocketRocket/SRHash.h b/ios/Pods/Headers/Private/SocketRocket/SRHash.h deleted file mode 120000 index 3b4bf3916..000000000 --- a/ios/Pods/Headers/Private/SocketRocket/SRHash.h +++ /dev/null @@ -1 +0,0 @@ -../../../../../node_modules/detox/ios_src/SocketRocket/SocketRocket/Internal/Utilities/SRHash.h \ No newline at end of file diff --git a/ios/Pods/Headers/Private/SocketRocket/SRIOConsumer.h b/ios/Pods/Headers/Private/SocketRocket/SRIOConsumer.h deleted file mode 120000 index a8972c522..000000000 --- a/ios/Pods/Headers/Private/SocketRocket/SRIOConsumer.h +++ /dev/null @@ -1 +0,0 @@ -../../../../../node_modules/detox/ios_src/SocketRocket/SocketRocket/Internal/IOConsumer/SRIOConsumer.h \ No newline at end of file diff --git a/ios/Pods/Headers/Private/SocketRocket/SRIOConsumerPool.h b/ios/Pods/Headers/Private/SocketRocket/SRIOConsumerPool.h deleted file mode 120000 index 26ac81628..000000000 --- a/ios/Pods/Headers/Private/SocketRocket/SRIOConsumerPool.h +++ /dev/null @@ -1 +0,0 @@ -../../../../../node_modules/detox/ios_src/SocketRocket/SocketRocket/Internal/IOConsumer/SRIOConsumerPool.h \ No newline at end of file diff --git a/ios/Pods/Headers/Private/SocketRocket/SRLog.h b/ios/Pods/Headers/Private/SocketRocket/SRLog.h deleted file mode 120000 index 1edda0d55..000000000 --- a/ios/Pods/Headers/Private/SocketRocket/SRLog.h +++ /dev/null @@ -1 +0,0 @@ -../../../../../node_modules/detox/ios_src/SocketRocket/SocketRocket/Internal/Utilities/SRLog.h \ No newline at end of file diff --git a/ios/Pods/Headers/Private/SocketRocket/SRMutex.h b/ios/Pods/Headers/Private/SocketRocket/SRMutex.h deleted file mode 120000 index ea4fb30a4..000000000 --- a/ios/Pods/Headers/Private/SocketRocket/SRMutex.h +++ /dev/null @@ -1 +0,0 @@ -../../../../../node_modules/detox/ios_src/SocketRocket/SocketRocket/Internal/Utilities/SRMutex.h \ No newline at end of file diff --git a/ios/Pods/Headers/Private/SocketRocket/SRPinningSecurityPolicy.h b/ios/Pods/Headers/Private/SocketRocket/SRPinningSecurityPolicy.h deleted file mode 120000 index fed5969a8..000000000 --- a/ios/Pods/Headers/Private/SocketRocket/SRPinningSecurityPolicy.h +++ /dev/null @@ -1 +0,0 @@ -../../../../../node_modules/detox/ios_src/SocketRocket/SocketRocket/Internal/Security/SRPinningSecurityPolicy.h \ No newline at end of file diff --git a/ios/Pods/Headers/Private/SocketRocket/SRProxyConnect.h b/ios/Pods/Headers/Private/SocketRocket/SRProxyConnect.h deleted file mode 120000 index e3a7b91db..000000000 --- a/ios/Pods/Headers/Private/SocketRocket/SRProxyConnect.h +++ /dev/null @@ -1 +0,0 @@ -../../../../../node_modules/detox/ios_src/SocketRocket/SocketRocket/Internal/Proxy/SRProxyConnect.h \ No newline at end of file diff --git a/ios/Pods/Headers/Private/SocketRocket/SRRandom.h b/ios/Pods/Headers/Private/SocketRocket/SRRandom.h deleted file mode 120000 index 7d105919d..000000000 --- a/ios/Pods/Headers/Private/SocketRocket/SRRandom.h +++ /dev/null @@ -1 +0,0 @@ -../../../../../node_modules/detox/ios_src/SocketRocket/SocketRocket/Internal/Utilities/SRRandom.h \ No newline at end of file diff --git a/ios/Pods/Headers/Private/SocketRocket/SRRunLoopThread.h b/ios/Pods/Headers/Private/SocketRocket/SRRunLoopThread.h deleted file mode 120000 index 7ee5831e9..000000000 --- a/ios/Pods/Headers/Private/SocketRocket/SRRunLoopThread.h +++ /dev/null @@ -1 +0,0 @@ -../../../../../node_modules/detox/ios_src/SocketRocket/SocketRocket/Internal/RunLoop/SRRunLoopThread.h \ No newline at end of file diff --git a/ios/Pods/Headers/Private/SocketRocket/SRSIMDHelpers.h b/ios/Pods/Headers/Private/SocketRocket/SRSIMDHelpers.h deleted file mode 120000 index ae35536ac..000000000 --- a/ios/Pods/Headers/Private/SocketRocket/SRSIMDHelpers.h +++ /dev/null @@ -1 +0,0 @@ -../../../../../node_modules/detox/ios_src/SocketRocket/SocketRocket/Internal/Utilities/SRSIMDHelpers.h \ No newline at end of file diff --git a/ios/Pods/Headers/Private/SocketRocket/SRSecurityPolicy.h b/ios/Pods/Headers/Private/SocketRocket/SRSecurityPolicy.h deleted file mode 120000 index bdbadad40..000000000 --- a/ios/Pods/Headers/Private/SocketRocket/SRSecurityPolicy.h +++ /dev/null @@ -1 +0,0 @@ -../../../../../node_modules/detox/ios_src/SocketRocket/SocketRocket/SRSecurityPolicy.h \ No newline at end of file diff --git a/ios/Pods/Headers/Private/SocketRocket/SRURLUtilities.h b/ios/Pods/Headers/Private/SocketRocket/SRURLUtilities.h deleted file mode 120000 index 9177630b8..000000000 --- a/ios/Pods/Headers/Private/SocketRocket/SRURLUtilities.h +++ /dev/null @@ -1 +0,0 @@ -../../../../../node_modules/detox/ios_src/SocketRocket/SocketRocket/Internal/Utilities/SRURLUtilities.h \ No newline at end of file diff --git a/ios/Pods/Headers/Private/SocketRocket/SRWebSocket.h b/ios/Pods/Headers/Private/SocketRocket/SRWebSocket.h deleted file mode 120000 index 66ddc0682..000000000 --- a/ios/Pods/Headers/Private/SocketRocket/SRWebSocket.h +++ /dev/null @@ -1 +0,0 @@ -../../../../../node_modules/detox/ios_src/SocketRocket/SocketRocket/SRWebSocket.h \ No newline at end of file diff --git a/ios/Pods/Headers/Private/SocketRocket/SocketRocket.h b/ios/Pods/Headers/Private/SocketRocket/SocketRocket.h deleted file mode 120000 index 2fea0653e..000000000 --- a/ios/Pods/Headers/Private/SocketRocket/SocketRocket.h +++ /dev/null @@ -1 +0,0 @@ -../../../../../node_modules/detox/ios_src/SocketRocket/SocketRocket/SocketRocket.h \ No newline at end of file diff --git a/ios/Pods/Headers/Public/EXKeepAwake/EXKeepAwake.h b/ios/Pods/Headers/Public/EXKeepAwake/EXKeepAwake.h new file mode 120000 index 000000000..9eeda1fc7 --- /dev/null +++ b/ios/Pods/Headers/Public/EXKeepAwake/EXKeepAwake.h @@ -0,0 +1 @@ +../../../../../node_modules/expo-keep-awake/ios/EXKeepAwake/EXKeepAwake.h \ No newline at end of file diff --git a/ios/Pods/Headers/Public/SocketRocket/NSRunLoop+SRWebSocket.h b/ios/Pods/Headers/Public/SocketRocket/NSRunLoop+SRWebSocket.h deleted file mode 120000 index 6dec42927..000000000 --- a/ios/Pods/Headers/Public/SocketRocket/NSRunLoop+SRWebSocket.h +++ /dev/null @@ -1 +0,0 @@ -../../../../../node_modules/detox/ios_src/SocketRocket/SocketRocket/NSRunLoop+SRWebSocket.h \ No newline at end of file diff --git a/ios/Pods/Headers/Public/SocketRocket/NSURLRequest+SRWebSocket.h b/ios/Pods/Headers/Public/SocketRocket/NSURLRequest+SRWebSocket.h deleted file mode 120000 index eb3eaf591..000000000 --- a/ios/Pods/Headers/Public/SocketRocket/NSURLRequest+SRWebSocket.h +++ /dev/null @@ -1 +0,0 @@ -../../../../../node_modules/detox/ios_src/SocketRocket/SocketRocket/NSURLRequest+SRWebSocket.h \ No newline at end of file diff --git a/ios/Pods/Headers/Public/SocketRocket/SRSecurityPolicy.h b/ios/Pods/Headers/Public/SocketRocket/SRSecurityPolicy.h deleted file mode 120000 index bdbadad40..000000000 --- a/ios/Pods/Headers/Public/SocketRocket/SRSecurityPolicy.h +++ /dev/null @@ -1 +0,0 @@ -../../../../../node_modules/detox/ios_src/SocketRocket/SocketRocket/SRSecurityPolicy.h \ No newline at end of file diff --git a/ios/Pods/Headers/Public/SocketRocket/SRWebSocket.h b/ios/Pods/Headers/Public/SocketRocket/SRWebSocket.h deleted file mode 120000 index 66ddc0682..000000000 --- a/ios/Pods/Headers/Public/SocketRocket/SRWebSocket.h +++ /dev/null @@ -1 +0,0 @@ -../../../../../node_modules/detox/ios_src/SocketRocket/SocketRocket/SRWebSocket.h \ No newline at end of file diff --git a/ios/Pods/Headers/Public/SocketRocket/SocketRocket.h b/ios/Pods/Headers/Public/SocketRocket/SocketRocket.h deleted file mode 120000 index 2fea0653e..000000000 --- a/ios/Pods/Headers/Public/SocketRocket/SocketRocket.h +++ /dev/null @@ -1 +0,0 @@ -../../../../../node_modules/detox/ios_src/SocketRocket/SocketRocket/SocketRocket.h \ No newline at end of file diff --git a/ios/Pods/Local Podspecs/EXKeepAwake.podspec.json b/ios/Pods/Local Podspecs/EXKeepAwake.podspec.json new file mode 100644 index 000000000..73e806b72 --- /dev/null +++ b/ios/Pods/Local Podspecs/EXKeepAwake.podspec.json @@ -0,0 +1,23 @@ +{ + "name": "EXKeepAwake", + "version": "8.1.0", + "summary": "Provides a React component that prevents the screen sleeping when rendered. It also exposes static methods to control the behavior imperatively.", + "description": "Provides a React component that prevents the screen sleeping when rendered. It also exposes static methods to control the behavior imperatively.", + "license": "MIT", + "authors": "650 Industries, Inc.", + "homepage": "https://docs.expo.io/versions/latest/sdk/keep-awake/", + "platforms": { + "ios": "10.0" + }, + "source": { + "git": "https://github.com/expo/expo.git" + }, + "source_files": "EXKeepAwake/**/*.{h,m}", + "preserve_paths": "EXKeepAwake/**/*.{h,m}", + "requires_arc": true, + "dependencies": { + "UMCore": [ + + ] + } +} diff --git a/ios/Pods/Manifest.lock b/ios/Pods/Manifest.lock index e3c060e42..6b5c50ef3 100644 --- a/ios/Pods/Manifest.lock +++ b/ios/Pods/Manifest.lock @@ -20,6 +20,8 @@ PODS: - UMFileSystemInterface - EXHaptics (6.0.0): - UMCore + - EXKeepAwake (8.1.0): + - UMCore - EXPermissions (6.0.0): - UMCore - UMPermissionsInterface @@ -403,7 +405,6 @@ PODS: - SDWebImageWebPCoder (0.2.5): - libwebp (~> 1.0) - SDWebImage/Core (~> 5.0) - - SocketRocket (0.5.1) - UMBarCodeScannerInterface (3.0.0) - UMCameraInterface (3.0.0) - UMConstantsInterface (3.0.0) @@ -429,6 +430,7 @@ DEPENDENCIES: - EXConstants (from `../node_modules/expo-constants/ios`) - EXFileSystem (from `../node_modules/expo-file-system/ios`) - EXHaptics (from `../node_modules/expo-haptics/ios`) + - EXKeepAwake (from `../node_modules/expo-keep-awake/ios`) - EXPermissions (from `../node_modules/expo-permissions/ios`) - EXWebBrowser (from `../node_modules/expo-web-browser/ios`) - FBLazyVector (from `../node_modules/react-native/Libraries/FBLazyVector`) @@ -487,7 +489,6 @@ DEPENDENCIES: - RNScreens (from `../node_modules/react-native-screens`) - RNUserDefaults (from `../node_modules/rn-user-defaults`) - RNVectorIcons (from `../node_modules/react-native-vector-icons`) - - SocketRocket (from `../node_modules/detox/ios_src/SocketRocket`) - UMBarCodeScannerInterface (from `../node_modules/unimodules-barcode-scanner-interface/ios`) - UMCameraInterface (from `../node_modules/unimodules-camera-interface/ios`) - UMConstantsInterface (from `../node_modules/unimodules-constants-interface/ios`) @@ -545,6 +546,9 @@ EXTERNAL SOURCES: EXHaptics: :path: !ruby/object:Pathname path: "../node_modules/expo-haptics/ios" + EXKeepAwake: + :path: !ruby/object:Pathname + path: "../node_modules/expo-keep-awake/ios" EXPermissions: :path: !ruby/object:Pathname path: "../node_modules/expo-permissions/ios" @@ -657,8 +661,6 @@ EXTERNAL SOURCES: :path: "../node_modules/rn-user-defaults" RNVectorIcons: :path: "../node_modules/react-native-vector-icons" - SocketRocket: - :path: "../node_modules/detox/ios_src/SocketRocket" UMBarCodeScannerInterface: :path: !ruby/object:Pathname path: "../node_modules/unimodules-barcode-scanner-interface/ios" @@ -713,6 +715,7 @@ SPEC CHECKSUMS: EXConstants: 5d81e84ca71b9a552529889cc798b4a04e9e22b3 EXFileSystem: 091907902fcec9f9182b656fdead41a82f30986a EXHaptics: f84c93d605e0905c47654e4a6e5dfbff78ed6906 + EXKeepAwake: d045bc2cf1ad5a04f0323cc7c894b95b414042e0 EXPermissions: 99e52dc3e5f8e55153f1958004f6df2a30a1f2f5 EXWebBrowser: def838b95aa9d396f9ce71ace4e614ee16e7ee30 Fabric: 706c8b8098fff96c33c0db69cbf81f9c551d0d74 @@ -786,7 +789,6 @@ SPEC CHECKSUMS: RSKImageCropper: a446db0e8444a036b34f3c43db01b2373baa4b2a SDWebImage: 4d5c027c935438f341ed33dbac53ff9f479922ca SDWebImageWebPCoder: 947093edd1349d820c40afbd9f42acb6cdecd987 - SocketRocket: dbb1554b8fc288ef8ef370d6285aeca7361be31e UMBarCodeScannerInterface: 84ea2d6b58ff0dc27ef9b68bab71286be18ee020 UMCameraInterface: 26b26005d1756a0d5f4f04f1e168e39ea9154535 UMConstantsInterface: 038bacb19de12b6fd328c589122c8dc977cccf61 diff --git a/ios/Pods/Pods.xcodeproj/project.pbxproj b/ios/Pods/Pods.xcodeproj/project.pbxproj index e90ed6a5c..81a6692db 100644 --- a/ios/Pods/Pods.xcodeproj/project.pbxproj +++ b/ios/Pods/Pods.xcodeproj/project.pbxproj @@ -219,1946 +219,1900 @@ /* End PBXAggregateTarget section */ /* Begin PBXBuildFile section */ - 000347F73D6AC6FB65F78930F28D41CF /* UMReactLogHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = A1E8041757FCCA6D26A29DA6A83B478C /* UMReactLogHandler.m */; }; - 000601D6585E358B4C5C687C9A463409 /* RNUserDefaults.h in Headers */ = {isa = PBXBuildFile; fileRef = FD0522A77323863222F799279CD2584A /* RNUserDefaults.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 00250E9281073575CB7BAE32F1DF4B29 /* RCTDiffClampAnimatedNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 1005BB3173B8FDA44E6FD8B761F5DD63 /* RCTDiffClampAnimatedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0060810FB3851F5761DD7524A5AD905E /* RNGestureHandlerEvents.h in Headers */ = {isa = PBXBuildFile; fileRef = 445111053B115FD7E770DE4180CE51A3 /* RNGestureHandlerEvents.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 00BA8C3B91567B84EF6FD94C5173292E /* RCTDecayAnimation.h in Headers */ = {isa = PBXBuildFile; fileRef = 7218C82D3C00413556C771B6B7FC1644 /* RCTDecayAnimation.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 00D097B559FAE95D0AD2BEFD359653A4 /* RCTExceptionsManager.h in Headers */ = {isa = PBXBuildFile; fileRef = A61AC0C8B33BC86F5353944CB256E66A /* RCTExceptionsManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 00FD715D554BEF2B43C4A77344A2A2F9 /* RCTSliderManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 212B3673436F3EA140F0E188CC72942B /* RCTSliderManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0110988CDD0DA3F7F49434DAB8BA87E1 /* RCTProgressViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = D20773A3ABE321E7E66ED677F6D96CBC /* RCTProgressViewManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 013E97EF0B110B48D15D8445F1D3C24A /* RCTEventAnimation.m in Sources */ = {isa = PBXBuildFile; fileRef = CC0C460DACC6A977B10BD60BD18529C2 /* RCTEventAnimation.m */; }; + 000347F73D6AC6FB65F78930F28D41CF /* UMReactLogHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = F3F813412D9D5E175BB6FC37186DA34B /* UMReactLogHandler.m */; }; + 000601D6585E358B4C5C687C9A463409 /* RNUserDefaults.h in Headers */ = {isa = PBXBuildFile; fileRef = 373838D62F21752766117049326DD9A8 /* RNUserDefaults.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 00250E9281073575CB7BAE32F1DF4B29 /* RCTDiffClampAnimatedNode.h in Headers */ = {isa = PBXBuildFile; fileRef = BEE98970FA96D086DC9401F7D6CCA1F6 /* RCTDiffClampAnimatedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0060810FB3851F5761DD7524A5AD905E /* RNGestureHandlerEvents.h in Headers */ = {isa = PBXBuildFile; fileRef = 2F975753960B42CEAF0D6CB4682433F2 /* RNGestureHandlerEvents.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 00BA8C3B91567B84EF6FD94C5173292E /* RCTDecayAnimation.h in Headers */ = {isa = PBXBuildFile; fileRef = 078E1A116DFEF74C56BE72D549086645 /* RCTDecayAnimation.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 00D097B559FAE95D0AD2BEFD359653A4 /* RCTExceptionsManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 8B3B20954674E500BC0C60E9385E0B74 /* RCTExceptionsManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 00FD715D554BEF2B43C4A77344A2A2F9 /* RCTSliderManager.h in Headers */ = {isa = PBXBuildFile; fileRef = B3852D1889FE05FE2B093D54B5F91D67 /* RCTSliderManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0110988CDD0DA3F7F49434DAB8BA87E1 /* RCTProgressViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 6D58BF93363CAA6D35899BE155CACB47 /* RCTProgressViewManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 013E97EF0B110B48D15D8445F1D3C24A /* RCTEventAnimation.m in Sources */ = {isa = PBXBuildFile; fileRef = BC72CD5189DE683C7FAE0F54020CACD1 /* RCTEventAnimation.m */; }; 0168747D9FDB61A33B92889060F5D4B8 /* FIRInstallationsKeychainUtils.m in Sources */ = {isa = PBXBuildFile; fileRef = 4341798946137AA9F80EA098E35B9931 /* FIRInstallationsKeychainUtils.m */; }; - 01AF68C56B353F0273A4AC2CD9C55356 /* BSG_KSCrashCallCompletion.h in Headers */ = {isa = PBXBuildFile; fileRef = 5C9F2F1343AF7A8BA895B653D840F849 /* BSG_KSCrashCallCompletion.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 01CF128DB818B5C83EC67F1FB8C044E2 /* BugsnagUser.h in Headers */ = {isa = PBXBuildFile; fileRef = 0E3368017A0A22EC37DDEFB6F429708E /* BugsnagUser.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 01AF68C56B353F0273A4AC2CD9C55356 /* BSG_KSCrashCallCompletion.h in Headers */ = {isa = PBXBuildFile; fileRef = 3B16C6CC030E54F9A3BDE536225E6528 /* BSG_KSCrashCallCompletion.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 01CF128DB818B5C83EC67F1FB8C044E2 /* BugsnagUser.h in Headers */ = {isa = PBXBuildFile; fileRef = 8E28EE78E661B7FBF9CD48D10A4B751F /* BugsnagUser.h */; settings = {ATTRIBUTES = (Project, ); }; }; 01F1D84FDAD0AF47FF1C2166C9A2D3EC /* pb_encode.h in Headers */ = {isa = PBXBuildFile; fileRef = 383A35C11C4C2DD2BADC793667564783 /* pb_encode.h */; settings = {ATTRIBUTES = (Project, ); }; }; 02218BCD8452C372E4ACC4A4C8325932 /* rescaler.c in Sources */ = {isa = PBXBuildFile; fileRef = DCB23ABFC8B49A5E319D843667A25D15 /* rescaler.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 02D7F16622CA9A03D5F5BC227F111F09 /* RCTTextSelection.h in Headers */ = {isa = PBXBuildFile; fileRef = 966BEA81EA3259693A21B0C8773FFFA3 /* RCTTextSelection.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 02FD14CFE42783E886506F2E17859960 /* RCTVirtualTextShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = F4A30F180984D8AC5055F3ED4A3C9B20 /* RCTVirtualTextShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 033394FF64D05DACD31B10A0BE4E0F67 /* EXVideoPlayerViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = BCD1F58DE01453E51B4A1E51986A28F3 /* EXVideoPlayerViewController.m */; }; + 02D7F16622CA9A03D5F5BC227F111F09 /* RCTTextSelection.h in Headers */ = {isa = PBXBuildFile; fileRef = E75D2BEE2A822BC31AE3602BAA2E95B5 /* RCTTextSelection.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 02FD14CFE42783E886506F2E17859960 /* RCTVirtualTextShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = F2A5EF842E0CBD52437A3F0B96F2B26B /* RCTVirtualTextShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 033394FF64D05DACD31B10A0BE4E0F67 /* EXVideoPlayerViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = B270BBBD6A601121183CDB371E33BA3D /* EXVideoPlayerViewController.m */; }; 0343D94D2D5E8E2E318BA28B81964C30 /* GDTCCTUploader.h in Headers */ = {isa = PBXBuildFile; fileRef = C0DCE0BB52AF13A0B41211860EA0CDCA /* GDTCCTUploader.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 034BC962567065301B3E423CEEFF6493 /* ARTTextManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 76EFAA94897818485AB8BCB45E7E7E33 /* ARTTextManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 037A597C46854C7EAE1349B3B682C044 /* FFFastImageViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 3ABC1FBB5AB1BDD5F644EB9F2017D18C /* FFFastImageViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 038DCB497B0C163EB9C86859E531AFFA /* BSG_KSMach_x86_32.c in Sources */ = {isa = PBXBuildFile; fileRef = 49497B791975A6D1FDBF5B4F8D1FB4D3 /* BSG_KSMach_x86_32.c */; }; - 03A091EF0A44A9313367BD851F9685DB /* RNFetchBlobConst.h in Headers */ = {isa = PBXBuildFile; fileRef = 772F6B311F16BD718B2669568126CA43 /* RNFetchBlobConst.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 034BC962567065301B3E423CEEFF6493 /* ARTTextManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 9EDFF0E0FB610A1DE60E52FE94A877F4 /* ARTTextManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 037A597C46854C7EAE1349B3B682C044 /* FFFastImageViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 322A3A64E30DD2212EA30D3262C8F54B /* FFFastImageViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 038DCB497B0C163EB9C86859E531AFFA /* BSG_KSMach_x86_32.c in Sources */ = {isa = PBXBuildFile; fileRef = ABFEE1EC32DE79776E007287732E5698 /* BSG_KSMach_x86_32.c */; }; + 03A091EF0A44A9313367BD851F9685DB /* RNFetchBlobConst.h in Headers */ = {isa = PBXBuildFile; fileRef = 51C1A9B4E59A3E485D0E8EA467945E83 /* RNFetchBlobConst.h */; settings = {ATTRIBUTES = (Project, ); }; }; 03FC1A870235ECB216F4737C694F3747 /* GDTCORUploadPackage.h in Headers */ = {isa = PBXBuildFile; fileRef = 8174EE8838427BE46A0885CA8539CA9D /* GDTCORUploadPackage.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 04148C0C198379E5C1D179F18BF512A9 /* BSGSerialization.h in Headers */ = {isa = PBXBuildFile; fileRef = 7C2A80E898E0D6260EE252324C57CEDB /* BSGSerialization.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 04148C0C198379E5C1D179F18BF512A9 /* BSGSerialization.h in Headers */ = {isa = PBXBuildFile; fileRef = 11DDC617B58C7EB6C414E4D661BEFABE /* BSGSerialization.h */; settings = {ATTRIBUTES = (Project, ); }; }; 043F127F8BCEE1CF57B50F26BC40EEC6 /* UIImageView+HighlightedWebCache.h in Headers */ = {isa = PBXBuildFile; fileRef = 4B9414D353B3774B94F6BC07EDA11C7C /* UIImageView+HighlightedWebCache.h */; settings = {ATTRIBUTES = (Project, ); }; }; 043F132113151E6ADEDCE2882496167D /* FIRInstanceIDTokenOperation+Private.h in Headers */ = {isa = PBXBuildFile; fileRef = 7DA120FFE328161A90702286BAB6CDA6 /* FIRInstanceIDTokenOperation+Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; 049781277A4DF708130AF68AA1C925EC /* FIRInstanceIDAuthService.h in Headers */ = {isa = PBXBuildFile; fileRef = 297C759A2A6FB64610A331F75C41FC8D /* FIRInstanceIDAuthService.h */; settings = {ATTRIBUTES = (Project, ); }; }; 04AA55BE7FB64746D55ECB9C8714BE6C /* RSKImageScrollView.h in Headers */ = {isa = PBXBuildFile; fileRef = BDEA5C38759AB791A74D4E71063DB293 /* RSKImageScrollView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 04B9B85ED8CA97838E08E90F268B5A6A /* BSG_RFC3339DateTool.h in Headers */ = {isa = PBXBuildFile; fileRef = CD47D297B233E6B1B7503E9B48C8A8B0 /* BSG_RFC3339DateTool.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 04C24F4AAF9F4FDE509A34A0C902C967 /* SRWebSocket.h in Headers */ = {isa = PBXBuildFile; fileRef = 9852E028331B964DD6FA5438D714650C /* SRWebSocket.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 04B9B85ED8CA97838E08E90F268B5A6A /* BSG_RFC3339DateTool.h in Headers */ = {isa = PBXBuildFile; fileRef = B8B6AD8CAC97607C30EF72CAAAC0D0E3 /* BSG_RFC3339DateTool.h */; settings = {ATTRIBUTES = (Project, ); }; }; 04F32CC017A5B4680D550DF38F6F630D /* FIRInstanceIDVersionUtilities.h in Headers */ = {isa = PBXBuildFile; fileRef = 3995372A68A43A67B051244F80037938 /* FIRInstanceIDVersionUtilities.h */; settings = {ATTRIBUTES = (Project, ); }; }; 053BA4F3C75D35BCBAA8F8891D611B84 /* animi.h in Headers */ = {isa = PBXBuildFile; fileRef = FF00CDB7A8232AE4158B172CB16D57C2 /* animi.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0550E1CF6AA520F2250C08EDB7D025EB /* RCTLog.h in Headers */ = {isa = PBXBuildFile; fileRef = 4E4E070C3341B38A3C50BD22E628846D /* RCTLog.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0550E1CF6AA520F2250C08EDB7D025EB /* RCTLog.h in Headers */ = {isa = PBXBuildFile; fileRef = 4D5AD05BB69D393AA56A6B6E816F86E6 /* RCTLog.h */; settings = {ATTRIBUTES = (Project, ); }; }; 055E3CCCC565B32662B62AEB2687DFD6 /* dec_clip_tables.c in Sources */ = {isa = PBXBuildFile; fileRef = D34AAFE9C37C1A4DC2FFAF19DFF69CDC /* dec_clip_tables.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 05756863C1BD6A6522B1046F4351B6BD /* RCTSurfaceSizeMeasureMode.h in Headers */ = {isa = PBXBuildFile; fileRef = DC26A9C488BB8A6A184B6388AFB81552 /* RCTSurfaceSizeMeasureMode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 05756863C1BD6A6522B1046F4351B6BD /* RCTSurfaceSizeMeasureMode.h in Headers */ = {isa = PBXBuildFile; fileRef = FD0B80D0EC31363E9234C55879B93F2A /* RCTSurfaceSizeMeasureMode.h */; settings = {ATTRIBUTES = (Project, ); }; }; 058A0E6FB778E47AC2ACEED1729900C5 /* enc_mips_dsp_r2.c in Sources */ = {isa = PBXBuildFile; fileRef = CC558CC663CA045F998F5CA528ADEDB7 /* enc_mips_dsp_r2.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; 05B0D839ADEDCA18BCB0342D8850023C /* decode.h in Headers */ = {isa = PBXBuildFile; fileRef = AE42AA2FA59AF812E73CBB61E72ECEA8 /* decode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 05B8061B8AE0708A11C2E65F08069385 /* RCTUIManager.h in Headers */ = {isa = PBXBuildFile; fileRef = CE5054CB399F9901FF193F88B8D5427D /* RCTUIManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 05B8061B8AE0708A11C2E65F08069385 /* RCTUIManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 8D40FF2BA9B31FB8FB3E32C2ACAACF2C /* RCTUIManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; 05C1FD03B0C4673F79EC7E77569B14EC /* nanopb-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = F62A51F0D87C21CBDCC1B8756AE451C6 /* nanopb-dummy.m */; }; - 05D27696F3A8F3906AAC9F552AA9EEF6 /* ARTRadialGradient.m in Sources */ = {isa = PBXBuildFile; fileRef = DF69FAC7AE2BB577C9855B8B5814580C /* ARTRadialGradient.m */; }; + 05D27696F3A8F3906AAC9F552AA9EEF6 /* ARTRadialGradient.m in Sources */ = {isa = PBXBuildFile; fileRef = 0623F5CE520BFB95831739B983C72876 /* ARTRadialGradient.m */; }; 05D69A135B67FBAE73D5F583B05D8AB5 /* SDImageIOCoder.m in Sources */ = {isa = PBXBuildFile; fileRef = F87F6A22FB4F600954FB2663E53340C6 /* SDImageIOCoder.m */; }; 05EEE113DA8195D1A8446E6E0223F87B /* quant.h in Headers */ = {isa = PBXBuildFile; fileRef = F02ACAE8DEE115DBBC18C44F0AE2128C /* quant.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 05FA51F562C7976518F650F5858E7149 /* RCTJavaScriptExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = F34AAF4EB156179DBB98C9E541819A40 /* RCTJavaScriptExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 05FD9CBC49A9036945A855E5976925F8 /* REASetNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 6253EB5A53E273BEE1C7092D9CBDEBB0 /* REASetNode.m */; }; - 06290A0DBEBB396363D9CB31FC2FFA27 /* RNFetchBlobReqBuilder.m in Sources */ = {isa = PBXBuildFile; fileRef = 86182666DE84512205B57EB10223FB24 /* RNFetchBlobReqBuilder.m */; }; - 062F8BE5952FAF7F5CF3E6966A337F28 /* RNBootSplash.h in Headers */ = {isa = PBXBuildFile; fileRef = 50F03489287103989552D43C23469F6B /* RNBootSplash.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0679E8A1EFD1528B6DD85FD80C935105 /* UMModuleRegistryDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = E8067365D8CBEBC87332AD5820A32242 /* UMModuleRegistryDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 067CF6E901ED664FD2842890860A5713 /* RCTBackedTextInputDelegateAdapter.h in Headers */ = {isa = PBXBuildFile; fileRef = 3D9CA88B1BD3C6055F2E952ED7561E51 /* RCTBackedTextInputDelegateAdapter.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 05FA51F562C7976518F650F5858E7149 /* RCTJavaScriptExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = 6D12EBF6E2A447CA627F61E05B923CFF /* RCTJavaScriptExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 05FD9CBC49A9036945A855E5976925F8 /* REASetNode.m in Sources */ = {isa = PBXBuildFile; fileRef = ED123A74CAB8A20F813B4464D6F5E8E0 /* REASetNode.m */; }; + 06290A0DBEBB396363D9CB31FC2FFA27 /* RNFetchBlobReqBuilder.m in Sources */ = {isa = PBXBuildFile; fileRef = 0CDCBDF89092A1E15CA647D202589047 /* RNFetchBlobReqBuilder.m */; }; + 062F8BE5952FAF7F5CF3E6966A337F28 /* RNBootSplash.h in Headers */ = {isa = PBXBuildFile; fileRef = 330966B3711E07FB73BDF539582957A3 /* RNBootSplash.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0679E8A1EFD1528B6DD85FD80C935105 /* UMModuleRegistryDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = C84407C896CACB04FED00E8870233C34 /* UMModuleRegistryDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 067CF6E901ED664FD2842890860A5713 /* RCTBackedTextInputDelegateAdapter.h in Headers */ = {isa = PBXBuildFile; fileRef = 4B2638AE3C498C6F849896DFB3E9373D /* RCTBackedTextInputDelegateAdapter.h */; settings = {ATTRIBUTES = (Project, ); }; }; 068627D6351492A400D81DA04B4AAEE1 /* histogram_enc.h in Headers */ = {isa = PBXBuildFile; fileRef = D21939B5F49D3C368E0AE91BCDCB1CF4 /* histogram_enc.h */; settings = {ATTRIBUTES = (Project, ); }; }; 06922EF69D044B6F0042385A661A6B60 /* SDImageHEICCoder.m in Sources */ = {isa = PBXBuildFile; fileRef = 82F6DE05F32E14B763473B91688324E1 /* SDImageHEICCoder.m */; }; 06C78FC8169996E806BE536269C185CD /* yuv_sse41.c in Sources */ = {isa = PBXBuildFile; fileRef = 8E103C191260FD8059A70EBEAD980250 /* yuv_sse41.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; 06FBD958C231090762361344B123CACD /* SDAnimatedImageView.h in Headers */ = {isa = PBXBuildFile; fileRef = 2F107D99DE30C03FC83538F1745C81DE /* SDAnimatedImageView.h */; settings = {ATTRIBUTES = (Project, ); }; }; 07141BDF264104502C0D2041648F7880 /* FIRComponentType.m in Sources */ = {isa = PBXBuildFile; fileRef = 5E5CC8F6A5743198CEE068F4A629834B /* FIRComponentType.m */; }; - 071E58B8852567A971AABBB61B4BF64A /* RCTProfileTrampoline-i386.S in Sources */ = {isa = PBXBuildFile; fileRef = 2FF7E5D0F84784985C0963A5E13C7EEA /* RCTProfileTrampoline-i386.S */; }; + 071E58B8852567A971AABBB61B4BF64A /* RCTProfileTrampoline-i386.S in Sources */ = {isa = PBXBuildFile; fileRef = DE6B694B56DB0F1DF8CBC2826FA9B1B0 /* RCTProfileTrampoline-i386.S */; }; 072340F95F41D91DADDE392ACB4F7665 /* FIRInstallationsIIDStore.h in Headers */ = {isa = PBXBuildFile; fileRef = 06736283C77882D931377C3AF94D64FD /* FIRInstallationsIIDStore.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0764A6EAFA3A7BEBA50E99A74A95F549 /* QBVideoIconView.m in Sources */ = {isa = PBXBuildFile; fileRef = 56D1FB31E2C106F327F32C3AF706800D /* QBVideoIconView.m */; }; + 0764A6EAFA3A7BEBA50E99A74A95F549 /* QBVideoIconView.m in Sources */ = {isa = PBXBuildFile; fileRef = 0ED61C842590DBA7937D308C0B6804EA /* QBVideoIconView.m */; }; 0769A9F39A25A9A976CCD0C87C3D2CFA /* Format.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 965EC53F67148F2FB7C1C52C636A654B /* Format.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 0770FB987A4D038938191C2B33C4846C /* RCTActivityIndicatorView.m in Sources */ = {isa = PBXBuildFile; fileRef = E3A39234BB93357507F4239CCC4F5737 /* RCTActivityIndicatorView.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 0770FB987A4D038938191C2B33C4846C /* RCTActivityIndicatorView.m in Sources */ = {isa = PBXBuildFile; fileRef = 9A70159DAD434BBBC64A38034D0D4803 /* RCTActivityIndicatorView.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; 077A5F8C4B9C33DFA15873A399B2597C /* stl_logging.h in Headers */ = {isa = PBXBuildFile; fileRef = 5CFEB116ECB9A495D54B314D795B805B /* stl_logging.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0801F2E7F7115B2A1B2836000ECB42BE /* BugsnagHandledState.h in Headers */ = {isa = PBXBuildFile; fileRef = 78EF57B0FD05E69C407FC6D8EC28A634 /* BugsnagHandledState.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 080E1D5D33742F3791A8FC5C709FE265 /* TurboModule.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 21EEA62AA34B1955156B48D8813CD3A5 /* TurboModule.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 0801F2E7F7115B2A1B2836000ECB42BE /* BugsnagHandledState.h in Headers */ = {isa = PBXBuildFile; fileRef = 39639DEFAB37B167C11BA5145D71E714 /* BugsnagHandledState.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 080E1D5D33742F3791A8FC5C709FE265 /* TurboModule.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 20AB771AA698A314809BE121BCFE091C /* TurboModule.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; 081E6B601B49FE4F98631AE9F6594C9F /* dec_mips32.c in Sources */ = {isa = PBXBuildFile; fileRef = C31EC300C1418FF40CB367611BE8EB41 /* dec_mips32.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 082930C05486B2E939CD2D2046D6E8D4 /* RCTLog.mm in Sources */ = {isa = PBXBuildFile; fileRef = 8AB310BFF5D7A85FB6C9AD1A44D622CF /* RCTLog.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 082930C05486B2E939CD2D2046D6E8D4 /* RCTLog.mm in Sources */ = {isa = PBXBuildFile; fileRef = B1F65D7FF3135A0627DF673CBD7C9BFA /* RCTLog.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; 0831A0057F646251FD8B9F72008F0F52 /* CGGeometry+RSKImageCropper.h in Headers */ = {isa = PBXBuildFile; fileRef = 112CFA9961DCCEA1D55E037EE24E1C38 /* CGGeometry+RSKImageCropper.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 08386AF2FE7E61FFAC513C0EABDE2BF5 /* RCTRootViewInternal.h in Headers */ = {isa = PBXBuildFile; fileRef = 686869BC8067E9C4F6766CE8AD1062A9 /* RCTRootViewInternal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 086D30EE631E6CD8A53B13E30037F880 /* UMAppLifecycleService.h in Headers */ = {isa = PBXBuildFile; fileRef = BC0837151C4E564C57BFFA1DB2F79540 /* UMAppLifecycleService.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 08751D5B412E7F5CF628EA5003D23DC0 /* UIImage+Resize.m in Sources */ = {isa = PBXBuildFile; fileRef = 7229F900D342839BC98BB24AA62C9250 /* UIImage+Resize.m */; }; - 08AB7661CC1560CE0AD28729D69DDB72 /* RCTBaseTextInputView.h in Headers */ = {isa = PBXBuildFile; fileRef = CE69419E38094A83898713802458E7E1 /* RCTBaseTextInputView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 08F038226206BFA4EC2E474742BCCCBE /* RCTActivityIndicatorViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = F9F2C789EF9C7BECA5CF70F65FEB2FD8 /* RCTActivityIndicatorViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 08F5142CBA48202DB5E2CD6DD24AB790 /* RCTMultipartStreamReader.m in Sources */ = {isa = PBXBuildFile; fileRef = AFDB750BF6A083142D44FC5889D60117 /* RCTMultipartStreamReader.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 090CD0CBDC7A1A0ADFAF53F574E31D2E /* Instance.cpp in Sources */ = {isa = PBXBuildFile; fileRef = CFC46799B96695284F0D93FF2CBD9E33 /* Instance.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 08386AF2FE7E61FFAC513C0EABDE2BF5 /* RCTRootViewInternal.h in Headers */ = {isa = PBXBuildFile; fileRef = 8873DD07BF4CCC6E0748DC31BAF006E4 /* RCTRootViewInternal.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 086D30EE631E6CD8A53B13E30037F880 /* UMAppLifecycleService.h in Headers */ = {isa = PBXBuildFile; fileRef = C675EB4DA741116915944B05F9947C8E /* UMAppLifecycleService.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 08751D5B412E7F5CF628EA5003D23DC0 /* UIImage+Resize.m in Sources */ = {isa = PBXBuildFile; fileRef = 96A92634A41C53331A90F02931E662D9 /* UIImage+Resize.m */; }; + 08AB7661CC1560CE0AD28729D69DDB72 /* RCTBaseTextInputView.h in Headers */ = {isa = PBXBuildFile; fileRef = 9F018843E2DC370532D916D1C32DFF36 /* RCTBaseTextInputView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 08F038226206BFA4EC2E474742BCCCBE /* RCTActivityIndicatorViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 98A410FC602339458820164A11F2353C /* RCTActivityIndicatorViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 08F5142CBA48202DB5E2CD6DD24AB790 /* RCTMultipartStreamReader.m in Sources */ = {isa = PBXBuildFile; fileRef = 4E65E9C4BA7BC0DF78267AE2E1FE3F5D /* RCTMultipartStreamReader.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 090CD0CBDC7A1A0ADFAF53F574E31D2E /* Instance.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 965CDFBB1BD166BB219A0030A7C0C9FB /* Instance.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; 09BC7875E6D801E8C3A5D78A944B7127 /* neon.h in Headers */ = {isa = PBXBuildFile; fileRef = 1B0188F1CFA087DDC5889F8B0B0301C3 /* neon.h */; settings = {ATTRIBUTES = (Project, ); }; }; 09C185F1C7A5642A99FC851468FCD3E0 /* GULSwizzler.h in Headers */ = {isa = PBXBuildFile; fileRef = 9CE153AFAE2F96D0F934D1BAF6939CCD /* GULSwizzler.h */; settings = {ATTRIBUTES = (Project, ); }; }; 09E32B915F68813180BCB425D417A907 /* fast-dtoa.cc in Sources */ = {isa = PBXBuildFile; fileRef = F72625A8093D89ACAEF9ACBC3883C014 /* fast-dtoa.cc */; settings = {COMPILER_FLAGS = "-Wno-unreachable-code"; }; }; 09F2344CDF2289F7B806ED72CB1E16C9 /* FIRAppAssociationRegistration.m in Sources */ = {isa = PBXBuildFile; fileRef = 6C8B9AF946127A4CCC12F6DA5E9EFD4E /* FIRAppAssociationRegistration.m */; }; - 09FC4C35964C8A008D2885289A771E30 /* SRDelegateController.m in Sources */ = {isa = PBXBuildFile; fileRef = 8C55AA6E3DF7B37A6608F9F1CA6AD1DD /* SRDelegateController.m */; }; - 0A062F2E4946A573D13ADBCC08C63259 /* RCTComponentData.m in Sources */ = {isa = PBXBuildFile; fileRef = 3C8D153CA2E140138F6C5CC994BFCB17 /* RCTComponentData.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 0A1AB2547E41AAF64E97BFB18FD29C6B /* RCTVirtualTextViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 30BA22A2D2F4FAFF76942172910C1E45 /* RCTVirtualTextViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0A7A1BCCD1D5D7238DC06CB7E38E76F9 /* RNNotificationParser.h in Headers */ = {isa = PBXBuildFile; fileRef = DA8BC861A666D1E1C917F57565070C44 /* RNNotificationParser.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0A7FF47E30F61AFB6AD9CA895EE1A4F9 /* RNDateTimePickerManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 44753D403C3ABDFAE77633E32B6B056D /* RNDateTimePickerManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0A062F2E4946A573D13ADBCC08C63259 /* RCTComponentData.m in Sources */ = {isa = PBXBuildFile; fileRef = 85EDB2333CBF4A1AC8C9B1392D115DC4 /* RCTComponentData.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 0A1AB2547E41AAF64E97BFB18FD29C6B /* RCTVirtualTextViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 34BD12EFE87BBC1715B6008AB32ED33B /* RCTVirtualTextViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0A7A1BCCD1D5D7238DC06CB7E38E76F9 /* RNNotificationParser.h in Headers */ = {isa = PBXBuildFile; fileRef = ACFE96085A3777879FACEAC1111C4A68 /* RNNotificationParser.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0A7FF47E30F61AFB6AD9CA895EE1A4F9 /* RNDateTimePickerManager.h in Headers */ = {isa = PBXBuildFile; fileRef = DACFC6CDEFD1B3CC5FD3B77C2F41C21A /* RNDateTimePickerManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; 0A92A4EB11AC3149D6C51E87E22A1A5B /* cost_mips_dsp_r2.c in Sources */ = {isa = PBXBuildFile; fileRef = E24A9D8245F7C2A76A8F628651409D86 /* cost_mips_dsp_r2.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 0AB9B568C6742A432B80BF2477E83C45 /* REATransformNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 01DDFF5FAC484AEC4F0EABD558E7F39E /* REATransformNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0AE12686EC6C465D8435BAB4DC808603 /* RCTVibration.m in Sources */ = {isa = PBXBuildFile; fileRef = CB591AF5D322453F528F32259069B4C3 /* RCTVibration.m */; }; + 0AB9B568C6742A432B80BF2477E83C45 /* REATransformNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 605E136781AE87E42A384ED77767AF54 /* REATransformNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0AE12686EC6C465D8435BAB4DC808603 /* RCTVibration.m in Sources */ = {isa = PBXBuildFile; fileRef = 89A0807D2B49673C8750B616BECF1EAB /* RCTVibration.m */; }; 0AE630EDDF3087755FB7900375791D51 /* double-conversion.h in Headers */ = {isa = PBXBuildFile; fileRef = 67126F01CF3D1827B3B8FF2A8F677A2F /* double-conversion.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0AF837F5FF8B37A2F687B3A1B0940884 /* RNNotificationCenterListener.m in Sources */ = {isa = PBXBuildFile; fileRef = A30304C4FE2D283910E52A345B67D389 /* RNNotificationCenterListener.m */; }; - 0AFBACEB31E8CB9878295D470B31031A /* RCTModalManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 82AC5601A7CC44065D1DAA3A7C61CB60 /* RCTModalManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 0AFF41962269C89779046793E1AE0FE7 /* RCTBackedTextInputDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = 4F10B268A6259F94F71B5D146A4FFD11 /* RCTBackedTextInputDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0B36FBB44F665720229F62FC21CFABAE /* RCTModalHostViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = 201DFBC98BC09F90B42FAFD3AACA725C /* RCTModalHostViewController.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0AF837F5FF8B37A2F687B3A1B0940884 /* RNNotificationCenterListener.m in Sources */ = {isa = PBXBuildFile; fileRef = B1C94A0B03D6B56BE09722453D630261 /* RNNotificationCenterListener.m */; }; + 0AFBACEB31E8CB9878295D470B31031A /* RCTModalManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 446C4C6613D2057CFB9884F9DACAF8F1 /* RCTModalManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 0AFF41962269C89779046793E1AE0FE7 /* RCTBackedTextInputDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = 4914796E64F630A6E2F7EC8093650BFE /* RCTBackedTextInputDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0B36FBB44F665720229F62FC21CFABAE /* RCTModalHostViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = 0596D4E6DBEDA918A70DFA8B4498AF30 /* RCTModalHostViewController.h */; settings = {ATTRIBUTES = (Project, ); }; }; 0B7207001D16534DDF0C56E7C6F71B7B /* UIColor+HexString.h in Headers */ = {isa = PBXBuildFile; fileRef = 93FD2FCA283A90F02414FA05025F9086 /* UIColor+HexString.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0B83B8382AA1631C302C6BE3F5CC6264 /* YGFloatOptional.h in Headers */ = {isa = PBXBuildFile; fileRef = C97D7BB8E6D81FF9EA727CE67095F11D /* YGFloatOptional.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0BAFAF4887E747EA3A91FED76A3C5031 /* RCTAlertManager.m in Sources */ = {isa = PBXBuildFile; fileRef = D928D107A0205FC146B0B4D0DA6217B2 /* RCTAlertManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 0BC16804FAEBD375BEC98962EA320575 /* MethodCall.h in Headers */ = {isa = PBXBuildFile; fileRef = 4E3E33C7B18343D61C3D170F017D87F0 /* MethodCall.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0C1C730E79113657836F7BC8F9978974 /* RCTActionSheetManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 80BC67BC45CE1085E5D602DD7A88F813 /* RCTActionSheetManager.m */; }; - 0C1E401FFDCA511E1D3524CC7B71C1A5 /* RNFirebase.h in Headers */ = {isa = PBXBuildFile; fileRef = 13EABF8099CB3BAAD767B05803D5839C /* RNFirebase.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0C2A5DC47FE2D6837EA44C99ABFD5834 /* EXFileSystem.h in Headers */ = {isa = PBXBuildFile; fileRef = 9D8CE8D79AD7CD91A6019AF9DB1A1495 /* EXFileSystem.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0C551985E8686CC886A539921C3EE668 /* RootView.h in Headers */ = {isa = PBXBuildFile; fileRef = 2FC8520ECC31420FA2690C6A65283618 /* RootView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0C73059A5A5BF889CEB3C2D0FA5595F9 /* UMReactNativeEventEmitter.m in Sources */ = {isa = PBXBuildFile; fileRef = 57279FEEFA03EE0D3FBF36AB7C24566D /* UMReactNativeEventEmitter.m */; }; - 0C87EB9D64AFD0A91F25F704C6523B0D /* NSTextStorage+FontScaling.h in Headers */ = {isa = PBXBuildFile; fileRef = FD4A677E9CA49D39C842FBC218DB538D /* NSTextStorage+FontScaling.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0CC1E600C980393FC929683003BC8A11 /* RCTSurfaceHostingView.h in Headers */ = {isa = PBXBuildFile; fileRef = F86A8838F13F8946E284661B2EB8E5A1 /* RCTSurfaceHostingView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0CCF45BDC92B6384522785AEDE8F0ABC /* RCTDevMenu.m in Sources */ = {isa = PBXBuildFile; fileRef = 27F8144B0940E1DC51A3C2B4A04A41F8 /* RCTDevMenu.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 0CE586BF83E29531A0E1FA35876120DF /* REASetNode.h in Headers */ = {isa = PBXBuildFile; fileRef = A32DB30A7B688DA7A3D4D627CC567A96 /* REASetNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0CF293FEA013686D3F2F8067F3713336 /* RCTSwitchManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 552B1897F67DC6773C54CAF6C57C4E61 /* RCTSwitchManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0D360F835FCBC1D6F7449ECAC5B1F8CC /* NSURLRequest+SRWebSocket.m in Sources */ = {isa = PBXBuildFile; fileRef = 311469F132A4E4FCE7A2BF8C5C518FA8 /* NSURLRequest+SRWebSocket.m */; }; - 0D5AA62B5CBCFDB275A50E0BDC16DF22 /* RNPushKitEventHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = FA6B3A8B1FA952C66BA39C4EEDA412CC /* RNPushKitEventHandler.m */; }; - 0D5FFF5C460BF47C00EC6A2A4BCB89F8 /* RCTUIManagerObserverCoordinator.mm in Sources */ = {isa = PBXBuildFile; fileRef = 672903B0E575274B044EE2771C1CAF7E /* RCTUIManagerObserverCoordinator.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 0D6DAE408F66820DF20E6D416582ADB3 /* RCTBridge+Private.h in Headers */ = {isa = PBXBuildFile; fileRef = 02C59C4B6554A3680218B0041D625C73 /* RCTBridge+Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0B83B8382AA1631C302C6BE3F5CC6264 /* YGFloatOptional.h in Headers */ = {isa = PBXBuildFile; fileRef = 7649EAE55724A02D5F081AB53C472E2B /* YGFloatOptional.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0BAFAF4887E747EA3A91FED76A3C5031 /* RCTAlertManager.m in Sources */ = {isa = PBXBuildFile; fileRef = D8AB6C8DC931DE9A770BB12FFE47E751 /* RCTAlertManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 0BC16804FAEBD375BEC98962EA320575 /* MethodCall.h in Headers */ = {isa = PBXBuildFile; fileRef = 8ADCC0F216E0F7913C3F75C7C93B7644 /* MethodCall.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0C1C730E79113657836F7BC8F9978974 /* RCTActionSheetManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 9F5DA438A0B5146F8AA8B653B1C9DE05 /* RCTActionSheetManager.m */; }; + 0C1E401FFDCA511E1D3524CC7B71C1A5 /* RNFirebase.h in Headers */ = {isa = PBXBuildFile; fileRef = D8F37DB1BAC1BA1087476BCD1EDB1F8D /* RNFirebase.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0C2A5DC47FE2D6837EA44C99ABFD5834 /* EXFileSystem.h in Headers */ = {isa = PBXBuildFile; fileRef = DBBD0F8BF355B4D86CD79147196FD9C4 /* EXFileSystem.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0C551985E8686CC886A539921C3EE668 /* RootView.h in Headers */ = {isa = PBXBuildFile; fileRef = A20E1F2D1B98BFF885E55A7C9EEC21F6 /* RootView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0C73059A5A5BF889CEB3C2D0FA5595F9 /* UMReactNativeEventEmitter.m in Sources */ = {isa = PBXBuildFile; fileRef = 82E80EAD8DC94D17BFB56E68EA5F0676 /* UMReactNativeEventEmitter.m */; }; + 0C87EB9D64AFD0A91F25F704C6523B0D /* NSTextStorage+FontScaling.h in Headers */ = {isa = PBXBuildFile; fileRef = D8105987156AE60E1367FC56E28A19ED /* NSTextStorage+FontScaling.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0CC1E600C980393FC929683003BC8A11 /* RCTSurfaceHostingView.h in Headers */ = {isa = PBXBuildFile; fileRef = 5BCF8DE26741DDA2059FE0122EE66E12 /* RCTSurfaceHostingView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0CCF45BDC92B6384522785AEDE8F0ABC /* RCTDevMenu.m in Sources */ = {isa = PBXBuildFile; fileRef = 6F30B4F4430BD17B16926BAD7E92BE0F /* RCTDevMenu.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 0CE586BF83E29531A0E1FA35876120DF /* REASetNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 3C41CCEE96E59EFFFD18F3F989DF6F24 /* REASetNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0CF293FEA013686D3F2F8067F3713336 /* RCTSwitchManager.h in Headers */ = {isa = PBXBuildFile; fileRef = DBB42A880691A8555F022897569AB967 /* RCTSwitchManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0D5AA62B5CBCFDB275A50E0BDC16DF22 /* RNPushKitEventHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = FBDAEFF00D4814C71A9FCFA6911A8F0D /* RNPushKitEventHandler.m */; }; + 0D5FFF5C460BF47C00EC6A2A4BCB89F8 /* RCTUIManagerObserverCoordinator.mm in Sources */ = {isa = PBXBuildFile; fileRef = 703A3630970263830B7E7C356A213B02 /* RCTUIManagerObserverCoordinator.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 0D6DAE408F66820DF20E6D416582ADB3 /* RCTBridge+Private.h in Headers */ = {isa = PBXBuildFile; fileRef = 600F74A2B725854868F8263604096B78 /* RCTBridge+Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; 0D7E2BB25F84CFE2561BE6FCCF597EF7 /* FIRBundleUtil.h in Headers */ = {isa = PBXBuildFile; fileRef = 108CB420FAB407BE3178EAEC6141D97E /* FIRBundleUtil.h */; settings = {ATTRIBUTES = (Project, ); }; }; 0D9556D98C79F485EE8896FC3AC92523 /* GDTCORTransport.h in Headers */ = {isa = PBXBuildFile; fileRef = 55ABCD868D69EBB8B226D955E9B65C94 /* GDTCORTransport.h */; settings = {ATTRIBUTES = (Project, ); }; }; 0E1B3276561F7EB341FA907EB1A86F04 /* upsampling.c in Sources */ = {isa = PBXBuildFile; fileRef = C6624A128D06B1B7C27D2FBFA0584A44 /* upsampling.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 0E89AE392BB117EBA5EF898E3D243727 /* RCTView.h in Headers */ = {isa = PBXBuildFile; fileRef = BE564D08050A1E2CC31F087FC0A866B6 /* RCTView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0E9A96BC607353897B6F33133E636884 /* RCTAsyncLocalStorage.m in Sources */ = {isa = PBXBuildFile; fileRef = 1DD6E94F4BB2EB60DDEA158D8DA9E9B3 /* RCTAsyncLocalStorage.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 0EB90738C1AEE8890CC35B181C099BA8 /* RCTModalHostViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 81F5EC703D7AA5A043BFC5A89F77E5DC /* RCTModalHostViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0E89AE392BB117EBA5EF898E3D243727 /* RCTView.h in Headers */ = {isa = PBXBuildFile; fileRef = F2FE328EE29084CE351BFDA9B0B1A84D /* RCTView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0E9A96BC607353897B6F33133E636884 /* RCTAsyncLocalStorage.m in Sources */ = {isa = PBXBuildFile; fileRef = 3B4F65145F6E794BAB60F60F08197DE2 /* RCTAsyncLocalStorage.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 0EB90738C1AEE8890CC35B181C099BA8 /* RCTModalHostViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 5BBBBB4DC4C22CE3A9520ADDFF3B3E85 /* RCTModalHostViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; 0F0C237F0948F4A86466E10DEA439B7D /* SDAssociatedObject.h in Headers */ = {isa = PBXBuildFile; fileRef = 23AF27BB8FC1D90102AF761B02C48033 /* SDAssociatedObject.h */; settings = {ATTRIBUTES = (Project, ); }; }; 0F112286F11B894F72C66676A5BAC325 /* SDWebImageWebPCoder-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = DAD1EC07061CD01D8DB00C1DF9CBA5B9 /* SDWebImageWebPCoder-dummy.m */; }; 0F2C29D27A4A81991C787404478AF099 /* UIImage+WebP.h in Headers */ = {isa = PBXBuildFile; fileRef = 30B2778F70E9E7B0D2AE6C69B7F5FA18 /* UIImage+WebP.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0F3C55B3AD23D445D2C973DC06EF00BF /* BugsnagCrashReport.m in Sources */ = {isa = PBXBuildFile; fileRef = 55E0D3E1D9A2FFEB2AB820673F800E52 /* BugsnagCrashReport.m */; }; - 0F3D589E134AAC1A8C2D94EF3BE48EA7 /* RCTTrackingAnimatedNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 9E5E29BC8A0F08A228A3013929100A89 /* RCTTrackingAnimatedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0F3E8D4BB17DBFF30E41EFB555B29895 /* RCTSurfaceRootView.mm in Sources */ = {isa = PBXBuildFile; fileRef = 70B951976ED7FB041821BB7F2D799980 /* RCTSurfaceRootView.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 0F4D40CEBE58229EC7B0B854D6E5FAD9 /* BSG_KSCrashSentry_User.h in Headers */ = {isa = PBXBuildFile; fileRef = 8690B5D6CABB906A84F7F9E27C302E2D /* BSG_KSCrashSentry_User.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0F74D6E0F1A38843AB6578A45C4430F2 /* RCTPicker.h in Headers */ = {isa = PBXBuildFile; fileRef = 4E7FA7C3ED395718A44170C8755F17FB /* RCTPicker.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0F9A9B467AFA8D375F679F23590C7A04 /* ja.lproj in Resources */ = {isa = PBXBuildFile; fileRef = 2E129D35D85F70842378DAED6AEA862A /* ja.lproj */; }; - 0FAA30AD698ED824A3B229298FEEA782 /* BSG_KSCrashReport.c in Sources */ = {isa = PBXBuildFile; fileRef = EF87158E83AB91F44BDB6C9DB9D56F4F /* BSG_KSCrashReport.c */; }; - 0FB7D0FA0AEE71186610F43B04E89482 /* BugsnagSessionTracker.m in Sources */ = {isa = PBXBuildFile; fileRef = 3637B0A5F74D889EBE4FEC06A504731C /* BugsnagSessionTracker.m */; }; - 0FCF8A6D7D770156352EFB7F8B790D7C /* NSError+BSG_SimpleConstructor.m in Sources */ = {isa = PBXBuildFile; fileRef = EE0C9D2BC6D6081E1FD6FA2B41F8B47E /* NSError+BSG_SimpleConstructor.m */; }; - 0FD44CE17B9EDD07C17D8409BBB20765 /* RCTParserUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = 32A92903CC9F58C188FC431919F6F5FF /* RCTParserUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0FD596FBE550953CD15F5607D99F958B /* RCTReloadCommand.h in Headers */ = {isa = PBXBuildFile; fileRef = 3E2C1CEB3D196D4E4917BDD83DFDC203 /* RCTReloadCommand.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 10168B721987DC2FA1F6508094876B8D /* BSG_KSJSONCodecObjC.m in Sources */ = {isa = PBXBuildFile; fileRef = C3B02F019F3C05BE57654F61A3656B34 /* BSG_KSJSONCodecObjC.m */; }; - 101E1B4ACE356E9F4F94FD5EBB71BE85 /* BSG_KSSysCtl.c in Sources */ = {isa = PBXBuildFile; fileRef = 6E45F889C3FE17736E3EF7B34177B638 /* BSG_KSSysCtl.c */; }; + 0F3C55B3AD23D445D2C973DC06EF00BF /* BugsnagCrashReport.m in Sources */ = {isa = PBXBuildFile; fileRef = 816C0B31B2C064EF1BD1EE2C047B6A44 /* BugsnagCrashReport.m */; }; + 0F3D589E134AAC1A8C2D94EF3BE48EA7 /* RCTTrackingAnimatedNode.h in Headers */ = {isa = PBXBuildFile; fileRef = D7794F9473569D9DBA4A12E7B350CE6B /* RCTTrackingAnimatedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0F3E8D4BB17DBFF30E41EFB555B29895 /* RCTSurfaceRootView.mm in Sources */ = {isa = PBXBuildFile; fileRef = C6974E631DAFDFEC150F6548B10353B7 /* RCTSurfaceRootView.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 0F4D40CEBE58229EC7B0B854D6E5FAD9 /* BSG_KSCrashSentry_User.h in Headers */ = {isa = PBXBuildFile; fileRef = A9D023EECEF6EF99FAB5D00FF2748EEB /* BSG_KSCrashSentry_User.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0F74D6E0F1A38843AB6578A45C4430F2 /* RCTPicker.h in Headers */ = {isa = PBXBuildFile; fileRef = C93A5EA5086EA98FAB9852F64384774F /* RCTPicker.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0F9A9B467AFA8D375F679F23590C7A04 /* ja.lproj in Resources */ = {isa = PBXBuildFile; fileRef = CFF77FA29836B0D7440C94D956777A5E /* ja.lproj */; }; + 0FAA30AD698ED824A3B229298FEEA782 /* BSG_KSCrashReport.c in Sources */ = {isa = PBXBuildFile; fileRef = F263AE99A545514DD632E73E0F628846 /* BSG_KSCrashReport.c */; }; + 0FB7D0FA0AEE71186610F43B04E89482 /* BugsnagSessionTracker.m in Sources */ = {isa = PBXBuildFile; fileRef = 48DEE3CBA13B8FCBBD36CA46389BF087 /* BugsnagSessionTracker.m */; }; + 0FCF8A6D7D770156352EFB7F8B790D7C /* NSError+BSG_SimpleConstructor.m in Sources */ = {isa = PBXBuildFile; fileRef = B346361ACF4080E6B4D9A5ADF5C59F3D /* NSError+BSG_SimpleConstructor.m */; }; + 0FD44CE17B9EDD07C17D8409BBB20765 /* RCTParserUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = 5DC44C6607404E13FC04107356853ADB /* RCTParserUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0FD596FBE550953CD15F5607D99F958B /* RCTReloadCommand.h in Headers */ = {isa = PBXBuildFile; fileRef = 626A53AAB2F22C619F60189EA67E963B /* RCTReloadCommand.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 10168B721987DC2FA1F6508094876B8D /* BSG_KSJSONCodecObjC.m in Sources */ = {isa = PBXBuildFile; fileRef = EE916842094A1E66A118A3EF09B92D96 /* BSG_KSJSONCodecObjC.m */; }; + 101E1B4ACE356E9F4F94FD5EBB71BE85 /* BSG_KSSysCtl.c in Sources */ = {isa = PBXBuildFile; fileRef = 328E43D019FF2742D785C617C3826662 /* BSG_KSSysCtl.c */; }; 1045178BFBC6E58CEDC65E19F91A7CB9 /* GDTFLLPrioritizer.m in Sources */ = {isa = PBXBuildFile; fileRef = 500E76CDFB8113AFD9AC1DB0CB454843 /* GDTFLLPrioritizer.m */; }; - 107C4519DAD004793550C86DB342BF13 /* JSDeltaBundleClient.h in Headers */ = {isa = PBXBuildFile; fileRef = 6E35D717020D8896440BE519CB959D0C /* JSDeltaBundleClient.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1092BB8011776EF67080DC8649C68F22 /* RNFirebaseAdMobRewardedVideo.m in Sources */ = {isa = PBXBuildFile; fileRef = 12AFEB92B4444D9FDEBA96AC02F82E66 /* RNFirebaseAdMobRewardedVideo.m */; }; + 107C4519DAD004793550C86DB342BF13 /* JSDeltaBundleClient.h in Headers */ = {isa = PBXBuildFile; fileRef = 827690DE743685D8E5129378CA84CA1A /* JSDeltaBundleClient.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1092BB8011776EF67080DC8649C68F22 /* RNFirebaseAdMobRewardedVideo.m in Sources */ = {isa = PBXBuildFile; fileRef = 7069C2C936229A00CE1EFCE2C0FEC1C9 /* RNFirebaseAdMobRewardedVideo.m */; }; 10B88123E4B69BD0762CDB5A90CF066A /* GULSwizzler.m in Sources */ = {isa = PBXBuildFile; fileRef = 238912792225FCFD2816B4E4CF1D3D79 /* GULSwizzler.m */; }; - 10D68B02FDF05C99237E067F9918509D /* RNFetchBlobRequest.h in Headers */ = {isa = PBXBuildFile; fileRef = 590BC99D468B137EC35CDA917EBF0708 /* RNFetchBlobRequest.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 10F2442EBE6313786A5CD8D0DB09736C /* RCTImageDataDecoder.h in Headers */ = {isa = PBXBuildFile; fileRef = 5774C2C05049631DE87F2C907B6A314F /* RCTImageDataDecoder.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 10D68B02FDF05C99237E067F9918509D /* RNFetchBlobRequest.h in Headers */ = {isa = PBXBuildFile; fileRef = BE70D642DE39B95B31E9EF38AC541D66 /* RNFetchBlobRequest.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 10F2442EBE6313786A5CD8D0DB09736C /* RCTImageDataDecoder.h in Headers */ = {isa = PBXBuildFile; fileRef = 46FDBBA42C73AF080F4CAECDA4F7BD6E /* RCTImageDataDecoder.h */; settings = {ATTRIBUTES = (Project, ); }; }; 110663446F2A96F5275705CA7143F736 /* FIRInstanceIDLogger.h in Headers */ = {isa = PBXBuildFile; fileRef = FBB3943BA57703F03AC1AE6E9180EC2B /* FIRInstanceIDLogger.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 110686C3B9BFABED7EF510599B8F4BA4 /* RCTKeyCommandConstants.h in Headers */ = {isa = PBXBuildFile; fileRef = B5E6032FEAC635340844207134541077 /* RCTKeyCommandConstants.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 110BBF5833CF8C4CA65E11D6C0374191 /* BSG_KSJSONCodec.h in Headers */ = {isa = PBXBuildFile; fileRef = C7C013F8C1B065D53C6E7653BAB68572 /* BSG_KSJSONCodec.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 110686C3B9BFABED7EF510599B8F4BA4 /* RCTKeyCommandConstants.h in Headers */ = {isa = PBXBuildFile; fileRef = E32A3DAAA429A80F2BF6D523F06F9CC7 /* RCTKeyCommandConstants.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 110BBF5833CF8C4CA65E11D6C0374191 /* BSG_KSJSONCodec.h in Headers */ = {isa = PBXBuildFile; fileRef = DB1396294BD397C47DFE2E77940D40C5 /* BSG_KSJSONCodec.h */; settings = {ATTRIBUTES = (Project, ); }; }; 111BF626ABBCE8E04BB4E1EEB8787C09 /* SDWebImageCacheSerializer.m in Sources */ = {isa = PBXBuildFile; fileRef = C98669397B6EB380F73981625F007E41 /* SDWebImageCacheSerializer.m */; }; - 1152E236D3BFBB5B1171698F8642FE45 /* JSIndexedRAMBundle.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1AB8F4E46E2657ADD2B3E9F7B2C4C0FB /* JSIndexedRAMBundle.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 116192D11F0F7C27B891EC46BEB67776 /* BSG_KSCrashSentry_NSException.h in Headers */ = {isa = PBXBuildFile; fileRef = B008DCBA1F86445C58EA17A32051D55D /* BSG_KSCrashSentry_NSException.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1152E236D3BFBB5B1171698F8642FE45 /* JSIndexedRAMBundle.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BDE91D39AAB6655D69E37B7A15E64831 /* JSIndexedRAMBundle.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 116192D11F0F7C27B891EC46BEB67776 /* BSG_KSCrashSentry_NSException.h in Headers */ = {isa = PBXBuildFile; fileRef = A78A2E361B03399C72BAE17355644251 /* BSG_KSCrashSentry_NSException.h */; settings = {ATTRIBUTES = (Project, ); }; }; 11629DF38EC6C86FE4002B0EF764297B /* UIImageView+WebCache.m in Sources */ = {isa = PBXBuildFile; fileRef = AF56195464AFAF7C34D6F48C7CFF702E /* UIImageView+WebCache.m */; }; - 118927A3BC6A658BB88536CE7C1B0BE3 /* BSG_KSCrashState.h in Headers */ = {isa = PBXBuildFile; fileRef = FEE01462E2FB6778E0E88ACD48E7591B /* BSG_KSCrashState.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 118927A3BC6A658BB88536CE7C1B0BE3 /* BSG_KSCrashState.h in Headers */ = {isa = PBXBuildFile; fileRef = B0BA1896A9685A2D8B9372F886B345DA /* BSG_KSCrashState.h */; settings = {ATTRIBUTES = (Project, ); }; }; 11AB86078F205218D679E1C0BB086684 /* cached-powers.h in Headers */ = {isa = PBXBuildFile; fileRef = 2B60F0B412AB14099AD2E2BCB853B9F5 /* cached-powers.h */; settings = {ATTRIBUTES = (Project, ); }; }; 11B33B2F8BB6CFADE2A5ED140CFEC8C1 /* signalhandler.cc in Sources */ = {isa = PBXBuildFile; fileRef = 993AC02EC1C111E4334D17D3E0BBE05E /* signalhandler.cc */; settings = {COMPILER_FLAGS = "-Wno-shorten-64-to-32"; }; }; 1229180557BB3A7AD13E3DC16B283B14 /* SDGraphicsImageRenderer.h in Headers */ = {isa = PBXBuildFile; fileRef = A2CB7B6EE46AF3166A4B3053A322A61C /* SDGraphicsImageRenderer.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1234DA362C104A5687EE842DEE6540AE /* BugsnagErrorReportApiClient.m in Sources */ = {isa = PBXBuildFile; fileRef = 9F51578C89DD9E17BD6B471ED8C51D18 /* BugsnagErrorReportApiClient.m */; }; - 12478C3DEA4C049CB9A2CA1CD20C89DA /* rn-extensions-share-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = A0A1B18683237ABED0E0AECAC13E49AA /* rn-extensions-share-dummy.m */; }; - 125342FA79F416BFC2462CBEB29FBD3B /* RCTMultilineTextInputViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 402D285E9F45B171CBAC43E39897E804 /* RCTMultilineTextInputViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 126F40666E812A4A6E90817FF328B49D /* RNFetchBlobFS.h in Headers */ = {isa = PBXBuildFile; fileRef = C4C97EB33BAAD82406A582703949A3F7 /* RNFetchBlobFS.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1234DA362C104A5687EE842DEE6540AE /* BugsnagErrorReportApiClient.m in Sources */ = {isa = PBXBuildFile; fileRef = 1A29891C6206BC22C536908B9B91F548 /* BugsnagErrorReportApiClient.m */; }; + 12478C3DEA4C049CB9A2CA1CD20C89DA /* rn-extensions-share-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = DDD7D632A4B00C25C2E623FB991C7407 /* rn-extensions-share-dummy.m */; }; + 125342FA79F416BFC2462CBEB29FBD3B /* RCTMultilineTextInputViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 2193A9C6C7D6978D5F7970B023F4A848 /* RCTMultilineTextInputViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 126F40666E812A4A6E90817FF328B49D /* RNFetchBlobFS.h in Headers */ = {isa = PBXBuildFile; fileRef = EE41772303EB8B4AAAE644DFC403733A /* RNFetchBlobFS.h */; settings = {ATTRIBUTES = (Project, ); }; }; 127076FAD518DE8F520B404457D45FF5 /* FBLPromise+Testing.h in Headers */ = {isa = PBXBuildFile; fileRef = 2C015C102D6AB79D534F16ADF531CE8A /* FBLPromise+Testing.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1281344D19FA3223B267A1EAA6DEA09F /* RCTDatePickerManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 22316581D00EF39F8C035146857EE459 /* RCTDatePickerManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 12A09B07EAE7194E9F183DF6EAEB4850 /* RCTScrollContentShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = 04401F754D467E27089BDCB37E19F6C3 /* RCTScrollContentShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 12C621AF654295B051104624EC13F961 /* RCTFont.h in Headers */ = {isa = PBXBuildFile; fileRef = 7061F23193E7B4E0C91B0D98949730ED /* RCTFont.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 12DD5DE7278177DF30D74E5E4991BEA5 /* RCTPointerEvents.h in Headers */ = {isa = PBXBuildFile; fileRef = 6951354FB7E0B0A22B73913FA8424442 /* RCTPointerEvents.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 131A4F913E2F1E98913D8D766736C5C1 /* JSCExecutorFactory.mm in Sources */ = {isa = PBXBuildFile; fileRef = C585D0C0783603E2C7D37BCB426D1971 /* JSCExecutorFactory.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 1328941F49991BEB7900B9FAE0861076 /* RCTI18nManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 3E24B5E9BA4E1E8734E0431140E2D485 /* RCTI18nManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 1328F683A4C0D079350259A18A68938A /* JSINativeModules.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 4A1120550B2A2794884C5EEF6E3C885C /* JSINativeModules.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 1281344D19FA3223B267A1EAA6DEA09F /* RCTDatePickerManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 87B42A9BC9EA2574581724D063832874 /* RCTDatePickerManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 12A09B07EAE7194E9F183DF6EAEB4850 /* RCTScrollContentShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = 5A7B0C1C76773A38052B63E278819AC5 /* RCTScrollContentShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 12C621AF654295B051104624EC13F961 /* RCTFont.h in Headers */ = {isa = PBXBuildFile; fileRef = E685B71F8689B89D0EC15B716377D563 /* RCTFont.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 12DD5DE7278177DF30D74E5E4991BEA5 /* RCTPointerEvents.h in Headers */ = {isa = PBXBuildFile; fileRef = 1E24061819610A9D72F6BA23D9759EA7 /* RCTPointerEvents.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 131A4F913E2F1E98913D8D766736C5C1 /* JSCExecutorFactory.mm in Sources */ = {isa = PBXBuildFile; fileRef = 9583EC8BD5CEB3AF7B3F5B83709C7A44 /* JSCExecutorFactory.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 1328941F49991BEB7900B9FAE0861076 /* RCTI18nManager.m in Sources */ = {isa = PBXBuildFile; fileRef = BB0938370789745029F383FA8B6BDAA6 /* RCTI18nManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 1328F683A4C0D079350259A18A68938A /* JSINativeModules.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 0ACB608E847D51BFEF7567016CD38ECC /* JSINativeModules.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; 1340A92BC48BF0D0E320FFD57737B166 /* FBLPromise+Catch.m in Sources */ = {isa = PBXBuildFile; fileRef = 9338EA7FE417C2BDF76DEEE30198B2B8 /* FBLPromise+Catch.m */; }; - 1352441B7E9907AD4E56358E520341F0 /* RCTSinglelineTextInputView.h in Headers */ = {isa = PBXBuildFile; fileRef = C8B94668C2766AEEB3B887E70C7A39ED /* RCTSinglelineTextInputView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1354B5A202FE5B927603FE3F3934ADF1 /* RCTNativeModule.mm in Sources */ = {isa = PBXBuildFile; fileRef = 2F2911EE8CF76A3661108A945FBBCDA0 /* RCTNativeModule.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 135CA47E90F11A11511D769C60754F77 /* REATransitionValues.m in Sources */ = {isa = PBXBuildFile; fileRef = 816E8087D0B4D4448E5E58682E2671EF /* REATransitionValues.m */; }; + 1352441B7E9907AD4E56358E520341F0 /* RCTSinglelineTextInputView.h in Headers */ = {isa = PBXBuildFile; fileRef = 7DE782C2BD00BB7546E6EC40C41AFC0C /* RCTSinglelineTextInputView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1354B5A202FE5B927603FE3F3934ADF1 /* RCTNativeModule.mm in Sources */ = {isa = PBXBuildFile; fileRef = 9F6CD9F6F458EF420C5CD6FEEC5CF91B /* RCTNativeModule.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 135CA47E90F11A11511D769C60754F77 /* REATransitionValues.m in Sources */ = {isa = PBXBuildFile; fileRef = 65D732F2884AB3C353026D8706FD986C /* REATransitionValues.m */; }; 13908C215FAF98E1987E6DD3F7A6C858 /* GULNSData+zlib.h in Headers */ = {isa = PBXBuildFile; fileRef = 93C7F9D33807C629347B5CC327303501 /* GULNSData+zlib.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 13910E80E165B0FD5041DF222C1B3339 /* ARTShape.h in Headers */ = {isa = PBXBuildFile; fileRef = 106AF01BC69D72B6002781D8A758CBB9 /* ARTShape.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 13B3A8F3BBFB94FC266C8B2D127F2001 /* JSINativeModules.h in Headers */ = {isa = PBXBuildFile; fileRef = DBDFD00E0D0F645440B3C52CDAF3924E /* JSINativeModules.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 13910E80E165B0FD5041DF222C1B3339 /* ARTShape.h in Headers */ = {isa = PBXBuildFile; fileRef = 8958EDE284309A7EAFBB83F9365B0567 /* ARTShape.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 13B3A8F3BBFB94FC266C8B2D127F2001 /* JSINativeModules.h in Headers */ = {isa = PBXBuildFile; fileRef = AB0419027ACC2037AFACF6BBC785FFB3 /* JSINativeModules.h */; settings = {ATTRIBUTES = (Project, ); }; }; 13DB00DEA52829F591682707236F7779 /* FIRInstallationsIIDTokenStore.h in Headers */ = {isa = PBXBuildFile; fileRef = 09A8F5B7DA6974622D6C9A6189F7FAEE /* FIRInstallationsIIDTokenStore.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 13EAEB1E6CFD48E9CFE15F88743AC92C /* RCTAppState.m in Sources */ = {isa = PBXBuildFile; fileRef = 9FF10750196677D1DEC87898FEF4B219 /* RCTAppState.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 141CB062270AB0D64040EE9FF7CCDFC0 /* RCTCustomKeyboardViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 17B73A3797F5839F9406A5822140831E /* RCTCustomKeyboardViewController.m */; }; + 13EAEB1E6CFD48E9CFE15F88743AC92C /* RCTAppState.m in Sources */ = {isa = PBXBuildFile; fileRef = 08785549EF25E1D47BD6FF4EB6DA3892 /* RCTAppState.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 141CB062270AB0D64040EE9FF7CCDFC0 /* RCTCustomKeyboardViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = BCFF8DBCFA53E8201EA4B50E97598095 /* RCTCustomKeyboardViewController.m */; }; 143514A20BA542FDEC6E1C150B00248B /* FIRInstallationsStatus.h in Headers */ = {isa = PBXBuildFile; fileRef = 226470D5AC918D710F1EE1BDBAADC256 /* FIRInstallationsStatus.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 14422B587C7D1474F869D259CFF998CC /* RCTRawTextViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 63109D175A5FD3B40F98A65BCBDA80B6 /* RCTRawTextViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 14422B587C7D1474F869D259CFF998CC /* RCTRawTextViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = B02E191D7CCFB36F49F8903DA1DB0940 /* RCTRawTextViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; 1451A870A667B770CA7921A66DF1382B /* FIRInstallationsItem.h in Headers */ = {isa = PBXBuildFile; fileRef = D3ABC6469D72A242803A91AF2DA0B153 /* FIRInstallationsItem.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 14660286F6DC6FCABD38E2C1F70CFC01 /* ReactMarker.h in Headers */ = {isa = PBXBuildFile; fileRef = C4D1DE2786652F59731EDEF8A0DBF47C /* ReactMarker.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 14660286F6DC6FCABD38E2C1F70CFC01 /* ReactMarker.h in Headers */ = {isa = PBXBuildFile; fileRef = 0BFE950C765DC0ADE9C93BF29C121691 /* ReactMarker.h */; settings = {ATTRIBUTES = (Project, ); }; }; 1478C97F0EFA9E58B5A017551A091B98 /* SDWebImageError.h in Headers */ = {isa = PBXBuildFile; fileRef = 726CEC5D657E14C2D28E2608DB007104 /* SDWebImageError.h */; settings = {ATTRIBUTES = (Project, ); }; }; 14A3CA4B77271ED4415356A1FBA7362F /* dsp.h in Headers */ = {isa = PBXBuildFile; fileRef = C74C60148A4948BAD446E2F2B11586EB /* dsp.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 14AA7CA15F034772E8B2636CFE2A5C85 /* ReactCommon-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 9E0FF4ADBE373E8B88BEEB975D4CC769 /* ReactCommon-dummy.m */; }; - 14BCE7072FC4CE33BC35324A78BE2FAE /* RCTMultilineTextInputView.h in Headers */ = {isa = PBXBuildFile; fileRef = 63D00D396E1DDAB0E268E279D996EAA1 /* RCTMultilineTextInputView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 14DD05E4CFBF56241AC5D65134AF6AB8 /* RCTSinglelineTextInputView.m in Sources */ = {isa = PBXBuildFile; fileRef = 608100E743082C1CA5FB2818A68155EA /* RCTSinglelineTextInputView.m */; }; - 14F9F3C4C0A1E8EF80C71FA3A569FDF1 /* RCTInputAccessoryViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = FBDA62D7D4CABA46A2DFC2F3A9FCC095 /* RCTInputAccessoryViewManager.m */; }; + 14AA7CA15F034772E8B2636CFE2A5C85 /* ReactCommon-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = B7A3682421142A23D4ABB6E7CD245A96 /* ReactCommon-dummy.m */; }; + 14BCE7072FC4CE33BC35324A78BE2FAE /* RCTMultilineTextInputView.h in Headers */ = {isa = PBXBuildFile; fileRef = 5F66F1E3E71254F5A951B94C0A5FE22F /* RCTMultilineTextInputView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 14DD05E4CFBF56241AC5D65134AF6AB8 /* RCTSinglelineTextInputView.m in Sources */ = {isa = PBXBuildFile; fileRef = 5CF4ACDFB96383F590C01F0004DB1A1A /* RCTSinglelineTextInputView.m */; }; + 14F9F3C4C0A1E8EF80C71FA3A569FDF1 /* RCTInputAccessoryViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 8A00AB569D049133AE6D7ACA512DF937 /* RCTInputAccessoryViewManager.m */; }; 14FBD8CB3447A6D5C521A0193AF4C43E /* GULNSData+zlib.m in Sources */ = {isa = PBXBuildFile; fileRef = 6B3000A1D45E185CABEFD0B060F04FC4 /* GULNSData+zlib.m */; }; - 15135A9A67B4019F2CC03E7D5FACA0FE /* RCTTypeSafety-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 138D6641C7D6ECA256E1490D0D5FC838 /* RCTTypeSafety-dummy.m */; }; + 15135A9A67B4019F2CC03E7D5FACA0FE /* RCTTypeSafety-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 65484968CCFD85A1DDBC1B92EE4D30D9 /* RCTTypeSafety-dummy.m */; }; 1536DE229D62C9EF155775D756DD3921 /* SDAsyncBlockOperation.m in Sources */ = {isa = PBXBuildFile; fileRef = C4539C0D5139FA433EA40799F1AC83A5 /* SDAsyncBlockOperation.m */; }; 153C36E5468C038F1974115A982058E8 /* GDTFLLUploader.h in Headers */ = {isa = PBXBuildFile; fileRef = 6B8FEC8581AD19DDD78ABBB18ECE2F22 /* GDTFLLUploader.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 154C752B3AAEDBCD978036AE32CAB1BD /* RCTValueAnimatedNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 06838361DB5743523DF21901D2F16D10 /* RCTValueAnimatedNode.m */; }; - 1557BAF14C9A6976E7C40616CCA7944C /* JSIExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = 6D89AF8CB73F0475A009662F3DD61F7B /* JSIExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 15AF61B7B72DD93E6B1F6FC5B420F7DF /* Yoga.h in Headers */ = {isa = PBXBuildFile; fileRef = 7110E2F65494A326F44479E0E02B9EA6 /* Yoga.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 15B714B84953652DA8EAD8B5661F5D17 /* RCTActionSheetManager.h in Headers */ = {isa = PBXBuildFile; fileRef = A724CB86DBDDC1034E5423677B33B545 /* RCTActionSheetManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 15CAF5C633711E2C121CC6A30FEB1848 /* UMUtilitiesInterface.h in Headers */ = {isa = PBXBuildFile; fileRef = 985F95F23921DC850D948490B4FB6A1A /* UMUtilitiesInterface.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 15D79F4277BA759EC85E7DD868E3A4C4 /* RCTSwitchManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 1CFC539F4AA6744CCCC5DA15DE242897 /* RCTSwitchManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 154C752B3AAEDBCD978036AE32CAB1BD /* RCTValueAnimatedNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 7ED3AF06321ED85BB28A9F1F6A54E2D9 /* RCTValueAnimatedNode.m */; }; + 1557BAF14C9A6976E7C40616CCA7944C /* JSIExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = 4FF70E7A6CD9CDDA0BD7D426216CD3FC /* JSIExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 15AF61B7B72DD93E6B1F6FC5B420F7DF /* Yoga.h in Headers */ = {isa = PBXBuildFile; fileRef = 3227282E2EF72045F2D73E9B1891162B /* Yoga.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 15B714B84953652DA8EAD8B5661F5D17 /* RCTActionSheetManager.h in Headers */ = {isa = PBXBuildFile; fileRef = EBFB993F9F9D883A19EDCB87F5F7E89E /* RCTActionSheetManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 15CAF5C633711E2C121CC6A30FEB1848 /* UMUtilitiesInterface.h in Headers */ = {isa = PBXBuildFile; fileRef = B70C656C30A9978DF60302DE8BC606CD /* UMUtilitiesInterface.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 15D79F4277BA759EC85E7DD868E3A4C4 /* RCTSwitchManager.m in Sources */ = {isa = PBXBuildFile; fileRef = E09C33EAFB2C86899356F040D09A7395 /* RCTSwitchManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; 15D7CCF59D45A8AEB4224BD291FC9910 /* huffman_utils.h in Headers */ = {isa = PBXBuildFile; fileRef = 1C4857A0842D2EBB815D30CCE3A20B92 /* huffman_utils.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 15F44C32023C26032714E53545E8B3F5 /* RNCWKProcessPoolManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 6583819C2D0075DAAE5ED707C9A9A91D /* RNCWKProcessPoolManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 15F44C32023C26032714E53545E8B3F5 /* RNCWKProcessPoolManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 18BA23CCE2E4009C79ADFF14DEF6AEC5 /* RNCWKProcessPoolManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; 15FA0CEC28541CA4EF930A1163CEAB50 /* lossless_mips_dsp_r2.c in Sources */ = {isa = PBXBuildFile; fileRef = D93D3654709D1331D79514EC1B960450 /* lossless_mips_dsp_r2.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 164A3F991FCC1341F1E46E003371F224 /* RCTSurfaceHostingProxyRootView.mm in Sources */ = {isa = PBXBuildFile; fileRef = 4949477EDE0B58D8E10B1D1E56C035BC /* RCTSurfaceHostingProxyRootView.mm */; 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 = F6E32E206DAF749BA6BF9A9A917D0C4F /* EXWebBrowser.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 169B31B58BC0F2BBFA82EAC8F165F361 /* RCTConvert+Text.h in Headers */ = {isa = PBXBuildFile; fileRef = D95CA5A405D8A647E0023BAA9DB29152 /* RCTConvert+Text.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 170322932D8FC0F02AA360A25D994D98 /* UIResponder+FirstResponder.m in Sources */ = {isa = PBXBuildFile; fileRef = B4936E886594F0F86E4CB217B2D498E3 /* UIResponder+FirstResponder.m */; }; - 1728749B028AD1D781945AAA91BE736E /* AudioRecorderManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 5029EBDDAA64A35DF8B5D51EE9343462 /* AudioRecorderManager.m */; }; - 172E676A7EEA5B4EB058AFE8453B62C0 /* TurboCxxModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 1E0B6A044D5B728554C8DC8921B8E9A9 /* TurboCxxModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 173B9B2399E756F996763591588AFE57 /* RCTNativeModule.h in Headers */ = {isa = PBXBuildFile; fileRef = FDE859A1CFE903D73EC496F2808B21A4 /* RCTNativeModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 176E21BC9C50FFBB8929F3C72F7E3241 /* RCTBorderStyle.h in Headers */ = {isa = PBXBuildFile; fileRef = E2ABE02A530914E3F0722FAAA0A7AF7D /* RCTBorderStyle.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 17A36219C987CD12C5A1C50EA590D11A /* EXReactNativeUserNotificationCenterProxy.h in Headers */ = {isa = PBXBuildFile; fileRef = 0E4FC61FDB9C2A7998C8AAA89FF843E4 /* EXReactNativeUserNotificationCenterProxy.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 17DFF9A451798288365E8AB8A0784530 /* RCTScrollViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = AF5387405863629488A740A14865A803 /* RCTScrollViewManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 1832399A5D86191FBC62039FAA886F24 /* EXWebBrowser.m in Sources */ = {isa = PBXBuildFile; fileRef = 2DF2C146D066E5391A35C0AABECF830B /* EXWebBrowser.m */; }; - 18508BF0F3BB7FB5771E7208D859296F /* EXHapticsModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 902C612F40E547BCFA5567CA0308FA68 /* EXHapticsModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 187D94A9F0B845CEE3B305C8ECBA9A13 /* RCTScrollContentView.m in Sources */ = {isa = PBXBuildFile; fileRef = 2D078396B9ADE58EE3989BC92CE12587 /* RCTScrollContentView.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 164A3F991FCC1341F1E46E003371F224 /* RCTSurfaceHostingProxyRootView.mm in Sources */ = {isa = PBXBuildFile; fileRef = A765AE10C0799D6B63E133F1DDE1DADA /* RCTSurfaceHostingProxyRootView.mm */; 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 = 7B95F2071F2159579CD2F412BD046134 /* EXWebBrowser.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 169B31B58BC0F2BBFA82EAC8F165F361 /* RCTConvert+Text.h in Headers */ = {isa = PBXBuildFile; fileRef = C727C9881A4A63C180CB13D3CCA55B7A /* RCTConvert+Text.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 170322932D8FC0F02AA360A25D994D98 /* UIResponder+FirstResponder.m in Sources */ = {isa = PBXBuildFile; fileRef = 1F2694B84B88592AC03EEAFC669C6EA5 /* UIResponder+FirstResponder.m */; }; + 1728749B028AD1D781945AAA91BE736E /* AudioRecorderManager.m in Sources */ = {isa = PBXBuildFile; fileRef = DFEB94ECFAAC6871B13FB3FD9E83AA75 /* AudioRecorderManager.m */; }; + 172E676A7EEA5B4EB058AFE8453B62C0 /* TurboCxxModule.h in Headers */ = {isa = PBXBuildFile; fileRef = A5F448386CBE4CD578FDCAC472B044C8 /* TurboCxxModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 173B9B2399E756F996763591588AFE57 /* RCTNativeModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 006460EA0650490D0C00C3D9A1657D8C /* RCTNativeModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 176E21BC9C50FFBB8929F3C72F7E3241 /* RCTBorderStyle.h in Headers */ = {isa = PBXBuildFile; fileRef = 5BE3A2681A336B566EDEA9C2612B8182 /* RCTBorderStyle.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 17A36219C987CD12C5A1C50EA590D11A /* EXReactNativeUserNotificationCenterProxy.h in Headers */ = {isa = PBXBuildFile; fileRef = 07436AC34D3C651F8C4B86BFCF86FA9B /* EXReactNativeUserNotificationCenterProxy.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 17DFF9A451798288365E8AB8A0784530 /* RCTScrollViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 81E08A05E77AD5C7A1020F208DFD4033 /* RCTScrollViewManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 1832399A5D86191FBC62039FAA886F24 /* EXWebBrowser.m in Sources */ = {isa = PBXBuildFile; fileRef = 08269F5E1ADC589B6299F651DDDCAA79 /* EXWebBrowser.m */; }; + 18508BF0F3BB7FB5771E7208D859296F /* EXHapticsModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 7AF3BD1A9F7EC671AB4355057ED5C34F /* EXHapticsModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 187D94A9F0B845CEE3B305C8ECBA9A13 /* RCTScrollContentView.m in Sources */ = {isa = PBXBuildFile; fileRef = E41A0625572600783D5F31ED7F045ED2 /* RCTScrollContentView.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; 18A68BC1A619AFFD7CCB45B0AEB98715 /* SDInternalMacros.h in Headers */ = {isa = PBXBuildFile; fileRef = 1CA3042722DE6BE862DDD182F6A65072 /* SDInternalMacros.h */; settings = {ATTRIBUTES = (Project, ); }; }; 18CE7AC942DCECCDCE8C8153D7CA9E2C /* SDImageIOAnimatedCoder.h in Headers */ = {isa = PBXBuildFile; fileRef = 0078CF9DAC8CC4187F6E291B8F51727E /* SDImageIOAnimatedCoder.h */; settings = {ATTRIBUTES = (Project, ); }; }; 18E054C5BBDA83CCE21A718C8DD17262 /* Unicode.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 05D21B2E62B525961EA9BE1309FB1D32 /* Unicode.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 18F803F363DA4D252D73E4C3C33535F6 /* RCTShadowView+Internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 4C34EA46220E67405BD96475B2FA73A8 /* RCTShadowView+Internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 18FF465AC2ED82AD0A5A0501AACD0956 /* BugsnagCrashSentry.m in Sources */ = {isa = PBXBuildFile; fileRef = 2953AFEA5B472DB9615C22E8789CB2BF /* BugsnagCrashSentry.m */; }; - 1921059D97551DED6DBBA916DBA150C5 /* QBAssetsViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 3F80CA067CF0BF512E417DCE081EEC75 /* QBAssetsViewController.m */; }; - 19389D1DC51D68F8312739317DE39C2A /* JsArgumentHelpers.h in Headers */ = {isa = PBXBuildFile; fileRef = 068DD97BE9C269FD40A197EF8547742A /* JsArgumentHelpers.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1948B4CBDE4703BC5BDFB832E73A0A1D /* UMViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = A91632BCF57834B6021F6B7E46C47237 /* UMViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 195EDF63D05599454DC50CD6100A1D14 /* RCTPerformanceLogger.m in Sources */ = {isa = PBXBuildFile; fileRef = 03C2AD1FC34E990747B1A8212A73590A /* RCTPerformanceLogger.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 19A77F5198AE35F6170EF743E166358A /* ModuleRegistry.h in Headers */ = {isa = PBXBuildFile; fileRef = A93914AD7BBA0852CFDE369494A246B1 /* ModuleRegistry.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 18F803F363DA4D252D73E4C3C33535F6 /* RCTShadowView+Internal.h in Headers */ = {isa = PBXBuildFile; fileRef = B870C42FE47EB3A8EAF297F39C532938 /* RCTShadowView+Internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 18FF465AC2ED82AD0A5A0501AACD0956 /* BugsnagCrashSentry.m in Sources */ = {isa = PBXBuildFile; fileRef = E1FFF77D872452CBB7158389EFFA898E /* BugsnagCrashSentry.m */; }; + 1921059D97551DED6DBBA916DBA150C5 /* QBAssetsViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 98C1DBFA71052149F3EE5D9EFC687522 /* QBAssetsViewController.m */; }; + 19389D1DC51D68F8312739317DE39C2A /* JsArgumentHelpers.h in Headers */ = {isa = PBXBuildFile; fileRef = 6321263A248630E4645EA7591C0BBE5F /* JsArgumentHelpers.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1948B4CBDE4703BC5BDFB832E73A0A1D /* UMViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = B089D6C9E9764C06EFB3B2037BF93AE0 /* UMViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 195EDF63D05599454DC50CD6100A1D14 /* RCTPerformanceLogger.m in Sources */ = {isa = PBXBuildFile; fileRef = 750F08B5CAD7FE8C0ADA4879A3D39F4F /* RCTPerformanceLogger.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 19A77F5198AE35F6170EF743E166358A /* ModuleRegistry.h in Headers */ = {isa = PBXBuildFile; fileRef = 3B4E37F98268D21A8352B832538BC8EA /* ModuleRegistry.h */; settings = {ATTRIBUTES = (Project, ); }; }; 19B3BC4E2828FB30D6FE19E66BBBC724 /* token_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = A99DA828BE8FDFE29CCA18FF1A666E27 /* token_enc.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; 19BB6A5959515A1DBDDC1B41C2E63739 /* FIRCoreDiagnosticsConnector.h in Headers */ = {isa = PBXBuildFile; fileRef = 52CDBAFD1C6554282FCD586FFBA8FFFD /* FIRCoreDiagnosticsConnector.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1A02EAB59D9B047FEBAC7C67C5DF51E5 /* RCTSurfacePresenterStub.m in Sources */ = {isa = PBXBuildFile; fileRef = 5FD85CBF9DF39FB8FA9F5165A14B4B85 /* RCTSurfacePresenterStub.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 1A10FA3F9DF4CDF788BDB424013C402F /* RCTSpringAnimation.h in Headers */ = {isa = PBXBuildFile; fileRef = 4568836D549CEE24E5AC8669B605C0E7 /* RCTSpringAnimation.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1A1290C7A860E755FC08591CB199176F /* CxxModule.h in Headers */ = {isa = PBXBuildFile; fileRef = CF28EC7DE25E24BB4C0F4ED8FE012653 /* CxxModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1A39045EC7A8504580AEFC75EDB56CED /* EXVideoView.m in Sources */ = {isa = PBXBuildFile; fileRef = 05C3386266A82A155F4CD3421B3F06F9 /* EXVideoView.m */; }; + 1A02EAB59D9B047FEBAC7C67C5DF51E5 /* RCTSurfacePresenterStub.m in Sources */ = {isa = PBXBuildFile; fileRef = B7BB23C4ABDF2081AD8A80B64267DE95 /* RCTSurfacePresenterStub.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 1A10FA3F9DF4CDF788BDB424013C402F /* RCTSpringAnimation.h in Headers */ = {isa = PBXBuildFile; fileRef = 6D71BCAE7FB8CA2B29CA93BC9C79DC4E /* RCTSpringAnimation.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1A1290C7A860E755FC08591CB199176F /* CxxModule.h in Headers */ = {isa = PBXBuildFile; fileRef = F650DA6B415469641D9DFBFF175D1F4F /* CxxModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1A39045EC7A8504580AEFC75EDB56CED /* EXVideoView.m in Sources */ = {isa = PBXBuildFile; fileRef = DFFFD5E840DAF271EC07068794F59A8B /* EXVideoView.m */; }; 1A491A5EF79205088E6544696C92D02F /* GDTCORTransformer.h in Headers */ = {isa = PBXBuildFile; fileRef = 92839ECA01AD51593C6AC08DBD9EBCC2 /* GDTCORTransformer.h */; settings = {ATTRIBUTES = (Project, ); }; }; 1A8C26E48B802ECAF127BAB17E884ABA /* FIRInstallationsStoredItem.m in Sources */ = {isa = PBXBuildFile; fileRef = C7EFB60008DF9B71E0BF22DE8B9F1110 /* FIRInstallationsStoredItem.m */; }; - 1A9087134F848791F290A446F14D53BA /* react-native-notifications-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 6EDBB32D68D52D326D16685BF00251BB /* react-native-notifications-dummy.m */; }; - 1A91DAC8DA3EBEAA0D5111513D568D69 /* RNUserDefaults-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = CD470D4A16FBB4DAAFAB1FB1DC1E378F /* RNUserDefaults-dummy.m */; }; + 1A9087134F848791F290A446F14D53BA /* react-native-notifications-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 5831FD0948D56E91F7E3CA9691E165A9 /* react-native-notifications-dummy.m */; }; + 1A91DAC8DA3EBEAA0D5111513D568D69 /* RNUserDefaults-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = F7AFF9E9F8831B27B4838A13437E6AFA /* RNUserDefaults-dummy.m */; }; 1ABA2B507962FB92E51A2CA70A819741 /* FIRErrors.m in Sources */ = {isa = PBXBuildFile; fileRef = F43FC1D38479CA8483FA503030EE4B5B /* FIRErrors.m */; }; - 1AC5F470D468CCBF2A8B1D2FC1CA7A01 /* RCTDecayAnimation.m in Sources */ = {isa = PBXBuildFile; fileRef = A4F5EA988153E3310EADF516601680FA /* RCTDecayAnimation.m */; }; - 1AFB7660AED3CB914CF01D42131CECAD /* RNFirebaseAuth.h in Headers */ = {isa = PBXBuildFile; fileRef = FFBEA85239A716CD4FFF1F0FA1B3567A /* RNFirebaseAuth.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1B0BF1AFE2A309247EC3F75FFF585413 /* LNAnimator.h in Headers */ = {isa = PBXBuildFile; fileRef = 4DCD054A86F1437985DF8B641BD91042 /* LNAnimator.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1B10D25B28351FF12A8C17090C5309B3 /* RNFirebaseMessaging.m in Sources */ = {isa = PBXBuildFile; fileRef = 676F9C9E5B5CA96DADC388DB958A0316 /* RNFirebaseMessaging.m */; }; - 1B11B7875E992E06B9CF0335A921EA94 /* YGValue.h in Headers */ = {isa = PBXBuildFile; fileRef = CF6DD5E7D0621F9E885AF5BBF5C4AB43 /* YGValue.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1B72DD3B96B82F7387FC92F861EB8BAC /* BugsnagSessionTrackingApiClient.h in Headers */ = {isa = PBXBuildFile; fileRef = 5E76FFD831CBFC180923270AAB941B90 /* BugsnagSessionTrackingApiClient.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1BB646B47D3E345D72B5CFBDE7DAC2EA /* READebugNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 5539FE619426DF1750297D0781DFF001 /* READebugNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1AC5F470D468CCBF2A8B1D2FC1CA7A01 /* RCTDecayAnimation.m in Sources */ = {isa = PBXBuildFile; fileRef = F059F4F7C1EA482C86B1E73AF4D193EB /* RCTDecayAnimation.m */; }; + 1AFB7660AED3CB914CF01D42131CECAD /* RNFirebaseAuth.h in Headers */ = {isa = PBXBuildFile; fileRef = 770F0748043B114DAA49F3A3DA41B58F /* RNFirebaseAuth.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1B0BF1AFE2A309247EC3F75FFF585413 /* LNAnimator.h in Headers */ = {isa = PBXBuildFile; fileRef = 596340A74BAAF58C81534D0AD98EA482 /* LNAnimator.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1B10D25B28351FF12A8C17090C5309B3 /* RNFirebaseMessaging.m in Sources */ = {isa = PBXBuildFile; fileRef = BA1A44C2FD243D93836FBBC75A329E00 /* RNFirebaseMessaging.m */; }; + 1B11B7875E992E06B9CF0335A921EA94 /* YGValue.h in Headers */ = {isa = PBXBuildFile; fileRef = 21BAB5042DDC0532E64D1E0AE5FC2844 /* YGValue.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1B72DD3B96B82F7387FC92F861EB8BAC /* BugsnagSessionTrackingApiClient.h in Headers */ = {isa = PBXBuildFile; fileRef = 209C16039DBEA1AE8E1BB62DA5B75406 /* BugsnagSessionTrackingApiClient.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1BB646B47D3E345D72B5CFBDE7DAC2EA /* READebugNode.h in Headers */ = {isa = PBXBuildFile; fileRef = CF5DF84ED7BD46C898CF322C3FDA980A /* READebugNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; 1BB7DF35DA8BC3E5E76D9ADB62B3BAC6 /* lossless_msa.c in Sources */ = {isa = PBXBuildFile; fileRef = 32964D290663FAA0AEFD17DAEBD90947 /* lossless_msa.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 1BD314A43A3B0FD30BACF7FB0DD8E89E /* REAAllTransitions.m in Sources */ = {isa = PBXBuildFile; fileRef = E205C9A84B269CC452C83BFA5AFBE10D /* REAAllTransitions.m */; }; + 1BD314A43A3B0FD30BACF7FB0DD8E89E /* REAAllTransitions.m in Sources */ = {isa = PBXBuildFile; fileRef = 40C953DECB85B4F4B336EA6C9BA39A3E /* REAAllTransitions.m */; }; 1BDF6BD96EE33DE39DB37AB25232CA12 /* FIRInstanceIDAuthKeyChain.h in Headers */ = {isa = PBXBuildFile; fileRef = F3EA4E1C67B5BF8BD4E1E55A6409EB28 /* FIRInstanceIDAuthKeyChain.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1BF065CBF59F4DBF141D3E85E32C7599 /* RCTBridge.m in Sources */ = {isa = PBXBuildFile; fileRef = EA8888C441895FDD237829660C8F7D8B /* RCTBridge.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 1BF555E94A7BE625ACB1CF2549EA79E4 /* RCTObjcExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = 8FAF8FD987784D3CD7130ABD88030E18 /* RCTObjcExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1C7684185263BD3216BDDDCD068B795D /* BSG_KSCrashSentry_MachException.h in Headers */ = {isa = PBXBuildFile; fileRef = 6834B38E97B0877135ACC8436548C363 /* BSG_KSCrashSentry_MachException.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1CC75EE4B0889B7CD5ABC6A55A77378E /* RCTUITextField.h in Headers */ = {isa = PBXBuildFile; fileRef = F7140A66BCEA0E2374D90337A4DAD6B1 /* RCTUITextField.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1D286B93CF69BD522436DB068478A6F6 /* RCTSourceCode.h in Headers */ = {isa = PBXBuildFile; fileRef = 0AAB16903F6C72F5AC5A5D643B4A9E7B /* RCTSourceCode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1DC21330146F0910DFE00A496CBC37E5 /* RCTTrackingAnimatedNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 80EE4027DA88E06F0E9F7B1BC66E21A9 /* RCTTrackingAnimatedNode.m */; }; + 1BF065CBF59F4DBF141D3E85E32C7599 /* RCTBridge.m in Sources */ = {isa = PBXBuildFile; fileRef = 04DECA7B079BEC5C2F5F5FC292BDED8B /* RCTBridge.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 1BF555E94A7BE625ACB1CF2549EA79E4 /* RCTObjcExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = 23A6A5C3CC9632CBACB8F3B227D88AA1 /* RCTObjcExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1C7684185263BD3216BDDDCD068B795D /* BSG_KSCrashSentry_MachException.h in Headers */ = {isa = PBXBuildFile; fileRef = 0FF997E32FD2CA8E9A901A519160E7FF /* BSG_KSCrashSentry_MachException.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1CC75EE4B0889B7CD5ABC6A55A77378E /* RCTUITextField.h in Headers */ = {isa = PBXBuildFile; fileRef = 8ED5FFEC37DF77FD9DF7501A5F681826 /* RCTUITextField.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1D286B93CF69BD522436DB068478A6F6 /* RCTSourceCode.h in Headers */ = {isa = PBXBuildFile; fileRef = 59E11B597E23C72030409FFD90845C7A /* RCTSourceCode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1DC21330146F0910DFE00A496CBC37E5 /* RCTTrackingAnimatedNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 0241DD171AA09A9F252F7880C4B31025 /* RCTTrackingAnimatedNode.m */; }; 1DC47F2B7B43257E19EC099965EC544C /* SDImageAPNGCoder.m in Sources */ = {isa = PBXBuildFile; fileRef = 7612B1F9763549EA1DC383D43FC8950C /* SDImageAPNGCoder.m */; }; 1DC8D5909F0CC6F24EF0084ECF759D64 /* GULUserDefaults.h in Headers */ = {isa = PBXBuildFile; fileRef = 4BE1EB0C0D097F1CEF044EABD60FA2B0 /* GULUserDefaults.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1DCC3147F0B0324DA6BEFF22166809C5 /* RCTUIManagerUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = BE11EEA3F6FF26A0F1D1B45140033B94 /* RCTUIManagerUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1DCC3147F0B0324DA6BEFF22166809C5 /* RCTUIManagerUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = 8A5CB591EF54070343DA7ECA0BB53DB9 /* RCTUIManagerUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; 1DE2ED65A6C32CF6CC486B9DD6BEE45D /* GDTCORTransport.m in Sources */ = {isa = PBXBuildFile; fileRef = 1D432FED92D53468BB148EBC674FF927 /* GDTCORTransport.m */; }; 1E9BE88FA1550744658E5DF4C5E27E30 /* NSImage+Compatibility.m in Sources */ = {isa = PBXBuildFile; fileRef = A6C7344EA1DD6836B5D82E682D0A59D7 /* NSImage+Compatibility.m */; }; - 1E9D0476202EAFDEC48D83008CD69D7E /* RCTEventDispatcher.m in Sources */ = {isa = PBXBuildFile; fileRef = 9E05F77B6AF44F418C6E077CED2FBB93 /* RCTEventDispatcher.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 1E9E9841ECD43A7B59D4B9C4A24373CD /* RNSScreenContainer.m in Sources */ = {isa = PBXBuildFile; fileRef = 4746C1D78EA15092C8E1E4698ECA412A /* RNSScreenContainer.m */; }; + 1E9D0476202EAFDEC48D83008CD69D7E /* RCTEventDispatcher.m in Sources */ = {isa = PBXBuildFile; fileRef = 14799CF9DA3B3D4B9C9FC11268DC0B3F /* RCTEventDispatcher.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 1E9E9841ECD43A7B59D4B9C4A24373CD /* RNSScreenContainer.m in Sources */ = {isa = PBXBuildFile; fileRef = 6730970C10E2B812DA5EFCE6F2CF1470 /* RNSScreenContainer.m */; }; 1F0C67962D2BB44987FD1B99593098A3 /* strtod.h in Headers */ = {isa = PBXBuildFile; fileRef = 1B408AE390C2CD577F7EF23E9F2D97CA /* strtod.h */; settings = {ATTRIBUTES = (Project, ); }; }; 1F2F9B4108921F0391A9CC05C304D013 /* SDImageLoader.h in Headers */ = {isa = PBXBuildFile; fileRef = 70BF969C7EE75D6BABCC43461AAEF644 /* SDImageLoader.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1FBA5703F009E2F9E3B454CF8B31AA2F /* NSTextStorage+FontScaling.m in Sources */ = {isa = PBXBuildFile; fileRef = 9DCAE61686543EFD1D0B3E045B7F0C5C /* NSTextStorage+FontScaling.m */; }; - 1FD3F9BD427A14B0A7DBE59A9ED28AEB /* QBAssetCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 1CBA8EB956DAA087A5011494458EAE76 /* QBAssetCell.m */; }; + 1FBA5703F009E2F9E3B454CF8B31AA2F /* NSTextStorage+FontScaling.m in Sources */ = {isa = PBXBuildFile; fileRef = 3A8D32B9400E3291CDE2A19563EED735 /* NSTextStorage+FontScaling.m */; }; + 1FD3F9BD427A14B0A7DBE59A9ED28AEB /* QBAssetCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 8933B2E3ED8C0EB07F4776D48B0272A6 /* QBAssetCell.m */; }; 1FF2393253B66E225DBF6E7B48F3860C /* FIRBundleUtil.m in Sources */ = {isa = PBXBuildFile; fileRef = E2FDE91FD70FFC43E88F683DC84004E6 /* FIRBundleUtil.m */; }; 2001857FBC4E5A92A474A1694AE23BD6 /* json_pointer.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 08ECB6371492FBD46314AE3703CD8DAF /* json_pointer.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 202AAEBEC0D471F0AC6005E0ECEE1203 /* BSG_KSArchSpecific.h in Headers */ = {isa = PBXBuildFile; fileRef = 1B433D027402666189C911F7677C68C7 /* BSG_KSArchSpecific.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 202AAEBEC0D471F0AC6005E0ECEE1203 /* BSG_KSArchSpecific.h in Headers */ = {isa = PBXBuildFile; fileRef = 8A0CC5644DE47283BD6FF0D0160FCD6F /* BSG_KSArchSpecific.h */; settings = {ATTRIBUTES = (Project, ); }; }; 2060620FDFF5B1A5D8C07E8EF403882E /* SDWebImageDownloaderConfig.m in Sources */ = {isa = PBXBuildFile; fileRef = E76F1E8AD66134342407C6C7C3FD17A8 /* SDWebImageDownloaderConfig.m */; }; - 2070FF6A8B3C8ABBD14E748FC74E8231 /* UIView+Private.h in Headers */ = {isa = PBXBuildFile; fileRef = 510D92EDEE5E30E76903020689184FA9 /* UIView+Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2070FF6A8B3C8ABBD14E748FC74E8231 /* UIView+Private.h in Headers */ = {isa = PBXBuildFile; fileRef = 9B5AE71365E5C1AB4687BC99014AA804 /* UIView+Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; 2076F59F6E240771A5E9CFFD8205AAC3 /* GDTCORRegistrar_Private.h in Headers */ = {isa = PBXBuildFile; fileRef = 78D16CA96B3633E9D5C63D2D8DEB3AFD /* GDTCORRegistrar_Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 208F0F89A59307CFD4DBEE7148C57E22 /* RCTImageLoader.mm in Sources */ = {isa = PBXBuildFile; fileRef = E40F20D7ABECF5897E2EEE60DDECDB11 /* RCTImageLoader.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; - 209B337BCC8D29242D29EDFAE0AC53E7 /* RCTSurfaceHostingView.mm in Sources */ = {isa = PBXBuildFile; fileRef = F2280EC094C3D1BB3D518D72F737B8D9 /* RCTSurfaceHostingView.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 20A3DBEBF84B486EEB93BD75A146033D /* REAConcatNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 496E8AA69FEBFE25A99F6197F4132460 /* REAConcatNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 208F0F89A59307CFD4DBEE7148C57E22 /* RCTImageLoader.mm in Sources */ = {isa = PBXBuildFile; fileRef = 07443A38AA394574B8222DBCEF0AB663 /* RCTImageLoader.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + 209B337BCC8D29242D29EDFAE0AC53E7 /* RCTSurfaceHostingView.mm in Sources */ = {isa = PBXBuildFile; fileRef = EF439CD54E295D06B5EF4DE77D60D6A5 /* RCTSurfaceHostingView.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 20A3DBEBF84B486EEB93BD75A146033D /* REAConcatNode.h in Headers */ = {isa = PBXBuildFile; fileRef = D87895D1A7528674953C49E301EA8397 /* REAConcatNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; 20A5F474212746352B444046C98E45C2 /* SDWeakProxy.h in Headers */ = {isa = PBXBuildFile; fileRef = 85852013697E914BA35F277826FB9CEE /* SDWeakProxy.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 20B2CC1FA97984EE397092FF8B25018B /* ARTGroupManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 1B7C3608604BDDF8ACD43AB2706BB219 /* ARTGroupManager.m */; }; - 20B95512DF1DDE97DC9AB8856B976D55 /* RCTBlobCollector.h in Headers */ = {isa = PBXBuildFile; fileRef = FF9D71C72F2D96E98171895C7B078301 /* RCTBlobCollector.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 20E395C9875740A8A614B3B3F1739656 /* RNFirebaseAdMob.h in Headers */ = {isa = PBXBuildFile; fileRef = D59EEE985E14494A1BDB3E0E21F79E05 /* RNFirebaseAdMob.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 20B2CC1FA97984EE397092FF8B25018B /* ARTGroupManager.m in Sources */ = {isa = PBXBuildFile; fileRef = C717429966806B6A05BBA0A2015DDE84 /* ARTGroupManager.m */; }; + 20B95512DF1DDE97DC9AB8856B976D55 /* RCTBlobCollector.h in Headers */ = {isa = PBXBuildFile; fileRef = 980C9AA781192DA5461ABE8735B98A92 /* RCTBlobCollector.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 20E395C9875740A8A614B3B3F1739656 /* RNFirebaseAdMob.h in Headers */ = {isa = PBXBuildFile; fileRef = 17887F782EE6846FEF9833CAB3F0E873 /* RNFirebaseAdMob.h */; settings = {ATTRIBUTES = (Project, ); }; }; 20F03A0EE0116A9EDABC5AB21DC39778 /* GULSecureCoding.m in Sources */ = {isa = PBXBuildFile; fileRef = 76248F9402D4DD786D6A8E7AA04A7A4C /* GULSecureCoding.m */; }; - 21227AB74B4FBEF7FEE5EA1C0AEA6708 /* RNFirebaseAdMobInterstitial.m in Sources */ = {isa = PBXBuildFile; fileRef = E7F168C25561640F06C74537DDA821EF /* RNFirebaseAdMobInterstitial.m */; }; - 214C64C44656A5B63CAF20CF8DDCAD76 /* BSG_KSCrashC.c in Sources */ = {isa = PBXBuildFile; fileRef = C33FD5BEA3A3CB47664840BF4F156C4D /* BSG_KSCrashC.c */; }; - 21B97B8F1D7EE4D61F5ED7BA11086BAA /* RCTMultipartDataTask.m in Sources */ = {isa = PBXBuildFile; fileRef = D7CD301DE8C33AFC31FBB707FA097453 /* RCTMultipartDataTask.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 21227AB74B4FBEF7FEE5EA1C0AEA6708 /* RNFirebaseAdMobInterstitial.m in Sources */ = {isa = PBXBuildFile; fileRef = 3D10094A371D09B28AC7855AE82E3205 /* RNFirebaseAdMobInterstitial.m */; }; + 214C64C44656A5B63CAF20CF8DDCAD76 /* BSG_KSCrashC.c in Sources */ = {isa = PBXBuildFile; fileRef = 32B872F24CAC2DF9B15DDEDECDB1C82A /* BSG_KSCrashC.c */; }; + 21B97B8F1D7EE4D61F5ED7BA11086BAA /* RCTMultipartDataTask.m in Sources */ = {isa = PBXBuildFile; fileRef = DBEC3FE86BE0E6013132AC57F16E0A26 /* RCTMultipartDataTask.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; 21DCB3C8CBBB0BDCA5B2F4F7D875A352 /* GoogleDataTransport-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 2EA1D92B58046A683FB99792F54C738E /* GoogleDataTransport-dummy.m */; }; 22136FA91117A1F7ED3FF91BBC609979 /* GDTCCTPrioritizer.h in Headers */ = {isa = PBXBuildFile; fileRef = 037048A23ACDD15887BD75AFB6F14662 /* GDTCCTPrioritizer.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2257612A49356B139C85021FDCFEA687 /* REAAlwaysNode.m in Sources */ = {isa = PBXBuildFile; fileRef = C43AF8005A08F0890AD659CE3C91EEB9 /* REAAlwaysNode.m */; }; - 227134EEB40138501F42DCB74D501A8D /* RNFirebaseAdMobInterstitial.h in Headers */ = {isa = PBXBuildFile; fileRef = 3386361BCF1253328BFC0FEE0AB8FC2B /* RNFirebaseAdMobInterstitial.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 227182585B91FF43E82847A96669088C /* QBAssetsViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = CFA4FD27BF4EF6BF9F31B449BD11B3A0 /* QBAssetsViewController.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2272F6FED3223D260ED9C5088C7B64D4 /* BugsnagSessionTracker.h in Headers */ = {isa = PBXBuildFile; fileRef = 96A951F4E62E4175EE6FF64DBCD63734 /* BugsnagSessionTracker.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2275CDE2F9E72781DD15023D75195980 /* RNFirebaseStorage.m in Sources */ = {isa = PBXBuildFile; fileRef = DEC16DAC9FF4E5C4BB47F0FD1CFFAB78 /* RNFirebaseStorage.m */; }; - 22A449213EF7B85E0E070E14646F1142 /* REAStyleNode.h in Headers */ = {isa = PBXBuildFile; fileRef = A702D8FC4E65539EDE7AFCC50E46B0A3 /* REAStyleNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 22B289E96781F25C04ECCDA39C4E63F0 /* RCTActivityIndicatorViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 8DD1027A6B8EDA7C9D7BDB4F481DC280 /* RCTActivityIndicatorViewManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 22C893769DB69620D10DB6343A1BF40C /* RNRootViewGestureRecognizer.h in Headers */ = {isa = PBXBuildFile; fileRef = 694FD9E92513288848243F87AB52D9A6 /* RNRootViewGestureRecognizer.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 22C92FEB3B04579CFF0378E618DFB3BA /* RCTPlatform.h in Headers */ = {isa = PBXBuildFile; fileRef = 298DE658797268757F1A65E1E4E04840 /* RCTPlatform.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 22CEFC35D6BE5B9099CB736853ACAC54 /* KeyCommands-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = FFCDDE9BA567EFC215FF2D62653D8C92 /* KeyCommands-dummy.m */; }; - 22FBC041FA6BDB8D31F52C96B4D0A174 /* RNBridgeModule.h in Headers */ = {isa = PBXBuildFile; fileRef = C98EFB8224066F6B757465914FC89BD4 /* RNBridgeModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2257612A49356B139C85021FDCFEA687 /* REAAlwaysNode.m in Sources */ = {isa = PBXBuildFile; fileRef = DF4D81554317C2DA4627E78356263986 /* REAAlwaysNode.m */; }; + 227134EEB40138501F42DCB74D501A8D /* RNFirebaseAdMobInterstitial.h in Headers */ = {isa = PBXBuildFile; fileRef = B6229D3A231329117FB890DA64EC51E7 /* RNFirebaseAdMobInterstitial.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 227182585B91FF43E82847A96669088C /* QBAssetsViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = 460A7340C0C22B2C9730067FDCB0B7A7 /* QBAssetsViewController.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2272F6FED3223D260ED9C5088C7B64D4 /* BugsnagSessionTracker.h in Headers */ = {isa = PBXBuildFile; fileRef = A5757EC58B549528F0E8386F2A12F2C1 /* BugsnagSessionTracker.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2275CDE2F9E72781DD15023D75195980 /* RNFirebaseStorage.m in Sources */ = {isa = PBXBuildFile; fileRef = C774E8622465BCD66BA07FE9CD5784B5 /* RNFirebaseStorage.m */; }; + 22A449213EF7B85E0E070E14646F1142 /* REAStyleNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 227F6E7C98F31D9C50E961370496A3CB /* REAStyleNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 22B289E96781F25C04ECCDA39C4E63F0 /* RCTActivityIndicatorViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = EACD26F75DD101ACFFB7666E2D17EE40 /* RCTActivityIndicatorViewManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 22C893769DB69620D10DB6343A1BF40C /* RNRootViewGestureRecognizer.h in Headers */ = {isa = PBXBuildFile; fileRef = 3CD6E6E4E40B7A43AB1DF37E35105062 /* RNRootViewGestureRecognizer.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 22C92FEB3B04579CFF0378E618DFB3BA /* RCTPlatform.h in Headers */ = {isa = PBXBuildFile; fileRef = 3BB0880DBB26A100D5CDAF450356CF3C /* RCTPlatform.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 22CEFC35D6BE5B9099CB736853ACAC54 /* KeyCommands-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = E404671492B87C5400D64B192C24DE4D /* KeyCommands-dummy.m */; }; + 22FBC041FA6BDB8D31F52C96B4D0A174 /* RNBridgeModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 8C1F22E76A0175009050761B53AD9665 /* RNBridgeModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; 23179720D87885A6C7BCFE8789B76AFF /* GDTCORTargets.h in Headers */ = {isa = PBXBuildFile; fileRef = 43670C6003CB892BF4EEBCCCCF5B1628 /* GDTCORTargets.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 231AE8A6F71E9002C1051DE440D06378 /* EXVideoManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 832FA1D1265E3E8DA09A56EA182BAAD4 /* EXVideoManager.m */; }; - 232A5F0ADAC6F28BA824008C57E88A6F /* LNAnimator.m in Sources */ = {isa = PBXBuildFile; fileRef = 16F122EFC1B43D7DFD70217ECFE9F0B4 /* LNAnimator.m */; }; + 231AE8A6F71E9002C1051DE440D06378 /* EXVideoManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 03598506A4C272FF566CC0BCDFC4EDD0 /* EXVideoManager.m */; }; + 232A5F0ADAC6F28BA824008C57E88A6F /* LNAnimator.m in Sources */ = {isa = PBXBuildFile; fileRef = 2FA9D9405A01F7572D48EA2326166D64 /* LNAnimator.m */; }; 23314833370A97855835848E48AF9CB8 /* SDAnimatedImage.m in Sources */ = {isa = PBXBuildFile; fileRef = 6689EFD327C141249C36F84B370FCC15 /* SDAnimatedImage.m */; }; - 23B2B5118824C36E0A8F3FCC2DE98C3F /* RNNotificationUtils.m in Sources */ = {isa = PBXBuildFile; fileRef = 3B29F066C4D7A5F4CDAA141FF6B4208C /* RNNotificationUtils.m */; }; + 23B2B5118824C36E0A8F3FCC2DE98C3F /* RNNotificationUtils.m in Sources */ = {isa = PBXBuildFile; fileRef = C426163CD3D5B0FD4D4FD78018344313 /* RNNotificationUtils.m */; }; 240F76F7437478A24B599EF0EB8A0881 /* FIRInstanceID_Private.h in Headers */ = {isa = PBXBuildFile; fileRef = 28FAFC7FE3AEBCDC53B7E984681EB602 /* FIRInstanceID_Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 24245B52141EA46A7042F4BE99AEB86E /* RNFirebaseNotifications.h in Headers */ = {isa = PBXBuildFile; fileRef = C518105F4FA3A1C0068602376FE7C597 /* RNFirebaseNotifications.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 243E5A16194B1BAD6EC6D914F6D1AD3A /* RCTCxxModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 9399433CF1ACF421382928B069190505 /* RCTCxxModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 24245B52141EA46A7042F4BE99AEB86E /* RNFirebaseNotifications.h in Headers */ = {isa = PBXBuildFile; fileRef = C7D466F2D7512F509D09D9ACDF98A8D4 /* RNFirebaseNotifications.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 243E5A16194B1BAD6EC6D914F6D1AD3A /* RCTCxxModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 5CB5CDF7512734C433D9A729E8A6624C /* RCTCxxModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; 24570C884E7B05506960B1ADE2EBA32E /* demux.h in Headers */ = {isa = PBXBuildFile; fileRef = 2536DE7D124E9784E2285002DB68F17A /* demux.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 247AF2B7F6D31B2F8D692A841B08815F /* LNInterpolable.h in Headers */ = {isa = PBXBuildFile; fileRef = 0988705FB2C65721AEF74736449A7A2B /* LNInterpolable.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 24B97F4F26D06C097C3E12F6B68F04CD /* RNBackgroundTimer.h in Headers */ = {isa = PBXBuildFile; fileRef = CD9F66BA347806853E7A440558DC2009 /* RNBackgroundTimer.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 24C7E525A367ABCB6718748137DD44EE /* RCTKeyCommands.m in Sources */ = {isa = PBXBuildFile; fileRef = 8229C7B94874242389AA622F7750EF2E /* RCTKeyCommands.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 24DC681EB1AA4E65ADA6DF92E3F69D9B /* BridgeJSCallInvoker.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 95D9AD26F26CB7EAA4982F0FAED803CF /* BridgeJSCallInvoker.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 2520BA6FFB511E1F3B13760E919E35B9 /* BSG_KSCrashType.h in Headers */ = {isa = PBXBuildFile; fileRef = 434790F5144B1D3D04D00F59A5F2E067 /* BSG_KSCrashType.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 247AF2B7F6D31B2F8D692A841B08815F /* LNInterpolable.h in Headers */ = {isa = PBXBuildFile; fileRef = 4355E7B43141D819D523969BEB21E010 /* LNInterpolable.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 24B97F4F26D06C097C3E12F6B68F04CD /* RNBackgroundTimer.h in Headers */ = {isa = PBXBuildFile; fileRef = 55EC6646EA0F58C998F8997231399B54 /* RNBackgroundTimer.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 24C7E525A367ABCB6718748137DD44EE /* RCTKeyCommands.m in Sources */ = {isa = PBXBuildFile; fileRef = 661CA3A1F694AE04D71F854CED234349 /* RCTKeyCommands.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 24DC681EB1AA4E65ADA6DF92E3F69D9B /* BridgeJSCallInvoker.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8FC06326CBCF4D5554003ABD7AA1D026 /* BridgeJSCallInvoker.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 2520BA6FFB511E1F3B13760E919E35B9 /* BSG_KSCrashType.h in Headers */ = {isa = PBXBuildFile; fileRef = 8A5E00C94BF4E62031F5735FA0C2CFB9 /* BSG_KSCrashType.h */; settings = {ATTRIBUTES = (Project, ); }; }; 2521216CE078E953104465D53D96B1AC /* GDTCORAssert.m in Sources */ = {isa = PBXBuildFile; fileRef = CB0E66A3C33EB8EEC21616C116ABB4A4 /* GDTCORAssert.m */; }; 2538800F60EA068402CA799DB74EC4BE /* GDTCOREvent.h in Headers */ = {isa = PBXBuildFile; fileRef = 921B01A30EBFEA00540CF83973A575F9 /* GDTCOREvent.h */; settings = {ATTRIBUTES = (Project, ); }; }; 25464C199156B6F34863455C64857399 /* bit_writer_utils.c in Sources */ = {isa = PBXBuildFile; fileRef = 5890F013C17AD08F673E9838E1CBC85D /* bit_writer_utils.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; 2565B9310EC364F58EDF6D7C3E9D9E74 /* bignum.cc in Sources */ = {isa = PBXBuildFile; fileRef = 5EE46B386E95AC9FBBEE856CF2383198 /* bignum.cc */; settings = {COMPILER_FLAGS = "-Wno-unreachable-code"; }; }; - 257E5695DD14352106A5F9F2324F7403 /* RCTImageBlurUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = 46ABA79487D88F19D9777DD4E69C2E87 /* RCTImageBlurUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 25C10CF7700C88922C4053826BE8422E /* RCTPicker.m in Sources */ = {isa = PBXBuildFile; fileRef = 4633365250C40A30F42C01736FDC7B6E /* RCTPicker.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 25D1EE7FFDCEE0EBC3F03EB316E69F59 /* RNCCameraRollManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 9B22B4592DEE5DD9369F5D576E118B19 /* RNCCameraRollManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 25E00F43E1EDF928FD21D8275DAD3A20 /* RCTRefreshControl.m in Sources */ = {isa = PBXBuildFile; fileRef = D5F0D6A6E5DCD8D75DD39C3D32A148FA /* RCTRefreshControl.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 25ED384032B9D13C5127B75C00C81489 /* BugsnagApiClient.m in Sources */ = {isa = PBXBuildFile; fileRef = 46FABD0869A33C6F694792F55276CB53 /* BugsnagApiClient.m */; }; + 257E5695DD14352106A5F9F2324F7403 /* RCTImageBlurUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = 813E87FEFBBC0B1AFBCE06DF0029DCC2 /* RCTImageBlurUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 25C10CF7700C88922C4053826BE8422E /* RCTPicker.m in Sources */ = {isa = PBXBuildFile; fileRef = C6E4C7045D8CD305FF6C399599207835 /* RCTPicker.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 25D1EE7FFDCEE0EBC3F03EB316E69F59 /* RNCCameraRollManager.h in Headers */ = {isa = PBXBuildFile; fileRef = FAC109B04FC80810296772EF839D15DF /* RNCCameraRollManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 25E00F43E1EDF928FD21D8275DAD3A20 /* RCTRefreshControl.m in Sources */ = {isa = PBXBuildFile; fileRef = D343B59DABDDFEC2F2E11C886E30474D /* RCTRefreshControl.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 25ED384032B9D13C5127B75C00C81489 /* BugsnagApiClient.m in Sources */ = {isa = PBXBuildFile; fileRef = E6C302336BF2042013EEBA41967DFDBD /* BugsnagApiClient.m */; }; 261F32A1FA02D5BF8B24CB71FD71F10A /* SDImageIOAnimatedCoder.m in Sources */ = {isa = PBXBuildFile; fileRef = 8047865EF52BDB8F74E450253525FD98 /* SDImageIOAnimatedCoder.m */; }; - 263275AD02EEDA619AF605D8A57C8549 /* RCTView.m in Sources */ = {isa = PBXBuildFile; fileRef = 695BA1753BFCE794E1936B121510714E /* RCTView.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 26D5892C49257B552E50E5D953378DB1 /* RCTUIManagerObserverCoordinator.h in Headers */ = {isa = PBXBuildFile; fileRef = F151B276A968B757C730FB4784B496E5 /* RCTUIManagerObserverCoordinator.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 26EADB2B1F91B0E98325CE377339AB6C /* RCTI18nUtil.h in Headers */ = {isa = PBXBuildFile; fileRef = 14627FA88A737246F278536FA23AE01E /* RCTI18nUtil.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2705398BF3B9198CC897D23D396A7586 /* RCTVirtualTextViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 6E357D07D0B62149CB54E4BBC7C1892A /* RCTVirtualTextViewManager.m */; }; - 2707704D222AF75C77C0C75D36884A07 /* RCTAnimationType.h in Headers */ = {isa = PBXBuildFile; fileRef = 3C3813F10C00C6606FEA8943AF75045E /* RCTAnimationType.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2765C99C5AB7A70535A4695E30345CA9 /* RCTConvert+ART.m in Sources */ = {isa = PBXBuildFile; fileRef = E656B94125EA7E643C7FA16DDE45DE1D /* RCTConvert+ART.m */; }; - 2767B6F483EB91FC1AF72B9E56C9EA93 /* BugsnagFileStore.h in Headers */ = {isa = PBXBuildFile; fileRef = 8D40E05A89E0419CE69ED7EE791E8FD8 /* BugsnagFileStore.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 263275AD02EEDA619AF605D8A57C8549 /* RCTView.m in Sources */ = {isa = PBXBuildFile; fileRef = B846C87014E8DDFD31AF359908BEC0FE /* RCTView.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 26D5892C49257B552E50E5D953378DB1 /* RCTUIManagerObserverCoordinator.h in Headers */ = {isa = PBXBuildFile; fileRef = EB950C9618F6211B7FE91302533A1C91 /* RCTUIManagerObserverCoordinator.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 26EADB2B1F91B0E98325CE377339AB6C /* RCTI18nUtil.h in Headers */ = {isa = PBXBuildFile; fileRef = 89D6F65D3CE73D4BDDF44AB18602DB31 /* RCTI18nUtil.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2705398BF3B9198CC897D23D396A7586 /* RCTVirtualTextViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 29B12B1677700ED9FF44C3DAC8D0D196 /* RCTVirtualTextViewManager.m */; }; + 2707704D222AF75C77C0C75D36884A07 /* RCTAnimationType.h in Headers */ = {isa = PBXBuildFile; fileRef = 4AFD719A041151F58B9D1468AA30075D /* RCTAnimationType.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2765C99C5AB7A70535A4695E30345CA9 /* RCTConvert+ART.m in Sources */ = {isa = PBXBuildFile; fileRef = 6E2DF60F0AFEF13D4B6A472E39DB3AC2 /* RCTConvert+ART.m */; }; + 2767B6F483EB91FC1AF72B9E56C9EA93 /* BugsnagFileStore.h in Headers */ = {isa = PBXBuildFile; fileRef = AD1BBA375D2CAFC79E7B546BC5AD24F7 /* BugsnagFileStore.h */; settings = {ATTRIBUTES = (Project, ); }; }; 27905779CF00AA72248BCE35B952D351 /* GULAppDelegateSwizzler.h in Headers */ = {isa = PBXBuildFile; fileRef = 921C25810B4533D9E001D73370A577B6 /* GULAppDelegateSwizzler.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 27B32BB91B5592AA463BED8039D4A34F /* RCTBlobManager.h in Headers */ = {isa = PBXBuildFile; fileRef = ED11AB60627D21CFAB5E2A83B8B2A744 /* RCTBlobManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 27C1A69C52BB15DC67850E468B12D649 /* RCTExceptionsManager.mm in Sources */ = {isa = PBXBuildFile; fileRef = 63F78F223C69C1972720D9E1B452AF19 /* RCTExceptionsManager.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; - 27C583D37081F7F3510722DF66158B32 /* RCTDataRequestHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = BE1C92AB0C7F29A4F507C41ECB899B9B /* RCTDataRequestHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 27B32BB91B5592AA463BED8039D4A34F /* RCTBlobManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 7FE84E9CCD39E1BEA3AF2269A594416A /* RCTBlobManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 27C1A69C52BB15DC67850E468B12D649 /* RCTExceptionsManager.mm in Sources */ = {isa = PBXBuildFile; fileRef = 8D2C5A8F831E892581AC87353D324085 /* RCTExceptionsManager.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + 27C583D37081F7F3510722DF66158B32 /* RCTDataRequestHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 9961D634417BB323B4F4DCEF34E08B0C /* RCTDataRequestHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; 287E7C771C9169D90BC1BFCA9CED0679 /* FirebaseInstallations.h in Headers */ = {isa = PBXBuildFile; fileRef = 7D0B134B634581BF0AB4FFB905334766 /* FirebaseInstallations.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 28927F940A72BCEB4A44F42EFBA0B02C /* RCTTextAttributes.m in Sources */ = {isa = PBXBuildFile; fileRef = CE7152566D1A33559178736F0DE3167C /* RCTTextAttributes.m */; }; - 28BB381A7C6B3B83811D50FE70E938DD /* RCTComponentData.h in Headers */ = {isa = PBXBuildFile; fileRef = 77D1EFFC13571D9E286934ED8C679C69 /* RCTComponentData.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 28927F940A72BCEB4A44F42EFBA0B02C /* RCTTextAttributes.m in Sources */ = {isa = PBXBuildFile; fileRef = 33436A67057DC5539D341F791AD7A813 /* RCTTextAttributes.m */; }; + 28BB381A7C6B3B83811D50FE70E938DD /* RCTComponentData.h in Headers */ = {isa = PBXBuildFile; fileRef = 946ABCFB770AD6764BB8B03E35B72EB8 /* RCTComponentData.h */; settings = {ATTRIBUTES = (Project, ); }; }; 28DE633C2791D8880A18411419955E80 /* SDGraphicsImageRenderer.m in Sources */ = {isa = PBXBuildFile; fileRef = A88DF20441288B71F15D147211C1C64B /* SDGraphicsImageRenderer.m */; }; - 28EDFE782C03971D26A94DABC42882E1 /* RCTNetworkTask.m in Sources */ = {isa = PBXBuildFile; fileRef = B7C6DEA8C3CB3A2D8972AB5C382DA40F /* RCTNetworkTask.m */; }; - 28F5181CAF14D2F0597691A3E405F985 /* RCTConvert+ART.h in Headers */ = {isa = PBXBuildFile; fileRef = A981A7D532F8B1CD877B991FF98460E9 /* RCTConvert+ART.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 28EDFE782C03971D26A94DABC42882E1 /* RCTNetworkTask.m in Sources */ = {isa = PBXBuildFile; fileRef = D168C46C2D5418F8C09978772351355F /* RCTNetworkTask.m */; }; + 28F5181CAF14D2F0597691A3E405F985 /* RCTConvert+ART.h in Headers */ = {isa = PBXBuildFile; fileRef = 37BD19E43D701CAE444E127D1DC6910A /* RCTConvert+ART.h */; settings = {ATTRIBUTES = (Project, ); }; }; 28F938C614393C2E27ED714D9579FC8E /* rescaler_utils.h in Headers */ = {isa = PBXBuildFile; fileRef = D8183FDF6CBBC2458D910575E0B9AE45 /* rescaler_utils.h */; settings = {ATTRIBUTES = (Project, ); }; }; 294DF61467891D4A15B8BE8DA7B249C8 /* FIRApp.m in Sources */ = {isa = PBXBuildFile; fileRef = 0162C892BDD766E04E2714F47090AB60 /* FIRApp.m */; }; - 2971D2756E69D3A1B1B0B05CB44883FA /* RNFirebaseDatabaseReference.h in Headers */ = {isa = PBXBuildFile; fileRef = 94B82F0760FC99EAF1D717F92381EF1D /* RNFirebaseDatabaseReference.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2971D2756E69D3A1B1B0B05CB44883FA /* RNFirebaseDatabaseReference.h in Headers */ = {isa = PBXBuildFile; fileRef = 961828EA321B88CA49122824675BF27C /* RNFirebaseDatabaseReference.h */; settings = {ATTRIBUTES = (Project, ); }; }; 29BC45BF5AE5015D46B969B85561BEA0 /* firebasecore.nanopb.h in Headers */ = {isa = PBXBuildFile; fileRef = A15D9453B10C17715504A05E32605847 /* firebasecore.nanopb.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 29BE103541578385234026751F8ACE67 /* RNRootView-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = AC8B79264BEAFFF8CAF35EEA50E38615 /* RNRootView-dummy.m */; }; - 29D9E419C855902AC95C921BDC6A1124 /* BugsnagErrorReportApiClient.h in Headers */ = {isa = PBXBuildFile; fileRef = 83C62B574085B6A08F29118247EAD9D0 /* BugsnagErrorReportApiClient.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 29BE103541578385234026751F8ACE67 /* RNRootView-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 76C889C2773FF8E6395422F9314FE86C /* RNRootView-dummy.m */; }; + 29D9E419C855902AC95C921BDC6A1124 /* BugsnagErrorReportApiClient.h in Headers */ = {isa = PBXBuildFile; fileRef = 2B26CF4A24F14DA46F4CBBE49C2E878D /* BugsnagErrorReportApiClient.h */; settings = {ATTRIBUTES = (Project, ); }; }; 29EF263F0219112B7A83EB6282AC6BC8 /* FIRAnalyticsConfiguration.h in Headers */ = {isa = PBXBuildFile; fileRef = 9E799F0463BF1E9CB29AB2DD41EB7846 /* FIRAnalyticsConfiguration.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2A0924AB7815CCF0A58FF53C9F9DD715 /* RNFirebaseNotifications.m in Sources */ = {isa = PBXBuildFile; fileRef = B1019DF88487C0D7B086AED9553E017B /* RNFirebaseNotifications.m */; }; + 2A0924AB7815CCF0A58FF53C9F9DD715 /* RNFirebaseNotifications.m in Sources */ = {isa = PBXBuildFile; fileRef = 12B9E8EAEEFC054A0CC6389AB00B2F89 /* RNFirebaseNotifications.m */; }; 2A0CFDAFE1D323DD59F8CC55D2BF21A2 /* FIRInstallations.m in Sources */ = {isa = PBXBuildFile; fileRef = DC834FE770DBAFD4CAD544AB5F592ED4 /* FIRInstallations.m */; }; - 2A271C1605508A90C3BA1EAB6BAADC3E /* react-native-document-picker-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 255D0FA10027F83D8A9415C7B4456159 /* react-native-document-picker-dummy.m */; }; - 2A6155E5BEB10B758FA689BF7FE14AE8 /* RCTVersion.h in Headers */ = {isa = PBXBuildFile; fileRef = B055AFA473FC3220999341B10F56F810 /* RCTVersion.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2A96EC20BE6E26342579B6EEEEDE35BD /* jsilib-posix.cpp in Sources */ = {isa = PBXBuildFile; fileRef = C4D58D64FE77C98852515EA277A3C226 /* 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"; }; }; + 2A271C1605508A90C3BA1EAB6BAADC3E /* react-native-document-picker-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = C8347D41FC070E90B0280DEAD80BAB02 /* react-native-document-picker-dummy.m */; }; + 2A6155E5BEB10B758FA689BF7FE14AE8 /* RCTVersion.h in Headers */ = {isa = PBXBuildFile; fileRef = 948C08EB2C9D41E3EAE9FF50A2C2D022 /* RCTVersion.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2A96EC20BE6E26342579B6EEEEDE35BD /* jsilib-posix.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 260AF1B2F4B5C6D69475585F8DEBFD5E /* 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"; }; }; 2AD4C462CA3933A8FE83A9AE6C424AC8 /* GULAppEnvironmentUtil.h in Headers */ = {isa = PBXBuildFile; fileRef = 1DCB7B74B4C2EC6C5BAFC108D409C754 /* GULAppEnvironmentUtil.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2ADFF29E38F4061AD30EE837833ADAAC /* RCTSliderManager.m in Sources */ = {isa = PBXBuildFile; fileRef = E9209902141BB566F44E44779CD31FCF /* RCTSliderManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 2AE22261C2F0CC82CDFBB9435346A3A8 /* RCTComponentEvent.m in Sources */ = {isa = PBXBuildFile; fileRef = 3F79091C9F4C4912E37D52021A7C2936 /* RCTComponentEvent.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 2B297C7AA7AD6BA70D00DABC76D754E0 /* SRProxyConnect.m in Sources */ = {isa = PBXBuildFile; fileRef = 617BC987A88508B41B4A29B28B77001B /* SRProxyConnect.m */; }; - 2B4B674BADB4E8A18006C2676BA1EAE5 /* RCTDevLoadingView.h in Headers */ = {isa = PBXBuildFile; fileRef = B1C6797FB32CE3EC0972829BF2C0F857 /* RCTDevLoadingView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2B57AD2AFDB9147504E562E1E6F17751 /* Bugsnag.m in Sources */ = {isa = PBXBuildFile; fileRef = B954713B1A7287727B5EDF5E846AC7EE /* Bugsnag.m */; }; + 2ADFF29E38F4061AD30EE837833ADAAC /* RCTSliderManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 80A1D9D2947255CCB6980709B7867EA5 /* RCTSliderManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 2AE22261C2F0CC82CDFBB9435346A3A8 /* RCTComponentEvent.m in Sources */ = {isa = PBXBuildFile; fileRef = 9C908A705746AA11B0244833E9C9C840 /* RCTComponentEvent.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 2B4B674BADB4E8A18006C2676BA1EAE5 /* RCTDevLoadingView.h in Headers */ = {isa = PBXBuildFile; fileRef = 93183655C767EAAF164D23123FD1EB30 /* RCTDevLoadingView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2B57AD2AFDB9147504E562E1E6F17751 /* Bugsnag.m in Sources */ = {isa = PBXBuildFile; fileRef = 917CDA9ADC6D80ADFAAAF0974BA533E9 /* Bugsnag.m */; }; 2B59524284711BD287A3812E9E981486 /* NSError+FIRInstanceID.h in Headers */ = {isa = PBXBuildFile; fileRef = 325C4D831CC5588DA91A39FF53FA5BB0 /* NSError+FIRInstanceID.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2B5B62C5708555CC396B26DEA29C08AF /* ARTShapeManager.h in Headers */ = {isa = PBXBuildFile; fileRef = B07D48E7147AADC05B5BC94BED2CAE42 /* ARTShapeManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2B7AD03BE3907FBE6A6161BE67B9585E /* BSG_KSCrashDoctor.m in Sources */ = {isa = PBXBuildFile; fileRef = 674D3ED4A35628BAD371C36DA6D4A113 /* BSG_KSCrashDoctor.m */; }; + 2B5B62C5708555CC396B26DEA29C08AF /* ARTShapeManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 77BDB2B59A28D75A91261233C42ABC37 /* ARTShapeManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2B7AD03BE3907FBE6A6161BE67B9585E /* BSG_KSCrashDoctor.m in Sources */ = {isa = PBXBuildFile; fileRef = FA5F7F2BAA4C5C8F1FDBB5390AEC096D /* BSG_KSCrashDoctor.m */; }; 2B8F067276102FA6915006D607D487FD /* UIColor+HexString.m in Sources */ = {isa = PBXBuildFile; fileRef = D7593711A2E6EAD105E206B03D6E3616 /* UIColor+HexString.m */; }; 2BD172C6FB7DF31CC3EFA3CE085B4126 /* predictor_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = F41672D8B6EA45CF462409479614FB31 /* predictor_enc.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 2C0C31B7505BC8E94D6FAFBE26E70005 /* fr.lproj in Resources */ = {isa = PBXBuildFile; fileRef = 1CBD08A6001612AFBD1D6C1C18C2280A /* fr.lproj */; }; + 2C0C31B7505BC8E94D6FAFBE26E70005 /* fr.lproj in Resources */ = {isa = PBXBuildFile; fileRef = A38E63BC17368EEBC2A004D84EDFE87E /* fr.lproj */; }; 2C2703DF3EEE37D3A30ECEB1DCD36D94 /* SDImageIOCoder.h in Headers */ = {isa = PBXBuildFile; fileRef = 9823CB2C7479BFFC9C9AA170BD0CBB10 /* SDImageIOCoder.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2C3B70E550F6BE498EA5F00CBC159890 /* RCTDataRequestHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = 635F7B63DA9E22DD55626E3F9D2B3D7A /* RCTDataRequestHandler.m */; }; - 2C4337F44EA78BED73792EE210819525 /* QBCheckmarkView.m in Sources */ = {isa = PBXBuildFile; fileRef = C25EB0CA5329252665CE41EC579A206E /* QBCheckmarkView.m */; }; - 2C4587AD15A7973ECE6637EDA1DFBF08 /* EXFilePermissionModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 354A9BE84DB39B99B7E5602F4ECDB776 /* EXFilePermissionModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2C45E8CE187BD8D93820C40615AC1E4F /* RCTAccessibilityManager.m in Sources */ = {isa = PBXBuildFile; fileRef = CA3371B5B15F7DC4CCF22BBF4078D864 /* RCTAccessibilityManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 2C4AB1C100D4C8F549F3B391F96BF82C /* RCTRawTextShadowView.m in Sources */ = {isa = PBXBuildFile; fileRef = CA0DD05B31427097444D46ACA3633CE0 /* RCTRawTextShadowView.m */; }; - 2C6754F57D3F7E17CA74E5B2EEB0D7F9 /* RCTSurfaceView.h in Headers */ = {isa = PBXBuildFile; fileRef = FC88815E2B2418744BA108539F7B153B /* RCTSurfaceView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2C3B70E550F6BE498EA5F00CBC159890 /* RCTDataRequestHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = FB38CFCCCB4ABF71AC7E2584E2DBC245 /* RCTDataRequestHandler.m */; }; + 2C4337F44EA78BED73792EE210819525 /* QBCheckmarkView.m in Sources */ = {isa = PBXBuildFile; fileRef = C9AEAF103FBBF7D92B7B32B40FF1AB03 /* QBCheckmarkView.m */; }; + 2C4587AD15A7973ECE6637EDA1DFBF08 /* EXFilePermissionModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 5802B7A0529F2862ADCC21060B02AF0D /* EXFilePermissionModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2C45E8CE187BD8D93820C40615AC1E4F /* RCTAccessibilityManager.m in Sources */ = {isa = PBXBuildFile; fileRef = A4FFFF283C6757F72857BBF4B3992490 /* RCTAccessibilityManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 2C4AB1C100D4C8F549F3B391F96BF82C /* RCTRawTextShadowView.m in Sources */ = {isa = PBXBuildFile; fileRef = 4E63400ED41748BB889958F91DF4A375 /* RCTRawTextShadowView.m */; }; + 2C6754F57D3F7E17CA74E5B2EEB0D7F9 /* RCTSurfaceView.h in Headers */ = {isa = PBXBuildFile; fileRef = F0D532B62233DEE22887CF7F717120F1 /* RCTSurfaceView.h */; settings = {ATTRIBUTES = (Project, ); }; }; 2C8B9B59A5D2050A4FC678FA0A65D5D5 /* SDDisplayLink.h in Headers */ = {isa = PBXBuildFile; fileRef = 6FFD07CA8CC396C11428C8593FC6E959 /* SDDisplayLink.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2CD5D4D9AB0BB12808E36B48405592A4 /* BSG_KSCrashState.m in Sources */ = {isa = PBXBuildFile; fileRef = 47CA2F9B4EB9158B5F8602745A9AB4E6 /* BSG_KSCrashState.m */; }; - 2CDAC043E586A4E33786C82BEFBB0DBF /* RNRootViewGestureRecognizer.m in Sources */ = {isa = PBXBuildFile; fileRef = EFFD1C1E446CA4D07FF398A6CDD1B7C3 /* RNRootViewGestureRecognizer.m */; }; - 2CE08EC7BA09068921151F10810607FF /* RNJitsiMeetView.h in Headers */ = {isa = PBXBuildFile; fileRef = ED2BF79538115915C5EC8BA797969E2D /* RNJitsiMeetView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2CD5D4D9AB0BB12808E36B48405592A4 /* BSG_KSCrashState.m in Sources */ = {isa = PBXBuildFile; fileRef = 260284E320C55DC1F401EF3613313217 /* BSG_KSCrashState.m */; }; + 2CDAC043E586A4E33786C82BEFBB0DBF /* RNRootViewGestureRecognizer.m in Sources */ = {isa = PBXBuildFile; fileRef = FE10DB9AA63D351C0285E36C0807C4CC /* RNRootViewGestureRecognizer.m */; }; + 2CE08EC7BA09068921151F10810607FF /* RNJitsiMeetView.h in Headers */ = {isa = PBXBuildFile; fileRef = B24F3AEDF693897FF98C79C14EC875D5 /* RNJitsiMeetView.h */; settings = {ATTRIBUTES = (Project, ); }; }; 2D20AB1269B163E91C616DA631432A23 /* SDImageCachesManager.m in Sources */ = {isa = PBXBuildFile; fileRef = AD5C654D5F9C65609BC75BEDEB1C2EF1 /* SDImageCachesManager.m */; }; - 2D61A2747A7ED3643B239BF6F190E30A /* EXLocationRequester.h in Headers */ = {isa = PBXBuildFile; fileRef = 35AE382F030BD854463EFF0F7EC63E61 /* EXLocationRequester.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2D889A37C6B0DCFAC73E5AC673F56C1C /* EXCameraRollRequester.h in Headers */ = {isa = PBXBuildFile; fileRef = C7596BD887A9C3ABDC87D3F56C9C7108 /* EXCameraRollRequester.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2D9B31280B8E5294977D5CC7EA819B25 /* BSG_KSCrashReportFields.h in Headers */ = {isa = PBXBuildFile; fileRef = 9CA88B119DDB073FC3D1C7EE47908BE1 /* BSG_KSCrashReportFields.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2D61A2747A7ED3643B239BF6F190E30A /* EXLocationRequester.h in Headers */ = {isa = PBXBuildFile; fileRef = 0F313C739AD2E4FC435D56A8A9607272 /* EXLocationRequester.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2D889A37C6B0DCFAC73E5AC673F56C1C /* EXCameraRollRequester.h in Headers */ = {isa = PBXBuildFile; fileRef = 5A92F7A8EF0B089FA910606989EC696B /* EXCameraRollRequester.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2D9B31280B8E5294977D5CC7EA819B25 /* BSG_KSCrashReportFields.h in Headers */ = {isa = PBXBuildFile; fileRef = 8D236EF97878BA3F898BD938036D1520 /* BSG_KSCrashReportFields.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2DB6EA0A95D099F4D025EFA6B3B918C7 /* Pods-RocketChatRN-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 9A03EB9B87FF49512AC6907C1B9AA221 /* Pods-RocketChatRN-dummy.m */; }; 2E0BEB13B0C41568EC020EFDECAACFD9 /* GDTCORDataFuture.m in Sources */ = {isa = PBXBuildFile; fileRef = 93B448CC3FB8A5E0A529641BC3F578C2 /* GDTCORDataFuture.m */; }; - 2E4931E8207986206E7AB09BFBB585EB /* EXPermissions.h in Headers */ = {isa = PBXBuildFile; fileRef = 93BD7E697E11BB724D87C0E664A07174 /* EXPermissions.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2E6C0A66C6CE67C359435223E0B96692 /* RNNotificationCenter.h in Headers */ = {isa = PBXBuildFile; fileRef = 5DB7B664AD22D440870DACEA949D0182 /* RNNotificationCenter.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2E834C1C8872637F95200FF9269927E5 /* UMSingletonModule.m in Sources */ = {isa = PBXBuildFile; fileRef = 5AABE94E3E1F38B5DAEDF19A46E650F9 /* UMSingletonModule.m */; }; - 2EC6448F6874BE18BCAC7E4B8750436D /* RCTBaseTextInputViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = C55E7F8ECA540C10662FB91C50C909BE /* RCTBaseTextInputViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2E4931E8207986206E7AB09BFBB585EB /* EXPermissions.h in Headers */ = {isa = PBXBuildFile; fileRef = C7D449E810B2BA587461F79809FD6A0E /* EXPermissions.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2E6C0A66C6CE67C359435223E0B96692 /* RNNotificationCenter.h in Headers */ = {isa = PBXBuildFile; fileRef = F7B4DF41D35732CC8203AE6EDC834515 /* RNNotificationCenter.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2E834C1C8872637F95200FF9269927E5 /* UMSingletonModule.m in Sources */ = {isa = PBXBuildFile; fileRef = A5F42D476AE4ED3EA3E1ED52F62E22F0 /* UMSingletonModule.m */; }; + 2EC6448F6874BE18BCAC7E4B8750436D /* RCTBaseTextInputViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 656BF0C11A2DDDA0C766C3761D7E88B7 /* RCTBaseTextInputViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; 2EE1214FC3E8D03CDD99006494DDCA55 /* FIRInstanceIDTokenOperation.m in Sources */ = {isa = PBXBuildFile; fileRef = 50B1336BF0B799990F11A2C6C846FEC9 /* FIRInstanceIDTokenOperation.m */; }; - 2F14DEC7E589201E4ADE8E61F5CCCB8E /* RCTNetworking.mm in Sources */ = {isa = PBXBuildFile; fileRef = 589AB7CD199564697BA3559F25CB61AB /* RCTNetworking.mm */; }; - 2F3E6CFDE51DA53D85F9F0B1E585D2C2 /* RNCAppearanceProvider.h in Headers */ = {isa = PBXBuildFile; fileRef = FD0BB39981669D1A579DBF85AD3714DE /* RNCAppearanceProvider.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2F4B5D8A9B7B3F427CD7F280DF2FA890 /* JSCExecutorFactory.h in Headers */ = {isa = PBXBuildFile; fileRef = 9E2130E471529F403B268FD0D5717250 /* JSCExecutorFactory.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2F4D3CB5530FEDC8D599D0FC2A883DF8 /* EXAppLoaderProvider.h in Headers */ = {isa = PBXBuildFile; fileRef = B0DFBEECC237981FDC5C491E881652EC /* EXAppLoaderProvider.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2F51852AA11405085D9282ECDBA680A8 /* RCTConvert+Text.h in Headers */ = {isa = PBXBuildFile; fileRef = D95CA5A405D8A647E0023BAA9DB29152 /* RCTConvert+Text.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2F14DEC7E589201E4ADE8E61F5CCCB8E /* RCTNetworking.mm in Sources */ = {isa = PBXBuildFile; fileRef = 41652E9741E4642801B4A9A1A6F8C7AA /* RCTNetworking.mm */; }; + 2F3E6CFDE51DA53D85F9F0B1E585D2C2 /* RNCAppearanceProvider.h in Headers */ = {isa = PBXBuildFile; fileRef = C26A133F4DC22A4CD5C1A721D09806FE /* RNCAppearanceProvider.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2F4B5D8A9B7B3F427CD7F280DF2FA890 /* JSCExecutorFactory.h in Headers */ = {isa = PBXBuildFile; fileRef = 4395DDE9E7CC08760D1991A26F6B1F60 /* JSCExecutorFactory.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2F4D3CB5530FEDC8D599D0FC2A883DF8 /* EXAppLoaderProvider.h in Headers */ = {isa = PBXBuildFile; fileRef = B24FC92D1A76F9E7EDEEFB8F35746F7D /* EXAppLoaderProvider.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2F51852AA11405085D9282ECDBA680A8 /* RCTConvert+Text.h in Headers */ = {isa = PBXBuildFile; fileRef = C727C9881A4A63C180CB13D3CCA55B7A /* RCTConvert+Text.h */; settings = {ATTRIBUTES = (Project, ); }; }; 2F5AE014543358BAEE4B4D6CD5A371E3 /* FIRSecureStorage.m in Sources */ = {isa = PBXBuildFile; fileRef = 2987EA104168329CA646DE0B0609C594 /* FIRSecureStorage.m */; }; 2FA53DFC789880672A8C658D69915008 /* GULMutableDictionary.h in Headers */ = {isa = PBXBuildFile; fileRef = B64A61A851185348B2695008405AD490 /* GULMutableDictionary.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2FF2BE53DCA8EE04DBC53FA3A07AF916 /* decorator.h in Headers */ = {isa = PBXBuildFile; fileRef = 10A8C4C742967569EE3A18C53C9DDE76 /* decorator.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 300A7BA55DB2E2C8576B6CE7FB0A34CD /* RCTFPSGraph.m in Sources */ = {isa = PBXBuildFile; fileRef = 6DE41CADA0EFE626471B9B571B7B4216 /* RCTFPSGraph.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 3035872384B71512B8644A2C9491AD6D /* RNCommandsHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = D43C4460B969FE5B8EA38996A9B54E06 /* RNCommandsHandler.m */; }; - 307F3607934710DF997A7298180F7E98 /* RCTImageStoreManager.m in Sources */ = {isa = PBXBuildFile; fileRef = C9BC0349EE3270CF31CAEEE2C3284E46 /* RCTImageStoreManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + 2FF2BE53DCA8EE04DBC53FA3A07AF916 /* decorator.h in Headers */ = {isa = PBXBuildFile; fileRef = 5990CEFE9A2CA85B49282CAB546FA1A3 /* decorator.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 300A7BA55DB2E2C8576B6CE7FB0A34CD /* RCTFPSGraph.m in Sources */ = {isa = PBXBuildFile; fileRef = 1735B21AB2D3DED15024CA3EEDDC5B5A /* RCTFPSGraph.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 3035872384B71512B8644A2C9491AD6D /* RNCommandsHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = 128D961623172015FE2B685D67B6F34A /* RNCommandsHandler.m */; }; + 307F3607934710DF997A7298180F7E98 /* RCTImageStoreManager.m in Sources */ = {isa = PBXBuildFile; fileRef = F44265BEFCCA79CAFCEF970F6D0765DA /* RCTImageStoreManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; 308EE9EA4C9727C5413B848F42523151 /* FIRInstanceIDTokenFetchOperation.h in Headers */ = {isa = PBXBuildFile; fileRef = 08419E1C07242E0A29A26A675DC67E63 /* FIRInstanceIDTokenFetchOperation.h */; settings = {ATTRIBUTES = (Project, ); }; }; 309E081F63A76DB6AB8C9F3CE25D9B9C /* SDImageLoader.m in Sources */ = {isa = PBXBuildFile; fileRef = F26BB59FEC9CBF96A4426D94923EF71D /* SDImageLoader.m */; }; - 30EA45CE3AE07BC35CEF6C9986E2E1F6 /* InspectorInterfaces.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D0CDF372B79B19534402289628E4608E /* InspectorInterfaces.cpp */; }; + 30EA45CE3AE07BC35CEF6C9986E2E1F6 /* InspectorInterfaces.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3070F569D77C934F5B7C297593D5B5A6 /* InspectorInterfaces.cpp */; }; 30EA63D0E95EB523F359EAA9BCADC1F1 /* lossless_neon.c in Sources */ = {isa = PBXBuildFile; fileRef = B4A567AE04DB13B59FF8430E58211E82 /* lossless_neon.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; 30EFA1CE7F1133015F0E3E10A28316CF /* quant_levels_dec_utils.h in Headers */ = {isa = PBXBuildFile; fileRef = 0500B10E6BA68DF16917B05F920FA4CE /* quant_levels_dec_utils.h */; settings = {ATTRIBUTES = (Project, ); }; }; 31008478AA016544A263E99504DE8C56 /* FIRInstallationsIIDStore.m in Sources */ = {isa = PBXBuildFile; fileRef = 0B1BB1A3C8627427538472C2BEF119CE /* FIRInstallationsIIDStore.m */; }; 31104DDF23E644091D0B208B51B3F550 /* upsampling_sse2.c in Sources */ = {isa = PBXBuildFile; fileRef = 288BE286F03060115DD9AF8F02177A9A /* upsampling_sse2.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 3117D5AFA4E546F9B2CEA3EB35965A82 /* REACondNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 40AB3CA1E71EB7AF865C9E4A2454DEBA /* REACondNode.m */; }; - 31274EDDBCD11A92A9DDF9C3CAFD44FE /* EXVideoPlayerViewControllerDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = E45F3C3955FE5FDC3F6B247C5E980AD1 /* EXVideoPlayerViewControllerDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3117D5AFA4E546F9B2CEA3EB35965A82 /* REACondNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 6BE7793A9E985BA86D51A2779D89AC69 /* REACondNode.m */; }; + 31274EDDBCD11A92A9DDF9C3CAFD44FE /* EXVideoPlayerViewControllerDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = 55CDDE57FC78DBCA7864F84CCC0F0E50 /* EXVideoPlayerViewControllerDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; }; 315F128047475CF8C8E82CB2C51AC69E /* FIRInstanceIDStore.m in Sources */ = {isa = PBXBuildFile; fileRef = 7BC2EF7B3BFD238AB12617D31274CEF8 /* FIRInstanceIDStore.m */; }; - 3166FD3754F038B8409AD57568FD58B3 /* UMEventEmitterService.h in Headers */ = {isa = PBXBuildFile; fileRef = FCCFBDF358A2A2888B8341C071D4749B /* UMEventEmitterService.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3178E2FFAF91C8CD5462E8492D7EFE77 /* ARTRenderableManager.m in Sources */ = {isa = PBXBuildFile; fileRef = FC31EFA79C12858731900C2003838846 /* ARTRenderableManager.m */; }; - 31935F903EB3421E32FCD701A8DBD38F /* RNCSlider.m in Sources */ = {isa = PBXBuildFile; fileRef = 7EB39C6BECE77FFF00736B171017BCE5 /* RNCSlider.m */; }; + 3166FD3754F038B8409AD57568FD58B3 /* UMEventEmitterService.h in Headers */ = {isa = PBXBuildFile; fileRef = 99BA76DC5026C5A6F9A2550C28426BC0 /* UMEventEmitterService.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3178E2FFAF91C8CD5462E8492D7EFE77 /* ARTRenderableManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 50C793F4190EE80479B132976E5217D7 /* ARTRenderableManager.m */; }; + 31935F903EB3421E32FCD701A8DBD38F /* RNCSlider.m in Sources */ = {isa = PBXBuildFile; fileRef = 58E309FAA47B11B7B5D3217B55F0FDDC /* RNCSlider.m */; }; 319B2207EC617BEAACE39E7183364D0F /* GDTCORLifecycle.m in Sources */ = {isa = PBXBuildFile; fileRef = 40C0ACE417B604A869EFEBF0F8727F90 /* GDTCORLifecycle.m */; }; - 31F10CDB791C2620DD0B1A31A0F82884 /* RCTFileRequestHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = BB335CBD7693DF5C6519E408890E5308 /* RCTFileRequestHandler.m */; }; + 31F10CDB791C2620DD0B1A31A0F82884 /* RCTFileRequestHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = F1AEE6B592AEB3C3FC339774AB21E5EF /* RCTFileRequestHandler.m */; }; 31F3C1F1C0E29CC26D3A6B81776FC9E1 /* RSKImageCropViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = 6853D0C0275C488A7AFF75D5BF9ACC72 /* RSKImageCropViewController.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3216E3B96EA52D8BDB8D9F86571D35AB /* RCTUITextView.h in Headers */ = {isa = PBXBuildFile; fileRef = F1675751654128D660F7174171BF4AA5 /* RCTUITextView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3240E20C3A58ACFE15D21D48E1D40A6B /* RNForceTouchHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = CA7007C33B613B85F7224B8C1483A870 /* RNForceTouchHandler.m */; }; - 32622CE75F78F8E2F8D5400CD2CB17DC /* FFFastImageView.m in Sources */ = {isa = PBXBuildFile; fileRef = 6810B086173C803B1AC5D3F0C6FD4076 /* FFFastImageView.m */; }; + 3216E3B96EA52D8BDB8D9F86571D35AB /* RCTUITextView.h in Headers */ = {isa = PBXBuildFile; fileRef = 611C1142B2D48827BD18FA78541F3CA6 /* RCTUITextView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3240E20C3A58ACFE15D21D48E1D40A6B /* RNForceTouchHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = AC3146F80E9E21A1B8B4808D1C68C39B /* RNForceTouchHandler.m */; }; + 32622CE75F78F8E2F8D5400CD2CB17DC /* FFFastImageView.m in Sources */ = {isa = PBXBuildFile; fileRef = 424A820722AE0AB3B5DEBBC663D3CC7E /* FFFastImageView.m */; }; 3292BA9319F6A044C79AE28E0D918FC5 /* utils.c in Sources */ = {isa = PBXBuildFile; fileRef = 037F5EC90407C5CE3418149B6C7A824B /* utils.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 3313337DEB72DBE20A1BC168A06E68F8 /* KeyboardTrackingViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 9FC8A6ED4862330A88C805F77FF25F20 /* KeyboardTrackingViewManager.m */; }; - 3317D2669464A6DE7D7DFD3DC080C7B8 /* RCTDiffClampAnimatedNode.m in Sources */ = {isa = PBXBuildFile; fileRef = B6FBB8866BCE49A5BBBDDEBBBF7EFB88 /* RCTDiffClampAnimatedNode.m */; }; - 333803FE324E27588D21B11BCB0C9D06 /* RCTCxxBridge.mm in Sources */ = {isa = PBXBuildFile; fileRef = 2964A875804DB408D6BC6915AC9AEB8B /* RCTCxxBridge.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 33457000C73C1BA5BC2352B54AB16160 /* LongLivedObject.h in Headers */ = {isa = PBXBuildFile; fileRef = E5B48D596BD7B2ACF344424B330A125A /* LongLivedObject.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3313337DEB72DBE20A1BC168A06E68F8 /* KeyboardTrackingViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 6533AF30C7F1669E54085F1CA122D063 /* KeyboardTrackingViewManager.m */; }; + 3317D2669464A6DE7D7DFD3DC080C7B8 /* RCTDiffClampAnimatedNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 07FBA55D74E173238E33A16C344F642F /* RCTDiffClampAnimatedNode.m */; }; + 333803FE324E27588D21B11BCB0C9D06 /* RCTCxxBridge.mm in Sources */ = {isa = PBXBuildFile; fileRef = B23588F9DAD527223E2F6A2624C1D8EE /* RCTCxxBridge.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 33457000C73C1BA5BC2352B54AB16160 /* LongLivedObject.h in Headers */ = {isa = PBXBuildFile; fileRef = 38FC68E3E17EC6854982DDDAD639B419 /* LongLivedObject.h */; settings = {ATTRIBUTES = (Project, ); }; }; 33988475BC9754D18D14BF27766A2C0D /* GULSceneDelegateSwizzler.m in Sources */ = {isa = PBXBuildFile; fileRef = 21A7E3A6A97682E28E064E912B3B4371 /* GULSceneDelegateSwizzler.m */; }; - 33B34720C076709D0AE09FBD66D845C3 /* UMInternalModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 310F683ED975C384F97BB40AD49191AD /* UMInternalModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 33B34720C076709D0AE09FBD66D845C3 /* UMInternalModule.h in Headers */ = {isa = PBXBuildFile; fileRef = E1DE1AC0868BE4AD630B10A72EB3F913 /* UMInternalModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; 33FE4DEEBCA383ED7755A9CBC51B108D /* GDTCORStorage_Private.h in Headers */ = {isa = PBXBuildFile; fileRef = D76568A132A5A42C9799FAF84FB8BD09 /* GDTCORStorage_Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 34056CD84DEBCDD1C746695C686393F5 /* BSG_KSCrashReportFilter.h in Headers */ = {isa = PBXBuildFile; fileRef = 109E17A268FE8F02B5D35C6162B39DEE /* BSG_KSCrashReportFilter.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3413CDA8B5470DCFC4C8E5FB4BD1A291 /* RNPushKitEventHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = CDEB73FF6978392D966224D99861C785 /* RNPushKitEventHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 34056CD84DEBCDD1C746695C686393F5 /* BSG_KSCrashReportFilter.h in Headers */ = {isa = PBXBuildFile; fileRef = D6239308CC1B53D9B40E09F6020AA313 /* BSG_KSCrashReportFilter.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3413CDA8B5470DCFC4C8E5FB4BD1A291 /* RNPushKitEventHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 6A06A5F42608234902F2795066879110 /* RNPushKitEventHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; 341859F7AE772790EC9DE0E1AB2AB792 /* FBLPromise.m in Sources */ = {isa = PBXBuildFile; fileRef = 919435F4CD2ADBE3C210FD10F56B568A /* FBLPromise.m */; }; - 3467E57D037D208C62BFFE18DF8E348E /* BSG_KSCrashSentry.h in Headers */ = {isa = PBXBuildFile; fileRef = 409399A211C9BBCADADFC7BBEA9D1598 /* BSG_KSCrashSentry.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3467E57D037D208C62BFFE18DF8E348E /* BSG_KSCrashSentry.h in Headers */ = {isa = PBXBuildFile; fileRef = 08E84F1A9A7782074CA343CC081CE2C1 /* BSG_KSCrashSentry.h */; settings = {ATTRIBUTES = (Project, ); }; }; 34B59CB8CE7F33E4AEFA4F8D21FAF94C /* SDImageTransformer.h in Headers */ = {isa = PBXBuildFile; fileRef = A38CE196FAF4456B06F77B5B9E0CFDBE /* SDImageTransformer.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 34E56652AA0AEE4823E7F31D025B69C5 /* RCTUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = 6F590C8C8F2CDC014E2AEA8B6412375D /* RCTUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 34E56652AA0AEE4823E7F31D025B69C5 /* RCTUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = 45E10692EB662F67F697D4974A212A58 /* RCTUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; 34EA20ADEFC65F6118975776F29B5ABE /* picture_csp_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = 51EE49DA7F1EB208F9461CB6483D55F0 /* picture_csp_enc.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 35269B5057CDDCC7DEA2FE786C99AF9E /* RNFetchBlobConst.m in Sources */ = {isa = PBXBuildFile; fileRef = 7BF3632D791F4A5F714352EEA5B8D876 /* RNFetchBlobConst.m */; }; - 3532F5EE6268C8BC44E880EF1AF4FB8E /* BugsnagSessionTrackingPayload.h in Headers */ = {isa = PBXBuildFile; fileRef = 9A9758E88D5B4159C227D4E98B9D4B1D /* BugsnagSessionTrackingPayload.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3537CE1621452E04CE333F76DC5EA2FE /* RNFirebaseAnalytics.m in Sources */ = {isa = PBXBuildFile; fileRef = FF4CCB3FD611F83C724F764EDC90F4CE /* RNFirebaseAnalytics.m */; }; - 35772BB3CEED422E3D0575B000524EC7 /* React-cxxreact-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 61316B300EC4E6516D45C322572BBB67 /* React-cxxreact-dummy.m */; }; - 358BABC6CB59A971C1E83090D568F1FE /* UMModuleRegistryAdapter.m in Sources */ = {isa = PBXBuildFile; fileRef = 9978C94F23479A2F0EB1600AB83103DE /* UMModuleRegistryAdapter.m */; }; - 35DB32595AFE292384F7082E4EDB8D9B /* zh-Hans.lproj in Resources */ = {isa = PBXBuildFile; fileRef = FA6914AAA8D92B304193F795555FEAD8 /* zh-Hans.lproj */; }; + 35269B5057CDDCC7DEA2FE786C99AF9E /* RNFetchBlobConst.m in Sources */ = {isa = PBXBuildFile; fileRef = 49B31BEF630FE1A84BBC550977571750 /* RNFetchBlobConst.m */; }; + 3532F5EE6268C8BC44E880EF1AF4FB8E /* BugsnagSessionTrackingPayload.h in Headers */ = {isa = PBXBuildFile; fileRef = F1BC5E1AB6047D4F7ADF0D36A29B43F5 /* BugsnagSessionTrackingPayload.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3537CE1621452E04CE333F76DC5EA2FE /* RNFirebaseAnalytics.m in Sources */ = {isa = PBXBuildFile; fileRef = C55D40C48BFBE3791CE4779FC1608DCB /* RNFirebaseAnalytics.m */; }; + 35772BB3CEED422E3D0575B000524EC7 /* React-cxxreact-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = C009CD0F0640F9686BEB171B032C2C71 /* React-cxxreact-dummy.m */; }; + 358BABC6CB59A971C1E83090D568F1FE /* UMModuleRegistryAdapter.m in Sources */ = {isa = PBXBuildFile; fileRef = BF489842F633BC2B97B300ED3A4079C2 /* UMModuleRegistryAdapter.m */; }; + 35DB32595AFE292384F7082E4EDB8D9B /* zh-Hans.lproj in Resources */ = {isa = PBXBuildFile; fileRef = 03DDE00F106E1098206D051ED5939082 /* zh-Hans.lproj */; }; 362992C88541C7E04A9D3CC4D08CB8F9 /* GDTCORUploadCoordinator.m in Sources */ = {isa = PBXBuildFile; fileRef = 38CB235F9B094ECF8F8B1B1C082AB298 /* GDTCORUploadCoordinator.m */; }; - 3653059F926A9CD42F79EE7DC538DB6B /* SRURLUtilities.h in Headers */ = {isa = PBXBuildFile; fileRef = 39FF141C8955B49FEF966E062C6BF70A /* SRURLUtilities.h */; settings = {ATTRIBUTES = (Project, ); }; }; 3656E1A7C7F5703F0068F479C0F68F58 /* FIRInstanceID+Private.h in Headers */ = {isa = PBXBuildFile; fileRef = 62E764263319E7C9A53A9AF39D7723E5 /* FIRInstanceID+Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 366116BABF4984007964E29E1D5ABD22 /* RCTConvert+UIBackgroundFetchResult.h in Headers */ = {isa = PBXBuildFile; fileRef = F34F68802CA948F90A588B8AAAC756C9 /* RCTConvert+UIBackgroundFetchResult.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 36B30A72BB2A2EB9D72BACEBA5A74C69 /* RNBootSplash.m in Sources */ = {isa = PBXBuildFile; fileRef = 6EC0ECDD792E8CC42416EED2EF4A3DEE /* RNBootSplash.m */; }; + 366116BABF4984007964E29E1D5ABD22 /* RCTConvert+UIBackgroundFetchResult.h in Headers */ = {isa = PBXBuildFile; fileRef = 4677195446E5488B8DE51EEE473A810E /* RCTConvert+UIBackgroundFetchResult.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 36B30A72BB2A2EB9D72BACEBA5A74C69 /* RNBootSplash.m in Sources */ = {isa = PBXBuildFile; fileRef = 1A22417369B201D083B5C56FD0131E12 /* RNBootSplash.m */; }; 36C7EF28833E6681D834301FE13A86F9 /* FIRApp.h in Headers */ = {isa = PBXBuildFile; fileRef = 1D31DB622D9EBAA4FBD560D40618BCBA /* FIRApp.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 36D80615F4DEE0F645C306DFED51FB52 /* RCTTextAttributes.h in Headers */ = {isa = PBXBuildFile; fileRef = ABA1B10914BC5CA476BF7378D667FA12 /* RCTTextAttributes.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3750C40D2865AD541179EC543FBC694D /* SRHash.h in Headers */ = {isa = PBXBuildFile; fileRef = 891F51FBCC2DF3E6A223D2E14C7C00B6 /* SRHash.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 36D80615F4DEE0F645C306DFED51FB52 /* RCTTextAttributes.h in Headers */ = {isa = PBXBuildFile; fileRef = FF790684A443F38C2A2A38A5EB2F4209 /* RCTTextAttributes.h */; settings = {ATTRIBUTES = (Project, ); }; }; 37561D58917BF3DD193FA026B4DC7819 /* buffer_dec.c in Sources */ = {isa = PBXBuildFile; fileRef = 079482D8D03370ABEA3B4293E9E0F902 /* buffer_dec.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; 3785F7EB165DAE2A7047D3376A8A5DB2 /* SDWebImageDownloaderRequestModifier.h in Headers */ = {isa = PBXBuildFile; fileRef = 62DCD8FC43D8554520EF5C154FB8D476 /* SDWebImageDownloaderRequestModifier.h */; settings = {ATTRIBUTES = (Project, ); }; }; 37A8A74509CB140CA1CBD2862791F6C1 /* thread_utils.c in Sources */ = {isa = PBXBuildFile; fileRef = 21BCCE9D22EB85259CE081E0A923EDB6 /* thread_utils.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; 37C0A3BF90F97D08F52212FF1DBF170A /* SDImageIOAnimatedCoderInternal.h in Headers */ = {isa = PBXBuildFile; fileRef = 7EAF77B51624F49BDB16C3865BA59750 /* SDImageIOAnimatedCoderInternal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 37FCEB31D086A0F531245307B9F7C801 /* EXFileSystem.m in Sources */ = {isa = PBXBuildFile; fileRef = A8961D4F92001ADD417D49A3AF4DC252 /* EXFileSystem.m */; }; - 3825F7BBADE0E2636469ABA15B1C2FE3 /* RCTTurboModuleManager.mm in Sources */ = {isa = PBXBuildFile; fileRef = 5B7FDE171B62E30BD02C835F98460D70 /* RCTTurboModuleManager.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 37FCEB31D086A0F531245307B9F7C801 /* EXFileSystem.m in Sources */ = {isa = PBXBuildFile; fileRef = 779AAC453F8FB8A7223C104D0BE1C314 /* EXFileSystem.m */; }; + 3825F7BBADE0E2636469ABA15B1C2FE3 /* RCTTurboModuleManager.mm in Sources */ = {isa = PBXBuildFile; fileRef = E8C83DAA599C68EE0E103DBBF8CE7BE3 /* RCTTurboModuleManager.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; 3834792EC9BABDBC3BEC609A77EC0B45 /* FIRInstallationsAuthTokenResult.h in Headers */ = {isa = PBXBuildFile; fileRef = 30B6C6D8A65E6CF1025DC7B7A6DEE0CD /* FIRInstallationsAuthTokenResult.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 383C5B89C2949BBFEA55565E4DCFCB15 /* ARTCGFloatArray.h in Headers */ = {isa = PBXBuildFile; fileRef = 4223604BB31C3DBC8164425EA2AC9895 /* ARTCGFloatArray.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 383C5B89C2949BBFEA55565E4DCFCB15 /* ARTCGFloatArray.h in Headers */ = {isa = PBXBuildFile; fileRef = 42E0319865F7265D0E5279D85B0DF038 /* ARTCGFloatArray.h */; settings = {ATTRIBUTES = (Project, ); }; }; 3842C7262C69AD90463B43931CE9B8D4 /* backward_references_cost_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = 47848D888973B34379A73A1129C8E494 /* backward_references_cost_enc.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; 38442B0F8709B30A6EDA4CD0454A21A5 /* bignum.h in Headers */ = {isa = PBXBuildFile; fileRef = F4110D159EB83763AAC648B1B81D2F9D /* bignum.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3883B5815DBFA4EF2FE84C41BC335FB8 /* NativeToJsBridge.h in Headers */ = {isa = PBXBuildFile; fileRef = 34742A3FEAFF78BFDCA00F394852BBEE /* NativeToJsBridge.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 38A4CA283B119D95B0A0E732C2331660 /* BSG_KSCrashAdvanced.h in Headers */ = {isa = PBXBuildFile; fileRef = AAAFB23246600310DB407DC0C43DF033 /* BSG_KSCrashAdvanced.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3883B5815DBFA4EF2FE84C41BC335FB8 /* NativeToJsBridge.h in Headers */ = {isa = PBXBuildFile; fileRef = 8612EE252C77A44315B94C42994C2986 /* NativeToJsBridge.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 38A4CA283B119D95B0A0E732C2331660 /* BSG_KSCrashAdvanced.h in Headers */ = {isa = PBXBuildFile; fileRef = 5992071390E2CBCF78CC2FBF807ED268 /* BSG_KSCrashAdvanced.h */; settings = {ATTRIBUTES = (Project, ); }; }; 38A8686E3AE8C9948AC8E16A0FF259FD /* GDTCOREventDataObject.h in Headers */ = {isa = PBXBuildFile; fileRef = D3601FC2175A7805C42496F6D3F25E1D /* GDTCOREventDataObject.h */; settings = {ATTRIBUTES = (Project, ); }; }; 38CD1EEFACF1F4E85CAC904A501B0876 /* SDWebImageTransition.m in Sources */ = {isa = PBXBuildFile; fileRef = 438B0AFC915C650C7DD6BBD7E1482856 /* SDWebImageTransition.m */; }; 38D058F638351726858D7A563A8982A7 /* FIRInstallationsIDController.m in Sources */ = {isa = PBXBuildFile; fileRef = AA4F5619775B05EAF3BD82EDACD91B98 /* FIRInstallationsIDController.m */; }; - 38D4C661B8BBC385A0AB2B4AB1558258 /* DispatchMessageQueueThread.h in Headers */ = {isa = PBXBuildFile; fileRef = 65C7994B7144D7BD386DEE3187235915 /* DispatchMessageQueueThread.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 38D4C661B8BBC385A0AB2B4AB1558258 /* DispatchMessageQueueThread.h in Headers */ = {isa = PBXBuildFile; fileRef = 2F363F579B0872A1071139741255EA95 /* DispatchMessageQueueThread.h */; settings = {ATTRIBUTES = (Project, ); }; }; 38E6BCA7EF6AEE0500A1E457935A37AD /* FBLPromise+Delay.h in Headers */ = {isa = PBXBuildFile; fileRef = 68041748F69925013F2E5E2E941E5D0B /* FBLPromise+Delay.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3916D8D75559CA9F46FA11A981903A5A /* EXRemindersRequester.m in Sources */ = {isa = PBXBuildFile; fileRef = 8D0D8D530585825403547D9DC295DF5C /* EXRemindersRequester.m */; }; - 396E93EBA34EF467BC94F446C88C0349 /* NSURLRequest+SRWebSocket.h in Headers */ = {isa = PBXBuildFile; fileRef = A7C060C8CB3CFCACD29DBD22252B3D73 /* NSURLRequest+SRWebSocket.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 39A8B0F0C8877BB15AD04CD38C7C9161 /* RNFetchBlob.m in Sources */ = {isa = PBXBuildFile; fileRef = 4E9671CEB5D29D25E802B2BDF384DB3A /* RNFetchBlob.m */; }; - 39B19D68538AE0FC980A4351FA0EB0FF /* RCTRawTextShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = 675E4382C53964FF05CCAD7BAE0A9410 /* RCTRawTextShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 39FE229CE1651E2B524FEE20F0222100 /* JSBundleType.h in Headers */ = {isa = PBXBuildFile; fileRef = 78D342071E9E74C51583CF6979E97A94 /* JSBundleType.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3A218CA173C1EE76D958B3AD0C9BC0CD /* RCTUITextView.h in Headers */ = {isa = PBXBuildFile; fileRef = F1675751654128D660F7174171BF4AA5 /* RCTUITextView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3916D8D75559CA9F46FA11A981903A5A /* EXRemindersRequester.m in Sources */ = {isa = PBXBuildFile; fileRef = BFB7D7D7547D91DB8ED2258EE5661073 /* EXRemindersRequester.m */; }; + 39A8B0F0C8877BB15AD04CD38C7C9161 /* RNFetchBlob.m in Sources */ = {isa = PBXBuildFile; fileRef = 8FF0E90CBD46D14B8158DE06195E1118 /* RNFetchBlob.m */; }; + 39B19D68538AE0FC980A4351FA0EB0FF /* RCTRawTextShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = FD25C0A52FF914112C3804C37A8386C2 /* RCTRawTextShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 39FE229CE1651E2B524FEE20F0222100 /* JSBundleType.h in Headers */ = {isa = PBXBuildFile; fileRef = 22C357387594FDA4AC495365D7ECABF3 /* JSBundleType.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3A218CA173C1EE76D958B3AD0C9BC0CD /* RCTUITextView.h in Headers */ = {isa = PBXBuildFile; fileRef = 611C1142B2D48827BD18FA78541F3CA6 /* RCTUITextView.h */; settings = {ATTRIBUTES = (Project, ); }; }; 3A2AB10764D649D2C494B8ACE9F93C74 /* FBLPromiseError.h in Headers */ = {isa = PBXBuildFile; fileRef = EF4EB3533CCB7A84BFF17BE881F535D0 /* FBLPromiseError.h */; settings = {ATTRIBUTES = (Project, ); }; }; 3A41B9C4BAA9C197A9D08F1ACC7C7CC8 /* SDImageGraphics.m in Sources */ = {isa = PBXBuildFile; fileRef = D525C8CC60B15909F0B82D63E338E963 /* SDImageGraphics.m */; }; - 3A588C35CF59D1DA0D42450E2D7D237C /* EXConstantsService.m in Sources */ = {isa = PBXBuildFile; fileRef = 7CC02974A6FF92936716DE35746FEAF6 /* EXConstantsService.m */; }; + 3A588C35CF59D1DA0D42450E2D7D237C /* EXConstantsService.m in Sources */ = {isa = PBXBuildFile; fileRef = 1DC0F40D3EC7137C9F56AE3B0EB2E4BD /* EXConstantsService.m */; }; 3A6B7B5EA8B4C74A3B3628907AF2C361 /* FirebaseCore.h in Headers */ = {isa = PBXBuildFile; fileRef = 325556A95664EB529C31870C6A52D5D8 /* FirebaseCore.h */; settings = {ATTRIBUTES = (Project, ); }; }; 3A90F40F02279EE028931CE48514D66F /* double-conversion.cc in Sources */ = {isa = PBXBuildFile; fileRef = 9CC2E2273ED5FE89DBB756223A07E524 /* double-conversion.cc */; settings = {COMPILER_FLAGS = "-Wno-unreachable-code"; }; }; - 3A922CDA2316846097056591F696D6F7 /* RCTDatePicker.m in Sources */ = {isa = PBXBuildFile; fileRef = D9978EFD225317CD8079BD001D10843B /* RCTDatePicker.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 3AA635385D2DD6AF7B23A198E1851B06 /* EXRemoteNotificationRequester.m in Sources */ = {isa = PBXBuildFile; fileRef = 44D9F3CE14E625BABB5E097B30F5CB76 /* EXRemoteNotificationRequester.m */; }; - 3AAFEFC4AD799AFDB98222D0B36F097B /* RCTMultipartStreamReader.h in Headers */ = {isa = PBXBuildFile; fileRef = D2043CF5152C825C890550BD1356BFBD /* RCTMultipartStreamReader.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3A922CDA2316846097056591F696D6F7 /* RCTDatePicker.m in Sources */ = {isa = PBXBuildFile; fileRef = 6904432957BAB3A3C83C0A370724DE98 /* RCTDatePicker.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 3AA635385D2DD6AF7B23A198E1851B06 /* EXRemoteNotificationRequester.m in Sources */ = {isa = PBXBuildFile; fileRef = 3A83A10DCA120BCFF11AC91AC2107418 /* EXRemoteNotificationRequester.m */; }; + 3AAFEFC4AD799AFDB98222D0B36F097B /* RCTMultipartStreamReader.h in Headers */ = {isa = PBXBuildFile; fileRef = 08215ED1667C22CEC03E00D608044BFF /* RCTMultipartStreamReader.h */; settings = {ATTRIBUTES = (Project, ); }; }; 3ABBA80F6C061E7A70AF047FF9B2595C /* GDTCCTCompressionHelper.h in Headers */ = {isa = PBXBuildFile; fileRef = 5847FD2633BC9047F028FE38A7084AD7 /* GDTCCTCompressionHelper.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3AC6D38871E11794AACBDDD94449CE63 /* BugsnagReactNative.m in Sources */ = {isa = PBXBuildFile; fileRef = DC3DA5DA8FE0F9BCE4503E8D5A7AC52B /* BugsnagReactNative.m */; }; + 3AC6D38871E11794AACBDDD94449CE63 /* BugsnagReactNative.m in Sources */ = {isa = PBXBuildFile; fileRef = 9264962D918434D599141B849812E45B /* BugsnagReactNative.m */; }; 3B19116ABDED6431782A3A8BB569F8C6 /* GULAppEnvironmentUtil.m in Sources */ = {isa = PBXBuildFile; fileRef = 9266B058E00473F5A3D7D31E6AFE30EA /* GULAppEnvironmentUtil.m */; }; 3B333F775A3E42130B41AE2EF4E0B53D /* near_lossless_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = 099A43376A0723FBD49B492ED1DA139D /* near_lossless_enc.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 3B426494F084B4127219E522755411FA /* RCTKeyCommandConstants.m in Sources */ = {isa = PBXBuildFile; fileRef = 5404E1BB112AB1AD2E66596014FB52E7 /* RCTKeyCommandConstants.m */; }; - 3B565DC355CC5A6C542619592FAE3C31 /* ImageCropPicker.h in Headers */ = {isa = PBXBuildFile; fileRef = F41739E7FEBF3FE1C1AEAAE4CC3FF7E2 /* ImageCropPicker.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3B426494F084B4127219E522755411FA /* RCTKeyCommandConstants.m in Sources */ = {isa = PBXBuildFile; fileRef = 44C26B1AF5555BF7DFE92192559B92E8 /* RCTKeyCommandConstants.m */; }; + 3B565DC355CC5A6C542619592FAE3C31 /* ImageCropPicker.h in Headers */ = {isa = PBXBuildFile; fileRef = 1AD931A3769962EFF7BE82AD4E7BF961 /* ImageCropPicker.h */; settings = {ATTRIBUTES = (Project, ); }; }; 3B5A6465606762C6EB7BF68923C55487 /* FIRAnalyticsConfiguration.m in Sources */ = {isa = PBXBuildFile; fileRef = 7FE52EC86FAD6477499E13343ED2C1DF /* FIRAnalyticsConfiguration.m */; }; 3C0FCF93B0ED1741AC247835CC335F80 /* UIImage+Transform.m in Sources */ = {isa = PBXBuildFile; fileRef = 91CF14832C73F2B333714483F06B3C9A /* UIImage+Transform.m */; }; - 3C3A3FB4AFFF88F2C17EA07185AC0663 /* RCTFollyConvert.mm in Sources */ = {isa = PBXBuildFile; fileRef = C40461EF02CA744E700FA23B4CC04E99 /* RCTFollyConvert.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 3C766293FB7619D510FF59F15B150FAD /* RNPinchHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 9D66A331ECD318AD1EEC4BA57AABA5A8 /* RNPinchHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3C3A3FB4AFFF88F2C17EA07185AC0663 /* RCTFollyConvert.mm in Sources */ = {isa = PBXBuildFile; fileRef = B47D76B4CD8715A14EE59913C8DEBA9E /* RCTFollyConvert.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 3C766293FB7619D510FF59F15B150FAD /* RNPinchHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 6C3B8D829EC3EED4A0A20FCDEB87EC9A /* RNPinchHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; 3CD9657B5CDE67AE647DA7FC86A341A7 /* RSKTouchView.m in Sources */ = {isa = PBXBuildFile; fileRef = BB3994268A3900BB3EC0B6E41C8ACEEC /* RSKTouchView.m */; }; - 3D1507020B4C2DC1A841168F7B2F2095 /* BSG_KSCrashReport.h in Headers */ = {isa = PBXBuildFile; fileRef = 709C8882F69906A0672BF3CEC304D897 /* BSG_KSCrashReport.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3D2BDDA5696E0248B91335C53007C1D8 /* RCTKeyCommandsManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 785DDA99E0152C2C12DBC98A5280D09B /* RCTKeyCommandsManager.m */; }; - 3D62B6B0650C43E889B249FA6981903E /* REAModule.m in Sources */ = {isa = PBXBuildFile; fileRef = 0BCE7BF2A3D165BDF17546EC20DB92AE /* REAModule.m */; }; + 3D1507020B4C2DC1A841168F7B2F2095 /* BSG_KSCrashReport.h in Headers */ = {isa = PBXBuildFile; fileRef = 59A1EB5759C3D1C6D71C074D9FDE298D /* BSG_KSCrashReport.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3D2BDDA5696E0248B91335C53007C1D8 /* RCTKeyCommandsManager.m in Sources */ = {isa = PBXBuildFile; fileRef = DD9ADDBF10393421028491EB2CC23D3A /* RCTKeyCommandsManager.m */; }; + 3D62B6B0650C43E889B249FA6981903E /* REAModule.m in Sources */ = {isa = PBXBuildFile; fileRef = 99E407056F1EB32758CF672845CA94C0 /* REAModule.m */; }; 3D8BE5BF644BE9BB4F41CAB6B7D79A09 /* strtod.cc in Sources */ = {isa = PBXBuildFile; fileRef = 4D7305392656B07787D0BAA87B5735C4 /* strtod.cc */; settings = {COMPILER_FLAGS = "-Wno-unreachable-code"; }; }; 3D9F8FE3C127F89AEAD65F09969FE642 /* muxedit.c in Sources */ = {isa = PBXBuildFile; fileRef = E71363AF216BF6A9FDEDA89C8D14B6A2 /* muxedit.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; 3DA3978096D5C53CBFF6D5DCE1A25655 /* GDTCCTUploader.m in Sources */ = {isa = PBXBuildFile; fileRef = 23D5AA523F9126F7D30ECF8AA9BBE433 /* GDTCCTUploader.m */; }; - 3DB2B8FFC504E9B2209D51E0471B3072 /* NativeExpressComponent.m in Sources */ = {isa = PBXBuildFile; fileRef = F0545D9065FF930613431B950003896C /* NativeExpressComponent.m */; }; + 3DB2B8FFC504E9B2209D51E0471B3072 /* NativeExpressComponent.m in Sources */ = {isa = PBXBuildFile; fileRef = 8DF7BE118B4A9C7992B9F7758F740FA3 /* NativeExpressComponent.m */; }; 3DB6D861B1BED3FE02246D09E892A49B /* FBLPromise+Always.h in Headers */ = {isa = PBXBuildFile; fileRef = 47B052E1FD1233F07E279610681D4C0B /* FBLPromise+Always.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3DC6AD9F4EB8CA917DAA18FC2C54697A /* RCTMacros.h in Headers */ = {isa = PBXBuildFile; fileRef = 4D64B695E3D1A4B87496EAC258BB84A1 /* RCTMacros.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3DF0FC2AAEEB2CD774228809E76A36EA /* RCTWeakProxy.m in Sources */ = {isa = PBXBuildFile; fileRef = 177F27791F1F5AB2C725EAF000624C2C /* RCTWeakProxy.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 3DF2CF12BAE1442A3F18E366DCF1E367 /* JsArgumentHelpers-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = D6B6866455153F0C88C9AC425906D711 /* JsArgumentHelpers-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3E0588C6F38C12F8417DEA53E703E771 /* InspectorInterfaces.h in Headers */ = {isa = PBXBuildFile; fileRef = E2E5B8EAFD3F11EAA410A4BE4C4A6DFF /* InspectorInterfaces.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3E31ADE4D01843AFE94E6B95687C36C1 /* RCTShadowView+Layout.h in Headers */ = {isa = PBXBuildFile; fileRef = A3FCF6738E7CCD3B68EE06C013A821C3 /* RCTShadowView+Layout.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3E79EBF873CC80665DB87799FE8B85CC /* RCTShadowView+Internal.m in Sources */ = {isa = PBXBuildFile; fileRef = 9F6875CF19B5DBBF63F716646E5ADDDC /* 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"; }; }; + 3DC6AD9F4EB8CA917DAA18FC2C54697A /* RCTMacros.h in Headers */ = {isa = PBXBuildFile; fileRef = 8AC24873AE21C7CB4D10EC567908AE3E /* RCTMacros.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3DF0FC2AAEEB2CD774228809E76A36EA /* RCTWeakProxy.m in Sources */ = {isa = PBXBuildFile; fileRef = 4A7E60A0E9CFA3617FEB966BBB5D45E4 /* RCTWeakProxy.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 3DF2CF12BAE1442A3F18E366DCF1E367 /* JsArgumentHelpers-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 25DF488B81D0E671DF23DF5FEA48695B /* JsArgumentHelpers-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3E0588C6F38C12F8417DEA53E703E771 /* InspectorInterfaces.h in Headers */ = {isa = PBXBuildFile; fileRef = 4A0317821D03033EF9B41F8CE7797C29 /* InspectorInterfaces.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3E31ADE4D01843AFE94E6B95687C36C1 /* RCTShadowView+Layout.h in Headers */ = {isa = PBXBuildFile; fileRef = 39487850C84D1F5D30871A9B1105A7A1 /* RCTShadowView+Layout.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3E79EBF873CC80665DB87799FE8B85CC /* RCTShadowView+Internal.m in Sources */ = {isa = PBXBuildFile; fileRef = 60C6CF14C7A27A5A0F0852E9D99D738C /* 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"; }; }; 3E7CFC6BBA278D60B2DEF04E96E41275 /* SDAnimatedImageView.m in Sources */ = {isa = PBXBuildFile; fileRef = 22DA47BB069C91769B82987265E8AA4F /* SDAnimatedImageView.m */; }; - 3E9B846063DBDF34FBAF2E13B2104ECC /* RCTNativeAnimatedModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 4C70A87489F392A1B6E5D1D0AE32FACA /* RCTNativeAnimatedModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3E9B846063DBDF34FBAF2E13B2104ECC /* RCTNativeAnimatedModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 7FC023D83ABAA92FFB9931AF1FE58FEF /* RCTNativeAnimatedModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; 3EC8C2462B60DB403104F22B294A4B24 /* FIRLibrary.h in Headers */ = {isa = PBXBuildFile; fileRef = 1C2373D7CD550A7BB6746818ACCFF4A9 /* FIRLibrary.h */; settings = {ATTRIBUTES = (Project, ); }; }; 3ECD97BBD34E2AEF1DB283897AEBB626 /* NSImage+Compatibility.h in Headers */ = {isa = PBXBuildFile; fileRef = 8B4C2C687BA9A4F482BCC6E3550747BE /* NSImage+Compatibility.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3ED49C84C1C1A124F30F61E18033F6E1 /* REATransformNode.m in Sources */ = {isa = PBXBuildFile; fileRef = BC2280109178365BF5E8D19D3664F27C /* REATransformNode.m */; }; - 3ED530EBB19DB479636138A65FFFC9D9 /* RCTImageLoaderProtocol.h in Headers */ = {isa = PBXBuildFile; fileRef = 8D7635460ED8FD643150486E9CB9D81B /* RCTImageLoaderProtocol.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3ED49C84C1C1A124F30F61E18033F6E1 /* REATransformNode.m in Sources */ = {isa = PBXBuildFile; fileRef = F4E8B93DDE094ADDEFA731432E9A74B0 /* REATransformNode.m */; }; + 3ED530EBB19DB479636138A65FFFC9D9 /* RCTImageLoaderProtocol.h in Headers */ = {isa = PBXBuildFile; fileRef = 2A50FE5F8576807454CF6EB0587594A9 /* RCTImageLoaderProtocol.h */; settings = {ATTRIBUTES = (Project, ); }; }; 3F16574039A61B5C86268A6D9E5BD931 /* picture_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = CE50447D6089FD034C451BE7675B6D7A /* picture_enc.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 3F23A9C8F4C6D6FC2240003C679F1D40 /* UMReactFontManager.h in Headers */ = {isa = PBXBuildFile; fileRef = DEF1E6D4085ECAEDC5C63726D34480F6 /* UMReactFontManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3F4D09BB757DC2587425562E435DD7DB /* QBCheckmarkView.h in Headers */ = {isa = PBXBuildFile; fileRef = FF0DCB70E216342B05B65FE350A12DF7 /* QBCheckmarkView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3F4E6AB35F55AE7DF736BE8E399AF815 /* RNFirebasePerformance.h in Headers */ = {isa = PBXBuildFile; fileRef = BF28D6411819551A0C3F513B2FB176F2 /* RNFirebasePerformance.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3F8DC9E3686D8CA5C3C1DCAE5CA38D5F /* RCTSourceCode.m in Sources */ = {isa = PBXBuildFile; fileRef = D8D105744D89D41C51D7366D9C1F12AF /* RCTSourceCode.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 3FAECAD98E39575A2C864CE080401E9F /* RCTDivisionAnimatedNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 4158383322F0996F912D9F1008500D78 /* RCTDivisionAnimatedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3F23A9C8F4C6D6FC2240003C679F1D40 /* UMReactFontManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 63E02F31641BA64A05570A91167B7DFF /* UMReactFontManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3F4D09BB757DC2587425562E435DD7DB /* QBCheckmarkView.h in Headers */ = {isa = PBXBuildFile; fileRef = 13D536AFCE3AD22E3689BC5612CB06E1 /* QBCheckmarkView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3F4E6AB35F55AE7DF736BE8E399AF815 /* RNFirebasePerformance.h in Headers */ = {isa = PBXBuildFile; fileRef = E17B813ADEBBCD5930DBDE808FA18B7D /* RNFirebasePerformance.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3F8DC9E3686D8CA5C3C1DCAE5CA38D5F /* RCTSourceCode.m in Sources */ = {isa = PBXBuildFile; fileRef = 3CE11C19C75D48A2A6E101F06C1ABC38 /* RCTSourceCode.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 3FAECAD98E39575A2C864CE080401E9F /* RCTDivisionAnimatedNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 84C4B68701663B819E5E5E67BCAC43CD /* RCTDivisionAnimatedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; 3FE6DC36C896C99E4F0E10B92E1FE061 /* frame_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = 535AA0B78CF70BA9675FAEC421BED1E6 /* frame_enc.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 3FFF42A16F8EB91750162C36C8843027 /* RCTClipboard.m in Sources */ = {isa = PBXBuildFile; fileRef = 1B4CE47AAEE3E338D296FF8B71DFDA84 /* RCTClipboard.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 3FFF42A16F8EB91750162C36C8843027 /* RCTClipboard.m in Sources */ = {isa = PBXBuildFile; fileRef = BF17B5C378BF4E3EAB078D3DFAD3B372 /* RCTClipboard.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; 403E9D49D8232B1F6A6BACED3679104F /* SDAnimatedImageRep.m in Sources */ = {isa = PBXBuildFile; fileRef = ECFF7646CDA1C9BC7B92C2364D35EB4F /* SDAnimatedImageRep.m */; }; - 407DE17E311F50FDA9BC4ED4C4759FF6 /* RNFirebaseAdMobNativeExpressManager.m in Sources */ = {isa = PBXBuildFile; fileRef = F46016DF4AF8D71E29B31E6FB0A02B2D /* RNFirebaseAdMobNativeExpressManager.m */; }; + 407DE17E311F50FDA9BC4ED4C4759FF6 /* RNFirebaseAdMobNativeExpressManager.m in Sources */ = {isa = PBXBuildFile; fileRef = AAA50A9FFB210D77784EA8FB048F3054 /* RNFirebaseAdMobNativeExpressManager.m */; }; 407DF13B0A6D61F156D84B50D25A3E2D /* upsampling_neon.c in Sources */ = {isa = PBXBuildFile; fileRef = 6A5DB3B95A61733B29846B836C5FE77A /* upsampling_neon.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 40E02135B467F425AA7FC5D7C7DA09FD /* EXContactsRequester.h in Headers */ = {isa = PBXBuildFile; fileRef = 0BB9E3C233F176523BAAE5558371F613 /* EXContactsRequester.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 41131751C2A30224DA39830C7FABDC37 /* JSCallInvoker.h in Headers */ = {isa = PBXBuildFile; fileRef = 060D1E09824A6BDCFA363B597162E89F /* JSCallInvoker.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 40E02135B467F425AA7FC5D7C7DA09FD /* EXContactsRequester.h in Headers */ = {isa = PBXBuildFile; fileRef = 0ADF56430FFD715DB3531F3EADD9C783 /* EXContactsRequester.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 41131751C2A30224DA39830C7FABDC37 /* JSCallInvoker.h in Headers */ = {isa = PBXBuildFile; fileRef = 976F7A2402DE1ECBB4C1458711ADD7F4 /* JSCallInvoker.h */; settings = {ATTRIBUTES = (Project, ); }; }; 411A3C1B75FB16BE3B6C5709BBB21AD0 /* upsampling_sse41.c in Sources */ = {isa = PBXBuildFile; fileRef = 6C8FC56CD5FE60871A148C7D2580D8D2 /* upsampling_sse41.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 41305B5E2E38F44BB750E2C3EB2ACEBA /* BugsnagSessionFileStore.h in Headers */ = {isa = PBXBuildFile; fileRef = B6C3400B9B43229B89FF56742C801E21 /* BugsnagSessionFileStore.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 417C1F0F90CD0DF24740636DDA0E766F /* FBReactNativeSpec-generated.mm in Sources */ = {isa = PBXBuildFile; fileRef = 9EC42C12870C913DC0C019147B261D28 /* FBReactNativeSpec-generated.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; - 41A875AF9B80762A227B0C9FCDADC17B /* EXConstants-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = E4037C9C747422DD6AEE7FBF85DC8CE0 /* EXConstants-dummy.m */; }; + 41305B5E2E38F44BB750E2C3EB2ACEBA /* BugsnagSessionFileStore.h in Headers */ = {isa = PBXBuildFile; fileRef = 0CAFC812CFBEC4222B769385DF27E252 /* BugsnagSessionFileStore.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 417C1F0F90CD0DF24740636DDA0E766F /* FBReactNativeSpec-generated.mm in Sources */ = {isa = PBXBuildFile; fileRef = B68AA15C4F4F0A45F5AFD6068B2217C6 /* FBReactNativeSpec-generated.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + 41A875AF9B80762A227B0C9FCDADC17B /* EXConstants-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 4EB1D78F58F2AC22BAFBEA75562D26E7 /* EXConstants-dummy.m */; }; 41C778DE498447ED87070B6D37C30A85 /* GULAppDelegateSwizzler.m in Sources */ = {isa = PBXBuildFile; fileRef = D4389EC289745BCEF60BEA7CDAC784D2 /* GULAppDelegateSwizzler.m */; }; - 41EA0669E9251ED0B3F27FB92F566757 /* UMModuleRegistry.m in Sources */ = {isa = PBXBuildFile; fileRef = 0FBA2A384AB19326CEDB1B9DFEAEE9B3 /* UMModuleRegistry.m */; }; + 41EA0669E9251ED0B3F27FB92F566757 /* UMModuleRegistry.m in Sources */ = {isa = PBXBuildFile; fileRef = FC8C100F84609F49CA2869F2C9F9CBC8 /* UMModuleRegistry.m */; }; 4200E4BFCB23A3C2905D0525513F68CA /* GULLogger.m in Sources */ = {isa = PBXBuildFile; fileRef = F12DAF7528A201C09ADE0D2FC9600260 /* GULLogger.m */; }; - 420273C9877ACFCFBB918F211EA0EC2C /* RNNotifications.m in Sources */ = {isa = PBXBuildFile; fileRef = 677166F630594E11AE96CF04D9C7E975 /* RNNotifications.m */; }; - 425BD2391D1D2FEBFC1CB70A38B08961 /* SRConstants.h in Headers */ = {isa = PBXBuildFile; fileRef = 9910761C70985104D9B9EB9569F9E898 /* SRConstants.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4291025987BAFF7204F5EF33EC8B11FA /* jsi.h in Headers */ = {isa = PBXBuildFile; fileRef = 11BA50444939DB8E3A2F27F4A4E46EA4 /* jsi.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 430E21DB1E40C00BBCD1A57AD6A66D7E /* RCTTurboModuleManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 97CA2C9944040D8E3487507E0506EBFB /* RCTTurboModuleManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 420273C9877ACFCFBB918F211EA0EC2C /* RNNotifications.m in Sources */ = {isa = PBXBuildFile; fileRef = 495445908EE659AF2636C1259E847FBA /* RNNotifications.m */; }; + 4291025987BAFF7204F5EF33EC8B11FA /* jsi.h in Headers */ = {isa = PBXBuildFile; fileRef = DE8B7BF569CBA6D1DF75687E3F300B24 /* jsi.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 430E21DB1E40C00BBCD1A57AD6A66D7E /* RCTTurboModuleManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 1BD56A20AEB3E37F98C3B9820C95DDCA /* RCTTurboModuleManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; 431786DF93882E8D7B28D5DAD61598CB /* GULOriginalIMPConvenienceMacros.h in Headers */ = {isa = PBXBuildFile; fileRef = C8AAC00DA3B23BFCDC15277B87A9557B /* GULOriginalIMPConvenienceMacros.h */; settings = {ATTRIBUTES = (Project, ); }; }; 43179FC00D84AEC590B6246AB2749BAA /* GDTCORDataFuture.h in Headers */ = {isa = PBXBuildFile; fileRef = D5B3BDB0DF8A0EE45046BCB479E4B62C /* GDTCORDataFuture.h */; settings = {ATTRIBUTES = (Project, ); }; }; 43A35C1D3B3938A25ADA1DAE6C41540A /* cct.nanopb.c in Sources */ = {isa = PBXBuildFile; fileRef = C67A04FD4DB80B332055C981539D61A1 /* cct.nanopb.c */; }; - 43DC0AC2630D1973E947E9A504AD5F74 /* jsi.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 7D62F07926EB11321F85BFCF3F01D921 /* jsi.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 4401917CF3FFE099B7EE236875BE77E1 /* BugsnagUser.m in Sources */ = {isa = PBXBuildFile; fileRef = 8F0921E721DDC0F6BE45151BDCD1ABDF /* BugsnagUser.m */; }; - 44077BE7DC478E91BB1F7FBCBD475D79 /* RNBootSplash-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 2C9C70911FE0ECFB92CA0FD3ABF17D61 /* RNBootSplash-dummy.m */; }; - 4421F45C72AA58B59CFFE20E555856FB /* SRIOConsumerPool.h in Headers */ = {isa = PBXBuildFile; fileRef = BDEC502F8043DAC827CF0FFF0DC005FE /* SRIOConsumerPool.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4425EE6E7CE196D6CBE6414B491A2DB3 /* RCTImageURLLoader.h in Headers */ = {isa = PBXBuildFile; fileRef = 96415BBAA19ADD3C96A17BF635D3D1CC /* RCTImageURLLoader.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 442AAD764C2B5335D2D63EC64FDCABAE /* RCTDevSettings.h in Headers */ = {isa = PBXBuildFile; fileRef = A97135A9FF0BCD9BF02F7D39ECD79FA4 /* RCTDevSettings.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 43DC0AC2630D1973E947E9A504AD5F74 /* jsi.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 817FAA1AAEAE43A6556BF57418ED4259 /* jsi.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 4401917CF3FFE099B7EE236875BE77E1 /* BugsnagUser.m in Sources */ = {isa = PBXBuildFile; fileRef = 8C3CD206B77DAF6F30D5EDDD376B4C99 /* BugsnagUser.m */; }; + 44077BE7DC478E91BB1F7FBCBD475D79 /* RNBootSplash-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = DA46BDECFBF0757C612C2E9AE49CB34F /* RNBootSplash-dummy.m */; }; + 4425EE6E7CE196D6CBE6414B491A2DB3 /* RCTImageURLLoader.h in Headers */ = {isa = PBXBuildFile; fileRef = E19DA1777EC599E1490DFA81A349EA6B /* RCTImageURLLoader.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 442AAD764C2B5335D2D63EC64FDCABAE /* RCTDevSettings.h in Headers */ = {isa = PBXBuildFile; fileRef = 9F56B045F7383F4DDF69AB5032C448A9 /* RCTDevSettings.h */; settings = {ATTRIBUTES = (Project, ); }; }; 4456E28CE66464D55C0363C9BE7A328D /* FBLPromise+Catch.h in Headers */ = {isa = PBXBuildFile; fileRef = 47BAFD858ABCC55478AF6AB0854547DF /* FBLPromise+Catch.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 447005F902B950F31D9B84B31863C6C2 /* RNGestureHandlerState.h in Headers */ = {isa = PBXBuildFile; fileRef = D73E9F5256FAFC6F64368F34D6438D49 /* RNGestureHandlerState.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 44A5A16ECF6812A67354E03D10FED517 /* RCTManagedPointer.h in Headers */ = {isa = PBXBuildFile; fileRef = B03FAEA89B6C72A886E243887CD6C1C4 /* RCTManagedPointer.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 447005F902B950F31D9B84B31863C6C2 /* RNGestureHandlerState.h in Headers */ = {isa = PBXBuildFile; fileRef = D3038B691CBB8D31F26D901D94F774E6 /* RNGestureHandlerState.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 44A5A16ECF6812A67354E03D10FED517 /* RCTManagedPointer.h in Headers */ = {isa = PBXBuildFile; fileRef = 6FAD7EF1B8A1AF83416EDBA8A7109925 /* RCTManagedPointer.h */; settings = {ATTRIBUTES = (Project, ); }; }; 44C3BFF27B3A00065E0694106B6BBC65 /* FIRInstanceIDStringEncoding.h in Headers */ = {isa = PBXBuildFile; fileRef = A0DE2AA756FD1093A58487EEF833F499 /* FIRInstanceIDStringEncoding.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 44CE88088F17C4DA76F31DB5A23EF1C0 /* RNFirebaseCrashlytics.m in Sources */ = {isa = PBXBuildFile; fileRef = 35F82330B8E68C52F82F58F0989F80E2 /* RNFirebaseCrashlytics.m */; }; - 44D47F1B80F64630143457D5E61D30D9 /* EXAppLoaderProvider-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 17746BD41A3351FD6FDE3B8F9BBD4C68 /* EXAppLoaderProvider-dummy.m */; }; - 450237AE946360B4D86A82DF9108EF63 /* RCTStatusBarManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 3FD98BA6B8B36A3A9D2BE342D332A619 /* RCTStatusBarManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 44CE88088F17C4DA76F31DB5A23EF1C0 /* RNFirebaseCrashlytics.m in Sources */ = {isa = PBXBuildFile; fileRef = E47104869562FC29A7E829A9F6863801 /* RNFirebaseCrashlytics.m */; }; + 44D47F1B80F64630143457D5E61D30D9 /* EXAppLoaderProvider-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = CBE74C01DFA15ACD28E7926C36C4F0F4 /* EXAppLoaderProvider-dummy.m */; }; + 450237AE946360B4D86A82DF9108EF63 /* RCTStatusBarManager.h in Headers */ = {isa = PBXBuildFile; fileRef = FD88CEF1B990010FAFE6E6255571C188 /* RCTStatusBarManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; 4511E4C8DFD1706C322BEFECAB639B93 /* FIRInstanceIDCheckinPreferences_Private.h in Headers */ = {isa = PBXBuildFile; fileRef = E7DE8C91E01DA1613F5EC7CD66F28061 /* FIRInstanceIDCheckinPreferences_Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4512CF639ACCB7CC62CD0336CC637A95 /* UIImage+Resize.h in Headers */ = {isa = PBXBuildFile; fileRef = F29AB00DBAEED696072011BD73C44A43 /* UIImage+Resize.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 452641E607EA42EAB0D4C7FC7F68438A /* RNFirebaseRemoteConfig.m in Sources */ = {isa = PBXBuildFile; fileRef = 25F909FC5FAD0CDE226B103F90126288 /* RNFirebaseRemoteConfig.m */; }; + 4512CF639ACCB7CC62CD0336CC637A95 /* UIImage+Resize.h in Headers */ = {isa = PBXBuildFile; fileRef = 9B1F2DF1BECF9F85C9D31E1FBBD1B43E /* UIImage+Resize.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 452641E607EA42EAB0D4C7FC7F68438A /* RNFirebaseRemoteConfig.m in Sources */ = {isa = PBXBuildFile; fileRef = 73217AEE8BFBF443544995432E5010DF /* RNFirebaseRemoteConfig.m */; }; 4532353CD119D76BF82B67891C680DD6 /* FirebaseInstanceID-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = E05491038895B9B893771A35A083EAA8 /* FirebaseInstanceID-dummy.m */; }; - 458E43E940D2058F9A68BBD0956A7644 /* BSGConnectivity.h in Headers */ = {isa = PBXBuildFile; fileRef = 0CE1ECCA6CFB5B862B175CA1BCA57CB5 /* BSGConnectivity.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 458E43E940D2058F9A68BBD0956A7644 /* BSGConnectivity.h in Headers */ = {isa = PBXBuildFile; fileRef = EF6FDED33F0B567F1794633657BA18EB /* BSGConnectivity.h */; settings = {ATTRIBUTES = (Project, ); }; }; 45B509EAE6F30C8FD22CB2AF7B72D785 /* SDWebImageCompat.h in Headers */ = {isa = PBXBuildFile; fileRef = 3479DAFDB6E7103FA78860240F0C3A7C /* SDWebImageCompat.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 45FADA4EB5D6E6A2B5A3B8D358E27D2D /* EXVideoPlayerViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = 9642307CFE69843F8EC6FA3D05587A1A /* EXVideoPlayerViewController.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 45FE11CB3CB7BBE3D49D3B126DB75BA1 /* ARTPattern.m in Sources */ = {isa = PBXBuildFile; fileRef = 01C506B0E0D7455EBDDC6171B896BCDE /* ARTPattern.m */; }; - 460EDFD72035E6D5F088C95B73F30305 /* RCTBaseTextShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = E7ED923F9585210CE8597F266367124E /* RCTBaseTextShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 463558BBD4C758646B3A100042977D4A /* RCTCustomInputController.h in Headers */ = {isa = PBXBuildFile; fileRef = EB50F05C09765B05AB3D7AAE4C3732E7 /* RCTCustomInputController.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 45FADA4EB5D6E6A2B5A3B8D358E27D2D /* EXVideoPlayerViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = B6841DA2414D92A3CD24C3DF9CE0A6C2 /* EXVideoPlayerViewController.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 45FE11CB3CB7BBE3D49D3B126DB75BA1 /* ARTPattern.m in Sources */ = {isa = PBXBuildFile; fileRef = 876C8D7091AA8A63FBB4DB53510FC72A /* ARTPattern.m */; }; + 460EDFD72035E6D5F088C95B73F30305 /* RCTBaseTextShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = 396A93D0FB42E576209E2DFBD6213ACD /* RCTBaseTextShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 463558BBD4C758646B3A100042977D4A /* RCTCustomInputController.h in Headers */ = {isa = PBXBuildFile; fileRef = 7DC5EB572EABEA087CB3C84B616E80E6 /* RCTCustomInputController.h */; settings = {ATTRIBUTES = (Project, ); }; }; 468D4662C2082CD37B39EE1999FC6DD1 /* GDTCCTNanopbHelpers.m in Sources */ = {isa = PBXBuildFile; fileRef = 583F2384046EE63CCD0360AE527E4565 /* GDTCCTNanopbHelpers.m */; }; - 468E2BA37E64CD16F291C2603E6C6D60 /* RNCSliderManager.m in Sources */ = {isa = PBXBuildFile; fileRef = D229B2E64A6AD47DEA3FAB57A3C58F9A /* RNCSliderManager.m */; }; - 46C92D13EDF916BFBC5453A68C3B2B12 /* ARTBrush.h in Headers */ = {isa = PBXBuildFile; fileRef = B17F14A0214F04411D0979D60852557A /* ARTBrush.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46CB0FC7F039CAE460BCF9F04A2784A6 /* Pods-RocketChatRN-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 9A03EB9B87FF49512AC6907C1B9AA221 /* Pods-RocketChatRN-dummy.m */; }; - 47038C55444EDF4875734474B0D04880 /* RCTHTTPRequestHandler.mm in Sources */ = {isa = PBXBuildFile; fileRef = B06BEEA2CB6E5A49BC815D0CBE35533B /* RCTHTTPRequestHandler.mm */; }; - 471514FEDB233B1338BF401C9BAA6330 /* SRRunLoopThread.m in Sources */ = {isa = PBXBuildFile; fileRef = 660E8E2E8BA57B6EE99682B94753A01B /* SRRunLoopThread.m */; }; - 473CEB698A524AA4C14DF66D6E572C37 /* Instance.h in Headers */ = {isa = PBXBuildFile; fileRef = B3DBE8EBCC8D7500A5EDBA1A17F5D2FA /* Instance.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 468E2BA37E64CD16F291C2603E6C6D60 /* RNCSliderManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 8988AE6A601B0F2DB1CF64F62CB271A5 /* RNCSliderManager.m */; }; + 46C92D13EDF916BFBC5453A68C3B2B12 /* ARTBrush.h in Headers */ = {isa = PBXBuildFile; fileRef = 752BD0A5AB53CE88B7070B52814F58A9 /* ARTBrush.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 47038C55444EDF4875734474B0D04880 /* RCTHTTPRequestHandler.mm in Sources */ = {isa = PBXBuildFile; fileRef = 39420CC50732B5C7EF63B99B8EE64DB9 /* RCTHTTPRequestHandler.mm */; }; + 473CEB698A524AA4C14DF66D6E572C37 /* Instance.h in Headers */ = {isa = PBXBuildFile; fileRef = 535EE13156147E38DAEA77FE5AE91DB3 /* Instance.h */; settings = {ATTRIBUTES = (Project, ); }; }; 477A39CF2D9AB86F3DEE6359B97FB9F5 /* SDImageCoderHelper.m in Sources */ = {isa = PBXBuildFile; fileRef = 28AD1F843F1DFF344E92B8B18AB1A0FB /* SDImageCoderHelper.m */; }; 477E9F458C626A14EA29CADDE3BE895A /* FIRInstallationsIIDTokenStore.m in Sources */ = {isa = PBXBuildFile; fileRef = CC36153E97819CC766DFEB874BBF6500 /* FIRInstallationsIIDTokenStore.m */; }; - 47BD9494DBAEECF3B78696B1C7F16B4C /* RCTPackagerClient.h in Headers */ = {isa = PBXBuildFile; fileRef = 267A14EE651A30BDA05A3ACAEFA42DB3 /* RCTPackagerClient.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 47BD9494DBAEECF3B78696B1C7F16B4C /* RCTPackagerClient.h in Headers */ = {isa = PBXBuildFile; fileRef = AF6CD19FBCA0258E16A1C7D632DB4266 /* RCTPackagerClient.h */; settings = {ATTRIBUTES = (Project, ); }; }; 47C1D14CAE63EFC8B07A816499198552 /* fast-dtoa.h in Headers */ = {isa = PBXBuildFile; fileRef = 35C331504D9FED2A78645DE10B40A14F /* fast-dtoa.h */; settings = {ATTRIBUTES = (Project, ); }; }; 480C753D7FA4D8422864286E1DAE61D5 /* FBLPromise+Then.m in Sources */ = {isa = PBXBuildFile; fileRef = 05F2BC055A4813F5A29FBD88A3F3261D /* FBLPromise+Then.m */; }; - 4835C3B0DAF49A23B4BEB570CF5327E2 /* RCTConvert+Text.m in Sources */ = {isa = PBXBuildFile; fileRef = 7B012D0B2BC77634C8BF32EF8409BE7C /* RCTConvert+Text.m */; }; + 4835C3B0DAF49A23B4BEB570CF5327E2 /* RCTConvert+Text.m in Sources */ = {isa = PBXBuildFile; fileRef = 8F5D9296BC55DECE24B717234E67D3BD /* RCTConvert+Text.m */; }; 48363CF916E87324E455BF39CE064DC1 /* SDImageCacheDefine.m in Sources */ = {isa = PBXBuildFile; fileRef = 7AE11FC733D32808154EE0C7975D70AD /* SDImageCacheDefine.m */; }; 48A597F6B21D3A8BD625F3BCA9DFFBF0 /* log_severity.h in Headers */ = {isa = PBXBuildFile; fileRef = 63743B445C8FAC8021EC41CC4362CF9F /* log_severity.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 48A65F090855476E8ED575F6389A7272 /* REAValueNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 1DDEBDE9D18E704D506A4C8AA2638468 /* REAValueNode.m */; }; - 48AB1B74E63D91A4FDBB5A85D55E4ACF /* RCTVirtualTextShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = F4A30F180984D8AC5055F3ED4A3C9B20 /* RCTVirtualTextShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 48BF79294A1C22CC36D1E91201E030E2 /* BugsnagHandledState.m in Sources */ = {isa = PBXBuildFile; fileRef = FBFF441FC84B25E7C8F3C28A549BCE2D /* BugsnagHandledState.m */; }; - 48E2406E6C69AD9BA73860D7FAE33DCF /* BugsnagSink.h in Headers */ = {isa = PBXBuildFile; fileRef = B06703997BF3F70C043A9803466D5A80 /* BugsnagSink.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4908C596106B2FACEDFD4A5474075242 /* RNPushKitEventListener.h in Headers */ = {isa = PBXBuildFile; fileRef = 7C1C12709FFB7FFCEB53B912C600CBB5 /* RNPushKitEventListener.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 48A65F090855476E8ED575F6389A7272 /* REAValueNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 3436760029CF8480604F8B48EC482CD7 /* REAValueNode.m */; }; + 48AB1B74E63D91A4FDBB5A85D55E4ACF /* RCTVirtualTextShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = F2A5EF842E0CBD52437A3F0B96F2B26B /* RCTVirtualTextShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 48BF79294A1C22CC36D1E91201E030E2 /* BugsnagHandledState.m in Sources */ = {isa = PBXBuildFile; fileRef = 8B37866CCEB6DADDF2FF416FCB47D611 /* BugsnagHandledState.m */; }; + 48E2406E6C69AD9BA73860D7FAE33DCF /* BugsnagSink.h in Headers */ = {isa = PBXBuildFile; fileRef = 35D3D70B2616F0BEDD4C1DE5AABC1C38 /* BugsnagSink.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4908C596106B2FACEDFD4A5474075242 /* RNPushKitEventListener.h in Headers */ = {isa = PBXBuildFile; fileRef = F9842A19ACBCF0320E3401C4FC0BFA2D /* RNPushKitEventListener.h */; settings = {ATTRIBUTES = (Project, ); }; }; 4977E406F103BC7E9F600C3C57CBF755 /* picture_rescale_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = 28360F116ACE0C01D969AB83563A87B3 /* picture_rescale_enc.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; 499A78064AD0B576066DF5C4AE420F4B /* FIRInstallationsAuthTokenResult.m in Sources */ = {isa = PBXBuildFile; fileRef = ABFDDF7E2B4A60522C6DC5915D034318 /* FIRInstallationsAuthTokenResult.m */; }; - 499FEAAE461FD29D544C7CC5DE018BFA /* Orientation.h in Headers */ = {isa = PBXBuildFile; fileRef = 6AD52A5002C35FD045E3F1FA0F209341 /* Orientation.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 49B7D61F6DE83F207D6CD7D9303633B1 /* RCTAccessibilityManager.h in Headers */ = {isa = PBXBuildFile; fileRef = F84D536010750904489076985DBC630B /* RCTAccessibilityManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 49C6B4C68299EBCE9E775E1DD93265C2 /* RCTShadowView+Layout.m in Sources */ = {isa = PBXBuildFile; fileRef = D6C1F29D38A015CD434F043ADAE0C80F /* RCTShadowView+Layout.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 499FEAAE461FD29D544C7CC5DE018BFA /* Orientation.h in Headers */ = {isa = PBXBuildFile; fileRef = 138D37B9AB880AE23C443E4A30FFB780 /* Orientation.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 49B7D61F6DE83F207D6CD7D9303633B1 /* RCTAccessibilityManager.h in Headers */ = {isa = PBXBuildFile; fileRef = DA6F1053894D5E42F7EF24340A881C1F /* RCTAccessibilityManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 49C6B4C68299EBCE9E775E1DD93265C2 /* RCTShadowView+Layout.m in Sources */ = {isa = PBXBuildFile; fileRef = CDB556E0C6EA1C86F3268807D706B123 /* 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"; }; }; 49E32996D57F0BE4B4C214A788834B8A /* GDTCOREvent_Private.h in Headers */ = {isa = PBXBuildFile; fileRef = F4B0846CC9420B2A99D2842B5596A174 /* GDTCOREvent_Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; 49ED22AD77FCA7D73439C955EC426CD9 /* backward_references_enc.h in Headers */ = {isa = PBXBuildFile; fileRef = 478F25920DDB277A1F4403B7268C02D9 /* backward_references_enc.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4A0647047F5A97E7B469362447A72896 /* RNEventEmitter.m in Sources */ = {isa = PBXBuildFile; fileRef = 3E6CD11A87541FE5C1B03B903FA49E9C /* RNEventEmitter.m */; }; - 4A50D92C658ED40C6E8CEE6F91AFE368 /* RCTSurfaceRootView.h in Headers */ = {isa = PBXBuildFile; fileRef = 5155B718DF56CEFAAF1CDA6A3C230C14 /* RCTSurfaceRootView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4B1091BECD4A0FD930B42261D4A716A6 /* REAParamNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 1A70BBF1266636A6BD69C601346E4E4B /* REAParamNode.m */; }; - 4B174EC3B79E737EC18607D92EFFA69B /* RNDocumentPicker.h in Headers */ = {isa = PBXBuildFile; fileRef = 292D360FBD2DF0B1A7BC35B6D987C722 /* RNDocumentPicker.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4A0647047F5A97E7B469362447A72896 /* RNEventEmitter.m in Sources */ = {isa = PBXBuildFile; fileRef = 146308BB6AE4D7FA53EC0DD812FD6017 /* RNEventEmitter.m */; }; + 4A50D92C658ED40C6E8CEE6F91AFE368 /* RCTSurfaceRootView.h in Headers */ = {isa = PBXBuildFile; fileRef = 6CB50D0B506E5976EB566742A2B84590 /* RCTSurfaceRootView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4B1091BECD4A0FD930B42261D4A716A6 /* REAParamNode.m in Sources */ = {isa = PBXBuildFile; fileRef = CF112031398DB6ACDE25DF0E97AD3A17 /* REAParamNode.m */; }; + 4B174EC3B79E737EC18607D92EFFA69B /* RNDocumentPicker.h in Headers */ = {isa = PBXBuildFile; fileRef = B77809A2F9FA6C47221E339E3A77864C /* RNDocumentPicker.h */; settings = {ATTRIBUTES = (Project, ); }; }; 4B46CA419944F2581E787DEC9E26DF27 /* SDAnimatedImagePlayer.h in Headers */ = {isa = PBXBuildFile; fileRef = 6456BEB6732CB1208721A93717E83ACB /* SDAnimatedImagePlayer.h */; settings = {ATTRIBUTES = (Project, ); }; }; 4B6624A1006ED93B3305A5C01B680EAD /* random_utils.c in Sources */ = {isa = PBXBuildFile; fileRef = 64963B0AD90508C9D1DAD41D65CBBC0C /* random_utils.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 4BDB4407A51CC421C90A908BD6A6031D /* RCTTextSelection.m in Sources */ = {isa = PBXBuildFile; fileRef = 3A5201057D2833FE481A1362AEFA89DF /* RCTTextSelection.m */; }; - 4BFD25CA7DBC62396BB66D451DDC502A /* RCTObjcExecutor.mm in Sources */ = {isa = PBXBuildFile; fileRef = 58447C2D64026B5107DD7F36B06C84F6 /* RCTObjcExecutor.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 4C1215C207F76B2D1473350F2CD63B5F /* QBAlbumCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 454B1B3B96D01D136C3C623B65E191D9 /* QBAlbumCell.m */; }; - 4C7CFC31B67E5D1520E3FDB757211A24 /* RNAudio-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = F276886C7FF1515F605C3E41241D6A47 /* RNAudio-dummy.m */; }; - 4C977662AA3595E8D9F5367431E85368 /* RCTInspectorPackagerConnection.m in Sources */ = {isa = PBXBuildFile; fileRef = 878457F5B4DA61353A80FEB0FEB9FA2A /* RCTInspectorPackagerConnection.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 4CC0FCC24DC626AA4562DB78E899CF18 /* RCTUIManagerUtils.m in Sources */ = {isa = PBXBuildFile; fileRef = FA29B7E7205388792798F4B3377F3E59 /* RCTUIManagerUtils.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 4BDB4407A51CC421C90A908BD6A6031D /* RCTTextSelection.m in Sources */ = {isa = PBXBuildFile; fileRef = A72A7F7D98EDF07AAD86A60E4CCA3E43 /* RCTTextSelection.m */; }; + 4BFD25CA7DBC62396BB66D451DDC502A /* RCTObjcExecutor.mm in Sources */ = {isa = PBXBuildFile; fileRef = C87908D36F26EDCC8A8BD3A8C8A92377 /* RCTObjcExecutor.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 4C1215C207F76B2D1473350F2CD63B5F /* QBAlbumCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 4B8495F202AB54ED0DD218EEC127DF3C /* QBAlbumCell.m */; }; + 4C7CFC31B67E5D1520E3FDB757211A24 /* RNAudio-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 19E1995D5604A113830A6DC6793AAEEA /* RNAudio-dummy.m */; }; + 4C977662AA3595E8D9F5367431E85368 /* RCTInspectorPackagerConnection.m in Sources */ = {isa = PBXBuildFile; fileRef = A7DBB9C1159118D927EA6931587997B3 /* RCTInspectorPackagerConnection.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 4CC0FCC24DC626AA4562DB78E899CF18 /* RCTUIManagerUtils.m in Sources */ = {isa = PBXBuildFile; fileRef = 413874B890B6E9A85B52911EBD65AF85 /* RCTUIManagerUtils.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; 4CC8A1271887F77848976D93CA74D44F /* UIApplication+RSKImageCropper.h in Headers */ = {isa = PBXBuildFile; fileRef = 195034DDBA6E2F083A2BB6F020769C4F /* UIApplication+RSKImageCropper.h */; settings = {ATTRIBUTES = (Project, ); }; }; 4CCBFEADC3A7B8A5E9B92C290981C41B /* GULLoggerCodes.h in Headers */ = {isa = PBXBuildFile; fileRef = E82A30AEF74EE71AF0B62661B8B26951 /* GULLoggerCodes.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4D1161EFA05C95DED718D8A835C85042 /* RCTTouchHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 6CD213CBF8225CEDC688993BA1A8346A /* RCTTouchHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4D316D26515A766E0766CDB80274FFD2 /* UMModuleRegistryAdapter.h in Headers */ = {isa = PBXBuildFile; fileRef = 7558AAEC6638C6317A6697695760FDF2 /* UMModuleRegistryAdapter.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4D9B404036A2626231F5223FDFF15074 /* Yoga-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 40ECA3321A2730B374CF7A906DA4D1F9 /* Yoga-dummy.m */; }; - 4DA8304474BEA599DF8E2F8D29F75DDA /* RNFirebaseAuth.m in Sources */ = {isa = PBXBuildFile; fileRef = A9B02D1D114F0DB20A7F209353DAD25C /* RNFirebaseAuth.m */; }; + 4D1161EFA05C95DED718D8A835C85042 /* RCTTouchHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = C1B2680A51934BED2FCD5FB1D34E94BF /* RCTTouchHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4D316D26515A766E0766CDB80274FFD2 /* UMModuleRegistryAdapter.h in Headers */ = {isa = PBXBuildFile; fileRef = 6761C6C7DA57DD5FFC45F3B77CBD269C /* UMModuleRegistryAdapter.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4D9B404036A2626231F5223FDFF15074 /* Yoga-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 319A7A9BF1988098566FE61369534C72 /* Yoga-dummy.m */; }; + 4DA8304474BEA599DF8E2F8D29F75DDA /* RNFirebaseAuth.m in Sources */ = {isa = PBXBuildFile; fileRef = 24188A9359977F5282BE2C0D494C965F /* RNFirebaseAuth.m */; }; 4DC3C93691EB8D66A121CA71EF8113BF /* enc_sse41.c in Sources */ = {isa = PBXBuildFile; fileRef = 0707F165A40293C90DB9DB10B0433839 /* enc_sse41.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 4DD88B6EF04BCF202E55A0EB6D8EB486 /* RNForceTouchHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = D63692C0E7A705D9370F7BD189DAA2CF /* RNForceTouchHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4DFFBA368483E031A15E54516CEED584 /* JSBigString.h in Headers */ = {isa = PBXBuildFile; fileRef = B9FC7149D94DFF084D191B1C070F6EB9 /* JSBigString.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4E1848B48A891AECC6A70A8F09515A91 /* BSG_KSCrashSentry.c in Sources */ = {isa = PBXBuildFile; fileRef = 224ED1BA761A9EB2A8535AA51EE6B5B0 /* BSG_KSCrashSentry.c */; }; + 4DD88B6EF04BCF202E55A0EB6D8EB486 /* RNForceTouchHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = A1193969A1702DA6744E95A06E7CD44C /* RNForceTouchHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4DFFBA368483E031A15E54516CEED584 /* JSBigString.h in Headers */ = {isa = PBXBuildFile; fileRef = 565CD3C5BE5D4C48BB31984D19329D93 /* JSBigString.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4E1848B48A891AECC6A70A8F09515A91 /* BSG_KSCrashSentry.c in Sources */ = {isa = PBXBuildFile; fileRef = 82B76F9EF5DEAC9B0A39E9A27F7C11DA /* BSG_KSCrashSentry.c */; }; 4E482BE9AD7430C9B3E1B787850C95DF /* huffman_encode_utils.c in Sources */ = {isa = PBXBuildFile; fileRef = 762B0734C882B680C9D971AF79E220CA /* huffman_encode_utils.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; 4E5A24B2AF227D372E222CC035C1DAA2 /* UIView+WebCacheOperation.h in Headers */ = {isa = PBXBuildFile; fileRef = 6A21588A6554E872D0F5137FF593521A /* UIView+WebCacheOperation.h */; settings = {ATTRIBUTES = (Project, ); }; }; 4ECA0D81891EADA811094561AB083DF3 /* dec.c in Sources */ = {isa = PBXBuildFile; fileRef = 78E05B5B4544D8C74092E8B0982CF77B /* dec.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 4EF4EDE720C083DE10CB8F54DE08DB92 /* RCTLayout.h in Headers */ = {isa = PBXBuildFile; fileRef = B38A182AC24D99272525C56833F805E0 /* RCTLayout.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4EF7FEE09B24A016FD7489025596D713 /* AudioRecorderManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 092912E596DAA8B4FDD2F0531DC4A9F5 /* AudioRecorderManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4F08C1AA06DB1EF092D1AC739DDD32A4 /* ARTSurfaceView.h in Headers */ = {isa = PBXBuildFile; fileRef = 6ECFC60A45F1703154D991BEA5BA1344 /* ARTSurfaceView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4F15A702742BC8EEC77814DD5A7D1641 /* RCTMessageThread.mm in Sources */ = {isa = PBXBuildFile; fileRef = 625DD3142FE45CA4B97195CE5728C80B /* RCTMessageThread.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 4F2C2732085E16054E71361E687114D3 /* RCTImageUtils.m in Sources */ = {isa = PBXBuildFile; fileRef = 0CFE82396A6955ACDCA2721F798678F0 /* RCTImageUtils.m */; }; - 4FC056AA5B803E2F5E1BE4D5EB038A0B /* react-native-appearance-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = A3B99A92D54B8F7F66FE4154931AF07E /* react-native-appearance-dummy.m */; }; - 4FC9AE5622DA302E003954C3A03A61CD /* React-RCTSettings-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 9C123303B7C794E103EC360B0D050AD3 /* React-RCTSettings-dummy.m */; }; - 4FCB2253CAAF6A8CD77729C14594CBE4 /* ARTSurfaceView.m in Sources */ = {isa = PBXBuildFile; fileRef = 836FF39CC12A344494AEC01E9A856DEA /* ARTSurfaceView.m */; }; - 4FD4A078850E697AAC9FE5093FFDAD53 /* UMAppDelegateWrapper.m in Sources */ = {isa = PBXBuildFile; fileRef = CE8DFF2CFED4362D4E5BD0D9912A18DE /* UMAppDelegateWrapper.m */; }; + 4EF4EDE720C083DE10CB8F54DE08DB92 /* RCTLayout.h in Headers */ = {isa = PBXBuildFile; fileRef = F7F3B05EF48A181DEA626AAAD7B63498 /* RCTLayout.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4EF7FEE09B24A016FD7489025596D713 /* AudioRecorderManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 83092E59EF925F1798C306AD31A4BCCB /* AudioRecorderManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4F08C1AA06DB1EF092D1AC739DDD32A4 /* ARTSurfaceView.h in Headers */ = {isa = PBXBuildFile; fileRef = 248F64165802844864418C70465519A3 /* ARTSurfaceView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4F15A702742BC8EEC77814DD5A7D1641 /* RCTMessageThread.mm in Sources */ = {isa = PBXBuildFile; fileRef = 2BEE581066BA4F123FBFD23B18ADC150 /* RCTMessageThread.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 4F2C2732085E16054E71361E687114D3 /* RCTImageUtils.m in Sources */ = {isa = PBXBuildFile; fileRef = 3568E84483FD71FD9A50EB376435E211 /* RCTImageUtils.m */; }; + 4FC056AA5B803E2F5E1BE4D5EB038A0B /* react-native-appearance-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = DE431B97E37833EC7D1BC16F7A59326F /* react-native-appearance-dummy.m */; }; + 4FC9AE5622DA302E003954C3A03A61CD /* React-RCTSettings-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 6D296FCDD2DBB71E85283EA9421D7052 /* React-RCTSettings-dummy.m */; }; + 4FCB2253CAAF6A8CD77729C14594CBE4 /* ARTSurfaceView.m in Sources */ = {isa = PBXBuildFile; fileRef = 557DEB4E6F363594421A7F2DC79BAE85 /* ARTSurfaceView.m */; }; + 4FD4A078850E697AAC9FE5093FFDAD53 /* UMAppDelegateWrapper.m in Sources */ = {isa = PBXBuildFile; fileRef = E7ED5E3F9352B025BDB93C2A68391FAB /* UMAppDelegateWrapper.m */; }; 4FF27C416A5E6CF6705EE1732D392D1B /* FBLPromise+All.h in Headers */ = {isa = PBXBuildFile; fileRef = 6FAC32E62B1F1A5CF4B7035D16475866 /* FBLPromise+All.h */; settings = {ATTRIBUTES = (Project, ); }; }; 5005D6761137D55A31755FA8762CCF7B /* FBLPromise+Wrap.h in Headers */ = {isa = PBXBuildFile; fileRef = 3FECE8B750D858CB3C6E9F3EC41E9A9F /* FBLPromise+Wrap.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 500E9B663E101F6ACAFBA792E5932023 /* BugsnagBreadcrumb.h in Headers */ = {isa = PBXBuildFile; fileRef = 18B8E3216FF3FD18FE1BC4FB7A158ED7 /* BugsnagBreadcrumb.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 503F96DD76B26B7F3FF816FB7F6E6B18 /* RNLocalize.m in Sources */ = {isa = PBXBuildFile; fileRef = 76ACAEE07AAD4EE346C18B5E6D45F650 /* RNLocalize.m */; }; - 50698A0A9C1C096EE7D378E2C872A384 /* RCTAnimatedImage.h in Headers */ = {isa = PBXBuildFile; fileRef = 1F6D70F5419A11FC7576DB263CED5243 /* RCTAnimatedImage.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 500E9B663E101F6ACAFBA792E5932023 /* BugsnagBreadcrumb.h in Headers */ = {isa = PBXBuildFile; fileRef = 9B8E528E0769D9EDD4AA2875221D0FC2 /* BugsnagBreadcrumb.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 503F96DD76B26B7F3FF816FB7F6E6B18 /* RNLocalize.m in Sources */ = {isa = PBXBuildFile; fileRef = E29E92983AF31E9A27DB7AB82F1077D2 /* RNLocalize.m */; }; + 50698A0A9C1C096EE7D378E2C872A384 /* RCTAnimatedImage.h in Headers */ = {isa = PBXBuildFile; fileRef = EC9088AFF5123A5910DD00DD39B9D3E8 /* RCTAnimatedImage.h */; settings = {ATTRIBUTES = (Project, ); }; }; 50A813DCE536784396073D6FFF9F3325 /* mux_types.h in Headers */ = {isa = PBXBuildFile; fileRef = 54C80AE83CCD41943A1509A4518CEF1A /* mux_types.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 50A900B393ED9B9AE107160AAAA9D2CE /* RCTErrorInfo.m in Sources */ = {isa = PBXBuildFile; fileRef = F35C2A72FA7101F637DF67235E6483D2 /* RCTErrorInfo.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 51093E66FA7DBDB281D906D26D9DC378 /* RCTInspector.h in Headers */ = {isa = PBXBuildFile; fileRef = DC4EE86ED57A5C244D92B6AADEF47DA6 /* RCTInspector.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 511F51533D71E43B725E235CCA913464 /* RCTTouchEvent.m in Sources */ = {isa = PBXBuildFile; fileRef = BEC71C8DCAB3D40932F29632B7B083FB /* RCTTouchEvent.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 50A900B393ED9B9AE107160AAAA9D2CE /* RCTErrorInfo.m in Sources */ = {isa = PBXBuildFile; fileRef = D24AD048A4B3F5467DA06657F1339CD5 /* RCTErrorInfo.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 51093E66FA7DBDB281D906D26D9DC378 /* RCTInspector.h in Headers */ = {isa = PBXBuildFile; fileRef = B526EDD8BACBB94EF557CA9D6F520738 /* RCTInspector.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 511F51533D71E43B725E235CCA913464 /* RCTTouchEvent.m in Sources */ = {isa = PBXBuildFile; fileRef = 29A7D11D300350632C05A768527780F6 /* RCTTouchEvent.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; 5134C7B582F00BAB682F3A69DC3790AA /* SDMemoryCache.m in Sources */ = {isa = PBXBuildFile; fileRef = 93B11D5857328B9B8C43CEFE929288EC /* SDMemoryCache.m */; }; 5170CD2D819D39CE643B288F7DA6212A /* FIRInstallationsAuthTokenResultInternal.h in Headers */ = {isa = PBXBuildFile; fileRef = A8C2E718EEB7FC61E0AF4FF7745365F7 /* FIRInstallationsAuthTokenResultInternal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 517ABBAF7367444484132D7F5CD6BBC7 /* RCTTextViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 89A375CD79FD4E7A782B78ADFD3CED41 /* RCTTextViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 51AB931695C6A683B02DCED4DDC7E900 /* RNNotificationEventHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = DCB8719C5F9541D42F7ACCD58A5FFA76 /* RNNotificationEventHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 517ABBAF7367444484132D7F5CD6BBC7 /* RCTTextViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 4B2779409AF590F9DC3A7708F12DD950 /* RCTTextViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 51AB931695C6A683B02DCED4DDC7E900 /* RNNotificationEventHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 1CA8A55AAE71F7EAC4B68767CBFAAAF1 /* RNNotificationEventHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; 52ADAD247D836F3627A7E5CE7744A659 /* FIRSecureStorage.h in Headers */ = {isa = PBXBuildFile; fileRef = 3831B2A00965967014DC2303A0B27F59 /* FIRSecureStorage.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 52D80F9C25476F314DF6A4A179BB7A23 /* RCTFileRequestHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 7545290814D33E29EB6A3B14B9EEA817 /* RCTFileRequestHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 52D80F9C25476F314DF6A4A179BB7A23 /* RCTFileRequestHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 21DBE4BBEA8FF81F7C7334E07828CD37 /* RCTFileRequestHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; 530798D8A1CF3289921987D9FDC7B884 /* FIRAppAssociationRegistration.h in Headers */ = {isa = PBXBuildFile; fileRef = 59EDFE4884DAF3E61B6C33A8BE503617 /* FIRAppAssociationRegistration.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 531131AA54E45A625EE48708E77A7910 /* RNFirebaseFirestoreDocumentReference.m in Sources */ = {isa = PBXBuildFile; fileRef = 739DF972DF173022E45FEDC9704EC4DC /* RNFirebaseFirestoreDocumentReference.m */; }; - 5323DB969E6AEB25BAB50F2CB65D553E /* ARTBrush.m in Sources */ = {isa = PBXBuildFile; fileRef = 141749C671C39B3A24761C8B223476D5 /* ARTBrush.m */; }; + 531131AA54E45A625EE48708E77A7910 /* RNFirebaseFirestoreDocumentReference.m in Sources */ = {isa = PBXBuildFile; fileRef = C638D8A1B319F7317803730057DA782F /* RNFirebaseFirestoreDocumentReference.m */; }; + 5323DB969E6AEB25BAB50F2CB65D553E /* ARTBrush.m in Sources */ = {isa = PBXBuildFile; fileRef = 9161A4E4D577B1906F2C9AE3CDC4AD37 /* ARTBrush.m */; }; 532684D939B80EF9527A71AC2082A6E5 /* SDWebImageError.m in Sources */ = {isa = PBXBuildFile; fileRef = B2910F746BA799CA787EFCE48845B524 /* SDWebImageError.m */; }; - 53313D8E22994AEED5AF4C7B9C0480D4 /* SRConstants.m in Sources */ = {isa = PBXBuildFile; fileRef = 95066CB4C83D6FFBB006FDCF11B972C3 /* SRConstants.m */; }; 533F5B5A43499AF92AB8DBF7CC1CF84B /* FIRErrorCode.h in Headers */ = {isa = PBXBuildFile; fileRef = CCE13B65AEE9DB27E1676D172D142597 /* FIRErrorCode.h */; settings = {ATTRIBUTES = (Project, ); }; }; 53C338E1563591F463193CF3D2327216 /* FIRInstanceIDTokenFetchOperation.m in Sources */ = {isa = PBXBuildFile; fileRef = 4B78E7E3DBE12168C17E886E24FB2F51 /* FIRInstanceIDTokenFetchOperation.m */; }; - 5438467E978675E1651C0CC682270E26 /* RCTWebSocketExecutor.m in Sources */ = {isa = PBXBuildFile; fileRef = ED5BF08CC94055925E1E64E23F73C1F1 /* RCTWebSocketExecutor.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 545434BD6D2216C6F09893FF449649DD /* BugsnagFileStore.m in Sources */ = {isa = PBXBuildFile; fileRef = 82CE3F7DAA1E57A2C16A1420E14F8EA6 /* BugsnagFileStore.m */; }; - 5472D790D5CA80D8841FE82D9CC7E06E /* REATransitionValues.h in Headers */ = {isa = PBXBuildFile; fileRef = 6E642E8C45F4DDCA17F861D8A17C467A /* REATransitionValues.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5486311C31543B9A40362E6836E817DE /* ARTTextManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 5ECF498737298D08C58E44A78EB27CE6 /* ARTTextManager.m */; }; - 54B1C522469904C9947EEFBC434317C7 /* RCTPropsAnimatedNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 824CBB6DC676A51BE5DF4E52C4B5EE6D /* RCTPropsAnimatedNode.m */; }; - 54DD7A4DA510F89502898CFDDE526791 /* RCTNativeAnimatedNodesManager.h in Headers */ = {isa = PBXBuildFile; fileRef = AF23EE3EDD8077D6AC7FE28561C9B32D /* RCTNativeAnimatedNodesManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 54E1C1794977A05E882F8472429C9528 /* BSG_KSCrashSentry_NSException.m in Sources */ = {isa = PBXBuildFile; fileRef = 0DF7B600EDB384BB868F44CE0125575D /* BSG_KSCrashSentry_NSException.m */; }; - 55032C2C2E41A93524DB8CD689D59182 /* SRHTTPConnectMessage.m in Sources */ = {isa = PBXBuildFile; fileRef = 6AF92ACDC4D1D99F5C63FB2E85370715 /* SRHTTPConnectMessage.m */; }; - 55195AB5F725DF334CBDC109AE395CA3 /* RCTStyleAnimatedNode.m in Sources */ = {isa = PBXBuildFile; fileRef = EA89F3106C16A08A4F8A83442AEE0F4E /* RCTStyleAnimatedNode.m */; }; + 5438467E978675E1651C0CC682270E26 /* RCTWebSocketExecutor.m in Sources */ = {isa = PBXBuildFile; fileRef = BD39C63457B07FD68C443B542372BCDB /* RCTWebSocketExecutor.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 545434BD6D2216C6F09893FF449649DD /* BugsnagFileStore.m in Sources */ = {isa = PBXBuildFile; fileRef = 830487E1CCB4D4387A8D80D3ECFD96F3 /* BugsnagFileStore.m */; }; + 5472D790D5CA80D8841FE82D9CC7E06E /* REATransitionValues.h in Headers */ = {isa = PBXBuildFile; fileRef = 0B3CE9A2BD0AC00010DEDB37BD7F4D1A /* REATransitionValues.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5486311C31543B9A40362E6836E817DE /* ARTTextManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 766CA1058BE46DE35D0DD26733077C9A /* ARTTextManager.m */; }; + 54B1C522469904C9947EEFBC434317C7 /* RCTPropsAnimatedNode.m in Sources */ = {isa = PBXBuildFile; fileRef = B6B43552880DE27E989CB279A0D604C8 /* RCTPropsAnimatedNode.m */; }; + 54DD7A4DA510F89502898CFDDE526791 /* RCTNativeAnimatedNodesManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 7ABA58BBBF42A4CEBCEDF8B50AB93EE5 /* RCTNativeAnimatedNodesManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 54E1C1794977A05E882F8472429C9528 /* BSG_KSCrashSentry_NSException.m in Sources */ = {isa = PBXBuildFile; fileRef = 8618666306E69961208486374E6BBCC2 /* BSG_KSCrashSentry_NSException.m */; }; + 55195AB5F725DF334CBDC109AE395CA3 /* RCTStyleAnimatedNode.m in Sources */ = {isa = PBXBuildFile; fileRef = B246D2F2CABF0035A46CDD1FA46AA472 /* RCTStyleAnimatedNode.m */; }; 552BF8053A03C10B0A849A781B5D40AB /* NSError+FIRInstanceID.m in Sources */ = {isa = PBXBuildFile; fileRef = 8DFBAA668DAA11EFFF653C4F4F65920D /* NSError+FIRInstanceID.m */; }; - 5540CDDC03A82226F1717892B3E634E7 /* JSModulesUnbundle.h in Headers */ = {isa = PBXBuildFile; fileRef = B58B349B77DC5BD8E970EE9930E404C5 /* JSModulesUnbundle.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5540CDDC03A82226F1717892B3E634E7 /* JSModulesUnbundle.h in Headers */ = {isa = PBXBuildFile; fileRef = B0CC66D253ACAED8D32573749AF303E8 /* JSModulesUnbundle.h */; settings = {ATTRIBUTES = (Project, ); }; }; 555AE9BB3A4B4A37116D009489131F89 /* GDTCORRegistrar.m in Sources */ = {isa = PBXBuildFile; fileRef = 43AAE931318CFC65211035F2E169B081 /* GDTCORRegistrar.m */; }; - 556A5B3489033C319EFAFEB961E2CB93 /* UMViewManagerAdapterClassesRegistry.h in Headers */ = {isa = PBXBuildFile; fileRef = CAE4AE35BE9DE38DD203A86792429978 /* UMViewManagerAdapterClassesRegistry.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 556A5B3489033C319EFAFEB961E2CB93 /* UMViewManagerAdapterClassesRegistry.h in Headers */ = {isa = PBXBuildFile; fileRef = C6D6CF7B6C821D62327563EE50B84C04 /* UMViewManagerAdapterClassesRegistry.h */; settings = {ATTRIBUTES = (Project, ); }; }; 556BC4473335922D123C95D9C7A6307F /* SDImageCacheConfig.m in Sources */ = {isa = PBXBuildFile; fileRef = D63B972B95C4ACEAA36C351BF1B2CDDD /* SDImageCacheConfig.m */; }; - 5577579A4BFCE7BD4C079625B8F67344 /* RCTScrollView.m in Sources */ = {isa = PBXBuildFile; fileRef = 5D865DAE916128207DE24EADBF3BAE84 /* RCTScrollView.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 55B7CB112CABCD20BB52FA1F225BCE39 /* RCTConvert+REATransition.m in Sources */ = {isa = PBXBuildFile; fileRef = E4A59BDB5B64B943AC27F5E5B6B160B2 /* RCTConvert+REATransition.m */; }; + 5577579A4BFCE7BD4C079625B8F67344 /* RCTScrollView.m in Sources */ = {isa = PBXBuildFile; fileRef = DE42EA30256051B7917CC764C8EE9FA0 /* RCTScrollView.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 55B7CB112CABCD20BB52FA1F225BCE39 /* RCTConvert+REATransition.m in Sources */ = {isa = PBXBuildFile; fileRef = E2A1F3FEA662290153D6D8026F200D52 /* RCTConvert+REATransition.m */; }; 55F72D6B2A29619435CE8615E7803975 /* dec_msa.c in Sources */ = {isa = PBXBuildFile; fileRef = B5C4CF7EEBB56E009C17E4CB2CDCD303 /* dec_msa.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 55FB43514277CA17C739F645DAC9441E /* RCTConvert+RNNotifications.m in Sources */ = {isa = PBXBuildFile; fileRef = C28E5E922B2695A945FC7FC7E4667102 /* RCTConvert+RNNotifications.m */; }; + 55FB43514277CA17C739F645DAC9441E /* RCTConvert+RNNotifications.m in Sources */ = {isa = PBXBuildFile; fileRef = 1D4E91BC2D9732B86741ECCCD21997B8 /* RCTConvert+RNNotifications.m */; }; 5605F99EFA7EB1FC1B0AD035A25608E8 /* SDDiskCache.h in Headers */ = {isa = PBXBuildFile; fileRef = 55DEC1E6B4290093E9B0766AC1D19DFF /* SDDiskCache.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 56100FAAA94464067322A690ED912A7A /* JSExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = 62B9A522FD69793920A33C573F1E2A99 /* JSExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 56100FAAA94464067322A690ED912A7A /* JSExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = 986BF827521FEAD00289100D0694D7B7 /* JSExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; 5651B7D25B0D4053B7DCBE24594AE5A2 /* SDImageAPNGCoder.h in Headers */ = {isa = PBXBuildFile; fileRef = 5EE39A7B4283BEFE43E66F46862951DC /* SDImageAPNGCoder.h */; settings = {ATTRIBUTES = (Project, ); }; }; 565EF60B5D30D937C88DB733534A746E /* FIRInstallations.h in Headers */ = {isa = PBXBuildFile; fileRef = C99B6ED7E39443CBF47A64AE5D60CD8E /* FIRInstallations.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5672B8BD4C7EAB0DE6BBFEC8487B6693 /* RCTJavaScriptLoader.mm in Sources */ = {isa = PBXBuildFile; fileRef = 00CCFE3233440987FB59571F1101034A /* RCTJavaScriptLoader.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 56E7702B98F46346A3D240054D939E7A /* UMReactNativeAdapter.m in Sources */ = {isa = PBXBuildFile; fileRef = D7D0FEC06BDFBB5ABB28EF8174082B9B /* UMReactNativeAdapter.m */; }; + 5672B8BD4C7EAB0DE6BBFEC8487B6693 /* RCTJavaScriptLoader.mm in Sources */ = {isa = PBXBuildFile; fileRef = BEE805160E9BD4F326C882AF564B2282 /* RCTJavaScriptLoader.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 56E7702B98F46346A3D240054D939E7A /* UMReactNativeAdapter.m in Sources */ = {isa = PBXBuildFile; fileRef = CA8C378488901E5D9DB369379F4D75B4 /* UMReactNativeAdapter.m */; }; 5730650DB2DEAACDDD31A30086AC02D9 /* filters_msa.c in Sources */ = {isa = PBXBuildFile; fileRef = 371C3A9071849B2A8C9AA73083078BAB /* filters_msa.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 5739A1EE2310BDED7DC7300319F16951 /* RCTInvalidating.h in Headers */ = {isa = PBXBuildFile; fileRef = E5132055C5DA8F723A506EA067ACE48A /* RCTInvalidating.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5739A1EE2310BDED7DC7300319F16951 /* RCTInvalidating.h in Headers */ = {isa = PBXBuildFile; fileRef = 459BA954870F7DB509349D7CB16999FB /* RCTInvalidating.h */; settings = {ATTRIBUTES = (Project, ); }; }; 5741AFE087A083C8D0D5C9D5F646A707 /* muxread.c in Sources */ = {isa = PBXBuildFile; fileRef = 285481B86C63C48528603907702089DB /* muxread.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 575004987788BE8008A657816910AEF4 /* YGValue.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8257A2AAD95D3DA2B906646CB70FC9E5 /* YGValue.cpp */; settings = {COMPILER_FLAGS = "-fno-omit-frame-pointer -fexceptions -Wall -Werror -std=c++1y -fPIC -fno-objc-arc"; }; }; - 5750428B5929F173BFFC86913079ACDA /* ObservingInputAccessoryView.m in Sources */ = {isa = PBXBuildFile; fileRef = F4FCB02D4E3949EF0C86B1907FBE7CC7 /* ObservingInputAccessoryView.m */; }; + 575004987788BE8008A657816910AEF4 /* YGValue.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F8BF55577E9CB50B9C96920DEBDC8284 /* YGValue.cpp */; settings = {COMPILER_FLAGS = "-fno-omit-frame-pointer -fexceptions -Wall -Werror -std=c++1y -fPIC -fno-objc-arc"; }; }; + 5750428B5929F173BFFC86913079ACDA /* ObservingInputAccessoryView.m in Sources */ = {isa = PBXBuildFile; fileRef = 030BD91C556FD99E868650A4DAAB9B7B /* ObservingInputAccessoryView.m */; }; 57779A997F204BED973BB03DBF2B8190 /* vp8l_dec.c in Sources */ = {isa = PBXBuildFile; fileRef = B18979D7EEF1DB0BD8B390FAE4FA6123 /* vp8l_dec.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 57A58CB1136FD1C50C4E567719066705 /* BSG_KSJSONCodec.c in Sources */ = {isa = PBXBuildFile; fileRef = 4307232295CBA79E7CD2734C1D761BF4 /* BSG_KSJSONCodec.c */; }; - 57C316C8C1D30A80E5A09BE3C6B6DC7A /* EXFileSystem-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = E4122AEA2369400F511BE1A6669A8742 /* EXFileSystem-dummy.m */; }; - 57F5F62A57C9A3E5EA58650CB98BADBD /* UIResponder+FirstResponder.h in Headers */ = {isa = PBXBuildFile; fileRef = 2C899536526DA1C73EC790E761C62BA6 /* UIResponder+FirstResponder.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 57A58CB1136FD1C50C4E567719066705 /* BSG_KSJSONCodec.c in Sources */ = {isa = PBXBuildFile; fileRef = A0F59E137E728AEF7C5C6AB9578CFADE /* BSG_KSJSONCodec.c */; }; + 57C316C8C1D30A80E5A09BE3C6B6DC7A /* EXFileSystem-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 6349F711E9C50FF7106EFE4C0724756A /* EXFileSystem-dummy.m */; }; + 57F5F62A57C9A3E5EA58650CB98BADBD /* UIResponder+FirstResponder.h in Headers */ = {isa = PBXBuildFile; fileRef = 972CDC068BFD39E07DB81AD634F73258 /* UIResponder+FirstResponder.h */; settings = {ATTRIBUTES = (Project, ); }; }; 58126EAA5B53B971BB4636C7A244A749 /* GDTCORUploadCoordinator.h in Headers */ = {isa = PBXBuildFile; fileRef = F55052F42574B7D52A6BA105DCE2F19E /* GDTCORUploadCoordinator.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 583014BFFCEEA7B050F315C823BFB7DE /* JSCRuntime.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 515DBA763B7D28FBE19F6EEE19E8195B /* JSCRuntime.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 5835A6EE119F67B3B5DDB92D53520B25 /* EXHapticsModule.m in Sources */ = {isa = PBXBuildFile; fileRef = 59A58F5FAE29F0EF4FF137EB1C05318B /* EXHapticsModule.m */; }; + 583014BFFCEEA7B050F315C823BFB7DE /* JSCRuntime.cpp in Sources */ = {isa = PBXBuildFile; fileRef = CC264D21EAF74E8C5F178B430E18CE47 /* JSCRuntime.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 5835A6EE119F67B3B5DDB92D53520B25 /* EXHapticsModule.m in Sources */ = {isa = PBXBuildFile; fileRef = 7027216DD776EAA9FFAA199D0A6B3694 /* EXHapticsModule.m */; }; 589F5BDC2B57CBEAEC6B457450AB3F6B /* SDWebImageDownloader.h in Headers */ = {isa = PBXBuildFile; fileRef = 3C3849B9FE871B8A9BFFEA94781CC286 /* SDWebImageDownloader.h */; settings = {ATTRIBUTES = (Project, ); }; }; 58AEF2D987F14D4D2AF6D28C7F7F4CF7 /* rescaler_mips32.c in Sources */ = {isa = PBXBuildFile; fileRef = EB58C1A1A2B45B20B44F908DC5FFD1D5 /* rescaler_mips32.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; 58D7052A7CCD26DD25B38FAAD2E996F2 /* SDImageLoadersManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 458BC6D0F0ABCC8D2958F42C9A3F3820 /* SDImageLoadersManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 58EC76AF621A0CEB920D28FC263B080A /* BSG_KSCrashCallCompletion.m in Sources */ = {isa = PBXBuildFile; fileRef = 2A3C660C075184E8349C7E814CE48B2A /* BSG_KSCrashCallCompletion.m */; }; - 5993BBBF2D1345B06D4408D775C0B02A /* SRWebSocket.m in Sources */ = {isa = PBXBuildFile; fileRef = 222E8B3C272CDC1AC42C40A5AFDB24C4 /* SRWebSocket.m */; }; - 59C92BB99C82C50287F115D47A1CF725 /* RCTInputAccessoryViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 1820332532E60ECDD82A8E03893DD8E8 /* RCTInputAccessoryViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 59FA089B729EBF37634A4D344228514B /* RNFirebaseUtil.m in Sources */ = {isa = PBXBuildFile; fileRef = 1FC78CD3DF37497B74B8B2E1CA609313 /* RNFirebaseUtil.m */; }; + 58EC76AF621A0CEB920D28FC263B080A /* BSG_KSCrashCallCompletion.m in Sources */ = {isa = PBXBuildFile; fileRef = EE377C18BCA52E7E223E49BA61376BB3 /* BSG_KSCrashCallCompletion.m */; }; + 59C92BB99C82C50287F115D47A1CF725 /* RCTInputAccessoryViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = EED0D043C8985ED9108620BE8CD2C34C /* RCTInputAccessoryViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 59FA089B729EBF37634A4D344228514B /* RNFirebaseUtil.m in Sources */ = {isa = PBXBuildFile; fileRef = 654EEAB16ABA9FA29F41A3DCB1606F23 /* RNFirebaseUtil.m */; }; 5A01CF4A9C711B4E767058AC022D8DE5 /* FIRInstanceIDTokenStore.h in Headers */ = {isa = PBXBuildFile; fileRef = 81DA341D791704280F8256A98FF27460 /* FIRInstanceIDTokenStore.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5A33410E138E7114023CBA9FD59674E8 /* BSG_KSSysCtl.h in Headers */ = {isa = PBXBuildFile; fileRef = 164B92D0063FA055AF79B570D6031EC6 /* BSG_KSSysCtl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5A33410E138E7114023CBA9FD59674E8 /* BSG_KSSysCtl.h in Headers */ = {isa = PBXBuildFile; fileRef = 1F578ED8A1F9A83D7D64AC029D06366D /* BSG_KSSysCtl.h */; settings = {ATTRIBUTES = (Project, ); }; }; 5A59A50C6C6459D108D357CE53F2156A /* vlog_is_on.cc in Sources */ = {isa = PBXBuildFile; fileRef = 0F354B2F01F2D88BF64EFB54C7F55D9B /* vlog_is_on.cc */; settings = {COMPILER_FLAGS = "-Wno-shorten-64-to-32"; }; }; - 5A629419C0D96DB5D419A3C1138D1A21 /* RCTRefreshControlManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 33CA4AF62A3D638383E51FFAD00B3B23 /* RCTRefreshControlManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5A84ABFC6FC217BEC6FE13B2D09C48DF /* RCTImageViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 7337293FD1684C954BC628530DC505DC /* RCTImageViewManager.m */; }; - 5AD05473C8FF3452F5780F1B84255D08 /* ARTGroup.h in Headers */ = {isa = PBXBuildFile; fileRef = AB31DE33FE9D6E90D24D14B2069D4B61 /* ARTGroup.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5AF23FBF64648FF288C59BA264F52D33 /* RCTTextShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = CA9C45BB0012BF09029A9FB62FCE5839 /* RCTTextShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5B3B7A693EFBE41F88B15144198DF339 /* BSG_KSObjCApple.h in Headers */ = {isa = PBXBuildFile; fileRef = 1510D1383CD77197A987E752485FA456 /* BSG_KSObjCApple.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5A629419C0D96DB5D419A3C1138D1A21 /* RCTRefreshControlManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 92DB40F1CDFF8CB643A1ABA4AE526B60 /* RCTRefreshControlManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5A84ABFC6FC217BEC6FE13B2D09C48DF /* RCTImageViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = CE346E52AE3F8F80411B4E8D4A0A9C23 /* RCTImageViewManager.m */; }; + 5AD05473C8FF3452F5780F1B84255D08 /* ARTGroup.h in Headers */ = {isa = PBXBuildFile; fileRef = 54EC03B90BB40EFF21E9F3E4D064B7CE /* ARTGroup.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5AF23FBF64648FF288C59BA264F52D33 /* RCTTextShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = 5CFF31790601FBE2A0771E7E1C5AE8CA /* RCTTextShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5B3B7A693EFBE41F88B15144198DF339 /* BSG_KSObjCApple.h in Headers */ = {isa = PBXBuildFile; fileRef = EAB200056DE1EAEA1022EF5448F1C300 /* BSG_KSObjCApple.h */; settings = {ATTRIBUTES = (Project, ); }; }; 5B3E2563BD4AC3D5DCEC78F631AC9B40 /* GoogleUtilities-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 7EA24205E9A7B87800BCFEEC108BFF33 /* GoogleUtilities-dummy.m */; }; - 5B442972EF2B41A52CAF358203414CED /* RCTLayout.m in Sources */ = {isa = PBXBuildFile; fileRef = CADD613CA408969380D9E7AB864DB134 /* RCTLayout.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 5B49E81F49E66F6505E50F99424D1C59 /* ARTPattern.h in Headers */ = {isa = PBXBuildFile; fileRef = FEE17CE6D0AD8BCA7DDD4AF1C1F76BF2 /* ARTPattern.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5B442972EF2B41A52CAF358203414CED /* RCTLayout.m in Sources */ = {isa = PBXBuildFile; fileRef = 3177022A507B89ED5E2D545E92DF7054 /* RCTLayout.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 5B49E81F49E66F6505E50F99424D1C59 /* ARTPattern.h in Headers */ = {isa = PBXBuildFile; fileRef = 7A162754FC5CA1F3447684BE99181C94 /* ARTPattern.h */; settings = {ATTRIBUTES = (Project, ); }; }; 5B4A397DF3BDA66041BD6CEF2B3EB09C /* SDImageHEICCoder.h in Headers */ = {isa = PBXBuildFile; fileRef = FC4D1271006F3F19FD1F32ED18916996 /* SDImageHEICCoder.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5B4B0F4B0B8EC0566E9C37CFBE013C7E /* RCTBorderDrawing.m in Sources */ = {isa = PBXBuildFile; fileRef = 575B7072D0BC2FCD47EE0DDBC9A18796 /* RCTBorderDrawing.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 5B58EDCC67B8226268F1E5A7EA115AD6 /* RCTSwitch.h in Headers */ = {isa = PBXBuildFile; fileRef = 7C00DDC862FBDCD3A594A7007F4DFE82 /* RCTSwitch.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5B70122A26A89D3DFA857385FD1A9AD0 /* BSG_KSMachApple.h in Headers */ = {isa = PBXBuildFile; fileRef = 0F8CDB7251C4DD0DAF59A86C804B856C /* BSG_KSMachApple.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5BBD3BF8F1D8BCE5424520F1C5F597A0 /* RCTConvert+FFFastImage.h in Headers */ = {isa = PBXBuildFile; fileRef = D7C65E5202BD6FD5E6D85DE803491F0F /* RCTConvert+FFFastImage.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5BCC122BAE29ECBAEB136C7B886C7C8A /* RNFirebaseFirestoreCollectionReference.m in Sources */ = {isa = PBXBuildFile; fileRef = 5F5E3B9A3BFEA3E55CEDD3F30F0C8B63 /* RNFirebaseFirestoreCollectionReference.m */; }; - 5C2627501BA7043543996AE385236BC1 /* RCTSettingsManager.h in Headers */ = {isa = PBXBuildFile; fileRef = CC547F27AFE464620F4B58D5283952F4 /* RCTSettingsManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5C3E927542A18118CA2CF86513E70B5B /* RCTVibration.h in Headers */ = {isa = PBXBuildFile; fileRef = 20FA65E7173DBF053E94AD89C00B5142 /* RCTVibration.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5D13D45E4F101B31DA3BD58850C1D938 /* EXLocationRequester.m in Sources */ = {isa = PBXBuildFile; fileRef = 386E4CCDBF2F5ADB2DD2E02591BB47FF /* EXLocationRequester.m */; }; + 5B4B0F4B0B8EC0566E9C37CFBE013C7E /* RCTBorderDrawing.m in Sources */ = {isa = PBXBuildFile; fileRef = CB0BB8BE8D492A55C9843AE9F33156DF /* RCTBorderDrawing.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 5B58EDCC67B8226268F1E5A7EA115AD6 /* RCTSwitch.h in Headers */ = {isa = PBXBuildFile; fileRef = 87B581DEA79BAEC1A5962B9B7F23D39C /* RCTSwitch.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5B70122A26A89D3DFA857385FD1A9AD0 /* BSG_KSMachApple.h in Headers */ = {isa = PBXBuildFile; fileRef = E2BC113BD72124EA4EFE639E545A9FA7 /* BSG_KSMachApple.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5BBD3BF8F1D8BCE5424520F1C5F597A0 /* RCTConvert+FFFastImage.h in Headers */ = {isa = PBXBuildFile; fileRef = EB7B2A94B2181C8C15B5A01D3286B948 /* RCTConvert+FFFastImage.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5BCC122BAE29ECBAEB136C7B886C7C8A /* RNFirebaseFirestoreCollectionReference.m in Sources */ = {isa = PBXBuildFile; fileRef = D22B8726A0B75B8B3970CCE1DDEB7166 /* RNFirebaseFirestoreCollectionReference.m */; }; + 5C2627501BA7043543996AE385236BC1 /* RCTSettingsManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 98A4E931EB603C1D5C3BE5D6D5BAB84C /* RCTSettingsManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5C3E927542A18118CA2CF86513E70B5B /* RCTVibration.h in Headers */ = {isa = PBXBuildFile; fileRef = E314C75DC0ACC4E5077E036935E40D3E /* RCTVibration.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5D13D45E4F101B31DA3BD58850C1D938 /* EXLocationRequester.m in Sources */ = {isa = PBXBuildFile; fileRef = 00C4D903ACCC5E760024CF200CD44699 /* EXLocationRequester.m */; }; 5D94C85521F651CAF78D0774F739EFFE /* config_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = 507484DC13FF28BFA253C3259BC915AF /* config_enc.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 5DA1958CF4DAD67AEB1A26CA2FBBB7EB /* RNFirebaseAdMob.m in Sources */ = {isa = PBXBuildFile; fileRef = 3659FB904660BFDA326C370058C63522 /* RNFirebaseAdMob.m */; }; + 5DA1958CF4DAD67AEB1A26CA2FBBB7EB /* RNFirebaseAdMob.m in Sources */ = {isa = PBXBuildFile; fileRef = B20CD8A27AB4ED9991D5CE8DB676D870 /* RNFirebaseAdMob.m */; }; 5DCA31ED0308779922E83F0F13640E3F /* FIRInstanceIDAuthService.m in Sources */ = {isa = PBXBuildFile; fileRef = A4B5638048C9BE689A53D2981A56EE93 /* FIRInstanceIDAuthService.m */; }; - 5DE8971BB473788ABB370255ABF4AED0 /* UMReactNativeAdapter-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 058D84BCAA61F6630D0509EF179C31FD /* UMReactNativeAdapter-dummy.m */; }; - 5E037AEDDBDE44BA91A33C56023FF2F6 /* ARTRenderable.h in Headers */ = {isa = PBXBuildFile; fileRef = 0B99EF89588E39AEB8D0B3013E373B86 /* ARTRenderable.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5DE8971BB473788ABB370255ABF4AED0 /* UMReactNativeAdapter-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = EFF7B02B4FBF637DFBD69D869E0C19D7 /* UMReactNativeAdapter-dummy.m */; }; + 5E037AEDDBDE44BA91A33C56023FF2F6 /* ARTRenderable.h in Headers */ = {isa = PBXBuildFile; fileRef = 4EA9170BDDF03B26378A295895425522 /* ARTRenderable.h */; settings = {ATTRIBUTES = (Project, ); }; }; 5E0AD81439136001BCF345A7288B768F /* FIRInstanceIDTokenDeleteOperation.m in Sources */ = {isa = PBXBuildFile; fileRef = 9CB6851B50895A42D3F7C877300D7C7A /* FIRInstanceIDTokenDeleteOperation.m */; }; - 5E1BA146E8395101B4385FD2757A9A53 /* RCTUITextView.m in Sources */ = {isa = PBXBuildFile; fileRef = 40E0A99010BC271F69BC538461AEE955 /* RCTUITextView.m */; }; - 5E64CB1713EB7E433FFAAD7078525999 /* NSTextStorage+FontScaling.h in Headers */ = {isa = PBXBuildFile; fileRef = FD4A677E9CA49D39C842FBC218DB538D /* NSTextStorage+FontScaling.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5EA02CA63D47384905FBB2F9305816A4 /* UMViewManagerAdapterClassesRegistry.m in Sources */ = {isa = PBXBuildFile; fileRef = 97D54E84787A915F4248890314F017E6 /* UMViewManagerAdapterClassesRegistry.m */; }; - 5EA03FA15E6CA3B798DE10D11A26869C /* ReactMarker.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 091F259C74A683B82CFCA07A3599940C /* ReactMarker.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 5E1BA146E8395101B4385FD2757A9A53 /* RCTUITextView.m in Sources */ = {isa = PBXBuildFile; fileRef = 8DD57D7737664ABAD0AA03D40925FD64 /* RCTUITextView.m */; }; + 5E64CB1713EB7E433FFAAD7078525999 /* NSTextStorage+FontScaling.h in Headers */ = {isa = PBXBuildFile; fileRef = D8105987156AE60E1367FC56E28A19ED /* NSTextStorage+FontScaling.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5EA02CA63D47384905FBB2F9305816A4 /* UMViewManagerAdapterClassesRegistry.m in Sources */ = {isa = PBXBuildFile; fileRef = C0E26A2634E1B96F926FB681AE697488 /* UMViewManagerAdapterClassesRegistry.m */; }; + 5EA03FA15E6CA3B798DE10D11A26869C /* ReactMarker.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FA9DF80A8C37BBA9A162076C011D410C /* ReactMarker.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; 5EB1A9BA116DDF6AA30A626D000FF5AF /* FIRInstallationsErrorUtil.h in Headers */ = {isa = PBXBuildFile; fileRef = EB70BE00723008AAD156EB27A07FE171 /* FIRInstallationsErrorUtil.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5ECBD7BAEE9AFE285724B8C23E2F8366 /* RCTSRWebSocket.m in Sources */ = {isa = PBXBuildFile; fileRef = 22B6FD695D5599BD03A6A20D19B48690 /* RCTSRWebSocket.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 5ECBD7BAEE9AFE285724B8C23E2F8366 /* RCTSRWebSocket.m in Sources */ = {isa = PBXBuildFile; fileRef = 0D367356E9EBF149AC388E793D2A57E5 /* RCTSRWebSocket.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; 5F09157C1DF89E099F5994063D10410B /* SDmetamacros.h in Headers */ = {isa = PBXBuildFile; fileRef = 188DE396BFE9BACC9E475E966B3ECB4C /* SDmetamacros.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5F1267AD8AA6EDAB59053DE48CE90F5E /* YGStyle.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9A06BAE3BDFDC52A4DCD355E7C178A53 /* YGStyle.cpp */; settings = {COMPILER_FLAGS = "-fno-omit-frame-pointer -fexceptions -Wall -Werror -std=c++1y -fPIC -fno-objc-arc"; }; }; - 5F23E8E57266DAC77BA53983F18B7DB2 /* REAParamNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 19C78564C2B123AC387DF002DAC6F6A2 /* REAParamNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5F3914305B352AA4A312EA53ACD0BA46 /* RNGestureHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 4E1E7E53AA00DBF6A019D48CE87F06EA /* RNGestureHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5F1267AD8AA6EDAB59053DE48CE90F5E /* YGStyle.cpp in Sources */ = {isa = PBXBuildFile; fileRef = C11D5B7318C6A6E072A3BE503C089B9F /* YGStyle.cpp */; settings = {COMPILER_FLAGS = "-fno-omit-frame-pointer -fexceptions -Wall -Werror -std=c++1y -fPIC -fno-objc-arc"; }; }; + 5F23E8E57266DAC77BA53983F18B7DB2 /* REAParamNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 54409E813226CC0DE818716BA0944423 /* REAParamNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5F3914305B352AA4A312EA53ACD0BA46 /* RNGestureHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 4918B1E9B839873F273906356093EEB7 /* RNGestureHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; 5F48078C953774E5876EA42742BA186F /* GULLogger.h in Headers */ = {isa = PBXBuildFile; fileRef = 7FE80A0E5A04BEDCC2FE998068C2E8A5 /* GULLogger.h */; settings = {ATTRIBUTES = (Project, ); }; }; 5F5378B828C8964BCBDD35727B30E2F2 /* GULUserDefaults.m in Sources */ = {isa = PBXBuildFile; fileRef = 760D77A4F668A9C3F29BC76736A73378 /* GULUserDefaults.m */; }; 5F591A05DC74FE96D26FCFCE23162A75 /* SDImageFrame.h in Headers */ = {isa = PBXBuildFile; fileRef = 445FADAAD22E2C0B298304BB38E55693 /* SDImageFrame.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5F7B3953B7ED183636C6FED0FABDE300 /* RCTInputAccessoryViewContent.h in Headers */ = {isa = PBXBuildFile; fileRef = 661399D54AE297D8AE1A9DAB3725099C /* RCTInputAccessoryViewContent.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5FBDE897F38FB994BBE94F564E24BDB2 /* RNFirebaseAdMobNativeExpressManager.h in Headers */ = {isa = PBXBuildFile; fileRef = E18CFF8A50FA62A91B20657462853C52 /* RNFirebaseAdMobNativeExpressManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 605EA3DD878151B4BC628CFE5E52A205 /* RCTUIImageViewAnimated.m in Sources */ = {isa = PBXBuildFile; fileRef = E67498550846721E93E271F1B0D0935E /* RCTUIImageViewAnimated.m */; }; - 607F8CB189F69907FA7ABD628863B047 /* RCTActivityIndicatorView.h in Headers */ = {isa = PBXBuildFile; fileRef = AA725589A71618077853D75819628D5A /* RCTActivityIndicatorView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 60A990FC2ACC3B03F9B399BE28919107 /* JSIndexedRAMBundle.h in Headers */ = {isa = PBXBuildFile; fileRef = 0BA0A7093A69B8402756E016E4FEBEEB /* JSIndexedRAMBundle.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 60FFD2D922B804E20A11302D5A3AE607 /* RNImageCropPicker-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = FF1FEBEDD561BAEF33A559766BA4CECA /* RNImageCropPicker-dummy.m */; }; + 5F7B3953B7ED183636C6FED0FABDE300 /* RCTInputAccessoryViewContent.h in Headers */ = {isa = PBXBuildFile; fileRef = 75E916C11B117641ADC4295D0929A1F3 /* RCTInputAccessoryViewContent.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5FBDE897F38FB994BBE94F564E24BDB2 /* RNFirebaseAdMobNativeExpressManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 2A007E613A6BE0172BA89F4F8206660B /* RNFirebaseAdMobNativeExpressManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 605EA3DD878151B4BC628CFE5E52A205 /* RCTUIImageViewAnimated.m in Sources */ = {isa = PBXBuildFile; fileRef = 8C807DEA628CB2093341AB770184F3A1 /* RCTUIImageViewAnimated.m */; }; + 607F8CB189F69907FA7ABD628863B047 /* RCTActivityIndicatorView.h in Headers */ = {isa = PBXBuildFile; fileRef = 1ED903085E4EBD27C7CA11AF11A2BE1C /* RCTActivityIndicatorView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 60A990FC2ACC3B03F9B399BE28919107 /* JSIndexedRAMBundle.h in Headers */ = {isa = PBXBuildFile; fileRef = 19FF8114E311AD8501678DA2DEA3E7AD /* JSIndexedRAMBundle.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 60FFD2D922B804E20A11302D5A3AE607 /* RNImageCropPicker-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = FFC48B878AD4545C44646AB56BD282C3 /* RNImageCropPicker-dummy.m */; }; 61076FBB82FF6974FED4A86160D17E5E /* GULNetworkLoggerProtocol.h in Headers */ = {isa = PBXBuildFile; fileRef = F17947A41DC67706AD2ADAD8C7C559C3 /* GULNetworkLoggerProtocol.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 611A7B0EA75F7056535EFE1611EAD137 /* ARTText.m in Sources */ = {isa = PBXBuildFile; fileRef = 2697ECF4E2B34B6E3473910148017B33 /* ARTText.m */; }; + 611A7B0EA75F7056535EFE1611EAD137 /* ARTText.m in Sources */ = {isa = PBXBuildFile; fileRef = 3B811D77A892D0A6D91EE2E70613A60C /* ARTText.m */; }; 611D02587581D20BABC1EC3962F6262C /* FIRInstanceIDLogger.m in Sources */ = {isa = PBXBuildFile; fileRef = 57F3CF73401C2A7D1861DD573FA5AAAB /* FIRInstanceIDLogger.m */; }; 61599CF45B061C7D8E678400226A7229 /* GDTCORTransport_Private.h in Headers */ = {isa = PBXBuildFile; fileRef = 3DF98BC6C3F20CCC5179F53F73FF41B6 /* GDTCORTransport_Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 61CB6A0224314655A5CD350A3663ECD4 /* UMAppDelegateWrapper.h in Headers */ = {isa = PBXBuildFile; fileRef = CE3C0F03CEBA7D3784CA020DB10A6A64 /* UMAppDelegateWrapper.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 61E4CD178FDC8352B454E078ABEAFC48 /* RCTFileReaderModule.m in Sources */ = {isa = PBXBuildFile; fileRef = 073C093FE8E2A5C5508B85D1287049D7 /* RCTFileReaderModule.m */; }; + 61CB6A0224314655A5CD350A3663ECD4 /* UMAppDelegateWrapper.h in Headers */ = {isa = PBXBuildFile; fileRef = FB065042ADCFC88306ADBF0D50AF8098 /* UMAppDelegateWrapper.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 61E4CD178FDC8352B454E078ABEAFC48 /* RCTFileReaderModule.m in Sources */ = {isa = PBXBuildFile; fileRef = DE55E41657D4475F3CE8EA40B040D62E /* RCTFileReaderModule.m */; }; 6221A04C1F48445D01F695BD730A01CC /* FIRInstanceIDTokenManager.h in Headers */ = {isa = PBXBuildFile; fileRef = ABB34BE98015F83F80BC4216458D9FE9 /* FIRInstanceIDTokenManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; 623E4C952DCADDD44F6943CEFDCC21DC /* FIRInstanceID.m in Sources */ = {isa = PBXBuildFile; fileRef = D78FEB55F9E2565E62801C68DC429BCE /* FIRInstanceID.m */; }; - 623FC295B29631DF73E03BC69E36032B /* RNFirebaseFirestore.m in Sources */ = {isa = PBXBuildFile; fileRef = 8DF301DB1050DE2FF5B6175BD96B779B /* RNFirebaseFirestore.m */; }; - 6259FEAFDF7520D2B057E005B691B2B2 /* BSG_KSLogger.m in Sources */ = {isa = PBXBuildFile; fileRef = 663A2F203BA900C797824FFA89D4BECE /* BSG_KSLogger.m */; }; + 623FC295B29631DF73E03BC69E36032B /* RNFirebaseFirestore.m in Sources */ = {isa = PBXBuildFile; fileRef = FFAFB3A0477AA9E5B891B8F8F157096E /* RNFirebaseFirestore.m */; }; + 6259FEAFDF7520D2B057E005B691B2B2 /* BSG_KSLogger.m in Sources */ = {isa = PBXBuildFile; fileRef = D6CD053C18B431A14A30D28DF52545FB /* BSG_KSLogger.m */; }; 625FB1A1A50F531C209F5950D7FF8475 /* alphai_dec.h in Headers */ = {isa = PBXBuildFile; fileRef = FD022A7C3D909D8519F310D4392F2421 /* alphai_dec.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 62BBB67D794EAD6E8AE0AD47CA0DBA80 /* REAEventNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 727CEE8714BE477B78EB5D7A42995117 /* REAEventNode.m */; }; - 630C91DF5FAA47CF56146710CB25C67F /* EXPermissions-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 0CC552347E616F6D1ABDFAEFDF898E95 /* EXPermissions-dummy.m */; }; - 635F0F813C7322171ED9EA180443A241 /* UMEventEmitter.h in Headers */ = {isa = PBXBuildFile; fileRef = 7B0E3D03DB412ECDC746F6D3E36C8209 /* UMEventEmitter.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 638173471B670878B34394773F467230 /* REATransitionManager.h in Headers */ = {isa = PBXBuildFile; fileRef = FF0F7BE5B8A1BA9C72D90CB9BC6B2509 /* REATransitionManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 62BBB67D794EAD6E8AE0AD47CA0DBA80 /* REAEventNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 899CA464D481520BF7606BA74E308C54 /* REAEventNode.m */; }; + 630C91DF5FAA47CF56146710CB25C67F /* EXPermissions-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = A509DDB7C50562B7C76B46E1A50DD500 /* EXPermissions-dummy.m */; }; + 635F0F813C7322171ED9EA180443A241 /* UMEventEmitter.h in Headers */ = {isa = PBXBuildFile; fileRef = 7D4F40EF76DFB87B2423EBC0918751CA /* UMEventEmitter.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 638173471B670878B34394773F467230 /* REATransitionManager.h in Headers */ = {isa = PBXBuildFile; fileRef = DDAFB974FA6663AC44446FD8DA483AC0 /* REATransitionManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; 63CC635B37FED8C7DEF027CB5462EA7B /* bit_reader_inl_utils.h in Headers */ = {isa = PBXBuildFile; fileRef = 3C4C051A4E9CF5D93B0327AFF8F51044 /* bit_reader_inl_utils.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 640929BA76B4E72C01E40669AC36E967 /* RCTBorderDrawing.h in Headers */ = {isa = PBXBuildFile; fileRef = C6E7AEA26FF5A4C5C52F488D021F6CB1 /* RCTBorderDrawing.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 640929BA76B4E72C01E40669AC36E967 /* RCTBorderDrawing.h in Headers */ = {isa = PBXBuildFile; fileRef = D578A923BDF78F6E661CB528ADC2119D /* RCTBorderDrawing.h */; settings = {ATTRIBUTES = (Project, ); }; }; 641AB39A00602C3CE7FB1FCD93FCCFF7 /* SDWebImageDownloaderResponseModifier.m in Sources */ = {isa = PBXBuildFile; fileRef = 66228ED45E198EDBDEA21A197E306C7E /* SDWebImageDownloaderResponseModifier.m */; }; - 6424F5856E8339CF8C3F5570D47E2FED /* JSBundleType.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 32F2C349D59E36828E96C8963E9CDE75 /* JSBundleType.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 6424F5856E8339CF8C3F5570D47E2FED /* JSBundleType.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 0FEBC42AB2D87FD0C0000531A1E7CCCA /* JSBundleType.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; 64554430F1D85E4FC49F1062A6B85E22 /* GULNetwork.m in Sources */ = {isa = PBXBuildFile; fileRef = AAC30C36CEF4ACB54CE1E6E49DCF3E31 /* GULNetwork.m */; }; - 648C1EE6D41D617836426E185AC5AAED /* EXConstantsService.h in Headers */ = {isa = PBXBuildFile; fileRef = F0C3FAE0D517C3332AFCC417BC1D4DC6 /* EXConstantsService.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 64B776BA872F19C7CE95997591E34F15 /* RCTDefines.h in Headers */ = {isa = PBXBuildFile; fileRef = 80A3D7CCF7C837F1775EE8CAD9A12200 /* RCTDefines.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 64CE86C677FE58819125DF1CF00FD92D /* RNSScreenContainer.h in Headers */ = {isa = PBXBuildFile; fileRef = DD1CDA00BBFDDBECA744F70CED75D8C3 /* RNSScreenContainer.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 64D693E04A85ADB73BE80E3DA8FF8DCF /* react-native-keyboard-tracking-view-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = FF76018294EE0F747D82693B03DEB377 /* react-native-keyboard-tracking-view-dummy.m */; }; + 648C1EE6D41D617836426E185AC5AAED /* EXConstantsService.h in Headers */ = {isa = PBXBuildFile; fileRef = FF5EE12DFAFEDE916B6E17165DB0CEBD /* EXConstantsService.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 64B776BA872F19C7CE95997591E34F15 /* RCTDefines.h in Headers */ = {isa = PBXBuildFile; fileRef = 234790945CE0B8BB21816A754494B8DE /* RCTDefines.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 64CE86C677FE58819125DF1CF00FD92D /* RNSScreenContainer.h in Headers */ = {isa = PBXBuildFile; fileRef = 584EAD828707EF357D31A87E90058A71 /* RNSScreenContainer.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 64D693E04A85ADB73BE80E3DA8FF8DCF /* react-native-keyboard-tracking-view-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 69DBAD1F4358CBE1911C5CCDC4C91D9C /* react-native-keyboard-tracking-view-dummy.m */; }; 64E791612A7D27AE1C4409A981341CBE /* lossless_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = BB117D47D780DC71082229222E18A9BB /* lossless_enc.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; 64E83E53B7F40F2CC0A0CF7BC3C8A43C /* enc_mips32.c in Sources */ = {isa = PBXBuildFile; fileRef = 54AE600BDD27B1D9D24B98E5EA73E2BB /* enc_mips32.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 64E9035391D61BFA55BD23B151AD07BB /* RNDateTimePickerManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 11D08E4A9BA15CC7A552F6180F7E4D07 /* RNDateTimePickerManager.m */; }; - 65257CF2DC6AD9C87EC075F55049D40D /* ARTText.h in Headers */ = {isa = PBXBuildFile; fileRef = 024D1505352512990079B9D8899E5BD7 /* ARTText.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 653E84B85ABA16CB6DEA33042685263C /* RCTCxxMethod.h in Headers */ = {isa = PBXBuildFile; fileRef = 387BE2328C28DC2CEFBFC95AA03064EC /* RCTCxxMethod.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 654D2B56BB85DB6247D712F41EBB4BE8 /* RCTImageViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 83C653AE5E0F520CBE6FBF95F25032A4 /* RCTImageViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 656D1C77C4CAF79D0022BD5B4A141903 /* RNNotificationCenter.m in Sources */ = {isa = PBXBuildFile; fileRef = 65BD95C37CE00958082C4E0E3AA13635 /* RNNotificationCenter.m */; }; + 64E9035391D61BFA55BD23B151AD07BB /* RNDateTimePickerManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 0A04939F0BE8BD04E3F140CAA04FD5EF /* RNDateTimePickerManager.m */; }; + 65257CF2DC6AD9C87EC075F55049D40D /* ARTText.h in Headers */ = {isa = PBXBuildFile; fileRef = 2B6EBC45A237F740A12D58BFBFFB8230 /* ARTText.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 653E84B85ABA16CB6DEA33042685263C /* RCTCxxMethod.h in Headers */ = {isa = PBXBuildFile; fileRef = 4C2021EE3A7AF4A4B2DE119F7DBCB267 /* RCTCxxMethod.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 654D2B56BB85DB6247D712F41EBB4BE8 /* RCTImageViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 21CBC4FF30E155417536FB52FD82ECE0 /* RCTImageViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 656D1C77C4CAF79D0022BD5B4A141903 /* RNNotificationCenter.m in Sources */ = {isa = PBXBuildFile; fileRef = F1EEA6B7720580ACCAF4F00D2F544C22 /* RNNotificationCenter.m */; }; 6584F1A61DBB0A4BB4BD9EA418FB70E6 /* quant_levels_dec_utils.c in Sources */ = {isa = PBXBuildFile; fileRef = 2BDC9CA7E51DCBAD996FE36076C1898E /* quant_levels_dec_utils.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 65B2DEA93BC9FAFE680CE9B5FD91C140 /* BSG_KSCrashSentry_MachException.c in Sources */ = {isa = PBXBuildFile; fileRef = 2936785F59C5322B88D81B1FAA01D28F /* BSG_KSCrashSentry_MachException.c */; }; + 65B2DEA93BC9FAFE680CE9B5FD91C140 /* BSG_KSCrashSentry_MachException.c in Sources */ = {isa = PBXBuildFile; fileRef = 04F8DB5B837E32C73A91A7D3076ADC08 /* BSG_KSCrashSentry_MachException.c */; }; 65CA61934FB03CF180290DE31AF56EF4 /* enc_neon.c in Sources */ = {isa = PBXBuildFile; fileRef = 7AB2ABB19DF260BF726A2A7DE50BB0C7 /* enc_neon.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; 65CB92D29B76DFDEC572A3AAE0564298 /* encode.h in Headers */ = {isa = PBXBuildFile; fileRef = D79E6FEE7691DA5E934AADB1851C0232 /* encode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6608213295B85470CB7D9FF496A75AF9 /* RCTUITextField.m in Sources */ = {isa = PBXBuildFile; fileRef = DB74B8E0E7F8AD95BC70ACFEF567A015 /* RCTUITextField.m */; }; - 660CECD8C6835E718C29800AB8CFEB46 /* RCTTiming.h in Headers */ = {isa = PBXBuildFile; fileRef = F98B5C28791B31F1BD8EDCF876EE4A37 /* RCTTiming.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 66461FCE36880BD3496945D2A2870456 /* FBReactNativeSpec-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = CE6CA023CC9E78434E79E308BBF2CFD5 /* FBReactNativeSpec-dummy.m */; }; - 6661CB905BDE95946F8507AB79F27015 /* Private.h in Headers */ = {isa = PBXBuildFile; fileRef = 48DD8DB2A4735F5062B9BF0A7270FAF5 /* Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 666F347B84B23221BC4D76B0BB3D521F /* RNFirebaseFirestoreCollectionReference.h in Headers */ = {isa = PBXBuildFile; fileRef = 2B17117BBA0FA32F7166B9FEAF823C1B /* RNFirebaseFirestoreCollectionReference.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6608213295B85470CB7D9FF496A75AF9 /* RCTUITextField.m in Sources */ = {isa = PBXBuildFile; fileRef = 11C60A0BF45054568DDE7E37CB86A806 /* RCTUITextField.m */; }; + 660CECD8C6835E718C29800AB8CFEB46 /* RCTTiming.h in Headers */ = {isa = PBXBuildFile; fileRef = 4C683A7AD58854CE9F9A0C58669E2925 /* RCTTiming.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 66461FCE36880BD3496945D2A2870456 /* FBReactNativeSpec-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = A30FB865B887D7CDD03F8FD5D904A4FB /* FBReactNativeSpec-dummy.m */; }; + 6661CB905BDE95946F8507AB79F27015 /* Private.h in Headers */ = {isa = PBXBuildFile; fileRef = CC83285B8FFE6264303C37DA42984689 /* Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 666F347B84B23221BC4D76B0BB3D521F /* RNFirebaseFirestoreCollectionReference.h in Headers */ = {isa = PBXBuildFile; fileRef = 10208D64F55D2D410966A16D3ADDD4E6 /* RNFirebaseFirestoreCollectionReference.h */; settings = {ATTRIBUTES = (Project, ); }; }; 66811E431F72A69005364E0433281D70 /* yuv.h in Headers */ = {isa = PBXBuildFile; fileRef = 0B2C19870540C57176CD67F1135A50CA /* yuv.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 669AD772A900C26E92756FE2500CB010 /* BSG_KSDynamicLinker.c in Sources */ = {isa = PBXBuildFile; fileRef = CA523ABF6A0D9C7C2605E24CCCC7E853 /* BSG_KSDynamicLinker.c */; }; - 66D0421E4DDA33160130778834F66E37 /* RNLocalize-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 3EEB0E39C75777724F60E29B18935220 /* RNLocalize-dummy.m */; }; - 66D6E62D450BACF145A456166BB45C2B /* RNDeviceInfo.h in Headers */ = {isa = PBXBuildFile; fileRef = 987D5C4E77696336363C3474CD98C269 /* RNDeviceInfo.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 66DE3DA8B730B101267AE71D7E014D80 /* BugsnagKeys.h in Headers */ = {isa = PBXBuildFile; fileRef = 4149CFF25071AE480926AC938FC1DC8D /* BugsnagKeys.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 66F6C08EE54110CE9EE206BF6B293A2B /* RCTRedBoxExtraDataViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = 547501DCD5BE356E8F4D1A4970D9AB13 /* RCTRedBoxExtraDataViewController.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 66F758B6340D92E1E9302298F1CF0F3B /* TurboModuleUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = AB2739361BCF15A40439F0B6BA615041 /* TurboModuleUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 669AD772A900C26E92756FE2500CB010 /* BSG_KSDynamicLinker.c in Sources */ = {isa = PBXBuildFile; fileRef = CA70B73C709B2798A72267B68CBE436D /* BSG_KSDynamicLinker.c */; }; + 66D0421E4DDA33160130778834F66E37 /* RNLocalize-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 64E12C3096FAC70863A1A19A220C0A5F /* RNLocalize-dummy.m */; }; + 66D6E62D450BACF145A456166BB45C2B /* RNDeviceInfo.h in Headers */ = {isa = PBXBuildFile; fileRef = 7AE12C2C3A51F89888D41C6DB6D5CD05 /* RNDeviceInfo.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 66DE3DA8B730B101267AE71D7E014D80 /* BugsnagKeys.h in Headers */ = {isa = PBXBuildFile; fileRef = 1D08135C440198B989A028E3E509A0A3 /* BugsnagKeys.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 66F6C08EE54110CE9EE206BF6B293A2B /* RCTRedBoxExtraDataViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = AFC8A9E0CE61A584E470F366996EE5D3 /* RCTRedBoxExtraDataViewController.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 66F758B6340D92E1E9302298F1CF0F3B /* TurboModuleUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = 77BF86CD83A4F1DED5398B8BFBED3A9F /* TurboModuleUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; 67036BF15E333815981C92DEF30881A0 /* NSData+ImageContentType.m in Sources */ = {isa = PBXBuildFile; fileRef = F934561A4844BCB1A5D2C72516F4A72A /* NSData+ImageContentType.m */; }; 67278E9F64F6827638B4D52D8CF71F42 /* RSKTouchView.h in Headers */ = {isa = PBXBuildFile; fileRef = A31F188D4B66F6B22F8E86B908FDCAFE /* RSKTouchView.h */; settings = {ATTRIBUTES = (Project, ); }; }; 67304F639591EAB43001263B341483A1 /* rescaler_mips_dsp_r2.c in Sources */ = {isa = PBXBuildFile; fileRef = 893353C22879F217358868739D8C89E9 /* rescaler_mips_dsp_r2.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; 674B78DEE8CC679498E5DE48188B81FA /* FIRComponentContainerInternal.h in Headers */ = {isa = PBXBuildFile; fileRef = 51D0EC206B3FF3FD54D207F3F5C70719 /* FIRComponentContainerInternal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 67534913E2CDEE9AB092E4C33EDA97F5 /* RCTSurfaceRootShadowView.m in Sources */ = {isa = PBXBuildFile; fileRef = 908C907CBBED05A05EE11BE0B54565EC /* RCTSurfaceRootShadowView.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 6760547C035C32836135CEFD5839CC3F /* RCTInspectorPackagerConnection.h in Headers */ = {isa = PBXBuildFile; fileRef = C84311A37E28EA5AD000E7CD1838C64F /* RCTInspectorPackagerConnection.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 67B899B04D895FCE5864571871AB2137 /* EXContactsRequester.m in Sources */ = {isa = PBXBuildFile; fileRef = 95FAABA84BF67C347FE880EFCFC536D6 /* EXContactsRequester.m */; }; + 67534913E2CDEE9AB092E4C33EDA97F5 /* RCTSurfaceRootShadowView.m in Sources */ = {isa = PBXBuildFile; fileRef = 2A4E7108199FFDAEBEBF093950081874 /* RCTSurfaceRootShadowView.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 6760547C035C32836135CEFD5839CC3F /* RCTInspectorPackagerConnection.h in Headers */ = {isa = PBXBuildFile; fileRef = 946E76F08905CA9E7CBDE530F40F6C56 /* RCTInspectorPackagerConnection.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 67B899B04D895FCE5864571871AB2137 /* EXContactsRequester.m in Sources */ = {isa = PBXBuildFile; fileRef = 52BD787C10CFD74ACC1AB71A99C7A09E /* EXContactsRequester.m */; }; 67F58E27933AE0C15FDA31315B4F0861 /* SDAssociatedObject.m in Sources */ = {isa = PBXBuildFile; fileRef = E9FEBF5B13B80FBCD53AF5D844C38822 /* SDAssociatedObject.m */; }; 67FB60A3B7937AFDCE4D41A927B10F4D /* GDTCORStorage.m in Sources */ = {isa = PBXBuildFile; fileRef = 0B600A9196EDF7F5CE30EAA93665B08F /* GDTCORStorage.m */; }; 680FF7736E95C4F0598D00BE3087C83E /* SDWebImageDownloaderConfig.h in Headers */ = {isa = PBXBuildFile; fileRef = EA3905F7E6892A7956DD8078E9E87116 /* SDWebImageDownloaderConfig.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 684521B0CA1B1249C9ED804F3A62D6B4 /* UMReactNativeEventEmitter.h in Headers */ = {isa = PBXBuildFile; fileRef = 6D00718F193B816B9AEC873D72D440AC /* UMReactNativeEventEmitter.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 68583F66159847D4566003F248CDAAAE /* RCTConvert+CoreLocation.m in Sources */ = {isa = PBXBuildFile; fileRef = F8E555558800C5B1844648D07AAE2A72 /* 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"; }; }; + 684521B0CA1B1249C9ED804F3A62D6B4 /* UMReactNativeEventEmitter.h in Headers */ = {isa = PBXBuildFile; fileRef = BCE46127F21C3989418839D395900BB1 /* UMReactNativeEventEmitter.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 68536012826BEDB1F105F3F5B5EF1C75 /* Pods-ShareRocketChatRN-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 20EB67591180BD14936DAED287A3BFF0 /* Pods-ShareRocketChatRN-dummy.m */; }; + 68583F66159847D4566003F248CDAAAE /* RCTConvert+CoreLocation.m in Sources */ = {isa = PBXBuildFile; fileRef = 8B4C9F758CDDA9CBD51DE98A4495A10A /* 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"; }; }; 685876391AD8815F91ADD8BF5CD5AD96 /* FIRInstallationsItem+RegisterInstallationAPI.m in Sources */ = {isa = PBXBuildFile; fileRef = C422929093AA864A077D3201B48F2AD0 /* FIRInstallationsItem+RegisterInstallationAPI.m */; }; - 687395ADE9902C1256A39693758A218D /* YGLayout.h in Headers */ = {isa = PBXBuildFile; fileRef = 20A869A3834D59EFE78BCB05AF9E7C29 /* YGLayout.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 689449C04D77072010E4112781E8EDDC /* SRIOConsumer.h in Headers */ = {isa = PBXBuildFile; fileRef = 7D1A7CE079C1DC6BB58EB51221259A9D /* SRIOConsumer.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 68967D85B59597BD9AB686FCE92FD940 /* RCTSurfaceView.mm in Sources */ = {isa = PBXBuildFile; fileRef = 5716A60DCC3F0EC6EEA4C9258D69B220 /* RCTSurfaceView.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 68A609DB01B156CC5ED6B85013BBE883 /* RNPushKit.h in Headers */ = {isa = PBXBuildFile; fileRef = 518664B6200162676839C30ACF99064A /* RNPushKit.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 68A75E9D1078739344B33B3737E61D48 /* ReactNativeShareExtension.h in Headers */ = {isa = PBXBuildFile; fileRef = 69D48149BD7E426D4552A4467DA18E7F /* ReactNativeShareExtension.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 68AE3C4091F647837AC74569BE19E2B7 /* RCTBaseTextViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = F64C9572C53A98CF5C52103A9001C290 /* RCTBaseTextViewManager.m */; }; - 68C3589E68CE16489EB8418E3D5F14B1 /* RCTDevSettings.mm in Sources */ = {isa = PBXBuildFile; fileRef = 4F76D923E4F1B3560DEF7B0F66F4FF75 /* RCTDevSettings.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 68D189344FD730D7E96118DB6861819D /* UMKernelService.h in Headers */ = {isa = PBXBuildFile; fileRef = 799E4AB53FE5402E6BCB30E200986637 /* UMKernelService.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6923B013228EE34EFB46111B344612C1 /* EXAppLoaderInterface.h in Headers */ = {isa = PBXBuildFile; fileRef = 43E874B0D8C56E5F4E51789D0A5B9C7A /* EXAppLoaderInterface.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 687395ADE9902C1256A39693758A218D /* YGLayout.h in Headers */ = {isa = PBXBuildFile; fileRef = 8E90CC927E40D20F68CBF9A0F8F978F2 /* YGLayout.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 68967D85B59597BD9AB686FCE92FD940 /* RCTSurfaceView.mm in Sources */ = {isa = PBXBuildFile; fileRef = 50225539BC3970508A5311FA54C90244 /* RCTSurfaceView.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 68A609DB01B156CC5ED6B85013BBE883 /* RNPushKit.h in Headers */ = {isa = PBXBuildFile; fileRef = 2B83A561B4411E2632F6E481392116BE /* RNPushKit.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 68A75E9D1078739344B33B3737E61D48 /* ReactNativeShareExtension.h in Headers */ = {isa = PBXBuildFile; fileRef = 7A47CD394AF66313A739E2111BCD7D5E /* ReactNativeShareExtension.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 68AE3C4091F647837AC74569BE19E2B7 /* RCTBaseTextViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 43C2A33DA2CC4C747712007294B2198B /* RCTBaseTextViewManager.m */; }; + 68C3589E68CE16489EB8418E3D5F14B1 /* RCTDevSettings.mm in Sources */ = {isa = PBXBuildFile; fileRef = A5BC1B430DF5AE6B833ED3A37AF2D9A7 /* RCTDevSettings.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 68D189344FD730D7E96118DB6861819D /* UMKernelService.h in Headers */ = {isa = PBXBuildFile; fileRef = E9EA6346C6605662C93E5B082E3087D5 /* UMKernelService.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6923B013228EE34EFB46111B344612C1 /* EXAppLoaderInterface.h in Headers */ = {isa = PBXBuildFile; fileRef = 644AB07B2AB908600728D0D3C86A669D /* EXAppLoaderInterface.h */; settings = {ATTRIBUTES = (Project, ); }; }; 6954C7E327E3C06A6AA626163C0C4B69 /* FIROptions.h in Headers */ = {isa = PBXBuildFile; fileRef = 017CC1B34A00D5D000439D51172861CF /* FIROptions.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 695CBDCD8BFCAA443DA31034E8A4905A /* REABlockNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 0C029F597750864869A6AF6D6C5CF9B7 /* REABlockNode.m */; }; - 6986A1CB24DB43E7ACA1C07C85BB3090 /* RCTBackedTextInputDelegateAdapter.h in Headers */ = {isa = PBXBuildFile; fileRef = 3D9CA88B1BD3C6055F2E952ED7561E51 /* RCTBackedTextInputDelegateAdapter.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 695CBDCD8BFCAA443DA31034E8A4905A /* REABlockNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 714C991B3E7AA83F25BCF7A32B980C87 /* REABlockNode.m */; }; + 6986A1CB24DB43E7ACA1C07C85BB3090 /* RCTBackedTextInputDelegateAdapter.h in Headers */ = {isa = PBXBuildFile; fileRef = 4B2638AE3C498C6F849896DFB3E9373D /* RCTBackedTextInputDelegateAdapter.h */; settings = {ATTRIBUTES = (Project, ); }; }; 698E16574F8BB6B1A4C2B0E81CDBDD30 /* SDDeviceHelper.h in Headers */ = {isa = PBXBuildFile; fileRef = DD2806395B36E55041B47CB2F212D053 /* SDDeviceHelper.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 69B92355E75BB5A248C0C9A2A254E5B1 /* ARTRenderableManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 7D440FB6D3CFF9DF0C9C7B3057F7E681 /* ARTRenderableManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 69B92355E75BB5A248C0C9A2A254E5B1 /* ARTRenderableManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 11F0B32660F7804AA40A7BF7880C44FE /* ARTRenderableManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; 69C23762E4D32B627E18AA019E5F8F2B /* dynamic.cpp in Sources */ = {isa = PBXBuildFile; fileRef = C65235A5B4462861F568033127D5801F /* dynamic.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 6A03046C71CF85B2E59E2FBEFA35C326 /* RNCSliderManager.h in Headers */ = {isa = PBXBuildFile; fileRef = F459CB964CE4ED8DD499B2A6BBA58043 /* RNCSliderManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6A03046C71CF85B2E59E2FBEFA35C326 /* RNCSliderManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 0A7D6F4043A5D4ECF4512F642C43C17A /* RNCSliderManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; 6A6811BCCAFE9B118E3913633F9D1A9D /* FIRComponent.h in Headers */ = {isa = PBXBuildFile; fileRef = 11613175A36C6EBE31343B6BACA3302C /* FIRComponent.h */; settings = {ATTRIBUTES = (Project, ); }; }; 6A789FEDD6D65DEB0888A4AB486DB224 /* pb_common.c in Sources */ = {isa = PBXBuildFile; fileRef = E427482FF0816F936F72DF5FD9CAB3BC /* pb_common.c */; settings = {COMPILER_FLAGS = "-fno-objc-arc -fno-objc-arc -fno-objc-arc"; }; }; 6A9BAB8845A46379E69D055193EC5871 /* FIRDiagnosticsData.m in Sources */ = {isa = PBXBuildFile; fileRef = D8DE3BC13CAB60BD0F12942A7720BC23 /* FIRDiagnosticsData.m */; }; 6ABEAD7FC928CF7779E132A291D0B0D2 /* vp8li_enc.h in Headers */ = {isa = PBXBuildFile; fileRef = D2435B61807A015F7C86DCAB5E5A19AC /* vp8li_enc.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6AF8B0B8BC5662944D21ABB73104ED6F /* Utils.h in Headers */ = {isa = PBXBuildFile; fileRef = A8A7770A070C393FBFF98FEC154A152E /* Utils.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6B16BF857D52CA921AA18F9107D1A5D2 /* YGNodePrint.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D3B448C982D7EBD948B4234A6E44C763 /* YGNodePrint.cpp */; settings = {COMPILER_FLAGS = "-fno-omit-frame-pointer -fexceptions -Wall -Werror -std=c++1y -fPIC -fno-objc-arc"; }; }; - 6B24587056B43B44A33D33481C1F0B7C /* EXCalendarRequester.h in Headers */ = {isa = PBXBuildFile; fileRef = 7547CF1649325803E5235EA43DE8F1FA /* EXCalendarRequester.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6B407A46EF38EFD8233880BCA6BEA4A3 /* Color+Interpolation.h in Headers */ = {isa = PBXBuildFile; fileRef = 5FCBECCE8C153134A71B63AA69A2029A /* Color+Interpolation.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6AF8B0B8BC5662944D21ABB73104ED6F /* Utils.h in Headers */ = {isa = PBXBuildFile; fileRef = 61E1CC05B0D6981933244DE1C07901B3 /* Utils.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6B16BF857D52CA921AA18F9107D1A5D2 /* YGNodePrint.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A1307B3A72BF7EEAE8A6CCCC08D63FF3 /* YGNodePrint.cpp */; settings = {COMPILER_FLAGS = "-fno-omit-frame-pointer -fexceptions -Wall -Werror -std=c++1y -fPIC -fno-objc-arc"; }; }; + 6B24587056B43B44A33D33481C1F0B7C /* EXCalendarRequester.h in Headers */ = {isa = PBXBuildFile; fileRef = 2122B71FF39776F28C815E0F8E2E8600 /* EXCalendarRequester.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6B407A46EF38EFD8233880BCA6BEA4A3 /* Color+Interpolation.h in Headers */ = {isa = PBXBuildFile; fileRef = E661B542D47AB857234C271BBFDC2938 /* Color+Interpolation.h */; settings = {ATTRIBUTES = (Project, ); }; }; 6B6CD41EA0E92DE12D6390B15A0C6D74 /* firebasecore.nanopb.c in Sources */ = {isa = PBXBuildFile; fileRef = 29E2C22FF879C56A44707455873A657F /* firebasecore.nanopb.c */; }; 6B78D71DC954AB01DB63AFEE42B06E7B /* FIRInstallationsSingleOperationPromiseCache.m in Sources */ = {isa = PBXBuildFile; fileRef = 677829C82932437E90068CC931C2D606 /* FIRInstallationsSingleOperationPromiseCache.m */; }; 6BB0A0E40EDC7AB4948869DCFB90D4E2 /* muxi.h in Headers */ = {isa = PBXBuildFile; fileRef = 2B5CA70816F8CA51268D097D84CE8B5B /* muxi.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6BC32C5F7F9AC61B55841DBD9D4B2D76 /* RCTEventEmitter.h in Headers */ = {isa = PBXBuildFile; fileRef = 98305923090289A42F8E6DE81E905800 /* RCTEventEmitter.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6BEB09BDA381DE6F36DFA175CBC46104 /* RCTLayoutAnimation.m in Sources */ = {isa = PBXBuildFile; fileRef = 301FCE951F2D1213894FFD2A9F1C86B6 /* RCTLayoutAnimation.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 6BC32C5F7F9AC61B55841DBD9D4B2D76 /* RCTEventEmitter.h in Headers */ = {isa = PBXBuildFile; fileRef = AA3B60EE0DA2A703449E53DAD24B2D31 /* RCTEventEmitter.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6BEB09BDA381DE6F36DFA175CBC46104 /* RCTLayoutAnimation.m in Sources */ = {isa = PBXBuildFile; fileRef = 115CC108AEDECF85B62AF830AE3EFFF2 /* RCTLayoutAnimation.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; 6BEE9EB48AF833CA1A6C58022E2C851E /* GULHeartbeatDateStorage.m in Sources */ = {isa = PBXBuildFile; fileRef = 853B2681E8D6B8DC9F55CF27A6E8090C /* GULHeartbeatDateStorage.m */; }; - 6BFEA5716AA863598AB805E81B5BFE45 /* RNFirebaseEvents.h in Headers */ = {isa = PBXBuildFile; fileRef = 6084DDC35E5D37C93CAF1107978E5DBD /* RNFirebaseEvents.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6BFEA5716AA863598AB805E81B5BFE45 /* RNFirebaseEvents.h in Headers */ = {isa = PBXBuildFile; fileRef = 46D7F38726FE55F1B1612AD5DF7F598F /* RNFirebaseEvents.h */; settings = {ATTRIBUTES = (Project, ); }; }; 6C1BF50C54FFCDABA052C0D60E4AA1CB /* quant_levels_utils.h in Headers */ = {isa = PBXBuildFile; fileRef = 93606334B2DB3E80CC396AEDC2F909F5 /* quant_levels_utils.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6C293AAE8A665126DB65576FB61F2C2E /* NativeExpressComponent.h in Headers */ = {isa = PBXBuildFile; fileRef = EFFDB666E904439396EF4F7C7F90B397 /* NativeExpressComponent.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6C37E85CCE25B3CBB805962BFF44C389 /* BSG_KSCrashContext.h in Headers */ = {isa = PBXBuildFile; fileRef = E8B0878E4DE133E2EED49951E7026645 /* BSG_KSCrashContext.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6C293AAE8A665126DB65576FB61F2C2E /* NativeExpressComponent.h in Headers */ = {isa = PBXBuildFile; fileRef = BDBD57513A31CA7A9B1EA59149A57060 /* NativeExpressComponent.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6C37E85CCE25B3CBB805962BFF44C389 /* BSG_KSCrashContext.h in Headers */ = {isa = PBXBuildFile; fileRef = 0523512581D72F0977D54C1E21C22E7B /* BSG_KSCrashContext.h */; settings = {ATTRIBUTES = (Project, ); }; }; 6C447F4317536C8BEDDCAE38158898E6 /* FIRInstallationsStoredItem.h in Headers */ = {isa = PBXBuildFile; fileRef = 4A7647A1716C841E08616F47541DCD7B /* FIRInstallationsStoredItem.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6C62F01A3E274C4E2D49A70E12BB4B2E /* RCTFPSGraph.h in Headers */ = {isa = PBXBuildFile; fileRef = A2FF9E8F757B79139954AC8169CB7F1A /* RCTFPSGraph.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6C8A4C64FA432565E4D72C641396D7C0 /* EXAV.h in Headers */ = {isa = PBXBuildFile; fileRef = 8D0D9C59BE0CBF118DB6D61BD6D32266 /* EXAV.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6C62F01A3E274C4E2D49A70E12BB4B2E /* RCTFPSGraph.h in Headers */ = {isa = PBXBuildFile; fileRef = DC7D75E5C5EE9AF36BA1CD8A4C46ED7B /* RCTFPSGraph.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6C8A4C64FA432565E4D72C641396D7C0 /* EXAV.h in Headers */ = {isa = PBXBuildFile; fileRef = 0C2A9D413C80FCDF3EB55CA1716BD4E5 /* EXAV.h */; settings = {ATTRIBUTES = (Project, ); }; }; 6C8D94790F619755B402629EC3F394BE /* UIButton+WebCache.h in Headers */ = {isa = PBXBuildFile; fileRef = A1C0F847D5B6DD6759E31413551F6F58 /* UIButton+WebCache.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6CB6D8CE84AA287C4DF317E4277E65EA /* SRSIMDHelpers.m in Sources */ = {isa = PBXBuildFile; fileRef = 84FB9E50BE845E4A965BD89CA6152FEB /* SRSIMDHelpers.m */; }; 6CBFAABEB470033B6CD1B49891885208 /* FBLPromise+Recover.m in Sources */ = {isa = PBXBuildFile; fileRef = 9DC3538131FBA43CF7F442029413C750 /* FBLPromise+Recover.m */; }; - 6CE6837AC0E4342DBEBEB53FB3122DA9 /* BridgeJSCallInvoker.h in Headers */ = {isa = PBXBuildFile; fileRef = 760E084FF9253B90AE10648B74D95FC4 /* BridgeJSCallInvoker.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6CEC93D42BCE1C84B05210117F48F610 /* REACallFuncNode.m in Sources */ = {isa = PBXBuildFile; fileRef = B53790AD4EBEFCDA82A9C783FEE738A6 /* REACallFuncNode.m */; }; - 6CED95887EBD2CF89095B6C5EDD7AA82 /* QBVideoIndicatorView.h in Headers */ = {isa = PBXBuildFile; fileRef = 470678FF420AF5923D2476348B25B58A /* QBVideoIndicatorView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6CE6837AC0E4342DBEBEB53FB3122DA9 /* BridgeJSCallInvoker.h in Headers */ = {isa = PBXBuildFile; fileRef = 457FDE7327ADA30AFB2C2998ECDD77F6 /* BridgeJSCallInvoker.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6CEC93D42BCE1C84B05210117F48F610 /* REACallFuncNode.m in Sources */ = {isa = PBXBuildFile; fileRef = BF2BEAA276BAE703F676D98DFD951C1E /* REACallFuncNode.m */; }; + 6CED95887EBD2CF89095B6C5EDD7AA82 /* QBVideoIndicatorView.h in Headers */ = {isa = PBXBuildFile; fileRef = B6CECEFE723256B99091772FFAA1E804 /* QBVideoIndicatorView.h */; settings = {ATTRIBUTES = (Project, ); }; }; 6CF9B64389DCBE99ED877DA30E3BE3A2 /* GDTCORTransformer.m in Sources */ = {isa = PBXBuildFile; fileRef = 92FA3E16143BD843AB82FBE1484C3175 /* GDTCORTransformer.m */; }; - 6D0CF30D57D65E1F68DA583AF4EF9CB2 /* UMUtilities.h in Headers */ = {isa = PBXBuildFile; fileRef = E9D6F8AA9511FDAE29A6C31B90EE0A20 /* UMUtilities.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6D81F160FDDE97DC6131EC9ED617BCCF /* RCTBaseTextViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = CEE74D72BD81F22BDDA2A8ECAC0EF55F /* RCTBaseTextViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6DB542FBEF8166B75D6E1997BC8D3F4A /* BSGOutOfMemoryWatchdog.m in Sources */ = {isa = PBXBuildFile; fileRef = C7FE4583922DFFEAA71F67AB537108BD /* BSGOutOfMemoryWatchdog.m */; }; + 6D0CF30D57D65E1F68DA583AF4EF9CB2 /* UMUtilities.h in Headers */ = {isa = PBXBuildFile; fileRef = 84E95B4CCAB7B65F14342EB42E03D1D2 /* UMUtilities.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6D81F160FDDE97DC6131EC9ED617BCCF /* RCTBaseTextViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 073F30BB95FEBD162501E3C3E40BFE22 /* RCTBaseTextViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6DB135CE25243C7A87B72013CF246917 /* EXKeepAwake.h in Headers */ = {isa = PBXBuildFile; fileRef = C9681AA2558043F6935F3827D5E1190A /* EXKeepAwake.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6DB542FBEF8166B75D6E1997BC8D3F4A /* BSGOutOfMemoryWatchdog.m in Sources */ = {isa = PBXBuildFile; fileRef = 7B416D61CA87084064E2F42BD543B8AD /* BSGOutOfMemoryWatchdog.m */; }; 6DBD30F941705CABAECEB99911829643 /* SDDiskCache.m in Sources */ = {isa = PBXBuildFile; fileRef = 587AD88BD32631BB096534980CA556E2 /* SDDiskCache.m */; }; - 6DC9D514C156F0E939716CE07F540ECB /* RCTURLRequestDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = D49FBB4BAF0905B91E5A130C7D85CC9B /* RCTURLRequestDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6E06BCFEEB8D951BF2E0382C38315402 /* RCTViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 6453C16E95756708559EADDB0E549140 /* RCTViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6E0A2A93EE3C8B6C6DF5074AB6077827 /* EXCameraPermissionRequester.m in Sources */ = {isa = PBXBuildFile; fileRef = 8459D161AD8D1A8FE026F476A904A147 /* EXCameraPermissionRequester.m */; }; - 6E351BE1A8F183D1BB3F520FA4FC4D93 /* RNNotifications.h in Headers */ = {isa = PBXBuildFile; fileRef = DA788A6E731EB911D3B8E8D74459028C /* RNNotifications.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6E679D7FC64BCF6EA1ACFFB88A220FB0 /* RCTMessageThread.h in Headers */ = {isa = PBXBuildFile; fileRef = 6DDEE36481C60BAD50A38AAAA55A85A5 /* RCTMessageThread.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6E991C202A5292DBF3008C568A7C8F13 /* RCTRootViewDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = EBD0A2E61F70501CC7DA06E88451493F /* RCTRootViewDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6DC9D514C156F0E939716CE07F540ECB /* RCTURLRequestDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = C656FF6D5D30B52A35562CE99D9BC651 /* RCTURLRequestDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6E06BCFEEB8D951BF2E0382C38315402 /* RCTViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = D47D3600545703DC639CC0FC96134CD7 /* RCTViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6E0A2A93EE3C8B6C6DF5074AB6077827 /* EXCameraPermissionRequester.m in Sources */ = {isa = PBXBuildFile; fileRef = 6D0F44C460371DD08D55A8C00E471B1D /* EXCameraPermissionRequester.m */; }; + 6E351BE1A8F183D1BB3F520FA4FC4D93 /* RNNotifications.h in Headers */ = {isa = PBXBuildFile; fileRef = 0F61D4BF713EFC630F1A3B9525D0E4A8 /* RNNotifications.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6E679D7FC64BCF6EA1ACFFB88A220FB0 /* RCTMessageThread.h in Headers */ = {isa = PBXBuildFile; fileRef = 48FEBAC372020C751DE77B3F172BC8A2 /* RCTMessageThread.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6E991C202A5292DBF3008C568A7C8F13 /* RCTRootViewDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = B6A6B3249AE6644494DC1529A7ADE309 /* RCTRootViewDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; }; 6EC99E9A82F0476FB8A0B4E82330874B /* FIRInstallationsIDController.h in Headers */ = {isa = PBXBuildFile; fileRef = 289A7FAC33616CEAE154163C9869020A /* FIRInstallationsIDController.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6EE7100067645C0D982A472BD190B36F /* NSRunLoop+SRWebSocketPrivate.h in Headers */ = {isa = PBXBuildFile; fileRef = 4A6D5797739082382F344CC9DA33F8AA /* NSRunLoop+SRWebSocketPrivate.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6F1F0DE59B8D85D5C5BBE4827591AFE6 /* RNFirebaseUtil.h in Headers */ = {isa = PBXBuildFile; fileRef = 1F900664606405A9CBE565FDAEAE2BB7 /* RNFirebaseUtil.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6F222142E9E4F749DB37A59018C1A36D /* RCTPropsAnimatedNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 1DCA1DFD8A5758EDBE5164D779B23221 /* RCTPropsAnimatedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6F1F0DE59B8D85D5C5BBE4827591AFE6 /* RNFirebaseUtil.h in Headers */ = {isa = PBXBuildFile; fileRef = AC34E5A5F3C3F1FEDD15FCEB960B5EAA /* RNFirebaseUtil.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6F222142E9E4F749DB37A59018C1A36D /* RCTPropsAnimatedNode.h in Headers */ = {isa = PBXBuildFile; fileRef = B55F3AF8966AB2CDAD8D0F804DBB48B8 /* RCTPropsAnimatedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; 6F2DC21E261B5DEF25DADB0E1FE0129F /* GULSecureCoding.h in Headers */ = {isa = PBXBuildFile; fileRef = BD7302148CAB101FE972B11E7D6DB858 /* GULSecureCoding.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6F304A36099BC8A1FC2BA0AF4F249B80 /* RCTConvert.m in Sources */ = {isa = PBXBuildFile; fileRef = 135A662BDD56FDB59F2034096947DC8B /* RCTConvert.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 6F4C8ECB96B30078CDC6F3ED643DF275 /* REAAlwaysNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 3439A4F51CD7004E03A46A8C1CFCA866 /* REAAlwaysNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6F7A2AA0B06EFC5314EC9498AD3E1375 /* BSG_KSCrash.h in Headers */ = {isa = PBXBuildFile; fileRef = A205548659AB855F56F731B50745BD2D /* BSG_KSCrash.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6F806655969A1B5A942727F7A5EA22C1 /* RCTImageCache.h in Headers */ = {isa = PBXBuildFile; fileRef = EA460809421F4C4809D3F28C57C93A55 /* RCTImageCache.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6F843A8D44C24AC8E1A98C7AA75F6A94 /* RCTMaskedViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = D51EE29F11A5F83DABF1D865890EBC0F /* RCTMaskedViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6F8FAFF437453ABC54EAC53BC16ADCE0 /* RCTCxxBridgeDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = C1112B2DDBBB87AABF45247247DA931F /* RCTCxxBridgeDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6F93C07FC27EC5F48FEF33A277837FEF /* BugsnagSessionTrackingApiClient.m in Sources */ = {isa = PBXBuildFile; fileRef = 6796460AE35395D20A5FD33B258C51E5 /* BugsnagSessionTrackingApiClient.m */; }; + 6F304A36099BC8A1FC2BA0AF4F249B80 /* RCTConvert.m in Sources */ = {isa = PBXBuildFile; fileRef = 0CBDEACE8A1F1587BA4A7E95B38FCD9A /* RCTConvert.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 6F4C8ECB96B30078CDC6F3ED643DF275 /* REAAlwaysNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 226770D64621B378E0AD57C3D8DED81A /* REAAlwaysNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6F7A2AA0B06EFC5314EC9498AD3E1375 /* BSG_KSCrash.h in Headers */ = {isa = PBXBuildFile; fileRef = A854F5D9C3D977362678288E58D20C84 /* BSG_KSCrash.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6F806655969A1B5A942727F7A5EA22C1 /* RCTImageCache.h in Headers */ = {isa = PBXBuildFile; fileRef = 82D683F71493A4FB62FC3F9759E83754 /* RCTImageCache.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6F843A8D44C24AC8E1A98C7AA75F6A94 /* RCTMaskedViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 6F2DFE5CDE79A7E8F7E1D090C440DEBB /* RCTMaskedViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6F8FAFF437453ABC54EAC53BC16ADCE0 /* RCTCxxBridgeDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = 4A06BB9A317330A368C6C8D5623CEC4A /* RCTCxxBridgeDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6F93C07FC27EC5F48FEF33A277837FEF /* BugsnagSessionTrackingApiClient.m in Sources */ = {isa = PBXBuildFile; fileRef = 0F582AF6EFF217637358B4EB1B0531DA /* BugsnagSessionTrackingApiClient.m */; }; 6F9A19A47EEE733740327FF7A92428BC /* FIRInstallationsHTTPError.m in Sources */ = {isa = PBXBuildFile; fileRef = 505638042E3CDED31ED33340DD6E648E /* FIRInstallationsHTTPError.m */; }; - 6FADD2923098EDB7083BACF1DF28880E /* EXWebBrowser-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = A688ECDA59560C727A18D9A9EC838A62 /* EXWebBrowser-dummy.m */; }; - 6FB535A8E39D1F07E55B1E2356075896 /* RCTWrapperViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = B42C876ABD86D4A05BDE2E8BB12A504A /* RCTWrapperViewController.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 6FADD2923098EDB7083BACF1DF28880E /* EXWebBrowser-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 2C0AC29E6A0CE19E6C0057F95DD14384 /* EXWebBrowser-dummy.m */; }; + 6FB535A8E39D1F07E55B1E2356075896 /* RCTWrapperViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 4845F889D82357322C71E52FC4C73C4C /* RCTWrapperViewController.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; 6FB624CE84ABA6F5B472A098FD3B96CB /* iterator_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = CF05DD10D852093D157806E5E953BD23 /* iterator_enc.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; 6FCEE2424CB121B6DB9D8E376CF795C1 /* FIRInstallationsItem.m in Sources */ = {isa = PBXBuildFile; fileRef = 43E958E567C22BA0032023C305BEC2AD /* FIRInstallationsItem.m */; }; - 6FD86BC47002611DC40F437D2C1A2C23 /* RCTCustomKeyboardViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = 567558B0D0A19CD7C1BDC6FECCDC8442 /* RCTCustomKeyboardViewController.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6FD86BC47002611DC40F437D2C1A2C23 /* RCTCustomKeyboardViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = DD4AC19853E3153E2B2A37659CA1C199 /* RCTCustomKeyboardViewController.h */; settings = {ATTRIBUTES = (Project, ); }; }; 7000B0B67786D5E2CF438B2C6A3E06F0 /* FIRInstanceID.h in Headers */ = {isa = PBXBuildFile; fileRef = 9BE700AB1A857567583B903EB1F58B73 /* FIRInstanceID.h */; settings = {ATTRIBUTES = (Project, ); }; }; 7003449F5AD5ED5357D584E2C927D1C9 /* filters_neon.c in Sources */ = {isa = PBXBuildFile; fileRef = CA21C40AB9E6792C5EB386BCA0C5CF9D /* filters_neon.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 706254752772C2A2E485B68219F23D3A /* RCTBaseTextInputView.h in Headers */ = {isa = PBXBuildFile; fileRef = CE69419E38094A83898713802458E7E1 /* RCTBaseTextInputView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 706254752772C2A2E485B68219F23D3A /* RCTBaseTextInputView.h in Headers */ = {isa = PBXBuildFile; fileRef = 9F018843E2DC370532D916D1C32DFF36 /* RCTBaseTextInputView.h */; settings = {ATTRIBUTES = (Project, ); }; }; 71337D195C7203C40B62109A887445E2 /* FBLPromise+Testing.m in Sources */ = {isa = PBXBuildFile; fileRef = D701D1816B81717849B176050ED98E4F /* FBLPromise+Testing.m */; }; - 713786B3F95C96E2CEBAC2486313D34F /* CxxNativeModule.cpp in Sources */ = {isa = PBXBuildFile; fileRef = C8DF861B4AC631F3F65B6A339D216BE0 /* CxxNativeModule.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 71843254E106F2D1E4F467A04B343EC3 /* EXCameraRollRequester.m in Sources */ = {isa = PBXBuildFile; fileRef = 718D59D6F078BD382B50DE82EAEB46F5 /* EXCameraRollRequester.m */; }; - 71A15281A319A724463909058E694A81 /* RCTRawTextShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = 675E4382C53964FF05CCAD7BAE0A9410 /* RCTRawTextShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 71A8F1F7B8F1C500E5DB54E7568768BF /* RNSScreenStack.h in Headers */ = {isa = PBXBuildFile; fileRef = B2788A49B48ED49B9BF95A866CEE78F9 /* RNSScreenStack.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 71B1F6D3D1676C67B9689723295BBBF8 /* RNNativeViewHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = 52365A8480F8EAE6885A277BFE38C27B /* RNNativeViewHandler.m */; }; - 72029D9F22BCA54AF914D44CAFCA8792 /* RCTLocalAssetImageLoader.h in Headers */ = {isa = PBXBuildFile; fileRef = 68C0D22D5268386F7EB78415CC43071A /* RCTLocalAssetImageLoader.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7230FB37D3784E711FDC4DF68D61BDFF /* RCTKeyboardObserver.h in Headers */ = {isa = PBXBuildFile; fileRef = 770EC53C8416C142407CC52EF9EBA6EC /* RCTKeyboardObserver.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 72313D87595E28A750CDCD4BBA386FC6 /* RCTTextTransform.h in Headers */ = {isa = PBXBuildFile; fileRef = 426288AB110806D17A16FCF95DFA9E6B /* RCTTextTransform.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 725BC4B216ECC3B13922602F90FD5DDC /* RNFlingHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = 75DE09E0918C540F371EFBD969D982CB /* RNFlingHandler.m */; }; - 725FA4364B3AAAC6DA5672FC3D3C5DE2 /* BugsnagCollections.m in Sources */ = {isa = PBXBuildFile; fileRef = 254C75BE2B62D801A09BF11463B5C395 /* BugsnagCollections.m */; }; - 7285FB5D4837675FBC49C201EC04BB41 /* RCTSubtractionAnimatedNode.m in Sources */ = {isa = PBXBuildFile; fileRef = EDF66939C627F73390A7CCB963BCF343 /* RCTSubtractionAnimatedNode.m */; }; + 713786B3F95C96E2CEBAC2486313D34F /* CxxNativeModule.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D34A1447E7A054BF22DF40BDA08A0197 /* CxxNativeModule.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 71843254E106F2D1E4F467A04B343EC3 /* EXCameraRollRequester.m in Sources */ = {isa = PBXBuildFile; fileRef = F132861DB957D838597D949D7D9B28D8 /* EXCameraRollRequester.m */; }; + 71A15281A319A724463909058E694A81 /* RCTRawTextShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = FD25C0A52FF914112C3804C37A8386C2 /* RCTRawTextShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 71A8F1F7B8F1C500E5DB54E7568768BF /* RNSScreenStack.h in Headers */ = {isa = PBXBuildFile; fileRef = 52314E40541798B7B27A877E3D74169E /* RNSScreenStack.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 71B1F6D3D1676C67B9689723295BBBF8 /* RNNativeViewHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = EC6253B6B865B4D48A867EEE5670B1DA /* RNNativeViewHandler.m */; }; + 72029D9F22BCA54AF914D44CAFCA8792 /* RCTLocalAssetImageLoader.h in Headers */ = {isa = PBXBuildFile; fileRef = 9E3F1EC012B1E9084C73D718D53D6489 /* RCTLocalAssetImageLoader.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7230FB37D3784E711FDC4DF68D61BDFF /* RCTKeyboardObserver.h in Headers */ = {isa = PBXBuildFile; fileRef = BF68EA8D3718F8D0710898C64DB8E4EC /* RCTKeyboardObserver.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 72313D87595E28A750CDCD4BBA386FC6 /* RCTTextTransform.h in Headers */ = {isa = PBXBuildFile; fileRef = F3D1BC74B7F81B3373570366D060B42D /* RCTTextTransform.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 725BC4B216ECC3B13922602F90FD5DDC /* RNFlingHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = 9246F421DA5C78784C1F693CFD363B41 /* RNFlingHandler.m */; }; + 725FA4364B3AAAC6DA5672FC3D3C5DE2 /* BugsnagCollections.m in Sources */ = {isa = PBXBuildFile; fileRef = 299DE3575A6A766F8259A86B25064EA8 /* BugsnagCollections.m */; }; + 7285FB5D4837675FBC49C201EC04BB41 /* RCTSubtractionAnimatedNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 119FFB3F848631A057B879B37004A1D9 /* RCTSubtractionAnimatedNode.m */; }; 72A89D0E917A84710512EBBC8A498DBE /* bit_writer_utils.h in Headers */ = {isa = PBXBuildFile; fileRef = 5B528863F8D26E47DBD2FAA61C3FC4FA /* bit_writer_utils.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 730DC14773375905F03EC77556A60EE7 /* RNCAppearanceProvider.m in Sources */ = {isa = PBXBuildFile; fileRef = 73660DB3B546183E563BF37F42573BBB /* RNCAppearanceProvider.m */; }; - 73112C1488A872BEA689E089D0B0E0FD /* RNSScreenStack.m in Sources */ = {isa = PBXBuildFile; fileRef = AAE3EEEEF1FE96C10FCD6AFDE416AC56 /* RNSScreenStack.m */; }; - 7342956F63A49A4C25847523E6F41D64 /* RCTConvert+Transform.h in Headers */ = {isa = PBXBuildFile; fileRef = FC787765505DB033B1A703A169EA30DB /* RCTConvert+Transform.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 734F8686688DB475D6CF32D32D90EB10 /* BSG_KSBacktrace.c in Sources */ = {isa = PBXBuildFile; fileRef = 239BE55162CF269E4926013B46201EB7 /* BSG_KSBacktrace.c */; }; - 7359E67295A554AC557D1213A0CB5D53 /* RCTAssert.m in Sources */ = {isa = PBXBuildFile; fileRef = AF36EF623726F10B874489B4D806967A /* RCTAssert.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 730DC14773375905F03EC77556A60EE7 /* RNCAppearanceProvider.m in Sources */ = {isa = PBXBuildFile; fileRef = F7682ECCD906776D42EED1F55077A15F /* RNCAppearanceProvider.m */; }; + 73112C1488A872BEA689E089D0B0E0FD /* RNSScreenStack.m in Sources */ = {isa = PBXBuildFile; fileRef = 809D7CFE1698363E3A4E0C2D465A00C2 /* RNSScreenStack.m */; }; + 7342956F63A49A4C25847523E6F41D64 /* RCTConvert+Transform.h in Headers */ = {isa = PBXBuildFile; fileRef = 7D00C3CCD82FE1C5EADE820AC7100F0D /* RCTConvert+Transform.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 734F8686688DB475D6CF32D32D90EB10 /* BSG_KSBacktrace.c in Sources */ = {isa = PBXBuildFile; fileRef = 1CB0894A4004AF4CFE6CE31924DA0937 /* BSG_KSBacktrace.c */; }; + 7359E67295A554AC557D1213A0CB5D53 /* RCTAssert.m in Sources */ = {isa = PBXBuildFile; fileRef = 00012AD6965A813C30EA32ECA359C3BD /* RCTAssert.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; 736C1E17BD05A7026591A32A7F626B7A /* FBLPromise+Reduce.m in Sources */ = {isa = PBXBuildFile; fileRef = 5AD246BB1DA917A3E16D3F36B4867501 /* FBLPromise+Reduce.m */; }; 738FD16D3B15E94374A9151BA1B17663 /* FIRInstanceIDCheckinPreferences+Internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 64858CBC195C53A245090C9C8C11D8DB /* FIRInstanceIDCheckinPreferences+Internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 73A68ADFEFA00CDF462544E0CABEF84F /* UMReactFontManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 76AB9524CEC8C7CB522460DD471D2306 /* UMReactFontManager.m */; }; + 73A68ADFEFA00CDF462544E0CABEF84F /* UMReactFontManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 90449CFD20AC9ECF90C0D33DF2D396CA /* UMReactFontManager.m */; }; 744D36A39C5C7188078F180F8A379A4E /* GDTCORAssert.h in Headers */ = {isa = PBXBuildFile; fileRef = FED3E487A355D9CE1B0445AF9E4FA899 /* GDTCORAssert.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 74E40035D26D7E61EE95B512E8219E77 /* BSG_KSCrashReportWriter.h in Headers */ = {isa = PBXBuildFile; fileRef = 0137CAA805D11FAE4912C547CDCD8305 /* BSG_KSCrashReportWriter.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 74EEF982C535C643E4E783C13EF2513A /* YGConfig.h in Headers */ = {isa = PBXBuildFile; fileRef = 6DB473DE49C64A907CF7780073D75D5C /* YGConfig.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7563D4DBE0016DD8A873BB45F22E702D /* EXFileSystemLocalFileHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = DB7B7DED5BC12B45C227911BACA693AD /* EXFileSystemLocalFileHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 74E40035D26D7E61EE95B512E8219E77 /* BSG_KSCrashReportWriter.h in Headers */ = {isa = PBXBuildFile; fileRef = A175373ED871D8A311F07D9C8124C01E /* BSG_KSCrashReportWriter.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 74EEF982C535C643E4E783C13EF2513A /* YGConfig.h in Headers */ = {isa = PBXBuildFile; fileRef = 83721110039CFE42056BFEDFC27ECD7A /* YGConfig.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7563D4DBE0016DD8A873BB45F22E702D /* EXFileSystemLocalFileHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 147F0FC071C559A962350966AA459C27 /* EXFileSystemLocalFileHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; 757C477AF763DFCA1BE5A5D78341AFE8 /* FirebaseCoreDiagnostics-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = AE40F8A55B4E0868CA1A35733818234B /* FirebaseCoreDiagnostics-dummy.m */; }; - 7592441730A3BC69180FA193844D96B4 /* RCTAdditionAnimatedNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 76509F80046098BB4EDA1201032468F5 /* RCTAdditionAnimatedNode.m */; }; - 75A59976244E5AA9E3D97416B77865C4 /* RCTSegmentedControl.m in Sources */ = {isa = PBXBuildFile; fileRef = 1F8A2E1F39B0FA2B48D874E8DA74681B /* RCTSegmentedControl.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 7592441730A3BC69180FA193844D96B4 /* RCTAdditionAnimatedNode.m in Sources */ = {isa = PBXBuildFile; fileRef = A323E8D7320BDFBB0D244635AD624EAA /* RCTAdditionAnimatedNode.m */; }; + 75A59976244E5AA9E3D97416B77865C4 /* RCTSegmentedControl.m in Sources */ = {isa = PBXBuildFile; fileRef = 3111C404121894DDCFC1B6FF8A409B32 /* RCTSegmentedControl.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; 75AF4BFBC99BEFE0356973D015D8F83B /* GDTCORUploadPackage.m in Sources */ = {isa = PBXBuildFile; fileRef = 3D213A29F586151F62E7D1190EC36483 /* GDTCORUploadPackage.m */; }; - 75C38367AD41BCC14148B858141FD9A2 /* RNUserDefaults.m in Sources */ = {isa = PBXBuildFile; fileRef = 390EB75A812143B1A811F566F22BEC7B /* RNUserDefaults.m */; }; - 75FF28886473C6483EB0B468863B7E67 /* EXUserNotificationRequester.m in Sources */ = {isa = PBXBuildFile; fileRef = CB5AC702E3C11A6992BC64217D1A82DB /* EXUserNotificationRequester.m */; }; - 762FD7831F24C457DDBD8BA67F2BB1FC /* UMModuleRegistryProvider.h in Headers */ = {isa = PBXBuildFile; fileRef = 082483C70AE10A5F45C50C7794177471 /* UMModuleRegistryProvider.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 763B9FCB94339F26135F8A52C7463AB1 /* SRLog.h in Headers */ = {isa = PBXBuildFile; fileRef = 3145621CFDEA849F9DB960EC916DAD82 /* SRLog.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 75C38367AD41BCC14148B858141FD9A2 /* RNUserDefaults.m in Sources */ = {isa = PBXBuildFile; fileRef = 7A3DF1388CCFE08E5E3B3581FE47323C /* RNUserDefaults.m */; }; + 75FF28886473C6483EB0B468863B7E67 /* EXUserNotificationRequester.m in Sources */ = {isa = PBXBuildFile; fileRef = 75E8305AA087EEF6B9784DC22E9C8DF6 /* EXUserNotificationRequester.m */; }; + 762FD7831F24C457DDBD8BA67F2BB1FC /* UMModuleRegistryProvider.h in Headers */ = {isa = PBXBuildFile; fileRef = 56AC17775CF9BD254E41F497EF8E7C82 /* UMModuleRegistryProvider.h */; settings = {ATTRIBUTES = (Project, ); }; }; 764F640B2C505140321DA60CF2074D08 /* tree_dec.c in Sources */ = {isa = PBXBuildFile; fileRef = 7E8C6A830011E9B4493E7F2FC363A651 /* tree_dec.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 765D355A7222D5FE09B6110134D7D90F /* NSError+BSG_SimpleConstructor.h in Headers */ = {isa = PBXBuildFile; fileRef = 8BB773C29D6CE3712DA8D04B3E3F8E9F /* NSError+BSG_SimpleConstructor.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 766F000E71EC6BFDEB9AAED4900BCDF4 /* RCTRawTextViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 45533DF14ED4EFE52189CAE13473C13F /* RCTRawTextViewManager.m */; }; + 765D355A7222D5FE09B6110134D7D90F /* NSError+BSG_SimpleConstructor.h in Headers */ = {isa = PBXBuildFile; fileRef = 4D898441F49FDE4DD4697706429C466A /* NSError+BSG_SimpleConstructor.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 766F000E71EC6BFDEB9AAED4900BCDF4 /* RCTRawTextViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 99CCC935F2D2DCE7B8B37E98E8185E00 /* RCTRawTextViewManager.m */; }; 76D25ED0F70513D59EB42DEDD4030C8C /* FIRInstallationsErrors.h in Headers */ = {isa = PBXBuildFile; fileRef = 0E28FEB864CD8E6FC7A5CD387F3CE7FD /* FIRInstallationsErrors.h */; settings = {ATTRIBUTES = (Project, ); }; }; 76EBE6CD51BEEE22F89845516E86EBAA /* SDWebImageWebPCoder.h in Headers */ = {isa = PBXBuildFile; fileRef = 8825B0D3568A19F57CDF00412E9B2DD6 /* SDWebImageWebPCoder.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 770E4158FE7D473DBF6166B27FB81902 /* ARTGroup.m in Sources */ = {isa = PBXBuildFile; fileRef = 38C9CAB167C3A105C83931874B177D67 /* ARTGroup.m */; }; - 771BDC0E0D0199F0D822FFACEE14F210 /* SRRandom.h in Headers */ = {isa = PBXBuildFile; fileRef = BF3672536FF643DF11A9682FB3429BD6 /* SRRandom.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 770E4158FE7D473DBF6166B27FB81902 /* ARTGroup.m in Sources */ = {isa = PBXBuildFile; fileRef = B98BA79CAEA26BC06182CBDC1A5F77A3 /* ARTGroup.m */; }; 77744A82C948F3D83862E0015E612602 /* muxinternal.c in Sources */ = {isa = PBXBuildFile; fileRef = 9A5D533C41D3DCA0AE4501ABA408A5EF /* muxinternal.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 77868A2F1BD29A7EF7EBD9BA253DE3A9 /* SocketRocket.h in Headers */ = {isa = PBXBuildFile; fileRef = 56E7BF46F866F04E47CAF898C2DFCB9C /* SocketRocket.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7791BBB29998F4C9AC0F038A100DD278 /* RCTKeyCommands.h in Headers */ = {isa = PBXBuildFile; fileRef = 5C910818B6524C8841009D36914A5180 /* RCTKeyCommands.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 77F7E18F5FDAACD09E6FB7DD9E448FE5 /* RCTSurface.mm in Sources */ = {isa = PBXBuildFile; fileRef = ED0FF59B3FE2273C8F4D471E785038AF /* RCTSurface.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 7791BBB29998F4C9AC0F038A100DD278 /* RCTKeyCommands.h in Headers */ = {isa = PBXBuildFile; fileRef = 37F0F4903F60E772E81AA73B8F63FA68 /* RCTKeyCommands.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 77F7E18F5FDAACD09E6FB7DD9E448FE5 /* RCTSurface.mm in Sources */ = {isa = PBXBuildFile; fileRef = 4A20331AEFE584D7B6CBACB9EE3B6C06 /* RCTSurface.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; 782A7E895D3075095F9AACEBA47584EC /* SDImageAssetManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 85F22489B98808C5DA103C7B579C00A3 /* SDImageAssetManager.m */; }; 7858D06DC0B4D4114B09194D2473AF68 /* SDWebImageCacheKeyFilter.m in Sources */ = {isa = PBXBuildFile; fileRef = 183A3C0267913A961293F8FCB8FCF81D /* SDWebImageCacheKeyFilter.m */; }; - 785B004CF833DF5DD70FEC6A215346C4 /* RCTAdditionAnimatedNode.h in Headers */ = {isa = PBXBuildFile; fileRef = BD948116D2FBD3DD544C55A03AD2D163 /* RCTAdditionAnimatedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 785B004CF833DF5DD70FEC6A215346C4 /* RCTAdditionAnimatedNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 1E3F1F2550D5459BD9AC9C316821612E /* RCTAdditionAnimatedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; 785BC4CF4809020AF5132A2626189D3B /* mux.h in Headers */ = {isa = PBXBuildFile; fileRef = 27AACFC75C230014487A026D8216B40F /* mux.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 785CAF95D72E52A3CB51D19B161EF757 /* RNDateTimePicker-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = CD09EF50591FE6079F45B714CABBF042 /* RNDateTimePicker-dummy.m */; }; - 78915BE17253AFB06827312FC0CCBAF6 /* RNSScreen.h in Headers */ = {isa = PBXBuildFile; fileRef = B98DC9B757DDBDD7FF014553ACFAA046 /* RNSScreen.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 78BBE6B6246438B18643483CE090E330 /* RCTResizeMode.m in Sources */ = {isa = PBXBuildFile; fileRef = 54F5E1A4C627EC65AC00277DD62B4496 /* RCTResizeMode.m */; }; - 7937E82C07AC827E3A6244D5DD2CF44B /* UMModuleRegistry.h in Headers */ = {isa = PBXBuildFile; fileRef = 3B4A222D583E9AD9DD60C4833772C233 /* UMModuleRegistry.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 794567009289677F590846BBC3EC0ADF /* EXFilePermissionModule.m in Sources */ = {isa = PBXBuildFile; fileRef = 82D1F08709A71593209C4D6E2EF80918 /* EXFilePermissionModule.m */; }; - 798A82284A3CB48CBCD33D2A036FA58B /* RCTFrameUpdate.h in Headers */ = {isa = PBXBuildFile; fileRef = B326B2109C0685C03903F37A807BE28B /* RCTFrameUpdate.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 799D7BAD6B61F711CD5DC85E8FAC19EE /* UMNativeModulesProxy.m in Sources */ = {isa = PBXBuildFile; fileRef = 139C8D9238725DAE7FCBF01C2CB3061B /* UMNativeModulesProxy.m */; }; - 79AE898F906C7A86938C2D2FFDB55525 /* YGEnums.h in Headers */ = {isa = PBXBuildFile; fileRef = F9FC30BA0F6F380628A8C1D348539FCD /* YGEnums.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 785CAF95D72E52A3CB51D19B161EF757 /* RNDateTimePicker-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 8F0137794D60F31FCD06798B5707FBEF /* RNDateTimePicker-dummy.m */; }; + 78915BE17253AFB06827312FC0CCBAF6 /* RNSScreen.h in Headers */ = {isa = PBXBuildFile; fileRef = 0E35B60CC9EC81D190B734380F8348F6 /* RNSScreen.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 78BBE6B6246438B18643483CE090E330 /* RCTResizeMode.m in Sources */ = {isa = PBXBuildFile; fileRef = E0561C75A1A2ACC253357267929397E0 /* RCTResizeMode.m */; }; + 7937E82C07AC827E3A6244D5DD2CF44B /* UMModuleRegistry.h in Headers */ = {isa = PBXBuildFile; fileRef = 50037523A2CE9244EFC6483F29D4B6F8 /* UMModuleRegistry.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 794567009289677F590846BBC3EC0ADF /* EXFilePermissionModule.m in Sources */ = {isa = PBXBuildFile; fileRef = AEB1D052D9CA6562839EFD9298E150C8 /* EXFilePermissionModule.m */; }; + 798A82284A3CB48CBCD33D2A036FA58B /* RCTFrameUpdate.h in Headers */ = {isa = PBXBuildFile; fileRef = 759BC504286B8CCE97EFEF1740983CDB /* RCTFrameUpdate.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 799D7BAD6B61F711CD5DC85E8FAC19EE /* UMNativeModulesProxy.m in Sources */ = {isa = PBXBuildFile; fileRef = 4026B050CA72676670724048203E67F7 /* UMNativeModulesProxy.m */; }; + 79AE898F906C7A86938C2D2FFDB55525 /* YGEnums.h in Headers */ = {isa = PBXBuildFile; fileRef = C2AB2C6DF577517B46C6AFDA1CA56AA9 /* YGEnums.h */; settings = {ATTRIBUTES = (Project, ); }; }; 79B0374BFE07F9D6A24D3310F5DB476E /* FBLPromise+Delay.m in Sources */ = {isa = PBXBuildFile; fileRef = E503EE768F7FB7BA45AF2BCAD9C1BFED /* FBLPromise+Delay.m */; }; - 79F7D3090E3A8BF8F2EFA3DD0DCED79A /* RNCWebViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = DF22D78107F6A51F4D5DFC8BD27C71AB /* RNCWebViewManager.m */; }; + 79F7D3090E3A8BF8F2EFA3DD0DCED79A /* RNCWebViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 1074444495BF746087735B3410FCF659 /* RNCWebViewManager.m */; }; 7A19A0BB7B9140448F7E0498A1C64011 /* FIRIMessageCode.h in Headers */ = {isa = PBXBuildFile; fileRef = 31AFD104F69CCD2F1C24B01B859DDA5A /* FIRIMessageCode.h */; settings = {ATTRIBUTES = (Project, ); }; }; 7A86CE51E137904ECFC87AD6329D753B /* FIRInstanceIDVersionUtilities.m in Sources */ = {isa = PBXBuildFile; fileRef = 014FBCA79FB8FD0C06F5F4EBBC1B6BE8 /* FIRInstanceIDVersionUtilities.m */; }; - 7AAD2D8D0F6574DC00F40C30BE28A7BD /* RCTLocalAssetImageLoader.m in Sources */ = {isa = PBXBuildFile; fileRef = E6F066E8170EC345A2AF8CAF9B5AE544 /* RCTLocalAssetImageLoader.m */; }; - 7AAD85FF6DEAA7B3E28F704359B64F2A /* RCTDivisionAnimatedNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 6F6EB58B2C2940D1942E88C0C077E219 /* RCTDivisionAnimatedNode.m */; }; - 7AB7F19547D4A3B795D7B86C6F544B71 /* RCTEventAnimation.h in Headers */ = {isa = PBXBuildFile; fileRef = CD81524ED48B48D5EC48654321483E76 /* RCTEventAnimation.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7AE193443996AA04DD37762CD29141DA /* RCTI18nManager.h in Headers */ = {isa = PBXBuildFile; fileRef = AC7C0F5CA672859F3E6F54731FF78567 /* RCTI18nManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7B28935E3953E17E3FA23F863D4E713C /* BugsnagReactNative.h in Headers */ = {isa = PBXBuildFile; fileRef = 69EB09CE2A99BC4B5CA1572AD8EC9BD4 /* BugsnagReactNative.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7B8176A0EC34E5A6E599C6B07EAE5D58 /* react-native-cameraroll-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = C816790EB4E6ABA37CC24D1DABA196A5 /* react-native-cameraroll-dummy.m */; }; - 7BDCFE0383194CE86013170AD313EA03 /* UMJavaScriptContextProvider.h in Headers */ = {isa = PBXBuildFile; fileRef = 55014DC55695E2C387F7AFF31BEF7945 /* UMJavaScriptContextProvider.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7C1EC2A3D0A3E039BFEC6AE946044691 /* RCTParserUtils.m in Sources */ = {isa = PBXBuildFile; fileRef = EFB47B5D814F2C6B8453AE856D6E5A4B /* RCTParserUtils.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 7C43967C261EDC8D9DF9C4FE6F0CCF03 /* UMUIManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 3036FECE3E869779BDDCBE736F73DA45 /* UMUIManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7CBDB0E759304C9B04F4D20194C95729 /* Yoga-internal.h in Headers */ = {isa = PBXBuildFile; fileRef = A2B875E2EB4BD61AC13118FFD9A943D5 /* Yoga-internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7CD7443BBEECE3C05041C3788C3D53BD /* RCTSafeAreaViewLocalData.h in Headers */ = {isa = PBXBuildFile; fileRef = 95C718E70F68126F5BBB539625221AE4 /* RCTSafeAreaViewLocalData.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7CFEA0A6052051C538AD0B0F49158099 /* RNFirebaseInstanceId.h in Headers */ = {isa = PBXBuildFile; fileRef = CBF9C1AF14974A9BB1391E68B7D00804 /* RNFirebaseInstanceId.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7AAD2D8D0F6574DC00F40C30BE28A7BD /* RCTLocalAssetImageLoader.m in Sources */ = {isa = PBXBuildFile; fileRef = E2305B9E96A28125190EB6022397B0E5 /* RCTLocalAssetImageLoader.m */; }; + 7AAD85FF6DEAA7B3E28F704359B64F2A /* RCTDivisionAnimatedNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 583C78D06D85B0F0870949F7687750AB /* RCTDivisionAnimatedNode.m */; }; + 7AB7F19547D4A3B795D7B86C6F544B71 /* RCTEventAnimation.h in Headers */ = {isa = PBXBuildFile; fileRef = 407F2989447A7D2DD6C3EFE0DCC1B409 /* RCTEventAnimation.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7AE193443996AA04DD37762CD29141DA /* RCTI18nManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 4B8C09B761BB8B1094107916DCB77622 /* RCTI18nManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7B28935E3953E17E3FA23F863D4E713C /* BugsnagReactNative.h in Headers */ = {isa = PBXBuildFile; fileRef = 773F03AC502D02B75772D11C2745FDC5 /* BugsnagReactNative.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7B8176A0EC34E5A6E599C6B07EAE5D58 /* react-native-cameraroll-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 71BFB63846D90EC9F35997A234EA80E1 /* react-native-cameraroll-dummy.m */; }; + 7BDCFE0383194CE86013170AD313EA03 /* UMJavaScriptContextProvider.h in Headers */ = {isa = PBXBuildFile; fileRef = 22149EAF70CC1E264BA0C19002B87DF4 /* UMJavaScriptContextProvider.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7C1EC2A3D0A3E039BFEC6AE946044691 /* RCTParserUtils.m in Sources */ = {isa = PBXBuildFile; fileRef = 89B3D9CD7FF68E7F4A8F6C05B00C33FE /* RCTParserUtils.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 7C43967C261EDC8D9DF9C4FE6F0CCF03 /* UMUIManager.h in Headers */ = {isa = PBXBuildFile; fileRef = EDC7EA665F9A2FC5A4374096CA11168C /* UMUIManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7CBDB0E759304C9B04F4D20194C95729 /* Yoga-internal.h in Headers */ = {isa = PBXBuildFile; fileRef = FF96CBA8BB9D8D9B314D33058260968C /* Yoga-internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7CD7443BBEECE3C05041C3788C3D53BD /* RCTSafeAreaViewLocalData.h in Headers */ = {isa = PBXBuildFile; fileRef = A6EC4EA4F64CFAB723AFE96CBB14EC6B /* RCTSafeAreaViewLocalData.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7CFEA0A6052051C538AD0B0F49158099 /* RNFirebaseInstanceId.h in Headers */ = {isa = PBXBuildFile; fileRef = BFE390E12190C0EE02F84C30EC1C7CEE /* RNFirebaseInstanceId.h */; settings = {ATTRIBUTES = (Project, ); }; }; 7D32CB346A8A737EF45F15BB54F57AFD /* rescaler_utils.c in Sources */ = {isa = PBXBuildFile; fileRef = FC7479F169BDFA83A763E71935B39C0A /* rescaler_utils.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 7D34F61EBDBCC529E50187DF3DE0B9C0 /* RCTBackedTextInputDelegateAdapter.m in Sources */ = {isa = PBXBuildFile; fileRef = 3375C1D4BD7DD40F7EF70F8FB2AA0456 /* RCTBackedTextInputDelegateAdapter.m */; }; + 7D34F61EBDBCC529E50187DF3DE0B9C0 /* RCTBackedTextInputDelegateAdapter.m in Sources */ = {isa = PBXBuildFile; fileRef = 35042D1973059E08B00F8A8AD1B01E49 /* RCTBackedTextInputDelegateAdapter.m */; }; 7DAFB46E119763177277EC28363FF378 /* GDTCORClock.m in Sources */ = {isa = PBXBuildFile; fileRef = 0DB662C3FB633BCCF0EFD8EBAEEF8AF1 /* GDTCORClock.m */; }; - 7DB9D917AAE03D151EA0C36E9F807A2F /* SRHash.m in Sources */ = {isa = PBXBuildFile; fileRef = 0367DB380611B790C05380EFBD852273 /* SRHash.m */; }; - 7DD578649537BE668B3C91865D187F5E /* RCTScrollViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 68F688C70F7602F31121EA84CAE8C6D8 /* RCTScrollViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7DFB9A6B11536D73819FAC0A9B8EF121 /* RCTSinglelineTextInputViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 39FCB92FEFA582E1264D20B8974C25D7 /* RCTSinglelineTextInputViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7E28955E3BA8C7436886C59D6805E446 /* SRError.h in Headers */ = {isa = PBXBuildFile; fileRef = 738F518B34C8D629773F9B375F031C50 /* SRError.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7E31C38FDEE307E1E16B520131091AC9 /* RCTScrollContentView.h in Headers */ = {isa = PBXBuildFile; fileRef = D3F5DEDE72F9BC9C91355919B2C12D2D /* RCTScrollContentView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7DD578649537BE668B3C91865D187F5E /* RCTScrollViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = DA6B5D7C25005F26EA1F762DDBBBD31A /* RCTScrollViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7DFB9A6B11536D73819FAC0A9B8EF121 /* RCTSinglelineTextInputViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = B004EA3AE960755FB007C1BCE53D1990 /* RCTSinglelineTextInputViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7E31C38FDEE307E1E16B520131091AC9 /* RCTScrollContentView.h in Headers */ = {isa = PBXBuildFile; fileRef = 69D7CE7BBF3A36EA846D94B45E64B36D /* RCTScrollContentView.h */; settings = {ATTRIBUTES = (Project, ); }; }; 7E6785216D5A27AA388421B8CB226AA1 /* enc_sse2.c in Sources */ = {isa = PBXBuildFile; fileRef = 8D34461A66E3259AB0C1167A107511FE /* enc_sse2.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 7EC69469AE8553EF0FA6933D116F39D0 /* REABezierNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 85108725487F7D2C6B566ECA50133065 /* REABezierNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7F2016911D6079D7131255B0EC732124 /* NSRunLoop+SRWebSocket.m in Sources */ = {isa = PBXBuildFile; fileRef = 67EA32B6DADAEC348B9E350D1AEC56DB /* NSRunLoop+SRWebSocket.m */; }; - 7F56283D730304B0D4ED83995BEC332A /* JSIExecutor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9303FD85EB1EBA0967A32B10A01B367F /* JSIExecutor.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 7F5B8AD4B5BDB6069DFFF93AE08F5A20 /* RCTBundleURLProvider.h in Headers */ = {isa = PBXBuildFile; fileRef = 2720FB96DDE513B6CD1FCA3998287D7D /* RCTBundleURLProvider.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7F7EB20C894667526294CC1DDC90976E /* UMExportedModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 55BD986FFD96FCA3F5000FFA58A44308 /* UMExportedModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7F88BA2A6186CE14A4677F1250E893A4 /* RCTCxxModule.mm in Sources */ = {isa = PBXBuildFile; fileRef = 44C31CCF14610D613D6C140A14825BD7 /* RCTCxxModule.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 7EC69469AE8553EF0FA6933D116F39D0 /* REABezierNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 8DCCFAF216AFB433D6EA67CD07AD4B0E /* REABezierNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7F56283D730304B0D4ED83995BEC332A /* JSIExecutor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A9700FE4C6CAAC5DF7823791B7A9F6B8 /* JSIExecutor.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 7F5B8AD4B5BDB6069DFFF93AE08F5A20 /* RCTBundleURLProvider.h in Headers */ = {isa = PBXBuildFile; fileRef = 4A599197657455ED85D0F51A50C1CCD9 /* RCTBundleURLProvider.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7F7EB20C894667526294CC1DDC90976E /* UMExportedModule.h in Headers */ = {isa = PBXBuildFile; fileRef = E02B1FED0E1B7D7D17596A0D4A83D336 /* UMExportedModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7F88BA2A6186CE14A4677F1250E893A4 /* RCTCxxModule.mm in Sources */ = {isa = PBXBuildFile; fileRef = 716421CC6BDFD365A8FA8541CF195B56 /* RCTCxxModule.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; 7F9C8E377A693E9134461700B17A972C /* FIRInstallationsStoredAuthToken.h in Headers */ = {isa = PBXBuildFile; fileRef = C4FFE67DC13EEC2EBC31ADD1DEBB2A2A /* FIRInstallationsStoredAuthToken.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7FAA5C3803BDBCD88781D22DA9A5F090 /* RCTDevMenu.h in Headers */ = {isa = PBXBuildFile; fileRef = 7188C8580CBA0C711AA79464E037CB04 /* RCTDevMenu.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7FAA5C3803BDBCD88781D22DA9A5F090 /* RCTDevMenu.h in Headers */ = {isa = PBXBuildFile; fileRef = E7DBF398C76B30F22B61FAA334435515 /* RCTDevMenu.h */; settings = {ATTRIBUTES = (Project, ); }; }; 7FDA653125CBE9C51664C67E7676A423 /* NSBezierPath+RoundedCorners.m in Sources */ = {isa = PBXBuildFile; fileRef = 3762F4EB37B62BDA42A52139A2CE184A /* NSBezierPath+RoundedCorners.m */; }; - 7FE86235E6DD6F9548921779D4ECCC36 /* TurboModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 067B0383F3335B0CC6705EF1ED57726D /* TurboModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7FFF609490B27A267918214D660FB9DE /* BSG_KSCrashSentry_Signal.h in Headers */ = {isa = PBXBuildFile; fileRef = F9AD7000918BAE9322E40B187BECD7A0 /* BSG_KSCrashSentry_Signal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 803C92ABB453A18968C860278D28CF34 /* RCTBridgeMethod.h in Headers */ = {isa = PBXBuildFile; fileRef = 57D4207BB861E02AAF2D49C30A6E9E64 /* RCTBridgeMethod.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7FE86235E6DD6F9548921779D4ECCC36 /* TurboModule.h in Headers */ = {isa = PBXBuildFile; fileRef = B255948DF124DF951901703DCC532B92 /* TurboModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7FFF609490B27A267918214D660FB9DE /* BSG_KSCrashSentry_Signal.h in Headers */ = {isa = PBXBuildFile; fileRef = A7AC34E2D1E64073AECAF87885D71208 /* BSG_KSCrashSentry_Signal.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 803C92ABB453A18968C860278D28CF34 /* RCTBridgeMethod.h in Headers */ = {isa = PBXBuildFile; fileRef = EB0ADCF205E8106C473BD1A769D3ACC9 /* RCTBridgeMethod.h */; settings = {ATTRIBUTES = (Project, ); }; }; 803DEFC2CCE0AB3F23FEB7BE2E87EBE2 /* FBLPromise+Timeout.m in Sources */ = {isa = PBXBuildFile; fileRef = 5B3A6A7C3F776BAF61AC51C5A02FBFA0 /* FBLPromise+Timeout.m */; }; 809388545866799ABD28AA5A1D27F9E5 /* UIImage+GIF.h in Headers */ = {isa = PBXBuildFile; fileRef = 54FDDD0372DB70DE5506C1BE95A23BE4 /* UIImage+GIF.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 80AC448F56E4A0894BB9D80A198C040A /* BSGConnectivity.m in Sources */ = {isa = PBXBuildFile; fileRef = CBEF956B84FE37854F9C187616AB1868 /* BSGConnectivity.m */; }; + 80AC448F56E4A0894BB9D80A198C040A /* BSGConnectivity.m in Sources */ = {isa = PBXBuildFile; fileRef = C0AA4E342B4DA2D89F6115831A3AEA8D /* BSGConnectivity.m */; }; 80C026B0E39AC1F1703DF72A313A900B /* cost_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = 45C98A4D849F92BF74F62E180ABEA4E5 /* cost_enc.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; 80F8AC2C5A3783FCA7E33066B501CDB4 /* FIRInstallationsStoredAuthToken.m in Sources */ = {isa = PBXBuildFile; fileRef = 9FE7CAD15D46DC8EB22E034ACFB28888 /* FIRInstallationsStoredAuthToken.m */; }; - 811214DDC1A8BD246F50C79F6E9DBBA9 /* READebugNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 538B91047017AB8B2ECBAA02464A7615 /* READebugNode.m */; }; + 811214DDC1A8BD246F50C79F6E9DBBA9 /* READebugNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 09BA6D193F473056C9FF724BDC8D2155 /* READebugNode.m */; }; 8145C77FDDC575D33B405FF7F421A215 /* lossless_enc_neon.c in Sources */ = {isa = PBXBuildFile; fileRef = 32E8D2B7930D83212864A4ACCE2292BC /* lossless_enc_neon.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 81B79CD8BFF35C210CEA0DE3E706643F /* RCTFont.mm in Sources */ = {isa = PBXBuildFile; fileRef = 9AF4A45F8B7BBB13BDF8B609AFF309DC /* RCTFont.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 81C9A77CF5BD40BF99B2953E95A037A0 /* BSG_KSLogger.h in Headers */ = {isa = PBXBuildFile; fileRef = D0018E5273E1F3A9E33A2A60A4A239E0 /* BSG_KSLogger.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 81CE3889FF186CCB32CA2BE60F122F65 /* RCTCustomInputController.m in Sources */ = {isa = PBXBuildFile; fileRef = E613147571B9035D477DC6277D0417C6 /* RCTCustomInputController.m */; }; + 81B79CD8BFF35C210CEA0DE3E706643F /* RCTFont.mm in Sources */ = {isa = PBXBuildFile; fileRef = 3842FCE8B9E849B27CCA1FDAD4511762 /* RCTFont.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 81C9A77CF5BD40BF99B2953E95A037A0 /* BSG_KSLogger.h in Headers */ = {isa = PBXBuildFile; fileRef = 969E94DB080007C79EE1C6770135A2D5 /* BSG_KSLogger.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 81CE3889FF186CCB32CA2BE60F122F65 /* RCTCustomInputController.m in Sources */ = {isa = PBXBuildFile; fileRef = B1B06373B19E6718FE5623A38632E961 /* RCTCustomInputController.m */; }; 81D4F16B20CB72219D872D8ABFB068F7 /* UIView+WebCache.h in Headers */ = {isa = PBXBuildFile; fileRef = 5FA7BEFCEE456CEE557E176D2373B2AE /* UIView+WebCache.h */; settings = {ATTRIBUTES = (Project, ); }; }; 81FC60A335BDB739D75D24ED623A8264 /* enc.c in Sources */ = {isa = PBXBuildFile; fileRef = 327D614BA3B1F0B08F1632FD256AEA36 /* enc.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; 8208754E5259F6F76445FDE11F5E84F0 /* SpookyHashV2.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2281519202E71413AA842990FD9E7D77 /* SpookyHashV2.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 8209D9C90CD67454D69539C35A13667A /* RCTAnimatedNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 2710EF5312E3F10E41CCD8EEEB263BD5 /* RCTAnimatedNode.m */; }; - 8210666640C5B1AF7DAB2FBA2292A1D1 /* ReactNativeShareExtension.m in Sources */ = {isa = PBXBuildFile; fileRef = DC4D661EDA49D5AAE00EBD5945C9B927 /* ReactNativeShareExtension.m */; }; - 821ABF75DF759E8CB4B34AE575C39D2D /* EXSystemBrightnessRequester.m in Sources */ = {isa = PBXBuildFile; fileRef = DD4DBFF660B53870D6B05416FCA03E68 /* EXSystemBrightnessRequester.m */; }; + 8209D9C90CD67454D69539C35A13667A /* RCTAnimatedNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 7413A1DC52576787DEA98E670555F79C /* RCTAnimatedNode.m */; }; + 8210666640C5B1AF7DAB2FBA2292A1D1 /* ReactNativeShareExtension.m in Sources */ = {isa = PBXBuildFile; fileRef = F965AA1FCBC69910B283F71994FA5C7B /* ReactNativeShareExtension.m */; }; + 821ABF75DF759E8CB4B34AE575C39D2D /* EXSystemBrightnessRequester.m in Sources */ = {isa = PBXBuildFile; fileRef = 257676ADB5897AE32839135C7C41BBB6 /* EXSystemBrightnessRequester.m */; }; 8234B7822CF1CA1C3DF395FCE35C9178 /* SDImageGraphics.h in Headers */ = {isa = PBXBuildFile; fileRef = 66BB28169F8562B9DE334B74B5B456EB /* SDImageGraphics.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8235F479BC5ACA11857EEAAF249DB6B7 /* QBAlbumsViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = 43C033E58EE44D5D9C8CE9E7006C2354 /* QBAlbumsViewController.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 824F04AB3E4D8A8DF4B28E8A3F4E6A28 /* RCTLayoutAnimationGroup.h in Headers */ = {isa = PBXBuildFile; fileRef = 7A5D6A5AB38FAF86E652DF4E0E7D838C /* RCTLayoutAnimationGroup.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8235F479BC5ACA11857EEAAF249DB6B7 /* QBAlbumsViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = 86586632FE78B03656CD3C5B2AE0AD79 /* QBAlbumsViewController.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 824F04AB3E4D8A8DF4B28E8A3F4E6A28 /* RCTLayoutAnimationGroup.h in Headers */ = {isa = PBXBuildFile; fileRef = 1C34B0DD834FA9E42460088D3ED6C63F /* RCTLayoutAnimationGroup.h */; settings = {ATTRIBUTES = (Project, ); }; }; 8264F64F4D30DEAEA786C1196C93A765 /* FBLPromise+Race.m in Sources */ = {isa = PBXBuildFile; fileRef = 6B3DCE3E62D468D58DE3FECB07CFAB5C /* FBLPromise+Race.m */; }; - 8281C89E4A30505E37E1331748D62073 /* REANodesManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 1227A2435239622BC767BD3D73E2FB17 /* REANodesManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 829DD372488FC133D2BFEC4D238098D3 /* RNFirebaseStorage.h in Headers */ = {isa = PBXBuildFile; fileRef = 4BBD9AC825086AB43BFF1C5CE068DEBE /* RNFirebaseStorage.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 82B62F8035E6080C72B9E40F6CAD3DC8 /* RCTRootContentView.m in Sources */ = {isa = PBXBuildFile; fileRef = 9F9747D57C6D15CD10C373F1E196CDB5 /* RCTRootContentView.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 82BA825CBA44E0261A4B02BB37342B26 /* RCTAutoInsetsProtocol.h in Headers */ = {isa = PBXBuildFile; fileRef = 78275978BD2BABAC8C587CE4FAB3E31E /* RCTAutoInsetsProtocol.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 82BE17CA11C38578EE02F5D438CA1EFB /* EXFileSystemAssetLibraryHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = 24BC7983C5C77662F1B1E1ECB47E0261 /* EXFileSystemAssetLibraryHandler.m */; }; - 82CE7BC7B2F924C47EE8EAE39BFF7661 /* RCTFrameAnimation.h in Headers */ = {isa = PBXBuildFile; fileRef = 91C2AEA3D7AFD819EF2FA9B5574EE650 /* RCTFrameAnimation.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 82D5E70C909B1BAAFED667876F1FE586 /* RCTNullability.h in Headers */ = {isa = PBXBuildFile; fileRef = 6BCA70E3C7BD3F877DC1FDC829C001A9 /* RCTNullability.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8281C89E4A30505E37E1331748D62073 /* REANodesManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 93CB41803BC8440C606EA147578CDE99 /* REANodesManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 829DD372488FC133D2BFEC4D238098D3 /* RNFirebaseStorage.h in Headers */ = {isa = PBXBuildFile; fileRef = 40E3681DBC555561CFF42E610625877C /* RNFirebaseStorage.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 82B62F8035E6080C72B9E40F6CAD3DC8 /* RCTRootContentView.m in Sources */ = {isa = PBXBuildFile; fileRef = 1F7DE5683334A228B233CAFFB8F6DAA3 /* RCTRootContentView.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 82BA825CBA44E0261A4B02BB37342B26 /* RCTAutoInsetsProtocol.h in Headers */ = {isa = PBXBuildFile; fileRef = 10CED3B8AA15352A41DDFB70B55B2A8D /* RCTAutoInsetsProtocol.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 82BE17CA11C38578EE02F5D438CA1EFB /* EXFileSystemAssetLibraryHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = 0F1D5ED9C4FD4D89EA62D27A4E52FE63 /* EXFileSystemAssetLibraryHandler.m */; }; + 82CE7BC7B2F924C47EE8EAE39BFF7661 /* RCTFrameAnimation.h in Headers */ = {isa = PBXBuildFile; fileRef = A4044FF471A1F855621DA4EDC7FD0871 /* RCTFrameAnimation.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 82D5E70C909B1BAAFED667876F1FE586 /* RCTNullability.h in Headers */ = {isa = PBXBuildFile; fileRef = B61495BCC248BD822D7A6FBD0220D04E /* RCTNullability.h */; settings = {ATTRIBUTES = (Project, ); }; }; 82E00AB632629A007250F0155CA70AF1 /* FIROptionsInternal.h in Headers */ = {isa = PBXBuildFile; fileRef = 5A16CE135CC71ACDAB57AB9C085A4213 /* FIROptionsInternal.h */; settings = {ATTRIBUTES = (Project, ); }; }; 82FAD75153594152D13166FA9C918B07 /* utils.h in Headers */ = {isa = PBXBuildFile; fileRef = 6E2CDB4C30DCF3C644EBFB1CB6F8B63C /* utils.h */; settings = {ATTRIBUTES = (Project, ); }; }; 83390A67A2F49D02357DF39160B3C87C /* GDTCCTCompressionHelper.m in Sources */ = {isa = PBXBuildFile; fileRef = 636D6783185DE1F442D58AEE9C52B4B1 /* GDTCCTCompressionHelper.m */; }; - 834FB89D7DB61483288C20507F8369EC /* BSG_KSSignalInfo.h in Headers */ = {isa = PBXBuildFile; fileRef = D44B0D95BDFB4FC2B12FF156D34873B6 /* BSG_KSSignalInfo.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 834FB89D7DB61483288C20507F8369EC /* BSG_KSSignalInfo.h in Headers */ = {isa = PBXBuildFile; fileRef = D6D1FF00459282BB2FDCD94695E9A5C9 /* BSG_KSSignalInfo.h */; settings = {ATTRIBUTES = (Project, ); }; }; 8355F5AC1AF62C88E8E0CC029ED7862C /* color_cache_utils.c in Sources */ = {isa = PBXBuildFile; fileRef = F4EB52F7237332185617C32F718E1270 /* color_cache_utils.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; 8383FA5D12B0C3167407B96F2013E9FE /* FIRInstanceIDBackupExcludedPlist.m in Sources */ = {isa = PBXBuildFile; fileRef = 60BC27AD9ED5029E588DEDFB282BC600 /* FIRInstanceIDBackupExcludedPlist.m */; }; - 838538291E1FB1EEBAAF1AB24E0F62D8 /* SharedProxyCxxModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 0D83EE0D42AEC98C55DE1BC5A74A8EB0 /* SharedProxyCxxModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 838CC0185F3DD5230F96B08E6ABA7014 /* RCTImageEditingManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 33E4CF797C3A48C4F95A43DA7FC4763D /* RCTImageEditingManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 838538291E1FB1EEBAAF1AB24E0F62D8 /* SharedProxyCxxModule.h in Headers */ = {isa = PBXBuildFile; fileRef = CEBE1AEEEAA3894D097740711D92330E /* SharedProxyCxxModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 838CC0185F3DD5230F96B08E6ABA7014 /* RCTImageEditingManager.h in Headers */ = {isa = PBXBuildFile; fileRef = CB3C9975CEC93E9055107C94EC3B42A7 /* RCTImageEditingManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; 83943BFAC59E2196EC1FF4D2E942776B /* String.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 5F1C5F873FB22C5A73E967F1C3900F05 /* String.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 83E61F2DC9A2A7B3C3BDC4B7BD146D98 /* RCTBundleURLProvider.m in Sources */ = {isa = PBXBuildFile; fileRef = 5A980A6EEE137896F876DCE1BFFCE89E /* RCTBundleURLProvider.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 83E61F2DC9A2A7B3C3BDC4B7BD146D98 /* RCTBundleURLProvider.m in Sources */ = {isa = PBXBuildFile; fileRef = 18D93B967DFA8851D29B5EFC28A9635A /* RCTBundleURLProvider.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; 842E582DBF635E475E114381AD4F9C93 /* FBLPromise+Async.h in Headers */ = {isa = PBXBuildFile; fileRef = 1731BEB8C2C3368DB5FDF5403C2F7DF3 /* FBLPromise+Async.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 84A553EC280593F64BE95B0978CB4AD8 /* RCTAsyncLocalStorage.h in Headers */ = {isa = PBXBuildFile; fileRef = 355046293781F1CAE32BB1C4CE8258DE /* RCTAsyncLocalStorage.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 84A5949021E42ADE6DA26A4E789E1A92 /* TurboModuleUtils.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A45C1A483A3BDBD66E508CC63B3FA1C6 /* TurboModuleUtils.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 84B1D5DC6C672026999BB7199AFDB7D4 /* REATransitionAnimation.h in Headers */ = {isa = PBXBuildFile; fileRef = 25E99870CA1226A989378F2CCE057DC8 /* REATransitionAnimation.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 84C406170B2DBB5D07916C0193135586 /* React-jsiexecutor-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = AA732ACDD7AB0D8171B8342B02E96613 /* React-jsiexecutor-dummy.m */; }; - 84E7F77F0C30475ECEB2449E4B161FA8 /* BSG_KSCrash.m in Sources */ = {isa = PBXBuildFile; fileRef = 0A4AE1571D783FDB388F937262F77CB3 /* BSG_KSCrash.m */; }; - 84F1BBA3EBA06ED9A2C1D66F97096B5F /* BSG_KSMach_Arm.c in Sources */ = {isa = PBXBuildFile; fileRef = F2F6F9CE92EF8885DF428F406A04E015 /* BSG_KSMach_Arm.c */; }; - 8503458483F715D8BAB55F6F6A9D05D2 /* log.h in Headers */ = {isa = PBXBuildFile; fileRef = A337EC126CBDE81BFB5B1489BD2C0646 /* log.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 85233251D8E6162F3BC0BBE816ACA76D /* EXCameraPermissionRequester.h in Headers */ = {isa = PBXBuildFile; fileRef = 8E693E5E6C4F6ED9A549E0D590C611C0 /* EXCameraPermissionRequester.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8528C33E5F8EF3D65FBA1C32A723CD15 /* RCTPickerManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 284296C3D41B4831607BAE923581DF35 /* RCTPickerManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 852A8ED13AE3501F4B2C7DC7F2136F1F /* React-RCTText-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 6798DBC55D7C95271E0674633811C427 /* React-RCTText-dummy.m */; }; - 85455233A524A6D36F12FB9D3A3E6129 /* RNFirebaseDatabase.m in Sources */ = {isa = PBXBuildFile; fileRef = 99A3A6F2044FAC845D8EB90E53977206 /* RNFirebaseDatabase.m */; }; + 84A553EC280593F64BE95B0978CB4AD8 /* RCTAsyncLocalStorage.h in Headers */ = {isa = PBXBuildFile; fileRef = A333C1FD0CBA0F0ACBC0EE1853F50D2E /* RCTAsyncLocalStorage.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 84A5949021E42ADE6DA26A4E789E1A92 /* TurboModuleUtils.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 394C59DEA4E90E10EA55F0EC97A723FD /* TurboModuleUtils.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 84B1D5DC6C672026999BB7199AFDB7D4 /* REATransitionAnimation.h in Headers */ = {isa = PBXBuildFile; fileRef = 7608F2915FB57D2BB6CBBFF2BBBF2BD2 /* REATransitionAnimation.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 84C406170B2DBB5D07916C0193135586 /* React-jsiexecutor-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 585CF1C45B8DDF6F28ABF8416F7794ED /* React-jsiexecutor-dummy.m */; }; + 84E7F77F0C30475ECEB2449E4B161FA8 /* BSG_KSCrash.m in Sources */ = {isa = PBXBuildFile; fileRef = 2B98A8F9F7623B90F4B72BAF5548029A /* BSG_KSCrash.m */; }; + 84F1BBA3EBA06ED9A2C1D66F97096B5F /* BSG_KSMach_Arm.c in Sources */ = {isa = PBXBuildFile; fileRef = 158F562EBC638DDC814F6070A24423D7 /* BSG_KSMach_Arm.c */; }; + 8503458483F715D8BAB55F6F6A9D05D2 /* log.h in Headers */ = {isa = PBXBuildFile; fileRef = 37BB7DDC3451BEFC99E1D9F94D744450 /* log.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 85233251D8E6162F3BC0BBE816ACA76D /* EXCameraPermissionRequester.h in Headers */ = {isa = PBXBuildFile; fileRef = 1C2FFBE00DE465C5BCA8C592BEFFBBFD /* EXCameraPermissionRequester.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8528C33E5F8EF3D65FBA1C32A723CD15 /* RCTPickerManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 566F8E26BE02F41DFA100FB1E0186FE9 /* RCTPickerManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 852A8ED13AE3501F4B2C7DC7F2136F1F /* React-RCTText-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 7CB85B01F73553314133E64ACC15CF01 /* React-RCTText-dummy.m */; }; + 85455233A524A6D36F12FB9D3A3E6129 /* RNFirebaseDatabase.m in Sources */ = {isa = PBXBuildFile; fileRef = 6B4CD3C1301C2BB0C3EA2456667D0CCF /* RNFirebaseDatabase.m */; }; 8547302CC4693C69F676D0FAF738DF38 /* cost_enc.h in Headers */ = {isa = PBXBuildFile; fileRef = 89C6619CB1C1D1AE75ECCE9C2E6A35A5 /* cost_enc.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 85638C2F8D35FF711544888B12B5E6D2 /* REABlockNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 542AC4AC28EAE758F45556B15C2CC63C /* REABlockNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 856CE7992389E734209C1F57A30ECF95 /* RCTMultilineTextInputView.m in Sources */ = {isa = PBXBuildFile; fileRef = E784B19297EB6761608ABFBEE69FE8D2 /* RCTMultilineTextInputView.m */; }; - 8578BAA29528CC82DAB4676CFD9E8EE2 /* RCTComponent.h in Headers */ = {isa = PBXBuildFile; fileRef = F096D09F19E86E6A0EE21999B3DE82C6 /* RCTComponent.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 85638C2F8D35FF711544888B12B5E6D2 /* REABlockNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 0503ED22B6C0FF8DE4927EEE03963BFC /* REABlockNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 856CE7992389E734209C1F57A30ECF95 /* RCTMultilineTextInputView.m in Sources */ = {isa = PBXBuildFile; fileRef = 79485D2A427D73525846B5A7223C5550 /* RCTMultilineTextInputView.m */; }; + 8578BAA29528CC82DAB4676CFD9E8EE2 /* RCTComponent.h in Headers */ = {isa = PBXBuildFile; fileRef = 254EB2013274F93DE25330B892490A4D /* RCTComponent.h */; settings = {ATTRIBUTES = (Project, ); }; }; 857CFD7317D23D33D462842423F50303 /* GDTFLLPrioritizer.h in Headers */ = {isa = PBXBuildFile; fileRef = 33446CC862D2173DA53D5E95665C24A8 /* GDTFLLPrioritizer.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8580667BEB1A20D2D2CA8B3E6C957324 /* BSG_KSCrashType.c in Sources */ = {isa = PBXBuildFile; fileRef = 737D44EB3F6D1D1D886B07AB172805FF /* BSG_KSCrashType.c */; }; + 8580667BEB1A20D2D2CA8B3E6C957324 /* BSG_KSCrashType.c in Sources */ = {isa = PBXBuildFile; fileRef = 5E350B5C123863569EC380ABC2DF1A1B /* BSG_KSCrashType.c */; }; 858DF05CB9907C3E2A68BB29C4D60873 /* FIRInstallationsStore.m in Sources */ = {isa = PBXBuildFile; fileRef = EE1AB32C49A2A285235B4FDC69A39BAC /* FIRInstallationsStore.m */; }; - 85D7A7E1BABE0615BCBD1D86BA242DFD /* RCTErrorInfo.h in Headers */ = {isa = PBXBuildFile; fileRef = 3BE921D7BECDF796EFC4AD40C6D8797A /* RCTErrorInfo.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 85EFF53BC2FAF2E9722CA6796A5C33D4 /* ARTSurfaceViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 07DE8A314E976D752E59F46B935D6F02 /* ARTSurfaceViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 85FDCD87A5A459571369B5DD771AD69E /* Pods-ShareRocketChatRN-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 20EB67591180BD14936DAED287A3BFF0 /* Pods-ShareRocketChatRN-dummy.m */; }; - 8624B3ACF76FA5C228BCE097FEC2BC8C /* RCTModalManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 423F8EF8FFDCF87B4F6AD491C47B7CE8 /* RCTModalManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 868C9EF47A976D5341C869EF6E4036FE /* BSG_KSCrashC.h in Headers */ = {isa = PBXBuildFile; fileRef = 8ACDBE0C58D48D310185794A7355AF4A /* BSG_KSCrashC.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 85D7A7E1BABE0615BCBD1D86BA242DFD /* RCTErrorInfo.h in Headers */ = {isa = PBXBuildFile; fileRef = C2CA730EEB88F4CC4D52ADB2B5A521C2 /* RCTErrorInfo.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 85EFF53BC2FAF2E9722CA6796A5C33D4 /* ARTSurfaceViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = C1A2899F88ABFCAF79F364273E41EE6D /* ARTSurfaceViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8624B3ACF76FA5C228BCE097FEC2BC8C /* RCTModalManager.h in Headers */ = {isa = PBXBuildFile; fileRef = D190D2321000F2D1EEE359D96EAA6622 /* RCTModalManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 868C9EF47A976D5341C869EF6E4036FE /* BSG_KSCrashC.h in Headers */ = {isa = PBXBuildFile; fileRef = 5ADC01D0B2DF21C8E2B7C9AF31CEA266 /* BSG_KSCrashC.h */; settings = {ATTRIBUTES = (Project, ); }; }; 8691A04446317D7D3C7D3DC58CFEDF5D /* FIRInstanceIDConstants.h in Headers */ = {isa = PBXBuildFile; fileRef = AC3787BF1E614D7EEDF5E1142F012247 /* FIRInstanceIDConstants.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8693629097C6317357D73FBBC11B68DB /* EXUserNotificationRequester.h in Headers */ = {isa = PBXBuildFile; fileRef = 39A6C2D16B6CA118EADEF15BE4AAFF5A /* EXUserNotificationRequester.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 869D6314267C36E72B3921B72B2CD745 /* UMReactLogHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 697F784E78B71245476692F3D390DF5C /* UMReactLogHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 86BE3168916AEF95FCF9CE5C987EB83B /* BugsnagCrashReport.h in Headers */ = {isa = PBXBuildFile; fileRef = BE3F533C440D355C04FB146D5389C644 /* BugsnagCrashReport.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8693629097C6317357D73FBBC11B68DB /* EXUserNotificationRequester.h in Headers */ = {isa = PBXBuildFile; fileRef = 4BA90E75647A49B33D1E4960B5BFEF80 /* EXUserNotificationRequester.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 869D6314267C36E72B3921B72B2CD745 /* UMReactLogHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = C345CBAC3B5E7DB8AFC906BBDAC2CBF0 /* UMReactLogHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 86BE3168916AEF95FCF9CE5C987EB83B /* BugsnagCrashReport.h in Headers */ = {isa = PBXBuildFile; fileRef = C195B26A91001B997F2E0007A9E2C599 /* BugsnagCrashReport.h */; settings = {ATTRIBUTES = (Project, ); }; }; 86C94F87667167DD05AB086C62038113 /* SDWebImagePrefetcher.m in Sources */ = {isa = PBXBuildFile; fileRef = F7181E6712382186FEFE1FAEE124DC30 /* SDWebImagePrefetcher.m */; }; 86F28EFD2EDCDEEA0133995833BC4BA4 /* GDTCORTransformer_Private.h in Headers */ = {isa = PBXBuildFile; fileRef = AA42C4E98C13EF33E441FE62148783CB /* GDTCORTransformer_Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; 8709E4EE5B3FD0A526072D5F1C141722 /* FBLPromises.h in Headers */ = {isa = PBXBuildFile; fileRef = F581E835D4B745A1D287B2D9FAFABD0D /* FBLPromises.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 875DE806BC05CD6FBB5171B3684B1F2B /* QBImagePicker.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = EE0C2B09F7F6B4B6DC98A4B999EB1057 /* QBImagePicker.storyboard */; }; - 87768AD792BACA0E657CEA3829636F66 /* RNFirebaseFunctions.m in Sources */ = {isa = PBXBuildFile; fileRef = 61151BC066897B3D19D888712807F0AF /* RNFirebaseFunctions.m */; }; + 875DE806BC05CD6FBB5171B3684B1F2B /* QBImagePicker.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 6DD940FCA0BB42B3DA944B21DCFB0B6E /* QBImagePicker.storyboard */; }; + 87768AD792BACA0E657CEA3829636F66 /* RNFirebaseFunctions.m in Sources */ = {isa = PBXBuildFile; fileRef = 3F11A95E82F274CF19A53C219FF61170 /* RNFirebaseFunctions.m */; }; 8793DB9D4BC902335BFA665F3784AD8D /* GDTCORStorage.h in Headers */ = {isa = PBXBuildFile; fileRef = 1D6EDA25FA893D1DF91AAEA53BA75B9D /* GDTCORStorage.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8798A8DBCF62D49ED95C6D34C83B126A /* RCTTransformAnimatedNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 3C32DE0B3B6C459E1AD9C72200BAB56C /* RCTTransformAnimatedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8798A8DBCF62D49ED95C6D34C83B126A /* RCTTransformAnimatedNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 01F3DCCBAF4F375B15B6C53ED8AFED57 /* RCTTransformAnimatedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; 8799A7E7AF7D5000F6488DC84D14E692 /* rescaler_neon.c in Sources */ = {isa = PBXBuildFile; fileRef = CBD554C9D80E29A82E56D1B7897C0E38 /* rescaler_neon.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 87BFC3AD290F6A964063BEC334D53262 /* RNNotificationsStore.m in Sources */ = {isa = PBXBuildFile; fileRef = FA696B34750404CFD6B19919C435E8BE /* RNNotificationsStore.m */; }; - 87CB66C902F11F7A98F8495131A29A63 /* RNSScreenStackHeaderConfig.m in Sources */ = {isa = PBXBuildFile; fileRef = F45409DE9A47A23DF8D5B05A0A9E2EE4 /* RNSScreenStackHeaderConfig.m */; }; + 87BFC3AD290F6A964063BEC334D53262 /* RNNotificationsStore.m in Sources */ = {isa = PBXBuildFile; fileRef = E461259880A7705262D6C4D90956BC2A /* RNNotificationsStore.m */; }; + 87CB66C902F11F7A98F8495131A29A63 /* RNSScreenStackHeaderConfig.m in Sources */ = {isa = PBXBuildFile; fileRef = D60525102E9CF955CCD58FC6757EFB28 /* RNSScreenStackHeaderConfig.m */; }; 87CF39BC0CCA51CAB58590CF9A9B8FA4 /* GULReachabilityChecker+Internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 4D352643E8BC0C05FAD0BB5404F73E27 /* GULReachabilityChecker+Internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 87D1C8D0E94309AE54E7909240E8B83A /* FFFastImageViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 9946A4BF5077CF64BDD518BCDA8F4ECF /* FFFastImageViewManager.m */; }; - 87E4061EC6086456381F928D935EE7B6 /* RCTUIUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = 3028E0F70A65168FC0D8B1285013F788 /* RCTUIUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 87D1C8D0E94309AE54E7909240E8B83A /* FFFastImageViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 5550B29A3A12B046C327D297BD817790 /* FFFastImageViewManager.m */; }; + 87E4061EC6086456381F928D935EE7B6 /* RCTUIUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = 652BE57AEB7940AE99C9158D45AC829B /* RCTUIUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; 87ECC4C043286D06A575B38448A0A66F /* UIApplication+RSKImageCropper.m in Sources */ = {isa = PBXBuildFile; fileRef = D996FB83753842B15AAE13001FED927E /* UIApplication+RSKImageCropper.m */; }; - 87FD74168A6EB497B23A90B90518A5CF /* EXPermissions.m in Sources */ = {isa = PBXBuildFile; fileRef = 910A105704845EF8D5DEC36EF7122E57 /* EXPermissions.m */; }; + 87FD74168A6EB497B23A90B90518A5CF /* EXPermissions.m in Sources */ = {isa = PBXBuildFile; fileRef = DAC42D6378B4A8DA99C8441218A0E640 /* EXPermissions.m */; }; 8809B9F0FAFDCD89CF323E1489AA3660 /* RSKImageCropper.h in Headers */ = {isa = PBXBuildFile; fileRef = 106194880B0291DBB2CB25096A7764E5 /* RSKImageCropper.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 886ACD34E706C9B3CAA14BA718B15F71 /* RCTImageStoreManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 2AD60FADFD97120FCFC1ABE6D30645F3 /* RCTImageStoreManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 886B4ABA16F159910D856C8690852078 /* REANode.h in Headers */ = {isa = PBXBuildFile; fileRef = A6A2E7C068812D9EB15ED0E55FEEE7E4 /* REANode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 886EFC385AB165A47AC13C719BCFDA96 /* QBImagePickerController.h in Headers */ = {isa = PBXBuildFile; fileRef = 0178F3CC133D66F2F71B9D64FF0082E1 /* QBImagePickerController.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 888F4BB161122EEB45F0144A3B099A55 /* RCTSurfaceView+Internal.h in Headers */ = {isa = PBXBuildFile; fileRef = B7E0EC156A08C666D058F17A8F3E7679 /* RCTSurfaceView+Internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 88902F9738770E60153CDC8566F6D068 /* EXAudioSessionManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 684C8059776AB8F2E7E35EE179FB8EA7 /* EXAudioSessionManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 886ACD34E706C9B3CAA14BA718B15F71 /* RCTImageStoreManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 693AC29F8B9544E88334BAA75FB2C9D2 /* RCTImageStoreManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 886B4ABA16F159910D856C8690852078 /* REANode.h in Headers */ = {isa = PBXBuildFile; fileRef = A660BC06C3C42712042ED0388286DE7B /* REANode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 886EFC385AB165A47AC13C719BCFDA96 /* QBImagePickerController.h in Headers */ = {isa = PBXBuildFile; fileRef = 277B945E2FB601EA03F50A2E8436C115 /* QBImagePickerController.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 888F4BB161122EEB45F0144A3B099A55 /* RCTSurfaceView+Internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 98B81BC7A3053A89F53945DECFB56375 /* RCTSurfaceView+Internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 88902F9738770E60153CDC8566F6D068 /* EXAudioSessionManager.h in Headers */ = {isa = PBXBuildFile; fileRef = C99CAF6908373D2AA383AFD70081BEEE /* EXAudioSessionManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; 88A7546CD0CC5EF28061417BEF92362D /* filter_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = EA3786891CC282557AB2EF14638CDE2D /* filter_enc.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; 88E2D72A67C9FE9C1F481C71F68EEEF8 /* SDWebImageOperation.h in Headers */ = {isa = PBXBuildFile; fileRef = 0BB0025F1EC6EF96CB0113EBC33D3711 /* SDWebImageOperation.h */; settings = {ATTRIBUTES = (Project, ); }; }; 88FAD4E57380E26AC7F03BEAD2EAEF88 /* FIRInstallationsAPIService.h in Headers */ = {isa = PBXBuildFile; fileRef = A0EA3217B857F6515E5C3725E793D70A /* FIRInstallationsAPIService.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 88FFE10394F13353806F5AC527ABD0EB /* RCTPlatform.mm in Sources */ = {isa = PBXBuildFile; fileRef = 45F9B89B69155B9338A5184745240C16 /* RCTPlatform.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; - 890192B34648332B6C6C09A75D978B0B /* UMViewManagerAdapter.m in Sources */ = {isa = PBXBuildFile; fileRef = 09D030101CDE9E6A70BBF7B7CF9C0D54 /* UMViewManagerAdapter.m */; }; + 88FFE10394F13353806F5AC527ABD0EB /* RCTPlatform.mm in Sources */ = {isa = PBXBuildFile; fileRef = 200BFF93E03089A04D00BDE1CF43492D /* RCTPlatform.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + 890192B34648332B6C6C09A75D978B0B /* UMViewManagerAdapter.m in Sources */ = {isa = PBXBuildFile; fileRef = C5212E4A5F592D1AC2FE95732DE152F1 /* UMViewManagerAdapter.m */; }; 890F9DF78C90743B0CE5E2CC7E7AC4E6 /* FIRInstallationsSingleOperationPromiseCache.h in Headers */ = {isa = PBXBuildFile; fileRef = 6129D17144193C727D68FFB158130674 /* FIRInstallationsSingleOperationPromiseCache.h */; settings = {ATTRIBUTES = (Project, ); }; }; 891E992D9EB633B92E3DF27F9B310C23 /* common_dec.h in Headers */ = {isa = PBXBuildFile; fileRef = 72F2F55C8488AA7450E778BF58AD47EB /* common_dec.h */; settings = {ATTRIBUTES = (Project, ); }; }; 892CC8F163730004416A9E0EB66454A0 /* UIView+WebCache.m in Sources */ = {isa = PBXBuildFile; fileRef = 2EE96081B960EB5843F26F6558A40730 /* UIView+WebCache.m */; }; - 89305BD8FA22B9F773F80ED9B63F9DEF /* RCTDisplayLink.m in Sources */ = {isa = PBXBuildFile; fileRef = 1A9CF061A5E12F9A85E5EB4A235969E3 /* RCTDisplayLink.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 893655588E502C049519BB8E65C6C606 /* BugsnagConfiguration.h in Headers */ = {isa = PBXBuildFile; fileRef = 4F141B3510268B10F274291C41A9BBE5 /* BugsnagConfiguration.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 894F864B3D616AD9CA528A84CEAEF67E /* BSG_KSString.h in Headers */ = {isa = PBXBuildFile; fileRef = 7A42EA128B624DE465416479D0357F46 /* BSG_KSString.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 89305BD8FA22B9F773F80ED9B63F9DEF /* RCTDisplayLink.m in Sources */ = {isa = PBXBuildFile; fileRef = 5502DEE09F13AF71CD73586AF452FBBF /* RCTDisplayLink.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 893655588E502C049519BB8E65C6C606 /* BugsnagConfiguration.h in Headers */ = {isa = PBXBuildFile; fileRef = C24D0CD392A5C3559F02C3375E142CF4 /* BugsnagConfiguration.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 894F864B3D616AD9CA528A84CEAEF67E /* BSG_KSString.h in Headers */ = {isa = PBXBuildFile; fileRef = 1C30029B5D1961DB498768F7F5B3539B /* BSG_KSString.h */; settings = {ATTRIBUTES = (Project, ); }; }; 8950571C071AFC5410328C4CA3D19B5E /* FIRInstallationsKeychainUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = 01FEFA98B5E8668AD537CEE144C68D35 /* FIRInstallationsKeychainUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; 8990839281ACA886749C54D8CA07FA88 /* FBLPromise+Do.m in Sources */ = {isa = PBXBuildFile; fileRef = 86670E276CC761C5AD9108582C55EDC3 /* FBLPromise+Do.m */; }; 89BD4AA4D3B1EE870D5BC99EDB0FD812 /* UIImage+RSKImageCropper.m in Sources */ = {isa = PBXBuildFile; fileRef = 65F4CD4AED2AC4EF14B118A58EDEE355 /* UIImage+RSKImageCropper.m */; }; 89C3A612CD4ADB81C44209858A136F74 /* cost_sse2.c in Sources */ = {isa = PBXBuildFile; fileRef = 2BB0CFABA51216D7A7818D5F5D3015E7 /* cost_sse2.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; 89CBF65D46171399F0EAF5C79B09E6E6 /* SDImageGIFCoder.m in Sources */ = {isa = PBXBuildFile; fileRef = B6DAE9177A3C3A2B93422B1382202FF6 /* SDImageGIFCoder.m */; }; - 89DEAA3F2A400C8232EC97727C7D826C /* BugsnagCrashSentry.h in Headers */ = {isa = PBXBuildFile; fileRef = 83D24F2ED92A1A29A5CD59AA87A0BCB9 /* BugsnagCrashSentry.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 89DEAA3F2A400C8232EC97727C7D826C /* BugsnagCrashSentry.h in Headers */ = {isa = PBXBuildFile; fileRef = 2967FE25DC0A47F8F883D96F5B771EC7 /* BugsnagCrashSentry.h */; settings = {ATTRIBUTES = (Project, ); }; }; 89ECCD7C01DDA71BC7FB896BB010E7C7 /* NSBezierPath+RoundedCorners.h in Headers */ = {isa = PBXBuildFile; fileRef = 0C3136B59B61BB160560C616ED25BC08 /* NSBezierPath+RoundedCorners.h */; settings = {ATTRIBUTES = (Project, ); }; }; 8A1373FBD88F35501478391992C5376C /* huffman_utils.c in Sources */ = {isa = PBXBuildFile; fileRef = FE1CC5E059EA91AFC5ABF8BF527E9F10 /* huffman_utils.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; 8A362B80D43E6603CF994D92EB2C52AD /* SDImageCachesManagerOperation.m in Sources */ = {isa = PBXBuildFile; fileRef = E818294C08CF5776BB1D71226C8C1B0A /* SDImageCachesManagerOperation.m */; }; - 8A3B0328CB5DF41A39BCCB3899B34CEC /* RCTConvert+REATransition.h in Headers */ = {isa = PBXBuildFile; fileRef = 8D13C7520AA20108E14471D603A404CA /* RCTConvert+REATransition.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8A8CC5BB726A951810D3CB4E255AFBB2 /* RNPanHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 7BC795C895152549297A14DC372AB624 /* RNPanHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8A3B0328CB5DF41A39BCCB3899B34CEC /* RCTConvert+REATransition.h in Headers */ = {isa = PBXBuildFile; fileRef = F771AC9AB82CDB9992BBEFD479115FC9 /* RCTConvert+REATransition.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8A6AB74E5D979D543445E1AC15D30957 /* EXKeepAwake-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = B734674085C56A240B8386BEDBC9568C /* EXKeepAwake-dummy.m */; }; + 8A8CC5BB726A951810D3CB4E255AFBB2 /* RNPanHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 5BD5A5FCD00F2D95836F952C0E53B498 /* RNPanHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; 8A9D84B786AB2897A000D05D3AACB59D /* SDAnimatedImage.h in Headers */ = {isa = PBXBuildFile; fileRef = B1151875A2C24A78423CC58505388627 /* SDAnimatedImage.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8AA78E079D60E962A4BC282E265CCC88 /* ModuleRegistry.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8A44F997D00019987B9EFD2D3A54B71A /* ModuleRegistry.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 8AA78E079D60E962A4BC282E265CCC88 /* ModuleRegistry.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FE7CD5C94AFB871210535567E052DFCD /* ModuleRegistry.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; 8AB9E32DAF6BDF9585F5205FA0736F63 /* tree_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = 392B3106DCD1282949C544B07B1586E4 /* tree_enc.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 8AEC824A51C85F20D2DF15E8BEB7DA26 /* RCTImageView.h in Headers */ = {isa = PBXBuildFile; fileRef = 20F87B36C247C5A2E237B9B02B110533 /* RCTImageView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8B31804AAB0BCE87C153A3A661DDF9AB /* RCTTextAttributes.h in Headers */ = {isa = PBXBuildFile; fileRef = ABA1B10914BC5CA476BF7378D667FA12 /* RCTTextAttributes.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8AEC824A51C85F20D2DF15E8BEB7DA26 /* RCTImageView.h in Headers */ = {isa = PBXBuildFile; fileRef = DA7DB9D03B77A0AD415A926C86BEFAA2 /* RCTImageView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8B31804AAB0BCE87C153A3A661DDF9AB /* RCTTextAttributes.h in Headers */ = {isa = PBXBuildFile; fileRef = FF790684A443F38C2A2A38A5EB2F4209 /* RCTTextAttributes.h */; settings = {ATTRIBUTES = (Project, ); }; }; 8B43C248A2375B0F2B98B5157B1205DE /* FIRInstanceIDUtilities.m in Sources */ = {isa = PBXBuildFile; fileRef = 51087434509AC9D80EDBA3801FBA46D9 /* FIRInstanceIDUtilities.m */; }; 8B461725557EA6544B7B191BFDE8C1D4 /* SDWebImageDownloaderDecryptor.h in Headers */ = {isa = PBXBuildFile; fileRef = 8EDA6DF3A3B6AF0071D4A7A9742995B2 /* SDWebImageDownloaderDecryptor.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8B4A5EFA46C771631880F96C6D857763 /* EXDownloadDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = 7A9ED89D8D773020586E954726458DC3 /* EXDownloadDelegate.m */; }; + 8B4A5EFA46C771631880F96C6D857763 /* EXDownloadDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = 9DC25696DAF43807F365F44F575C4E8A /* EXDownloadDelegate.m */; }; 8BA04E1FA3708A51146E5A1218DA87B3 /* FIRHeartbeatInfo.h in Headers */ = {isa = PBXBuildFile; fileRef = 26C5912343F09FDEC67C47A7DD500AAF /* FIRHeartbeatInfo.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8BB9AE1787FD9D7C8F5388013BBCD2DD /* EXConstants.m in Sources */ = {isa = PBXBuildFile; fileRef = A3E5C4CE53F7B66631A1299DFC538DFC /* EXConstants.m */; }; - 8BDC780EFAEC1B9826D9B25A85BE47E2 /* RNCAppearanceProviderManager.m in Sources */ = {isa = PBXBuildFile; fileRef = F77B932BE2DF5310379CA95A585105B4 /* RNCAppearanceProviderManager.m */; }; - 8BF75A8218C11BF3B0E8D88424BC5F47 /* RCTProfileTrampoline-x86_64.S in Sources */ = {isa = PBXBuildFile; fileRef = A2C2BC4FB05DDC6EF560968C5BF8AA93 /* RCTProfileTrampoline-x86_64.S */; }; + 8BB9AE1787FD9D7C8F5388013BBCD2DD /* EXConstants.m in Sources */ = {isa = PBXBuildFile; fileRef = 1BDBD74AE31C2B29BEBFF92A6E24A65E /* EXConstants.m */; }; + 8BDC780EFAEC1B9826D9B25A85BE47E2 /* RNCAppearanceProviderManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 2194C9BDF97586E8F49B5408FEF50FAF /* RNCAppearanceProviderManager.m */; }; + 8BF75A8218C11BF3B0E8D88424BC5F47 /* RCTProfileTrampoline-x86_64.S in Sources */ = {isa = PBXBuildFile; fileRef = 9486290889B3C6325EDECE288CAA9A34 /* RCTProfileTrampoline-x86_64.S */; }; 8C067D43FFE92BEE92DF729871CB6737 /* UIImage+Metadata.h in Headers */ = {isa = PBXBuildFile; fileRef = 19B4CD2BCA1F7FD16045A42310FCE9F0 /* UIImage+Metadata.h */; settings = {ATTRIBUTES = (Project, ); }; }; 8C0961F4BF06E2D6050B14C3292638B6 /* FBLPromise+Validate.h in Headers */ = {isa = PBXBuildFile; fileRef = 09F74600A3F236533A7364611CBCD0A9 /* FBLPromise+Validate.h */; settings = {ATTRIBUTES = (Project, ); }; }; 8C0A640F7F5FA4D7E162DE9284F16BAA /* vp8i_enc.h in Headers */ = {isa = PBXBuildFile; fileRef = 754C1763718FE74C32CF806FF8384D33 /* vp8i_enc.h */; settings = {ATTRIBUTES = (Project, ); }; }; 8C0C8D915DA3564FD6B5B7B18703D8C2 /* fixed-dtoa.cc in Sources */ = {isa = PBXBuildFile; fileRef = B68868E9598353F7206899DB35AA264C /* fixed-dtoa.cc */; settings = {COMPILER_FLAGS = "-Wno-unreachable-code"; }; }; 8C1FF88440B33D9481A72C8EB18AFCA5 /* FBLPromise+Reduce.h in Headers */ = {isa = PBXBuildFile; fileRef = 616B59B78E41E0F8743C2A2FDFBA466B /* FBLPromise+Reduce.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8C2F0ADB9BED6CDF94AD4FDE98640AE3 /* REACondNode.h in Headers */ = {isa = PBXBuildFile; fileRef = E5E9E9457247CF3EAEF2A4A273069C47 /* REACondNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8C3EE4A40254A277C0F5663A900F4257 /* RCTTextSelection.h in Headers */ = {isa = PBXBuildFile; fileRef = 966BEA81EA3259693A21B0C8773FFFA3 /* RCTTextSelection.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8C2F0ADB9BED6CDF94AD4FDE98640AE3 /* REACondNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 941CB7337A22D2FC3F9A2BD378A98380 /* REACondNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8C3EE4A40254A277C0F5663A900F4257 /* RCTTextSelection.h in Headers */ = {isa = PBXBuildFile; fileRef = E75D2BEE2A822BC31AE3602BAA2E95B5 /* RCTTextSelection.h */; settings = {ATTRIBUTES = (Project, ); }; }; 8C5D5340CC2350C17774207F4AFE339F /* UIImage+MultiFormat.m in Sources */ = {isa = PBXBuildFile; fileRef = 63F237C28969479FD39F0D8EB9063B79 /* UIImage+MultiFormat.m */; }; - 8C7498211CB965AC43930070C50E5510 /* BSG_KSSystemInfo.h in Headers */ = {isa = PBXBuildFile; fileRef = D58B3D9F699BFBEF16AA2CC82CA907DC /* BSG_KSSystemInfo.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8C97D51F2831AC4CE3018CB7626639AC /* JSIDynamic.h in Headers */ = {isa = PBXBuildFile; fileRef = 7B1AEBC36E945E0A48D186FC8822FD79 /* JSIDynamic.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8CA475791C767C5F20E739483E327D34 /* BugsnagKSCrashSysInfoParser.m in Sources */ = {isa = PBXBuildFile; fileRef = 969494DAF2F14EBC24BD4CFD56BD41AC /* BugsnagKSCrashSysInfoParser.m */; }; + 8C7498211CB965AC43930070C50E5510 /* BSG_KSSystemInfo.h in Headers */ = {isa = PBXBuildFile; fileRef = 32DE5F05C8013901EA4EBF72E868DE3D /* BSG_KSSystemInfo.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8C97D51F2831AC4CE3018CB7626639AC /* JSIDynamic.h in Headers */ = {isa = PBXBuildFile; fileRef = 410974AD76C46979A85DD8829197DFE4 /* JSIDynamic.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8CA475791C767C5F20E739483E327D34 /* BugsnagKSCrashSysInfoParser.m in Sources */ = {isa = PBXBuildFile; fileRef = A2F41F885500B1838C11CA05CCE6114E /* BugsnagKSCrashSysInfoParser.m */; }; 8CA624564BD56CDA821A6C12FB87DF65 /* filters_mips_dsp_r2.c in Sources */ = {isa = PBXBuildFile; fileRef = AAB27BBE32494400507F8652BE36111F /* filters_mips_dsp_r2.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 8CD195F8D4797EA381A36F563A0E5F0D /* RNFirebaseAdMobRewardedVideo.h in Headers */ = {isa = PBXBuildFile; fileRef = 5137C30F03EB416AF5837B43D82A53DA /* RNFirebaseAdMobRewardedVideo.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8CD8228C936FD255CD294290118A29B6 /* EXAVPlayerData.h in Headers */ = {isa = PBXBuildFile; fileRef = 3494CD0839E949CDB414695323700978 /* EXAVPlayerData.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8CF4FC48814A64166E0636CF7EFFBD83 /* RCTUIImageViewAnimated.h in Headers */ = {isa = PBXBuildFile; fileRef = 0F4B3BA31DCDC79BBCB27289BAA13917 /* RCTUIImageViewAnimated.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8D24E27DD6BAFE194B066A1C0848899B /* React-RCTActionSheet-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 119D3C6BF56514923BC5216016DDD651 /* React-RCTActionSheet-dummy.m */; }; - 8D3621426BFE501E721FF44E94DBA253 /* RCTDatePickerManager.m in Sources */ = {isa = PBXBuildFile; fileRef = E2716AB3377FB4251AFC0731479663FB /* RCTDatePickerManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 8CD195F8D4797EA381A36F563A0E5F0D /* RNFirebaseAdMobRewardedVideo.h in Headers */ = {isa = PBXBuildFile; fileRef = FD565A43ABA2624D39BC43B81A81F325 /* RNFirebaseAdMobRewardedVideo.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8CD8228C936FD255CD294290118A29B6 /* EXAVPlayerData.h in Headers */ = {isa = PBXBuildFile; fileRef = 5ACF58911FE63DD19FD16C8DFAFABC88 /* EXAVPlayerData.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8CF4FC48814A64166E0636CF7EFFBD83 /* RCTUIImageViewAnimated.h in Headers */ = {isa = PBXBuildFile; fileRef = 41EB4C6E0BFCE249D65819744C353237 /* RCTUIImageViewAnimated.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8D24E27DD6BAFE194B066A1C0848899B /* React-RCTActionSheet-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 306BACE18FC2849B86A1322FA34E4E19 /* React-RCTActionSheet-dummy.m */; }; + 8D3621426BFE501E721FF44E94DBA253 /* RCTDatePickerManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 800A2D79CB04CE030D338681CB99F701 /* RCTDatePickerManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; 8D751CC4E9101960E0571131E2DEFFEF /* FIRInstanceIDConstants.m in Sources */ = {isa = PBXBuildFile; fileRef = 39D1DB7D0AB5BA90F8138F64EBA4323B /* FIRInstanceIDConstants.m */; }; - 8DAA4220694B02480367F67459059F3A /* SystraceSection.h in Headers */ = {isa = PBXBuildFile; fileRef = 7F81908E4DF9C3A9AF198B988EACDA5C /* SystraceSection.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8DCDE6DD377E7D735ECC89252CA639FA /* REAClockNodes.m in Sources */ = {isa = PBXBuildFile; fileRef = D7989AAB611C1CBC3D4BF5E88FD14802 /* REAClockNodes.m */; }; + 8DAA4220694B02480367F67459059F3A /* SystraceSection.h in Headers */ = {isa = PBXBuildFile; fileRef = 6251479B660542FA4B8E650B74A21886 /* SystraceSection.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8DCDE6DD377E7D735ECC89252CA639FA /* REAClockNodes.m in Sources */ = {isa = PBXBuildFile; fileRef = 46CB2F49C23D61BF1BFB11EEFF87AD85 /* REAClockNodes.m */; }; 8DEF96274F9BA17DDE42AC2EAE1EC1AE /* UIImage+WebP.m in Sources */ = {isa = PBXBuildFile; fileRef = 84EC518D9D034614AA1F401DB6FF9D92 /* UIImage+WebP.m */; }; 8DEFCD08EC9448EA4F746B9134AF4D65 /* GDTCORReachability.m in Sources */ = {isa = PBXBuildFile; fileRef = 8C40A67EE1D77C8674B2974823212EA0 /* GDTCORReachability.m */; }; 8E035517C8AC7D884CBA5819743A15A3 /* endian_inl_utils.h in Headers */ = {isa = PBXBuildFile; fileRef = 6D8BCB824FD16FFB5D40146868CEB425 /* endian_inl_utils.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8E0D9EFF36B98DCD095C2DB8123B6CC2 /* RNCommandsHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 22B3B93BAD15FF28E1F658EF9563AAB6 /* RNCommandsHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8E454B8C83F5A7240B00066734BF3DFD /* BugsnagApiClient.h in Headers */ = {isa = PBXBuildFile; fileRef = 4D7D4150174C399C428113A0E6DED6C5 /* BugsnagApiClient.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8E773D494A272503191518A6FC9BCB01 /* REATransition.m in Sources */ = {isa = PBXBuildFile; fileRef = 994B165874A7AC63236C23D219FD4272 /* REATransition.m */; }; - 8E842C89450F1F42FD0A472547D2DB91 /* RNDateTimePicker.m in Sources */ = {isa = PBXBuildFile; fileRef = 742CD800500758D4594804D6A9BD6C26 /* RNDateTimePicker.m */; }; + 8E0D9EFF36B98DCD095C2DB8123B6CC2 /* RNCommandsHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = B8BAA8B10007CE4D8FEB4969D40B6094 /* RNCommandsHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8E454B8C83F5A7240B00066734BF3DFD /* BugsnagApiClient.h in Headers */ = {isa = PBXBuildFile; fileRef = C7F96682DD85D4BF92F99631282708FD /* BugsnagApiClient.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8E773D494A272503191518A6FC9BCB01 /* REATransition.m in Sources */ = {isa = PBXBuildFile; fileRef = 08132FDEEE869B5DDF9F2BC2D1A2A924 /* REATransition.m */; }; + 8E842C89450F1F42FD0A472547D2DB91 /* RNDateTimePicker.m in Sources */ = {isa = PBXBuildFile; fileRef = F5B78CB4D0944353EC41021425B6E0D2 /* RNDateTimePicker.m */; }; 8EADE023E455AEC580E9BBF11138B13D /* glog-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 8ECEDAD2A838321D345DEE9D05E6BB90 /* glog-dummy.m */; }; 8ECAAD611878CFA4CA1E91A5ACC7FC41 /* dec_mips_dsp_r2.c in Sources */ = {isa = PBXBuildFile; fileRef = 8C64106BB2DF7529C974379A31A7B6EE /* dec_mips_dsp_r2.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; 8ECC32BE1D834E064B790DAB6A677280 /* FIRInstallationsLogger.h in Headers */ = {isa = PBXBuildFile; fileRef = E2E3C8E6D99317CEB9799CEDC4EF10E0 /* FIRInstallationsLogger.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8EECFE19160CD69752A9D17BE13A0549 /* pl.lproj in Resources */ = {isa = PBXBuildFile; fileRef = 4782156508E1F36CB7FD5DD62DE03DC2 /* pl.lproj */; }; + 8EECFE19160CD69752A9D17BE13A0549 /* pl.lproj in Resources */ = {isa = PBXBuildFile; fileRef = 6941EF57B2898BB3FAC85FE115CE4F41 /* pl.lproj */; }; 8F026D24EEBFE343FDBAC023E9D56938 /* quant_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = 5C3170CE50BA839FD7FFABDF189D8F38 /* quant_enc.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 8F040C2B11F6646DD48ACF0D9F806AC5 /* react-native-keyboard-input-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 084B3672643797BE497CAD11608075C3 /* react-native-keyboard-input-dummy.m */; }; - 8F1DE929839BE811A4D2898796A205FA /* RCTGIFImageDecoder.h in Headers */ = {isa = PBXBuildFile; fileRef = 9C4EEBB15D16DA2243DE8D1FEB106E0E /* RCTGIFImageDecoder.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8F2805AAE44444D081FFAD2274DE2242 /* RCTSlider.h in Headers */ = {isa = PBXBuildFile; fileRef = D328FE948889A058CE8AE8506C08089C /* RCTSlider.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8F309961888112B2C0D486333FA4C7FA /* RNCWebViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = C8C8C58A070FA85A44A893611668E541 /* RNCWebViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8F040C2B11F6646DD48ACF0D9F806AC5 /* react-native-keyboard-input-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 4F77A11D90734F6ED70430128BF7FA56 /* react-native-keyboard-input-dummy.m */; }; + 8F1DE929839BE811A4D2898796A205FA /* RCTGIFImageDecoder.h in Headers */ = {isa = PBXBuildFile; fileRef = 012F4462BB9C07820206BE66B1F20D80 /* RCTGIFImageDecoder.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8F2805AAE44444D081FFAD2274DE2242 /* RCTSlider.h in Headers */ = {isa = PBXBuildFile; fileRef = 032E268394E8AFE22A18149586AE8168 /* RCTSlider.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8F309961888112B2C0D486333FA4C7FA /* RNCWebViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 421FF329D93C28FFC05114FD913D8640 /* RNCWebViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; 8F67D72452129D5639844135A9C40BAD /* logging.cc in Sources */ = {isa = PBXBuildFile; fileRef = DCB16C1702DEA720BC36211E43A6596E /* logging.cc */; settings = {COMPILER_FLAGS = "-Wno-shorten-64-to-32"; }; }; - 8F7658D209B9A78E163D3E9613B81255 /* EXReactNativeUserNotificationCenterProxy.m in Sources */ = {isa = PBXBuildFile; fileRef = C3B8C8A229EA73F4201D5749FB110123 /* EXReactNativeUserNotificationCenterProxy.m */; }; - 8FC5A3F42ADAA6A821A5C9674CEEB661 /* RCTBridgeDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = 5E3596E809929F56D6C013739C427DBB /* RCTBridgeDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8F7658D209B9A78E163D3E9613B81255 /* EXReactNativeUserNotificationCenterProxy.m in Sources */ = {isa = PBXBuildFile; fileRef = CDB0B1AD988F0C8E905480472EAD9AF9 /* EXReactNativeUserNotificationCenterProxy.m */; }; + 8FC5A3F42ADAA6A821A5C9674CEEB661 /* RCTBridgeDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = CD58055A3420A79299262FFF12AAE574 /* RCTBridgeDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; }; 8FE0997788C0371B00C8923C3D935168 /* SDImageCoder.h in Headers */ = {isa = PBXBuildFile; fileRef = 82C5CB61A36D2F0DDF60097EB08DBD66 /* SDImageCoder.h */; settings = {ATTRIBUTES = (Project, ); }; }; 8FFCB0876C97E6E6A9BD192A5514E737 /* SDImageCodersManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 0DFCFAD3BB3A6A89D23F127637FA0517 /* SDImageCodersManager.m */; }; - 9004D4CB6A142DF3AF78B638898B3088 /* RNCWebView.m in Sources */ = {isa = PBXBuildFile; fileRef = 211D4B533E871CAD37B284D1EE055D6B /* RNCWebView.m */; }; - 903E5806AB43CC9ECAD1243D2FC12279 /* UMUtilities.m in Sources */ = {isa = PBXBuildFile; fileRef = 4504528B8B98692A19E87DAA06BA51AA /* UMUtilities.m */; }; - 905873241B5AF3ED7969719250E32487 /* RNGestureHandlerButton.h in Headers */ = {isa = PBXBuildFile; fileRef = C256E2664723AD4002E40A3892EE439B /* RNGestureHandlerButton.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9004D4CB6A142DF3AF78B638898B3088 /* RNCWebView.m in Sources */ = {isa = PBXBuildFile; fileRef = 124C19D7E3F7653C367911A081BA9B58 /* RNCWebView.m */; }; + 903E5806AB43CC9ECAD1243D2FC12279 /* UMUtilities.m in Sources */ = {isa = PBXBuildFile; fileRef = C37B5A96B8889BDBE550BBDD51EA995A /* UMUtilities.m */; }; + 905873241B5AF3ED7969719250E32487 /* RNGestureHandlerButton.h in Headers */ = {isa = PBXBuildFile; fileRef = 959E02EDFE2FC16928D069CD4618BC12 /* RNGestureHandlerButton.h */; settings = {ATTRIBUTES = (Project, ); }; }; 9065DD549003066B9A069F40D2485CEC /* lossless_enc_mips32.c in Sources */ = {isa = PBXBuildFile; fileRef = A1F0899513A15CABEC77801711DA43EC /* lossless_enc_mips32.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 90971B47C3418E340CF56D3D9E529587 /* RNFirebaseLinks.h in Headers */ = {isa = PBXBuildFile; fileRef = E7D5D7FCA6C6568054845D64C45FF5CC /* RNFirebaseLinks.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 90CCBE59123D4345E7003437EFD73548 /* RCTModuleMethod.h in Headers */ = {isa = PBXBuildFile; fileRef = EC5C2996BB897C23E1C5EE5447775887 /* RCTModuleMethod.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 90CE9D3E90CFF70CAC64D3FFA105AECF /* RNReanimated-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = A3070CBE3065FA5DEE58868B6FD0A8D3 /* RNReanimated-dummy.m */; }; - 90DF82F5A6FF02BA881F75FC3505DDC3 /* MethodCall.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3C0EE17279C996567D2F074EF0414F4F /* MethodCall.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 90971B47C3418E340CF56D3D9E529587 /* RNFirebaseLinks.h in Headers */ = {isa = PBXBuildFile; fileRef = 0B85A31F3F82AEF91625230E7A5F0BEC /* RNFirebaseLinks.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 90CCBE59123D4345E7003437EFD73548 /* RCTModuleMethod.h in Headers */ = {isa = PBXBuildFile; fileRef = AB2C54B740DA1C3F9624DF4628B9B5B6 /* RCTModuleMethod.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 90CE9D3E90CFF70CAC64D3FFA105AECF /* RNReanimated-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 8BD90BA5AFD95D998185C8E73F473888 /* RNReanimated-dummy.m */; }; + 90DF82F5A6FF02BA881F75FC3505DDC3 /* MethodCall.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 56A8F506B4F91A8E13FAB50DB4FA5DC6 /* MethodCall.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; 90EEDAB80AD3D2F8B41E0C9F4C40CCF3 /* FIRInstanceIDCombinedHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = 905B1BD1CB9FFBC1DD7770F2DBD5FD19 /* FIRInstanceIDCombinedHandler.m */; }; - 910B1B0EF8C7E99CF568CD43FADC8CDB /* RCTMultiplicationAnimatedNode.h in Headers */ = {isa = PBXBuildFile; fileRef = C48AC7790D744C6FC6360C37EB6F9950 /* RCTMultiplicationAnimatedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 910B1B0EF8C7E99CF568CD43FADC8CDB /* RCTMultiplicationAnimatedNode.h in Headers */ = {isa = PBXBuildFile; fileRef = B349DD5435D1EB19753961274872B199 /* RCTMultiplicationAnimatedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; 911D35D4C93E94049058BE6695C7FDC7 /* RSKInternalUtility.h in Headers */ = {isa = PBXBuildFile; fileRef = 084DF8B81E62B3FA2DD1A9E2620122EC /* RSKInternalUtility.h */; settings = {ATTRIBUTES = (Project, ); }; }; 9174043F2C5C946E391930C776A8F658 /* Demangle.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 192CCAEA3A7BD283727CC8F0076D4F1F /* 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"; }; }; 91BBF552A2FF6BB3042AA2B96075C326 /* FIRErrors.h in Headers */ = {isa = PBXBuildFile; fileRef = 514AE00CD420A8229A4F661330A06B47 /* FIRErrors.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 91E6B9ADEE505C21F59904D244812A29 /* REAModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 65B41CF167FF6DCF3FEDAD73573AF2EE /* REAModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 920492D26B54A44DF36E54A858DCE72F /* ARTSolidColor.m in Sources */ = {isa = PBXBuildFile; fileRef = 7BC92B6305B0F86A7B63592C0D0C2A63 /* ARTSolidColor.m */; }; - 92067B4091004BF297FF15F7E163CF66 /* REATransitionManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 94DF1CFB849E81DE83353A7DED6D5BC8 /* REATransitionManager.m */; }; - 92330D2E1E09F2AFC5169D9192A9143D /* BSG_KSSignalInfo.c in Sources */ = {isa = PBXBuildFile; fileRef = 4F861E509BB1D167464D241BA5DDE472 /* BSG_KSSignalInfo.c */; }; - 923D51836B00BE5F3E8DB7194F6DA65F /* RCTInterpolationAnimatedNode.m in Sources */ = {isa = PBXBuildFile; fileRef = D6D95C9208F5BA2F9CB7DEFEF7FFDECF /* RCTInterpolationAnimatedNode.m */; }; + 91E6B9ADEE505C21F59904D244812A29 /* REAModule.h in Headers */ = {isa = PBXBuildFile; fileRef = B2AF2075C759F200D6704623D761697A /* REAModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 920492D26B54A44DF36E54A858DCE72F /* ARTSolidColor.m in Sources */ = {isa = PBXBuildFile; fileRef = 29C15F0C9AAE37BA7318B35D4D917AFC /* ARTSolidColor.m */; }; + 92067B4091004BF297FF15F7E163CF66 /* REATransitionManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 92FAD6EE8E44F62642759199B21818D0 /* REATransitionManager.m */; }; + 92330D2E1E09F2AFC5169D9192A9143D /* BSG_KSSignalInfo.c in Sources */ = {isa = PBXBuildFile; fileRef = B0B98A696251E4EF51DCEE25CDF2FB22 /* BSG_KSSignalInfo.c */; }; + 923D51836B00BE5F3E8DB7194F6DA65F /* RCTInterpolationAnimatedNode.m in Sources */ = {isa = PBXBuildFile; fileRef = E8AA33D37BF6D7F06BFE5711824D596C /* RCTInterpolationAnimatedNode.m */; }; 92761B113C01A55F1CEBA2DDD2495446 /* FBLPromise+Any.h in Headers */ = {isa = PBXBuildFile; fileRef = 93F8311DDBE0DBF0536063DB1283834E /* FBLPromise+Any.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 929D5F9A483CEDB88DFC5DFC3C3031DF /* RCTCxxMethod.mm in Sources */ = {isa = PBXBuildFile; fileRef = 202C4D6DA553B5E3EC6087AD40486531 /* RCTCxxMethod.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 929D5F9A483CEDB88DFC5DFC3C3031DF /* RCTCxxMethod.mm in Sources */ = {isa = PBXBuildFile; fileRef = 539B7B17099D8AA15550991441616A78 /* RCTCxxMethod.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; 92AA74D1F05BBE5402796AA8225D8834 /* alpha_processing_sse2.c in Sources */ = {isa = PBXBuildFile; fileRef = 2A2F1FA0788DFD486412DD726FC1C595 /* alpha_processing_sse2.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 92B35C8BA7A9A5A1D207A3623008B14D /* RCTVirtualTextShadowView.m in Sources */ = {isa = PBXBuildFile; fileRef = BF2A164B5E45E1797ED8D2CD8EDA12B9 /* RCTVirtualTextShadowView.m */; }; + 92B35C8BA7A9A5A1D207A3623008B14D /* RCTVirtualTextShadowView.m in Sources */ = {isa = PBXBuildFile; fileRef = 1657C2EB12A144FA1A909AB1F7F8829B /* RCTVirtualTextShadowView.m */; }; 92D334C2D97FB3BF1C809606141C8024 /* SDWebImageTransition.h in Headers */ = {isa = PBXBuildFile; fileRef = E6D457DA870054C0D84E3800FDA55894 /* SDWebImageTransition.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 93295B3F8E382C2029A4F4D51F70993B /* RCTDevLoadingView.m in Sources */ = {isa = PBXBuildFile; fileRef = B73A1983217C4ED2CB9CB653AF61D2EF /* RCTDevLoadingView.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 932A63E4F9AB03993C4F2C40333884E6 /* UMAppLifecycleListener.h in Headers */ = {isa = PBXBuildFile; fileRef = 135CB166A79C27938AA7E8FF963129A7 /* UMAppLifecycleListener.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 93295B3F8E382C2029A4F4D51F70993B /* RCTDevLoadingView.m in Sources */ = {isa = PBXBuildFile; fileRef = F40F03D6600BB1E45B3D85ADC6AA755B /* RCTDevLoadingView.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 932A63E4F9AB03993C4F2C40333884E6 /* UMAppLifecycleListener.h in Headers */ = {isa = PBXBuildFile; fileRef = D2FD13AE085185F0B4F9B37CDB3F6815 /* UMAppLifecycleListener.h */; settings = {ATTRIBUTES = (Project, ); }; }; 935C588017563AEFEB80DC42C91EC15F /* lossless_enc_mips_dsp_r2.c in Sources */ = {isa = PBXBuildFile; fileRef = DCADAF076921DEC4D671151F9E0C9584 /* lossless_enc_mips_dsp_r2.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; 93A0E9A6CC99BE8D70FD6F259C9D5891 /* quant_dec.c in Sources */ = {isa = PBXBuildFile; fileRef = 0F838A60D7566E3ED6EAAAB29782AD39 /* quant_dec.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 93B239D294DCEF6825977FE49136AE5C /* RCTManagedPointer.mm in Sources */ = {isa = PBXBuildFile; fileRef = F98980B4FD732EF519F258893B34B29D /* RCTManagedPointer.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 93C54730DD440D3D44E8805D830A196F /* BSG_KSMach_x86_64.c in Sources */ = {isa = PBXBuildFile; fileRef = 833A2697F2C7ADB11744A5832AB31057 /* BSG_KSMach_x86_64.c */; }; - 93EC8D424A6C585697CEA89C57ECB72A /* BSG_KSCrashSentry_User.c in Sources */ = {isa = PBXBuildFile; fileRef = B3E046E29E17EE7F1D0F97E3EF9A1405 /* BSG_KSCrashSentry_User.c */; }; + 93B239D294DCEF6825977FE49136AE5C /* RCTManagedPointer.mm in Sources */ = {isa = PBXBuildFile; fileRef = F40E7FD506B6A4591BA2E53A072C7295 /* RCTManagedPointer.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 93C54730DD440D3D44E8805D830A196F /* BSG_KSMach_x86_64.c in Sources */ = {isa = PBXBuildFile; fileRef = 7307278DBE57A51CD085E513C3C64E1D /* BSG_KSMach_x86_64.c */; }; + 93EC8D424A6C585697CEA89C57ECB72A /* BSG_KSCrashSentry_User.c in Sources */ = {isa = PBXBuildFile; fileRef = 15350290ECCC67D3F4EF5A3624B47A13 /* BSG_KSCrashSentry_User.c */; }; 9410A9F0FCED080442B9A14D7811805C /* FBLPromise+Wrap.m in Sources */ = {isa = PBXBuildFile; fileRef = 070C05407939F9DFE5B7ED06A3FE346E /* FBLPromise+Wrap.m */; }; - 9441E1E4797BF393BF269E3BA2EDB29A /* RCTPerfMonitor.m in Sources */ = {isa = PBXBuildFile; fileRef = FD9DD910D5C06981186BDAD63B188670 /* RCTPerfMonitor.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 945D6E8B65673BFBFF53BA7F7813BDB1 /* REAJSCallNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 12363D8E7810F9D32978997391C718AE /* REAJSCallNode.m */; }; - 94C039AE0D8233E82EBBF8CD60D104E1 /* react-native-webview-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 8E8EFBBDC42E5B25D24FC7C59575DECD /* react-native-webview-dummy.m */; }; + 9441E1E4797BF393BF269E3BA2EDB29A /* RCTPerfMonitor.m in Sources */ = {isa = PBXBuildFile; fileRef = 9FFCD9B03BD9FEEC8AA4EC08773BBC5D /* RCTPerfMonitor.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 945D6E8B65673BFBFF53BA7F7813BDB1 /* REAJSCallNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 043EA52813F5F81394AD6B3DF3AAF24C /* REAJSCallNode.m */; }; + 94C039AE0D8233E82EBBF8CD60D104E1 /* react-native-webview-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = CDFFE655B5351851551DA661BB7ED091 /* react-native-webview-dummy.m */; }; 94D2057D96B17B5338176E0EAC6D6118 /* bit_reader_utils.h in Headers */ = {isa = PBXBuildFile; fileRef = D8ABBD704A725E7E0D996145CBF6F03A /* bit_reader_utils.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 94D57D1F8087170D3C55D8BA061D1001 /* BSG_KSBacktrace_Private.h in Headers */ = {isa = PBXBuildFile; fileRef = FE86C3E184FD246EBA281044A830BA6D /* BSG_KSBacktrace_Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 94FCD20E6A582DD3D5FE05BE22BBAC95 /* RCTMultilineTextInputView.h in Headers */ = {isa = PBXBuildFile; fileRef = 63D00D396E1DDAB0E268E279D996EAA1 /* RCTMultilineTextInputView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9527E5A3C6DFA80BA2DB45EDB484763F /* RCTImageShadowView.m in Sources */ = {isa = PBXBuildFile; fileRef = 75EFBF9D5923028C61D053781FC48840 /* RCTImageShadowView.m */; }; + 94D57D1F8087170D3C55D8BA061D1001 /* BSG_KSBacktrace_Private.h in Headers */ = {isa = PBXBuildFile; fileRef = A06A8A3595975643253C9A50DAD2043A /* BSG_KSBacktrace_Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 94FCD20E6A582DD3D5FE05BE22BBAC95 /* RCTMultilineTextInputView.h in Headers */ = {isa = PBXBuildFile; fileRef = 5F66F1E3E71254F5A951B94C0A5FE22F /* RCTMultilineTextInputView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9527E5A3C6DFA80BA2DB45EDB484763F /* RCTImageShadowView.m in Sources */ = {isa = PBXBuildFile; fileRef = 56AF97F63EFE431F1C013A7EAE85414A /* RCTImageShadowView.m */; }; 953B94BD133A7467F4F38C0B944D76E1 /* filters_utils.h in Headers */ = {isa = PBXBuildFile; fileRef = 064078AF10DF91404B3DE14C08B4C6D7 /* filters_utils.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 954737CAEAEE7CD10A8E82C893D3C05C /* RCTSafeAreaShadowView.m in Sources */ = {isa = PBXBuildFile; fileRef = 603458B1947B082DFA09CC52C0057886 /* RCTSafeAreaShadowView.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 9551B84E7109A022EA783B45C2038FBA /* YGEnums.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 38BC8B60FD8088AEA1252FFD7701D678 /* YGEnums.cpp */; settings = {COMPILER_FLAGS = "-fno-omit-frame-pointer -fexceptions -Wall -Werror -std=c++1y -fPIC -fno-objc-arc"; }; }; - 9555FA1629B54E6CE10F84AD1CFEC491 /* RCTTextView.h in Headers */ = {isa = PBXBuildFile; fileRef = 381ACA616782C0C9F41DD974A4BF5521 /* RCTTextView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 955ED07B34A30576182FAEF37C32A120 /* RCTSubtractionAnimatedNode.h in Headers */ = {isa = PBXBuildFile; fileRef = A3736C82FCC63550F526FFA30B72A94D /* RCTSubtractionAnimatedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 956A73A2DD9882EAF245E88865CC6799 /* RCTRedBoxExtraDataViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = A51B066308182EAFF665F73AD486C2CB /* RCTRedBoxExtraDataViewController.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 954737CAEAEE7CD10A8E82C893D3C05C /* RCTSafeAreaShadowView.m in Sources */ = {isa = PBXBuildFile; fileRef = 94F42D796A80AB6ABB10321353CD36BE /* RCTSafeAreaShadowView.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 9551B84E7109A022EA783B45C2038FBA /* YGEnums.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3A8C581D9EF1B77EF6DCBDF21CE6A214 /* YGEnums.cpp */; settings = {COMPILER_FLAGS = "-fno-omit-frame-pointer -fexceptions -Wall -Werror -std=c++1y -fPIC -fno-objc-arc"; }; }; + 9555FA1629B54E6CE10F84AD1CFEC491 /* RCTTextView.h in Headers */ = {isa = PBXBuildFile; fileRef = F98089A2B7C555B7C71068FC3D66F7B5 /* RCTTextView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 955ED07B34A30576182FAEF37C32A120 /* RCTSubtractionAnimatedNode.h in Headers */ = {isa = PBXBuildFile; fileRef = B1D6CE1BAD3DB06B35DBDF02ACC71D40 /* RCTSubtractionAnimatedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 956A73A2DD9882EAF245E88865CC6799 /* RCTRedBoxExtraDataViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 3C88FE8C08401D6F56CC0054F2E1007C /* RCTRedBoxExtraDataViewController.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; 9576BC2AA57D548A446DF12601AC0D7D /* SDWebImagePrefetcher.h in Headers */ = {isa = PBXBuildFile; fileRef = AE786E2067197B64CADFCEB08C452C84 /* SDWebImagePrefetcher.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9584C1D2A2B4338D79033DE1456BCB15 /* CxxNativeModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 54F2E8898CC234DF4D918DE037C924AC /* CxxNativeModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 95B521FAD1DE325761C020F8AFEB4E63 /* RCTBackedTextInputDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = 4F10B268A6259F94F71B5D146A4FFD11 /* RCTBackedTextInputDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 95B68C33D8A3CA6C685E64643173F8C2 /* RNFetchBlobProgress.m in Sources */ = {isa = PBXBuildFile; fileRef = 12B654D906725B5E6232AC9FA3EE2762 /* RNFetchBlobProgress.m */; }; - 95DB2DC3843A5A77097E2549512012F0 /* RCTConvert+Transform.m in Sources */ = {isa = PBXBuildFile; fileRef = 3E9C901B01228322B8B094E3E52AE7EF /* RCTConvert+Transform.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 960B81835CCACE99EAF6D7301646A57D /* RNGestureHandler-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 2E05218823012A4B1EEF8F9DBB40D1E0 /* RNGestureHandler-dummy.m */; }; - 961E178766FFC74BE8CC650BEB06621E /* BSG_KSCrashReportVersion.h in Headers */ = {isa = PBXBuildFile; fileRef = C85761D52F3F08615BE3A6569731C96E /* BSG_KSCrashReportVersion.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9584C1D2A2B4338D79033DE1456BCB15 /* CxxNativeModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 5813747E3321148C9C628526DC88943B /* CxxNativeModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 95B521FAD1DE325761C020F8AFEB4E63 /* RCTBackedTextInputDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = 4914796E64F630A6E2F7EC8093650BFE /* RCTBackedTextInputDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 95B68C33D8A3CA6C685E64643173F8C2 /* RNFetchBlobProgress.m in Sources */ = {isa = PBXBuildFile; fileRef = AC0E5144BC8E45C0A8AA0E7DF26EAEA1 /* RNFetchBlobProgress.m */; }; + 95DB2DC3843A5A77097E2549512012F0 /* RCTConvert+Transform.m in Sources */ = {isa = PBXBuildFile; fileRef = C169D321FB2D04757BCB7E11EBFA594C /* RCTConvert+Transform.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 960B81835CCACE99EAF6D7301646A57D /* RNGestureHandler-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = F17EAB69AC122FECB5797C7A4355B56D /* RNGestureHandler-dummy.m */; }; + 961E178766FFC74BE8CC650BEB06621E /* BSG_KSCrashReportVersion.h in Headers */ = {isa = PBXBuildFile; fileRef = C47B57CFB6FB02C32E14D4973EEDB19E /* BSG_KSCrashReportVersion.h */; settings = {ATTRIBUTES = (Project, ); }; }; 9648DE8BFD642A580258906D5C4A72AE /* anim_decode.c in Sources */ = {isa = PBXBuildFile; fileRef = BC41853A6450E14F865A02ADC3D019D7 /* anim_decode.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 967D11E3ADB39D24F39D3D14FAEEBCD4 /* RCTModuleData.mm in Sources */ = {isa = PBXBuildFile; fileRef = 06AC030B2EA1E86AE0CDA3C4CD57B831 /* RCTModuleData.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 967D11E3ADB39D24F39D3D14FAEEBCD4 /* RCTModuleData.mm in Sources */ = {isa = PBXBuildFile; fileRef = 99D3168ADFE03596ED5D7E8D4E6932BD /* RCTModuleData.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; 96A00C011A72200F5C719AA69C379BFB /* color_cache_utils.h in Headers */ = {isa = PBXBuildFile; fileRef = 726D3479A42B94820104FFB82565ADF8 /* color_cache_utils.h */; settings = {ATTRIBUTES = (Project, ); }; }; 96B1848EDA12E024991DC71441FB7728 /* lossless_enc_sse2.c in Sources */ = {isa = PBXBuildFile; fileRef = 669E2D815BA85AA4A6BB99088F534BB0 /* lossless_enc_sse2.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 96FEB709959204E0340B06DB34925CF1 /* RCTImageShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = E2E3F51A5DF74BAC1C363A529FF5230E /* RCTImageShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 96FEB9F17F3553A3EACC3D455D3DD5EE /* RCTConvertHelpers.h in Headers */ = {isa = PBXBuildFile; fileRef = 313A426486521590465E09DC26A5D443 /* RCTConvertHelpers.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 96FEB709959204E0340B06DB34925CF1 /* RCTImageShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = D075C71D4C0C39F67DE3C7451916A577 /* RCTImageShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 96FEB9F17F3553A3EACC3D455D3DD5EE /* RCTConvertHelpers.h in Headers */ = {isa = PBXBuildFile; fileRef = 365041740810955DB1449E165C1D4204 /* RCTConvertHelpers.h */; settings = {ATTRIBUTES = (Project, ); }; }; 9704F9F1F14DAD1518EDEB3FAB732873 /* FIRDiagnosticsData.h in Headers */ = {isa = PBXBuildFile; fileRef = F9FDF1E88D043740EACFF1DC73E36B23 /* FIRDiagnosticsData.h */; settings = {ATTRIBUTES = (Project, ); }; }; 97094C87F27838DB2641D5B3F6F747AB /* RSKImageCropper-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 52EB1989DFD74CEB5377A42F0481FCAC /* RSKImageCropper-dummy.m */; }; 9723ED2F504638D6345AE9D73E21F620 /* FIRInstanceIDURLQueryItem.h in Headers */ = {isa = PBXBuildFile; fileRef = 77028BA581AF00AEF7C147D7449E82B9 /* FIRInstanceIDURLQueryItem.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9736808E3A6D9D08A971A877C047E296 /* RCTBaseTextShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = E7ED923F9585210CE8597F266367124E /* RCTBaseTextShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9736808E3A6D9D08A971A877C047E296 /* RCTBaseTextShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = 396A93D0FB42E576209E2DFBD6213ACD /* RCTBaseTextShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; 9736BDADECA441A7D829AB881E1B8B15 /* GDTCORClock.h in Headers */ = {isa = PBXBuildFile; fileRef = 1A5B8DD3BD08B970140758525F472335 /* GDTCORClock.h */; settings = {ATTRIBUTES = (Project, ); }; }; 979243DB7BF5C1BFB5966534EA7F7651 /* FirebaseCore-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = ABFB99715FD05FB4DB35E948155D825C /* FirebaseCore-dummy.m */; }; 9796980DC5E2693A40E90235CE55CA24 /* FIRConfigurationInternal.h in Headers */ = {isa = PBXBuildFile; fileRef = 4BB3E1A796EA4028EC6374B3EACD53CE /* FIRConfigurationInternal.h */; settings = {ATTRIBUTES = (Project, ); }; }; 97B4C27248C45EFA7B1613C6F8F83C79 /* SDImageCachesManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 1FF50E5ECFD2E8272C61A10AF4ED50A1 /* SDImageCachesManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 97DEFB4339250260BD5B4EFF58006D2A /* RCTConvert.h in Headers */ = {isa = PBXBuildFile; fileRef = AC187AB10FB11B8FC0724A0C54F25A6D /* RCTConvert.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 97ED312B0474017444E6379DC3C4BAB7 /* Utils.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 4ECEC10A3DC3CDCA5B92F4E88D2416F4 /* Utils.cpp */; settings = {COMPILER_FLAGS = "-fno-omit-frame-pointer -fexceptions -Wall -Werror -std=c++1y -fPIC -fno-objc-arc"; }; }; + 97DEFB4339250260BD5B4EFF58006D2A /* RCTConvert.h in Headers */ = {isa = PBXBuildFile; fileRef = 6D7ED3AC941C8C83AA4EA061C458DE4F /* RCTConvert.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 97ED312B0474017444E6379DC3C4BAB7 /* Utils.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1B027AE931A8EFEE85CE5F1CE684D726 /* Utils.cpp */; settings = {COMPILER_FLAGS = "-fno-omit-frame-pointer -fexceptions -Wall -Werror -std=c++1y -fPIC -fno-objc-arc"; }; }; 980D90F8772164DA4D739F9A2811B7A7 /* UIView+WebCacheOperation.m in Sources */ = {isa = PBXBuildFile; fileRef = DCA1074616EEF1BC09293FE2105C9CFC /* UIView+WebCacheOperation.m */; }; - 9824466925699D70D12255531354CA4B /* Color+Interpolation.m in Sources */ = {isa = PBXBuildFile; fileRef = 16DD327792446E00B2FCA87EDB058042 /* Color+Interpolation.m */; }; - 988D75C014F94B7584204ACED46F3975 /* RNFirebaseAdMobBannerManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 98C1316FCB22EDA6317DCA981F721C04 /* RNFirebaseAdMobBannerManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 98AB2900FAC5CE54700374DEF87D2603 /* REAClockNodes.h in Headers */ = {isa = PBXBuildFile; fileRef = 0E241BA696C3CD7E8FC8B617D4DD2211 /* REAClockNodes.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9824466925699D70D12255531354CA4B /* Color+Interpolation.m in Sources */ = {isa = PBXBuildFile; fileRef = 1B3D2651BD7200B68EF1D5F78CD17540 /* Color+Interpolation.m */; }; + 988D75C014F94B7584204ACED46F3975 /* RNFirebaseAdMobBannerManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 921669BDFA8122F90068B29D548AC083 /* RNFirebaseAdMobBannerManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 98AB2900FAC5CE54700374DEF87D2603 /* REAClockNodes.h in Headers */ = {isa = PBXBuildFile; fileRef = C29520914DEC7AE5CCD911A42C68BF0C /* REAClockNodes.h */; settings = {ATTRIBUTES = (Project, ); }; }; 98BC38F964FA856EBFF4A1910983AD93 /* FIRCoreDiagnosticsConnector.m in Sources */ = {isa = PBXBuildFile; fileRef = 5DB602E4418A6458062E66FDBE8939FB /* FIRCoreDiagnosticsConnector.m */; }; - 98C4F8C2F74808C13CC9FBBC7D411999 /* es.lproj in Resources */ = {isa = PBXBuildFile; fileRef = 8192956884A0037E0B68630BAE6242CE /* es.lproj */; }; - 990C114FE36C3BA307A4CEC634A01D41 /* TurboCxxModule.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 23776C1B0E8657F226F01CD3497C554B /* TurboCxxModule.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 98C4F8C2F74808C13CC9FBBC7D411999 /* es.lproj in Resources */ = {isa = PBXBuildFile; fileRef = E6CA66711B954C36A010B6163B4B3200 /* es.lproj */; }; + 990C114FE36C3BA307A4CEC634A01D41 /* TurboCxxModule.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D08A9161C10FA43A9478466E564BA91B /* TurboCxxModule.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; 991970762AB939C8EF22E39E60BA98A9 /* FIRInstanceIDCombinedHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = CCE294EC7F18FA41E37CBBE707B45FEA /* FIRInstanceIDCombinedHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; 9919A951AA1C3643BC9A0FB4E7B89D34 /* FIRInstanceIDCheckinStore.h in Headers */ = {isa = PBXBuildFile; fileRef = 5D7200E0CD187410B1D095CC51FF6E72 /* FIRInstanceIDCheckinStore.h */; settings = {ATTRIBUTES = (Project, ); }; }; 991C9DFB4E1EBB20D56E31715E457B50 /* lossless.c in Sources */ = {isa = PBXBuildFile; fileRef = 15B61266CE79A06337D4E2231EBAF1DE /* lossless.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 992CB0C6A03D842795BDF2045C33951E /* RNDocumentPicker.m in Sources */ = {isa = PBXBuildFile; fileRef = 34C8101D476E1C5E09D71D8968D53742 /* RNDocumentPicker.m */; }; + 992CB0C6A03D842795BDF2045C33951E /* RNDocumentPicker.m in Sources */ = {isa = PBXBuildFile; fileRef = B26E3150918CB4B6EFEBBCEE4ED286E7 /* RNDocumentPicker.m */; }; 993DEE091D2ECD262F17F281E60653C7 /* thread_utils.h in Headers */ = {isa = PBXBuildFile; fileRef = 36F488E2824DFEFCE2DA5121F3EFF1AF /* thread_utils.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 995C56C42E9021CB2C821060C20D5AAE /* YGLayout.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 6C7AD7AA57B41A571BB9B7279D8BC0C7 /* YGLayout.cpp */; settings = {COMPILER_FLAGS = "-fno-omit-frame-pointer -fexceptions -Wall -Werror -std=c++1y -fPIC -fno-objc-arc"; }; }; - 995F57F6E3A8F8F3F0CB975427339ADC /* TurboModuleBinding.h in Headers */ = {isa = PBXBuildFile; fileRef = F0EF5EDFFDC6F580507F02090FDF7C7E /* TurboModuleBinding.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 998FBF05A1D5B4142E092BF051F89BE0 /* ARTRadialGradient.h in Headers */ = {isa = PBXBuildFile; fileRef = 5E7B1861001959FFBD718B8E8C31814E /* ARTRadialGradient.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 99F4ED1427EE4D62E5939F2D49FF3823 /* YGMacros.h in Headers */ = {isa = PBXBuildFile; fileRef = D82E58C035AE88E8480F07CC8AEAEEF1 /* YGMacros.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9A538510B4D21C44538FDAEE7F25BA4E /* experiments-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = D068AA010E5068DD76917E39E0E3352A /* experiments-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 995C56C42E9021CB2C821060C20D5AAE /* YGLayout.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 7C957AEEBE8732084F3E9060381BF81B /* YGLayout.cpp */; settings = {COMPILER_FLAGS = "-fno-omit-frame-pointer -fexceptions -Wall -Werror -std=c++1y -fPIC -fno-objc-arc"; }; }; + 995F57F6E3A8F8F3F0CB975427339ADC /* TurboModuleBinding.h in Headers */ = {isa = PBXBuildFile; fileRef = CC1A8422AE202E45008D12C095D7CFD2 /* TurboModuleBinding.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 998FBF05A1D5B4142E092BF051F89BE0 /* ARTRadialGradient.h in Headers */ = {isa = PBXBuildFile; fileRef = 51C377E66CEC117793ABD7B709341B91 /* ARTRadialGradient.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 99F4ED1427EE4D62E5939F2D49FF3823 /* YGMacros.h in Headers */ = {isa = PBXBuildFile; fileRef = A5214F5196D7E17C1062B99B2BB0E766 /* YGMacros.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9A538510B4D21C44538FDAEE7F25BA4E /* experiments-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 77FCC32F6B908133422A8A76316F670F /* experiments-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; 9A563C719409A7F1D2A79F1A491DCCB1 /* types.h in Headers */ = {isa = PBXBuildFile; fileRef = 2F373F964FD76A572A5BB6D473B3233B /* types.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9A5AE9F5B12B24817DC0CF360F3781A4 /* BSG_KSMach.h in Headers */ = {isa = PBXBuildFile; fileRef = D97FE7AC856985BE11B7345F38491585 /* BSG_KSMach.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9A5AE9F5B12B24817DC0CF360F3781A4 /* BSG_KSMach.h in Headers */ = {isa = PBXBuildFile; fileRef = 77D68116CBB0F3E14F0F7342A3EECFEE /* BSG_KSMach.h */; settings = {ATTRIBUTES = (Project, ); }; }; 9A6584332A48346E435E1681FAF817BF /* alpha_processing_neon.c in Sources */ = {isa = PBXBuildFile; fileRef = AF0ED6FD0E89DAD5362477D5AFF91A2E /* alpha_processing_neon.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; 9AD7C3DFE9A609436008F7DB4E0F1C59 /* SDWebImageDownloaderOperation.h in Headers */ = {isa = PBXBuildFile; fileRef = 2DAA01CE0749CD75B5D864D9C3DB8B11 /* SDWebImageDownloaderOperation.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9AE25D78D388B01F02FAF32C7D81B390 /* RNCCameraRollManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 2E778981D37C53A0E35AF123EFF341D0 /* RNCCameraRollManager.m */; }; - 9B0328A157A59821F094F7E47F1F3543 /* EXAV.m in Sources */ = {isa = PBXBuildFile; fileRef = 8567D98C1156641848CB1C85449D720D /* EXAV.m */; }; - 9B44C525E5FB5F51CCDE075656F184DA /* RCTWebSocketModule.h in Headers */ = {isa = PBXBuildFile; fileRef = CB5456F379D19780324568286FC790F0 /* RCTWebSocketModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9B5E58BCF1985EAC277DDBFCB91F0ECA /* ARTSurfaceViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = E069EEC391BFDC087401924FA4673F28 /* ARTSurfaceViewManager.m */; }; - 9B8780B037E6D0A089E2EDDD8E87CDD4 /* RCTProfile.m in Sources */ = {isa = PBXBuildFile; fileRef = 8620E75DBF5B7D56827F270F2CDDD9DF /* RCTProfile.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 9AE25D78D388B01F02FAF32C7D81B390 /* RNCCameraRollManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 6E81FABE2BD798CF26BA5C238122815E /* RNCCameraRollManager.m */; }; + 9B0328A157A59821F094F7E47F1F3543 /* EXAV.m in Sources */ = {isa = PBXBuildFile; fileRef = B2E4F4CDECA5C51A7A1BB9752146FE6D /* EXAV.m */; }; + 9B44C525E5FB5F51CCDE075656F184DA /* RCTWebSocketModule.h in Headers */ = {isa = PBXBuildFile; fileRef = DADC2B23E659B1845C0F16574087D8D3 /* RCTWebSocketModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9B5E58BCF1985EAC277DDBFCB91F0ECA /* ARTSurfaceViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = E96ADA73666CCE525C77F89BF7AB9B68 /* ARTSurfaceViewManager.m */; }; + 9B8780B037E6D0A089E2EDDD8E87CDD4 /* RCTProfile.m in Sources */ = {isa = PBXBuildFile; fileRef = 55243D276BCCCAEF309D004B5F9BAEBA /* RCTProfile.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; 9BA3070F2D82AB8E6B229971E126D4B2 /* upsampling_msa.c in Sources */ = {isa = PBXBuildFile; fileRef = E10C2950FAF761DCACFC19CB9D52CF9C /* upsampling_msa.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 9C43EFFC945AFDD1BCA2FB1AF208CFA2 /* RCTTransformAnimatedNode.m in Sources */ = {isa = PBXBuildFile; fileRef = F04971D96A1D7D43DA2C2611338EDBFC /* RCTTransformAnimatedNode.m */; }; + 9C43EFFC945AFDD1BCA2FB1AF208CFA2 /* RCTTransformAnimatedNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 95EA7F97D487D4E28EA607752A53D9A5 /* RCTTransformAnimatedNode.m */; }; 9C616301E3564A11354F44BBC19779DD /* SDWebImageOptionsProcessor.m in Sources */ = {isa = PBXBuildFile; fileRef = 76870B32976CD2CF19434FE44E4DAB9E /* SDWebImageOptionsProcessor.m */; }; 9C8A0D00A5379B1414E3ECFAB83E213E /* FirebaseInstallations-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = F3C820FC2BBE1761DA1AA527AA0093BF /* FirebaseInstallations-dummy.m */; }; - 9CA68A554C6C2C6DCEEFB7A64389FCFE /* RCTSinglelineTextInputViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = ECB011A0F5FA23F0C76DAD06C1CB0CBE /* RCTSinglelineTextInputViewManager.m */; }; - 9CB9FE419E53CCA57DA123E4F5176E8E /* RCTTurboModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 57B5741DCAD75447DDEC71C6E58CD217 /* RCTTurboModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9CA68A554C6C2C6DCEEFB7A64389FCFE /* RCTSinglelineTextInputViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = A723F44FAE5881611020AE90C27E625A /* RCTSinglelineTextInputViewManager.m */; }; + 9CB9FE419E53CCA57DA123E4F5176E8E /* RCTTurboModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 02A52C18AFAA01DCA83FB5093702078F /* RCTTurboModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; 9CE103A0E1FF2B3FAABC3B449BD8D735 /* symbolize.cc in Sources */ = {isa = PBXBuildFile; fileRef = F1D65D982EF85292BB9FDEA34BBE516E /* symbolize.cc */; settings = {COMPILER_FLAGS = "-Wno-shorten-64-to-32"; }; }; - 9CED9EE5CB7376FF7FB07C9F43879FEC /* FBReactNativeSpec.h in Headers */ = {isa = PBXBuildFile; fileRef = A58343B7048068BA0537B274CBCBE64F /* FBReactNativeSpec.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9D1F18778A897B0C96D5297BA8104478 /* RCTDeviceInfo.m in Sources */ = {isa = PBXBuildFile; fileRef = 7FB983A632C1D1A294AAF50E8BCD9BAD /* RCTDeviceInfo.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 9D6AEC2BADA6415B32183279535FC3FD /* RNRotationHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = 2679C9C2E3B6F0640D6DD9B7D603BC4E /* RNRotationHandler.m */; }; - 9D7095896EAC7F5FD443B80112211022 /* threadsafe.h in Headers */ = {isa = PBXBuildFile; fileRef = 2BEC937B09574F427F2B45A82AD5CABF /* threadsafe.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9DE2621FE6687E74C85962E58E803760 /* RCTReconnectingWebSocket.m in Sources */ = {isa = PBXBuildFile; fileRef = 247FFC6F2A28AE96DFD1F1E89C952983 /* RCTReconnectingWebSocket.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 9DE4DDE399B842FC926F9E57D9A45942 /* RCTInputAccessoryViewContent.m in Sources */ = {isa = PBXBuildFile; fileRef = 7DEB2FA8CEE41968D60F7D3E00E2C27D /* RCTInputAccessoryViewContent.m */; }; - 9DE9270C04172DD40D69B6D9546516B9 /* RNCSlider.h in Headers */ = {isa = PBXBuildFile; fileRef = F74EE16B4E75BA0487C801D730BDA2E5 /* RNCSlider.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9E00A71835F74BD9E7791965749B0D68 /* UMDefines.h in Headers */ = {isa = PBXBuildFile; fileRef = 00E88DCCC45AE7E2AD5AD3CF3AB8A7CE /* UMDefines.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9E04D8058BC6847CAC65773EED54D05C /* RNFirebaseFirestoreDocumentReference.h in Headers */ = {isa = PBXBuildFile; fileRef = 02EF78E7DCBF02EDF3AE8C96BA83811D /* RNFirebaseFirestoreDocumentReference.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9E35AF16FA811ED54521FD4E6352E394 /* REAEventNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 424A17DAC007724F7D5AE614779F3E3F /* REAEventNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9E3FDFA5FE43DF56A9E6F0E2ADFD0521 /* REATransition.h in Headers */ = {isa = PBXBuildFile; fileRef = C22F1A78A1843F70163F5A77E0EB9521 /* REATransition.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9CED9EE5CB7376FF7FB07C9F43879FEC /* FBReactNativeSpec.h in Headers */ = {isa = PBXBuildFile; fileRef = 838F080F431E7065A2947FAA1E85053E /* FBReactNativeSpec.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9D1F18778A897B0C96D5297BA8104478 /* RCTDeviceInfo.m in Sources */ = {isa = PBXBuildFile; fileRef = 158AB63A4F769D06A1F3E7CF24957D83 /* RCTDeviceInfo.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 9D6AEC2BADA6415B32183279535FC3FD /* RNRotationHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = 7B7EB7E1FAEAD6D700871A354AEFEF52 /* RNRotationHandler.m */; }; + 9D7095896EAC7F5FD443B80112211022 /* threadsafe.h in Headers */ = {isa = PBXBuildFile; fileRef = D416471368066B2302F1B793CB4E24D7 /* threadsafe.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9DE2621FE6687E74C85962E58E803760 /* RCTReconnectingWebSocket.m in Sources */ = {isa = PBXBuildFile; fileRef = A2692B01E0F056C61892A9B46420A99C /* RCTReconnectingWebSocket.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 9DE4DDE399B842FC926F9E57D9A45942 /* RCTInputAccessoryViewContent.m in Sources */ = {isa = PBXBuildFile; fileRef = 8BA996A3669B72AD5B4B7147E6BED823 /* RCTInputAccessoryViewContent.m */; }; + 9DE9270C04172DD40D69B6D9546516B9 /* RNCSlider.h in Headers */ = {isa = PBXBuildFile; fileRef = 0C9035805E189D647067EF790B3332FC /* RNCSlider.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9E00A71835F74BD9E7791965749B0D68 /* UMDefines.h in Headers */ = {isa = PBXBuildFile; fileRef = 6FA8A402A2AD70D9944B47FAAB7ED5A0 /* UMDefines.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9E04D8058BC6847CAC65773EED54D05C /* RNFirebaseFirestoreDocumentReference.h in Headers */ = {isa = PBXBuildFile; fileRef = 53F14BDD5F4FC4AF0FEA5519BD548562 /* RNFirebaseFirestoreDocumentReference.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9E35AF16FA811ED54521FD4E6352E394 /* REAEventNode.h in Headers */ = {isa = PBXBuildFile; fileRef = BEEB0B184AA1DF1DA7EA01E3CEF7A67F /* REAEventNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9E3FDFA5FE43DF56A9E6F0E2ADFD0521 /* REATransition.h in Headers */ = {isa = PBXBuildFile; fileRef = 23407D404212839083FA402ED6C9CF32 /* REATransition.h */; settings = {ATTRIBUTES = (Project, ); }; }; 9E69C58844ADDABB79A1AF60899FB6AB /* FBLPromise+Retry.h in Headers */ = {isa = PBXBuildFile; fileRef = 933895F5689A726BB5DBED7880848CEA /* FBLPromise+Retry.h */; settings = {ATTRIBUTES = (Project, ); }; }; 9E74CD4E4333A1722FF7057A7D841D78 /* SDFileAttributeHelper.h in Headers */ = {isa = PBXBuildFile; fileRef = AC5BBA5FEB96505850A90FBE111B046F /* SDFileAttributeHelper.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9E9C9344BE1DA6BBA542ECAD750A0B53 /* MessageQueueThread.h in Headers */ = {isa = PBXBuildFile; fileRef = 389643E2CEF07BCBF0B588BEE771B98F /* MessageQueueThread.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9EAA160F40B7AEA5F8323BF14AE1AD73 /* BSG_KSSystemCapabilities.h in Headers */ = {isa = PBXBuildFile; fileRef = 2241A481A38ECBDC82FD7B8014278C90 /* BSG_KSSystemCapabilities.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9ED53ABBF63AF508BF3A45A8055BF25C /* ARTTextFrame.h in Headers */ = {isa = PBXBuildFile; fileRef = 5AA9AAE62BCA1EB60DEE9F7AB174DA07 /* ARTTextFrame.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9EF008BB17B5795A9CDE33AF1AA4EBE4 /* experiments.h in Headers */ = {isa = PBXBuildFile; fileRef = 0DDDE6D32029298B9F3CBB96B9F4BE7B /* experiments.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9F047DDB8969818C22E71086624790CE /* RCTTiming.m in Sources */ = {isa = PBXBuildFile; fileRef = 89898C341B98EDD11F13631BF24D54CD /* RCTTiming.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 9E9C9344BE1DA6BBA542ECAD750A0B53 /* MessageQueueThread.h in Headers */ = {isa = PBXBuildFile; fileRef = 49B4DEB1DAC016ECA7C46AB4A688571B /* MessageQueueThread.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9EAA160F40B7AEA5F8323BF14AE1AD73 /* BSG_KSSystemCapabilities.h in Headers */ = {isa = PBXBuildFile; fileRef = 2D95F855C66A73E8B8AF4EDF5C8496B2 /* BSG_KSSystemCapabilities.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9ED53ABBF63AF508BF3A45A8055BF25C /* ARTTextFrame.h in Headers */ = {isa = PBXBuildFile; fileRef = AA104A2D8EC4A9DCF9282439173DB1BB /* ARTTextFrame.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9EF008BB17B5795A9CDE33AF1AA4EBE4 /* experiments.h in Headers */ = {isa = PBXBuildFile; fileRef = C3CF3BCDC0EF632B589861EFDDA5B31E /* experiments.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9F047DDB8969818C22E71086624790CE /* RCTTiming.m in Sources */ = {isa = PBXBuildFile; fileRef = 4BD96B9E416EC595DA0024B3572F9902 /* RCTTiming.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; 9F56E740FDB8B87EE194B5FC6DF23786 /* UIImage+MemoryCacheCost.h in Headers */ = {isa = PBXBuildFile; fileRef = 5469BFF90FA3FA7460B0D79CE5197D1D /* UIImage+MemoryCacheCost.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9F608AE2E0848CE8858F19F0376F4B3E /* instrumentation.h in Headers */ = {isa = PBXBuildFile; fileRef = BE9A9A0EFCA4E15B2407B5C7A7305A67 /* instrumentation.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9F608AE2E0848CE8858F19F0376F4B3E /* instrumentation.h in Headers */ = {isa = PBXBuildFile; fileRef = C70A2F6A9FEA88B026D72808AAFBA232 /* instrumentation.h */; settings = {ATTRIBUTES = (Project, ); }; }; 9F69F8135343C51A14ECEC3DE3FEC05F /* format_constants.h in Headers */ = {isa = PBXBuildFile; fileRef = 6638D4A39DF660C0D118FE1FB6420263 /* format_constants.h */; settings = {ATTRIBUTES = (Project, ); }; }; 9F6B4F752D0316DC0CC2C2E58EC1A546 /* FIRInstanceIDStringEncoding.m in Sources */ = {isa = PBXBuildFile; fileRef = 580123A082788AF220ECF528D65896DE /* FIRInstanceIDStringEncoding.m */; }; - 9F8CC158594C16A93BF79894AE652576 /* event.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 7BA456D90B2D1CBE37FDB4C1E430C2CE /* event.cpp */; settings = {COMPILER_FLAGS = "-fno-omit-frame-pointer -fexceptions -Wall -Werror -std=c++1y -fPIC -fno-objc-arc"; }; }; - 9FCA0C85E502C92ACFA86EABD32B2224 /* react-native-orientation-locker-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = E34B64DC01D900F9527A6FDCA9F821B1 /* react-native-orientation-locker-dummy.m */; }; - A02478583635DC43AF9D1BA278F4ABDD /* RNFetchBlobNetwork.h in Headers */ = {isa = PBXBuildFile; fileRef = 12861D83F34D4F2AF899BC41682F2AB2 /* RNFetchBlobNetwork.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A031A8D4C70ABFA2E6794E0A997A259C /* react-native-background-timer-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = B561081BA9CB53D078948C04A06AED0D /* react-native-background-timer-dummy.m */; }; - A0822D817180C17B9F6EC58E9AFE7282 /* RCTUtils.m in Sources */ = {isa = PBXBuildFile; fileRef = 4CF67E6DFF68BF36E29D90A416235194 /* RCTUtils.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - A0927C05EBC9079407AC005BC6E1373E /* RCTBaseTextInputShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = EB5C192F043DD7CD066E5CB4D22CCE92 /* RCTBaseTextInputShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A0AF090921E033135BA303A51E86C8D2 /* JSCRuntime.h in Headers */ = {isa = PBXBuildFile; fileRef = 3CBA8541EA1AAE2E10B8010FFD897204 /* JSCRuntime.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A0BE197B645C6C6537575EAF6F1A8CDE /* RCTConvert+RNNotifications.h in Headers */ = {isa = PBXBuildFile; fileRef = 0ABA0FEDA324BA525B5DEFBB2DB4CF06 /* RCTConvert+RNNotifications.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9F8CC158594C16A93BF79894AE652576 /* event.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 05478CF18D13F38BADF007E74C20948D /* event.cpp */; settings = {COMPILER_FLAGS = "-fno-omit-frame-pointer -fexceptions -Wall -Werror -std=c++1y -fPIC -fno-objc-arc"; }; }; + 9FCA0C85E502C92ACFA86EABD32B2224 /* react-native-orientation-locker-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 6D2763003E8CCA2E51AFD45211947284 /* react-native-orientation-locker-dummy.m */; }; + A02478583635DC43AF9D1BA278F4ABDD /* RNFetchBlobNetwork.h in Headers */ = {isa = PBXBuildFile; fileRef = 0FF4C273A6A8B5CE4DDB5A8BFBBE0FF4 /* RNFetchBlobNetwork.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A031A8D4C70ABFA2E6794E0A997A259C /* react-native-background-timer-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = A304D665E5550C42813C192A9DD81A9A /* react-native-background-timer-dummy.m */; }; + A0822D817180C17B9F6EC58E9AFE7282 /* RCTUtils.m in Sources */ = {isa = PBXBuildFile; fileRef = F4C57C7D06C6486CEBFF4CD63073F517 /* RCTUtils.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + A0927C05EBC9079407AC005BC6E1373E /* RCTBaseTextInputShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = 042F8046425845024B7B158054E637AC /* RCTBaseTextInputShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A0AF090921E033135BA303A51E86C8D2 /* JSCRuntime.h in Headers */ = {isa = PBXBuildFile; fileRef = CD51A155264523A3BC8E61514600183A /* JSCRuntime.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A0BE197B645C6C6537575EAF6F1A8CDE /* RCTConvert+RNNotifications.h in Headers */ = {isa = PBXBuildFile; fileRef = 5A130F9A600D0594233949331634285C /* RCTConvert+RNNotifications.h */; settings = {ATTRIBUTES = (Project, ); }; }; A11DF1263B7EBD23B3D95FF9A3F68E8E /* SDImageCache.h in Headers */ = {isa = PBXBuildFile; fileRef = 2AA5FDE5D455838C40D597792B73FDCC /* SDImageCache.h */; settings = {ATTRIBUTES = (Project, ); }; }; A134CBE0553F5F3339A4A20A87F18E3C /* filters_utils.c in Sources */ = {isa = PBXBuildFile; fileRef = D53A23815D628A7C3EFFC59488C8EA44 /* filters_utils.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - A13E40901AA20224032AFB2AD4D04744 /* RCTErrorCustomizer.h in Headers */ = {isa = PBXBuildFile; fileRef = B92470A218086B50E25F897D11673DB9 /* RCTErrorCustomizer.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A13E40901AA20224032AFB2AD4D04744 /* RCTErrorCustomizer.h in Headers */ = {isa = PBXBuildFile; fileRef = A5B5A06151FF53640D69899E12C43896 /* RCTErrorCustomizer.h */; settings = {ATTRIBUTES = (Project, ); }; }; A1A7D185D68859C10D0EE1DE4E8063B2 /* FBLPromise+Validate.m in Sources */ = {isa = PBXBuildFile; fileRef = 1959F3ECFABC8A4D200C1715ED0696A0 /* FBLPromise+Validate.m */; }; A1A8801E913E5175E5ECF693F318AA79 /* GULReachabilityChecker.h in Headers */ = {isa = PBXBuildFile; fileRef = 13BC4224F66908DB532F9B44C792439A /* GULReachabilityChecker.h */; settings = {ATTRIBUTES = (Project, ); }; }; A1FA306C12F8FDC6C3E22551518871CC /* GULNetworkMessageCode.h in Headers */ = {isa = PBXBuildFile; fileRef = 0383EBC057B08B3B4D8E2D06F7D33F38 /* GULNetworkMessageCode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A21455566701C95DA8DC8AD067452A21 /* CoreModulesPlugins.h in Headers */ = {isa = PBXBuildFile; fileRef = E4DEF8F85AF9CBFF8F00C0D795DDD46F /* CoreModulesPlugins.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A21AA461DFBE94B5DA7E5BEB211CE665 /* RCTConvert+FFFastImage.m in Sources */ = {isa = PBXBuildFile; fileRef = 9DEE816A6D7411DCF8B13E18DFC6C8A0 /* RCTConvert+FFFastImage.m */; }; + A21455566701C95DA8DC8AD067452A21 /* CoreModulesPlugins.h in Headers */ = {isa = PBXBuildFile; fileRef = 71DA3D9D1CD248E7C6FB7891802684D8 /* CoreModulesPlugins.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A21AA461DFBE94B5DA7E5BEB211CE665 /* RCTConvert+FFFastImage.m in Sources */ = {isa = PBXBuildFile; fileRef = 4411C08EC7AD9760E3EE9B61EE00D50A /* RCTConvert+FFFastImage.m */; }; A21ED806195A73620CB21657E05C7188 /* FIRInstanceIDTokenInfo.m in Sources */ = {isa = PBXBuildFile; fileRef = 5372D71E7AAFE0D044943DB958C2F428 /* FIRInstanceIDTokenInfo.m */; }; A25FFD696888820B56D9C79F5B2EAEC3 /* NSData+ImageContentType.h in Headers */ = {isa = PBXBuildFile; fileRef = 336D56D9272DA9C7A6F5356D0DB9B248 /* NSData+ImageContentType.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A2A4D768671DD4976E9B00C5DD8A08DD /* RCTVersion.m in Sources */ = {isa = PBXBuildFile; fileRef = 6C931CF72C07DEFC287AEA959CE943E2 /* RCTVersion.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - A2A70CD096FE24B7E48EA8C86BC112BD /* EXAudioRecordingPermissionRequester.h in Headers */ = {isa = PBXBuildFile; fileRef = C3CAAFE28F985B36F0EBF1BA2885D07F /* EXAudioRecordingPermissionRequester.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A2BB5FDD99C8D8A31F91D6698801CC6F /* EXAVObject.h in Headers */ = {isa = PBXBuildFile; fileRef = CD7A83EF812ADF87E10F39C6C68C64E1 /* EXAVObject.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A2CBE742B99580CC13E8E18D61C8A9A8 /* BugsnagCollections.h in Headers */ = {isa = PBXBuildFile; fileRef = BBF27B43E65A8E0C33985A62B07AF014 /* BugsnagCollections.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A2DADC127EA39A90F16504C0F8D84DA6 /* RCTWebSocketModule.m in Sources */ = {isa = PBXBuildFile; fileRef = 911B61ED93F3F7368413853F322BD53A /* RCTWebSocketModule.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + A2A4D768671DD4976E9B00C5DD8A08DD /* RCTVersion.m in Sources */ = {isa = PBXBuildFile; fileRef = 0E78EEBD99D652B1C1789771217FD6CF /* RCTVersion.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + A2A70CD096FE24B7E48EA8C86BC112BD /* EXAudioRecordingPermissionRequester.h in Headers */ = {isa = PBXBuildFile; fileRef = 818D53D65DB7CA06B66EF9BB15E93985 /* EXAudioRecordingPermissionRequester.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A2BB5FDD99C8D8A31F91D6698801CC6F /* EXAVObject.h in Headers */ = {isa = PBXBuildFile; fileRef = B595F90DB6439247AE7D4AD78CEDB249 /* EXAVObject.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A2CBE742B99580CC13E8E18D61C8A9A8 /* BugsnagCollections.h in Headers */ = {isa = PBXBuildFile; fileRef = 8C0EF90CBF2D12C653918BD3F6E38EFF /* BugsnagCollections.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A2DADC127EA39A90F16504C0F8D84DA6 /* RCTWebSocketModule.m in Sources */ = {isa = PBXBuildFile; fileRef = 13B6AA9C65AFBEE6EF84653AF08E8E3F /* RCTWebSocketModule.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; A348E879FA3330E1712179F5B4FAC236 /* vp8l_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = 872F0037F0BE0480407ABDF7F96FBAF6 /* vp8l_enc.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - A3514C01C8202F3027EFCBE7B89A26D3 /* RCTInputAccessoryView.h in Headers */ = {isa = PBXBuildFile; fileRef = 1E2C8AAD119BED651B2BAF6C020FAD3C /* RCTInputAccessoryView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A356543091BEC90DBF244D36660ECCBB /* RCTModuleData.h in Headers */ = {isa = PBXBuildFile; fileRef = D65E68B93FB3217B03B69F5FC4A4196F /* RCTModuleData.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A3514C01C8202F3027EFCBE7B89A26D3 /* RCTInputAccessoryView.h in Headers */ = {isa = PBXBuildFile; fileRef = 4E9E1910C00EB122C812A55E77E3CE8D /* RCTInputAccessoryView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A356543091BEC90DBF244D36660ECCBB /* RCTModuleData.h in Headers */ = {isa = PBXBuildFile; fileRef = 4F6AC73BDDDC198C27DABE8C51E2BF5D /* RCTModuleData.h */; settings = {ATTRIBUTES = (Project, ); }; }; A361C7D8C652CE224BA016F8E6DD7432 /* SDImageCachesManagerOperation.h in Headers */ = {isa = PBXBuildFile; fileRef = 11C0A683D9914E0CCC77E6DCABB2816C /* SDImageCachesManagerOperation.h */; settings = {ATTRIBUTES = (Project, ); }; }; A381D018508DD7639E2FE4C1A93036BC /* json.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 951EA411C3609031BB767BB3EC28580E /* json.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - A3A1C8CA04A1A2FBE630CD639DB3CF75 /* RCTSpringAnimation.m in Sources */ = {isa = PBXBuildFile; fileRef = 34D7223FF2AE4853BCFF44A79FBEA6E7 /* RCTSpringAnimation.m */; }; - A3B33574C82F38A9087B056DF9CED726 /* EXRemindersRequester.h in Headers */ = {isa = PBXBuildFile; fileRef = 841FF80D5B6AA6B69EABE80C6F2B4B06 /* EXRemindersRequester.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A3C05F4A0CEF28ED7D16AE2076889136 /* RCTBaseTextInputShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = EB5C192F043DD7CD066E5CB4D22CCE92 /* RCTBaseTextInputShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A3F9CB0656A0F4FB806F778CE4BB15DE /* RCTWeakProxy.h in Headers */ = {isa = PBXBuildFile; fileRef = C2F3961FF92C2244C5F6A55A90ADB792 /* RCTWeakProxy.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A3A1C8CA04A1A2FBE630CD639DB3CF75 /* RCTSpringAnimation.m in Sources */ = {isa = PBXBuildFile; fileRef = D17A82E1B8D80E44CA11B7579813C374 /* RCTSpringAnimation.m */; }; + A3B33574C82F38A9087B056DF9CED726 /* EXRemindersRequester.h in Headers */ = {isa = PBXBuildFile; fileRef = E44D6D04119D0FB57843C0F794CF05BC /* EXRemindersRequester.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A3C05F4A0CEF28ED7D16AE2076889136 /* RCTBaseTextInputShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = 042F8046425845024B7B158054E637AC /* RCTBaseTextInputShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A3F9CB0656A0F4FB806F778CE4BB15DE /* RCTWeakProxy.h in Headers */ = {isa = PBXBuildFile; fileRef = B4667F52FE6F3DA21AB467946BCD128B /* RCTWeakProxy.h */; settings = {ATTRIBUTES = (Project, ); }; }; A4093BFD98499872C36D61188865A000 /* SDImageCoder.m in Sources */ = {isa = PBXBuildFile; fileRef = 877F0D1D9A0A956008B6F07FD23EC8B1 /* SDImageCoder.m */; }; - A415AFE0F17D1746DC4BD0CF3E588F4D /* REAPropsNode.h in Headers */ = {isa = PBXBuildFile; fileRef = F6C5D40D80D2E5283D85F6604DEFDCAA /* REAPropsNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A415AFE0F17D1746DC4BD0CF3E588F4D /* REAPropsNode.h in Headers */ = {isa = PBXBuildFile; fileRef = C2A3E54AD95D989768F49547ADA6DB0E /* REAPropsNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; A42284BAEF9A5D75B15BF4EFC4E4C468 /* frame_dec.c in Sources */ = {isa = PBXBuildFile; fileRef = 0B9BD3B6B09CD5A1C2631CF99883907E /* frame_dec.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; A42C59477BEC3A7A4D2CEBD6BC4A4F1E /* yuv_mips_dsp_r2.c in Sources */ = {isa = PBXBuildFile; fileRef = 574C5FDCBE394444827C0B4B3C7DE9A5 /* yuv_mips_dsp_r2.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; A42EF8F9C3AFFECF5B7DFEADA68539A4 /* FBLPromise+Race.h in Headers */ = {isa = PBXBuildFile; fileRef = 7F5EDA23D6D2D1ACE2F5DFFCB0B53C29 /* FBLPromise+Race.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A4856E6938B9050ED0388C83AB428FD1 /* RCTRootShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = DCD07C4900A296C51CC77B4A94FB2133 /* RCTRootShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A4B467E40F7E342592B65F3AEC3D9E97 /* REAFunctionNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 0E63261E3978943F422CBC31D4AEC1FE /* REAFunctionNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A4C63255CAB3DA53A9D697FD7FCC26B5 /* REAValueNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 4E7CE0632EFA00D927BC58194B78874C /* REAValueNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A4DE80D3B1511941AF0D53ACF8AD1D72 /* RCTAnimatedNode.h in Headers */ = {isa = PBXBuildFile; fileRef = CFD89BDD36EFFB95791A0D1BDEE26AF1 /* RCTAnimatedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A4856E6938B9050ED0388C83AB428FD1 /* RCTRootShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = DA11FE95A41E9CFC348E16D89E3989C3 /* RCTRootShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A4B467E40F7E342592B65F3AEC3D9E97 /* REAFunctionNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 2A7AB6D66E7368C61F50FD2D27200B73 /* REAFunctionNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A4C63255CAB3DA53A9D697FD7FCC26B5 /* REAValueNode.h in Headers */ = {isa = PBXBuildFile; fileRef = D9AC424D1A5BC320BF1EC7E2C2F3652D /* REAValueNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A4DE80D3B1511941AF0D53ACF8AD1D72 /* RCTAnimatedNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 9A8D3E5BBBD8684107593E5F4D30283C /* RCTAnimatedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; A4DF3AB01471BD888F4FD4EC2E9A21BE /* FIRComponent.m in Sources */ = {isa = PBXBuildFile; fileRef = 73DF275591A289869A037B732ACCE445 /* FIRComponent.m */; }; A50388445DF10ADD6B22876F3F69E902 /* ssim.c in Sources */ = {isa = PBXBuildFile; fileRef = 2D591C821A51F0825209BC1C05DFFB03 /* ssim.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - A555C6E5ABAA5DB1F62A09D2BC49DA51 /* RCTTurboModule.mm in Sources */ = {isa = PBXBuildFile; fileRef = 91999577661B53D8F919F97505048E93 /* RCTTurboModule.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - A55F73E73A81AB3E9F61D647CE2A0FFF /* CoreModulesPlugins.mm in Sources */ = {isa = PBXBuildFile; fileRef = D3FDD7D93C571A667E0831F1A88BF76E /* 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"; }; }; - A584EA45113B1382E33AC5AA20103087 /* RNNotificationsStore.h in Headers */ = {isa = PBXBuildFile; fileRef = 3F0E8CF1A9335A8CAB8D7D7E114E0F9F /* RNNotificationsStore.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A5969DC380832572368B9D636242BD6B /* RCTRootShadowView.m in Sources */ = {isa = PBXBuildFile; fileRef = 1107E9928ACA566771642BF6777A8CCC /* RCTRootShadowView.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + A555C6E5ABAA5DB1F62A09D2BC49DA51 /* RCTTurboModule.mm in Sources */ = {isa = PBXBuildFile; fileRef = E72F6D88A4D54F927AB028187927124D /* RCTTurboModule.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + A55F73E73A81AB3E9F61D647CE2A0FFF /* CoreModulesPlugins.mm in Sources */ = {isa = PBXBuildFile; fileRef = 502A95436A12BB1AF9E01165BB945574 /* 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"; }; }; + A584EA45113B1382E33AC5AA20103087 /* RNNotificationsStore.h in Headers */ = {isa = PBXBuildFile; fileRef = 935A072C2C83A8EBEA49BE04DE9E1AB4 /* RNNotificationsStore.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A5969DC380832572368B9D636242BD6B /* RCTRootShadowView.m in Sources */ = {isa = PBXBuildFile; fileRef = 4EE9424A584CECAA86E9F4751BDEC443 /* RCTRootShadowView.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; A5F411136D291A38CCB996E7E68DE213 /* GDTCORReachability_Private.h in Headers */ = {isa = PBXBuildFile; fileRef = FF4A1A447F74EECB8C2AC14492FA6CA0 /* GDTCORReachability_Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; A5F7A295CE8D9AB5DE3F0B75200DD1A2 /* io_dec.c in Sources */ = {isa = PBXBuildFile; fileRef = B5609AB6E46F0A418839F14921E70AE4 /* io_dec.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - A624B26C6E8893F180544B2F414693D5 /* RCTWebSocketExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = 6D0868376A35A8D3AC4D814FDC6147A4 /* RCTWebSocketExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A624B26C6E8893F180544B2F414693D5 /* RCTWebSocketExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = CA133AB547F9EAFAB10F3D5C26F169F0 /* RCTWebSocketExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; A702694C291529C5D08B2DCFB39628F3 /* GDTCOREvent.m in Sources */ = {isa = PBXBuildFile; fileRef = C02C313B7B5553296D2F7158CBE25081 /* GDTCOREvent.m */; }; A7721978FA34EA5CD4BB6F8FD361657D /* filters_sse2.c in Sources */ = {isa = PBXBuildFile; fileRef = 387FDB6229B2B5EDABF7EAFC7EB23979 /* filters_sse2.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - A7C6CA4554F58BB1C409F0F4A97C1656 /* RNVectorIconsManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 80089B9FD3693DFD1248F9C0449EC162 /* RNVectorIconsManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A7D31712AE0D5CAF424772A87D9F71CB /* SRPinningSecurityPolicy.h in Headers */ = {isa = PBXBuildFile; fileRef = D9FFF0DDA092D68ED00FA2A01676FA09 /* SRPinningSecurityPolicy.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A7C6CA4554F58BB1C409F0F4A97C1656 /* RNVectorIconsManager.h in Headers */ = {isa = PBXBuildFile; fileRef = A547E58DF1C01BD35292D94C470A2ED3 /* RNVectorIconsManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; A7FE4D8E743D00ECB115E087D53587C7 /* cost.c in Sources */ = {isa = PBXBuildFile; fileRef = 160856CCFCFA358DCF2AAC3EFA195712 /* cost.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - A826DA3137A89F1502F9B6696FFB8730 /* RCTInspectorDevServerHelper.mm in Sources */ = {isa = PBXBuildFile; fileRef = F3D0F33067B5AF8747BCF9147A7ED29C /* RCTInspectorDevServerHelper.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - A851FE5B4FD2E5AC7FBC0358BAE014A8 /* ARTContainer.h in Headers */ = {isa = PBXBuildFile; fileRef = 8BAC9B9C975D08964BA4AF902A46B471 /* ARTContainer.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A86E645D32DB04BAE7498AC89D9980BB /* RCTHTTPRequestHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = E9D756AB7170118C11C43213A71DD36A /* RCTHTTPRequestHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A826DA3137A89F1502F9B6696FFB8730 /* RCTInspectorDevServerHelper.mm in Sources */ = {isa = PBXBuildFile; fileRef = 72934FFA26AD7BB259682341C8E185F2 /* RCTInspectorDevServerHelper.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + A851FE5B4FD2E5AC7FBC0358BAE014A8 /* ARTContainer.h in Headers */ = {isa = PBXBuildFile; fileRef = BF0931A1447651EF50EE921ABC5C04F3 /* ARTContainer.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A86E645D32DB04BAE7498AC89D9980BB /* RCTHTTPRequestHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = D8056D7F986C2E2EFE85E02C807F757D /* RCTHTTPRequestHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; A86F7C0A488320ED06BFA2B846DA26FA /* RSKInternalUtility.m in Sources */ = {isa = PBXBuildFile; fileRef = 7C78B03E18C3C58965E80B1E11C3CAC7 /* RSKInternalUtility.m */; }; - A88BAD944CC973142AF9C9BF65280C54 /* RCTSafeAreaViewLocalData.m in Sources */ = {isa = PBXBuildFile; fileRef = A6CE4513D9C9CADFCE2E8F239F5276CA /* RCTSafeAreaViewLocalData.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - A891EC8D3D003F2BA49992F3FD7EC76C /* UMLogManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 181E5E7E71CD7EAD5286CAA30021085D /* UMLogManager.m */; }; - A896DBC8DEB8E8304EDEAA0F0AA15B1A /* RCTBaseTextInputShadowView.m in Sources */ = {isa = PBXBuildFile; fileRef = 8A82857178FB6B496F5B0BCE00B320B0 /* RCTBaseTextInputShadowView.m */; }; - A8B6D15DA68092B480483FE020894204 /* EXFileSystemAssetLibraryHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 37A99D280F571F59625B44925CDC9211 /* EXFileSystemAssetLibraryHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A8B8BEB2134D3E68B9907C5A48A04A03 /* RNGestureHandlerDirection.h in Headers */ = {isa = PBXBuildFile; fileRef = BA2347A832724E32FEB50A98EBF28C69 /* RNGestureHandlerDirection.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A8D9C90918B779E9C1A91973D2AF29DE /* React-RCTImage-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = A8CAFD204ED4574FA1360D9560434436 /* React-RCTImage-dummy.m */; }; - A8E90F8A49540C9A192B44F1F7641426 /* RCTRootView.m in Sources */ = {isa = PBXBuildFile; fileRef = 97652E20DB8DBBE8592A74E75E289BCF /* RCTRootView.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - A8F850B0755D926B58BF8EA8DD0A7EF3 /* RCTPackagerConnection.h in Headers */ = {isa = PBXBuildFile; fileRef = 20BD4FDC15FB2DE109484CD34546BF70 /* RCTPackagerConnection.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A9102589774A3FD3F3808AB2F0F83ACA /* RNNativeViewHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 6F779C63F901699AAD271415114C2F4D /* RNNativeViewHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A96BF195A93FBB2FDDC78135932BB359 /* RCTProfileTrampoline-arm64.S in Sources */ = {isa = PBXBuildFile; fileRef = 1495116E22112E9315699DD2CEEC5B15 /* RCTProfileTrampoline-arm64.S */; }; - A9BD36E5B3038DFBDF1438B0D43F6E14 /* RCTModalHostView.m in Sources */ = {isa = PBXBuildFile; fileRef = 88E180936C1EF9C11A746618CD130AE8 /* RCTModalHostView.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - AA4B2C35721761FB29A7BCDF53A358A4 /* QBAlbumsViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 494C09D9FBA204CD6AC46A8EC5B78852 /* QBAlbumsViewController.m */; }; - AA882B59899551990442E64FD68EBA93 /* NativeModule.h in Headers */ = {isa = PBXBuildFile; fileRef = DAE8A2391847858777EC8ACFC83F1826 /* NativeModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; - AA89F071A632E2E5F4E3BE02B3F0345E /* RCTViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 54F9073EBF7C4E026B1A0B65EA673223 /* RCTViewManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + A88BAD944CC973142AF9C9BF65280C54 /* RCTSafeAreaViewLocalData.m in Sources */ = {isa = PBXBuildFile; fileRef = 3C0C274DADCDA9D823ED46898B120A65 /* RCTSafeAreaViewLocalData.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + A891EC8D3D003F2BA49992F3FD7EC76C /* UMLogManager.m in Sources */ = {isa = PBXBuildFile; fileRef = F78BAA9318BC3B9495CEC57CE05A095A /* UMLogManager.m */; }; + A896DBC8DEB8E8304EDEAA0F0AA15B1A /* RCTBaseTextInputShadowView.m in Sources */ = {isa = PBXBuildFile; fileRef = C54EB26AA61E208704AAE9D62CA23D1F /* RCTBaseTextInputShadowView.m */; }; + A8B6D15DA68092B480483FE020894204 /* EXFileSystemAssetLibraryHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = C66CC20831BCBEF7702213D8C3355533 /* EXFileSystemAssetLibraryHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A8B8BEB2134D3E68B9907C5A48A04A03 /* RNGestureHandlerDirection.h in Headers */ = {isa = PBXBuildFile; fileRef = A02D2DAD961AAC601903EB6B6D658838 /* RNGestureHandlerDirection.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A8D9C90918B779E9C1A91973D2AF29DE /* React-RCTImage-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = D94EF9D8C49CFF644F0AD13580B65E5C /* React-RCTImage-dummy.m */; }; + A8E90F8A49540C9A192B44F1F7641426 /* RCTRootView.m in Sources */ = {isa = PBXBuildFile; fileRef = DCB0C29BDF1BA538986BF7B1ABE1CD20 /* RCTRootView.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + A8F850B0755D926B58BF8EA8DD0A7EF3 /* RCTPackagerConnection.h in Headers */ = {isa = PBXBuildFile; fileRef = 078C92FD17E4E6B9FCD402E23D22D09D /* RCTPackagerConnection.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A9102589774A3FD3F3808AB2F0F83ACA /* RNNativeViewHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = A0560F8B27270D8FF2B4CFBBBB94AF16 /* RNNativeViewHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A96BF195A93FBB2FDDC78135932BB359 /* RCTProfileTrampoline-arm64.S in Sources */ = {isa = PBXBuildFile; fileRef = D08A231B08E5233EA0462CE87A7CEA26 /* RCTProfileTrampoline-arm64.S */; }; + A9BD36E5B3038DFBDF1438B0D43F6E14 /* RCTModalHostView.m in Sources */ = {isa = PBXBuildFile; fileRef = 5987A792C94C45A6F6CBFDDB76719589 /* RCTModalHostView.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + AA4B2C35721761FB29A7BCDF53A358A4 /* QBAlbumsViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 90E20766F6B425775E572CC15A75ADBE /* QBAlbumsViewController.m */; }; + AA882B59899551990442E64FD68EBA93 /* NativeModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 4E3F51F99A0E125B446201A8E4D8376F /* NativeModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; + AA89F071A632E2E5F4E3BE02B3F0345E /* RCTViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 8F342318793A3822FC62B8389824A93E /* RCTViewManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; AA98E5E760C605F57551D3D6192E5225 /* mips_macro.h in Headers */ = {isa = PBXBuildFile; fileRef = B0C730BFACECB7606E3E03C1D15A4BA2 /* mips_macro.h */; settings = {ATTRIBUTES = (Project, ); }; }; - AAA397302AB9735FEE54E85069DF673B /* RNFetchBlobNetwork.m in Sources */ = {isa = PBXBuildFile; fileRef = 959FE6EF0FD19BB30B1224F7C20003B8 /* RNFetchBlobNetwork.m */; }; - AAC7FD892729AFECE270AE59C8812F5D /* RCTTextView.m in Sources */ = {isa = PBXBuildFile; fileRef = 4B9A98874D6F22FE61A9BC8DE833777F /* RCTTextView.m */; }; - AAD860080DE05A9DB492EA79E7A0059A /* RCTScrollableProtocol.h in Headers */ = {isa = PBXBuildFile; fileRef = BBF53F9C604AB4436239C85D4A730B20 /* RCTScrollableProtocol.h */; settings = {ATTRIBUTES = (Project, ); }; }; + AAA397302AB9735FEE54E85069DF673B /* RNFetchBlobNetwork.m in Sources */ = {isa = PBXBuildFile; fileRef = 4CAC4159EFC9D11139B2370518066769 /* RNFetchBlobNetwork.m */; }; + AAC7FD892729AFECE270AE59C8812F5D /* RCTTextView.m in Sources */ = {isa = PBXBuildFile; fileRef = 08E75F1EC103C1D76F0F2963A1A34459 /* RCTTextView.m */; }; + AAD860080DE05A9DB492EA79E7A0059A /* RCTScrollableProtocol.h in Headers */ = {isa = PBXBuildFile; fileRef = 24EB8B7CF7A55316666DD0A89214CE04 /* RCTScrollableProtocol.h */; settings = {ATTRIBUTES = (Project, ); }; }; AAE02A17D7A26ACCDA5DBF6A441CFE98 /* FIRInstanceIDAuthKeyChain.m in Sources */ = {isa = PBXBuildFile; fileRef = D9C3D3CC551D9381EB6D1805585CF24D /* FIRInstanceIDAuthKeyChain.m */; }; - AAE1BEAAC4E9DC2F0106F98A3DFFBFF8 /* SRRunLoopThread.h in Headers */ = {isa = PBXBuildFile; fileRef = AF74C4A9752B4DCA4C7BFB9D7A1C4156 /* SRRunLoopThread.h */; settings = {ATTRIBUTES = (Project, ); }; }; AAEC54ADA9A9C0A6DD785E903782EFB3 /* ssim_sse2.c in Sources */ = {isa = PBXBuildFile; fileRef = 0F2BEB3203326DA9994D2329F5515A34 /* ssim_sse2.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; AAF05BFDD102FD660418FD7AE198030D /* analysis_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = 61AF1837C4C82F78744ED30517A5031F /* analysis_enc.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - AAFC106D9A09F68152DD13A0B192D702 /* RCTVirtualTextViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 30BA22A2D2F4FAFF76942172910C1E45 /* RCTVirtualTextViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - AAFDC490C197A364E412E59DC6D18FA7 /* RCTImageCache.m in Sources */ = {isa = PBXBuildFile; fileRef = 91BFEBD63CAA5403876ECB4D96B94FC9 /* RCTImageCache.m */; }; + AAFC106D9A09F68152DD13A0B192D702 /* RCTVirtualTextViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 34BD12EFE87BBC1715B6008AB32ED33B /* RCTVirtualTextViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + AAFDC490C197A364E412E59DC6D18FA7 /* RCTImageCache.m in Sources */ = {isa = PBXBuildFile; fileRef = 908159DCF7F75519610203786DF35A94 /* RCTImageCache.m */; }; AB0D233175695AD5A5CFF80D84E56874 /* anim_encode.c in Sources */ = {isa = PBXBuildFile; fileRef = 96BA55D82ECFF1108092369C40805752 /* anim_encode.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - AB6B1C527596D3144A8E068B20847368 /* RNFirebaseDatabaseReference.m in Sources */ = {isa = PBXBuildFile; fileRef = 12525713DC65652720280D156EFDA372 /* RNFirebaseDatabaseReference.m */; }; - AB71242585E87C1ABAFF732A17092713 /* RNGestureHandlerModule.h in Headers */ = {isa = PBXBuildFile; fileRef = DDC00BE7307F2C8A3E08D04DCD505136 /* RNGestureHandlerModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; - ABB159E31C767AE2BF6EE30DE4B7D346 /* BugsnagSession.m in Sources */ = {isa = PBXBuildFile; fileRef = 900FD7401EF46D6331EB6A027BC2E24B /* BugsnagSession.m */; }; - ABB74B188C02A8D67A14B8EC8BDB5D08 /* RCTSinglelineTextInputViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 39FCB92FEFA582E1264D20B8974C25D7 /* RCTSinglelineTextInputViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - ABC211F1ED49935A5C4A363A6B7A4ADB /* RCTFrameAnimation.m in Sources */ = {isa = PBXBuildFile; fileRef = 909C770291972B658838E4A4FA5FD6D1 /* RCTFrameAnimation.m */; }; - ABE4DD5FE579286EA84BDF53DF011F42 /* RCTLayoutAnimation.h in Headers */ = {isa = PBXBuildFile; fileRef = B3152E50EB9AD9614CBDC9B6A5AA2639 /* RCTLayoutAnimation.h */; settings = {ATTRIBUTES = (Project, ); }; }; + AB6B1C527596D3144A8E068B20847368 /* RNFirebaseDatabaseReference.m in Sources */ = {isa = PBXBuildFile; fileRef = 0E7647CB0F78CB90AE2964BE8EF5E6B2 /* RNFirebaseDatabaseReference.m */; }; + AB71242585E87C1ABAFF732A17092713 /* RNGestureHandlerModule.h in Headers */ = {isa = PBXBuildFile; fileRef = FA6FF7113372AF721AEA989C93C9BD9F /* RNGestureHandlerModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; + ABB159E31C767AE2BF6EE30DE4B7D346 /* BugsnagSession.m in Sources */ = {isa = PBXBuildFile; fileRef = DD1ACDA8D6069E48780F82588482CD67 /* BugsnagSession.m */; }; + ABB74B188C02A8D67A14B8EC8BDB5D08 /* RCTSinglelineTextInputViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = B004EA3AE960755FB007C1BCE53D1990 /* RCTSinglelineTextInputViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + ABC211F1ED49935A5C4A363A6B7A4ADB /* RCTFrameAnimation.m in Sources */ = {isa = PBXBuildFile; fileRef = 49D996D4E9E3C16478D7D694F97206A9 /* RCTFrameAnimation.m */; }; + ABE4DD5FE579286EA84BDF53DF011F42 /* RCTLayoutAnimation.h in Headers */ = {isa = PBXBuildFile; fileRef = C04A0D9CC860F0AD202065275C72FEA7 /* RCTLayoutAnimation.h */; settings = {ATTRIBUTES = (Project, ); }; }; ABF126106FD8D877441956C3AF553EEF /* pb_common.h in Headers */ = {isa = PBXBuildFile; fileRef = B4E59C34733EDDB63352F51EA330CB81 /* pb_common.h */; settings = {ATTRIBUTES = (Project, ); }; }; - AC31EC883CB7E5DBAF9998562725691A /* RCTRootContentView.h in Headers */ = {isa = PBXBuildFile; fileRef = 10C97D20E86E939D1862FE86B3C6050C /* RCTRootContentView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + AC31EC883CB7E5DBAF9998562725691A /* RCTRootContentView.h in Headers */ = {isa = PBXBuildFile; fileRef = F6CD0FD8A95804E7EC56E9BE9CB51672 /* RCTRootContentView.h */; settings = {ATTRIBUTES = (Project, ); }; }; AC3905F52FE0809F628BCC0CF306E76F /* picture_tools_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = 2691CB449C5A42D1964D19F13F61C0B7 /* picture_tools_enc.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; AC54FD31827C5BDB2AD22BD2F275CB07 /* GoogleDataTransport.h in Headers */ = {isa = PBXBuildFile; fileRef = 66EF89ABD7B5DBBB462B12529A796D9B /* GoogleDataTransport.h */; settings = {ATTRIBUTES = (Project, ); }; }; AC7FAE73363B58CEA4FEC4E8471E4C9C /* FIRInstanceIDTokenOperation.h in Headers */ = {isa = PBXBuildFile; fileRef = 95F672D173395EBA22AF0884C6C8915F /* FIRInstanceIDTokenOperation.h */; settings = {ATTRIBUTES = (Project, ); }; }; - AC9977754C40BF50D3477ADDE4182EBC /* UIView+React.m in Sources */ = {isa = PBXBuildFile; fileRef = 3E629C1FAC371353C91F47301E2A52FB /* 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"; }; }; - ACD5CDAB5F0724B498437299A32FECCA /* REANode.m in Sources */ = {isa = PBXBuildFile; fileRef = 27E86C2438F77089ECDB4E32C97EF052 /* REANode.m */; }; + AC9977754C40BF50D3477ADDE4182EBC /* UIView+React.m in Sources */ = {isa = PBXBuildFile; fileRef = 654085B96AEB3EFDE12C2D6DF53BBE94 /* 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"; }; }; + ACD5CDAB5F0724B498437299A32FECCA /* REANode.m in Sources */ = {isa = PBXBuildFile; fileRef = CF8BD4089AE1F91B64B4ADD0A90CF28A /* REANode.m */; }; AD2F0348979F6DEC73E66C0634B8D89F /* FIRInstanceIDCheckinStore.m in Sources */ = {isa = PBXBuildFile; fileRef = A3EF6DDC9ECF54BEBC12FEF5478C225C /* FIRInstanceIDCheckinStore.m */; }; - AD66D2FD84BC116DD133347EACA99CC1 /* RCTStatusBarManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 46AD5611B8101B3D398797EB9B7049A9 /* RCTStatusBarManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + AD66D2FD84BC116DD133347EACA99CC1 /* RCTStatusBarManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 8D5FBC4B31621BBAFF7F3339A7DA318F /* RCTStatusBarManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; AD7C3D9EC21B3A100F2D50A4D7158DAF /* GULAppDelegateSwizzler_Private.h in Headers */ = {isa = PBXBuildFile; fileRef = 2728A14783AB5E811E5251887AADACAF /* GULAppDelegateSwizzler_Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; - AD8F9EBA6262A36F5466A2B98B714CBB /* RCTInputAccessoryViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 1820332532E60ECDD82A8E03893DD8E8 /* RCTInputAccessoryViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - ADDEA309B94CAA51E650B66DDB4CD3B5 /* BugsnagLogger.h in Headers */ = {isa = PBXBuildFile; fileRef = 6B3DCBE451998AF84A7227E28C828B6B /* BugsnagLogger.h */; settings = {ATTRIBUTES = (Project, ); }; }; - AE14F028F54D612B4D48CC6CED8B76CD /* RNNotificationEventHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = 444AEC4C92B7D6B376A2D99180882CDC /* RNNotificationEventHandler.m */; }; - AE3C983FDA0774DA378C46B4CB8D4BD6 /* RCTCxxUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = BF37F50FC97902AD9B89249E7BD96088 /* RCTCxxUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; - AE696B4A35AF464F62260BA86B736EC9 /* RNFetchBlob.h in Headers */ = {isa = PBXBuildFile; fileRef = 00AFBA4ABCDEA52552CE6DEE889952A8 /* RNFetchBlob.h */; settings = {ATTRIBUTES = (Project, ); }; }; - AE7E5CEB88DE285A14B49E125734817C /* BugsnagMetaData.h in Headers */ = {isa = PBXBuildFile; fileRef = 75D12281C83ADCB38906BD4B4B0EBAE5 /* BugsnagMetaData.h */; settings = {ATTRIBUTES = (Project, ); }; }; - AE807CFC8F81EF3476F064B8E48C564A /* ARTNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 79F474346C43F93D7D10AF94FA30C332 /* ARTNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - AE9A689C5BA6E8AF5535171D3922275E /* RCTBaseTextShadowView.m in Sources */ = {isa = PBXBuildFile; fileRef = F01EACB61AD2CAF89F50D7F08FF6DA17 /* RCTBaseTextShadowView.m */; }; + AD8F9EBA6262A36F5466A2B98B714CBB /* RCTInputAccessoryViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = EED0D043C8985ED9108620BE8CD2C34C /* RCTInputAccessoryViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + ADDEA309B94CAA51E650B66DDB4CD3B5 /* BugsnagLogger.h in Headers */ = {isa = PBXBuildFile; fileRef = 452598C78BFE80FC4D5CA6FEC831CFD6 /* BugsnagLogger.h */; settings = {ATTRIBUTES = (Project, ); }; }; + AE14F028F54D612B4D48CC6CED8B76CD /* RNNotificationEventHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = 7928F1A3A47C5E892B5A7935B9EA2F9D /* RNNotificationEventHandler.m */; }; + AE3C983FDA0774DA378C46B4CB8D4BD6 /* RCTCxxUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = 10D06A03790FEE2282893BD2C4456C74 /* RCTCxxUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; + AE696B4A35AF464F62260BA86B736EC9 /* RNFetchBlob.h in Headers */ = {isa = PBXBuildFile; fileRef = 6F3E4946951354BBAC9A7623C9A9F773 /* RNFetchBlob.h */; settings = {ATTRIBUTES = (Project, ); }; }; + AE7E5CEB88DE285A14B49E125734817C /* BugsnagMetaData.h in Headers */ = {isa = PBXBuildFile; fileRef = 557B26123DD659C929CE930A4321BFD7 /* BugsnagMetaData.h */; settings = {ATTRIBUTES = (Project, ); }; }; + AE807CFC8F81EF3476F064B8E48C564A /* ARTNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 2C77987BF682AFDFBDF7EA54C1F74FEE /* ARTNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + AE9A689C5BA6E8AF5535171D3922275E /* RCTBaseTextShadowView.m in Sources */ = {isa = PBXBuildFile; fileRef = 8246BE2CF1F863DE03327C201770AA97 /* RCTBaseTextShadowView.m */; }; AE9BAD5416D1788A60DA1E7F3ED08F51 /* dec_neon.c in Sources */ = {isa = PBXBuildFile; fileRef = F1A4FFD0829F895C7CB4CE1DADA8C124 /* dec_neon.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - AEC0EC96C1A700516BB6BEB6EBEAEC63 /* event.h in Headers */ = {isa = PBXBuildFile; fileRef = 590994D6B41920C6BFD44BE95824900F /* event.h */; settings = {ATTRIBUTES = (Project, ); }; }; - AF28B147059D9D806FF35212F54804F2 /* RCTComponentEvent.h in Headers */ = {isa = PBXBuildFile; fileRef = 5AE6C4FAC04274A0DF959A5312014DB3 /* RCTComponentEvent.h */; settings = {ATTRIBUTES = (Project, ); }; }; + AEC0EC96C1A700516BB6BEB6EBEAEC63 /* event.h in Headers */ = {isa = PBXBuildFile; fileRef = C7CEABA4C850F5AE6FC6B75F7A9C44C3 /* event.h */; settings = {ATTRIBUTES = (Project, ); }; }; + AF28B147059D9D806FF35212F54804F2 /* RCTComponentEvent.h in Headers */ = {isa = PBXBuildFile; fileRef = 148431F7426009B1283775695F30B497 /* RCTComponentEvent.h */; settings = {ATTRIBUTES = (Project, ); }; }; AF783557C42133FF18F4E366E28EF300 /* bignum-dtoa.cc in Sources */ = {isa = PBXBuildFile; fileRef = 9A4D3B3B310D9827F2482B1F3DE8CC69 /* bignum-dtoa.cc */; settings = {COMPILER_FLAGS = "-Wno-unreachable-code"; }; }; - AFA1747D7903B71E12ED58F61E2A35F4 /* BannerComponent.h in Headers */ = {isa = PBXBuildFile; fileRef = 37FFBD965979814BCBD0ABC597560358 /* BannerComponent.h */; settings = {ATTRIBUTES = (Project, ); }; }; + AFA1747D7903B71E12ED58F61E2A35F4 /* BannerComponent.h in Headers */ = {isa = PBXBuildFile; fileRef = 8417848A33C246DBF9F0A26374E34AF6 /* BannerComponent.h */; settings = {ATTRIBUTES = (Project, ); }; }; AFA5B2D16D48229861E4E5620792A094 /* GDTCORPrioritizer.h in Headers */ = {isa = PBXBuildFile; fileRef = BA97DE2A8EF2E1432F205EFE746D7873 /* GDTCORPrioritizer.h */; settings = {ATTRIBUTES = (Project, ); }; }; - AFAE17A768C60A8299FB264ACD4B0205 /* ARTNodeManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 6FF771E6C2A8C52C88A59F2DCD024103 /* ARTNodeManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - AFB15A6F36F4E7BED7571C30D284FE49 /* RCTRedBox.m in Sources */ = {isa = PBXBuildFile; fileRef = 4455645A7164B3DE0B1756DAEAC5C318 /* RCTRedBox.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + AFAE17A768C60A8299FB264ACD4B0205 /* ARTNodeManager.h in Headers */ = {isa = PBXBuildFile; fileRef = CC76F7D673A9515F2AA3A9CBC26C6572 /* ARTNodeManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + AFB15A6F36F4E7BED7571C30D284FE49 /* RCTRedBox.m in Sources */ = {isa = PBXBuildFile; fileRef = B51F01FE0D0C924D540DCBCCD5CB8503 /* RCTRedBox.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; B03C42B044033F100A1E04809ED61FD2 /* raw_logging.cc in Sources */ = {isa = PBXBuildFile; fileRef = C75A86B18664AF17C832083530EBC07C /* raw_logging.cc */; settings = {COMPILER_FLAGS = "-Wno-shorten-64-to-32"; }; }; - B04CEF80BEC79CF16F7F02CE5721C583 /* RCTSurfaceRootShadowViewDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = A18D0A6FBFFC4082D75B81EDCFCCF6D8 /* RCTSurfaceRootShadowViewDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B0649287E8C6F9F4101DB57FDFBDC5E2 /* REANodesManager.m in Sources */ = {isa = PBXBuildFile; fileRef = BA4DF455B5B36AFA5445D5D08FE28E45 /* REANodesManager.m */; }; - B08723295CF1ABDFD21CDF13AABF493B /* BSG_KSCrashSentry_Private.h in Headers */ = {isa = PBXBuildFile; fileRef = CD05057504EA0D047D1368ED39C03962 /* BSG_KSCrashSentry_Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B09A5710D9729BFB90BA5D44E43882B9 /* RCTAlertManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 150FA0DA16A869AC68AF87F39880529E /* RCTAlertManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B0A2F385F24E23104EBE064D2E9F96F6 /* SRIOConsumer.m in Sources */ = {isa = PBXBuildFile; fileRef = A7C033AC21B9BB174EC5BA0222B82112 /* SRIOConsumer.m */; }; + B04CEF80BEC79CF16F7F02CE5721C583 /* RCTSurfaceRootShadowViewDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = 9BA143200912C794A9C68A492EF45BBE /* RCTSurfaceRootShadowViewDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B0649287E8C6F9F4101DB57FDFBDC5E2 /* REANodesManager.m in Sources */ = {isa = PBXBuildFile; fileRef = B63AEE5BB5482D8E73F573C666904415 /* REANodesManager.m */; }; + B08723295CF1ABDFD21CDF13AABF493B /* BSG_KSCrashSentry_Private.h in Headers */ = {isa = PBXBuildFile; fileRef = 19BB86AA1190C4C8B7A0666F7AC9AC82 /* BSG_KSCrashSentry_Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B09A5710D9729BFB90BA5D44E43882B9 /* RCTAlertManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 2183604D689CFF2ACE1CEEFF60B3A2D3 /* RCTAlertManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; B0A3C69022AD615CB02C44BEF92F0456 /* FIRInstanceIDTokenManager.m in Sources */ = {isa = PBXBuildFile; fileRef = BD2D19249B0E5F20B228D7924697E712 /* FIRInstanceIDTokenManager.m */; }; B0D9EA67A437C2D4F14606D128C1A666 /* diy-fp.h in Headers */ = {isa = PBXBuildFile; fileRef = 19C61133E42FEBE0031138AEB2C96709 /* diy-fp.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B11CA48DA91BE9D78A09D892242DB4C8 /* RNJitsiMeetViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 56EDCB32DE75F36ED96B23810BB54455 /* RNJitsiMeetViewManager.m */; }; - B1208ABEFA22504998B800C8C953EEED /* RNTapHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 30B42C0239D75D77F4F692191C449F96 /* RNTapHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B11CA48DA91BE9D78A09D892242DB4C8 /* RNJitsiMeetViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 0A89C6896D4F08E8248CFC2F9506CBDD /* RNJitsiMeetViewManager.m */; }; + B1208ABEFA22504998B800C8C953EEED /* RNTapHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 083CB40CF18107B6E6F1986B3D9314C8 /* RNTapHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; B19E284EEDADC2AAEB838E15A544C93A /* demangle.cc in Sources */ = {isa = PBXBuildFile; fileRef = 001B7F2F6A312651D3606F252836C2F5 /* demangle.cc */; settings = {COMPILER_FLAGS = "-Wno-shorten-64-to-32"; }; }; - B1DB90F700D05E9EC43D79B1399D0EC9 /* BSG_KSObjC.c in Sources */ = {isa = PBXBuildFile; fileRef = 9E5E583DDA13898683E5CA0D326778FC /* BSG_KSObjC.c */; }; + B1DB90F700D05E9EC43D79B1399D0EC9 /* BSG_KSObjC.c in Sources */ = {isa = PBXBuildFile; fileRef = 95B6921F2E0D5D99F5CC1A7BC8746CB8 /* BSG_KSObjC.c */; }; B20F5C555A167E5A8977D22CD4C73279 /* FBLPromise+Recover.h in Headers */ = {isa = PBXBuildFile; fileRef = 81CE6C1BD2CD84627ACB2375ECEDDBF0 /* FBLPromise+Recover.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B21256C8EBEE862EB6882960A9A8FDA8 /* RCTUIUtils.m in Sources */ = {isa = PBXBuildFile; fileRef = 4215E366E96B19336AAA4E4770DA7B6A /* RCTUIUtils.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - B21ED47165915C21EF394F4CA8C6DE71 /* RNFetchBlobRequest.m in Sources */ = {isa = PBXBuildFile; fileRef = 8C7C1F3044E71AF9B64E733B5BFA47E7 /* RNFetchBlobRequest.m */; }; - B22B2FBBAE4A514F037B5880645E56BD /* RCTUITextField.h in Headers */ = {isa = PBXBuildFile; fileRef = F7140A66BCEA0E2374D90337A4DAD6B1 /* RCTUITextField.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B21256C8EBEE862EB6882960A9A8FDA8 /* RCTUIUtils.m in Sources */ = {isa = PBXBuildFile; fileRef = F975DCABFFD0BA6A6A1A25438D6405F6 /* RCTUIUtils.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + B21ED47165915C21EF394F4CA8C6DE71 /* RNFetchBlobRequest.m in Sources */ = {isa = PBXBuildFile; fileRef = 0DEF7B1DADBA2BAE9E293D2C96C91041 /* RNFetchBlobRequest.m */; }; + B22B2FBBAE4A514F037B5880645E56BD /* RCTUITextField.h in Headers */ = {isa = PBXBuildFile; fileRef = 8ED5FFEC37DF77FD9DF7501A5F681826 /* RCTUITextField.h */; settings = {ATTRIBUTES = (Project, ); }; }; B2698816BE03D78D782DF5520083AA26 /* MallocImpl.cpp in Sources */ = {isa = PBXBuildFile; fileRef = E1E98A139B0A1E84E12ACFECE2DCC7BC /* MallocImpl.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - B27BA7F21D6F636713330F5EC0FD8633 /* REAConcatNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 52C7174BC9C090FFCE1A3619FF427FD8 /* REAConcatNode.m */; }; - B2AC693FDD557631F17664DA2A56B3DE /* RCTAnimatedImage.m in Sources */ = {isa = PBXBuildFile; fileRef = 242CC982C2F9E674F8E4082508B29A0F /* RCTAnimatedImage.m */; }; + B27BA7F21D6F636713330F5EC0FD8633 /* REAConcatNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 032AFD590E849D0D137615D857D6D010 /* REAConcatNode.m */; }; + B2AC693FDD557631F17664DA2A56B3DE /* RCTAnimatedImage.m in Sources */ = {isa = PBXBuildFile; fileRef = 718C0BCCD01612A70B7757E88AA0B55B /* RCTAnimatedImage.m */; }; B2ADBA919A83F3489D1643A24A241C8B /* FIRConfiguration.m in Sources */ = {isa = PBXBuildFile; fileRef = A85363A0C59C12E9ABF0D991127F666D /* FIRConfiguration.m */; }; - B2F9BCDF64953778607DF09F5E955CEC /* Compression.h in Headers */ = {isa = PBXBuildFile; fileRef = F847E3CCE33D39A3394B1456005D0D6A /* Compression.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B3547BB056E15E18329646D317844CFF /* KeyboardTrackingViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 9A572F79CC9FE7F5B756A0975E467AAB /* KeyboardTrackingViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B2F9BCDF64953778607DF09F5E955CEC /* Compression.h in Headers */ = {isa = PBXBuildFile; fileRef = 477638BFCC42AE591C8C63F78A1DE711 /* Compression.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B3547BB056E15E18329646D317844CFF /* KeyboardTrackingViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = F63583F2D2EE601D43B0896533EAFCDF /* KeyboardTrackingViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; B35D3DBB0E94D8ACB23B7012751A55A6 /* GULSceneDelegateSwizzler_Private.h in Headers */ = {isa = PBXBuildFile; fileRef = E73C501A0EB747305BB4AAD7978E3E0E /* GULSceneDelegateSwizzler_Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; B36EBDF74E3D52A6C4D123C1561A79A8 /* NSButton+WebCache.h in Headers */ = {isa = PBXBuildFile; fileRef = 2EE8ED7B82F5E3A7EF109FDD2E17A97F /* NSButton+WebCache.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B38F0F004105D71E61A479969F1D0E00 /* RCTSafeAreaShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = 356870037B3F43B3E9AB0BE29AD1FA6E /* RCTSafeAreaShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B38F532404A131A6F67FE5B32AFFB7FC /* RCTBridgeModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 5E5B66EAB3095DBCF2163E18F25534DB /* RCTBridgeModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B38F0F004105D71E61A479969F1D0E00 /* RCTSafeAreaShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = 5FFADEAB305FDC25772B125EFF5D6831 /* RCTSafeAreaShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B38F532404A131A6F67FE5B32AFFB7FC /* RCTBridgeModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 71789EFDC650C275DC69DEA233F72AF0 /* RCTBridgeModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; B3B8A27F13994D822A962EAD1C8EA1F2 /* FIRInstanceIDCheckinService.m in Sources */ = {isa = PBXBuildFile; fileRef = 1DF066F20D14665E0A04D678CAD81F85 /* FIRInstanceIDCheckinService.m */; }; - B3C7D46AE1B201A79C73C5CDF1F4BAF8 /* RCTBridge.h in Headers */ = {isa = PBXBuildFile; fileRef = 42B8DFDAE0F63AB98C3BF5F0C106A8C4 /* RCTBridge.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B3C7D46AE1B201A79C73C5CDF1F4BAF8 /* RCTBridge.h in Headers */ = {isa = PBXBuildFile; fileRef = B9D31ADFA24CAB396511E4EA658CE83A /* RCTBridge.h */; settings = {ATTRIBUTES = (Project, ); }; }; B3DA463FE22DD22C783EA37F931CEFC9 /* FIRLogger.m in Sources */ = {isa = PBXBuildFile; fileRef = A38D33F827E62F685D432C9A01C918E6 /* FIRLogger.m */; }; B41645C71E5790030A867FFC4BC9BB6A /* SDInternalMacros.m in Sources */ = {isa = PBXBuildFile; fileRef = B7619685EB70998E0F7EC8865DDD7D94 /* SDInternalMacros.m */; }; - B447FD3316D3F3F80C80681F17A5014C /* React-Core-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 6124E4C51D9177A23B8FEE1F3BCBA0AB /* React-Core-dummy.m */; }; - B4681C085E07706AAD0AC18E0183E0ED /* RNGestureHandlerRegistry.m in Sources */ = {isa = PBXBuildFile; fileRef = F6B6FD643CFD4E6D22C223E39F676CD5 /* RNGestureHandlerRegistry.m */; }; - B46D8BAE4C9ACE396EE6E38D21C53C39 /* FFFastImageSource.m in Sources */ = {isa = PBXBuildFile; fileRef = 78BAA33EEE4F30D6800E9C7F64361E60 /* FFFastImageSource.m */; }; - B4739208CCD185642B0D5DCC2FC489E0 /* DeviceUID.m in Sources */ = {isa = PBXBuildFile; fileRef = 122B0814270FDC762B712CB84C9F5635 /* DeviceUID.m */; }; - B477E0D3D5EAB635D2E8C8EE9E00B846 /* RCTPerformanceLogger.h in Headers */ = {isa = PBXBuildFile; fileRef = 2F648E0E3E84654009319A9A0EC7A4C9 /* RCTPerformanceLogger.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B447FD3316D3F3F80C80681F17A5014C /* React-Core-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 933A69C8231D89AE329175EDEB5BE0B2 /* React-Core-dummy.m */; }; + B4681C085E07706AAD0AC18E0183E0ED /* RNGestureHandlerRegistry.m in Sources */ = {isa = PBXBuildFile; fileRef = 2E7B00BF6FF630502AC09E09DD7EEF10 /* RNGestureHandlerRegistry.m */; }; + B46D8BAE4C9ACE396EE6E38D21C53C39 /* FFFastImageSource.m in Sources */ = {isa = PBXBuildFile; fileRef = EA5986CB2C30F47658BB169BF8763AAA /* FFFastImageSource.m */; }; + B4739208CCD185642B0D5DCC2FC489E0 /* DeviceUID.m in Sources */ = {isa = PBXBuildFile; fileRef = 03BE05ED68AA7E760BCA2C1DCCA745F4 /* DeviceUID.m */; }; + B477E0D3D5EAB635D2E8C8EE9E00B846 /* RCTPerformanceLogger.h in Headers */ = {isa = PBXBuildFile; fileRef = 04014F2F5BB5AC05629CDB1EA3F6C1E7 /* RCTPerformanceLogger.h */; settings = {ATTRIBUTES = (Project, ); }; }; B4BCAA9AED1573D9C7E81E425A8973F9 /* SDWebImageManager.m in Sources */ = {isa = PBXBuildFile; fileRef = AB686584E542E1751A41715CD307E524 /* SDWebImageManager.m */; }; - B4BD045C0010A019A59B05DB94275A55 /* REAJSCallNode.h in Headers */ = {isa = PBXBuildFile; fileRef = DD8DF92340ECC59B2D8A0F26F76025E4 /* REAJSCallNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B4E253A8AA7AE36273D3CF133550408C /* RCTNetworking.h in Headers */ = {isa = PBXBuildFile; fileRef = 16D4AE3113FBACF99CF67759074AFDD6 /* RCTNetworking.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B4BD045C0010A019A59B05DB94275A55 /* REAJSCallNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 87BDE213930602568428589CA91EC8A3 /* REAJSCallNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B4E253A8AA7AE36273D3CF133550408C /* RCTNetworking.h in Headers */ = {isa = PBXBuildFile; fileRef = 9E6B32C790A21A841EDA4BC5A9401C92 /* RCTNetworking.h */; settings = {ATTRIBUTES = (Project, ); }; }; B50CA038F8C99B2EBF848F62A29A94B3 /* SDWebImageIndicator.m in Sources */ = {isa = PBXBuildFile; fileRef = 63B31FE76518F6AD1B9C7FC4FC3BE0FD /* SDWebImageIndicator.m */; }; - B50E9E916BC2CAF92872002BCDF0158A /* BSG_KSSystemInfoC.h in Headers */ = {isa = PBXBuildFile; fileRef = DC8207E9D9E6CC6A92DA0EC2EC940696 /* BSG_KSSystemInfoC.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B50E9E916BC2CAF92872002BCDF0158A /* BSG_KSSystemInfoC.h in Headers */ = {isa = PBXBuildFile; fileRef = E0BFCEECC0723F338C167E5CC8F38542 /* BSG_KSSystemInfoC.h */; settings = {ATTRIBUTES = (Project, ); }; }; B5491FA6F24FB43A5BE1DADD8C492452 /* SDWebImageDownloaderRequestModifier.m in Sources */ = {isa = PBXBuildFile; fileRef = 3912963231AA3AA7436B53843E64EE76 /* SDWebImageDownloaderRequestModifier.m */; }; B54FD5F975C9E75EA67F9D0E1939C9B5 /* UIImageView+HighlightedWebCache.m in Sources */ = {isa = PBXBuildFile; fileRef = 34ACC90522BF9626ADB3630C6DD72733 /* UIImageView+HighlightedWebCache.m */; }; - B56C853A088A0C2731C209C818076B37 /* RCTJSStackFrame.h in Headers */ = {isa = PBXBuildFile; fileRef = C57B5817AE6D14ECAB1C0CE5B413A293 /* RCTJSStackFrame.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B5B429926449C953C72330919CAF8420 /* RCTProgressViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 7013E12ADB40FFBABED4D9A87E97E663 /* RCTProgressViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B56C853A088A0C2731C209C818076B37 /* RCTJSStackFrame.h in Headers */ = {isa = PBXBuildFile; fileRef = 92AD3F3615247DF1DAD78AFF16D8CC2B /* RCTJSStackFrame.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B5B429926449C953C72330919CAF8420 /* RCTProgressViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = BEA4940B5D5E52997106558D83B64DB6 /* RCTProgressViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; B5BD49BAFD353D954E0840F64E4A2821 /* DoubleConversion-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = F78C3AEA250BDD82BE7FE666904B87A3 /* DoubleConversion-dummy.m */; }; - B5D8DB98F0DBB6D20242F47C2F812144 /* RNBridgeModule.m in Sources */ = {isa = PBXBuildFile; fileRef = 25279C48966FA07EA522177FF66B0543 /* RNBridgeModule.m */; }; - B5E9E6F752E4EDE32AC15703C13715AD /* ARTNodeManager.m in Sources */ = {isa = PBXBuildFile; fileRef = B42C05EA585F6414B0981D042D8FD78A /* ARTNodeManager.m */; }; - B5EB4E5FE1155C1296CC6743D69A3316 /* RCTImageView.m in Sources */ = {isa = PBXBuildFile; fileRef = ABBB5ECF6510D755EC3C81E8F6EA2531 /* RCTImageView.m */; }; - B61FD3AA8214DE7386C1FC11C8D29267 /* RCTConvert+UIBackgroundFetchResult.m in Sources */ = {isa = PBXBuildFile; fileRef = 0875E1E03475959A72BC0BBB6C3BD7AF /* RCTConvert+UIBackgroundFetchResult.m */; }; + B5D8DB98F0DBB6D20242F47C2F812144 /* RNBridgeModule.m in Sources */ = {isa = PBXBuildFile; fileRef = 6BE5328275FAB669B6D0040970EFA5E6 /* RNBridgeModule.m */; }; + B5E9E6F752E4EDE32AC15703C13715AD /* ARTNodeManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 65D56D642AA96CB54D083C3E65A1C9FD /* ARTNodeManager.m */; }; + B5EB4E5FE1155C1296CC6743D69A3316 /* RCTImageView.m in Sources */ = {isa = PBXBuildFile; fileRef = 753710D90975AC53075478A5BA9CC7A0 /* RCTImageView.m */; }; + B61FD3AA8214DE7386C1FC11C8D29267 /* RCTConvert+UIBackgroundFetchResult.m in Sources */ = {isa = PBXBuildFile; fileRef = 02E7207020757F9A3FB2E5177DC30328 /* RCTConvert+UIBackgroundFetchResult.m */; }; B65ABCAEC3B324AFF74CFC314E05D488 /* raw_logging.h in Headers */ = {isa = PBXBuildFile; fileRef = 2D2804B1DCF18B3386453877783E3BBC /* raw_logging.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B66D063C7CAF55D47A55F5452FAA9366 /* SRSecurityPolicy.h in Headers */ = {isa = PBXBuildFile; fileRef = 3BEAB31533E97E2BAC87330EA35D04DA /* SRSecurityPolicy.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B6842E62885EBBE6CA0C133734CBD26A /* RNFetchBlobReqBuilder.h in Headers */ = {isa = PBXBuildFile; fileRef = A731D7BD800AFFE50212974FAEF71DD9 /* RNFetchBlobReqBuilder.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B6842E62885EBBE6CA0C133734CBD26A /* RNFetchBlobReqBuilder.h in Headers */ = {isa = PBXBuildFile; fileRef = 775A89C79ECDEA9FB87A4A55C040B4B4 /* RNFetchBlobReqBuilder.h */; settings = {ATTRIBUTES = (Project, ); }; }; B6C5B18E7D63F47D4127BEFAEB0E082E /* FIRVersion.h in Headers */ = {isa = PBXBuildFile; fileRef = 41F62D04DF20EF8EB64F38D9EEEE02A9 /* FIRVersion.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B6E651E12D06D37F4E6F162FAB03724B /* RCTInputAccessoryView.m in Sources */ = {isa = PBXBuildFile; fileRef = 35B98F414D15769FDDBC11E001628A67 /* RCTInputAccessoryView.m */; }; - B72B789755169C410B1BECF061D3F9AF /* RCTMaskedViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = C0B98FF58C3CA160B626311D16BFD673 /* RCTMaskedViewManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + B6E651E12D06D37F4E6F162FAB03724B /* RCTInputAccessoryView.m in Sources */ = {isa = PBXBuildFile; fileRef = 76B317AF8011752CEE734A75AD464778 /* RCTInputAccessoryView.m */; }; + B72B789755169C410B1BECF061D3F9AF /* RCTMaskedViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = F55C2B04C4A9C8B86635F45E07A4C59B /* RCTMaskedViewManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; B79379EE30EB5B9FAB3B9E5DDFAF509D /* lossless_enc_sse41.c in Sources */ = {isa = PBXBuildFile; fileRef = 27DCBA8B031ECFD777996CDBB53368B9 /* lossless_enc_sse41.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; B79E683059398347D30F641EB0D6D947 /* FIROptions.m in Sources */ = {isa = PBXBuildFile; fileRef = 52C28AD783EE3A1E4AB2B1A936CBEC0A /* FIROptions.m */; }; B7B1C326E18E2566E54AA59FFF788C28 /* vp8_dec.c in Sources */ = {isa = PBXBuildFile; fileRef = 0605FB329064F4B740AB3DA84343A94A /* vp8_dec.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - B7C947F92EB5B94DBE1C2920A060E0E9 /* RCTMultipartDataTask.h in Headers */ = {isa = PBXBuildFile; fileRef = 124203A71CC0672033E57E46124AF729 /* RCTMultipartDataTask.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B7DFA107ED277F43F7F2BAC8F7E62403 /* RNFirebaseMessaging.h in Headers */ = {isa = PBXBuildFile; fileRef = 8AE93B7BE8E4B8CC628C1257C9D40F62 /* RNFirebaseMessaging.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B809511BC0E992CA4B37C5D757DD2C64 /* REATransitionAnimation.m in Sources */ = {isa = PBXBuildFile; fileRef = 7BA7673B877BA34B973FC61A6164F329 /* REATransitionAnimation.m */; }; + B7C947F92EB5B94DBE1C2920A060E0E9 /* RCTMultipartDataTask.h in Headers */ = {isa = PBXBuildFile; fileRef = B240E33ACD088E410D7B37AA73F58027 /* RCTMultipartDataTask.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B7DFA107ED277F43F7F2BAC8F7E62403 /* RNFirebaseMessaging.h in Headers */ = {isa = PBXBuildFile; fileRef = AE82711F9579DB3A866AA62685BD4259 /* RNFirebaseMessaging.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B809511BC0E992CA4B37C5D757DD2C64 /* REATransitionAnimation.m in Sources */ = {isa = PBXBuildFile; fileRef = 6C9909DE92AC43C391867844EB721B48 /* REATransitionAnimation.m */; }; B8317134B45F9440FFFEFF835F1613A9 /* common_sse2.h in Headers */ = {isa = PBXBuildFile; fileRef = EAB62C963029E8092CA65348E89AD1C6 /* common_sse2.h */; settings = {ATTRIBUTES = (Project, ); }; }; B857674D187E7ABB87D048F32DE47BC6 /* FBLPromisePrivate.h in Headers */ = {isa = PBXBuildFile; fileRef = B1E3B9B644AA67562AB8AF3F6ADB7F0C /* FBLPromisePrivate.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B8617288EFCE468DB38E1199D2D60E6D /* RCTSafeAreaViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 535232372892510EA668EA0B95D2E341 /* RCTSafeAreaViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B86839393350454EB6F1E7EBA54DAE28 /* RCTModalHostView.h in Headers */ = {isa = PBXBuildFile; fileRef = 49ED2B1FA5F6D32683D4F13B8BE58004 /* RCTModalHostView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B88B8A0DA96440AC08B05788BE89D5FD /* EXAV-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 6515AC64D27C87B7C5E178A661BB0A0F /* EXAV-dummy.m */; }; - B8D8C37B58433010A2274C85315B9083 /* RCTBlobCollector.mm in Sources */ = {isa = PBXBuildFile; fileRef = F0D636B30B31C8B1301BEC81573A12A4 /* RCTBlobCollector.mm */; }; + B8617288EFCE468DB38E1199D2D60E6D /* RCTSafeAreaViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 056F905D99CA1946F7FD9A5CE9F95DBA /* RCTSafeAreaViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B86839393350454EB6F1E7EBA54DAE28 /* RCTModalHostView.h in Headers */ = {isa = PBXBuildFile; fileRef = FAC219E502CB8FBE7E6D2A1E86DB0F66 /* RCTModalHostView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B88B8A0DA96440AC08B05788BE89D5FD /* EXAV-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 4043AD1E8D873D561FE59CC68F4489BE /* EXAV-dummy.m */; }; + B8D8C37B58433010A2274C85315B9083 /* RCTBlobCollector.mm in Sources */ = {isa = PBXBuildFile; fileRef = 3546BC760EA50844B9B5EA7EE0995913 /* RCTBlobCollector.mm */; }; B91E70B671250005FA74AD2BC312CA08 /* libwebp-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 7290A8B4E4F31EF8E2A4BB18F88F59D6 /* libwebp-dummy.m */; }; - B943D1C92F92A10B5D06036C8BF5BCD8 /* RCTNativeAnimatedModule.m in Sources */ = {isa = PBXBuildFile; fileRef = 46AE0441B738973D3B8033C63A743535 /* RCTNativeAnimatedModule.m */; }; - B983A666B5D2EE8BD85B91218A9E9A80 /* RCTSinglelineTextInputView.h in Headers */ = {isa = PBXBuildFile; fileRef = C8B94668C2766AEEB3B887E70C7A39ED /* RCTSinglelineTextInputView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B9AE047C64E85E86C1A3F245A7DE3FAB /* Yoga.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 556A19703E8622926CDBB14F212EA6AA /* Yoga.cpp */; settings = {COMPILER_FLAGS = "-fno-omit-frame-pointer -fexceptions -Wall -Werror -std=c++1y -fPIC -fno-objc-arc"; }; }; - B9D1154CD997F0702268F81D59B6406C /* RNFirebase-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 572D0088BFEC231049A849D2B998C3D8 /* RNFirebase-dummy.m */; }; + B943D1C92F92A10B5D06036C8BF5BCD8 /* RCTNativeAnimatedModule.m in Sources */ = {isa = PBXBuildFile; fileRef = 4368BE8AB9CFAD4122EE9A7CB749D345 /* RCTNativeAnimatedModule.m */; }; + B983A666B5D2EE8BD85B91218A9E9A80 /* RCTSinglelineTextInputView.h in Headers */ = {isa = PBXBuildFile; fileRef = 7DE782C2BD00BB7546E6EC40C41AFC0C /* RCTSinglelineTextInputView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B9AE047C64E85E86C1A3F245A7DE3FAB /* Yoga.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 4B7602D499F00AD5406A3D24D333C82A /* Yoga.cpp */; settings = {COMPILER_FLAGS = "-fno-omit-frame-pointer -fexceptions -Wall -Werror -std=c++1y -fPIC -fno-objc-arc"; }; }; + B9D1154CD997F0702268F81D59B6406C /* RNFirebase-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 6BD48EE77936769A0C95168E4AAC836E /* RNFirebase-dummy.m */; }; B9D989270BF39444739B9D53F28332CB /* cost_neon.c in Sources */ = {isa = PBXBuildFile; fileRef = B59C6445493BACD5876AA3D8176366EB /* cost_neon.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - B9E9A4C8414CC010B04907511592478C /* RNFirebaseCrashlytics.h in Headers */ = {isa = PBXBuildFile; fileRef = 9C117BD5672D5E429709D96222462AFA /* RNFirebaseCrashlytics.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B9EDCDF3FAC046611DB90A9950FC0F52 /* RNFirebaseFirestore.h in Headers */ = {isa = PBXBuildFile; fileRef = 0C83F709BB2D0860B2921F9FDFBC4220 /* RNFirebaseFirestore.h */; settings = {ATTRIBUTES = (Project, ); }; }; - BA2BC83095E22C1245FE705A08439438 /* EXVideoManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 365C56573D7F2571B09C2A845BCF13E1 /* EXVideoManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B9E9A4C8414CC010B04907511592478C /* RNFirebaseCrashlytics.h in Headers */ = {isa = PBXBuildFile; fileRef = 979669F74E09BDB7CDBEF7A2B6A9B34F /* RNFirebaseCrashlytics.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B9EDCDF3FAC046611DB90A9950FC0F52 /* RNFirebaseFirestore.h in Headers */ = {isa = PBXBuildFile; fileRef = B582EC8B9AA16C7601BDDB4328D99F55 /* RNFirebaseFirestore.h */; settings = {ATTRIBUTES = (Project, ); }; }; + BA2BC83095E22C1245FE705A08439438 /* EXVideoManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 219A2733281409E60ED6EFD18358038F /* EXVideoManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; BA320783C2C9624896E06C34E9BF688F /* vp8i_dec.h in Headers */ = {isa = PBXBuildFile; fileRef = 37AECEE6AC0671E260C2B1BE9B3738AD /* vp8i_dec.h */; settings = {ATTRIBUTES = (Project, ); }; }; BA5E0CA71A36D82490FA1A0B3127E89D /* FIRComponentType.h in Headers */ = {isa = PBXBuildFile; fileRef = FD463EFB922CF38263587F78A3E403E1 /* FIRComponentType.h */; settings = {ATTRIBUTES = (Project, ); }; }; - BA9BA30EE97ABF955C4E454A06AB1466 /* RCTConvert+CoreLocation.h in Headers */ = {isa = PBXBuildFile; fileRef = FCEDE834382246446F485AB070F9B9CB /* RCTConvert+CoreLocation.h */; settings = {ATTRIBUTES = (Project, ); }; }; - BA9E8B725B9A8CD23FBF15614C59F41F /* BSG_KSMach.c in Sources */ = {isa = PBXBuildFile; fileRef = 7639B6DBE98AE5D9CBE69749C5D1778D /* BSG_KSMach.c */; }; - BABE71176BCA0F6279AA9F637CA91055 /* RCTURLRequestHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 146E954310E57FF845846D12DBA3658F /* RCTURLRequestHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; - BAC64044E2BC58CB9EBE5EB147C69F81 /* ARTShapeManager.m in Sources */ = {isa = PBXBuildFile; fileRef = AF36BF5322A8F1669835C50F41EBF7AF /* ARTShapeManager.m */; }; + BA9BA30EE97ABF955C4E454A06AB1466 /* RCTConvert+CoreLocation.h in Headers */ = {isa = PBXBuildFile; fileRef = 589B9865C80918AB7F5066B06E8E11A9 /* RCTConvert+CoreLocation.h */; settings = {ATTRIBUTES = (Project, ); }; }; + BA9E8B725B9A8CD23FBF15614C59F41F /* BSG_KSMach.c in Sources */ = {isa = PBXBuildFile; fileRef = 2D359E03F9FE1F077A3D82FAB52F7E5A /* BSG_KSMach.c */; }; + BABE71176BCA0F6279AA9F637CA91055 /* RCTURLRequestHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 2FB1DBCF6934AC61BC52CAF58D20B94F /* RCTURLRequestHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; + BAC64044E2BC58CB9EBE5EB147C69F81 /* ARTShapeManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 94DAEF5EFD04FA4301A2876D5799B235 /* ARTShapeManager.m */; }; BAEEE054038206EBD438E6D6B42BF6A9 /* SDImageHEICCoderInternal.h in Headers */ = {isa = PBXBuildFile; fileRef = 264FC1F2B694A07F9E99ECECA1434258 /* SDImageHEICCoderInternal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - BAF0F3643FF6537D18C0C4D20C0DBB98 /* BSG_RFC3339DateTool.m in Sources */ = {isa = PBXBuildFile; fileRef = 0762C4F48C07AF4FCD42EBD0FCD533D0 /* BSG_RFC3339DateTool.m */; }; + BAF0F3643FF6537D18C0C4D20C0DBB98 /* BSG_RFC3339DateTool.m in Sources */ = {isa = PBXBuildFile; fileRef = A489C8A991980938256086593ABFAD32 /* BSG_RFC3339DateTool.m */; }; BB02801B51A949379B60DD90295B9ECE /* FBLPromise+Await.h in Headers */ = {isa = PBXBuildFile; fileRef = CDAD3963A0F8EA40EAE6B916D5AA0A1F /* FBLPromise+Await.h */; settings = {ATTRIBUTES = (Project, ); }; }; BB0C45D3B6615D75A9A0E3E3B31D5F63 /* SDWebImageCacheKeyFilter.h in Headers */ = {isa = PBXBuildFile; fileRef = 5C366C49F593DF61C1B36CA3537E513C /* SDWebImageCacheKeyFilter.h */; settings = {ATTRIBUTES = (Project, ); }; }; - BB5703CC5A171DC2B6CEDF71E4748D94 /* RCTEventDispatcher.h in Headers */ = {isa = PBXBuildFile; fileRef = 6FF5CBC39AD3F139106C225552621DBB /* RCTEventDispatcher.h */; settings = {ATTRIBUTES = (Project, ); }; }; + BB5703CC5A171DC2B6CEDF71E4748D94 /* RCTEventDispatcher.h in Headers */ = {isa = PBXBuildFile; fileRef = 38686A84D06924E5F84F508EC9989699 /* RCTEventDispatcher.h */; settings = {ATTRIBUTES = (Project, ); }; }; BB72C52113C41EE2194D3A3EA913DC69 /* webpi_dec.h in Headers */ = {isa = PBXBuildFile; fileRef = D91483DC2ACFBE14D934FB42131A0745 /* webpi_dec.h */; settings = {ATTRIBUTES = (Project, ); }; }; - BBA5C37A4DA22F35E2BFE079AF8D4D97 /* UMViewManagerAdapter.h in Headers */ = {isa = PBXBuildFile; fileRef = BDC3B5646EFDB78EC0F56B9F584539B7 /* UMViewManagerAdapter.h */; settings = {ATTRIBUTES = (Project, ); }; }; + BBA5C37A4DA22F35E2BFE079AF8D4D97 /* UMViewManagerAdapter.h in Headers */ = {isa = PBXBuildFile; fileRef = 5B27647BCAB7E9E56AF1C1B7224AA22A /* UMViewManagerAdapter.h */; settings = {ATTRIBUTES = (Project, ); }; }; BBB9BBD85FD78B7232142ADE3AD15BD0 /* SDImageWebPCoder.h in Headers */ = {isa = PBXBuildFile; fileRef = 4539E3108AC9825410E6FE95CBEB6EA7 /* SDImageWebPCoder.h */; settings = {ATTRIBUTES = (Project, ); }; }; - BBC80520412E1AB6BF6F4A6FB1183715 /* SRRandom.m in Sources */ = {isa = PBXBuildFile; fileRef = 5D8A0D0BBAD00AB40617AED6CF4C9C88 /* SRRandom.m */; }; - BBDB8085D34C1BA129E1735348672A38 /* RCTMultilineTextInputViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = D0F09ED87D626E7B4260EDB6A8ACEBD2 /* RCTMultilineTextInputViewManager.m */; }; - BC323EC0EB4DA913977AF3EBC1C66254 /* RCTModuleMethod.mm in Sources */ = {isa = PBXBuildFile; fileRef = 72D4F5F1BEF3C9DB9A518DCD538F01B7 /* RCTModuleMethod.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + BBDB8085D34C1BA129E1735348672A38 /* RCTMultilineTextInputViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = B0A0720DC33231F000E35AF8AF43BE34 /* RCTMultilineTextInputViewManager.m */; }; + BC323EC0EB4DA913977AF3EBC1C66254 /* RCTModuleMethod.mm in Sources */ = {isa = PBXBuildFile; fileRef = 032A3A60C74E36C608A3A1B273340DE1 /* RCTModuleMethod.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; BC383056F1DB2F7478B30CCF6FFE5F60 /* FIRLogger.h in Headers */ = {isa = PBXBuildFile; fileRef = 1999800C3B5B4E5C0A32818F3D47D45A /* FIRLogger.h */; settings = {ATTRIBUTES = (Project, ); }; }; - BC6530F3F8CE6345A867199080359250 /* QBAssetCell.h in Headers */ = {isa = PBXBuildFile; fileRef = 8EDE901EC7D3DE0A41D9B041CF2453F1 /* QBAssetCell.h */; settings = {ATTRIBUTES = (Project, ); }; }; - BC78C56227D8A57660E82B212A39D116 /* SRProxyConnect.h in Headers */ = {isa = PBXBuildFile; fileRef = F13C090843416CDD37AC9ACD3E2A329D /* SRProxyConnect.h */; settings = {ATTRIBUTES = (Project, ); }; }; - BCE4A2AF4D01811C7693014AE1612E24 /* en.lproj in Resources */ = {isa = PBXBuildFile; fileRef = 4585A7A5C539B02B0BF2A53842C81F01 /* en.lproj */; }; + BC6530F3F8CE6345A867199080359250 /* QBAssetCell.h in Headers */ = {isa = PBXBuildFile; fileRef = AC735A59116C66149F11C9C6ECA571AD /* QBAssetCell.h */; settings = {ATTRIBUTES = (Project, ); }; }; + BCE4A2AF4D01811C7693014AE1612E24 /* en.lproj in Resources */ = {isa = PBXBuildFile; fileRef = 381F1DC347A9886BB29C50263D255BBD /* en.lproj */; }; BCED26E631DA2A5593A277A7D1E02963 /* UIButton+WebCache.m in Sources */ = {isa = PBXBuildFile; fileRef = 6D9558B896F99A90A93DC099BD7C8D88 /* UIButton+WebCache.m */; }; BD1D9E289B85888E5A0DA85BFDB7A306 /* common_sse41.h in Headers */ = {isa = PBXBuildFile; fileRef = B298AD16DF9C7781D252AE8F6F69B0B4 /* common_sse41.h */; settings = {ATTRIBUTES = (Project, ); }; }; - BD4338E90B5A16B6947BCA512B8F86AA /* RCTRawTextViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 63109D175A5FD3B40F98A65BCBDA80B6 /* RCTRawTextViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + BD4338E90B5A16B6947BCA512B8F86AA /* RCTRawTextViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = B02E191D7CCFB36F49F8903DA1DB0940 /* RCTRawTextViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; BD5367AA54AEAA782DE3C4CA57CFECD7 /* GULReachabilityChecker.m in Sources */ = {isa = PBXBuildFile; fileRef = A2894FAA81841C7DE26398644B1F3ACD /* GULReachabilityChecker.m */; }; - BD5CFC11C49F0BB6ED6DE6C3B88A3B5B /* RCTSegmentedControl.h in Headers */ = {isa = PBXBuildFile; fileRef = 3C537E8220F54370D5B5FAEED6470734 /* RCTSegmentedControl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - BD79F6B65349C921CE308EDC53DBFED7 /* RNCWebView.h in Headers */ = {isa = PBXBuildFile; fileRef = A862B67A6C938F10F5935FFD3D10F460 /* RNCWebView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + BD5CFC11C49F0BB6ED6DE6C3B88A3B5B /* RCTSegmentedControl.h in Headers */ = {isa = PBXBuildFile; fileRef = 6E992CC08AE1065016A7F5DA77C6120E /* RCTSegmentedControl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + BD79F6B65349C921CE308EDC53DBFED7 /* RNCWebView.h in Headers */ = {isa = PBXBuildFile; fileRef = C980CD0C14BCDCF7A1A63E4A0702E677 /* RNCWebView.h */; settings = {ATTRIBUTES = (Project, ); }; }; BDCAFF93C7C58C8AD26A612B7F4D8512 /* GDTCORReachability.h in Headers */ = {isa = PBXBuildFile; fileRef = 78A5E4508694C25663685CE163B7A18D /* GDTCORReachability.h */; settings = {ATTRIBUTES = (Project, ); }; }; BE1ABF05189FFE8D346CC00A9F85EAEF /* UIImage+Metadata.m in Sources */ = {isa = PBXBuildFile; fileRef = 6ECC10905A36138211973FA8BFF62640 /* UIImage+Metadata.m */; }; - BE1EE1B1FACDC3A698B499BB6B844904 /* RCTTextViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 89A375CD79FD4E7A782B78ADFD3CED41 /* RCTTextViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - BE39F1DC3D3F1C43D2DCD3DBCCF32E5D /* RCTTextView.h in Headers */ = {isa = PBXBuildFile; fileRef = 381ACA616782C0C9F41DD974A4BF5521 /* RCTTextView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + BE1EE1B1FACDC3A698B499BB6B844904 /* RCTTextViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 4B2779409AF590F9DC3A7708F12DD950 /* RCTTextViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + BE39F1DC3D3F1C43D2DCD3DBCCF32E5D /* RCTTextView.h in Headers */ = {isa = PBXBuildFile; fileRef = F98089A2B7C555B7C71068FC3D66F7B5 /* RCTTextView.h */; settings = {ATTRIBUTES = (Project, ); }; }; BE40EDBCF4471381FF28E7701C8FEA69 /* bit_reader_utils.c in Sources */ = {isa = PBXBuildFile; fileRef = B491F35981D199A9F597FA6ADB1CDADD /* bit_reader_utils.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - BE66A472C87FB28630F530C61341D91D /* RCTModuloAnimatedNode.m in Sources */ = {isa = PBXBuildFile; fileRef = AD9F3B8647BE8BA12C1FCF44900864AE /* RCTModuloAnimatedNode.m */; }; - BE81EB7D0762FF06B9148922F597CE73 /* RCTCxxConvert.h in Headers */ = {isa = PBXBuildFile; fileRef = 176C3F50309045AEA58CA738F9B1F5CB /* RCTCxxConvert.h */; settings = {ATTRIBUTES = (Project, ); }; }; + BE66A472C87FB28630F530C61341D91D /* RCTModuloAnimatedNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 7E6DF9E6EA157EE86994776DB213ED2B /* RCTModuloAnimatedNode.m */; }; + BE81EB7D0762FF06B9148922F597CE73 /* RCTCxxConvert.h in Headers */ = {isa = PBXBuildFile; fileRef = B6D562B0D04F9C595BF3969F0306EDBA /* RCTCxxConvert.h */; settings = {ATTRIBUTES = (Project, ); }; }; BE904FB7BF17A7C1AED62EE3079A1950 /* SDWebImageCacheSerializer.h in Headers */ = {isa = PBXBuildFile; fileRef = 5E395510D11DCC7395A036D8E1F57BA3 /* SDWebImageCacheSerializer.h */; settings = {ATTRIBUTES = (Project, ); }; }; - BEAE2BC124DD18BB39D4A17D118FA151 /* RCTReloadCommand.m in Sources */ = {isa = PBXBuildFile; fileRef = A93F01BDE5BE564697AA6E77797E4897 /* RCTReloadCommand.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + BEAE2BC124DD18BB39D4A17D118FA151 /* RCTReloadCommand.m in Sources */ = {isa = PBXBuildFile; fileRef = 9FA2085627B2BD75045C8ECB6919AFF9 /* RCTReloadCommand.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; BEB8A46866B0036585164D48371F67F3 /* rescaler_msa.c in Sources */ = {isa = PBXBuildFile; fileRef = 476178CDB7F6A524306920EEDD3D60DC /* rescaler_msa.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; BEEB788D1743D4D1D9AA52C31C528B19 /* FBLPromise+Any.m in Sources */ = {isa = PBXBuildFile; fileRef = BD58A224BC63CD1E1BB8C5E6A0AC8AD7 /* FBLPromise+Any.m */; }; - BEEBCB09A0A2EF83877848B92D64AFBE /* BSG_KSCrashReportStore.h in Headers */ = {isa = PBXBuildFile; fileRef = 3134FBAA99877C4AA59911BA02CDC2EC /* BSG_KSCrashReportStore.h */; settings = {ATTRIBUTES = (Project, ); }; }; + BEEBCB09A0A2EF83877848B92D64AFBE /* BSG_KSCrashReportStore.h in Headers */ = {isa = PBXBuildFile; fileRef = 75FF3E83DCCF979DB9AFA4E36A6E0F5A /* BSG_KSCrashReportStore.h */; settings = {ATTRIBUTES = (Project, ); }; }; BF23FDD138C85BBD370A5B2154CEA590 /* SDAnimatedImageView+WebCache.h in Headers */ = {isa = PBXBuildFile; fileRef = 55172F9BCA61ED8903813A0BE84F0A81 /* SDAnimatedImageView+WebCache.h */; settings = {ATTRIBUTES = (Project, ); }; }; BF3A2F2133AD7A3B2ACE6D1E132BAEDE /* SDWebImageManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 6F8611F8EC76BA0AD83706FBD552AEFF /* SDWebImageManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - BF545957D6AC7F90C6B1273591A96A42 /* RecoverableError.h in Headers */ = {isa = PBXBuildFile; fileRef = 9A734040A5B5A83A3725D4245DF81EA9 /* RecoverableError.h */; settings = {ATTRIBUTES = (Project, ); }; }; - BF65D2EA4B15FB41B542CC4ABEF114F6 /* RAMBundleRegistry.h in Headers */ = {isa = PBXBuildFile; fileRef = 79F723683ACCA77DB181F8F4D1D69975 /* RAMBundleRegistry.h */; settings = {ATTRIBUTES = (Project, ); }; }; - BF6A5880435F00A13B94E354AD1306E2 /* RCTDisplayLink.h in Headers */ = {isa = PBXBuildFile; fileRef = D5BB8C4A5B89B93A54210020B52760AD /* RCTDisplayLink.h */; settings = {ATTRIBUTES = (Project, ); }; }; + BF545957D6AC7F90C6B1273591A96A42 /* RecoverableError.h in Headers */ = {isa = PBXBuildFile; fileRef = CD07B1E4268858E14F0544203AE43256 /* RecoverableError.h */; settings = {ATTRIBUTES = (Project, ); }; }; + BF65D2EA4B15FB41B542CC4ABEF114F6 /* RAMBundleRegistry.h in Headers */ = {isa = PBXBuildFile; fileRef = 2879556DEB4A8C08C13CA52B827D1B30 /* RAMBundleRegistry.h */; settings = {ATTRIBUTES = (Project, ); }; }; + BF6A5880435F00A13B94E354AD1306E2 /* RCTDisplayLink.h in Headers */ = {isa = PBXBuildFile; fileRef = CD2AF6A5A1620BD7F0DCD17EAB8A73CB /* RCTDisplayLink.h */; settings = {ATTRIBUTES = (Project, ); }; }; BF6C73488638D5E9B195DC5890E36369 /* utils.h in Headers */ = {isa = PBXBuildFile; fileRef = B2BDA968F3FED747EC612A14381CAFCB /* utils.h */; settings = {ATTRIBUTES = (Project, ); }; }; BF91C4FB47A214A702EF83BCCEA1FCEA /* GDTCORConsoleLogger.h in Headers */ = {isa = PBXBuildFile; fileRef = 0E711CC040CB2C9B6660541E7C73B310 /* GDTCORConsoleLogger.h */; settings = {ATTRIBUTES = (Project, ); }; }; - BF9530B10724263A128DDA21ACFFAD41 /* UMReactNativeAdapter.h in Headers */ = {isa = PBXBuildFile; fileRef = 311BD31044EA36C407E4B911BE3314CE /* UMReactNativeAdapter.h */; settings = {ATTRIBUTES = (Project, ); }; }; - BFFEE86F251CF7A686CA79F52D64A7DB /* SRSecurityPolicy.m in Sources */ = {isa = PBXBuildFile; fileRef = B7EFC596C03B6ED88161E433283CCC12 /* SRSecurityPolicy.m */; }; + BF9530B10724263A128DDA21ACFFAD41 /* UMReactNativeAdapter.h in Headers */ = {isa = PBXBuildFile; fileRef = B64158B9BBC03FE61CC62C98E97988A0 /* UMReactNativeAdapter.h */; settings = {ATTRIBUTES = (Project, ); }; }; C06E0853195162D78F258D0F541B2CAD /* RSKImageCropViewController+Protected.h in Headers */ = {isa = PBXBuildFile; fileRef = 068267BE04ED7FFA08E2A827F9406A85 /* RSKImageCropViewController+Protected.h */; settings = {ATTRIBUTES = (Project, ); }; }; C0A325EF483D590E330CAE0754811F0E /* yuv_neon.c in Sources */ = {isa = PBXBuildFile; fileRef = FAEB584D2FCC43846A157044BC9D5E46 /* yuv_neon.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - C0ACB39A2A62B6BE2B02F8A7AB97A14F /* RNFirebaseLinks.m in Sources */ = {isa = PBXBuildFile; fileRef = 9B51DF7B5215F677AB26AF7126F92F77 /* RNFirebaseLinks.m */; }; - C0CB7350BAE204A6BD9FAB47CE2FE34F /* RCTImageUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = C57481EF13F88F7181813402EC4CF0B7 /* RCTImageUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C11E5987EE418D21E6B1CF2AB4703EF5 /* RCTInputAccessoryShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = 53845A81703C1C4952A0BB23FEE64B7D /* RCTInputAccessoryShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C12B918C4C10BB7E3D71B5DB2D822599 /* SRDelegateController.h in Headers */ = {isa = PBXBuildFile; fileRef = 10B080B2C16168A95CE68EF1378B8A6F /* SRDelegateController.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C12CECE1BFC62D60E7A7F28CFEB07FA7 /* RCTInspector.mm in Sources */ = {isa = PBXBuildFile; fileRef = 9E74C17E7160312F910F44D6B6B8340A /* RCTInspector.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - C13607802A82E097C94614A6F16A33AE /* RNVectorIcons-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = A1050F11CBCC5A08C0F9B6D02F0AED86 /* RNVectorIcons-dummy.m */; }; - C13728C0CF5BB9AC2E7C7AD120BE6624 /* RCTImageEditingManager.m in Sources */ = {isa = PBXBuildFile; fileRef = C3F6C8FDCD5A3058409CC47FF7967A70 /* RCTImageEditingManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; - C139E6A4DFA2EE38110230A5CAE784EC /* SRPinningSecurityPolicy.m in Sources */ = {isa = PBXBuildFile; fileRef = FCBB8E3B6FC94A6A7940D8898AC91B16 /* SRPinningSecurityPolicy.m */; }; - C1527E631CCA0A9E697CE853758205F9 /* RNPanHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = 02F725A207A9E435E47C3A0729C45139 /* RNPanHandler.m */; }; - C160A88864FE384B7BB83ADBD7CD4570 /* RCTInputAccessoryShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = 53845A81703C1C4952A0BB23FEE64B7D /* RCTInputAccessoryShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C183C6E11A0E0A2F431CBF0CA057B88D /* REACallFuncNode.h in Headers */ = {isa = PBXBuildFile; fileRef = C16B0AB3BA550BAB0D12425260DD3ED0 /* REACallFuncNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C1A123BFA03E70A8959BBE5BFEE568C2 /* RCTInputAccessoryView.h in Headers */ = {isa = PBXBuildFile; fileRef = 1E2C8AAD119BED651B2BAF6C020FAD3C /* RCTInputAccessoryView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C1B699A7F2B98F0236BD674973A9BAC0 /* RCTTouchEvent.h in Headers */ = {isa = PBXBuildFile; fileRef = B950F2AD89310ADE0AD499648B2F95A0 /* RCTTouchEvent.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C1C07EA90BC7C396D73BFB7E2876A20C /* RCTUIManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 64D6A0EC48B1AD4A2A516B7E6395D9C8 /* RCTUIManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - C1C42D2A161E005AC9884543F93F9990 /* CompactValue.h in Headers */ = {isa = PBXBuildFile; fileRef = 7CA46703A00BA4A9EF0DD355AEF5DD90 /* CompactValue.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C20D3318B5E9CD84E1EE98ABED9ED88C /* JSDeltaBundleClient.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BA21698334313D792491E49E77C3B469 /* JSDeltaBundleClient.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - C23FFBEA39C9543EFABCF7A5FEA5A9B7 /* SRMutex.h in Headers */ = {isa = PBXBuildFile; fileRef = 51CF1452F991EA98E58AFC0BE7AA197F /* SRMutex.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C244C4AEF749407B55BEB89F8A908791 /* BSG_KSCrashSentry_CPPException.mm in Sources */ = {isa = PBXBuildFile; fileRef = 799A090E58929BD48D329F145571CE6F /* BSG_KSCrashSentry_CPPException.mm */; }; - C2684537D71ACDD166474EDB26F48E95 /* RCTNetInfo.m in Sources */ = {isa = PBXBuildFile; fileRef = F8566C99EDB572BAEA82EDEE2EF22A05 /* RCTNetInfo.m */; }; + C0ACB39A2A62B6BE2B02F8A7AB97A14F /* RNFirebaseLinks.m in Sources */ = {isa = PBXBuildFile; fileRef = B9FCABC0CCB401DD3C7C26B92D2303E8 /* RNFirebaseLinks.m */; }; + C0CB7350BAE204A6BD9FAB47CE2FE34F /* RCTImageUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = 001F2E7F1DE84E22E6A02B9950856962 /* RCTImageUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C11E5987EE418D21E6B1CF2AB4703EF5 /* RCTInputAccessoryShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = 8A8B6EA1E5AD764ECC191164749FC3D9 /* RCTInputAccessoryShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C12CECE1BFC62D60E7A7F28CFEB07FA7 /* RCTInspector.mm in Sources */ = {isa = PBXBuildFile; fileRef = F43ADA9AC1135C45B508116C9918745C /* RCTInspector.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + C13607802A82E097C94614A6F16A33AE /* RNVectorIcons-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 6CEABFCA41CB42F5B3CAFFA472645E5D /* RNVectorIcons-dummy.m */; }; + C13728C0CF5BB9AC2E7C7AD120BE6624 /* RCTImageEditingManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 2831EE20313C3202F55D3651E49DEE21 /* RCTImageEditingManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + C1527E631CCA0A9E697CE853758205F9 /* RNPanHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = A13F787F16E1F201620EEE82BD0B252B /* RNPanHandler.m */; }; + C160A88864FE384B7BB83ADBD7CD4570 /* RCTInputAccessoryShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = 8A8B6EA1E5AD764ECC191164749FC3D9 /* RCTInputAccessoryShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C183C6E11A0E0A2F431CBF0CA057B88D /* REACallFuncNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 31656A9AAAC055D25FC56A768516F9EA /* REACallFuncNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C1A123BFA03E70A8959BBE5BFEE568C2 /* RCTInputAccessoryView.h in Headers */ = {isa = PBXBuildFile; fileRef = 4E9E1910C00EB122C812A55E77E3CE8D /* RCTInputAccessoryView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C1B699A7F2B98F0236BD674973A9BAC0 /* RCTTouchEvent.h in Headers */ = {isa = PBXBuildFile; fileRef = 53BCCAACD566CBD030E535C2D2A9CA0B /* RCTTouchEvent.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C1C07EA90BC7C396D73BFB7E2876A20C /* RCTUIManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 6604636E857C6DB4F65CDD7529C29621 /* RCTUIManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + C1C42D2A161E005AC9884543F93F9990 /* CompactValue.h in Headers */ = {isa = PBXBuildFile; fileRef = 13344BE3EB2DBA8011D66765692F0C39 /* CompactValue.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C20D3318B5E9CD84E1EE98ABED9ED88C /* JSDeltaBundleClient.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8DE306F01A8F8C01463E62520EBD4B79 /* JSDeltaBundleClient.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + C244C4AEF749407B55BEB89F8A908791 /* BSG_KSCrashSentry_CPPException.mm in Sources */ = {isa = PBXBuildFile; fileRef = 4EA6DA9EFE4E732DEB26F4811C5CCD26 /* BSG_KSCrashSentry_CPPException.mm */; }; + C2684537D71ACDD166474EDB26F48E95 /* RCTNetInfo.m in Sources */ = {isa = PBXBuildFile; fileRef = 0FE4A35B3060C6FAFB1CEA413EF89E21 /* RCTNetInfo.m */; }; C26A8A38E4FCFA0A1C3BE2AFC067F378 /* FIRInstallationsVersion.m in Sources */ = {isa = PBXBuildFile; fileRef = 81B9283887252C3A5BFACBC794BD9596 /* FIRInstallationsVersion.m */; }; - C26D1A4CB64ABB25355919733FA07F67 /* UMModuleRegistryProvider.m in Sources */ = {isa = PBXBuildFile; fileRef = 338CC2A9A05E26A831599E57812361DF /* UMModuleRegistryProvider.m */; }; + C26D1A4CB64ABB25355919733FA07F67 /* UMModuleRegistryProvider.m in Sources */ = {isa = PBXBuildFile; fileRef = 350AD172999370ABF4BACFB3589A46E0 /* UMModuleRegistryProvider.m */; }; C271EC3CEE125456B9023EF221D3BDF2 /* FIRInstanceIDTokenDeleteOperation.h in Headers */ = {isa = PBXBuildFile; fileRef = D00145960C57E93C0FE7769437FEFA04 /* FIRInstanceIDTokenDeleteOperation.h */; settings = {ATTRIBUTES = (Project, ); }; }; C286C22537607F78CDEA71274AFEA354 /* SDDisplayLink.m in Sources */ = {isa = PBXBuildFile; fileRef = 3F19DADEA197E3EB0A522E8E1D520775 /* SDDisplayLink.m */; }; - C29A733CDEBD3A9A2574F947537CEFB2 /* RCTEventEmitter.m in Sources */ = {isa = PBXBuildFile; fileRef = BDE577FD28DA6C87A519E233BA0FC8D9 /* RCTEventEmitter.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - C2DAABCFA14AF3B14F81C7763C0E9B44 /* REAAllTransitions.h in Headers */ = {isa = PBXBuildFile; fileRef = 6635661FE90F9C0B843EC5459944A09E /* REAAllTransitions.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C2FE5A4BD90912BBC15DF5CC9C172146 /* JSExecutor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 99B418EDEB220C1A0BCD1A0A0B8156E7 /* JSExecutor.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + C29A733CDEBD3A9A2574F947537CEFB2 /* RCTEventEmitter.m in Sources */ = {isa = PBXBuildFile; fileRef = 7A2423EA63851EBA3580D9490B341C4C /* RCTEventEmitter.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + C2DAABCFA14AF3B14F81C7763C0E9B44 /* REAAllTransitions.h in Headers */ = {isa = PBXBuildFile; fileRef = 462651BBAB120CE2204EC03B2466C083 /* REAAllTransitions.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C2FE5A4BD90912BBC15DF5CC9C172146 /* JSExecutor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 6CD1833BA2BA013CA5E2E53441796CAE /* JSExecutor.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; C3349FD62950CE68B534E08E98989248 /* filters.c in Sources */ = {isa = PBXBuildFile; fileRef = E154067690FE650334C7C3D34DA323A1 /* filters.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - C34CB0B8FFE337C549DD2A9F0D84B82A /* RCTRootView.h in Headers */ = {isa = PBXBuildFile; fileRef = 9F8338440D9AC78C37FECEB66F768F69 /* RCTRootView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C34CB0B8FFE337C549DD2A9F0D84B82A /* RCTRootView.h in Headers */ = {isa = PBXBuildFile; fileRef = C8641817A53EB16ED589E7017D8F4EB7 /* RCTRootView.h */; settings = {ATTRIBUTES = (Project, ); }; }; C376B5C079A3D667D292AFCE36995859 /* SDImageCacheDefine.h in Headers */ = {isa = PBXBuildFile; fileRef = BE710B81BB8CB34A3D44E178C59ED0D3 /* SDImageCacheDefine.h */; settings = {ATTRIBUTES = (Project, ); }; }; C3A358A8B68EB87FA331A54416E3E092 /* SDWebImage-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = F09D66808FCE05691A438366BC25B746 /* SDWebImage-dummy.m */; }; - C3EAD7F273D022D02D3403E9015A8523 /* RCTProfile.h in Headers */ = {isa = PBXBuildFile; fileRef = 770686229D678BD8D17B9C3C4103774E /* RCTProfile.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C426E7406D39F8B9DC748D66406DE5D9 /* EXAudioRecordingPermissionRequester.m in Sources */ = {isa = PBXBuildFile; fileRef = 359F229F29BACA8A332F42FCA27FD253 /* EXAudioRecordingPermissionRequester.m */; }; - C45AD96F1A0B37D92B6961C3CE437CB8 /* RCTModalHostViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = D5210DBD5CEE5BD5EF9DFA8AF49492EC /* RCTModalHostViewManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - C46CABA6A326F70D7624EF26233C77BE /* UMCore-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = E287BA502DB96DE50A778991BA5A01BF /* UMCore-dummy.m */; }; - C479D38C287606B149EAD8AF8F0532B2 /* QBSlomoIconView.m in Sources */ = {isa = PBXBuildFile; fileRef = EC39A914D7CEFD653C607D912A27C1AD /* QBSlomoIconView.m */; }; - C4A2F95818E70C18AF66DFAFDB40D431 /* RCTDeviceInfo.h in Headers */ = {isa = PBXBuildFile; fileRef = 324C341C67E51980953FB2A952813183 /* RCTDeviceInfo.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C4C0690D0CC7D0EFC458CE9E1C67B9A2 /* RNJitsiMeetViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 101E0C5F993CFDA8DE70331408FD6286 /* RNJitsiMeetViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C3EAD7F273D022D02D3403E9015A8523 /* RCTProfile.h in Headers */ = {isa = PBXBuildFile; fileRef = 7F7CCC85FE07D8D74A5D7CE9D9391E5A /* RCTProfile.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C426E7406D39F8B9DC748D66406DE5D9 /* EXAudioRecordingPermissionRequester.m in Sources */ = {isa = PBXBuildFile; fileRef = C353DA738806DE69766268C01BB7AEB3 /* EXAudioRecordingPermissionRequester.m */; }; + C45AD96F1A0B37D92B6961C3CE437CB8 /* RCTModalHostViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 352EBF854A2144E7D723C8C90EFF61C1 /* RCTModalHostViewManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + C46CABA6A326F70D7624EF26233C77BE /* UMCore-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 432DB2A7AD085C3F73F4627E1619060E /* UMCore-dummy.m */; }; + C479D38C287606B149EAD8AF8F0532B2 /* QBSlomoIconView.m in Sources */ = {isa = PBXBuildFile; fileRef = 8135E9B831B83589E003527B4B16340D /* QBSlomoIconView.m */; }; + C4A2F95818E70C18AF66DFAFDB40D431 /* RCTDeviceInfo.h in Headers */ = {isa = PBXBuildFile; fileRef = 0B34C148473052547D211F4B4E03700F /* RCTDeviceInfo.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C4C0690D0CC7D0EFC458CE9E1C67B9A2 /* RNJitsiMeetViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 445803957C1CAB12D47CFBBA58447056 /* RNJitsiMeetViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; C4EBF0D56475CB1644E5164352A24BD5 /* FIRInstanceID+Private.m in Sources */ = {isa = PBXBuildFile; fileRef = 36585169EB94500CF044692BF107C3A0 /* FIRInstanceID+Private.m */; }; C5114FB6C46BCF309214DF7E7D17C471 /* GDTCOREventTransformer.h in Headers */ = {isa = PBXBuildFile; fileRef = 6DBFEEEE8490B0AEC5A93E092F2857A5 /* GDTCOREventTransformer.h */; settings = {ATTRIBUTES = (Project, ); }; }; C51C3D70CCB9260030FA831AF35788CC /* pb_decode.c in Sources */ = {isa = PBXBuildFile; fileRef = B72D2A1AFE5D8CB8AE76AADD8B87B42B /* pb_decode.c */; settings = {COMPILER_FLAGS = "-fno-objc-arc -fno-objc-arc"; }; }; - C54354698BDAC62A3BD74819A4F3A2F8 /* RCTSurfaceStage.h in Headers */ = {isa = PBXBuildFile; fileRef = 5B6008E05CC91A71F962829CA0E6CE90 /* RCTSurfaceStage.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C546F80F28448E4840B54656FED5B9C0 /* jsi-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 9AA5595991C741CEE6643FADA2FBC7AD /* jsi-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C54354698BDAC62A3BD74819A4F3A2F8 /* RCTSurfaceStage.h in Headers */ = {isa = PBXBuildFile; fileRef = 80BDEA72FADCDD09F7EA4DB54EA2D491 /* RCTSurfaceStage.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C546F80F28448E4840B54656FED5B9C0 /* jsi-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 1D0B7A74AA89880E51C1C602661BE0D0 /* jsi-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; C5A7EA3714C687D6888782149F9AD31F /* FBLPromise+Always.m in Sources */ = {isa = PBXBuildFile; fileRef = C06F60B264CEB19482C4DFD3476D64D2 /* FBLPromise+Always.m */; }; - C5B6D6D972FDFA5C328D46C038C831F0 /* jsilib-windows.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 4EADED15D71917222E6187CBFD5148FB /* jsilib-windows.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + C5B6D6D972FDFA5C328D46C038C831F0 /* jsilib-windows.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1B6582127616A80FE1ECF318DA264FF0 /* 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"; }; }; C5D9146DE660B22941C6086F34A47E37 /* GDTCORUploadPackage_Private.h in Headers */ = {isa = PBXBuildFile; fileRef = 9B6AE09786B2423B11C27D00079FCE17 /* GDTCORUploadPackage_Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C5E72E14D8CFFC9470A4CCF50E4F7446 /* BugsnagReactNative-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 3F382A40AE236F54486DDA821B9F6254 /* BugsnagReactNative-dummy.m */; }; - C61D07BBE1FA5ED2C4AB03C96D9A2F8A /* RCTSegmentedControlManager.h in Headers */ = {isa = PBXBuildFile; fileRef = A64A892C9BB5809DD7F08D9DE14A1A28 /* RCTSegmentedControlManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C6392E335499D2C84212964C3C05A577 /* BugsnagSessionTrackingPayload.m in Sources */ = {isa = PBXBuildFile; fileRef = BAEC8B4D8A58E94B63E4802D8A80C726 /* BugsnagSessionTrackingPayload.m */; }; + C5E72E14D8CFFC9470A4CCF50E4F7446 /* BugsnagReactNative-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = B0A9A6EFD153CBF12ACA4453003585B6 /* BugsnagReactNative-dummy.m */; }; + C61D07BBE1FA5ED2C4AB03C96D9A2F8A /* RCTSegmentedControlManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 8E235073D947F6AE9BD52EEB39D17CA7 /* RCTSegmentedControlManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C6392E335499D2C84212964C3C05A577 /* BugsnagSessionTrackingPayload.m in Sources */ = {isa = PBXBuildFile; fileRef = B29C092A6C3A3E45D14C9E7AD888587E /* BugsnagSessionTrackingPayload.m */; }; C65E95799529526B6E7D878BE5A8C15A /* logging.h in Headers */ = {isa = PBXBuildFile; fileRef = EEE7EDE32D47E34C402A333EA97DECAB /* logging.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C6B6684C3D88C826389C24634EC328EC /* RCTTypedModuleConstants.mm in Sources */ = {isa = PBXBuildFile; fileRef = 142E0A31A9E6960D08872D751EC3327E /* RCTTypedModuleConstants.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32"; }; }; + C6B6684C3D88C826389C24634EC328EC /* RCTTypedModuleConstants.mm in Sources */ = {isa = PBXBuildFile; fileRef = 29A3D23975AEB6C01C3F1C00D62CFCA8 /* RCTTypedModuleConstants.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32"; }; }; C6D0C80B1F5469299A9914D27C84BD2C /* FIRInstanceIDURLQueryItem.m in Sources */ = {isa = PBXBuildFile; fileRef = D53CE5F9F1B3C1396FB3444A3DC670B0 /* FIRInstanceIDURLQueryItem.m */; }; - C6D1392176223C7A48AF027E57177FE9 /* BSG_KSCrashDoctor.h in Headers */ = {isa = PBXBuildFile; fileRef = 11B613F8F0813D328CEC721E55136EB2 /* BSG_KSCrashDoctor.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C6DEF164A573F8287A635565DD249709 /* UIView+React.h in Headers */ = {isa = PBXBuildFile; fileRef = 59CCC6AC00485DAEF9D9C5C18DA7611E /* UIView+React.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C6E12490D93786594E537BE98FC35205 /* RCTNetInfo.h in Headers */ = {isa = PBXBuildFile; fileRef = C11E28228FF84EF339353D067E2B5C67 /* RCTNetInfo.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C6D1392176223C7A48AF027E57177FE9 /* BSG_KSCrashDoctor.h in Headers */ = {isa = PBXBuildFile; fileRef = E980C56DE08EAF9CF485E3EE118D881F /* BSG_KSCrashDoctor.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C6DEF164A573F8287A635565DD249709 /* UIView+React.h in Headers */ = {isa = PBXBuildFile; fileRef = D55F630EF710E1F4061AC7F94DEC4437 /* UIView+React.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C6E12490D93786594E537BE98FC35205 /* RCTNetInfo.h in Headers */ = {isa = PBXBuildFile; fileRef = 87988F40F79859FAC6F8A054C52D402B /* RCTNetInfo.h */; settings = {ATTRIBUTES = (Project, ); }; }; C742507D7BE5A255918244DACF09664B /* FBLPromise+Await.m in Sources */ = {isa = PBXBuildFile; fileRef = 459EF69C87F0423DE3DAFA049CEC05EC /* FBLPromise+Await.m */; }; - C75E4435E4A6F4E4F77E7B11B6B93DCD /* RCTNativeAnimatedNodesManager.m in Sources */ = {isa = PBXBuildFile; fileRef = D413490959869B9502726774F55A6D44 /* RCTNativeAnimatedNodesManager.m */; }; - C78C8A90CCE1F00A747F50135C11A8BE /* RCTLinkingManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 07C3DCD3D67D3BF60A73E76C19167830 /* RCTLinkingManager.m */; }; - C79294613B7092A89E272A0F5BE8FE3A /* RCTSegmentedControlManager.m in Sources */ = {isa = PBXBuildFile; fileRef = AEF198231F8DA88E3C88A5CF95040E4F /* RCTSegmentedControlManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - C7A978DE2F048385786BB530A47BB2DB /* RCTTextDecorationLineType.h in Headers */ = {isa = PBXBuildFile; fileRef = 1325822DFA0CEBD5F2B9C376FAFC52B0 /* RCTTextDecorationLineType.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C7B3587D484D82AF3247A699972D2A1A /* NSDataBigString.h in Headers */ = {isa = PBXBuildFile; fileRef = 50D33B55BBF94FA2C02E25F302E01D1C /* NSDataBigString.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C8294A3AFB454918E426906BBF91A803 /* RCTAppState.h in Headers */ = {isa = PBXBuildFile; fileRef = 160690186E5B65B940AE74951A3E9B3B /* RCTAppState.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C8366575C514F3D18B718B19878DDFCB /* BugsnagBreadcrumb.m in Sources */ = {isa = PBXBuildFile; fileRef = 67AF74868CC0A8C3EC9D8133919D30CF /* BugsnagBreadcrumb.m */; }; + C75E4435E4A6F4E4F77E7B11B6B93DCD /* RCTNativeAnimatedNodesManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 73B37AC4B9C33052FBC9BC1B903457AF /* RCTNativeAnimatedNodesManager.m */; }; + C78C8A90CCE1F00A747F50135C11A8BE /* RCTLinkingManager.m in Sources */ = {isa = PBXBuildFile; fileRef = B78B850171569093651CB372D73233E0 /* RCTLinkingManager.m */; }; + C79294613B7092A89E272A0F5BE8FE3A /* RCTSegmentedControlManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 96D449172474B67F75AEB11C04EB8FE0 /* RCTSegmentedControlManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + C7A978DE2F048385786BB530A47BB2DB /* RCTTextDecorationLineType.h in Headers */ = {isa = PBXBuildFile; fileRef = CD41C0268DCE4A9FFBD989A394BA7C6D /* RCTTextDecorationLineType.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C7B3587D484D82AF3247A699972D2A1A /* NSDataBigString.h in Headers */ = {isa = PBXBuildFile; fileRef = 171C898D33D93EE03DDF4838D058E0A1 /* NSDataBigString.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C8294A3AFB454918E426906BBF91A803 /* RCTAppState.h in Headers */ = {isa = PBXBuildFile; fileRef = 5C27280A6BD823FE48C7BA606E831914 /* RCTAppState.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C8366575C514F3D18B718B19878DDFCB /* BugsnagBreadcrumb.m in Sources */ = {isa = PBXBuildFile; fileRef = D48DA90B6A9D843B63A7579FA2C7E972 /* BugsnagBreadcrumb.m */; }; C856EFB68D99D6BCB7520D35888D15A3 /* FBLPromiseError.m in Sources */ = {isa = PBXBuildFile; fileRef = FE99DA2A671583AFDB9A25490E656721 /* FBLPromiseError.m */; }; C8A1E2B5B461F13C1F45D6B15FFD6DE8 /* FIRLoggerLevel.h in Headers */ = {isa = PBXBuildFile; fileRef = 5844E9E8BBD906339EA96EF1BD79326F /* FIRLoggerLevel.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C8D012D66025AB92F9FDC8208D69D2FB /* RCTMultiplicationAnimatedNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 1624177CEA51AE1FCB5499928F2843BA /* RCTMultiplicationAnimatedNode.m */; }; + C8D012D66025AB92F9FDC8208D69D2FB /* RCTMultiplicationAnimatedNode.m in Sources */ = {isa = PBXBuildFile; fileRef = DA0A914F95EC0D3983D7B4C4AC1BD9CB /* RCTMultiplicationAnimatedNode.m */; }; C8E92C9357E3EC80CA4AA1FE9C8A3E35 /* NSButton+WebCache.m in Sources */ = {isa = PBXBuildFile; fileRef = 0B8C2145C378EBCD15C3B414625FD2D0 /* NSButton+WebCache.m */; }; - C8F5AE3DE1F7A264D3C7EB9F1168625B /* BugsnagKSCrashSysInfoParser.h in Headers */ = {isa = PBXBuildFile; fileRef = 2116176163B56F07C9E9B28FAF07B3CD /* BugsnagKSCrashSysInfoParser.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C91A80302343239A6EF2EA1AD3B2D760 /* RCTSafeAreaView.h in Headers */ = {isa = PBXBuildFile; fileRef = 0A62D7489F27C8A2F94B206B6DE094B0 /* RCTSafeAreaView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C940D03C9052AA2516156A393AFB5D41 /* RNFirebaseRemoteConfig.h in Headers */ = {isa = PBXBuildFile; fileRef = 74F4379011B30183DCE324FB2DB5EEA0 /* RNFirebaseRemoteConfig.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C95C8066C336E2C233D889A4AA7BF555 /* BSG_KSCrashSentry_CPPException.h in Headers */ = {isa = PBXBuildFile; fileRef = 620DB600098BB7C3DDAEBFF151CB985D /* BSG_KSCrashSentry_CPPException.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C98B27F94C0BFAA23B39DF31B94E96C2 /* EXAppRecordInterface.h in Headers */ = {isa = PBXBuildFile; fileRef = E0296559B0223F56ABE0BC8CA6ABCBE4 /* EXAppRecordInterface.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C9D6F1DEFE0BC49C87D941B8CEDBCD01 /* RCTShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = 6B57EFAEC94E64832C57A8D942E538B5 /* RCTShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C9EB3B7BD3C03FE53AD3B843B3B6B185 /* RCTConvertHelpers.mm in Sources */ = {isa = PBXBuildFile; fileRef = EFA9C1FFC3E5023F23DE8BB649D0CE97 /* RCTConvertHelpers.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32"; }; }; + C8F5AE3DE1F7A264D3C7EB9F1168625B /* BugsnagKSCrashSysInfoParser.h in Headers */ = {isa = PBXBuildFile; fileRef = 7CDBCF3709FCB8AE98B0B388322F0A1B /* BugsnagKSCrashSysInfoParser.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C91A80302343239A6EF2EA1AD3B2D760 /* RCTSafeAreaView.h in Headers */ = {isa = PBXBuildFile; fileRef = 127AED4A9CC0C0982EA1D024313501BB /* RCTSafeAreaView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C940D03C9052AA2516156A393AFB5D41 /* RNFirebaseRemoteConfig.h in Headers */ = {isa = PBXBuildFile; fileRef = 8999BFF15F3E1DC5AC79709C36F5AABF /* RNFirebaseRemoteConfig.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C95C8066C336E2C233D889A4AA7BF555 /* BSG_KSCrashSentry_CPPException.h in Headers */ = {isa = PBXBuildFile; fileRef = A9924A02B0332BE333C931246DEDE55E /* BSG_KSCrashSentry_CPPException.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C98B27F94C0BFAA23B39DF31B94E96C2 /* EXAppRecordInterface.h in Headers */ = {isa = PBXBuildFile; fileRef = 9F231E7A508F455940C09000159F5F86 /* EXAppRecordInterface.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C9D6F1DEFE0BC49C87D941B8CEDBCD01 /* RCTShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = FAC8ADEF9A55256F990A842716F5B09D /* RCTShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C9EB3B7BD3C03FE53AD3B843B3B6B185 /* RCTConvertHelpers.mm in Sources */ = {isa = PBXBuildFile; fileRef = F013381882F6989372AA77C67D3EFAD8 /* RCTConvertHelpers.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32"; }; }; CA19A520589C9D812CE9D3F6369629FF /* FBLPromise+Do.h in Headers */ = {isa = PBXBuildFile; fileRef = A05BCBED3EF0DF896274C0F7F49E194B /* FBLPromise+Do.h */; settings = {ATTRIBUTES = (Project, ); }; }; CA1E3C6D7EF76F233CB84BE0B847FE55 /* GDTCORUploader.h in Headers */ = {isa = PBXBuildFile; fileRef = E843DB2D9152A6891CEC690C8919CC3A /* GDTCORUploader.h */; settings = {ATTRIBUTES = (Project, ); }; }; - CA28EB9031E5E5659B2CA1F6BF10E4A2 /* RNFirebase.m in Sources */ = {isa = PBXBuildFile; fileRef = 5A35B117843579EEF47246C58706C5F0 /* RNFirebase.m */; }; - CA5793F28513936E05309A9CBDC43D43 /* BSG_KSCrashIdentifier.h in Headers */ = {isa = PBXBuildFile; fileRef = 1143F9AA0894C091A8B495D93ED2B112 /* BSG_KSCrashIdentifier.h */; settings = {ATTRIBUTES = (Project, ); }; }; - CA67199CAF85BD631A173567EACB114D /* Orientation.m in Sources */ = {isa = PBXBuildFile; fileRef = AF7F59D71FDFCE7DC66117FC06918CB6 /* Orientation.m */; }; + CA28EB9031E5E5659B2CA1F6BF10E4A2 /* RNFirebase.m in Sources */ = {isa = PBXBuildFile; fileRef = A6DD518CE86681853265FCA0B58F48F3 /* RNFirebase.m */; }; + CA5793F28513936E05309A9CBDC43D43 /* BSG_KSCrashIdentifier.h in Headers */ = {isa = PBXBuildFile; fileRef = 04492B680609A54B99BF01D684667ED7 /* BSG_KSCrashIdentifier.h */; settings = {ATTRIBUTES = (Project, ); }; }; + CA67199CAF85BD631A173567EACB114D /* Orientation.m in Sources */ = {isa = PBXBuildFile; fileRef = E6218FFA863AB1C0B55E87F9105712AC /* Orientation.m */; }; CA6E8BCDD8BA3F3A19D47CFD4CA9E6E0 /* msa_macro.h in Headers */ = {isa = PBXBuildFile; fileRef = 9602665ED7A4FCF32AFDE7F8439C8C55 /* msa_macro.h */; settings = {ATTRIBUTES = (Project, ); }; }; - CA82E137ABBD7249B72E92F7D52A1A2F /* ARTRenderable.m in Sources */ = {isa = PBXBuildFile; fileRef = 76B5651EA6DE6613FE7E753B399C8BEE /* ARTRenderable.m */; }; - CABED76FF5610C0534B090E89EA3B2FE /* BugsnagNotifier.m in Sources */ = {isa = PBXBuildFile; fileRef = E3CE71E9D6DA2DBCF9B04BD5652468CF /* BugsnagNotifier.m */; }; + CA82E137ABBD7249B72E92F7D52A1A2F /* ARTRenderable.m in Sources */ = {isa = PBXBuildFile; fileRef = 2BC8D4E3EF3B9785792DFC040198C1E6 /* ARTRenderable.m */; }; + CABED76FF5610C0534B090E89EA3B2FE /* BugsnagNotifier.m in Sources */ = {isa = PBXBuildFile; fileRef = 9055FF3A18019923DF5C754051CB78B9 /* BugsnagNotifier.m */; }; CADE8DAB6C036105B2CDB8BB6E0718F6 /* FirebaseInstanceID.h in Headers */ = {isa = PBXBuildFile; fileRef = 50D7273241DE97D0F9D835E4AFD14299 /* FirebaseInstanceID.h */; settings = {ATTRIBUTES = (Project, ); }; }; - CB53CB8940FA626EDC9DA002C71F0199 /* RNCAppearanceProviderManager.h in Headers */ = {isa = PBXBuildFile; fileRef = AE02A491760D2BBEB1B5070AEE77F91D /* RNCAppearanceProviderManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + CB53CB8940FA626EDC9DA002C71F0199 /* RNCAppearanceProviderManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 6067480709BD2FEE874AE26E59989BA0 /* RNCAppearanceProviderManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; CB600AAB35D900E3F6F6E38BD6D90D47 /* SDWebImageOptionsProcessor.h in Headers */ = {isa = PBXBuildFile; fileRef = FA4ECAC99B83A66CECD026177446CB77 /* SDWebImageOptionsProcessor.h */; settings = {ATTRIBUTES = (Project, ); }; }; - CB6FE39436E925E77F12794C3460AB4F /* JSIDynamic.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 6FC55A8B0E9B17572A9A3BF223B8133F /* JSIDynamic.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - CB75321A593E9F9CF14DC01E77D2B71F /* RNFirebaseFunctions.h in Headers */ = {isa = PBXBuildFile; fileRef = 9393EBBA5A0C71C877C8420DCFD4431A /* RNFirebaseFunctions.h */; settings = {ATTRIBUTES = (Project, ); }; }; + CB6FE39436E925E77F12794C3460AB4F /* JSIDynamic.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 459CB01901100E5C0B8096B30A4A88EF /* JSIDynamic.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + CB75321A593E9F9CF14DC01E77D2B71F /* RNFirebaseFunctions.h in Headers */ = {isa = PBXBuildFile; fileRef = FB5BD38277E6E2A60D5971113A65EC76 /* RNFirebaseFunctions.h */; settings = {ATTRIBUTES = (Project, ); }; }; CB97955D7E935F4B372A7198701979E0 /* GoogleDataTransportCCTSupport-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 4E5A82E2D83D68A798CF22B1F77829FC /* GoogleDataTransportCCTSupport-dummy.m */; }; - CBC3C8CDC98A30E9165A60C0AEC4C6E6 /* RCTSurfaceDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = 49B82A52342363D28F596DD1CC67FD30 /* RCTSurfaceDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; }; - CBE71DAFC11B03D9525FF1D9A22DB7EF /* BSG_KSSystemInfo.m in Sources */ = {isa = PBXBuildFile; fileRef = BDAC9F18BBFF584CC2329AAC07897BA5 /* BSG_KSSystemInfo.m */; }; - CC1D981A4F68A1E01BF9083FFC270693 /* React-jsi-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = A5F18E83AD7B95E2A2B5DE16AB228D3A /* React-jsi-dummy.m */; }; + CBC3C8CDC98A30E9165A60C0AEC4C6E6 /* RCTSurfaceDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = A5EEB97B307AF3C4767B6FE824F4AC39 /* RCTSurfaceDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; }; + CBE71DAFC11B03D9525FF1D9A22DB7EF /* BSG_KSSystemInfo.m in Sources */ = {isa = PBXBuildFile; fileRef = 4BEF442C14EB1725D989617D98AC0663 /* BSG_KSSystemInfo.m */; }; + CC1D981A4F68A1E01BF9083FFC270693 /* React-jsi-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 7920E4EE1AF2799AAAF18E57AA42039D /* React-jsi-dummy.m */; }; CC22415C6197490967F46F17797B9AF2 /* FIRInstanceIDCheckinPreferences.h in Headers */ = {isa = PBXBuildFile; fileRef = 340F8DC0B45AE963FE9FEB6290B2F0BA /* FIRInstanceIDCheckinPreferences.h */; settings = {ATTRIBUTES = (Project, ); }; }; - CC39BA71608BA9FFD62F8C5AF65B227F /* LongLivedObject.cpp in Sources */ = {isa = PBXBuildFile; fileRef = ECF2B2563BF4C84FB16738243BA115F4 /* LongLivedObject.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - CC5C5748F588ED764B57214FD01FA6AF /* RCTSurfaceStage.m in Sources */ = {isa = PBXBuildFile; fileRef = B21CA4A19845E0A61AB2E336377ACC3A /* RCTSurfaceStage.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + CC39BA71608BA9FFD62F8C5AF65B227F /* LongLivedObject.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 0324AFEAF677ABDDC5DF2C723CB58373 /* LongLivedObject.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + CC5C5748F588ED764B57214FD01FA6AF /* RCTSurfaceStage.m in Sources */ = {isa = PBXBuildFile; fileRef = 12D4CADAD278F7AFB72F216C771AD8F3 /* RCTSurfaceStage.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; CCAE7BA7471BB1DF772B3E823C61E0A4 /* UIImageView+WebCache.h in Headers */ = {isa = PBXBuildFile; fileRef = 975D51C22494655692ADF60A40FC9F94 /* UIImageView+WebCache.h */; settings = {ATTRIBUTES = (Project, ); }; }; CCB6F59AABF0E21BC0F9A4A9021C9181 /* alpha_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = 3C5D630EAB7ED6E3B3B8A2DA57CE8B0C /* alpha_enc.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; CCC12688626556FC8D8945D5A6922E8C /* FIRInstanceIDStore.h in Headers */ = {isa = PBXBuildFile; fileRef = 608E4B0589801079221FEB94B6D394AC /* FIRInstanceIDStore.h */; settings = {ATTRIBUTES = (Project, ); }; }; CCDD9B74F7A6299EF3EE5DFB9338D5D9 /* SDAnimatedImageRep.h in Headers */ = {isa = PBXBuildFile; fileRef = 31D19F7F78897D1BC258DE9692B90D33 /* SDAnimatedImageRep.h */; settings = {ATTRIBUTES = (Project, ); }; }; - CCEE7F22ED3AF3050046C3DA5CED35EF /* UMViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 0A33D132A1E8748CF00DEFBF335C393A /* UMViewManager.m */; }; - CD20FB8B82F46A41B46BE2243C2207A6 /* React-RCTNetwork-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = C804F5D566B2CBBA0333E924A4FD5386 /* React-RCTNetwork-dummy.m */; }; - CD91D2C366431EB9D88F23EE6B168274 /* SRMutex.m in Sources */ = {isa = PBXBuildFile; fileRef = C76E7FF2703F50B0592F86A822430F1F /* SRMutex.m */; }; + CCEE7F22ED3AF3050046C3DA5CED35EF /* UMViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 370C0BF090AADF29F836C4B173E20BA8 /* UMViewManager.m */; }; + CD20FB8B82F46A41B46BE2243C2207A6 /* React-RCTNetwork-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 0D2DE9827B9D6AC0450FC8319D97BE71 /* React-RCTNetwork-dummy.m */; }; CDBD7932A97BB1C7CC97098EBFE7355A /* SDImageFrame.m in Sources */ = {isa = PBXBuildFile; fileRef = EEC39363574592DDD2C4DE7211730B12 /* SDImageFrame.m */; }; - CDBF9E5042AA209F0DC26458C3E0A33A /* EXConstants.h in Headers */ = {isa = PBXBuildFile; fileRef = E932BA62AE7F53A3DD21C0EF7018D4E7 /* EXConstants.h */; settings = {ATTRIBUTES = (Project, ); }; }; + CDBF9E5042AA209F0DC26458C3E0A33A /* EXConstants.h in Headers */ = {isa = PBXBuildFile; fileRef = 7EBCF5304126BB498ED1BF731DEC4263 /* EXConstants.h */; settings = {ATTRIBUTES = (Project, ); }; }; CDD692D5774C8B76FF85B8E5A7750AFE /* FIRInstanceIDUtilities.h in Headers */ = {isa = PBXBuildFile; fileRef = D2339AD0FFA27A5E25CA38B3E89E724E /* FIRInstanceIDUtilities.h */; settings = {ATTRIBUTES = (Project, ); }; }; CDDC70305F86BE613774D29DC70EE791 /* GDTCCTPrioritizer.m in Sources */ = {isa = PBXBuildFile; fileRef = 4C90CBA13EADC2DE8CBA3C3E38DBAD8D /* GDTCCTPrioritizer.m */; }; - CE05E508D9AC27EE29A29EE19C9818EF /* Compression.m in Sources */ = {isa = PBXBuildFile; fileRef = D2E7B72A0F5317C61BB9CC6DFB7CF533 /* Compression.m */; }; - CE06FC0B40399ED9AC1D7CE1291D0C35 /* React-CoreModules-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 5DC7EB6128BE6052BA7AA5A73096E957 /* React-CoreModules-dummy.m */; }; - CE25C95BBF3F1E5830A8EF8E1F7A9929 /* RootView.m in Sources */ = {isa = PBXBuildFile; fileRef = DC1B11FD93DFAB4C6E08FF54F4DFADCC /* RootView.m */; }; + CE05E508D9AC27EE29A29EE19C9818EF /* Compression.m in Sources */ = {isa = PBXBuildFile; fileRef = A62D4E50FE0D898488D5ED8DA709D6CA /* Compression.m */; }; + CE06FC0B40399ED9AC1D7CE1291D0C35 /* React-CoreModules-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 464064AA6F64B6B4C17E0FDAB271E050 /* React-CoreModules-dummy.m */; }; + CE25C95BBF3F1E5830A8EF8E1F7A9929 /* RootView.m in Sources */ = {isa = PBXBuildFile; fileRef = 83B2E30D5CA08A472F9A15613DB9A49D /* RootView.m */; }; CE287884CA61A8B9A4C533CB271E2A24 /* GULMutableDictionary.m in Sources */ = {isa = PBXBuildFile; fileRef = 545D3B715E5AF6AFEC5AE16325F9E898 /* GULMutableDictionary.m */; }; CE31B8148A79CC3614A539EE1BD61A0F /* FIRInstanceIDKeychain.m in Sources */ = {isa = PBXBuildFile; fileRef = E97C6B62E60E3076A98791068DE7D7C1 /* FIRInstanceIDKeychain.m */; }; - CE6B545FD5F8B9D7C9CDB838BCA0DE96 /* RCTSurfacePresenterStub.h in Headers */ = {isa = PBXBuildFile; fileRef = 39A2D851FE615DF7A584C8271B878C49 /* RCTSurfacePresenterStub.h */; settings = {ATTRIBUTES = (Project, ); }; }; - CE8503B88DEE00283F39ED2D5DDB41BA /* RCTSurfaceHostingProxyRootView.h in Headers */ = {isa = PBXBuildFile; fileRef = 6AA7C13C0FC11542577D8E0982809738 /* RCTSurfaceHostingProxyRootView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + CE6B545FD5F8B9D7C9CDB838BCA0DE96 /* RCTSurfacePresenterStub.h in Headers */ = {isa = PBXBuildFile; fileRef = 4FC7CFFB023F10AE363402A0225FD479 /* RCTSurfacePresenterStub.h */; settings = {ATTRIBUTES = (Project, ); }; }; + CE8503B88DEE00283F39ED2D5DDB41BA /* RCTSurfaceHostingProxyRootView.h in Headers */ = {isa = PBXBuildFile; fileRef = FE1ED1EC8BF18BAD0FAC29332E9C304E /* RCTSurfaceHostingProxyRootView.h */; settings = {ATTRIBUTES = (Project, ); }; }; CE8852AFA15D70A5DE566026EFDFC2F3 /* FIRInstanceIDAPNSInfo.m in Sources */ = {isa = PBXBuildFile; fileRef = 59B76FA92742AFE4EC1B07FB04CDCEFE /* FIRInstanceIDAPNSInfo.m */; }; - CEAA8BE4C689E3421CF6258FEE5858B2 /* RNPushKitEventListener.m in Sources */ = {isa = PBXBuildFile; fileRef = 0803A4640DC09A380D8F0B812B56AFC0 /* RNPushKitEventListener.m */; }; - CEDAFDB3B3EA3DCE1E62FF82FCD516E3 /* RNFetchBlobProgress.h in Headers */ = {isa = PBXBuildFile; fileRef = 43B496F8A354B24C48A31986B214345F /* RNFetchBlobProgress.h */; settings = {ATTRIBUTES = (Project, ); }; }; + CEAA8BE4C689E3421CF6258FEE5858B2 /* RNPushKitEventListener.m in Sources */ = {isa = PBXBuildFile; fileRef = 6C376114ECCDF17400B6E3AE4766A075 /* RNPushKitEventListener.m */; }; + CEDAFDB3B3EA3DCE1E62FF82FCD516E3 /* RNFetchBlobProgress.h in Headers */ = {isa = PBXBuildFile; fileRef = 705C70FE93E9DA65A365408D2A5F7783 /* RNFetchBlobProgress.h */; settings = {ATTRIBUTES = (Project, ); }; }; CEDCA25A4B55E64D9A49FDE6D20C638E /* Assume.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D66719B7E0573E532519532723F67812 /* 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"; }; }; CEDDF9FB89DDC0ED7701D06BB578CAEC /* SDImageAssetManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 1246B4FC24C785047CD95D5E8BB7AE12 /* SDImageAssetManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - CF138048B1839E5ADDD579CED7E00DAC /* ARTGroupManager.h in Headers */ = {isa = PBXBuildFile; fileRef = B1C13BBA60C6E5F565C50268233795B4 /* ARTGroupManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + CF138048B1839E5ADDD579CED7E00DAC /* ARTGroupManager.h in Headers */ = {isa = PBXBuildFile; fileRef = EA8ED48F4CD56159769C24D531D244DB /* ARTGroupManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; CF2DBEFC8F676A6C89BCFA1DCBC02491 /* fixed-dtoa.h in Headers */ = {isa = PBXBuildFile; fileRef = 15762D6096B65B02F92828DF3C3101E4 /* fixed-dtoa.h */; settings = {ATTRIBUTES = (Project, ); }; }; CF36B5C643DE055F1F75230AC8915277 /* SDImageGIFCoder.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF6CDD59A57C47D27B4C64E3C83F6EB /* SDImageGIFCoder.h */; settings = {ATTRIBUTES = (Project, ); }; }; CF76AB411D4BD02C37E3BC20848E9E28 /* GULNetworkURLSession.h in Headers */ = {isa = PBXBuildFile; fileRef = DD709B78F7B831FDC9366D13746333E0 /* GULNetworkURLSession.h */; settings = {ATTRIBUTES = (Project, ); }; }; - CFCFD3BD78FC19E128EA473DF18214A1 /* RCTSwitch.m in Sources */ = {isa = PBXBuildFile; fileRef = 850FD2FA4D46C449A47827877A4B9249 /* RCTSwitch.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + CFCFD3BD78FC19E128EA473DF18214A1 /* RCTSwitch.m in Sources */ = {isa = PBXBuildFile; fileRef = 29D1EAC7FD47DC8D48535505CD061B3F /* RCTSwitch.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; CFEA96EBFA4939A78536A1C1A6DD63D7 /* lossless_sse2.c in Sources */ = {isa = PBXBuildFile; fileRef = 7E1CF3BEFF840D7071D158D044A4E745 /* lossless_sse2.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; CFFF4D24501DD722D267B98FC18CC4FD /* GDTCORPlatform.m in Sources */ = {isa = PBXBuildFile; fileRef = BCDC1F0FF0B1E2E4C213D78D24F0F9CD /* GDTCORPlatform.m */; }; D047DEFE3ACFD17E4D2C74AE4C477949 /* SDImageCache.m in Sources */ = {isa = PBXBuildFile; fileRef = 06E1729FCDB517FF8E598520953361E3 /* SDImageCache.m */; }; - D05B74D99B907FAA33240B85E01AFC46 /* jsilib.h in Headers */ = {isa = PBXBuildFile; fileRef = 34F300D91EF74B849CCC058CA6C04487 /* jsilib.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D062A8C245F8153467102568B63FE46A /* RCTReconnectingWebSocket.h in Headers */ = {isa = PBXBuildFile; fileRef = EC83A980D73202F5AFD1C0054F848EA2 /* RCTReconnectingWebSocket.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D07B97742E6D42B8DAE45A4EBEFB3A13 /* RCTNetworkTask.h in Headers */ = {isa = PBXBuildFile; fileRef = CD94E261EB58A9E366B55161C8BADBE7 /* RCTNetworkTask.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D093A116E9E3D56CBC4CCA3FB53A374C /* UMLogManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 8CB03193658E4035AF88CCC52810967F /* UMLogManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D0D2428916EF61E41BD76DD1CD720A97 /* RNNotificationUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = 963E3E54C7919C504651B8E791832E83 /* RNNotificationUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D05B74D99B907FAA33240B85E01AFC46 /* jsilib.h in Headers */ = {isa = PBXBuildFile; fileRef = 12181BAC60EBF53F4BE9F37D9827C6C3 /* jsilib.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D062A8C245F8153467102568B63FE46A /* RCTReconnectingWebSocket.h in Headers */ = {isa = PBXBuildFile; fileRef = BA95F437E9AE05B0EE2703A4665CD9E9 /* RCTReconnectingWebSocket.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D07B97742E6D42B8DAE45A4EBEFB3A13 /* RCTNetworkTask.h in Headers */ = {isa = PBXBuildFile; fileRef = 48CBFA9FB88CD691B3404C21A69DC044 /* RCTNetworkTask.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D093A116E9E3D56CBC4CCA3FB53A374C /* UMLogManager.h in Headers */ = {isa = PBXBuildFile; fileRef = ABD943DFCB5827F150F3FB3EDDCB0F9F /* UMLogManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D0D2428916EF61E41BD76DD1CD720A97 /* RNNotificationUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = 2407A5C97CE083F9080094BA4E3FF07B /* RNNotificationUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; D0D43A09965B7EEC94C970B16EE208B7 /* FBLPromise+All.m in Sources */ = {isa = PBXBuildFile; fileRef = 6D7591D0402DD814820F0F732E55134A /* FBLPromise+All.m */; }; - D0F5A66EBCE6C63428203D551465C9BC /* BSG_KSFileUtils.c in Sources */ = {isa = PBXBuildFile; fileRef = C9F14057FF9D2198A1144BA0005C2EF7 /* BSG_KSFileUtils.c */; }; - D114C36DE2B965A7696D1BDCFE2FD45B /* BSG_KSCrashIdentifier.m in Sources */ = {isa = PBXBuildFile; fileRef = ADF7B651D03C048B8399FE7FED8881AD /* BSG_KSCrashIdentifier.m */; }; - D13952929E050B80F1F6F52086E7C7BD /* React-RCTLinking-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = CECB83613519345964F31D322F7F18A9 /* React-RCTLinking-dummy.m */; }; - D1503EF664C957A47671F960BBCE5C55 /* RCTShadowView.m in Sources */ = {isa = PBXBuildFile; fileRef = 521A0A629210511FCD3E3ABB5D71A74A /* RCTShadowView.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - D1531DF670F8F9F3756453F2D690D5C3 /* RCTFrameUpdate.m in Sources */ = {isa = PBXBuildFile; fileRef = D5A8E89DA9929CB6D34C2B3DCC16CB76 /* RCTFrameUpdate.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + D0F5A66EBCE6C63428203D551465C9BC /* BSG_KSFileUtils.c in Sources */ = {isa = PBXBuildFile; fileRef = 64539EC7E7E67AFB2A7B3DAD832D6747 /* BSG_KSFileUtils.c */; }; + D114C36DE2B965A7696D1BDCFE2FD45B /* BSG_KSCrashIdentifier.m in Sources */ = {isa = PBXBuildFile; fileRef = D378B19DB71DE15E6D101071559E2414 /* BSG_KSCrashIdentifier.m */; }; + D13952929E050B80F1F6F52086E7C7BD /* React-RCTLinking-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 4CB1FE8465337B521E6D9A0CDD6F8A99 /* React-RCTLinking-dummy.m */; }; + D1503EF664C957A47671F960BBCE5C55 /* RCTShadowView.m in Sources */ = {isa = PBXBuildFile; fileRef = F75A44300CE3493BF09D9B64ACDCA000 /* RCTShadowView.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + D1531DF670F8F9F3756453F2D690D5C3 /* RCTFrameUpdate.m in Sources */ = {isa = PBXBuildFile; fileRef = 451666493334938F198A70DFCE74A2E6 /* RCTFrameUpdate.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; D15B1D25AFE4F0CB60215790F195A38D /* quant_levels_utils.c in Sources */ = {isa = PBXBuildFile; fileRef = 36437C1B03AC2005FE5AE9B6ABB4A399 /* quant_levels_utils.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - D19105904195D17C5769DDAC4A0E857C /* YGConfig.cpp in Sources */ = {isa = PBXBuildFile; fileRef = E07638896351CBE331FFEDB245FB7647 /* YGConfig.cpp */; settings = {COMPILER_FLAGS = "-fno-omit-frame-pointer -fexceptions -Wall -Werror -std=c++1y -fPIC -fno-objc-arc"; }; }; - D1E312DB375D99286F30D9A1B11166DD /* NSValue+Interpolation.h in Headers */ = {isa = PBXBuildFile; fileRef = 812335310C7F9686CE3F564B7FA88E6F /* NSValue+Interpolation.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D19105904195D17C5769DDAC4A0E857C /* YGConfig.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 4C8D022D5E0F5AF8E2B947CDD37B655B /* YGConfig.cpp */; settings = {COMPILER_FLAGS = "-fno-omit-frame-pointer -fexceptions -Wall -Werror -std=c++1y -fPIC -fno-objc-arc"; }; }; + D1E312DB375D99286F30D9A1B11166DD /* NSValue+Interpolation.h in Headers */ = {isa = PBXBuildFile; fileRef = 7AFE840E1045C8967A28B8568B57C019 /* NSValue+Interpolation.h */; settings = {ATTRIBUTES = (Project, ); }; }; D20CB1F465B6DEC72F0A0FB85325E552 /* yuv.c in Sources */ = {isa = PBXBuildFile; fileRef = 82C307D1CC81EE4425E3DE4DFA23E2F3 /* yuv.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - D21EB307CB91F199FA4CB0465AD242C6 /* RCTImageSource.h in Headers */ = {isa = PBXBuildFile; fileRef = DF606D47A4DF17A77D07CF1F8071D83B /* RCTImageSource.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D2258A291CF8E9E8C9A366DF12F38F7F /* REAOperatorNode.m in Sources */ = {isa = PBXBuildFile; fileRef = F557B001E8C41D66E5253538B9E7A7DB /* REAOperatorNode.m */; }; - D29F28485DEE738B6FA3CCF80F59FAB2 /* RNLongPressHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = 931A1156880F35BD9F6F44BB9BE4A476 /* RNLongPressHandler.m */; }; + D21EB307CB91F199FA4CB0465AD242C6 /* RCTImageSource.h in Headers */ = {isa = PBXBuildFile; fileRef = 82029B11A69D43F2CECCC452BD7F030F /* RCTImageSource.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D2258A291CF8E9E8C9A366DF12F38F7F /* REAOperatorNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 7A2C11ACF77F677DD3C30F29704F4D84 /* REAOperatorNode.m */; }; + D29F28485DEE738B6FA3CCF80F59FAB2 /* RNLongPressHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = 1A05D47FED4223ADAC9427FDD8540AEB /* RNLongPressHandler.m */; }; D2BE8317E9EBBE5FD4ED18BA5C53794A /* cached-powers.cc in Sources */ = {isa = PBXBuildFile; fileRef = A6279E1E2E3335F1103BFA5A97B32CAA /* cached-powers.cc */; settings = {COMPILER_FLAGS = "-Wno-unreachable-code"; }; }; D2E11DF07AAD7072CC507F7E383B4FE3 /* pb.h in Headers */ = {isa = PBXBuildFile; fileRef = 3D469EED379CDAF76B456D41CE1D789E /* pb.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D2F766BDCAC9C07A3066A4987FB586BF /* RCTLinkingManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 415B7BF98846838D581516D927421F9B /* RCTLinkingManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D3191A4541B60D766573C867948163D7 /* UMSingletonModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 23505BFC936A84EB00E98DC7A1560F6B /* UMSingletonModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D2F766BDCAC9C07A3066A4987FB586BF /* RCTLinkingManager.h in Headers */ = {isa = PBXBuildFile; fileRef = AC64E99EE53FD5E54618EE097493CF4F /* RCTLinkingManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D3191A4541B60D766573C867948163D7 /* UMSingletonModule.h in Headers */ = {isa = PBXBuildFile; fileRef = A2CFC3AEB3541720A9E024200FDDF38A /* UMSingletonModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; D35CFE42161E05CBCCA4AA4C32CF3661 /* SDMemoryCache.h in Headers */ = {isa = PBXBuildFile; fileRef = BEAA4F63A52753F14D4888D08369618E /* SDMemoryCache.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D37AE5F466D1D7BE1CDC2D645ABC48B5 /* RCTBackedTextInputViewProtocol.h in Headers */ = {isa = PBXBuildFile; fileRef = 59EC4FEB968B020E0CD690A6DB3E868B /* RCTBackedTextInputViewProtocol.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D37AE5F466D1D7BE1CDC2D645ABC48B5 /* RCTBackedTextInputViewProtocol.h in Headers */ = {isa = PBXBuildFile; fileRef = 53A2AE7C23FC2740216BDCD227CBFA4E /* RCTBackedTextInputViewProtocol.h */; settings = {ATTRIBUTES = (Project, ); }; }; D37BA13E56AB4047C4D544DC931A7111 /* FIRInstanceIDBackupExcludedPlist.h in Headers */ = {isa = PBXBuildFile; fileRef = C33B5059A86C095F0D92336CBCB1F51B /* FIRInstanceIDBackupExcludedPlist.h */; settings = {ATTRIBUTES = (Project, ); }; }; D39505AA86E323C96932E3A04B1A0351 /* alpha_processing.c in Sources */ = {isa = PBXBuildFile; fileRef = 8816AC006C3D22F054F7BAB4EA2511ED /* alpha_processing.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; D3B16597778203DE6EDD2C915FC363E2 /* yuv_sse2.c in Sources */ = {isa = PBXBuildFile; fileRef = 3967559F2F789C16C8ECC9F64D330D0F /* yuv_sse2.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; D3E2973E1A77B52217E5151ACC4C40F9 /* Demangle.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 47667B177B8F7040093014A945593A04 /* Demangle.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - D3E31C7333A9AE3971A60CB70949C92C /* RCTScrollView.h in Headers */ = {isa = PBXBuildFile; fileRef = F94A2AD99091C9E2C768F460BDED0C37 /* RCTScrollView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D3FC99851794FBF244FFCEB31750F0FE /* log.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9498A7B70892C9D9BD847BC0A62FFC19 /* log.cpp */; settings = {COMPILER_FLAGS = "-fno-omit-frame-pointer -fexceptions -Wall -Werror -std=c++1y -fPIC -fno-objc-arc"; }; }; - D411D4F1C26BDD8CF0801FB3DCD7930C /* REAStyleNode.m in Sources */ = {isa = PBXBuildFile; fileRef = A1B68EBB7391E8F92AAC2C0B00AF7932 /* REAStyleNode.m */; }; - D4492AA35116BD68F0668FD3DBC22437 /* RNGestureHandlerManager.h in Headers */ = {isa = PBXBuildFile; fileRef = DD440291E24C6A32F4E323F06C4B62F7 /* RNGestureHandlerManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D501D5C43EEF4B1458C136411F3233C6 /* RNCWKProcessPoolManager.m in Sources */ = {isa = PBXBuildFile; fileRef = F1E30E3F2A050BEF88A240650737A49C /* RNCWKProcessPoolManager.m */; }; + D3E31C7333A9AE3971A60CB70949C92C /* RCTScrollView.h in Headers */ = {isa = PBXBuildFile; fileRef = 053E12B6FE85A8F6D4D8B0558869991B /* RCTScrollView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D3FC99851794FBF244FFCEB31750F0FE /* log.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B9BC0B5783E6838E59FA0DDDFA4C7E7B /* log.cpp */; settings = {COMPILER_FLAGS = "-fno-omit-frame-pointer -fexceptions -Wall -Werror -std=c++1y -fPIC -fno-objc-arc"; }; }; + D411D4F1C26BDD8CF0801FB3DCD7930C /* REAStyleNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 0E28FAE9488CB7CF19AACE217AA4095B /* REAStyleNode.m */; }; + D4492AA35116BD68F0668FD3DBC22437 /* RNGestureHandlerManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 05A178309018FA80769AE521310F22DB /* RNGestureHandlerManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D501D5C43EEF4B1458C136411F3233C6 /* RNCWKProcessPoolManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 5FB4E429709FEA44E83F39CF06BFD8B7 /* RNCWKProcessPoolManager.m */; }; D548578B0B4BAB40AA2F67986DD948C2 /* upsampling_mips_dsp_r2.c in Sources */ = {isa = PBXBuildFile; fileRef = 73D1E0BDB42EE2F595BCB0C3E231490F /* upsampling_mips_dsp_r2.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - D57B25CD40E3EC19D45D1DA315B29F34 /* BSG_KSCrashReportFilterCompletion.h in Headers */ = {isa = PBXBuildFile; fileRef = 17A0030F1CB272C85997A3DF61901A6D /* BSG_KSCrashReportFilterCompletion.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D5E171BEB835B46B99500DEC036AB7FC /* RCTRefreshControlManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 39DC53D4A85213E664AAA0FC642E0690 /* RCTRefreshControlManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - D5EB936081DE1ABD23F6EF6E9A31D4A9 /* RNGestureHandlerModule.m in Sources */ = {isa = PBXBuildFile; fileRef = 5A0249D5BF713C4646877B4DF25EDCEB /* RNGestureHandlerModule.m */; }; + D57B25CD40E3EC19D45D1DA315B29F34 /* BSG_KSCrashReportFilterCompletion.h in Headers */ = {isa = PBXBuildFile; fileRef = 8D5357EC0F02191720BFC09D0E1C5D6D /* BSG_KSCrashReportFilterCompletion.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D5E171BEB835B46B99500DEC036AB7FC /* RCTRefreshControlManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 679EE75DD15CCB9C0BE232695CAFC935 /* RCTRefreshControlManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + D5EB936081DE1ABD23F6EF6E9A31D4A9 /* RNGestureHandlerModule.m in Sources */ = {isa = PBXBuildFile; fileRef = EE5486881ED621DC4839E7EA1FF6B8D5 /* RNGestureHandlerModule.m */; }; D5F006702C228499C976E45954BA7142 /* SDImageCodersManager.h in Headers */ = {isa = PBXBuildFile; fileRef = A54A0AB081F02B68C732C27229CC546A /* SDImageCodersManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D5F01B05595BB83EFB74E80121CE3C25 /* NativeToJsBridge.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 651C1F507330EB1F461771AF1A875EB3 /* NativeToJsBridge.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + D5F01B05595BB83EFB74E80121CE3C25 /* NativeToJsBridge.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B11B86F0004D588495EC22D231AFA14A /* NativeToJsBridge.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; D60E40B4C45EE0ABDDDB310B1906F067 /* SDWebImageDownloaderDecryptor.m in Sources */ = {isa = PBXBuildFile; fileRef = B49950F25B4587A0F1428A0FF4D062F1 /* SDWebImageDownloaderDecryptor.m */; }; - D6103FEA120EFB22A9CBCE782B698E5A /* BSG_KSCrashSentry_Signal.c in Sources */ = {isa = PBXBuildFile; fileRef = 896F851511E62E3117AEFD973203BF31 /* BSG_KSCrashSentry_Signal.c */; }; - D647A0F7425911DA56628C08A2C06F1E /* React-RCTBlob-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 5AC8F2B86FD9669CCC8F075040C642CD /* React-RCTBlob-dummy.m */; }; + D6103FEA120EFB22A9CBCE782B698E5A /* BSG_KSCrashSentry_Signal.c in Sources */ = {isa = PBXBuildFile; fileRef = 6D1EAA12E2E5B41CA4D13AC9E480FB48 /* BSG_KSCrashSentry_Signal.c */; }; + D647A0F7425911DA56628C08A2C06F1E /* React-RCTBlob-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 18E0A638F487F3A88013825A439B91D0 /* React-RCTBlob-dummy.m */; }; D69223C42741872E5B2A529FA5828F8E /* pb_encode.c in Sources */ = {isa = PBXBuildFile; fileRef = 6F2B281A5C5A6DA83EEDED90A470812A /* pb_encode.c */; settings = {COMPILER_FLAGS = "-fno-objc-arc -fno-objc-arc"; }; }; - D6AD419ACD3BDA8CE50C3335BA8C9621 /* YGNode.h in Headers */ = {isa = PBXBuildFile; fileRef = EEA0A206B0128EAE08558F7DCDB1AC85 /* YGNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D6AD419ACD3BDA8CE50C3335BA8C9621 /* YGNode.h in Headers */ = {isa = PBXBuildFile; fileRef = DA58948875C4402E1D271A01A5D3D543 /* YGNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; D6B1A1D99FDE6C30C456AA3E8AEB99CD /* FIRInstallationsStore.h in Headers */ = {isa = PBXBuildFile; fileRef = E146C49FCEE4ED98740C53D8AF16B54A /* FIRInstallationsStore.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D6D619B6B23618240CB1C0175EB7B862 /* NSRunLoop+SRWebSocket.h in Headers */ = {isa = PBXBuildFile; fileRef = FF7AD6A205354D1D4B3820E531CF8FF7 /* NSRunLoop+SRWebSocket.h */; settings = {ATTRIBUTES = (Project, ); }; }; D6F319CF127DCB6034758EBB926BB032 /* FIRInstanceIDTokenStore.m in Sources */ = {isa = PBXBuildFile; fileRef = 3CA2FA4336B15BA4DCCD78A997AEC892 /* FIRInstanceIDTokenStore.m */; }; - D74FFDC85A25F62F1B5AE4B8AB0B65D0 /* RNGestureHandlerRegistry.h in Headers */ = {isa = PBXBuildFile; fileRef = EE2C369542B8B6F491AA1BFE1C5865D0 /* RNGestureHandlerRegistry.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D74FFDC85A25F62F1B5AE4B8AB0B65D0 /* RNGestureHandlerRegistry.h in Headers */ = {isa = PBXBuildFile; fileRef = BB5C3F269B8C5ACC0C2871F4F0C42D50 /* RNGestureHandlerRegistry.h */; settings = {ATTRIBUTES = (Project, ); }; }; D763A2B754500831DDFCD0B3155211C3 /* GULNetworkConstants.m in Sources */ = {isa = PBXBuildFile; fileRef = 67495001F5CD5835C2BB0CC49D35E686 /* GULNetworkConstants.m */; }; D7690664E9554486C6A08570CCA16219 /* alpha_dec.c in Sources */ = {isa = PBXBuildFile; fileRef = B1481C8FC99F5FE787F9FBBE96DD5E9F /* alpha_dec.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - D769A9D8FA743C94E0855AA477F775D7 /* SRURLUtilities.m in Sources */ = {isa = PBXBuildFile; fileRef = 61D1047CE9D402DCA90E68B4569E386D /* SRURLUtilities.m */; }; D79CB08B6BF6AE52B703A14D2E5EC289 /* SDWebImageDownloaderResponseModifier.h in Headers */ = {isa = PBXBuildFile; fileRef = 7B75AFFDAD90901B97B9F59583DB4E96 /* SDWebImageDownloaderResponseModifier.h */; settings = {ATTRIBUTES = (Project, ); }; }; D7C9818EF31B52BF15F5A3DAD128D970 /* GULSceneDelegateSwizzler.h in Headers */ = {isa = PBXBuildFile; fileRef = 360D859E4F26E0D45AC34F09DA57FE65 /* GULSceneDelegateSwizzler.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D7DF907042402355DADB8F17FA3F1405 /* BSG_KSString.c in Sources */ = {isa = PBXBuildFile; fileRef = 0C2F777EBC4324C29F0BC5D5896D30E8 /* BSG_KSString.c */; }; - D7E45F7C2949E7B606B820A5EB3966CE /* SRSIMDHelpers.h in Headers */ = {isa = PBXBuildFile; fileRef = CA8C1583771AC99D1C0A8461F878B483 /* SRSIMDHelpers.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D811B574E795DB5E3BBD364643701297 /* ImageCropPicker.m in Sources */ = {isa = PBXBuildFile; fileRef = 1BF9AB567D9E0A51CDE4ADCFDEBD269C /* ImageCropPicker.m */; }; - D81AC0C4DC01BB7B898EF80BA080B002 /* RNCAssetsLibraryRequestHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = 6CC2DBBA6742EE74F85A5E56719C000D /* RNCAssetsLibraryRequestHandler.m */; }; - D8381F8F51F652DB757C7CF69E9B33B2 /* REAFunctionNode.m in Sources */ = {isa = PBXBuildFile; fileRef = EA4E822ED24C31E61AC94B50B125E1B3 /* REAFunctionNode.m */; }; + D7DF907042402355DADB8F17FA3F1405 /* BSG_KSString.c in Sources */ = {isa = PBXBuildFile; fileRef = 343B172F0660C823EE8078AA60242870 /* BSG_KSString.c */; }; + D811B574E795DB5E3BBD364643701297 /* ImageCropPicker.m in Sources */ = {isa = PBXBuildFile; fileRef = A5A12E39560D995686640457604A09D5 /* ImageCropPicker.m */; }; + D81AC0C4DC01BB7B898EF80BA080B002 /* RNCAssetsLibraryRequestHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = 88EC3AC0FC6F15CEAF97903F8923E681 /* RNCAssetsLibraryRequestHandler.m */; }; + D8381F8F51F652DB757C7CF69E9B33B2 /* REAFunctionNode.m in Sources */ = {isa = PBXBuildFile; fileRef = DC465FA3E4FB4B65215A9BA22F9A0BC0 /* REAFunctionNode.m */; }; D84EB10E3D309D71F1E4D8230535B1F4 /* SDAnimatedImageView+WebCache.m in Sources */ = {isa = PBXBuildFile; fileRef = 0695A738C7F41C79A285AD67DCD00EE2 /* SDAnimatedImageView+WebCache.m */; }; D8518E5BF3021B461942AA4A1DF9896C /* SDWebImageDefine.h in Headers */ = {isa = PBXBuildFile; fileRef = 435C84BA7D4AB3EB7649F9B26277DA8E /* SDWebImageDefine.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D854B8FA66DD93A12832A8A313105AD7 /* EXCalendarRequester.m in Sources */ = {isa = PBXBuildFile; fileRef = E42CE5FA1A0C3DC66583A7A6E4BBC1D6 /* EXCalendarRequester.m */; }; + D854B8FA66DD93A12832A8A313105AD7 /* EXCalendarRequester.m in Sources */ = {isa = PBXBuildFile; fileRef = 21C87ED9D4B412DA8575EBF109AA2B48 /* EXCalendarRequester.m */; }; D86384B27334C1246523F688494DE7DD /* UIImage+MultiFormat.h in Headers */ = {isa = PBXBuildFile; fileRef = EF173724C22DB7D2C3F88CAA10675F80 /* UIImage+MultiFormat.h */; settings = {ATTRIBUTES = (Project, ); }; }; D8657431950ACD09CD921390BC208E99 /* utilities.cc in Sources */ = {isa = PBXBuildFile; fileRef = C75F6B7CCC80F365375AE3D64978BE9F /* utilities.cc */; settings = {COMPILER_FLAGS = "-Wno-shorten-64-to-32"; }; }; D8923CC2D680348D04C0B5B01CF695A7 /* GULNetwork.h in Headers */ = {isa = PBXBuildFile; fileRef = 899A689BA65BA61151C1DDFB19F5BE93 /* GULNetwork.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D89934B15D0E9D0E016816D7FC0AEF3C /* RCTImageSource.m in Sources */ = {isa = PBXBuildFile; fileRef = 34AB7353157698E0185BF1E0F8704B0F /* RCTImageSource.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + D89934B15D0E9D0E016816D7FC0AEF3C /* RCTImageSource.m in Sources */ = {isa = PBXBuildFile; fileRef = AB4E1685D5ADB0F9829D8826559E5FA1 /* RCTImageSource.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; D917491E5DD9992DFF39CCF944C2D549 /* GDTCORStoredEvent.h in Headers */ = {isa = PBXBuildFile; fileRef = E06128CB543E05DF7D4F8B8A3EF8EEF2 /* GDTCORStoredEvent.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D92CAE62ECAFE549B7CADB800BE130C3 /* RNJitsiMeetView.m in Sources */ = {isa = PBXBuildFile; fileRef = 2D371E92E90BEE8CA11BFF000CBFA5CD /* RNJitsiMeetView.m */; }; - D942F947E98B998E31292371B94924C1 /* RNFlingHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = AC95BCBFF2E6B35B1515A5AE39ED0FAE /* RNFlingHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D974AEEACF5ADB911F4AA3C853D47D85 /* SRIOConsumerPool.m in Sources */ = {isa = PBXBuildFile; fileRef = 1CCBB5CA34FEE4E295C2889C97784871 /* SRIOConsumerPool.m */; }; - D9804C6D34DABDB222B6374C28AD9317 /* BugsnagSink.m in Sources */ = {isa = PBXBuildFile; fileRef = 412C0B6839528851CB09B870A50E2F7C /* BugsnagSink.m */; }; - D9977E019B78E27FAC73A954C5BBDF8E /* React-RCTVibration-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = D0A0CC56A64639015791B404EDC7C406 /* React-RCTVibration-dummy.m */; }; - D9A1F3B4736C2AF9FCEA83028434E03E /* BugsnagMetaData.m in Sources */ = {isa = PBXBuildFile; fileRef = 029B7C4BD1C808427749DF3CBBFF33C0 /* BugsnagMetaData.m */; }; - D9E8EF785F0508D50522BF668E520107 /* EXHaptics-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 8D8B3E5C3E4B9372369E6A593B7CCCCA /* EXHaptics-dummy.m */; }; - D9F43B12E9310E1070D9ACA28E595ECB /* BSG_KSJSONCodecObjC.h in Headers */ = {isa = PBXBuildFile; fileRef = D10B756D6433BD53BC68C90390C45CC7 /* BSG_KSJSONCodecObjC.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D92CAE62ECAFE549B7CADB800BE130C3 /* RNJitsiMeetView.m in Sources */ = {isa = PBXBuildFile; fileRef = E1818C9F66275E9185FC781EDBC356D6 /* RNJitsiMeetView.m */; }; + D942F947E98B998E31292371B94924C1 /* RNFlingHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = F70DAFFFC470AC8CF0C79094BE1C42C2 /* RNFlingHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D9804C6D34DABDB222B6374C28AD9317 /* BugsnagSink.m in Sources */ = {isa = PBXBuildFile; fileRef = 2D8C63FB8E4F9A996BD7B48B9D6AC6A8 /* BugsnagSink.m */; }; + D9977E019B78E27FAC73A954C5BBDF8E /* React-RCTVibration-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 8E46827A66AC7B8EF1A87F22E7A2A6A4 /* React-RCTVibration-dummy.m */; }; + D9A1F3B4736C2AF9FCEA83028434E03E /* BugsnagMetaData.m in Sources */ = {isa = PBXBuildFile; fileRef = 599D8A86884CC391ADA002B37D40D8D3 /* BugsnagMetaData.m */; }; + D9E8EF785F0508D50522BF668E520107 /* EXHaptics-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 309EEEB47263874F5B9CEE95977E403C /* EXHaptics-dummy.m */; }; + D9F43B12E9310E1070D9ACA28E595ECB /* BSG_KSJSONCodecObjC.h in Headers */ = {isa = PBXBuildFile; fileRef = 9479F4BA67F6F3E15B163805C0BA0C3D /* BSG_KSJSONCodecObjC.h */; settings = {ATTRIBUTES = (Project, ); }; }; D9FBFE38219EEA722C7D011D1F510DCD /* PromisesObjC-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = C6C1424961A6648F4F404DB4D5B51284 /* PromisesObjC-dummy.m */; }; DA3E756FDDBB22F63B92675EE270BFD9 /* cpu.c in Sources */ = {isa = PBXBuildFile; fileRef = 352467F523D37BA242FF792076C4BBA2 /* cpu.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - DA553EAB5D6042B76746804E1EAB9AAC /* RNSScreen.m in Sources */ = {isa = PBXBuildFile; fileRef = 51D22D32DAA9E8BE62F7DEB0FE53BDBC /* RNSScreen.m */; }; - DA91CBB04309BF6A2F67578889C95CC0 /* React-RCTAnimation-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 161605A0E5D6571F78BE8A55365468C3 /* React-RCTAnimation-dummy.m */; }; - DA9EE774CF939AFC136CFF0C1418CBD4 /* RNRotationHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 4E2058AF25652B9765A51F7C92CDA8E2 /* RNRotationHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; - DAB77630ECE8FFDE64A9BEFBD0B44DFF /* RNFetchBlobFS.m in Sources */ = {isa = PBXBuildFile; fileRef = 093E6F234B317B935BCACAEDA5398B30 /* RNFetchBlobFS.m */; }; + DA553EAB5D6042B76746804E1EAB9AAC /* RNSScreen.m in Sources */ = {isa = PBXBuildFile; fileRef = 95DF25C1EECA72B7CA9635F569B6B7F3 /* RNSScreen.m */; }; + DA91CBB04309BF6A2F67578889C95CC0 /* React-RCTAnimation-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = FDA09634184D77992600B0F692CCDCB7 /* React-RCTAnimation-dummy.m */; }; + DA9EE774CF939AFC136CFF0C1418CBD4 /* RNRotationHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = C8B3E28659D32D7CF5369980B1A77DBC /* RNRotationHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; + DAB77630ECE8FFDE64A9BEFBD0B44DFF /* RNFetchBlobFS.m in Sources */ = {isa = PBXBuildFile; fileRef = F151269443021C894C1EE6DD9F2B9156 /* RNFetchBlobFS.m */; }; DAC13692DC590E6044ED75FE6C7A2D99 /* FIRInstanceIDTokenInfo.h in Headers */ = {isa = PBXBuildFile; fileRef = 9DC55014AFA153FD4E3CBC4A4A6CEF69 /* FIRInstanceIDTokenInfo.h */; settings = {ATTRIBUTES = (Project, ); }; }; - DADDBED583C14F757CE0486E2BF43730 /* RCTAnimationUtils.m in Sources */ = {isa = PBXBuildFile; fileRef = 2292439F3AF6D1B2C4953BB6E8FB57B2 /* RCTAnimationUtils.m */; }; + DADDBED583C14F757CE0486E2BF43730 /* RCTAnimationUtils.m in Sources */ = {isa = PBXBuildFile; fileRef = 071AA34BD25C821E40C621307ACA926E /* RCTAnimationUtils.m */; }; DAFC2F91BEA931FB9BA022CB9B77CA90 /* backward_references_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = 645432A1DF9B3036F4D66BBB89CBAA89 /* backward_references_enc.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - DB1BEF5BA047C09D96609A853E646798 /* RCTSurfaceSizeMeasureMode.mm in Sources */ = {isa = PBXBuildFile; fileRef = 4687FB5E5B9A9C75426247410B9CE5A4 /* RCTSurfaceSizeMeasureMode.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + DB1BEF5BA047C09D96609A853E646798 /* RCTSurfaceSizeMeasureMode.mm in Sources */ = {isa = PBXBuildFile; fileRef = BC3FAFDE025D65B8999582A662376F97 /* RCTSurfaceSizeMeasureMode.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; DB5A7C7920EAF6928FBD7479829670B3 /* FIRConfiguration.h in Headers */ = {isa = PBXBuildFile; fileRef = 31CCEDC883A767472D9DE6E98B55225A /* FIRConfiguration.h */; settings = {ATTRIBUTES = (Project, ); }; }; - DB7453AA7276EAE43F16788C031FC022 /* RNGestureHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = 1FB6E330BF595D986F3D0623B760C94F /* RNGestureHandler.m */; }; + DB7453AA7276EAE43F16788C031FC022 /* RNGestureHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = 4AEFBC381C301E07576A537B59494F93 /* RNGestureHandler.m */; }; DB7DE91DCA6700F151D98F200ED5D276 /* GULNetworkConstants.h in Headers */ = {isa = PBXBuildFile; fileRef = 9AB0FF969520EECB0B36AF7E6D88CD2D /* GULNetworkConstants.h */; settings = {ATTRIBUTES = (Project, ); }; }; - DB802AF253B585166A65DE3AF2807ACA /* IOS7Polyfill.h in Headers */ = {isa = PBXBuildFile; fileRef = 5C61352E8B56BA1D22F8AC723E7C510A /* IOS7Polyfill.h */; settings = {ATTRIBUTES = (Project, ); }; }; - DB9717086AE45CE81AA97C3D12CDE9C7 /* rn-fetch-blob-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = AA697145226558BFF883AD6BECA9D4BD /* rn-fetch-blob-dummy.m */; }; - DBAC39F36BF2EACC60A1426124747D6C /* UMLogHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 410A77634DA7271378BD28B20E3C8DE6 /* UMLogHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; - DBB5DF09AA103C6B5C2410567FC0F306 /* RNGestureHandlerButton.m in Sources */ = {isa = PBXBuildFile; fileRef = EECD89054FF8B92031E88750AC9BF5B3 /* RNGestureHandlerButton.m */; }; - DC236F473EAB0803CB9FA676FAEB4377 /* RNFirebaseDatabase.h in Headers */ = {isa = PBXBuildFile; fileRef = E714E428578D92BDF68599F88505FD58 /* RNFirebaseDatabase.h */; settings = {ATTRIBUTES = (Project, ); }; }; + DB802AF253B585166A65DE3AF2807ACA /* IOS7Polyfill.h in Headers */ = {isa = PBXBuildFile; fileRef = 7A9136379DFD481947CF714DDCB0ADCF /* IOS7Polyfill.h */; settings = {ATTRIBUTES = (Project, ); }; }; + DB9717086AE45CE81AA97C3D12CDE9C7 /* rn-fetch-blob-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 7869A461BD6132F04E28CDA4F8DA98A5 /* rn-fetch-blob-dummy.m */; }; + DBAC39F36BF2EACC60A1426124747D6C /* UMLogHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 2BA63D57696D7E687EC2FA4516202830 /* UMLogHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; + DBB5DF09AA103C6B5C2410567FC0F306 /* RNGestureHandlerButton.m in Sources */ = {isa = PBXBuildFile; fileRef = CAB55A63AB325CA5E2B5DC7191E60462 /* RNGestureHandlerButton.m */; }; + DC236F473EAB0803CB9FA676FAEB4377 /* RNFirebaseDatabase.h in Headers */ = {isa = PBXBuildFile; fileRef = 21FC1057A335E68F2C7CA020078E42BF /* RNFirebaseDatabase.h */; settings = {ATTRIBUTES = (Project, ); }; }; DC28E96BA8BC8E051CA66420F836DDB5 /* idec_dec.c in Sources */ = {isa = PBXBuildFile; fileRef = AB976C1FBBC26BF65B263E79ED2A0E2D /* idec_dec.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - DC4053211CA5A4C360EBC1B27C3ECDDA /* RCTJSStackFrame.m in Sources */ = {isa = PBXBuildFile; fileRef = E413B2340A7D3E06704D4234340540B4 /* RCTJSStackFrame.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - DC83F9A19E21E99237CA1E1903EE6DFD /* RNBackgroundTimer.m in Sources */ = {isa = PBXBuildFile; fileRef = C298CF9BB7C65BDE611C32EC7BA726A7 /* RNBackgroundTimer.m */; }; + DC4053211CA5A4C360EBC1B27C3ECDDA /* RCTJSStackFrame.m in Sources */ = {isa = PBXBuildFile; fileRef = D83FF9E67D8B49D47E872869CE224AA2 /* RCTJSStackFrame.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + DC83F9A19E21E99237CA1E1903EE6DFD /* RNBackgroundTimer.m in Sources */ = {isa = PBXBuildFile; fileRef = 3B9F645165AC155363E87BF3E30F5887 /* RNBackgroundTimer.m */; }; DC96C9309C507BC3469D0CF4CC8D702E /* FBLPromise+Then.h in Headers */ = {isa = PBXBuildFile; fileRef = F603F708AE1BF751B3ACE89E154E4673 /* FBLPromise+Then.h */; settings = {ATTRIBUTES = (Project, ); }; }; - DCB2CC92DA3D38F80AD358E0E1F41FA5 /* QBVideoIndicatorView.m in Sources */ = {isa = PBXBuildFile; fileRef = 363E1E9E9110F7A556772468C20C2395 /* QBVideoIndicatorView.m */; }; - DCEB3F8CF0A4F09EC1E67ECA1B09C86E /* BugsnagConfiguration.m in Sources */ = {isa = PBXBuildFile; fileRef = F6B519CF1AC74C2306D48D79595C43B0 /* BugsnagConfiguration.m */; }; - DD14A2612F2B64801D9FFC36B588BE89 /* REAPropsNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 8AF491B7DC94C7EBFDFD5C791D6B519A /* REAPropsNode.m */; }; - DD631AAE5B18CDDA00ED19CF2081DDB3 /* RNFirebaseInstanceId.m in Sources */ = {isa = PBXBuildFile; fileRef = 3453EF6400BE072C1F53D0DBA6DF2F86 /* RNFirebaseInstanceId.m */; }; - DDA26EF3720C9461304F12664EC2308F /* LNInterpolable.m in Sources */ = {isa = PBXBuildFile; fileRef = 90AF60B0F6683B65398FE51232962194 /* LNInterpolable.m */; }; + DCB2CC92DA3D38F80AD358E0E1F41FA5 /* QBVideoIndicatorView.m in Sources */ = {isa = PBXBuildFile; fileRef = D3C6DEE768B5877013FC01775363AD4F /* QBVideoIndicatorView.m */; }; + DCEB3F8CF0A4F09EC1E67ECA1B09C86E /* BugsnagConfiguration.m in Sources */ = {isa = PBXBuildFile; fileRef = 2ED4F97DE63B1EE66CE94FD217229288 /* BugsnagConfiguration.m */; }; + DD14A2612F2B64801D9FFC36B588BE89 /* REAPropsNode.m in Sources */ = {isa = PBXBuildFile; fileRef = C6B76870816281889E6BC42E375751B2 /* REAPropsNode.m */; }; + DD631AAE5B18CDDA00ED19CF2081DDB3 /* RNFirebaseInstanceId.m in Sources */ = {isa = PBXBuildFile; fileRef = C7771DCDBC5853B3D98A8A8DB941AA38 /* RNFirebaseInstanceId.m */; }; + DDA26EF3720C9461304F12664EC2308F /* LNInterpolable.m in Sources */ = {isa = PBXBuildFile; fileRef = 4D7840B54937455A39D0CEBEDCC64E05 /* LNInterpolable.m */; }; DDBB5BC0602A84CE59DC6778A632ED69 /* SDWebImageDownloader.m in Sources */ = {isa = PBXBuildFile; fileRef = ED5D4ABF81DB0F6F91E1A25F93EE1DEB /* SDWebImageDownloader.m */; }; DDC299E5753D48F2A7081D27F73ACFAF /* FBLPromise+Async.m in Sources */ = {isa = PBXBuildFile; fileRef = 4D7BE8D11D0BE425A162D262300BF5D5 /* FBLPromise+Async.m */; }; - DDE368F0AC94152AAC8660C018179335 /* ReactNativeART-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 63EAF27516C829F79D1EF78AD154BB37 /* ReactNativeART-dummy.m */; }; - DDFB2252C0D8075A2E4C47B1F50BBBC0 /* RCTBaseTextInputViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 25D7037FA61065437F2E75B2CD5F046C /* RCTBaseTextInputViewManager.m */; }; + DDE368F0AC94152AAC8660C018179335 /* ReactNativeART-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = F6244E40980B1C3E992119FCB7EF4F07 /* ReactNativeART-dummy.m */; }; + DDFB2252C0D8075A2E4C47B1F50BBBC0 /* RCTBaseTextInputViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 5E9B0FD9CFE103E603026ABAEF9DE9FD /* RCTBaseTextInputViewManager.m */; }; DE124FC4A0EC768A4686D70F6B4BFA58 /* FIRInstallationsItem+RegisterInstallationAPI.h in Headers */ = {isa = PBXBuildFile; fileRef = 8E8C019C75FF4F789E40C8784D2EEB25 /* FIRInstallationsItem+RegisterInstallationAPI.h */; settings = {ATTRIBUTES = (Project, ); }; }; DE4FD7EF6E7A5FDEC42D181E800ADA04 /* GULApplication.h in Headers */ = {isa = PBXBuildFile; fileRef = 8FE78D699DF0963CA715538E756C4EE2 /* GULApplication.h */; settings = {ATTRIBUTES = (Project, ); }; }; - DE5718473E4FB5F963AF5CBDE9FFC7C9 /* SocketRocket-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = BE31E7F6241CF0B138A7806E8CB36547 /* SocketRocket-dummy.m */; }; - DF44018DA4FCE008712268758F27B85D /* SRHTTPConnectMessage.h in Headers */ = {isa = PBXBuildFile; fileRef = E7D2B3E90D0FEF9F5620DE2832121824 /* SRHTTPConnectMessage.h */; settings = {ATTRIBUTES = (Project, ); }; }; - DF7090744256ADE687EBA55BC5FE8ED5 /* RCTAssert.h in Headers */ = {isa = PBXBuildFile; fileRef = ABBCF9F2DE522F1DA8F22D2A452F7D62 /* RCTAssert.h */; settings = {ATTRIBUTES = (Project, ); }; }; - DF9CDE086F36000D7C8E6834838EAAA6 /* RNFirebasePerformance.m in Sources */ = {isa = PBXBuildFile; fileRef = 48A8CFB74C512578B3160D2865303A65 /* RNFirebasePerformance.m */; }; - DFA67D9152D6A8AD4D4C5B01F061DB6F /* BSG_KSObjC.h in Headers */ = {isa = PBXBuildFile; fileRef = 827FED012D06E2542D11D73C1DAB5AEB /* BSG_KSObjC.h */; settings = {ATTRIBUTES = (Project, ); }; }; - DFD82A631E84CF574DC68FA7DCD113BE /* ObservingInputAccessoryView.h in Headers */ = {isa = PBXBuildFile; fileRef = 2A0AA3CE52D648DE41A3571BD5E16B0B /* ObservingInputAccessoryView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E00AE219C77E8D17BBBF9A091E04A29D /* FFFastImageView.h in Headers */ = {isa = PBXBuildFile; fileRef = B41A28C40E3F64F2FEF71073FC098E8D /* FFFastImageView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + DF7090744256ADE687EBA55BC5FE8ED5 /* RCTAssert.h in Headers */ = {isa = PBXBuildFile; fileRef = 0EA1512F9531252A0ABA2D3F0060F5DD /* RCTAssert.h */; settings = {ATTRIBUTES = (Project, ); }; }; + DF9CDE086F36000D7C8E6834838EAAA6 /* RNFirebasePerformance.m in Sources */ = {isa = PBXBuildFile; fileRef = 4A196FC642D11153FA3959D4663139F0 /* RNFirebasePerformance.m */; }; + DFA67D9152D6A8AD4D4C5B01F061DB6F /* BSG_KSObjC.h in Headers */ = {isa = PBXBuildFile; fileRef = E122F8B915F5A0C02F11E96CB83F567B /* BSG_KSObjC.h */; settings = {ATTRIBUTES = (Project, ); }; }; + DFD82A631E84CF574DC68FA7DCD113BE /* ObservingInputAccessoryView.h in Headers */ = {isa = PBXBuildFile; fileRef = 4CDE34E54BC7EE0335E22FF392871BAB /* ObservingInputAccessoryView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E00AE219C77E8D17BBBF9A091E04A29D /* FFFastImageView.h in Headers */ = {isa = PBXBuildFile; fileRef = CFBEF106655B3DE0DE1707129CE4C182 /* FFFastImageView.h */; settings = {ATTRIBUTES = (Project, ); }; }; E03B2983E6A3780B1E33F86C0B6727E8 /* GDTCORStoredEvent.m in Sources */ = {isa = PBXBuildFile; fileRef = 00A08DD362055E20F1FB0559D19644E4 /* GDTCORStoredEvent.m */; }; - E06AAE1518AEA2562A0D7137B157DA37 /* RCTSafeAreaView.m in Sources */ = {isa = PBXBuildFile; fileRef = 22DCF2802F9A144C12D094CD9B3648DD /* RCTSafeAreaView.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + E06AAE1518AEA2562A0D7137B157DA37 /* RCTSafeAreaView.m in Sources */ = {isa = PBXBuildFile; fileRef = DFE1781A6CCF5AA0D49D19025480F590 /* RCTSafeAreaView.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; E06FF2EA4D8E7057808DAECF514487B2 /* RSKImageScrollView.m in Sources */ = {isa = PBXBuildFile; fileRef = C9C21A13DD4599456884602B0D4C6757 /* RSKImageScrollView.m */; }; E092937984315305C4F482FDC1AB25EE /* SDWebImage.h in Headers */ = {isa = PBXBuildFile; fileRef = C6A63FCD6FAFEE69391E5C3FC275512F /* SDWebImage.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E0C46A52452ABB7A82187CF8BADC033D /* RNDateTimePicker.h in Headers */ = {isa = PBXBuildFile; fileRef = 0046B30F885A1A0AC9AFF1616909513E /* RNDateTimePicker.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E0D3705D832446D3FEB5C2823DCFEB8A /* REAOperatorNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 86CDD6B4B9D3FC38F3690B53AD6617B4 /* REAOperatorNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E0F5927CF8044CD7C525F063BB91C410 /* RCTSRWebSocket.h in Headers */ = {isa = PBXBuildFile; fileRef = 7844F48521E98E1AE880D2D82021135B /* RCTSRWebSocket.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E0C46A52452ABB7A82187CF8BADC033D /* RNDateTimePicker.h in Headers */ = {isa = PBXBuildFile; fileRef = DFA17DDFACFA3BD373DD01F4D78902FF /* RNDateTimePicker.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E0D3705D832446D3FEB5C2823DCFEB8A /* REAOperatorNode.h in Headers */ = {isa = PBXBuildFile; fileRef = FDC324B82249D14E654BB58D2C459902 /* REAOperatorNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E0F5927CF8044CD7C525F063BB91C410 /* RCTSRWebSocket.h in Headers */ = {isa = PBXBuildFile; fileRef = DAB1EC0A430C852147670277947FA7CE /* RCTSRWebSocket.h */; settings = {ATTRIBUTES = (Project, ); }; }; E0F9AB2F0F827441784FE65F9DEA24FC /* SDImageTransformer.m in Sources */ = {isa = PBXBuildFile; fileRef = 4D7F7DEEE1B431B212DE4B6E85BFD120 /* SDImageTransformer.m */; }; - E0FBC07A277E9FA12F6964DF7C385E64 /* YGNode.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 540F853F7561FDFE3EE67E3312865FD5 /* YGNode.cpp */; settings = {COMPILER_FLAGS = "-fno-omit-frame-pointer -fexceptions -Wall -Werror -std=c++1y -fPIC -fno-objc-arc"; }; }; - E11D90E3A741AFE59213CF41F60AAFC3 /* RCTPackagerClient.m in Sources */ = {isa = PBXBuildFile; fileRef = EFB7840CB02563DF34763637561EC5A1 /* RCTPackagerClient.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - E13446308B20AADCEBAF1C8EA38E3EBC /* YGNodePrint.h in Headers */ = {isa = PBXBuildFile; fileRef = F6FE3146B3E310E68DDB82B95E27D28F /* YGNodePrint.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E0FBC07A277E9FA12F6964DF7C385E64 /* YGNode.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 4C2D59DF8B0247ABF490F7F8CE07A609 /* YGNode.cpp */; settings = {COMPILER_FLAGS = "-fno-omit-frame-pointer -fexceptions -Wall -Werror -std=c++1y -fPIC -fno-objc-arc"; }; }; + E11D90E3A741AFE59213CF41F60AAFC3 /* RCTPackagerClient.m in Sources */ = {isa = PBXBuildFile; fileRef = 4BA12030263DB9815E3B8E6F29CB8AB6 /* RCTPackagerClient.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + E13446308B20AADCEBAF1C8EA38E3EBC /* YGNodePrint.h in Headers */ = {isa = PBXBuildFile; fileRef = 0A1CE5EF7C7C82D6099B3F2F67BE2668 /* YGNodePrint.h */; settings = {ATTRIBUTES = (Project, ); }; }; E19F094AEE34A8B92913D6BDD5E9A718 /* GULReachabilityMessageCode.h in Headers */ = {isa = PBXBuildFile; fileRef = 464C3A02594F9D69187EC87E695B4726 /* GULReachabilityMessageCode.h */; settings = {ATTRIBUTES = (Project, ); }; }; E1C350EB67C41B14911972FCE699FCA5 /* F14Table.cpp in Sources */ = {isa = PBXBuildFile; fileRef = AE6009DB9E0286F743D5CFA5415F06EF /* 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"; }; }; - E21AAEA8465DD61EEF9AB43C823EC425 /* RCTPickerManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 9C85407951B41F33062F9DFCC058306C /* RCTPickerManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E21AAEA8465DD61EEF9AB43C823EC425 /* RCTPickerManager.h in Headers */ = {isa = PBXBuildFile; fileRef = D40F880C10CC981DF3F05D2C1CBC71EC /* RCTPickerManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; E27FEF47747D16413DA5F5E3DB760E17 /* UIImage+MemoryCacheCost.m in Sources */ = {isa = PBXBuildFile; fileRef = 1E5CFD24886A762C411A37478D6B0296 /* UIImage+MemoryCacheCost.m */; }; - E2A6689C380DCEF64FA16056E84D8149 /* BugsnagSession.h in Headers */ = {isa = PBXBuildFile; fileRef = A625FD8F2EA66347AA72D5E4FE3EFFD1 /* BugsnagSession.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E2BF9B26DC83D490DA1578C1C984489C /* Bitfield.h in Headers */ = {isa = PBXBuildFile; fileRef = 2B57AE722B7D0ACB1489C007CBC791C4 /* Bitfield.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E2E490B23FB206AE0B3CD336767D0DC4 /* RNDeviceInfo-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 17FD6938434448E24EC5E7C3DF584BD1 /* RNDeviceInfo-dummy.m */; }; + E2A6689C380DCEF64FA16056E84D8149 /* BugsnagSession.h in Headers */ = {isa = PBXBuildFile; fileRef = 6ECBB2ECFCC801807C5BF343D6867656 /* BugsnagSession.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E2BF9B26DC83D490DA1578C1C984489C /* Bitfield.h in Headers */ = {isa = PBXBuildFile; fileRef = 099817EC62B1164C873CB1AEB203D7E1 /* Bitfield.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E2E490B23FB206AE0B3CD336767D0DC4 /* RNDeviceInfo-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 88875CCBC1ECDE2E34958A86D1012817 /* RNDeviceInfo-dummy.m */; }; E2EE20BD16B60C9E9C8F5745895E4CEB /* RSKImageCropViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 481BAF2737C4B9EED2882A2C4CB20C17 /* RSKImageCropViewController.m */; }; - E3258A68B76FE2FCC58C4C633E400B8C /* RCTBaseTextViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = CEE74D72BD81F22BDDA2A8ECAC0EF55F /* RCTBaseTextViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E3258A68B76FE2FCC58C4C633E400B8C /* RCTBaseTextViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 073F30BB95FEBD162501E3C3E40BFE22 /* RCTBaseTextViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; E32C9EE312F7082CA358C8DA02112A8E /* GDTCORLifecycle.h in Headers */ = {isa = PBXBuildFile; fileRef = E0E17F86AEE63B4E96B07B6417885A38 /* GDTCORLifecycle.h */; settings = {ATTRIBUTES = (Project, ); }; }; E366DD0852E04C44719F436504C65C5F /* SDWeakProxy.m in Sources */ = {isa = PBXBuildFile; fileRef = 9A65228A597C9CDF1630D3E33E79C2E7 /* SDWeakProxy.m */; }; - E39E3634C4CA7E2E69BB72A8AF9DF0DC /* RCTKeyCommandsManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 5A9A27F54134F1A5DB297C535B527E2E /* RCTKeyCommandsManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E3D8D8CEE66A0FC7506029A673BE066D /* RCTImageLoader.h in Headers */ = {isa = PBXBuildFile; fileRef = ACEE4B37CDC23E851505FAB6B5B59F72 /* RCTImageLoader.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E39E3634C4CA7E2E69BB72A8AF9DF0DC /* RCTKeyCommandsManager.h in Headers */ = {isa = PBXBuildFile; fileRef = D0DA39416131DDA6FD113AED143C09D7 /* RCTKeyCommandsManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E3D8D8CEE66A0FC7506029A673BE066D /* RCTImageLoader.h in Headers */ = {isa = PBXBuildFile; fileRef = 989D7398E57E8B2B01EF3DDF443D6A1D /* RCTImageLoader.h */; settings = {ATTRIBUTES = (Project, ); }; }; E3DA0536FD69192110548E00EF3BE7FC /* GULNetworkURLSession.m in Sources */ = {isa = PBXBuildFile; fileRef = 1876F2F1E1CB7222FA2BE64E89BC0A68 /* GULNetworkURLSession.m */; }; - E3EE9ED3F0DE7971647E51C981116F70 /* EXAppLoaderProvider.m in Sources */ = {isa = PBXBuildFile; fileRef = DE216113D5C1728CD2DCC5081A37AE41 /* EXAppLoaderProvider.m */; }; - E3F4BCEBE73BFC628C5F5AA0EF0016EF /* BSG_KSSingleton.h in Headers */ = {isa = PBXBuildFile; fileRef = B4E118CA5DB7999296F32C8A6E78548A /* BSG_KSSingleton.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E3F69F9F53C3AF391D03FE780AD7E764 /* RCTClipboard.h in Headers */ = {isa = PBXBuildFile; fileRef = D45C637C3EFB15AF8940238347419E27 /* RCTClipboard.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E4371B1E44E185F3F7756EE3FFC0D0D4 /* RNLongPressHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = D7E27CA1DCEF358279A3960D6BADB155 /* RNLongPressHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E448A5F8D630963A29733720AB2830D0 /* BSG_KSCrashReportStore.m in Sources */ = {isa = PBXBuildFile; fileRef = 004B471228792A1EFEE67D01BA11994F /* BSG_KSCrashReportStore.m */; }; + E3EE9ED3F0DE7971647E51C981116F70 /* EXAppLoaderProvider.m in Sources */ = {isa = PBXBuildFile; fileRef = 2E596CF03E8FB545AE5A94F575DF8D50 /* EXAppLoaderProvider.m */; }; + E3F4BCEBE73BFC628C5F5AA0EF0016EF /* BSG_KSSingleton.h in Headers */ = {isa = PBXBuildFile; fileRef = 625333C80B2EAAB76B341DE8740C086C /* BSG_KSSingleton.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E3F69F9F53C3AF391D03FE780AD7E764 /* RCTClipboard.h in Headers */ = {isa = PBXBuildFile; fileRef = C36CA7C300DA70AC17561FBDC09EF3A1 /* RCTClipboard.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E4371B1E44E185F3F7756EE3FFC0D0D4 /* RNLongPressHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = F46639E69FBACDA4034916EF0396E669 /* RNLongPressHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E448A5F8D630963A29733720AB2830D0 /* BSG_KSCrashReportStore.m in Sources */ = {isa = PBXBuildFile; fileRef = 19BB8FA40C891F4D51BEB41ABE33EC1A /* BSG_KSCrashReportStore.m */; }; E448F434853BB876889DEDECD8355860 /* GDTCORRegistrar.h in Headers */ = {isa = PBXBuildFile; fileRef = 147CFFA41FD70FB3BEA2696A188FD294 /* GDTCORRegistrar.h */; settings = {ATTRIBUTES = (Project, ); }; }; E49C99B16AE53555FE7A7CB8A8BE5382 /* FIRComponentContainer.h in Headers */ = {isa = PBXBuildFile; fileRef = ABBAB6A3B14167BE15806D2D4C391430 /* FIRComponentContainer.h */; settings = {ATTRIBUTES = (Project, ); }; }; E4DF0038F580620277B1D09CFAEA7194 /* GDTFLLUploader.m in Sources */ = {isa = PBXBuildFile; fileRef = 2D6E08DDF45483F5A4732B16AF971B03 /* GDTFLLUploader.m */; }; E4F2A48E51116B466E81C84FFB3C33B5 /* UIImage+ForceDecode.h in Headers */ = {isa = PBXBuildFile; fileRef = F08B0F9A4D8A738B0F5EF58D5545D0A9 /* UIImage+ForceDecode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E4F57F221918EF831DFF3968C9B44936 /* RCTSlider.m in Sources */ = {isa = PBXBuildFile; fileRef = BE39B8616244665A9D7D7E1723302142 /* RCTSlider.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + E4F57F221918EF831DFF3968C9B44936 /* RCTSlider.m in Sources */ = {isa = PBXBuildFile; fileRef = 166A5A5D786A519E24FBAA9901A92FAB /* RCTSlider.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; E5216B6E62473377EA6E284532506268 /* Folly-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 2FA8915E0D8D275C898AC3CC45B0C183 /* Folly-dummy.m */; }; - E540203DB6826ED6957CD9E24F8C4B3C /* SRError.m in Sources */ = {isa = PBXBuildFile; fileRef = CFEE60A15DCDC8CB79B25E3A19FB4F2E /* SRError.m */; }; - E552D26DBE5A715DFF524CE675331BC6 /* RNPushKit.m in Sources */ = {isa = PBXBuildFile; fileRef = FF45F8423E452C8B8FAC16822E2A14D4 /* RNPushKit.m */; }; - E554598FD317EE9149AB8454AA9059F8 /* RNScreens-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = CF3ABE487ACB39B2F06050C40519366F /* RNScreens-dummy.m */; }; - E575B82987686FB278B44B3EB095A37A /* RCTAnimationDriver.h in Headers */ = {isa = PBXBuildFile; fileRef = FE89627E32A0863BE079C80453B79AD1 /* RCTAnimationDriver.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E552D26DBE5A715DFF524CE675331BC6 /* RNPushKit.m in Sources */ = {isa = PBXBuildFile; fileRef = 7E7E88F03D3F3406A06D39A891E38AC9 /* RNPushKit.m */; }; + E554598FD317EE9149AB8454AA9059F8 /* RNScreens-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = A47BC74A3642010E8BF4C76D781F4588 /* RNScreens-dummy.m */; }; + E575B82987686FB278B44B3EB095A37A /* RCTAnimationDriver.h in Headers */ = {isa = PBXBuildFile; fileRef = D09341F2420B8B6C6306246C8261092D /* RCTAnimationDriver.h */; settings = {ATTRIBUTES = (Project, ); }; }; E5782D8BD91896AAF55C1CBCBEF37684 /* SDImageWebPCoder.m in Sources */ = {isa = PBXBuildFile; fileRef = F15A1B308313E7B51B2753B9D83EDFA5 /* SDImageWebPCoder.m */; }; E5CAC048154072FBC7D33C3C690D1666 /* FIRInstanceIDCheckinPreferences.m in Sources */ = {isa = PBXBuildFile; fileRef = E728B448CD6DE78410A3FA3D7DFFAF58 /* FIRInstanceIDCheckinPreferences.m */; }; - E5F11EB51F68D959C8291875C93E4B1A /* React-jsinspector-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = B0021F87AF4D5BCE38D706C751D5C3BA /* React-jsinspector-dummy.m */; }; - E5FB31F6C23D375DE5CBC98123BE9B8D /* RNGestureHandlerManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 93783A9755F74D6B0279A1DC456F6FF9 /* RNGestureHandlerManager.m */; }; - E5FC836186D971C23AE7EA2BBD891DA9 /* BugsnagSessionFileStore.m in Sources */ = {isa = PBXBuildFile; fileRef = A5106FDAF2638B10BBE85A9909699C37 /* BugsnagSessionFileStore.m */; }; + E5F11EB51F68D959C8291875C93E4B1A /* React-jsinspector-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 974CF72F019FFD15DF14B08971B6587C /* React-jsinspector-dummy.m */; }; + E5FB31F6C23D375DE5CBC98123BE9B8D /* RNGestureHandlerManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 9B8036D6004AA4DC9A6690B2DF2AAC63 /* RNGestureHandlerManager.m */; }; + E5FC836186D971C23AE7EA2BBD891DA9 /* BugsnagSessionFileStore.m in Sources */ = {isa = PBXBuildFile; fileRef = 904D642278F8E880B2DDEF5EB580F9CB /* BugsnagSessionFileStore.m */; }; E64DF891F62A7CC6064235FD1A9DCF5D /* SDImageLoadersManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 0A50C6F190916F34A6C994F0FA9A369F /* SDImageLoadersManager.m */; }; - E6672788C9A13BEF81FB7F5821C0B79E /* RNEventEmitter.h in Headers */ = {isa = PBXBuildFile; fileRef = 5BAC389FE0AEA9F0EC1B3641793AAB72 /* RNEventEmitter.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E67CC774BCC800FC2518913B50739E55 /* ARTLinearGradient.m in Sources */ = {isa = PBXBuildFile; fileRef = 3B27AF07DF369B7F988916D839C0A8D1 /* ARTLinearGradient.m */; }; - E6ABE72B7BC5B02D311C204E250FA5F3 /* RCTLayoutAnimationGroup.m in Sources */ = {isa = PBXBuildFile; fileRef = E3B1D7BD8244731CEE71638B9028B0E0 /* RCTLayoutAnimationGroup.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - E6B28EC2EAA76DA7CBCA209D55786E4C /* RNFastImage-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = CBFCB93D8C224182152D433040D7B1CE /* RNFastImage-dummy.m */; }; + E6672788C9A13BEF81FB7F5821C0B79E /* RNEventEmitter.h in Headers */ = {isa = PBXBuildFile; fileRef = CDF82BBA5F38308C657334F5B05987B0 /* RNEventEmitter.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E67CC774BCC800FC2518913B50739E55 /* ARTLinearGradient.m in Sources */ = {isa = PBXBuildFile; fileRef = 9FED12192B0942108CD3EC565594B9ED /* ARTLinearGradient.m */; }; + E6ABE72B7BC5B02D311C204E250FA5F3 /* RCTLayoutAnimationGroup.m in Sources */ = {isa = PBXBuildFile; fileRef = F07665624B42E0BA287BFC92427C3E6B /* RCTLayoutAnimationGroup.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + E6B28EC2EAA76DA7CBCA209D55786E4C /* RNFastImage-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 448EE0F13FAFFF4797D06C4E6784737B /* RNFastImage-dummy.m */; }; E6C3AC1533E09AB22822D392C9B9CFCC /* FIRDependency.m in Sources */ = {isa = PBXBuildFile; fileRef = C460DA70768C93ED1BE2D6D8F8EB4963 /* FIRDependency.m */; }; - E6C8BD53A9389792CDC6E69D7FEB223A /* RCTResizeMode.h in Headers */ = {isa = PBXBuildFile; fileRef = 4299E32ADB6508288AAF57D0EEB0A05F /* RCTResizeMode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E6D227640A6B27493E6D63BAF5C6F11E /* RCTGIFImageDecoder.m in Sources */ = {isa = PBXBuildFile; fileRef = 2E47084E6E1000C6B0F23A4BE56D55B8 /* RCTGIFImageDecoder.m */; }; + E6C8BD53A9389792CDC6E69D7FEB223A /* RCTResizeMode.h in Headers */ = {isa = PBXBuildFile; fileRef = 138C7BA75C8AF37730D9FAB299EE60ED /* RCTResizeMode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E6D227640A6B27493E6D63BAF5C6F11E /* RCTGIFImageDecoder.m in Sources */ = {isa = PBXBuildFile; fileRef = 3FD06CCB831E6482EE83DEA12754ACEE /* RCTGIFImageDecoder.m */; }; E6FE2807B85DDFB3EA91EEF768018D80 /* dec_sse2.c in Sources */ = {isa = PBXBuildFile; fileRef = 4DF0BD63D7D4CFDCC663E62D0F856294 /* dec_sse2.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - E7171E9DE4E1C13572715CB434C0B5F2 /* RCTDatePicker.h in Headers */ = {isa = PBXBuildFile; fileRef = 9564001A129DE20B1126AA1C8B62BDA8 /* RCTDatePicker.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E7171E9DE4E1C13572715CB434C0B5F2 /* RCTDatePicker.h in Headers */ = {isa = PBXBuildFile; fileRef = C49E850BF03B507FA1CE00F3413C7922 /* RCTDatePicker.h */; settings = {ATTRIBUTES = (Project, ); }; }; E77893AECA58C42BEFB11A9F3D0F0E89 /* SDAnimatedImagePlayer.m in Sources */ = {isa = PBXBuildFile; fileRef = 378C25F0844A70F6AF0AD604D5B04960 /* SDAnimatedImagePlayer.m */; }; - E77AD62D1F1A5ED37D541E208A1B6545 /* RCTMaskedView.m in Sources */ = {isa = PBXBuildFile; fileRef = 9F0BE9354B21DB8B50783D86FACC9768 /* RCTMaskedView.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + E77AD62D1F1A5ED37D541E208A1B6545 /* RCTMaskedView.m in Sources */ = {isa = PBXBuildFile; fileRef = BD66CCF02B3EA0A1EB7AC776F1B25294 /* RCTMaskedView.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; E7A53AFEB6F93AA9F66679AFBF68CA43 /* SDFileAttributeHelper.m in Sources */ = {isa = PBXBuildFile; fileRef = 88FB1508A1C9E9DF1C4FCF0644BFB25D /* SDFileAttributeHelper.m */; }; E7C43AA674EF98DB10295D5A0FDEF294 /* UIImage+RSKImageCropper.h in Headers */ = {isa = PBXBuildFile; fileRef = 631C18F49615412D4C905B1C37D9ADA9 /* UIImage+RSKImageCropper.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E825EB7097FB4979649C593B3A86B567 /* RCTStyleAnimatedNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 465BEDE78B0DADB6C8C5AF9A2C503464 /* RCTStyleAnimatedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E84B9D70F5DC04842F89B53195E9D52C /* RCTTextShadowView.m in Sources */ = {isa = PBXBuildFile; fileRef = 6D700A18FFE467C32FA8C069C33E1628 /* RCTTextShadowView.m */; }; - E853513BCE291CEE0B0E1CA5D20B1809 /* RNFirebaseAnalytics.h in Headers */ = {isa = PBXBuildFile; fileRef = 6DAB1A43C38395471FDF552B91A4D720 /* RNFirebaseAnalytics.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E825EB7097FB4979649C593B3A86B567 /* RCTStyleAnimatedNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 34976D1F0EB553F6DED4F7314D387F99 /* RCTStyleAnimatedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E84B9D70F5DC04842F89B53195E9D52C /* RCTTextShadowView.m in Sources */ = {isa = PBXBuildFile; fileRef = 75555A22B90D962584B057CB428246BF /* RCTTextShadowView.m */; }; + E853513BCE291CEE0B0E1CA5D20B1809 /* RNFirebaseAnalytics.h in Headers */ = {isa = PBXBuildFile; fileRef = 6CFA067283E1A30696863332A0466C9E /* RNFirebaseAnalytics.h */; settings = {ATTRIBUTES = (Project, ); }; }; E85404923CD3A01CF558D3850CFE3679 /* GULHeartbeatDateStorage.h in Headers */ = {isa = PBXBuildFile; fileRef = 16FB6D1CB6C00FD26DF39F79C94A3B7C /* GULHeartbeatDateStorage.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E893729E87251274E6D1D3B51566E3B4 /* RNCAppearance.m in Sources */ = {isa = PBXBuildFile; fileRef = 440BA5D9B166A2E2B5CEFEDB45182A2B /* RNCAppearance.m */; }; - E89D6302F9CD369994133101A1FCE6B9 /* EXAudioSessionManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 5F421E4F57D9A4433BF1EFFAB8A86727 /* EXAudioSessionManager.m */; }; + E893729E87251274E6D1D3B51566E3B4 /* RNCAppearance.m in Sources */ = {isa = PBXBuildFile; fileRef = 26FA9CC84711849B24882F0E489476B5 /* RNCAppearance.m */; }; + E89D6302F9CD369994133101A1FCE6B9 /* EXAudioSessionManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 0F1C297A0F73DDF5436BBCA26B8442AC /* EXAudioSessionManager.m */; }; E8E1EDE9F3E6489979B88DD4A1772C5A /* FIRInstallationsHTTPError.h in Headers */ = {isa = PBXBuildFile; fileRef = 5A09F908C75D99E518BBF382A235C2DB /* FIRInstallationsHTTPError.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E8F7886CF346A4A59D5620CEAA69B8D7 /* RCTI18nUtil.m in Sources */ = {isa = PBXBuildFile; fileRef = 52B964F114FDAAD446D5928A05EDCA0A /* RCTI18nUtil.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - E947B8EE3C12F59A7BE6DA22F4E43AC9 /* ARTNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 4ECD8FB8DE9B1A1C9296584DB3ECA5B1 /* ARTNode.m */; }; + E8F7886CF346A4A59D5620CEAA69B8D7 /* RCTI18nUtil.m in Sources */ = {isa = PBXBuildFile; fileRef = B98B9DFE8DA2F9A4D98992E7B2176DC5 /* RCTI18nUtil.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + E947B8EE3C12F59A7BE6DA22F4E43AC9 /* ARTNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 8174553A704A3296A6EA492FEB5062E3 /* ARTNode.m */; }; E98690E099869FCA322CDB7C8AB9B323 /* webp_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = 369513EEA056867CD6A5F02835B302FE /* webp_enc.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; E98CCDCFD26438DD750B626B558080DB /* SDWebImageDefine.m in Sources */ = {isa = PBXBuildFile; fileRef = 55331CDCA3E4E9F322A2CA7CE5915A6A /* SDWebImageDefine.m */; }; - E99670DE6BBAD7C09E618409533D1080 /* EXDownloadDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = EF10823405FF27A7C92DCDE82B8353A4 /* EXDownloadDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E9ACBB81BB2D21567E75CB08C2B132A4 /* RNLocalize.h in Headers */ = {isa = PBXBuildFile; fileRef = 75BF1FF4B1F8B5EAD5AFAED5A3CE7E71 /* RNLocalize.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E99670DE6BBAD7C09E618409533D1080 /* EXDownloadDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = 017AA1EC0956C3075F84099B5F9EE844 /* EXDownloadDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E9ACBB81BB2D21567E75CB08C2B132A4 /* RNLocalize.h in Headers */ = {isa = PBXBuildFile; fileRef = 1FE97021ECAFB4B3D7131C2439FD365A /* RNLocalize.h */; settings = {ATTRIBUTES = (Project, ); }; }; E9BEC3539C84BEBAE9C56DD82FE4AE08 /* GDTCORConsoleLogger.m in Sources */ = {isa = PBXBuildFile; fileRef = 1FC1353AA6CA2364871614AD5734013C /* GDTCORConsoleLogger.m */; }; - E9D7ACE54F298811EB74DFBF05F996D5 /* UMBridgeModule.h in Headers */ = {isa = PBXBuildFile; fileRef = E5E35A700DF640881A10CFAA884F2546 /* UMBridgeModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E9D7ACE54F298811EB74DFBF05F996D5 /* UMBridgeModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 4DA0100AFFCA32F963754E69A13D1B27 /* UMBridgeModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; EA92BC0787BF825827888594F2AEBA4E /* SDImageCoderHelper.h in Headers */ = {isa = PBXBuildFile; fileRef = 7480B7F4FAB96A496173DE0E7C617B9C /* SDImageCoderHelper.h */; settings = {ATTRIBUTES = (Project, ); }; }; - EA9D2196B9FA41E54B88391038F499A8 /* NSURLRequest+SRWebSocketPrivate.h in Headers */ = {isa = PBXBuildFile; fileRef = E33FA78EE29F5439A3878F4D9271F84A /* NSURLRequest+SRWebSocketPrivate.h */; settings = {ATTRIBUTES = (Project, ); }; }; - EAC3645D8AC3873C347FC01F30F07184 /* BSG_KSDynamicLinker.h in Headers */ = {isa = PBXBuildFile; fileRef = D916A145C86ACF5D6B7D8B59318A684D /* BSG_KSDynamicLinker.h */; settings = {ATTRIBUTES = (Project, ); }; }; - EACE68BBD4942597E5ADE9391E6A38D5 /* SRLog.m in Sources */ = {isa = PBXBuildFile; fileRef = D16DB42242AAD6739B77AF6F41605B7A /* SRLog.m */; }; - EB0B31B8287F6C7F98F99A2AF00CACB4 /* RCTJavaScriptLoader.h in Headers */ = {isa = PBXBuildFile; fileRef = 401ADA1FB17407FDE15E4ED94C4B07EA /* RCTJavaScriptLoader.h */; settings = {ATTRIBUTES = (Project, ); }; }; + EAC3645D8AC3873C347FC01F30F07184 /* BSG_KSDynamicLinker.h in Headers */ = {isa = PBXBuildFile; fileRef = F09C49B0D59C738FF539A84C334C675C /* BSG_KSDynamicLinker.h */; settings = {ATTRIBUTES = (Project, ); }; }; + EB0B31B8287F6C7F98F99A2AF00CACB4 /* RCTJavaScriptLoader.h in Headers */ = {isa = PBXBuildFile; fileRef = 0A2BFD50F94AD38AE107E46ACB952D78 /* RCTJavaScriptLoader.h */; settings = {ATTRIBUTES = (Project, ); }; }; EB2C44784270DFBA3B582FB79FB0B4CA /* alpha_processing_mips_dsp_r2.c in Sources */ = {isa = PBXBuildFile; fileRef = 3E30B8CCF8842538B301F60452DFD5E4 /* alpha_processing_mips_dsp_r2.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - EB5FDE0900500D251E2A58D288202037 /* EXVideoView.h in Headers */ = {isa = PBXBuildFile; fileRef = C0AB2D2B3F9D802375A687B12E800576 /* EXVideoView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - EBA14ECF6325AE246FF34646A5D8CA77 /* RCTTypedModuleConstants.h in Headers */ = {isa = PBXBuildFile; fileRef = 13DB9E7A9EDCAD57724ECE7095B82C48 /* RCTTypedModuleConstants.h */; settings = {ATTRIBUTES = (Project, ); }; }; - EBA79B0AE533BE87BCF47925BEEF5A58 /* RNGestureHandlerEvents.m in Sources */ = {isa = PBXBuildFile; fileRef = 9844F24E14A23FC4D4193BCFDBE1D3EF /* RNGestureHandlerEvents.m */; }; - EBD86108D11313816DA5380B28BDF659 /* EXAVPlayerData.m in Sources */ = {isa = PBXBuildFile; fileRef = 0D643F3C2F2AE34AF4787C133ECECE47 /* EXAVPlayerData.m */; }; + EB5FDE0900500D251E2A58D288202037 /* EXVideoView.h in Headers */ = {isa = PBXBuildFile; fileRef = 1A523BB61F5BFB8222D313B9BB64638E /* EXVideoView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + EBA14ECF6325AE246FF34646A5D8CA77 /* RCTTypedModuleConstants.h in Headers */ = {isa = PBXBuildFile; fileRef = 8F5899B6499FEC85F4D4AB9B0F168FE0 /* RCTTypedModuleConstants.h */; settings = {ATTRIBUTES = (Project, ); }; }; + EBA79B0AE533BE87BCF47925BEEF5A58 /* RNGestureHandlerEvents.m in Sources */ = {isa = PBXBuildFile; fileRef = F67EE4F4190BEAE253397EF0E41D65D0 /* RNGestureHandlerEvents.m */; }; + EBA878971E9F0642C4A9BB01CC1CF5CF /* EXKeepAwake.m in Sources */ = {isa = PBXBuildFile; fileRef = FEC6081AC23CEB436CA6F056DAB0E1A8 /* EXKeepAwake.m */; }; + EBD86108D11313816DA5380B28BDF659 /* EXAVPlayerData.m in Sources */ = {isa = PBXBuildFile; fileRef = 9E58D9CA714675ECC7520AD8614504E1 /* EXAVPlayerData.m */; }; EBDA10C96D8A27B909F8DB3B0A7C32F1 /* pb_decode.h in Headers */ = {isa = PBXBuildFile; fileRef = 4E9D30B663A082E804F4CAA873DD3822 /* pb_decode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - EBFD540945522362ECEE6BE93F273482 /* RNFirebaseAdMobBannerManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 57BB5857333B5A5C1BECBE34C6FA2C7B /* RNFirebaseAdMobBannerManager.m */; }; - EC08AB594C6A1EE421C0F7221243CB62 /* RCTBlobManager.mm in Sources */ = {isa = PBXBuildFile; fileRef = 1D55286078DE9B0E3DC2A02630ED8D2C /* RCTBlobManager.mm */; }; - EC0BF2510F9ED9AF098DD223FC443285 /* RCTBaseTextInputView.m in Sources */ = {isa = PBXBuildFile; fileRef = 6E887F6BE53835287D1AB305304DB272 /* RCTBaseTextInputView.m */; }; - EC9004FACF5144E188B844C9527904D6 /* RCTMaskedView.h in Headers */ = {isa = PBXBuildFile; fileRef = 7B85F7D90C71261D80F72379FBA1F2A0 /* RCTMaskedView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - EC99C50385781477A8923300E8BC421B /* RCTTextViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 442021A1597754B5A40B5273C97AC21C /* RCTTextViewManager.m */; }; - ECA780FF54FE7C9F647A4D72E95010F7 /* ARTLinearGradient.h in Headers */ = {isa = PBXBuildFile; fileRef = 34BA3B9513B4A637C87015392B20B03E /* ARTLinearGradient.h */; settings = {ATTRIBUTES = (Project, ); }; }; + EBFD540945522362ECEE6BE93F273482 /* RNFirebaseAdMobBannerManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 82AADF162D49004B235303BC98C8DAB6 /* RNFirebaseAdMobBannerManager.m */; }; + EC08AB594C6A1EE421C0F7221243CB62 /* RCTBlobManager.mm in Sources */ = {isa = PBXBuildFile; fileRef = 74DE877035EE74EB44D5D03BB75BD898 /* RCTBlobManager.mm */; }; + EC0BF2510F9ED9AF098DD223FC443285 /* RCTBaseTextInputView.m in Sources */ = {isa = PBXBuildFile; fileRef = 7DCF83BC9FCCFF58A6A62DC6C927FF6A /* RCTBaseTextInputView.m */; }; + EC9004FACF5144E188B844C9527904D6 /* RCTMaskedView.h in Headers */ = {isa = PBXBuildFile; fileRef = C65D94E71FE74B0A8F1DE09B5C1629F6 /* RCTMaskedView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + EC99C50385781477A8923300E8BC421B /* RCTTextViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 57BEABE77D7E5A632DCA9DF7662E5BB6 /* RCTTextViewManager.m */; }; + ECA780FF54FE7C9F647A4D72E95010F7 /* ARTLinearGradient.h in Headers */ = {isa = PBXBuildFile; fileRef = 9D8E2C2C622582DECC25843C7689124A /* ARTLinearGradient.h */; settings = {ATTRIBUTES = (Project, ); }; }; ECB28850CF749899A41813E488AE29E7 /* GDTCCTNanopbHelpers.h in Headers */ = {isa = PBXBuildFile; fileRef = 06F15669F5B860FA4E51821B5C31DD25 /* GDTCCTNanopbHelpers.h */; settings = {ATTRIBUTES = (Project, ); }; }; ECF5EE9A8CBB6789B7B126A9A26A5F1F /* SDImageCacheConfig.h in Headers */ = {isa = PBXBuildFile; fileRef = C4479616B9A8800084821451D7E8362A /* SDImageCacheConfig.h */; settings = {ATTRIBUTES = (Project, ); }; }; - ECFB29DE3E310D2CF27F7C2D40F93A9A /* QBSlomoIconView.h in Headers */ = {isa = PBXBuildFile; fileRef = 70E6E5EDD941810DD75AC29CC64C8F9F /* QBSlomoIconView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + ECFB29DE3E310D2CF27F7C2D40F93A9A /* QBSlomoIconView.h in Headers */ = {isa = PBXBuildFile; fileRef = E36B045EFCE2734A7701EAEDDC05A232 /* QBSlomoIconView.h */; settings = {ATTRIBUTES = (Project, ); }; }; ED62691B003B2C54B15DD706EBD7FA6B /* histogram_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = DFC6BCB3B33D02DBB888628D1E52A351 /* histogram_enc.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; ED6F8B6CE9CEFC1D4CD6E21DF8103BCD /* SDWebImageIndicator.h in Headers */ = {isa = PBXBuildFile; fileRef = 436BEED2A30591A8D4E5DB90E45FC2FA /* SDWebImageIndicator.h */; settings = {ATTRIBUTES = (Project, ); }; }; EDA6631D3EB50C35BD2E88DEAEECA297 /* FIRInstallationsVersion.h in Headers */ = {isa = PBXBuildFile; fileRef = 668DB3196C8AC5E9F322863CBC018C56 /* FIRInstallationsVersion.h */; settings = {ATTRIBUTES = (Project, ); }; }; - EE23B71AEA719ECCE99E89E393DAE6B1 /* UMNativeModulesProxy.h in Headers */ = {isa = PBXBuildFile; fileRef = 3B61A9482BC3A9BEDDDE88B257AB21F1 /* UMNativeModulesProxy.h */; settings = {ATTRIBUTES = (Project, ); }; }; + EE23B71AEA719ECCE99E89E393DAE6B1 /* UMNativeModulesProxy.h in Headers */ = {isa = PBXBuildFile; fileRef = F311E3C47D33B13DBE2776545EF45F81 /* UMNativeModulesProxy.h */; settings = {ATTRIBUTES = (Project, ); }; }; EE273A1922351D221CFDAFFC3FC1BEEE /* UIImage+Transform.h in Headers */ = {isa = PBXBuildFile; fileRef = F3AD925B23A79ECA6E6EBDF8DB7412D2 /* UIImage+Transform.h */; settings = {ATTRIBUTES = (Project, ); }; }; - EE5A08FA36B0D47C84E6173B27CA2152 /* YGStyle.h in Headers */ = {isa = PBXBuildFile; fileRef = 01C7D09FC34435AADB05B98A7299757D /* YGStyle.h */; settings = {ATTRIBUTES = (Project, ); }; }; - EE6C34D5DC88F870B40D305A75D38553 /* de.lproj in Resources */ = {isa = PBXBuildFile; fileRef = 9FA90F2A19EA39D751067C60883C265D /* de.lproj */; }; + EE5A08FA36B0D47C84E6173B27CA2152 /* YGStyle.h in Headers */ = {isa = PBXBuildFile; fileRef = AC3BF52795F302CF04D568959A0EB08B /* YGStyle.h */; settings = {ATTRIBUTES = (Project, ); }; }; + EE6C34D5DC88F870B40D305A75D38553 /* de.lproj in Resources */ = {isa = PBXBuildFile; fileRef = 993C4DCA49A1D0EC883E73C5248D148F /* de.lproj */; }; EEBF8313CA8F65F42F85E698A4170BB3 /* GULLoggerLevel.h in Headers */ = {isa = PBXBuildFile; fileRef = 63FC874B85C176CC532B90BB75E6546F /* GULLoggerLevel.h */; settings = {ATTRIBUTES = (Project, ); }; }; - EEE7B9655AA3FCF1C1B0294133926C5A /* UMModuleRegistryConsumer.h in Headers */ = {isa = PBXBuildFile; fileRef = 3A125568FCC4029332BB55668E241081 /* UMModuleRegistryConsumer.h */; settings = {ATTRIBUTES = (Project, ); }; }; + EEE7B9655AA3FCF1C1B0294133926C5A /* UMModuleRegistryConsumer.h in Headers */ = {isa = PBXBuildFile; fileRef = 1E6C1E5398309582A4E2B5A4F44C4D67 /* UMModuleRegistryConsumer.h */; settings = {ATTRIBUTES = (Project, ); }; }; EEEE2F8856949DC3AD8768907BC1155B /* FBLPromise+Timeout.h in Headers */ = {isa = PBXBuildFile; fileRef = 812DCB2F8F49903836E6EBBDD65655F2 /* FBLPromise+Timeout.h */; settings = {ATTRIBUTES = (Project, ); }; }; EEF97C679BEE5F2A9C7F7D95720C9AF6 /* lossless_enc_msa.c in Sources */ = {isa = PBXBuildFile; fileRef = 9E97258EDDE1B0FF09F0FC66346AD27A /* lossless_enc_msa.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - EF2C4FB84AFC8710114EB87DF542FA40 /* RCTAnimationUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = 686234FF9B66012D4812B8BF63F5CF6F /* RCTAnimationUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; + EF2C4FB84AFC8710114EB87DF542FA40 /* RCTAnimationUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = 941AA7CB66C7571E8337B0A35BB2807B /* RCTAnimationUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; EF627458DF9DF92352237F2364F8D8B7 /* FIRCoreDiagnostics.m in Sources */ = {isa = PBXBuildFile; fileRef = BE9A40D3A7B0498886FB7048EF92990B /* FIRCoreDiagnostics.m */; }; - EF686B36ADD04B852E545DE24FC4ED46 /* RCTSettingsManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 142645C01EEDC63308811732C7B0EFCB /* RCTSettingsManager.m */; }; + EF686B36ADD04B852E545DE24FC4ED46 /* RCTSettingsManager.m in Sources */ = {isa = PBXBuildFile; fileRef = DCCFD093AB7EEEE3BBD485C8D8CC0CA0 /* RCTSettingsManager.m */; }; EF6ED61C297982CF31DF19548C24548C /* FIRAppInternal.h in Headers */ = {isa = PBXBuildFile; fileRef = 14E9D8CDCDCDC635008003D55AC6728F /* FIRAppInternal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - EFCBDB29A0854F4C329462E88F5FB5EF /* RCTValueAnimatedNode.h in Headers */ = {isa = PBXBuildFile; fileRef = D299EB579C6FDA2EAF70C40BEDB65683 /* RCTValueAnimatedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + EFCBDB29A0854F4C329462E88F5FB5EF /* RCTValueAnimatedNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 426D44B7D569B4438F6DB50DF39C1B43 /* RCTValueAnimatedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; EFDDDA86D58A5A3B5A5C52CD2E4684D8 /* random_utils.h in Headers */ = {isa = PBXBuildFile; fileRef = 6BB4E471066205C1B9F8413CE80BAB3E /* random_utils.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F017287C4E1183CC83C54BCDF409A28C /* RCTInputAccessoryViewContent.h in Headers */ = {isa = PBXBuildFile; fileRef = 661399D54AE297D8AE1A9DAB3725099C /* RCTInputAccessoryViewContent.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F017287C4E1183CC83C54BCDF409A28C /* RCTInputAccessoryViewContent.h in Headers */ = {isa = PBXBuildFile; fileRef = 75E916C11B117641ADC4295D0929A1F3 /* RCTInputAccessoryViewContent.h */; settings = {ATTRIBUTES = (Project, ); }; }; F026131495373C5DE569B201034D9101 /* cost_mips32.c in Sources */ = {isa = PBXBuildFile; fileRef = 3C4BE532E284D6FC858B445EBCE54BE5 /* cost_mips32.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - F02C80E50A42C5C5D22B26EC7C971239 /* RNPinchHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = 7130E8836E6922C737FF3F3F35012540 /* RNPinchHandler.m */; }; - F091BB9661A4345D85F945ED606B30FE /* EXSystemBrightnessRequester.h in Headers */ = {isa = PBXBuildFile; fileRef = 2E907964A01A0EBE1F44A25EE7D8E39D /* EXSystemBrightnessRequester.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F0AB1EAEB67FA9F7F0EAC55737D635B8 /* TurboModuleBinding.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 99C590A2A3E280556E807975D1F0E755 /* TurboModuleBinding.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + F02C80E50A42C5C5D22B26EC7C971239 /* RNPinchHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = B6CAAE78EA5CCE98700AFB5C907FA960 /* RNPinchHandler.m */; }; + F091BB9661A4345D85F945ED606B30FE /* EXSystemBrightnessRequester.h in Headers */ = {isa = PBXBuildFile; fileRef = 2E50340A01C6E685735D38CA40DC8A44 /* EXSystemBrightnessRequester.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F0AB1EAEB67FA9F7F0EAC55737D635B8 /* TurboModuleBinding.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9D14418A9FCD05F5C0F3B6B2BBF501B0 /* TurboModuleBinding.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; F0B46213F4296B9F86E89D13B3812DA4 /* UIImage+ExtendedCacheData.m in Sources */ = {isa = PBXBuildFile; fileRef = 395775162350335AB985C2E53A0F2AFA /* UIImage+ExtendedCacheData.m */; }; F0DDCA31D954C30755FAAFC075C96D5C /* GDTCORPlatform.h in Headers */ = {isa = PBXBuildFile; fileRef = CE71CD3D3C773A121030FB81AB751D1A /* GDTCORPlatform.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F0F6FF2BDBAEAE1AB3B9FC5CFB1DD69B /* RNNotificationCenterListener.h in Headers */ = {isa = PBXBuildFile; fileRef = C00495D2A51078A2A72C323A20B1A9FD /* RNNotificationCenterListener.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F0FCF80EBEDFE45F3FE19DEEE0A94D56 /* RNNotificationParser.m in Sources */ = {isa = PBXBuildFile; fileRef = 6A898E6DE18628EF60F56FA7A3453405 /* RNNotificationParser.m */; }; + F0F6FF2BDBAEAE1AB3B9FC5CFB1DD69B /* RNNotificationCenterListener.h in Headers */ = {isa = PBXBuildFile; fileRef = ADB7F9F46EF6A4138FCBB997F5FB5172 /* RNNotificationCenterListener.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F0FCF80EBEDFE45F3FE19DEEE0A94D56 /* RNNotificationParser.m in Sources */ = {isa = PBXBuildFile; fileRef = FEC601D1D74D013675FE7C27FD105C6F /* RNNotificationParser.m */; }; F128E5421AFDD733B6EA5E6DC0BDBBBF /* dec_sse41.c in Sources */ = {isa = PBXBuildFile; fileRef = 2FC5C1273D1024C325327DCD080C4650 /* dec_sse41.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; F15DE35EBA4CB4B476438C0692A0950A /* FIRHeartbeatInfo.m in Sources */ = {isa = PBXBuildFile; fileRef = FFE34689D2E3DE37AC652BA9C6743AD3 /* FIRHeartbeatInfo.m */; }; F19BF0C7860B5391D62C5E675AB146B4 /* bignum-dtoa.h in Headers */ = {isa = PBXBuildFile; fileRef = BF0E8DD8BC7FDA879032926A40B37AA3 /* bignum-dtoa.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F1A4EF081FF2A5D0C5CA12DA474211AC /* BSG_KSMach_Arm64.c in Sources */ = {isa = PBXBuildFile; fileRef = FBA73E52609D7D1B032A5C01E116D8D6 /* BSG_KSMach_Arm64.c */; }; + F1A4EF081FF2A5D0C5CA12DA474211AC /* BSG_KSMach_Arm64.c in Sources */ = {isa = PBXBuildFile; fileRef = 44B73E94CC09F67018EAD36DAE72D999 /* BSG_KSMach_Arm64.c */; }; F1CFAD1BBFF7E0BDA26021957C170257 /* vp8_dec.h in Headers */ = {isa = PBXBuildFile; fileRef = B0D7F4389F6E6CC404907A69EE8797DE /* vp8_dec.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F1DBD2564FDBAE92A9E4AA8D7CCC7E01 /* RCTModuloAnimatedNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 49E9FA0CAC29D7D243E9B6AD3C3F1AFC /* RCTModuloAnimatedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F1DBD2564FDBAE92A9E4AA8D7CCC7E01 /* RCTModuloAnimatedNode.h in Headers */ = {isa = PBXBuildFile; fileRef = F840BF6836B68BC2F0B39D0962A217A7 /* RCTModuloAnimatedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; F253676650181C9AB4472384CDCFE3B9 /* CGGeometry+RSKImageCropper.m in Sources */ = {isa = PBXBuildFile; fileRef = A1EC5104042BAFCD052B353B775968D7 /* CGGeometry+RSKImageCropper.m */; }; - F2678A8C2C1CC5973FADEE574737BDCE /* RCTInputAccessoryShadowView.m in Sources */ = {isa = PBXBuildFile; fileRef = BD94ABB8BE4C32628F20FC265681E7A0 /* RCTInputAccessoryShadowView.m */; }; + F2678A8C2C1CC5973FADEE574737BDCE /* RCTInputAccessoryShadowView.m in Sources */ = {isa = PBXBuildFile; fileRef = 524B6107C05BA5B8BA8D4B4196CD7045 /* RCTInputAccessoryShadowView.m */; }; F2826D6E1658277DA089B70D6A8EE819 /* vlog_is_on.h in Headers */ = {isa = PBXBuildFile; fileRef = 03D64694CDD23D5AA5D2926DA6659EED /* vlog_is_on.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F2DC4D68D95807B1FAB1279790CB7918 /* RNTapHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = 1B9817DDC659D19779803F9E20C6AB86 /* RNTapHandler.m */; }; + F2DC4D68D95807B1FAB1279790CB7918 /* RNTapHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = 0EFDE0F540ECDC4B29AFFD10654D7EF7 /* RNTapHandler.m */; }; F2E8A9FD857BB35C68640079AC2A68AB /* FIRInstanceIDAPNSInfo.h in Headers */ = {isa = PBXBuildFile; fileRef = 7121DEBABF2BDFF8481B59788B8C759F /* FIRInstanceIDAPNSInfo.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F30AE70097060CD9BC8221D42344048D /* RCTInterpolationAnimatedNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 515ED9D73A60909FF8CAB05A5F739EBE /* RCTInterpolationAnimatedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F30AE70097060CD9BC8221D42344048D /* RCTInterpolationAnimatedNode.h in Headers */ = {isa = PBXBuildFile; fileRef = AE209A393FF8A2720977A905B28D1841 /* RCTInterpolationAnimatedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; F34C639FB1271BA9041CE7D33BBB6859 /* FBLPromise.h in Headers */ = {isa = PBXBuildFile; fileRef = 6E1351AE14BC4DCE7B93E301AA99026B /* FBLPromise.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F358B6463CF3BC773C24CE612205CF12 /* BugsnagNotifier.h in Headers */ = {isa = PBXBuildFile; fileRef = 5799FA9AC8B924573C5A3E3251830CE5 /* BugsnagNotifier.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F358B6463CF3BC773C24CE612205CF12 /* BugsnagNotifier.h in Headers */ = {isa = PBXBuildFile; fileRef = 322571C45B804E9A539D80A85896A748 /* BugsnagNotifier.h */; settings = {ATTRIBUTES = (Project, ); }; }; F3A009B81FF8A92B347826968ED9AF1E /* demux.c in Sources */ = {isa = PBXBuildFile; fileRef = 66BE2E56E1110F499C048713FEB1CE2A /* demux.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - F3E90E8C1586DE0BC8F64B440C00EF15 /* RCTSurfaceRootShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = 7863585CD0E852336E86A78D380423EB /* RCTSurfaceRootShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F3FF0E6A7EBEC4415BE364AC9798CBC4 /* RCTBaseTextInputViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = C55E7F8ECA540C10662FB91C50C909BE /* RCTBaseTextInputViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F3E90E8C1586DE0BC8F64B440C00EF15 /* RCTSurfaceRootShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = D4C5F5D791B6F526FB95ADB58BB237B6 /* RCTSurfaceRootShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F3FF0E6A7EBEC4415BE364AC9798CBC4 /* RCTBaseTextInputViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 656BF0C11A2DDDA0C766C3761D7E88B7 /* RCTBaseTextInputViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; F40EA7396762A710141555DE1EF792D0 /* ScopeGuard.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9AE4C4F557F4921C9D27A6E75DDB9A1A /* ScopeGuard.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; F4227A5A22C299DB2F673D8875C42BAD /* picture_psnr_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = 54D0A0D72E5409D9555B3AB6C444425A /* picture_psnr_enc.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; F4604D394027188B0F18448BA46914DF /* FIRInstallationsLogger.m in Sources */ = {isa = PBXBuildFile; fileRef = 999C11E9F0B6529BC62034D8CCC9BC0B /* FIRInstallationsLogger.m */; }; - F4640C0CE6B316988B18BF1105985E43 /* BSGSerialization.m in Sources */ = {isa = PBXBuildFile; fileRef = A181FA94ADBBC86FBED598FD2D61AE64 /* BSGSerialization.m */; }; - F481E164606508264C13898ADAAAE788 /* RCTScrollContentViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 1588E29142F3C2B86991D3641C9D3BF9 /* RCTScrollContentViewManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + F4640C0CE6B316988B18BF1105985E43 /* BSGSerialization.m in Sources */ = {isa = PBXBuildFile; fileRef = 8B24221EA56FB96FD49E83E221AFA2F1 /* BSGSerialization.m */; }; + F481E164606508264C13898ADAAAE788 /* RCTScrollContentViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 6BBA3D75201AD135E3C4F124CBA41DC5 /* RCTScrollContentViewManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; F49F1B5A4B1DA201D133771E9923D648 /* webp_dec.c in Sources */ = {isa = PBXBuildFile; fileRef = 8D7029D8FB8076E86500FDD8484FDDD4 /* webp_dec.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; F4F2AD90553CB120BC682940433493B8 /* lossless.h in Headers */ = {isa = PBXBuildFile; fileRef = DB4059D2FB364A28E6585D247CD47FBA /* lossless.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F4F36A29C561D301C91A59338D5E8744 /* RCTKeyboardObserver.m in Sources */ = {isa = PBXBuildFile; fileRef = 26AC45CC78CD938F00939C83FC147E78 /* RCTKeyboardObserver.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - F5100582E3FCC4BD8A1031EFC2E7CF14 /* RCTRedBox.h in Headers */ = {isa = PBXBuildFile; fileRef = 99F77BD252D247427D31DDA50F27E380 /* RCTRedBox.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F515A6E7B426BDEB13B544686F7E09B5 /* REABezierNode.m in Sources */ = {isa = PBXBuildFile; fileRef = DF787BB1E0CEBEA2B848F9F26475F952 /* REABezierNode.m */; }; - F518CDF6FC7F5085F4C33D36E71E6B35 /* RNCAppearance.h in Headers */ = {isa = PBXBuildFile; fileRef = DB7B6FD6C6EE0BC4DD555D925F90B5B2 /* RNCAppearance.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F4F36A29C561D301C91A59338D5E8744 /* RCTKeyboardObserver.m in Sources */ = {isa = PBXBuildFile; fileRef = AB27674CF19F3B5D1FA2D0A9D0E2C2EB /* RCTKeyboardObserver.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + F5100582E3FCC4BD8A1031EFC2E7CF14 /* RCTRedBox.h in Headers */ = {isa = PBXBuildFile; fileRef = C8C16F60CB9E4A0670E5368528E1F528 /* RCTRedBox.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F515A6E7B426BDEB13B544686F7E09B5 /* REABezierNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 8B7F43DC4EC1B6258DBD40E20BEBD0FB /* REABezierNode.m */; }; + F518CDF6FC7F5085F4C33D36E71E6B35 /* RNCAppearance.h in Headers */ = {isa = PBXBuildFile; fileRef = 90C3DF9E7E4D01932B8AD30654D97DC9 /* RNCAppearance.h */; settings = {ATTRIBUTES = (Project, ); }; }; F526E360D7A60F00F7F67F7885804263 /* UIImage+ForceDecode.m in Sources */ = {isa = PBXBuildFile; fileRef = B101A21C2A5287012254B056CFA7D4FC /* UIImage+ForceDecode.m */; }; F555F8C238747A97FF295FA277B84567 /* lossless_common.h in Headers */ = {isa = PBXBuildFile; fileRef = 21BBC4149E367B15994D55B0BE6395A3 /* lossless_common.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F567ADBF1B3738DBB51490CA6B7CE24E /* QBImagePickerController.m in Sources */ = {isa = PBXBuildFile; fileRef = FB565D9230FBB70EF16DA17614C71573 /* QBImagePickerController.m */; }; + F567ADBF1B3738DBB51490CA6B7CE24E /* QBImagePickerController.m in Sources */ = {isa = PBXBuildFile; fileRef = DBF29F8652A0F7C37431977C2120739C /* QBImagePickerController.m */; }; F56B25509F8FD04924C91D993984B005 /* Conv.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 54EB650E96F37C37F0F35851F8C12BA6 /* Conv.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - F588489733C335360B5422279F3C2969 /* RCTFileReaderModule.h in Headers */ = {isa = PBXBuildFile; fileRef = F966A458B3DFDF329C77F7E229FEE857 /* RCTFileReaderModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F595927E48BC68499910B400D64A825A /* ARTShape.m in Sources */ = {isa = PBXBuildFile; fileRef = D48BCF842FABD776150BAA9BB4A4E2EB /* ARTShape.m */; }; + F588489733C335360B5422279F3C2969 /* RCTFileReaderModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 278900E30B4F04A0B121A968574F5891 /* RCTFileReaderModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F595927E48BC68499910B400D64A825A /* ARTShape.m in Sources */ = {isa = PBXBuildFile; fileRef = B407A36592542744447C716CC5A491A1 /* ARTShape.m */; }; F59622D0F09DEF59155C8969D1B74946 /* FIRInstanceIDCheckinPreferences+Internal.m in Sources */ = {isa = PBXBuildFile; fileRef = 4CC3251FDA9E9F879B68C261CF445809 /* FIRInstanceIDCheckinPreferences+Internal.m */; }; F5D27F49E8DEC09ED4DF62A5F2975463 /* diy-fp.cc in Sources */ = {isa = PBXBuildFile; fileRef = 842C1C29367F774BD441F53EB6BD4437 /* diy-fp.cc */; settings = {COMPILER_FLAGS = "-Wno-unreachable-code"; }; }; - F60DB066439D039A0455DFA72FCFD83F /* QBVideoIconView.h in Headers */ = {isa = PBXBuildFile; fileRef = 872254C84ED3127FF36A116DEDBF725E /* QBVideoIconView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F6730E7A3A36F244F62EB6480A1E6304 /* RAMBundleRegistry.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 170DF0FE02A38ECB274A62518B1AD171 /* RAMBundleRegistry.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + F60DB066439D039A0455DFA72FCFD83F /* QBVideoIconView.h in Headers */ = {isa = PBXBuildFile; fileRef = C1B4EAEDBB4470CFCF598E6FF7CC4917 /* QBVideoIconView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F6730E7A3A36F244F62EB6480A1E6304 /* RAMBundleRegistry.cpp in Sources */ = {isa = PBXBuildFile; fileRef = CD8FA610ED442EF54B7A3621701720A2 /* RAMBundleRegistry.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; F678D6DF5474A127E8A5C548654BDE5C /* UIImage+ExtendedCacheData.h in Headers */ = {isa = PBXBuildFile; fileRef = 108BA2E99330882B915006784045B5A9 /* UIImage+ExtendedCacheData.h */; settings = {ATTRIBUTES = (Project, ); }; }; F6835F579A7F608E9D9DF7936BD0B6E5 /* cct.nanopb.h in Headers */ = {isa = PBXBuildFile; fileRef = 3EE448D03DC1030CB1623347E60A913A /* cct.nanopb.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F69EE9565EC9739DCBEAECC9B2096D35 /* RCTCxxConvert.m in Sources */ = {isa = PBXBuildFile; fileRef = AA1C1618390AB5F98AF7B16B1E54B315 /* RCTCxxConvert.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - F6B89787B48EB4A234BBEAD9D7FD761A /* RCTRefreshControl.h in Headers */ = {isa = PBXBuildFile; fileRef = 7FF5C0A072427E893DB4DACA1CDD0F75 /* RCTRefreshControl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F7305542A490B6F40F96281B25C15D50 /* RCTMultilineTextInputViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 402D285E9F45B171CBAC43E39897E804 /* RCTMultilineTextInputViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F69EE9565EC9739DCBEAECC9B2096D35 /* RCTCxxConvert.m in Sources */ = {isa = PBXBuildFile; fileRef = 5725F510340E6E5521BD629DAAF432D4 /* RCTCxxConvert.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + F6B89787B48EB4A234BBEAD9D7FD761A /* RCTRefreshControl.h in Headers */ = {isa = PBXBuildFile; fileRef = C40B0C283E831817424B0AF9D4F03144 /* RCTRefreshControl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F7305542A490B6F40F96281B25C15D50 /* RCTMultilineTextInputViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 2193A9C6C7D6978D5F7970B023F4A848 /* RCTMultilineTextInputViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; F75DC605FC8D1F7681541CE667AB7CB4 /* huffman_encode_utils.h in Headers */ = {isa = PBXBuildFile; fileRef = 102D559173B1A82E75F05608FC7771F9 /* huffman_encode_utils.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F7957488A7E05B294D0FDCB86F08DE8B /* react-native-slider-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 9895EB822CA5AB1EAD8CDC90429ECE7E /* react-native-slider-dummy.m */; }; + F7957488A7E05B294D0FDCB86F08DE8B /* react-native-slider-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = C61A9F8D5C26666E41D69DCEBF3BFA66 /* react-native-slider-dummy.m */; }; F7AA02141B7C9712F22D1023EE2FA272 /* syntax_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = E5BFD2113CD9F64E3ED9DA735B433731 /* syntax_enc.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - F7B792DEEF85A28A3315F3307DCB1A9E /* LNInterpolation.h in Headers */ = {isa = PBXBuildFile; fileRef = D4C71B8344FFCEFC6D32F754AFED7707 /* LNInterpolation.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F7B792DEEF85A28A3315F3307DCB1A9E /* LNInterpolation.h in Headers */ = {isa = PBXBuildFile; fileRef = BA5E09EEA2D2D61AA67D8D74BE2AE978 /* LNInterpolation.h */; settings = {ATTRIBUTES = (Project, ); }; }; F7B8AA8AD5C283D228877B2FC07E7E98 /* SDDeviceHelper.m in Sources */ = {isa = PBXBuildFile; fileRef = CAB97B058E412E0CFCBF16E6AD07DCA2 /* SDDeviceHelper.m */; }; - F7EDF44CF901CFAE15E5A31C4B31A19C /* RCTWrapperViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = CFC83A96B783E6971A1EEEA7708B461F /* RCTWrapperViewController.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F7FC446C7B196854DA9D5F0CCB37460B /* RCTTextTransform.h in Headers */ = {isa = PBXBuildFile; fileRef = 426288AB110806D17A16FCF95DFA9E6B /* RCTTextTransform.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F80534B97F3B0762396355EE60A3D145 /* RCTScrollContentViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = CD17BCF75ACA06CD42D42089C2076038 /* RCTScrollContentViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F81E2DFA7E076498AEFA487459C13FCF /* EXRemoteNotificationRequester.h in Headers */ = {isa = PBXBuildFile; fileRef = E3EB5DAB41CAF0439260853166710052 /* EXRemoteNotificationRequester.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F831BA67263E221FBA278D7508C1607C /* RCTTextShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = CA9C45BB0012BF09029A9FB62FCE5839 /* RCTTextShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F7EDF44CF901CFAE15E5A31C4B31A19C /* RCTWrapperViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = 6106000F1195C8E92D7251F41019B12F /* RCTWrapperViewController.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F7FC446C7B196854DA9D5F0CCB37460B /* RCTTextTransform.h in Headers */ = {isa = PBXBuildFile; fileRef = F3D1BC74B7F81B3373570366D060B42D /* RCTTextTransform.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F80534B97F3B0762396355EE60A3D145 /* RCTScrollContentViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 7A203F197885C11C5848610C607A893E /* RCTScrollContentViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F81E2DFA7E076498AEFA487459C13FCF /* EXRemoteNotificationRequester.h in Headers */ = {isa = PBXBuildFile; fileRef = EBE7845CC81A62FBAF26BEC2950AAA5A /* EXRemoteNotificationRequester.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F831BA67263E221FBA278D7508C1607C /* RCTTextShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = 5CFF31790601FBE2A0771E7E1C5AE8CA /* RCTTextShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; F83D6DC16A3DDE2C67D8E9F41EF111A9 /* yuv_mips32.c in Sources */ = {isa = PBXBuildFile; fileRef = FF92B16CAA4A7AFB4FC58207B113E26A /* yuv_mips32.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - F87498071918FC238AE4EC261728F5A8 /* RCTCxxUtils.mm in Sources */ = {isa = PBXBuildFile; fileRef = 61AF358A0DA0DBA787A15264884C5C91 /* RCTCxxUtils.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - F891A17F467C8B71420B0B6FC1B505FD /* RCTSurface.h in Headers */ = {isa = PBXBuildFile; fileRef = C33B7E4EEE4FDF245A3128E2528B2C43 /* RCTSurface.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F87498071918FC238AE4EC261728F5A8 /* RCTCxxUtils.mm in Sources */ = {isa = PBXBuildFile; fileRef = D1C4C7B631E523D59084AD135A2BFFBD /* RCTCxxUtils.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + F891A17F467C8B71420B0B6FC1B505FD /* RCTSurface.h in Headers */ = {isa = PBXBuildFile; fileRef = B5F705E47FB22AF244B0CE93D1183E6A /* RCTSurface.h */; settings = {ATTRIBUTES = (Project, ); }; }; F8F23B650278EC92BD4E1D20F5F3084F /* FIRInstanceIDCheckinService.h in Headers */ = {isa = PBXBuildFile; fileRef = CF993D633A32BC1ADCF4B996EA47AB13 /* FIRInstanceIDCheckinService.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F933C60C18D983D25A94CD31A49C9954 /* RCTProfileTrampoline-arm.S in Sources */ = {isa = PBXBuildFile; fileRef = BC5E26A6F9DFFD3F9E3E2E7D4D7CB197 /* RCTProfileTrampoline-arm.S */; }; - F94498F57D718CB7AC71CD5A40393BD6 /* RCTPackagerConnection.mm in Sources */ = {isa = PBXBuildFile; fileRef = 519DCCFFAE92D0CAF9F4D2D373BFF0AD /* RCTPackagerConnection.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - F99C6EF148A5F929C6714A10414821BB /* react-native-jitsi-meet-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = D2343C88DB7EFD216839F145E2680F52 /* react-native-jitsi-meet-dummy.m */; }; + F933C60C18D983D25A94CD31A49C9954 /* RCTProfileTrampoline-arm.S in Sources */ = {isa = PBXBuildFile; fileRef = 5333920C6146873D53E49C793CEA566B /* RCTProfileTrampoline-arm.S */; }; + F94498F57D718CB7AC71CD5A40393BD6 /* RCTPackagerConnection.mm in Sources */ = {isa = PBXBuildFile; fileRef = BCF63C72351343394CB1C3C17ED0D3A6 /* RCTPackagerConnection.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + F99C6EF148A5F929C6714A10414821BB /* react-native-jitsi-meet-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = D4C4F7CDE8BD004BD46B396CCD9D8234 /* react-native-jitsi-meet-dummy.m */; }; FA0980CF93ACFCE4817D2934112E098E /* ColdClass.cpp in Sources */ = {isa = PBXBuildFile; fileRef = DC3FBA3E5B2AE0036A215BD1C8E37D31 /* ColdClass.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; FA14342E79B4712BB89BFD6F442A6A64 /* enc_msa.c in Sources */ = {isa = PBXBuildFile; fileRef = 782DC576EA301487BA3AFF6CDF22C7F0 /* enc_msa.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - FA261EF55BDA4678D08512DF89105B12 /* RNSScreenStackHeaderConfig.h in Headers */ = {isa = PBXBuildFile; fileRef = 742AD571C5BE761827EEF22146A46463 /* RNSScreenStackHeaderConfig.h */; settings = {ATTRIBUTES = (Project, ); }; }; - FA41B3CEA87D34E244EA46A8F06EBCD1 /* BannerComponent.m in Sources */ = {isa = PBXBuildFile; fileRef = 2A4286B118C0A4F278E88C5D7372FF87 /* BannerComponent.m */; }; - FA44144AF28DD8451DD209C556DCD1BF /* RCTTouchHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = E522C571C9FA1AB0EC653F2405CE1CFB /* RCTTouchHandler.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - FA6CDEB2A292F61C8FA52F4239629B79 /* RNVectorIconsManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 61E87445627B4C5F78DF1D88E468050C /* RNVectorIconsManager.m */; }; - FAA84D230376CBFEFBC366FE93E11B41 /* RCTFollyConvert.h in Headers */ = {isa = PBXBuildFile; fileRef = 2F800695D27FA1FC622EE957138F69CB /* RCTFollyConvert.h */; settings = {ATTRIBUTES = (Project, ); }; }; - FB3F4050BDAAD6BDCFAEA8A02A706358 /* RCTBackedTextInputViewProtocol.h in Headers */ = {isa = PBXBuildFile; fileRef = 59EC4FEB968B020E0CD690A6DB3E868B /* RCTBackedTextInputViewProtocol.h */; settings = {ATTRIBUTES = (Project, ); }; }; - FB5F17821545A8F999EB39EDE058612B /* BSGOutOfMemoryWatchdog.h in Headers */ = {isa = PBXBuildFile; fileRef = 7295D565E10FC4EBE263B4FC70983CB5 /* BSGOutOfMemoryWatchdog.h */; settings = {ATTRIBUTES = (Project, ); }; }; + FA261EF55BDA4678D08512DF89105B12 /* RNSScreenStackHeaderConfig.h in Headers */ = {isa = PBXBuildFile; fileRef = 9D8B89DC3B0341D3E79D845CE3710EF9 /* RNSScreenStackHeaderConfig.h */; settings = {ATTRIBUTES = (Project, ); }; }; + FA41B3CEA87D34E244EA46A8F06EBCD1 /* BannerComponent.m in Sources */ = {isa = PBXBuildFile; fileRef = B01D54E09F5250811909DBD8839F9EED /* BannerComponent.m */; }; + FA44144AF28DD8451DD209C556DCD1BF /* RCTTouchHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = 72ADF40F856EAD8F2DB2F5F46F74402F /* RCTTouchHandler.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + FA6CDEB2A292F61C8FA52F4239629B79 /* RNVectorIconsManager.m in Sources */ = {isa = PBXBuildFile; fileRef = DA969159AFFB2BC5EF84D1109CA9F7B2 /* RNVectorIconsManager.m */; }; + FAA84D230376CBFEFBC366FE93E11B41 /* RCTFollyConvert.h in Headers */ = {isa = PBXBuildFile; fileRef = 56855D62431167073423C3E4343CCFEE /* RCTFollyConvert.h */; settings = {ATTRIBUTES = (Project, ); }; }; + FB3F4050BDAAD6BDCFAEA8A02A706358 /* RCTBackedTextInputViewProtocol.h in Headers */ = {isa = PBXBuildFile; fileRef = 53A2AE7C23FC2740216BDCD227CBFA4E /* RCTBackedTextInputViewProtocol.h */; settings = {ATTRIBUTES = (Project, ); }; }; + FB5F17821545A8F999EB39EDE058612B /* BSGOutOfMemoryWatchdog.h in Headers */ = {isa = PBXBuildFile; fileRef = 1BE069BE8C0674EF74ED966F92BA0754 /* BSGOutOfMemoryWatchdog.h */; settings = {ATTRIBUTES = (Project, ); }; }; FB622B6F25A8FB70B8156427BB2963BB /* FIRInstanceIDKeychain.h in Headers */ = {isa = PBXBuildFile; fileRef = 4D68CBDDD5A7D610F9E436686A07B74A /* FIRInstanceIDKeychain.h */; settings = {ATTRIBUTES = (Project, ); }; }; - FB82A5DA6674B7D813DE2686C03E2CC0 /* RCTScrollContentShadowView.m in Sources */ = {isa = PBXBuildFile; fileRef = 262331116A81D1C127DD7B434199B78B /* RCTScrollContentShadowView.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - FB8A58CBBA5D6FA69A71DD1E1075091C /* BSG_KSFileUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = 31E1FCAB5F0FDA1320E0B4D3E33C49B0 /* BSG_KSFileUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; - FB97B1AE771BD3BCB2E5A6D924D3A9F2 /* NSDataBigString.mm in Sources */ = {isa = PBXBuildFile; fileRef = AE31F865C9AEFEB1EBA0418010F744A5 /* NSDataBigString.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - FBA62BAE57B920681ECCC87E951DD37B /* RCTModalHostViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = C1B895501B807DB5044A955FE28FD5F4 /* RCTModalHostViewController.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + FB82A5DA6674B7D813DE2686C03E2CC0 /* RCTScrollContentShadowView.m in Sources */ = {isa = PBXBuildFile; fileRef = E4E583ABEBCC7E3F7B23B300229B4EC0 /* RCTScrollContentShadowView.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + FB8A58CBBA5D6FA69A71DD1E1075091C /* BSG_KSFileUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = A765350840F28DF7C2FED40DB55E60B3 /* BSG_KSFileUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; + FB97B1AE771BD3BCB2E5A6D924D3A9F2 /* NSDataBigString.mm in Sources */ = {isa = PBXBuildFile; fileRef = 232C03DC2BE946443283361738300A2B /* NSDataBigString.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + FBA62BAE57B920681ECCC87E951DD37B /* RCTModalHostViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 442E4964E9064855EF721A22F8638EA3 /* RCTModalHostViewController.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; FBBA7842602DADBDAE57A0FC05A97B85 /* FIRInstallationsAPIService.m in Sources */ = {isa = PBXBuildFile; fileRef = 4B019F88D183D8F0E9D8BF083F3699B1 /* FIRInstallationsAPIService.m */; }; FBED05764440E7FEF17C007B2437FB0D /* FIRVersion.m in Sources */ = {isa = PBXBuildFile; fileRef = FA6C315437C3214205593E74AB412E48 /* FIRVersion.m */; }; - FBFF630974B4E7F16EF2281009230DC5 /* RCTInspectorDevServerHelper.h in Headers */ = {isa = PBXBuildFile; fileRef = FB5467394A36479E9AF7DCDF070BFDDE /* RCTInspectorDevServerHelper.h */; settings = {ATTRIBUTES = (Project, ); }; }; - FC43075F446DDCBCB3BEF943699C2806 /* RCTImageBlurUtils.m in Sources */ = {isa = PBXBuildFile; fileRef = E8A5AB4D865A155C0D11F4883FCC7203 /* RCTImageBlurUtils.m */; }; + FBFF630974B4E7F16EF2281009230DC5 /* RCTInspectorDevServerHelper.h in Headers */ = {isa = PBXBuildFile; fileRef = 7AB72F5B5DA6225824815B0185F60C6A /* RCTInspectorDevServerHelper.h */; settings = {ATTRIBUTES = (Project, ); }; }; + FC43075F446DDCBCB3BEF943699C2806 /* RCTImageBlurUtils.m in Sources */ = {isa = PBXBuildFile; fileRef = 81AB4D42E5C4E42B829E5593C9F448A4 /* RCTImageBlurUtils.m */; }; FC775095597914294ABF7C56BF70052A /* FIRComponentContainer.m in Sources */ = {isa = PBXBuildFile; fileRef = 0723D9254A0FF8AAD5189C6A5CDB013B /* FIRComponentContainer.m */; }; - FC8C65A5DB73DEDB0A5DD8610959D4CF /* UMExportedModule.m in Sources */ = {isa = PBXBuildFile; fileRef = 528D7A41D5D2F7190F5379FB981B24D6 /* UMExportedModule.m */; }; + FC8C65A5DB73DEDB0A5DD8610959D4CF /* UMExportedModule.m in Sources */ = {isa = PBXBuildFile; fileRef = 1FF2034994B9970DB2BB5903D7BB1D55 /* UMExportedModule.m */; }; FC8EB7790089B59A9534F58C07FCF438 /* FIRInstanceIDDefines.h in Headers */ = {isa = PBXBuildFile; fileRef = EB3D678D3F78C857A36FCEE91C3A72E5 /* FIRInstanceIDDefines.h */; settings = {ATTRIBUTES = (Project, ); }; }; - FC98D260B0CFC32AFF56A78B6D25EEFA /* DeviceUID.h in Headers */ = {isa = PBXBuildFile; fileRef = E8C566F372C6D5B7D607F9E7D11F6E6A /* DeviceUID.h */; settings = {ATTRIBUTES = (Project, ); }; }; - FCA9B32C098008A8220242E8353046E7 /* JSBigString.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 45C8A2669B698784A22CF8108F1A3070 /* JSBigString.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - FCDC5F5AF807DB5781447F7EC845B581 /* RNDeviceInfo.m in Sources */ = {isa = PBXBuildFile; fileRef = 035B11053E82BAF8EC1FA090128DF97C /* RNDeviceInfo.m */; }; + FC98D260B0CFC32AFF56A78B6D25EEFA /* DeviceUID.h in Headers */ = {isa = PBXBuildFile; fileRef = A403286D4D96B05EFAD45095F78C0221 /* DeviceUID.h */; settings = {ATTRIBUTES = (Project, ); }; }; + FCA9B32C098008A8220242E8353046E7 /* JSBigString.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 636B320601CBCC8B89DD6E7ABD3608A2 /* JSBigString.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + FCDC5F5AF807DB5781447F7EC845B581 /* RNDeviceInfo.m in Sources */ = {isa = PBXBuildFile; fileRef = 0E26F64CB9F929CC0F3579A71B693C15 /* RNDeviceInfo.m */; }; FCFBF36506CE48E9AD3D878FCD18ED4F /* UIImage+GIF.m in Sources */ = {isa = PBXBuildFile; fileRef = 2BA675DA25C52E2FD5633ACE43240432 /* UIImage+GIF.m */; }; - FD4EFA8CC12FE490181AB0F8F45FEA83 /* Bugsnag.h in Headers */ = {isa = PBXBuildFile; fileRef = 2881EB958F33BA11F1D2DDFEE691173F /* Bugsnag.h */; settings = {ATTRIBUTES = (Project, ); }; }; - FD51669FC205662481C7CF2DA4AB6748 /* RCTSafeAreaViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = FD31D6B0CC2C718B128547ADD22A476E /* RCTSafeAreaViewManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - FD93A07171842B9645ABA0BDD9EC9721 /* BSG_KSBacktrace.h in Headers */ = {isa = PBXBuildFile; fileRef = F1ABB03CDC66CD9BCCD5B21E65525FE7 /* BSG_KSBacktrace.h */; settings = {ATTRIBUTES = (Project, ); }; }; + FD4EFA8CC12FE490181AB0F8F45FEA83 /* Bugsnag.h in Headers */ = {isa = PBXBuildFile; fileRef = 4BF281BE59CC7E587D8E86F93601EE42 /* Bugsnag.h */; settings = {ATTRIBUTES = (Project, ); }; }; + FD51669FC205662481C7CF2DA4AB6748 /* RCTSafeAreaViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = B501F1D0ED50C1D646B16A87F01C0EBB /* RCTSafeAreaViewManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + FD93A07171842B9645ABA0BDD9EC9721 /* BSG_KSBacktrace.h in Headers */ = {isa = PBXBuildFile; fileRef = D4A6B6B426B31D5630CDBA836D2FF9D8 /* BSG_KSBacktrace.h */; settings = {ATTRIBUTES = (Project, ); }; }; FDC1636FB7D672F02CDD074DD9B040E9 /* SDWebImageDownloaderOperation.m in Sources */ = {isa = PBXBuildFile; fileRef = 0ACF31EDEFE1E569CF6189573939269F /* SDWebImageDownloaderOperation.m */; }; FDD1A736761E6777D1D9DD0B5685900A /* SDWebImageCompat.m in Sources */ = {isa = PBXBuildFile; fileRef = 65985823BA9E59CD5D699B8553FBFC7A /* SDWebImageCompat.m */; }; - FE098B411C6CE6A74C722B985273AA07 /* experiments.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 705DD6F2C62BAB2F610B2260F24815BB /* experiments.cpp */; settings = {COMPILER_FLAGS = "-fno-omit-frame-pointer -fexceptions -Wall -Werror -std=c++1y -fPIC -fno-objc-arc"; }; }; + FE098B411C6CE6A74C722B985273AA07 /* experiments.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 43E2AD3911FF9A4E612FA46ED62FD35D /* experiments.cpp */; settings = {COMPILER_FLAGS = "-fno-omit-frame-pointer -fexceptions -Wall -Werror -std=c++1y -fPIC -fno-objc-arc"; }; }; FE2DAFC3D1DB1C90CAD82D4C6CDC4BCC /* ieee.h in Headers */ = {isa = PBXBuildFile; fileRef = F790E8CC5AC5310B53CA380DA817176B /* ieee.h */; settings = {ATTRIBUTES = (Project, ); }; }; - FE7D0BE1B4F581460DB11DCED18BCE1B /* RNCAssetsLibraryRequestHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 45D57EB4FEF19D3DB6A3492689D85F62 /* RNCAssetsLibraryRequestHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; - FE9C3D782258B259386212536AAD2830 /* ARTSolidColor.h in Headers */ = {isa = PBXBuildFile; fileRef = EDC2DEAE669904A4916FD97CBAF27024 /* ARTSolidColor.h */; settings = {ATTRIBUTES = (Project, ); }; }; + FE7D0BE1B4F581460DB11DCED18BCE1B /* RNCAssetsLibraryRequestHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 86CDD05F30692820EDC6E071CDB9C32E /* RNCAssetsLibraryRequestHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; + FE9C3D782258B259386212536AAD2830 /* ARTSolidColor.h in Headers */ = {isa = PBXBuildFile; fileRef = 5B8B3E648A51A11C0B8B859ED10DCE1A /* ARTSolidColor.h */; settings = {ATTRIBUTES = (Project, ); }; }; FEACA20561A5919D3F143BC299FE7D8D /* SDAsyncBlockOperation.h in Headers */ = {isa = PBXBuildFile; fileRef = F2659EE472B6D6569574FAB9D3BCFB98 /* SDAsyncBlockOperation.h */; settings = {ATTRIBUTES = (Project, ); }; }; FEE81DDBC8EE950322B4DFBC3C91A8F5 /* FIRDependency.h in Headers */ = {isa = PBXBuildFile; fileRef = 19F7DAA1BD0C331F0062BBC640DBC35E /* FIRDependency.h */; settings = {ATTRIBUTES = (Project, ); }; }; FEEE952E4702DBF6900E7A327CF08AE9 /* FBLPromise+Retry.m in Sources */ = {isa = PBXBuildFile; fileRef = BA065BF226D7D8BE5F672D1B12FD2519 /* FBLPromise+Retry.m */; }; - FF217BF4F60D6ABBE53FF634B951F784 /* FFFastImageSource.h in Headers */ = {isa = PBXBuildFile; fileRef = BE6C4F2B842D7B2F900C5C9944803F21 /* FFFastImageSource.h */; settings = {ATTRIBUTES = (Project, ); }; }; + FF217BF4F60D6ABBE53FF634B951F784 /* FFFastImageSource.h in Headers */ = {isa = PBXBuildFile; fileRef = EC1550B0F63A62DE773EA96F1165E48F /* FFFastImageSource.h */; settings = {ATTRIBUTES = (Project, ); }; }; FF25A72AFBFDD3B1F8A677B56EE3F6C6 /* rescaler_sse2.c in Sources */ = {isa = PBXBuildFile; fileRef = D74BB20E1BC0B778FF8CFFA36C0840CF /* rescaler_sse2.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - FF60B7B41824DC680D901D24F8DB2F78 /* EXFileSystemLocalFileHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = C00F34ABBF4138E80C776A8D4EBAB47F /* EXFileSystemLocalFileHandler.m */; }; - FF7C6B581125343FB5108C6A39FCBFFB /* QBAlbumCell.h in Headers */ = {isa = PBXBuildFile; fileRef = A157050EDC841EA67391B48FD12EDD06 /* QBAlbumCell.h */; settings = {ATTRIBUTES = (Project, ); }; }; + FF60B7B41824DC680D901D24F8DB2F78 /* EXFileSystemLocalFileHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = 176196C60786A12681D53DE0574DA35E /* EXFileSystemLocalFileHandler.m */; }; + FF7C6B581125343FB5108C6A39FCBFFB /* QBAlbumCell.h in Headers */ = {isa = PBXBuildFile; fileRef = A081C2890E864E3504B3B4552B972C53 /* QBAlbumCell.h */; settings = {ATTRIBUTES = (Project, ); }; }; FF825C5AA742FABD882CD741329E55CF /* FIRInstallationsErrorUtil.m in Sources */ = {isa = PBXBuildFile; fileRef = FC39B30F26E84F6B31EE5DC99AA7A735 /* FIRInstallationsErrorUtil.m */; }; FF8366ADAE423B2AFB5753C39F314128 /* alpha_processing_sse41.c in Sources */ = {isa = PBXBuildFile; fileRef = C9483040D5F6D422F682396B87AF87D3 /* alpha_processing_sse41.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; FFC03B7D8F37AE0403024D9BD66DB19C /* vp8li_dec.h in Headers */ = {isa = PBXBuildFile; fileRef = 0AF863C6208094AACCEA61A2F59700AB /* vp8li_dec.h */; settings = {ATTRIBUTES = (Project, ); }; }; /* End PBXBuildFile section */ /* Begin PBXContainerItemProxy section */ - 002F11152DAC54A5AB546642A6306B05 /* PBXContainerItemProxy */ = { + 008FB5B36DC74273BD3314D7C7E79488 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 651511D7DA7F07F9FC9AA40A2E86270D; - remoteInfo = "React-RCTNetwork"; - }; - 003C6072B32816DF856D49A2918126D0 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 0BB7745637E0758DEA373456197090C6; - remoteInfo = RNFastImage; + remoteGlobalIDString = 8D18C49071FC5370C25F5758A85BA5F6; + remoteInfo = "react-native-webview"; }; 013C8C712E31279FB89EBADB1C1A4BC4 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -2167,12 +2121,26 @@ remoteGlobalIDString = 2644525CCE081E967809A8163D893A93; remoteInfo = UMFileSystemInterface; }; - 01C138DAE9308D4C8DFAFB9B5120FC68 /* PBXContainerItemProxy */ = { + 015B2F6C78A5F0D66618D332D5DA1DF2 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = FA877ADC442CB19CF61793D234C8B131; - remoteInfo = "React-jsi"; + remoteGlobalIDString = 11989A5E568B3B69655EE0C13DCDA3F9; + remoteInfo = "React-RCTActionSheet"; + }; + 01B77193206C04C06857999BA4407A7D /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 1092C13E1E1172209537C28D0C8D4D3C; + remoteInfo = "react-native-orientation-locker"; + }; + 03FCB8C1251A9D7511F30C8F4A79548E /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 9E25537BF40D1A3B30CF43FD3E6ACD94; + remoteInfo = FirebaseInstanceID; }; 040622B4EF3FFAC25FCB8BED372F45F5 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -2188,6 +2156,13 @@ remoteGlobalIDString = FA877ADC442CB19CF61793D234C8B131; remoteInfo = "React-jsi"; }; + 052FEAFAFEF4D9A1432CA87180811898 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = A4EF87F5681665EAE943D9B06BBB17DF; + remoteInfo = "react-native-slider"; + }; 05C70C130BBF2D57D3A41CA7A93B606B /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -2195,12 +2170,33 @@ remoteGlobalIDString = 53D121F9F9BB0F8AC1C94A12C5A8572F; remoteInfo = "React-RCTVibration"; }; - 094D78337A237D8AFA1C929DF4C4AD4C /* PBXContainerItemProxy */ = { + 068353C1562714EBA50264C3B2FF4D0F /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 95D98F901D07557EF7CA38D3F03832C5; - remoteInfo = "React-RCTBlob"; + remoteGlobalIDString = 5B40FBDAD0AB75D17C4760F4054BFF71; + remoteInfo = JitsiMeetSDK; + }; + 06F79E3A6119EFF6D5E7608EDD992E77 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 97C4DE84FA3CC4EC06AA6D8C249949B7; + remoteInfo = UMImageLoaderInterface; + }; + 076D83F8FA8D4840C59BD7FFC4A63D3F /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 47D2E85A78C25869BB13521D8561A638; + remoteInfo = libwebp; + }; + 0988A2E1610BEFDB9DC86C4B8A24ABFC /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 0BB7745637E0758DEA373456197090C6; + remoteInfo = RNFastImage; }; 0A0B4D127A91E77DB469579CC4FF0F57 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -2209,26 +2205,12 @@ remoteGlobalIDString = 463F41A7E8B252F8AC5024DA1F4AF6DA; remoteInfo = "React-cxxreact"; }; - 0D72DA10AB0ED381A9812B74F170AE20 /* PBXContainerItemProxy */ = { + 0C6A7A4CE6E0D9523A36E766937BFD3E /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 18B56DB36E1F066C927E49DBAE590128; - remoteInfo = RNRootView; - }; - 0E1C16F4E3A137D14E1F89BD02C57C60 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = D39AB631E8050865DE01F6D5678797D2; - remoteInfo = "react-native-jitsi-meet"; - }; - 0E3C3BC78F840ADF4CEC4B7189DC52A8 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 50188AAB5FAECCA9583327DBA2B0AF2B; - remoteInfo = UMTaskManagerInterface; + remoteGlobalIDString = C49E7A4D59E5C8BE8DE9FB1EFB150185; + remoteInfo = FirebaseAnalytics; }; 0ECB4C54EED84F5258E41AFD4657F11F /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -2237,6 +2219,20 @@ remoteGlobalIDString = 4402AFF83DBDC4DD07E198685FDC2DF2; remoteInfo = FirebaseCore; }; + 0FA64369FA900DF12872EED9406B852D /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 4D67CFB913D9C3BE37252D50364CD990; + remoteInfo = RNUserDefaults; + }; + 0FADFFDF5CAB5F0BEBBFA811B89A6292 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = B53D977A951AFC38B21751B706C1DF83; + remoteInfo = GoogleAppMeasurement; + }; 0FBA34E2E29F880F6473E91F3C51B883 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -2258,19 +2254,12 @@ remoteGlobalIDString = DBCB1B4965863DDD3B9DED9A0918A526; remoteInfo = UMCore; }; - 1213E1079041D724D145944B5C97C2C9 /* PBXContainerItemProxy */ = { + 122F99F5F9F915D49E41B1A033018831 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 2B25F90D819B9ADF2AF2D8733A890333; - remoteInfo = Yoga; - }; - 133D594A22DDEB1E27602AD28E0968FA /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = ABB048B191245233986A7CD75FE412A5; - remoteInfo = Fabric; + remoteGlobalIDString = 11989A5E568B3B69655EE0C13DCDA3F9; + remoteInfo = "React-RCTActionSheet"; }; 13791CBAE3B4CCAF1FC636BA2BBD9DE4 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -2279,6 +2268,13 @@ remoteGlobalIDString = 9668C19AA6D8EA320F83875FA286855A; remoteInfo = UMConstantsInterface; }; + 13C470343FF45FA58CCDC6362F1CCC54 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 2AB2EF542954AB1C999E03BFEF8DE806; + remoteInfo = DoubleConversion; + }; 13EF1229647EEDD20E086226A26C9EA6 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -2286,26 +2282,40 @@ remoteGlobalIDString = B6D5DD49633DFF0657B8C3F08EB3ABA9; remoteInfo = ReactCommon; }; - 14C1050B6E10B730B1E3CDC42355E70B /* PBXContainerItemProxy */ = { + 143D2B1BBF6BA4C8CC56964A5D346D77 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = D760AF58E12ABBB51F84160FB02B5F39; - remoteInfo = RNDateTimePicker; + remoteGlobalIDString = 807428FE76D80865C9F59F3502600E89; + remoteInfo = RNDeviceInfo; }; - 159655B6633E7BFA5BBA16EFFBF485E6 /* PBXContainerItemProxy */ = { + 152B979403916FE8BD98A65D59176B67 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 5B40FBDAD0AB75D17C4760F4054BFF71; - remoteInfo = JitsiMeetSDK; + remoteGlobalIDString = 3847153A6E5EEFB86565BA840768F429; + remoteInfo = SDWebImage; }; - 1597FDBD207880AD319B0170A0DF9223 /* PBXContainerItemProxy */ = { + 16B387DEA9478600F928A4B9F8602EA2 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = FF879E718031128A75E7DE54046E6219; - remoteInfo = RNReanimated; + remoteGlobalIDString = 1BEE828C124E6416179B904A9F66D794; + remoteInfo = React; + }; + 16C42A06E1046107B4F43257B6F33149 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 5C0371EE948D0357B8EE0E34ABB44BF0; + remoteInfo = GoogleDataTransport; + }; + 16EE8CD1FF8341FC05401B1FFB50FAAE /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = BA3F5E5AA483B263B69601DE2FA269CB; + remoteInfo = "react-native-cameraroll"; }; 17299B3B10FACA862736181ECC44D9A8 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -2314,6 +2324,27 @@ remoteGlobalIDString = F7845084F0CF03F54107EEF7411760AD; remoteInfo = UMPermissionsInterface; }; + 1741E0D43C15D60725F6E05F11459200 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 2AB2EF542954AB1C999E03BFEF8DE806; + remoteInfo = DoubleConversion; + }; + 1803D02D6EBBEDD9C5C815D52B61832B /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 3FF2E78BB54ED67CA7FAD8DA2590DBEE; + remoteInfo = "react-native-appearance"; + }; + 1822F9898C730B3B094F19ECDEFD7E16 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 9EB556EE511D43F3D5D7AAF51D8D0397; + remoteInfo = EXWebBrowser; + }; 185B11EB8A27612A9B75BAA1ACDFBF0A /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -2321,27 +2352,13 @@ remoteGlobalIDString = 7ACAA9BE580DD31A5CB9D97C45D9492D; remoteInfo = "React-Core"; }; - 1AEB4411A9035D6ED84E905B7D1597C8 /* PBXContainerItemProxy */ = { + 1C2886056CB8EA5481514A05AF6A1714 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; remoteGlobalIDString = 0D82774D2A533D3FFAE27CAB4A6E9CB2; remoteInfo = RNImageCropPicker; }; - 1B400C8AABADEBA8DB6AC808CA45959D /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = C3496D0495E700CF08A90C41EA8FA4BB; - remoteInfo = FBReactNativeSpec; - }; - 1C6DC1C1058EF640FC40212D68BE0824 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = B9E8F4CA2A4A8599389FEB665A9B96FF; - remoteInfo = RNGestureHandler; - }; 1C84D35F43BF9C71C2EEE3812CDC5C8D /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -2349,12 +2366,26 @@ remoteGlobalIDString = 7ACAA9BE580DD31A5CB9D97C45D9492D; remoteInfo = "React-Core"; }; - 1FCA946B27B6E929F7CE70DEBEAA4451 /* PBXContainerItemProxy */ = { + 1CC7546D5B1DC852B4126024429C7F04 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = D760AF58E12ABBB51F84160FB02B5F39; - remoteInfo = RNDateTimePicker; + remoteGlobalIDString = 4F265533AAB7C8985856EC78A33164BB; + remoteInfo = "React-RCTImage"; + }; + 1DBBD57E2DC2173DE990C511170E7A1F /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 3847153A6E5EEFB86565BA840768F429; + remoteInfo = SDWebImage; + }; + 1DD6CB440881D577B587931B24422A18 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = F4F25FCAC51B51FD5F986EB939BF1F87; + remoteInfo = GoogleDataTransportCCTSupport; }; 201C6A1323C6921817533893269BBE9D /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -2363,19 +2394,12 @@ remoteGlobalIDString = A4F685BE3CAC127BDCE4E0DBBD88D191; remoteInfo = Folly; }; - 20B92A88F1B116DBFBCDF2455FA06536 /* PBXContainerItemProxy */ = { + 20BFBCC22895EDD0B30D7159E3E8D0AE /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 1092C13E1E1172209537C28D0C8D4D3C; - remoteInfo = "react-native-orientation-locker"; - }; - 20D8BADF87D65B80F0D5F73214DA5CE0 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = A4EF87F5681665EAE943D9B06BBB17DF; - remoteInfo = "react-native-slider"; + remoteGlobalIDString = C3496D0495E700CF08A90C41EA8FA4BB; + remoteInfo = FBReactNativeSpec; }; 21B7FFD1A14C9DCA797642821E09A7B1 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -2384,6 +2408,13 @@ remoteGlobalIDString = 1BEE828C124E6416179B904A9F66D794; remoteInfo = React; }; + 223C6322CACF04F2A895A726EB898C0D /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 620E05868772C10B4920DC7E324F2C87; + remoteInfo = FirebaseCoreDiagnostics; + }; 2284921B4FC397971FFFACC555D01A18 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -2391,19 +2422,12 @@ remoteGlobalIDString = DBCB1B4965863DDD3B9DED9A0918A526; remoteInfo = UMCore; }; - 22DC114D00B745F5827339582B6BD554 /* PBXContainerItemProxy */ = { + 23217AC10C3312C10CBE1EC9408D5D35 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = FF879E718031128A75E7DE54046E6219; - remoteInfo = RNReanimated; - }; - 23AE9A60EED8C7BF431D3BB2632650DE /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 3FF2E78BB54ED67CA7FAD8DA2590DBEE; - remoteInfo = "react-native-appearance"; + remoteGlobalIDString = B9E8F4CA2A4A8599389FEB665A9B96FF; + remoteInfo = RNGestureHandler; }; 243E1224598243CE0CCEE4E8D1F2D091 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -2412,20 +2436,6 @@ remoteGlobalIDString = 7ACAA9BE580DD31A5CB9D97C45D9492D; remoteInfo = "React-Core"; }; - 247594DBB227582E86B1E2CE0BE79240 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 2AD4F40E67E1874A0816F6B34289EB41; - remoteInfo = UMFaceDetectorInterface; - }; - 24ECD6530E1065994B33CD8D26C923A8 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = C49E7A4D59E5C8BE8DE9FB1EFB150185; - remoteInfo = FirebaseAnalytics; - }; 2539C386890D7883A108FF4E3829524A /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -2433,6 +2443,13 @@ remoteGlobalIDString = 1BEE828C124E6416179B904A9F66D794; remoteInfo = React; }; + 255AD7ED8EAC20EAB447FE3D60AA59E8 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 5EB4B0B6DA6D5C0C3365733BEAA1C485; + remoteInfo = FirebaseCoreDiagnosticsInterop; + }; 273EEB006344CBC3B742234147B60471 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -2440,26 +2457,12 @@ remoteGlobalIDString = 2AB2EF542954AB1C999E03BFEF8DE806; remoteInfo = DoubleConversion; }; - 27A2D8CCFE0F04007A9D8C5DB62DE74E /* PBXContainerItemProxy */ = { + 295B622A4FB54D9844C4CB3BE1EAD43B /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = E16E206437995280D349D4B67695C894; - remoteInfo = "React-CoreModules"; - }; - 28345E2B9D5AE6182C187C36BFCD43D2 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = DA0709CAAD589C6E7963495210438021; - remoteInfo = "React-jsiexecutor"; - }; - 28F9804E6897EFF716A616D1A3A12B57 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 214E42634D1E187D876346D36184B655; - remoteInfo = RNScreens; + remoteGlobalIDString = 9668C19AA6D8EA320F83875FA286855A; + remoteInfo = UMConstantsInterface; }; 2AB4E316E2673B76ACA537189D619922 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -2468,12 +2471,19 @@ remoteGlobalIDString = 1BEE828C124E6416179B904A9F66D794; remoteInfo = React; }; - 2BA214B3E71E1548F7973E8FB6A3F7EF /* PBXContainerItemProxy */ = { + 2B204F3091E2412E593809249842E7B6 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = C3496D0495E700CF08A90C41EA8FA4BB; - remoteInfo = FBReactNativeSpec; + remoteGlobalIDString = 5B40FBDAD0AB75D17C4760F4054BFF71; + remoteInfo = JitsiMeetSDK; + }; + 2B7CDA5783879A5CEC4D7E8C647BE89E /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = FA877ADC442CB19CF61793D234C8B131; + remoteInfo = "React-jsi"; }; 2BA87C80F636B0480FC09D41CB82927A /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -2482,6 +2492,13 @@ remoteGlobalIDString = 1BEE828C124E6416179B904A9F66D794; remoteInfo = React; }; + 2C6A851A2CF208C2ACCB512D7F669BC5 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = DA0709CAAD589C6E7963495210438021; + remoteInfo = "React-jsiexecutor"; + }; 2C95DFFCB2EC326C56D43774DED19805 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -2489,33 +2506,26 @@ remoteGlobalIDString = E7E7CE52C8C68B17224FF8C262D80ABF; remoteInfo = RCTRequired; }; - 2D5BB50AD0409BEF8A6E1541678A2447 /* PBXContainerItemProxy */ = { + 2EEFD87B9202F26E10FB94B68B5BCD46 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 95D98F901D07557EF7CA38D3F03832C5; - remoteInfo = "React-RCTBlob"; + remoteGlobalIDString = 8D7F5D5DD528D21A72DC87ADA5B12E2D; + remoteInfo = GoogleUtilities; }; - 2DE1D45682141FAE11D6CBCBB6B1905E /* PBXContainerItemProxy */ = { + 305431159BAB7B60191FF052302F59D8 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 9E25537BF40D1A3B30CF43FD3E6ACD94; - remoteInfo = FirebaseInstanceID; + remoteGlobalIDString = A4EF87F5681665EAE943D9B06BBB17DF; + remoteInfo = "react-native-slider"; }; - 2E991DF87377D5C61D56880E5E37FDCF /* PBXContainerItemProxy */ = { + 31E03A2751BE2E61792C4FBB242A49BF /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 0D82774D2A533D3FFAE27CAB4A6E9CB2; - remoteInfo = RNImageCropPicker; - }; - 3108F816E5140BEC1D04D8180925BC9A /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 3847153A6E5EEFB86565BA840768F429; - remoteInfo = SDWebImage; + remoteGlobalIDString = 6677891AC2F7AB93E04BFF30B293A46B; + remoteInfo = RNBootSplash; }; 34B556DF76EB14506DA19B1213547A54 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -2524,13 +2534,6 @@ remoteGlobalIDString = A4F685BE3CAC127BDCE4E0DBBD88D191; remoteInfo = Folly; }; - 34F9E91BB517EA0D7FE3A54F599B2B35 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 11989A5E568B3B69655EE0C13DCDA3F9; - remoteInfo = "React-RCTActionSheet"; - }; 3567AD7E2B44760020C17476D70D0A0F /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -2538,26 +2541,26 @@ remoteGlobalIDString = 7ACAA9BE580DD31A5CB9D97C45D9492D; remoteInfo = "React-Core"; }; - 35AAEBE395B90DFF12802A4066FF19DD /* PBXContainerItemProxy */ = { + 35EB43115C83721CAA5AEBF7BE2666C0 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = C49E7A4D59E5C8BE8DE9FB1EFB150185; - remoteInfo = FirebaseAnalytics; + remoteGlobalIDString = A4F685BE3CAC127BDCE4E0DBBD88D191; + remoteInfo = Folly; }; - 376FF43DDA2912575237AD96F7F659ED /* PBXContainerItemProxy */ = { + 3709AEA1B6C6E37DF103DFC5E71C0FCB /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = B9E8F4CA2A4A8599389FEB665A9B96FF; - remoteInfo = RNGestureHandler; + remoteGlobalIDString = 463F41A7E8B252F8AC5024DA1F4AF6DA; + remoteInfo = "React-cxxreact"; }; - 379604DAC14B637EFC1DBC4B42FE5D16 /* PBXContainerItemProxy */ = { + 385AB22B2660A8C57109D17805288DE6 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 47D2E85A78C25869BB13521D8561A638; - remoteInfo = libwebp; + remoteGlobalIDString = 49821C2B9E764AEDF2B35DFE9AA7022F; + remoteInfo = UMBarCodeScannerInterface; }; 386C0EB352726BA92F7F015C2FB264EF /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -2566,40 +2569,19 @@ remoteGlobalIDString = D20469A9A1E5CFB26045EAEBE3F88E5E; remoteInfo = RCTTypeSafety; }; - 39CACD7C0AD392C208D7E34FBE870692 /* PBXContainerItemProxy */ = { + 3BB741D68534B4089F2241BAA84C0934 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 8D7F5D5DD528D21A72DC87ADA5B12E2D; - remoteInfo = GoogleUtilities; + remoteGlobalIDString = 96150F524B245896B800F84F369A9A5A; + remoteInfo = RNVectorIcons; }; - 39EC6541C141F032566FBBE491AD5C0D /* PBXContainerItemProxy */ = { + 3C759463B713BD74C849374062706D5D /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = D20469A9A1E5CFB26045EAEBE3F88E5E; - remoteInfo = RCTTypeSafety; - }; - 3A8F4451E50D33AACFC9F89F68FF16DE /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = A30157FD17984D82FB7B26EE61267BE2; - remoteInfo = RSKImageCropper; - }; - 3C85AF1948DC17C947AD64D2C9289CE3 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 47D2E85A78C25869BB13521D8561A638; - remoteInfo = libwebp; - }; - 3D0EE335789546BA52BFFF2627462647 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = A83ECDA5673771FA0BA282EBF729692B; - remoteInfo = RNFirebase; + remoteGlobalIDString = A238B7CE3865946D1F214E1FE0023AAE; + remoteInfo = "rn-extensions-share"; }; 3DA6710AAE682E070695F228266936B7 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -2615,27 +2597,6 @@ remoteGlobalIDString = 463F41A7E8B252F8AC5024DA1F4AF6DA; remoteInfo = "React-cxxreact"; }; - 3F1E48561A4328E86D01758700125806 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 0A915EE9D35CA5636731F8763E774951; - remoteInfo = UMCameraInterface; - }; - 3F693DF68EAA8052EF6B2969ED7005EF /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 7ACAA9BE580DD31A5CB9D97C45D9492D; - remoteInfo = "React-Core"; - }; - 400AEFF7CC3769169694205080D94A04 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = DBD2D83E10F8B7D3F4E0E34E6A9FCFA6; - remoteInfo = "React-RCTText"; - }; 4081F7E82AA90518127218043568BD4D /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -2643,19 +2604,12 @@ remoteGlobalIDString = 938CCE22F6C4094B3FB6CF1478579E4B; remoteInfo = "React-RCTAnimation"; }; - 40861F1E1970652EF4B4905026CA058A /* PBXContainerItemProxy */ = { + 40CD50452D92CD4307AAD2AF44EA56F6 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 4402AFF83DBDC4DD07E198685FDC2DF2; - remoteInfo = FirebaseCore; - }; - 416368CBD785B2CF1E312D05349A7041 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 97C4DE84FA3CC4EC06AA6D8C249949B7; - remoteInfo = UMImageLoaderInterface; + remoteGlobalIDString = D11E74324175FE5B0E78DB046527F233; + remoteInfo = "react-native-document-picker"; }; 418E15E77F7E215AA9622C72DC826707 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -2664,13 +2618,6 @@ remoteGlobalIDString = FA877ADC442CB19CF61793D234C8B131; remoteInfo = "React-jsi"; }; - 4294DC8BB95AA4C4100A31C75184AD44 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 0A72FB88825FDC7D301C9DD1F8F96824; - remoteInfo = EXPermissions; - }; 449D79087AC8EFD285D3D6948D363A86 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -2692,6 +2639,13 @@ remoteGlobalIDString = 8D7F5D5DD528D21A72DC87ADA5B12E2D; remoteInfo = GoogleUtilities; }; + 461AB7AC28950C89B0EFCE67E8720645 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = CA400829100F0628EC209FBB08347D42; + remoteInfo = "react-native-notifications"; + }; 46C8DE13FECE137E1DF29D2657A15C93 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -2699,6 +2653,41 @@ remoteGlobalIDString = 463F41A7E8B252F8AC5024DA1F4AF6DA; remoteInfo = "React-cxxreact"; }; + 46F50803F1B817A061EE2AE1745D1B92 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = FA877ADC442CB19CF61793D234C8B131; + remoteInfo = "React-jsi"; + }; + 474A26086959FDDA3CE4511FA6CC4E0E /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 18B56DB36E1F066C927E49DBAE590128; + remoteInfo = RNRootView; + }; + 47BA64DF2ED76D95D64D84D8DBBA2910 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 53D121F9F9BB0F8AC1C94A12C5A8572F; + remoteInfo = "React-RCTVibration"; + }; + 483075C3A4B41C49AA4CF0CF475B7FB3 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = FF879E718031128A75E7DE54046E6219; + remoteInfo = RNReanimated; + }; + 483AAE9AA1F172F72A315580CDC5EF26 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 8D7F5D5DD528D21A72DC87ADA5B12E2D; + remoteInfo = GoogleUtilities; + }; 48FF23C1BE2FC883261B458A2FEFC1BB /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -2706,75 +2695,40 @@ remoteGlobalIDString = ED2506AE7DE35D654F61254441EA7155; remoteInfo = "boost-for-react-native"; }; - 493D3B1EC2D9BF29FB1E3E78C1834192 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 64F427905796B33B78A704063422979D; - remoteInfo = "rn-fetch-blob"; - }; - 4A8EB71B13847902D63F7AFC8513B42B /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 1948D0B63D2CF6A48E18B0B292BC6091; - remoteInfo = SocketRocket; - }; - 4ABAB786AE94A4DBC3D6B2DD9A464AAD /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 4402AFF83DBDC4DD07E198685FDC2DF2; - remoteInfo = FirebaseCore; - }; - 4B62F8CC8DB011B9542B2F55F83160A2 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 96150F524B245896B800F84F369A9A5A; - remoteInfo = RNVectorIcons; - }; - 4C8F4050E51C7119FE07282497C351D5 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 7573B71C21FB5F78D28A1F4A184A6057; - remoteInfo = "react-native-keyboard-input"; - }; - 4CA905E2D8171E3417C15C218D084B7C /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 680299219D3A48D42A648AF6706275A9; - remoteInfo = "React-RCTSettings"; - }; - 4D57D6A672AC1B1C664BBB8F43093B10 /* PBXContainerItemProxy */ = { + 4975E9328E78605A0D7659765CD3346B /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; remoteGlobalIDString = 072CEA044D2EF26F03496D5996BBF59F; remoteInfo = Firebase; }; - 4E51F64E0758FCFED4CB13C51AE81700 /* PBXContainerItemProxy */ = { + 4A0C67285DC69C7C94C63AB1FDECE967 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 49821C2B9E764AEDF2B35DFE9AA7022F; - remoteInfo = UMBarCodeScannerInterface; + remoteGlobalIDString = 0CF4D9052577C85B6B8C4E957332626B; + remoteInfo = EXKeepAwake; }; - 4E6A273AB8C4351C5B9C510AB0AB8208 /* PBXContainerItemProxy */ = { + 4A1C276163ACEDD5B8E98A79C18CD431 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 9EB556EE511D43F3D5D7AAF51D8D0397; - remoteInfo = EXWebBrowser; + remoteGlobalIDString = 072CEA044D2EF26F03496D5996BBF59F; + remoteInfo = Firebase; }; - 4E78C68BD0F4CB4E52D456D47E48B724 /* PBXContainerItemProxy */ = { + 4A5D6CDC1239A565D3018496156ECCE3 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 2BBF7206D7FAC92C82A042A99C4A98F8; - remoteInfo = PromisesObjC; + remoteGlobalIDString = 463F41A7E8B252F8AC5024DA1F4AF6DA; + remoteInfo = "React-cxxreact"; + }; + 4CD151798CBD76568CD4F48F3DFE9E9F /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = EAB05A8BED2CAC923712E1C584AEB299; + remoteInfo = "react-native-keyboard-tracking-view"; }; 4F47ACA22456ABDDC1033CCE85E508AC /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -2783,13 +2737,6 @@ remoteGlobalIDString = 7ACAA9BE580DD31A5CB9D97C45D9492D; remoteInfo = "React-Core"; }; - 4F9399A98DDD0AC91A95E0B284EDAE36 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 7573B71C21FB5F78D28A1F4A184A6057; - remoteInfo = "react-native-keyboard-input"; - }; 4FF10556B9B41D07EFAC6AA420559421 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -2797,20 +2744,6 @@ remoteGlobalIDString = 7ACAA9BE580DD31A5CB9D97C45D9492D; remoteInfo = "React-Core"; }; - 51935C7EB5365CD1B13D7D31A5DEDCBF /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 0745200E60DC80C9A0A48B7E6C1518D7; - remoteInfo = BugsnagReactNative; - }; - 51C3FDE17BEACFAFC18943003EA618B1 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = CA400829100F0628EC209FBB08347D42; - remoteInfo = "react-native-notifications"; - }; 52D75569EE8B532085465A5470C6C390 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -2832,12 +2765,12 @@ remoteGlobalIDString = 8D7F5D5DD528D21A72DC87ADA5B12E2D; remoteInfo = GoogleUtilities; }; - 55084E0914E6303027262ABBAE6CDF7A /* PBXContainerItemProxy */ = { + 553363BAB18119CF978864648C71AA82 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = B51433D546A38C51AA781F192E8836F8; - remoteInfo = RNLocalize; + remoteGlobalIDString = 6FE9147F8AAA4DE676C190F680F47AE2; + remoteInfo = "React-RCTLinking"; }; 553C9E2156C22165A3D5F8E54F781E1E /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -2853,33 +2786,40 @@ remoteGlobalIDString = B6D5DD49633DFF0657B8C3F08EB3ABA9; remoteInfo = ReactCommon; }; - 5601EACB18659539D9591C8BAA48F8F3 /* PBXContainerItemProxy */ = { + 55A7FB5DC9D55BD3F40045DCC7E38032 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = ABB048B191245233986A7CD75FE412A5; - remoteInfo = Fabric; + remoteGlobalIDString = 680299219D3A48D42A648AF6706275A9; + remoteInfo = "React-RCTSettings"; }; - 568B51091ED359306661751792E9BB69 /* PBXContainerItemProxy */ = { + 57CFA4A4A7437EF2B0DBBD81512E9B41 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 1BEE828C124E6416179B904A9F66D794; - remoteInfo = React; + remoteGlobalIDString = 2B25F90D819B9ADF2AF2D8733A890333; + remoteInfo = Yoga; }; - 57E0804FBD995A4E0E04E9D053E5DB54 /* PBXContainerItemProxy */ = { + 589BFA7FF2E6811253E9E173562DB25F /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = F7D033C4C128EECAA020990641FA985F; - remoteInfo = "React-jsinspector"; + remoteGlobalIDString = 4D67CFB913D9C3BE37252D50364CD990; + remoteInfo = RNUserDefaults; }; - 58A5C5AC957CC8CD6CFE66E789C766F0 /* PBXContainerItemProxy */ = { + 589D1BA7C609330C276BA5786BC36286 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = A238B7CE3865946D1F214E1FE0023AAE; - remoteInfo = "rn-extensions-share"; + remoteGlobalIDString = 50188AAB5FAECCA9583327DBA2B0AF2B; + remoteInfo = UMTaskManagerInterface; + }; + 591FC543B0A3D434B70064440D8EC94E /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 409F3A0DB395F53FFB6AB30E5CD8ACD1; + remoteInfo = EXHaptics; }; 592671C6C3F74111AF89BE688E45B730 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -2888,6 +2828,20 @@ remoteGlobalIDString = 1BEE828C124E6416179B904A9F66D794; remoteInfo = React; }; + 594A1FDEC196B11604791BCC803813D3 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = DBCB1B4965863DDD3B9DED9A0918A526; + remoteInfo = UMCore; + }; + 594CC60FF038941A04F66A1EE080C2F4 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 8D18C49071FC5370C25F5758A85BA5F6; + remoteInfo = "react-native-webview"; + }; 59A6F7E541C545C99CA82678B8F26212 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -2895,19 +2849,19 @@ remoteGlobalIDString = 3847153A6E5EEFB86565BA840768F429; remoteInfo = SDWebImage; }; - 5A11A42DC766F452C7E9B89AB4DD7A40 /* PBXContainerItemProxy */ = { + 5A9A24E7FD1B3F0830A8EB9E7BBFF648 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 5B40FBDAD0AB75D17C4760F4054BFF71; - remoteInfo = JitsiMeetSDK; + remoteGlobalIDString = D11E74324175FE5B0E78DB046527F233; + remoteInfo = "react-native-document-picker"; }; - 5B5DF83249A3327F79B5F3057B98FE57 /* PBXContainerItemProxy */ = { + 5B9FBDAFFB236B6FE38827979AC5CF2B /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 1092C13E1E1172209537C28D0C8D4D3C; - remoteInfo = "react-native-orientation-locker"; + remoteGlobalIDString = 897EF6A99176326E24F51E2F2103828C; + remoteInfo = UMReactNativeAdapter; }; 5BE488B88EB1D7B8BFE4A63D278D4B18 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -2916,12 +2870,19 @@ remoteGlobalIDString = 8D7F5D5DD528D21A72DC87ADA5B12E2D; remoteInfo = GoogleUtilities; }; - 5C614698289D860013A0A63112AD7866 /* PBXContainerItemProxy */ = { + 5CA512BE0D688362AF710417F076B79B /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 1948D0B63D2CF6A48E18B0B292BC6091; - remoteInfo = SocketRocket; + remoteGlobalIDString = B9E8F4CA2A4A8599389FEB665A9B96FF; + remoteInfo = RNGestureHandler; + }; + 5DEBCAE5160E5037A0074F25979B5EA7 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 4402AFF83DBDC4DD07E198685FDC2DF2; + remoteInfo = FirebaseCore; }; 5EED9A44D7E37951C7239080722062AE /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -2930,6 +2891,13 @@ remoteGlobalIDString = 1BEE828C124E6416179B904A9F66D794; remoteInfo = React; }; + 5FC9C97C5B77DB8C5B7789325C7F49D0 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 651511D7DA7F07F9FC9AA40A2E86270D; + remoteInfo = "React-RCTNetwork"; + }; 5FDD7E408B08AF566972547CAF4A8B67 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -2937,54 +2905,40 @@ remoteGlobalIDString = DBCB1B4965863DDD3B9DED9A0918A526; remoteInfo = UMCore; }; - 61D253BF4BF3B335C16FC14020867A2F /* PBXContainerItemProxy */ = { + 617D1ACDDF92F704A4EC34059E5D6D82 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = E7E7CE52C8C68B17224FF8C262D80ABF; - remoteInfo = RCTRequired; + remoteGlobalIDString = 8CC4EAA817AA86310D1900F1DAB3580F; + remoteInfo = FBLazyVector; }; - 61EE4B5921627BE861B69E21A109BC08 /* PBXContainerItemProxy */ = { + 61E3F98957C69504C587E74A73042818 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 6514D69CB93B41626AE1A05581F97B07; - remoteInfo = "react-native-background-timer"; + remoteGlobalIDString = ED2506AE7DE35D654F61254441EA7155; + remoteInfo = "boost-for-react-native"; }; - 61F6172F2A15CCDE403383C253AFA9D1 /* PBXContainerItemProxy */ = { + 62665CA44E29F72877F05D536E7C52C5 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 807428FE76D80865C9F59F3502600E89; - remoteInfo = RNDeviceInfo; + remoteGlobalIDString = D0EFEFB685D97280256C559792236873; + remoteInfo = glog; }; - 62B94E6711B30C94BCDDD225DA99EE86 /* PBXContainerItemProxy */ = { + 62C4C28EA3F73091DAF50C3453C713D6 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 3FF2E78BB54ED67CA7FAD8DA2590DBEE; - remoteInfo = "react-native-appearance"; + remoteGlobalIDString = 1BEE828C124E6416179B904A9F66D794; + remoteInfo = React; }; - 62FFAF06D313BB3C8A418F80F9DF8864 /* PBXContainerItemProxy */ = { + 62C704ABA476FBAD552E68B3FC2FBFE9 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 2644525CCE081E967809A8163D893A93; - remoteInfo = UMFileSystemInterface; - }; - 630EDCDA672B3942B2CE8848EA95FCDE /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 5C0371EE948D0357B8EE0E34ABB44BF0; - remoteInfo = GoogleDataTransport; - }; - 63B9165A2F9D5F33626DCE22F01CEF71 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = A238B7CE3865946D1F214E1FE0023AAE; - remoteInfo = "rn-extensions-share"; + remoteGlobalIDString = B6D5DD49633DFF0657B8C3F08EB3ABA9; + remoteInfo = ReactCommon; }; 6423924A022902547DBE5FC8EF93BD4D /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -2993,6 +2947,13 @@ remoteGlobalIDString = 1BEE828C124E6416179B904A9F66D794; remoteInfo = React; }; + 655317A40811E8F9E406458DA3DC2199 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 214E42634D1E187D876346D36184B655; + remoteInfo = RNScreens; + }; 65685AEAE3C8051C0DE124A6E5ACB197 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -3000,19 +2961,12 @@ remoteGlobalIDString = A4F685BE3CAC127BDCE4E0DBBD88D191; remoteInfo = Folly; }; - 662272B9ED09BDD5411DD7740A4D0F96 /* PBXContainerItemProxy */ = { + 68330CBD9E2C8B40CBF4D2DBB59B1BF1 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = DBD2D83E10F8B7D3F4E0E34E6A9FCFA6; - remoteInfo = "React-RCTText"; - }; - 683625EFAA3568932482E5F07807A601 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 463F41A7E8B252F8AC5024DA1F4AF6DA; - remoteInfo = "React-cxxreact"; + remoteGlobalIDString = 7573B71C21FB5F78D28A1F4A184A6057; + remoteInfo = "react-native-keyboard-input"; }; 69B6897572B545367799A5E51AFE075D /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -3028,13 +2982,6 @@ remoteGlobalIDString = 1BEE828C124E6416179B904A9F66D794; remoteInfo = React; }; - 69E690DC689858810FF65F2D04EEA46C /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = A83ECDA5673771FA0BA282EBF729692B; - remoteInfo = RNFirebase; - }; 6A307E7AA187B3493D468319584B81F0 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -3042,26 +2989,54 @@ remoteGlobalIDString = E7E7CE52C8C68B17224FF8C262D80ABF; remoteInfo = RCTRequired; }; - 6A8A0FA190FEB744EDFFB9FAF5742028 /* PBXContainerItemProxy */ = { + 6ADEBE41132888244CD8989523AE55F9 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 5C0371EE948D0357B8EE0E34ABB44BF0; - remoteInfo = GoogleDataTransport; + remoteGlobalIDString = 8CC4EAA817AA86310D1900F1DAB3580F; + remoteInfo = FBLazyVector; }; - 6D1426E9DF0BC37F3981FFF13E332C77 /* PBXContainerItemProxy */ = { + 6B2641DEAC5E4CAFC146B03DB2CDB226 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 6677891AC2F7AB93E04BFF30B293A46B; - remoteInfo = RNBootSplash; + remoteGlobalIDString = 6C1893932A69822CBE3502F2E0BCFB6D; + remoteInfo = EXConstants; }; - 6D4C2A356235290149A1829A9F2564BD /* PBXContainerItemProxy */ = { + 6D1B6B5C1D59528D21E4481213824F44 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = CA400829100F0628EC209FBB08347D42; - remoteInfo = "react-native-notifications"; + remoteGlobalIDString = D39AB631E8050865DE01F6D5678797D2; + remoteInfo = "react-native-jitsi-meet"; + }; + 6D665A76789A8D00054D333854783DB4 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 651511D7DA7F07F9FC9AA40A2E86270D; + remoteInfo = "React-RCTNetwork"; + }; + 6DB2464A2F49196A49869E6B9FA0E651 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = F7D033C4C128EECAA020990641FA985F; + remoteInfo = "React-jsinspector"; + }; + 6E21582A484CC8C3138F244CA9399F28 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 7F591BD8674041AAAA4F37DC699B5518; + remoteInfo = KeyCommands; + }; + 6E6CA0A8F8960AACECF2B14225EFA272 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = E16E206437995280D349D4B67695C894; + remoteInfo = "React-CoreModules"; }; 70056FCB7FB870FB7D91F161A3B6F84F /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -3070,12 +3045,12 @@ remoteGlobalIDString = C0E41540D6862472ED7F2FA11669BE1F; remoteInfo = Crashlytics; }; - 71A45A370A69C0BE4C9F9C165259E67C /* PBXContainerItemProxy */ = { + 705012752414AE48EFADC791F79CA6CC /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = A4EF87F5681665EAE943D9B06BBB17DF; - remoteInfo = "react-native-slider"; + remoteGlobalIDString = B6D5DD49633DFF0657B8C3F08EB3ABA9; + remoteInfo = ReactCommon; }; 729C920815C311E1D586861019E10612 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -3084,6 +3059,13 @@ remoteGlobalIDString = 5EB4B0B6DA6D5C0C3365733BEAA1C485; remoteInfo = FirebaseCoreDiagnosticsInterop; }; + 72A140C61CF149B20345E339D5B1BC6F /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = ABB048B191245233986A7CD75FE412A5; + remoteInfo = Fabric; + }; 7376C532C4FB647A107D7FD9698C24E8 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -3091,13 +3073,6 @@ remoteGlobalIDString = 1BEE828C124E6416179B904A9F66D794; remoteInfo = React; }; - 739889194786BD11288E1090E9FCCCB2 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = B6D5DD49633DFF0657B8C3F08EB3ABA9; - remoteInfo = ReactCommon; - }; 74C2CAAD882619C327EBDCCC07631937 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -3105,34 +3080,6 @@ remoteGlobalIDString = ABB048B191245233986A7CD75FE412A5; remoteInfo = Fabric; }; - 75C4E5240C974F655EDE75245F453F6A /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 3847153A6E5EEFB86565BA840768F429; - remoteInfo = SDWebImage; - }; - 75E0DBD33B8CA12475AE0636BD673C64 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 449C1066B8C16DEDB966DCB632828E44; - remoteInfo = RNAudio; - }; - 762C406158B057998B102DB622E77496 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = EAB05A8BED2CAC923712E1C584AEB299; - remoteInfo = "react-native-keyboard-tracking-view"; - }; - 7749CC73783347FC0C047B39B8F4B8ED /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = BA3F5E5AA483B263B69601DE2FA269CB; - remoteInfo = "react-native-cameraroll"; - }; 77650DB9BCD15D3DBD659DF4437F2533 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -3140,27 +3087,6 @@ remoteGlobalIDString = 1BEE828C124E6416179B904A9F66D794; remoteInfo = React; }; - 77A78C56EF51EAEB9705D71E532AED69 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 53D121F9F9BB0F8AC1C94A12C5A8572F; - remoteInfo = "React-RCTVibration"; - }; - 78C323FAE1236AB030F9102778E10DE7 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 214E42634D1E187D876346D36184B655; - remoteInfo = RNScreens; - }; - 7A681F88F3A6D86E3091ACA9FC73F0B1 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 64F427905796B33B78A704063422979D; - remoteInfo = "rn-fetch-blob"; - }; 7AEA5761B26CAEF1A0C0E82599059DA8 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -3168,6 +3094,13 @@ remoteGlobalIDString = C49E7A4D59E5C8BE8DE9FB1EFB150185; remoteInfo = FirebaseAnalytics; }; + 7B3A1B0FE9581B038E8A5CA6E6274AB4 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 5C0371EE948D0357B8EE0E34ABB44BF0; + remoteInfo = GoogleDataTransport; + }; 7C309567C8843AC36F40EF4B09960A84 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -3175,6 +3108,13 @@ remoteGlobalIDString = 680299219D3A48D42A648AF6706275A9; remoteInfo = "React-RCTSettings"; }; + 7C4F90EE8AE20E88C7ED5E7EC6B89419 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 6FE9147F8AAA4DE676C190F680F47AE2; + remoteInfo = "React-RCTLinking"; + }; 7C53CB5C717DF2F107152E0C7B720455 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -3182,12 +3122,12 @@ remoteGlobalIDString = D0EFEFB685D97280256C559792236873; remoteInfo = glog; }; - 7DE0BDC36E94E17147774A9141DFD753 /* PBXContainerItemProxy */ = { + 7D53FE095A68E88855D206BD273A8A22 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = E16E206437995280D349D4B67695C894; - remoteInfo = "React-CoreModules"; + remoteGlobalIDString = 868B90C74770285449C60DBA82181479; + remoteInfo = EXFileSystem; }; 7DFBE4295EB2D14288E99BCD22619405 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -3196,19 +3136,12 @@ remoteGlobalIDString = 2AB2EF542954AB1C999E03BFEF8DE806; remoteInfo = DoubleConversion; }; - 7E37824FA852732D8A855EC3F4648925 /* PBXContainerItemProxy */ = { + 7EC6E864E01896A4F8B70289BE27B949 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 2038C6F97563AAD6162C284B3EDD5B3B; - remoteInfo = UMSensorsInterface; - }; - 7E4A63DA1746BCA529C64F56095DED49 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = F4F25FCAC51B51FD5F986EB939BF1F87; - remoteInfo = GoogleDataTransportCCTSupport; + remoteGlobalIDString = 6514D69CB93B41626AE1A05581F97B07; + remoteInfo = "react-native-background-timer"; }; 7F0C8BA205CDCCA50C905295C45878EC /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -3217,6 +3150,13 @@ remoteGlobalIDString = DBCB1B4965863DDD3B9DED9A0918A526; remoteInfo = UMCore; }; + 803C567877015513B996C1397CFD0BA4 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = A4F685BE3CAC127BDCE4E0DBBD88D191; + remoteInfo = Folly; + }; 8075D3C81C368FF63B92A7E7DC84BF6B /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -3224,13 +3164,6 @@ remoteGlobalIDString = DBCB1B4965863DDD3B9DED9A0918A526; remoteInfo = UMCore; }; - 810B343423BD256BF0DC3C61D69A8740 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 8D18C49071FC5370C25F5758A85BA5F6; - remoteInfo = "react-native-webview"; - }; 81C7B5355049BCCDEE79296B202D9398 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -3238,26 +3171,26 @@ remoteGlobalIDString = 7ACAA9BE580DD31A5CB9D97C45D9492D; remoteInfo = "React-Core"; }; - 8210DD76CCCA49C0A38A7CD8F457E619 /* PBXContainerItemProxy */ = { + 83AC49250DE87C5365441FB7995CB888 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 6514D69CB93B41626AE1A05581F97B07; - remoteInfo = "react-native-background-timer"; + remoteGlobalIDString = 95D98F901D07557EF7CA38D3F03832C5; + remoteInfo = "React-RCTBlob"; }; - 8600238B69B2A157BCDA43B6428C374A /* PBXContainerItemProxy */ = { + 84263176CD7DF3EA14F59661AB98171F /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 620E05868772C10B4920DC7E324F2C87; - remoteInfo = FirebaseCoreDiagnostics; + remoteGlobalIDString = EAB05A8BED2CAC923712E1C584AEB299; + remoteInfo = "react-native-keyboard-tracking-view"; }; - 8695C8E77F27C46C494E7A233D245FAA /* PBXContainerItemProxy */ = { + 8642587C304B2273F475278DB97AA327 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 4D67CFB913D9C3BE37252D50364CD990; - remoteInfo = RNUserDefaults; + remoteGlobalIDString = DBD2D83E10F8B7D3F4E0E34E6A9FCFA6; + remoteInfo = "React-RCTText"; }; 86FBD5BA95718ED6238A8919F42616C5 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -3266,6 +3199,13 @@ remoteGlobalIDString = 014495932E402CA67C37681988047CA2; remoteInfo = UMFontInterface; }; + 871308EB53E5650A29BAABBF8AA4C16C /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 449C1066B8C16DEDB966DCB632828E44; + remoteInfo = RNAudio; + }; 876F633EF64F3B86DDACB4D9765F88C3 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -3280,19 +3220,26 @@ remoteGlobalIDString = 1BEE828C124E6416179B904A9F66D794; remoteInfo = React; }; - 883F499200BB3CA87D8EB96C2C05DB4E /* PBXContainerItemProxy */ = { + 88528BF8606945FE72D1A8C493CF7B1A /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 2AB2EF542954AB1C999E03BFEF8DE806; - remoteInfo = DoubleConversion; + remoteGlobalIDString = 014495932E402CA67C37681988047CA2; + remoteInfo = UMFontInterface; }; - 89CD7DEA25099212E12CD7ED29FE7198 /* PBXContainerItemProxy */ = { + 8A87188C05899B247B1FF00CB90AB751 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = A4F685BE3CAC127BDCE4E0DBBD88D191; - remoteInfo = Folly; + remoteGlobalIDString = D20469A9A1E5CFB26045EAEBE3F88E5E; + remoteInfo = RCTTypeSafety; + }; + 8AD813A9A89271BD5C7B96FA93C44FA8 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 87803597EB3F20FC46472B85392EC4FD; + remoteInfo = FirebaseInstallations; }; 8CD598B3122E1B5D5E0411E9F8DFF385 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -3308,12 +3255,12 @@ remoteGlobalIDString = 1BEE828C124E6416179B904A9F66D794; remoteInfo = React; }; - 8D06CD97B0C15E663D1D46445EE838CB /* PBXContainerItemProxy */ = { + 8F19DAE8B947D14BA1E3D4ECCF89E6A6 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 463F41A7E8B252F8AC5024DA1F4AF6DA; - remoteInfo = "React-cxxreact"; + remoteGlobalIDString = 87803597EB3F20FC46472B85392EC4FD; + remoteInfo = FirebaseInstallations; }; 8F8D97FDA93DF806279F1C90D2E34F62 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -3322,13 +3269,6 @@ remoteGlobalIDString = 7ACAA9BE580DD31A5CB9D97C45D9492D; remoteInfo = "React-Core"; }; - 9137870248AEEC1261ACEE6C1F66CD10 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 2BBF7206D7FAC92C82A042A99C4A98F8; - remoteInfo = PromisesObjC; - }; 914920FE125E08820136442E6C40FF7E /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -3336,13 +3276,6 @@ remoteGlobalIDString = 1BEE828C124E6416179B904A9F66D794; remoteInfo = React; }; - 9186C3A8C0128A70FADDD508B72A11D2 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 8D7F5D5DD528D21A72DC87ADA5B12E2D; - remoteInfo = GoogleUtilities; - }; 925B94B36D67D27AF51664D1645EC2F7 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -3350,33 +3283,19 @@ remoteGlobalIDString = 3847153A6E5EEFB86565BA840768F429; remoteInfo = SDWebImage; }; - 9287D9482C58AF704D7E18F82059F705 /* PBXContainerItemProxy */ = { + 925EB51EC1657F06A696E4FC34839DE9 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 87803597EB3F20FC46472B85392EC4FD; - remoteInfo = FirebaseInstallations; + remoteGlobalIDString = 7ACAA9BE580DD31A5CB9D97C45D9492D; + remoteInfo = "React-Core"; }; - 93D89D15F31C64FA2E698BC296BC474F /* PBXContainerItemProxy */ = { + 92ECBD88F423045656F3AC62F2BFB972 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 8CC4EAA817AA86310D1900F1DAB3580F; - remoteInfo = FBLazyVector; - }; - 94C228224463B2E1D17A2DE3F23F0265 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 1953860EA9853AA2BC8022B242F08512; - remoteInfo = SDWebImageWebPCoder; - }; - 95807B567604AB47A8F40EA66C9CB7D5 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = A4F685BE3CAC127BDCE4E0DBBD88D191; - remoteInfo = Folly; + remoteGlobalIDString = 9E25537BF40D1A3B30CF43FD3E6ACD94; + remoteInfo = FirebaseInstanceID; }; 95BD7607104E910918F88DD81F19B1C1 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -3385,12 +3304,12 @@ remoteGlobalIDString = 2AB2EF542954AB1C999E03BFEF8DE806; remoteInfo = DoubleConversion; }; - 9643ACC7C6CBC9BCEFB7674F21F33C71 /* PBXContainerItemProxy */ = { + 9715C541390DFACB38930F601A4646EB /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 409F3A0DB395F53FFB6AB30E5CD8ACD1; - remoteInfo = EXHaptics; + remoteGlobalIDString = ABB048B191245233986A7CD75FE412A5; + remoteInfo = Fabric; }; 973587FD3243D488ACC2A2CBA4B833BD /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -3399,6 +3318,13 @@ remoteGlobalIDString = A4F685BE3CAC127BDCE4E0DBBD88D191; remoteInfo = Folly; }; + 979791362B25D3C5AE459F62A6D1264A /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 938CCE22F6C4094B3FB6CF1478579E4B; + remoteInfo = "React-RCTAnimation"; + }; 97B757EDAC3A7488ACC8A43E74C8388E /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -3406,6 +3332,13 @@ remoteGlobalIDString = FA877ADC442CB19CF61793D234C8B131; remoteInfo = "React-jsi"; }; + 97BC630E158DE829234BCFEFD0E1A447 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 2B8C13513C1F6D610976B0C8F4402EC1; + remoteInfo = EXAppLoaderProvider; + }; 983AD1895C24585DEA95A1E14A0A74C6 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -3413,33 +3346,12 @@ remoteGlobalIDString = D0EFEFB685D97280256C559792236873; remoteInfo = glog; }; - 988DFC34626989FA9956F35F15D47BE6 /* PBXContainerItemProxy */ = { + 98D3AA01A003CB65ACFC6B147CE6F6FA /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = C0E41540D6862472ED7F2FA11669BE1F; - remoteInfo = Crashlytics; - }; - 989A798045B10252B485D52D83CCB0DF /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 0BB7745637E0758DEA373456197090C6; - remoteInfo = RNFastImage; - }; - 994412B6B5949D6AC582A8A22B3163AA /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 6677891AC2F7AB93E04BFF30B293A46B; - remoteInfo = RNBootSplash; - }; - 9986F04057066A4EC751293EB7235140 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 87803597EB3F20FC46472B85392EC4FD; - remoteInfo = FirebaseInstallations; + remoteGlobalIDString = 90148E8FD1C445D7A019D504FA8CBC53; + remoteInfo = ReactNativeART; }; 9999A457A3E364808C9E122EC64D955D /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -3462,12 +3374,19 @@ remoteGlobalIDString = F7D033C4C128EECAA020990641FA985F; remoteInfo = "React-jsinspector"; }; - 9AD32BCF76D471812399F5E95F9AEDD6 /* PBXContainerItemProxy */ = { + 9AD8983FA0475B257AAD1540B914672A /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = FA877ADC442CB19CF61793D234C8B131; - remoteInfo = "React-jsi"; + remoteGlobalIDString = 1953860EA9853AA2BC8022B242F08512; + remoteInfo = SDWebImageWebPCoder; + }; + 9B2A8E3CFE3598C5FE2FCA24A3977539 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 0BB7745637E0758DEA373456197090C6; + remoteInfo = RNFastImage; }; 9B2BFB5DEFEF28F0C14CFF2FE14B9160 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -3476,12 +3395,26 @@ remoteGlobalIDString = 95D98F901D07557EF7CA38D3F03832C5; remoteInfo = "React-RCTBlob"; }; - 9C4325AC33E674BFEDB239D7ACE65E25 /* PBXContainerItemProxy */ = { + 9C75A0D332F3E258A2249F54C0C3122F /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = D0EFEFB685D97280256C559792236873; - remoteInfo = glog; + remoteGlobalIDString = B53D977A951AFC38B21751B706C1DF83; + remoteInfo = GoogleAppMeasurement; + }; + 9DD541885A9980C98C3ADDE50F7FF908 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 7ACAA9BE580DD31A5CB9D97C45D9492D; + remoteInfo = "React-Core"; + }; + 9E9FC1AE37C7C48F7BF35084C725F4C1 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 0745200E60DC80C9A0A48B7E6C1518D7; + remoteInfo = BugsnagReactNative; }; 9EEE23D6519FCEE6884F6DF117317D7A /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -3490,19 +3423,26 @@ remoteGlobalIDString = 7ACAA9BE580DD31A5CB9D97C45D9492D; remoteInfo = "React-Core"; }; - A11C5AA18C11C96A7B4C12F0674870FA /* PBXContainerItemProxy */ = { + 9EF2111FDA8CB6E7775E6D5CF187A418 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 9668C19AA6D8EA320F83875FA286855A; - remoteInfo = UMConstantsInterface; + remoteGlobalIDString = B51433D546A38C51AA781F192E8836F8; + remoteInfo = RNLocalize; }; - A22EB8C8B8CAEF4A5121518FA49B5801 /* PBXContainerItemProxy */ = { + A11626882602317CA7B5A9A3B4B45003 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 6FE9147F8AAA4DE676C190F680F47AE2; - remoteInfo = "React-RCTLinking"; + remoteGlobalIDString = 1953860EA9853AA2BC8022B242F08512; + remoteInfo = SDWebImageWebPCoder; + }; + A11CEDFB97DF2979574EA403010A9267 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = A83ECDA5673771FA0BA282EBF729692B; + remoteInfo = RNFirebase; }; A2714C3F770F38D4074DD0F61DA9CF45 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -3511,13 +3451,6 @@ remoteGlobalIDString = 1BEE828C124E6416179B904A9F66D794; remoteInfo = React; }; - A276E78B8BCF8F62BA7D5D9D31976193 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 807428FE76D80865C9F59F3502600E89; - remoteInfo = RNDeviceInfo; - }; A33043B018A8D3B28DA9124A1579E13A /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -3525,13 +3458,6 @@ remoteGlobalIDString = D0EFEFB685D97280256C559792236873; remoteInfo = glog; }; - A395D037368F0EB9AC2E7C15AFDE02A4 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = BA3F5E5AA483B263B69601DE2FA269CB; - remoteInfo = "react-native-cameraroll"; - }; A3B47DA7FB5AF667B2756DAC549D2642 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -3539,19 +3465,33 @@ remoteGlobalIDString = 2B25F90D819B9ADF2AF2D8733A890333; remoteInfo = Yoga; }; - A5EC8DBEE101A2982D82A2D0E9C2FC8B /* PBXContainerItemProxy */ = { + A3F8598D021CCC7DEBAC0C180F9AA3AB /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 0745200E60DC80C9A0A48B7E6C1518D7; - remoteInfo = BugsnagReactNative; + remoteGlobalIDString = A83ECDA5673771FA0BA282EBF729692B; + remoteInfo = RNFirebase; }; - A65A6D677E610F2518B62772B9C032BF /* PBXContainerItemProxy */ = { + A4025DAC5CB5041906BB3BB2D295B050 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 13D7009C3736FB694854D88BAD4742B6; - remoteInfo = EXAV; + remoteGlobalIDString = F4F25FCAC51B51FD5F986EB939BF1F87; + remoteInfo = GoogleDataTransportCCTSupport; + }; + A483F2C7AA25955DD0926A8CBEFEBD01 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = D2B5E7DCCBBFB32341D857D01211A1A3; + remoteInfo = nanopb; + }; + A55B3FFF4BCC0F71872E6689F2D1DFCF /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 1092C13E1E1172209537C28D0C8D4D3C; + remoteInfo = "react-native-orientation-locker"; }; A6C96CD915FAFFA438FE9774216C27FC /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -3567,6 +3507,13 @@ remoteGlobalIDString = 4F265533AAB7C8985856EC78A33164BB; remoteInfo = "React-RCTImage"; }; + A7E06CB7058A7DB4F33BB49B2B5C8C80 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = C0E41540D6862472ED7F2FA11669BE1F; + remoteInfo = Crashlytics; + }; A7E5D397C11338DEED5E896EF959836C /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -3581,6 +3528,13 @@ remoteGlobalIDString = 4F265533AAB7C8985856EC78A33164BB; remoteInfo = "React-RCTImage"; }; + A9300153B0F6F57C1390DC9AE1DE78D9 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = C49E7A4D59E5C8BE8DE9FB1EFB150185; + remoteInfo = FirebaseAnalytics; + }; A93E606DCB9E6493FE4333269FB7DB4D /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -3602,33 +3556,26 @@ remoteGlobalIDString = 1BEE828C124E6416179B904A9F66D794; remoteInfo = React; }; - AB66F99978634DA7F52143301730BBA8 /* PBXContainerItemProxy */ = { + AC7CFC6D3FD9D88C0BE3EFA7768B32DD /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 7ACAA9BE580DD31A5CB9D97C45D9492D; - remoteInfo = "React-Core"; + remoteGlobalIDString = 2AD4F40E67E1874A0816F6B34289EB41; + remoteInfo = UMFaceDetectorInterface; }; - AC0F63AA236B3D5059FD4C871AFE4903 /* PBXContainerItemProxy */ = { + AC8A4D71B42037F08B5AA81F683D6AA1 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 868B90C74770285449C60DBA82181479; - remoteInfo = EXFileSystem; + remoteGlobalIDString = 13D7009C3736FB694854D88BAD4742B6; + remoteInfo = EXAV; }; - ACE8EFCFA295C1FE57B388534CE104EB /* PBXContainerItemProxy */ = { + AD7507CC6D18A5ECC6C57FD59FBB9797 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = ED2506AE7DE35D654F61254441EA7155; - remoteInfo = "boost-for-react-native"; - }; - AE2CDE7E5CE3EBA82730AEDF456BFDA3 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = D2B5E7DCCBBFB32341D857D01211A1A3; - remoteInfo = nanopb; + remoteGlobalIDString = 2644525CCE081E967809A8163D893A93; + remoteInfo = UMFileSystemInterface; }; AEC8DF6D4B91F6B6CAA5DFE9C52B76F8 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -3637,13 +3584,6 @@ remoteGlobalIDString = A30157FD17984D82FB7B26EE61267BE2; remoteInfo = RSKImageCropper; }; - AEF0D5EAD49A8992DA70EFA3DECBF5F2 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 072CEA044D2EF26F03496D5996BBF59F; - remoteInfo = Firebase; - }; B10540874D34CE93E1E04DA052C09DD7 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -3651,27 +3591,6 @@ remoteGlobalIDString = 6FE9147F8AAA4DE676C190F680F47AE2; remoteInfo = "React-RCTLinking"; }; - B1E89063DD071A1DCFE7A6A0BE52A78B /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = A30157FD17984D82FB7B26EE61267BE2; - remoteInfo = RSKImageCropper; - }; - B2ACFFD89C29C4A3399154C473FB7370 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 1953860EA9853AA2BC8022B242F08512; - remoteInfo = SDWebImageWebPCoder; - }; - B36F895A6D17AAB1ADBC48098A783286 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 4F265533AAB7C8985856EC78A33164BB; - remoteInfo = "React-RCTImage"; - }; B40AA08577F30A00FD2A25A08341964A /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -3679,13 +3598,6 @@ remoteGlobalIDString = 1BEE828C124E6416179B904A9F66D794; remoteInfo = React; }; - B41D19483817690C78B591E40505B64F /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 9E25537BF40D1A3B30CF43FD3E6ACD94; - remoteInfo = FirebaseInstanceID; - }; B45BFCA094BB2306A256FB04420598F1 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -3693,6 +3605,13 @@ remoteGlobalIDString = 7ACAA9BE580DD31A5CB9D97C45D9492D; remoteInfo = "React-Core"; }; + B5373A5EE0A1B7607417C55418549466 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = A238B7CE3865946D1F214E1FE0023AAE; + remoteInfo = "rn-extensions-share"; + }; B59CFF3791DD86ED3E948C16CAA52C6E /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -3700,12 +3619,19 @@ remoteGlobalIDString = 651511D7DA7F07F9FC9AA40A2E86270D; remoteInfo = "React-RCTNetwork"; }; - B65CB740D1EC333B180E629D8444637B /* PBXContainerItemProxy */ = { + B65D6097588ADA9B1ADF692511729C2F /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 620E05868772C10B4920DC7E324F2C87; - remoteInfo = FirebaseCoreDiagnostics; + remoteGlobalIDString = 6677891AC2F7AB93E04BFF30B293A46B; + remoteInfo = RNBootSplash; + }; + B76BAC39C44294E0D043F09AC513FE5A /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 2038C6F97563AAD6162C284B3EDD5B3B; + remoteInfo = UMSensorsInterface; }; B7CA8E5E6048734280447632DB142C89 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -3721,6 +3647,13 @@ remoteGlobalIDString = 87803597EB3F20FC46472B85392EC4FD; remoteInfo = FirebaseInstallations; }; + B877D34E63A547C40C29E8CA3A24FE53 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 64F427905796B33B78A704063422979D; + remoteInfo = "rn-fetch-blob"; + }; B8E5BD7E0904D95225F1C6CC70ADE8CA /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -3728,26 +3661,12 @@ remoteGlobalIDString = D0EFEFB685D97280256C559792236873; remoteInfo = glog; }; - B9453E4CD6DF1903209912291CF96009 /* PBXContainerItemProxy */ = { + B9BB122EFFD28FE7CBE1F75A4E926231 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = D0EFEFB685D97280256C559792236873; - remoteInfo = glog; - }; - B955208A95BD7691909D8749F71CA61D /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 449C1066B8C16DEDB966DCB632828E44; - remoteInfo = RNAudio; - }; - B9997011EB2CDC3E3C987C6F2B090B93 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = D11E74324175FE5B0E78DB046527F233; - remoteInfo = "react-native-document-picker"; + remoteGlobalIDString = B51433D546A38C51AA781F192E8836F8; + remoteInfo = RNLocalize; }; BB43E3440C83F8BC24E141BE6C01D507 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -3763,12 +3682,12 @@ remoteGlobalIDString = B53D977A951AFC38B21751B706C1DF83; remoteInfo = GoogleAppMeasurement; }; - BE51C7EC9187109049FF16B6AB3A0972 /* PBXContainerItemProxy */ = { + BCC017EE5846D87DA159B13C9FAC70FD /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 53D121F9F9BB0F8AC1C94A12C5A8572F; - remoteInfo = "React-RCTVibration"; + remoteGlobalIDString = 0A72FB88825FDC7D301C9DD1F8F96824; + remoteInfo = EXPermissions; }; BF32D407ED9D0F154DE76F25EEB923DB /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -3791,33 +3710,54 @@ remoteGlobalIDString = 5EB4B0B6DA6D5C0C3365733BEAA1C485; remoteInfo = FirebaseCoreDiagnosticsInterop; }; - C1FE7BC7432FEAE7B6C40C396A29F634 /* PBXContainerItemProxy */ = { + C07D9F67B38F64CF29C5A91E7432F800 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 214E42634D1E187D876346D36184B655; + remoteInfo = RNScreens; + }; + C1F6160261C041B6F2356459AEBDDDCA /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 2BBF7206D7FAC92C82A042A99C4A98F8; + remoteInfo = PromisesObjC; + }; + C2A259ACF676661EFB1C0CF8BAD25770 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 0745200E60DC80C9A0A48B7E6C1518D7; + remoteInfo = BugsnagReactNative; + }; + C36714608FDE33DB14A99D2FF662A73E /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 95D98F901D07557EF7CA38D3F03832C5; + remoteInfo = "React-RCTBlob"; + }; + C38CFF395D7F9DA1C5AFE09B7BF5109F /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; remoteGlobalIDString = 7F591BD8674041AAAA4F37DC699B5518; remoteInfo = KeyCommands; }; - C2D580F0A58F3C8626ABC259778C7A88 /* PBXContainerItemProxy */ = { + C3FEDCC3093569B6B1D7FD3EC697B040 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 2B25F90D819B9ADF2AF2D8733A890333; - remoteInfo = Yoga; + remoteGlobalIDString = 0D82774D2A533D3FFAE27CAB4A6E9CB2; + remoteInfo = RNImageCropPicker; }; - C343222D8738754CFDEDC123D70056EA /* PBXContainerItemProxy */ = { + C55EBD90CE0151037FA09EA650386349 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = C0E41540D6862472ED7F2FA11669BE1F; - remoteInfo = Crashlytics; - }; - C3730CDE82B8A10BC14B3927723E205A /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 897EF6A99176326E24F51E2F2103828C; - remoteInfo = UMReactNativeAdapter; + remoteGlobalIDString = 449C1066B8C16DEDB966DCB632828E44; + remoteInfo = RNAudio; }; C583A5691E3DAE99E4675FD1989CDA14 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -3833,6 +3773,13 @@ remoteGlobalIDString = 11989A5E568B3B69655EE0C13DCDA3F9; remoteInfo = "React-RCTActionSheet"; }; + C5F349293436946DFB8925C6BCDEC5A2 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = D760AF58E12ABBB51F84160FB02B5F39; + remoteInfo = RNDateTimePicker; + }; C6318E60C9E68C5F678F7ADDF357AED8 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -3840,13 +3787,6 @@ remoteGlobalIDString = D2B5E7DCCBBFB32341D857D01211A1A3; remoteInfo = nanopb; }; - C65A9C37B9A7819C85F7A40F05F999C7 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 4F265533AAB7C8985856EC78A33164BB; - remoteInfo = "React-RCTImage"; - }; C6B6F02506FCA9766276DEF5FAE04229 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -3861,13 +3801,6 @@ remoteGlobalIDString = 9E25537BF40D1A3B30CF43FD3E6ACD94; remoteInfo = FirebaseInstanceID; }; - C6FA4380CC5BF0862952CEF3A9355494 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = D2B5E7DCCBBFB32341D857D01211A1A3; - remoteInfo = nanopb; - }; C737ED823B86A2EB5AE9F688BEE3FDCE /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -3875,33 +3808,12 @@ remoteGlobalIDString = 1BEE828C124E6416179B904A9F66D794; remoteInfo = React; }; - C81D7BF44378C388AF5AA4477D0CA23E /* PBXContainerItemProxy */ = { + C8C1461411783AA01837C9F1AF8D61A0 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = DBCB1B4965863DDD3B9DED9A0918A526; - remoteInfo = UMCore; - }; - C826A623A05885A805E59EDC5C06AC19 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 96150F524B245896B800F84F369A9A5A; - remoteInfo = RNVectorIcons; - }; - C98A168A640356B43A92CC1967097739 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 2AB2EF542954AB1C999E03BFEF8DE806; - remoteInfo = DoubleConversion; - }; - C9C999A14C6E370F424BB07117724AC4 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 6FE9147F8AAA4DE676C190F680F47AE2; - remoteInfo = "React-RCTLinking"; + remoteGlobalIDString = 4F265533AAB7C8985856EC78A33164BB; + remoteInfo = "React-RCTImage"; }; CAAEE7A21CB80F6BF942643AE53B944E /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -3917,12 +3829,19 @@ remoteGlobalIDString = 1BEE828C124E6416179B904A9F66D794; remoteInfo = React; }; - CC9DD5A71683480DC302027FE35F2FBB /* PBXContainerItemProxy */ = { + CB370270F808F1CB3064348AE9E9DE1A /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = EAB05A8BED2CAC923712E1C584AEB299; - remoteInfo = "react-native-keyboard-tracking-view"; + remoteGlobalIDString = D39AB631E8050865DE01F6D5678797D2; + remoteInfo = "react-native-jitsi-meet"; + }; + CC9D3E76D2D8DB82BE8D2447A3259AB0 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = CA400829100F0628EC209FBB08347D42; + remoteInfo = "react-native-notifications"; }; CD13E8227960B07BA93BD3A6A40F0B23 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -3931,12 +3850,26 @@ remoteGlobalIDString = 4F265533AAB7C8985856EC78A33164BB; remoteInfo = "React-RCTImage"; }; - CD53B528E594BC14F2CC5010535021C8 /* PBXContainerItemProxy */ = { + CDE6797A8491FE4BDAE2DBF8CDC222E7 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 6C1893932A69822CBE3502F2E0BCFB6D; - remoteInfo = EXConstants; + remoteGlobalIDString = 53D121F9F9BB0F8AC1C94A12C5A8572F; + remoteInfo = "React-RCTVibration"; + }; + CE49C41BD3E5F46B7337E9FB1703F254 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = ED2506AE7DE35D654F61254441EA7155; + remoteInfo = "boost-for-react-native"; + }; + CEE0D3B5AD154153D69A261E9E50C1AF /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = E7E7CE52C8C68B17224FF8C262D80ABF; + remoteInfo = RCTRequired; }; CEEAB0ABDC6919813DC4584C776CA72F /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -3952,6 +3885,20 @@ remoteGlobalIDString = 6D979AB5FDA2E858850D9903776A30B3; remoteInfo = "RNImageCropPicker-QBImagePicker"; }; + CFD97ADB04FAA8EB9D569DB8351AF3F8 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = C3496D0495E700CF08A90C41EA8FA4BB; + remoteInfo = FBReactNativeSpec; + }; + D032C49D98300976352FEF0E07880F29 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = A30157FD17984D82FB7B26EE61267BE2; + remoteInfo = RSKImageCropper; + }; D07A2073C8416FD3ABDA2FC695482B1F /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -3959,13 +3906,6 @@ remoteGlobalIDString = 072CEA044D2EF26F03496D5996BBF59F; remoteInfo = Firebase; }; - D10630FBB6986395FB3A724B065C99D6 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 938CCE22F6C4094B3FB6CF1478579E4B; - remoteInfo = "React-RCTAnimation"; - }; D1DD6F0528614F3F6A959C01AB7F7DCB /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -3973,6 +3913,13 @@ remoteGlobalIDString = A4F685BE3CAC127BDCE4E0DBBD88D191; remoteInfo = Folly; }; + D1F0A8A4C0C3F2C03A3D7FBC2575582D /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 0A915EE9D35CA5636731F8763E774951; + remoteInfo = UMCameraInterface; + }; D30AD787E43DE3AC8E24B315F185B31F /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -3980,20 +3927,6 @@ remoteGlobalIDString = 651511D7DA7F07F9FC9AA40A2E86270D; remoteInfo = "React-RCTNetwork"; }; - D30C9932FA170B1BBC715D097E37A3DF /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 11989A5E568B3B69655EE0C13DCDA3F9; - remoteInfo = "React-RCTActionSheet"; - }; - D45DA1DE1F4AF0ADE4B211C2B1AA7E28 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = DA0709CAAD589C6E7963495210438021; - remoteInfo = "React-jsiexecutor"; - }; D465047540D12FD9D95291AE82A76DB9 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -4008,19 +3941,19 @@ remoteGlobalIDString = 1953860EA9853AA2BC8022B242F08512; remoteInfo = SDWebImageWebPCoder; }; - D4D6AC85B65C115CFB2B300260397CE9 /* PBXContainerItemProxy */ = { + D4A70A294D81E5B611ADE015A2C11569 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 8CC4EAA817AA86310D1900F1DAB3580F; - remoteInfo = FBLazyVector; + remoteGlobalIDString = 807428FE76D80865C9F59F3502600E89; + remoteInfo = RNDeviceInfo; }; - D57B9BD5F47E73E6FCBF5D6906B7ECBD /* PBXContainerItemProxy */ = { + D4B08E1D2CB85B75FE2BE5F5DEDA8CFB /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 4D67CFB913D9C3BE37252D50364CD990; - remoteInfo = RNUserDefaults; + remoteGlobalIDString = 47D2E85A78C25869BB13521D8561A638; + remoteInfo = libwebp; }; D59A73644A58ECC04E1987DB3C8A1BC6 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -4029,19 +3962,33 @@ remoteGlobalIDString = FA877ADC442CB19CF61793D234C8B131; remoteInfo = "React-jsi"; }; - D615922E01038169487D18AEAF3B38C9 /* PBXContainerItemProxy */ = { + D5DEF8BAAFC25886A3E1ED2A75629C02 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 7F591BD8674041AAAA4F37DC699B5518; - remoteInfo = KeyCommands; + remoteGlobalIDString = FF879E718031128A75E7DE54046E6219; + remoteInfo = RNReanimated; }; - D7723178548CB2B7C9B71B9717038944 /* PBXContainerItemProxy */ = { + D60A84C162621AE07DA38744864428FC /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 90148E8FD1C445D7A019D504FA8CBC53; - remoteInfo = ReactNativeART; + remoteGlobalIDString = D20469A9A1E5CFB26045EAEBE3F88E5E; + remoteInfo = RCTTypeSafety; + }; + D60BB4A6F82585D1FFC4DF8BBC1A93EE /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 6514D69CB93B41626AE1A05581F97B07; + remoteInfo = "react-native-background-timer"; + }; + D84750D5A401283763418104EB515415 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 7573B71C21FB5F78D28A1F4A184A6057; + remoteInfo = "react-native-keyboard-input"; }; D88726238C500FF73BA8C26C24D566C2 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -4050,12 +3997,12 @@ remoteGlobalIDString = 4402AFF83DBDC4DD07E198685FDC2DF2; remoteInfo = FirebaseCore; }; - D971FCFD393345CBFAA757E31B2F7ED4 /* PBXContainerItemProxy */ = { + D8C4AEF39B9D5A18F26A32D4A59F14CA /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 2B8C13513C1F6D610976B0C8F4402EC1; - remoteInfo = EXAppLoaderProvider; + remoteGlobalIDString = BA3F5E5AA483B263B69601DE2FA269CB; + remoteInfo = "react-native-cameraroll"; }; D9E3EDC835FCF7086651DEA02BD80CC6 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -4064,6 +4011,13 @@ remoteGlobalIDString = 1BEE828C124E6416179B904A9F66D794; remoteInfo = React; }; + DA54FC964BD555F958837AE41C6B1981 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 5EB4B0B6DA6D5C0C3365733BEAA1C485; + remoteInfo = FirebaseCoreDiagnosticsInterop; + }; DA72BD0D2ED3CB12079CDD61E7D8396D /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -4071,12 +4025,33 @@ remoteGlobalIDString = 2BBF7206D7FAC92C82A042A99C4A98F8; remoteInfo = PromisesObjC; }; - DCADF942A17B0426522FD13C276B0584 /* PBXContainerItemProxy */ = { + DB8975158A59C1FD256A5DEFE793CF7E /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = B51433D546A38C51AA781F192E8836F8; - remoteInfo = RNLocalize; + remoteGlobalIDString = D2B5E7DCCBBFB32341D857D01211A1A3; + remoteInfo = nanopb; + }; + DBD0BCFECE46535ED23286752479EAB2 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = D0EFEFB685D97280256C559792236873; + remoteInfo = glog; + }; + DC3B0E5ACCB1F1714177CC5C0899FE25 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = D760AF58E12ABBB51F84160FB02B5F39; + remoteInfo = RNDateTimePicker; + }; + DCA93862F87E7F516E1742A92CD203CC /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = F7845084F0CF03F54107EEF7411760AD; + remoteInfo = UMPermissionsInterface; }; DDC3038F75F2A9519773ABAA55479EB1 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -4106,26 +4081,12 @@ remoteGlobalIDString = D2B5E7DCCBBFB32341D857D01211A1A3; remoteInfo = nanopb; }; - DF237B1C14FC60450B74F1F01A486ACC /* PBXContainerItemProxy */ = { + E05C02F5156051158B4F3FFE95B6F44F /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 18B56DB36E1F066C927E49DBAE590128; - remoteInfo = RNRootView; - }; - DF2DB374B3A85D99ED950B5A961F912B /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 651511D7DA7F07F9FC9AA40A2E86270D; - remoteInfo = "React-RCTNetwork"; - }; - DFF3BF08208CEDD6949335E6B14FF9AE /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = F7D033C4C128EECAA020990641FA985F; - remoteInfo = "React-jsinspector"; + remoteGlobalIDString = 620E05868772C10B4920DC7E324F2C87; + remoteInfo = FirebaseCoreDiagnostics; }; E3DCB3D8F0A533B7BB46EB61E99CA3EE /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -4134,12 +4095,12 @@ remoteGlobalIDString = FA877ADC442CB19CF61793D234C8B131; remoteInfo = "React-jsi"; }; - E442D539FEAEE1540CB5FB7F0D01D5C0 /* PBXContainerItemProxy */ = { + E535117EE9B58CCE58841E18F68A2FCA /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = B53D977A951AFC38B21751B706C1DF83; - remoteInfo = GoogleAppMeasurement; + remoteGlobalIDString = 4402AFF83DBDC4DD07E198685FDC2DF2; + remoteInfo = FirebaseCore; }; E7713748923D5218C5086559D4632CF6 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -4155,12 +4116,19 @@ remoteGlobalIDString = 1BEE828C124E6416179B904A9F66D794; remoteInfo = React; }; - E79D925ED38A19AE09A3F403086AFAD0 /* PBXContainerItemProxy */ = { + E8394011886ADB95EBD25562B3DC3E44 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = ED2506AE7DE35D654F61254441EA7155; - remoteInfo = "boost-for-react-native"; + remoteGlobalIDString = 18B56DB36E1F066C927E49DBAE590128; + remoteInfo = RNRootView; + }; + E89CAEE0C1D45FCAEEA0355FC8749C4E /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = DA0709CAAD589C6E7963495210438021; + remoteInfo = "React-jsiexecutor"; }; E8FD7532463B0528F9CE61138294EC2E /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -4169,12 +4137,33 @@ remoteGlobalIDString = A4F685BE3CAC127BDCE4E0DBBD88D191; remoteInfo = Folly; }; - E9E2B76F491C0B8AAEE93591C2AAB0C7 /* PBXContainerItemProxy */ = { + EB25963328224D2F995EBC0B59A98B67 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 014495932E402CA67C37681988047CA2; - remoteInfo = UMFontInterface; + remoteGlobalIDString = 90148E8FD1C445D7A019D504FA8CBC53; + remoteInfo = ReactNativeART; + }; + ECADD9C57FC2C24C9729ACF2EB4520A8 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = DBCB1B4965863DDD3B9DED9A0918A526; + remoteInfo = UMCore; + }; + ED340E067FF13DD631C5BDEEF990BD4D /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 64F427905796B33B78A704063422979D; + remoteInfo = "rn-fetch-blob"; + }; + ED4FFDF03A7F791ECE325CEF58927A89 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = DBD2D83E10F8B7D3F4E0E34E6A9FCFA6; + remoteInfo = "React-RCTText"; }; EE98A4C80DE900CD0C9ED8195B4EF52D /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -4190,13 +4179,6 @@ remoteGlobalIDString = A4F685BE3CAC127BDCE4E0DBBD88D191; remoteInfo = Folly; }; - EF392EA522E0E67AB8C19F252FED4CB0 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 5EB4B0B6DA6D5C0C3365733BEAA1C485; - remoteInfo = FirebaseCoreDiagnosticsInterop; - }; EF797B6066E1025B5FD8590A476CD8DC /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -4225,13 +4207,6 @@ remoteGlobalIDString = 8D7F5D5DD528D21A72DC87ADA5B12E2D; remoteInfo = GoogleUtilities; }; - F1BA40FD4AD440AE493BF2B47C1766D3 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = D11E74324175FE5B0E78DB046527F233; - remoteInfo = "react-native-document-picker"; - }; F1D31400DE78E76FE461920F078645F1 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -4239,6 +4214,20 @@ remoteGlobalIDString = 1BEE828C124E6416179B904A9F66D794; remoteInfo = React; }; + F299E4C1FDEBD7EC03E9057CB0C9FDF1 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = A30157FD17984D82FB7B26EE61267BE2; + remoteInfo = RSKImageCropper; + }; + F2DAE8BE998CBB5A1F389AE99C3E344E /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 938CCE22F6C4094B3FB6CF1478579E4B; + remoteInfo = "React-RCTAnimation"; + }; F2E57867E76DED400D1A4035EF3D8735 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -4246,19 +4235,12 @@ remoteGlobalIDString = D2B5E7DCCBBFB32341D857D01211A1A3; remoteInfo = nanopb; }; - F4855142B382ACD05A59DF0CF46C3818 /* PBXContainerItemProxy */ = { + F35D79B1129607F270B1836576CC42B6 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 90148E8FD1C445D7A019D504FA8CBC53; - remoteInfo = ReactNativeART; - }; - F496F6DEB262E38D8CC5991FDCF452B3 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 5EB4B0B6DA6D5C0C3365733BEAA1C485; - remoteInfo = FirebaseCoreDiagnosticsInterop; + remoteGlobalIDString = 3FF2E78BB54ED67CA7FAD8DA2590DBEE; + remoteInfo = "react-native-appearance"; }; F56EBC18CB64EE0482444624DFEC06A2 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -4267,26 +4249,12 @@ remoteGlobalIDString = 7ACAA9BE580DD31A5CB9D97C45D9492D; remoteInfo = "React-Core"; }; - F58E9C0CD557DA809C2396644AF8AC4D /* PBXContainerItemProxy */ = { + F605EBE5F57AE02F229D0315FCB29262 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = E7E7CE52C8C68B17224FF8C262D80ABF; - remoteInfo = RCTRequired; - }; - F5D0260C013F2B3488021156DA80579F /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = D39AB631E8050865DE01F6D5678797D2; - remoteInfo = "react-native-jitsi-meet"; - }; - F605FEAA7FF91685D4CBEB26A930DE0F /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = B53D977A951AFC38B21751B706C1DF83; - remoteInfo = GoogleAppMeasurement; + remoteGlobalIDString = C0E41540D6862472ED7F2FA11669BE1F; + remoteInfo = Crashlytics; }; F60823557509BCBAD04769F2DE3B592E /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -4295,13 +4263,6 @@ remoteGlobalIDString = 2AB2EF542954AB1C999E03BFEF8DE806; remoteInfo = DoubleConversion; }; - F6223F598A76240BEDAFB92BA95E0A1F /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 1BEE828C124E6416179B904A9F66D794; - remoteInfo = React; - }; F6A14184DE3C02C257A7298719E4FD9B /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -4309,13 +4270,6 @@ remoteGlobalIDString = 4402AFF83DBDC4DD07E198685FDC2DF2; remoteInfo = FirebaseCore; }; - F72B235F97EAAE3DB0744CDCCA33D871 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = D20469A9A1E5CFB26045EAEBE3F88E5E; - remoteInfo = RCTTypeSafety; - }; F84AAAA2C19F25EDD3EC2AACB0E9E389 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -4323,12 +4277,12 @@ remoteGlobalIDString = F7845084F0CF03F54107EEF7411760AD; remoteInfo = UMPermissionsInterface; }; - F982974C418EF2993CCA54CD8CEC6127 /* PBXContainerItemProxy */ = { + F8A30A3F9D5957049C28AA63A15A8EE0 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 680299219D3A48D42A648AF6706275A9; - remoteInfo = "React-RCTSettings"; + remoteGlobalIDString = 2B25F90D819B9ADF2AF2D8733A890333; + remoteInfo = Yoga; }; F9BC7D28AD87790D95A38C36E89FA025 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -4337,19 +4291,26 @@ remoteGlobalIDString = 7ACAA9BE580DD31A5CB9D97C45D9492D; remoteInfo = "React-Core"; }; - FA02DC1DD0C9F82A246AB74FF55D0A7E /* PBXContainerItemProxy */ = { + FB2D287059141D0A6D7D700C9FB26FFC /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = F7845084F0CF03F54107EEF7411760AD; - remoteInfo = UMPermissionsInterface; + remoteGlobalIDString = 680299219D3A48D42A648AF6706275A9; + remoteInfo = "React-RCTSettings"; }; - FB5E89643D68A7E72BE8122FBA5ABCA0 /* PBXContainerItemProxy */ = { + FB409462FFCCDF773439CC82A13814BA /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = F4F25FCAC51B51FD5F986EB939BF1F87; - remoteInfo = GoogleDataTransportCCTSupport; + remoteGlobalIDString = E16E206437995280D349D4B67695C894; + remoteInfo = "React-CoreModules"; + }; + FB6F4B71AB74690D0E4AFAE2A65709AC /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = E7E7CE52C8C68B17224FF8C262D80ABF; + remoteInfo = RCTRequired; }; FC21EA40C24BBDB20C2BE4568BC0017C /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -4365,2382 +4326,2348 @@ remoteGlobalIDString = 1BEE828C124E6416179B904A9F66D794; remoteInfo = React; }; - FCD52B5338048D41345321CB3118509F /* PBXContainerItemProxy */ = { + FF10D968B59D41EF86B95694406263F2 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 8D18C49071FC5370C25F5758A85BA5F6; - remoteInfo = "react-native-webview"; + remoteGlobalIDString = 96150F524B245896B800F84F369A9A5A; + remoteInfo = RNVectorIcons; }; - FF39E49B545FB42B5BF77196BEF69CA6 /* PBXContainerItemProxy */ = { + FF8F256ECBA36E9E4991B29CF9AED8A5 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 938CCE22F6C4094B3FB6CF1478579E4B; - remoteInfo = "React-RCTAnimation"; + remoteGlobalIDString = 2BBF7206D7FAC92C82A042A99C4A98F8; + remoteInfo = PromisesObjC; }; - FFDB5E89FEF5669E55EB262808E55E3C /* PBXContainerItemProxy */ = { + FFD6AF73DCAC73B5A2FCCC22B7F2E4D0 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = B6D5DD49633DFF0657B8C3F08EB3ABA9; - remoteInfo = ReactCommon; + remoteGlobalIDString = F7D033C4C128EECAA020990641FA985F; + remoteInfo = "React-jsinspector"; }; /* End PBXContainerItemProxy section */ /* Begin PBXFileReference section */ - 000D1EE6AF522BF6084E80F1E613279E /* 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; }; + 00012AD6965A813C30EA32ECA359C3BD /* RCTAssert.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTAssert.m; sourceTree = ""; }; 001B7F2F6A312651D3606F252836C2F5 /* demangle.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = demangle.cc; path = src/demangle.cc; sourceTree = ""; }; - 0046B30F885A1A0AC9AFF1616909513E /* RNDateTimePicker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNDateTimePicker.h; path = ios/RNDateTimePicker.h; sourceTree = ""; }; - 004B471228792A1EFEE67D01BA11994F /* BSG_KSCrashReportStore.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BSG_KSCrashReportStore.m; sourceTree = ""; }; + 001F2E7F1DE84E22E6A02B9950856962 /* RCTImageUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageUtils.h; path = Libraries/Image/RCTImageUtils.h; sourceTree = ""; }; + 0029453304E7C56ECEA5D8239AE01BDA /* react-native-jitsi-meet-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "react-native-jitsi-meet-prefix.pch"; sourceTree = ""; }; + 006460EA0650490D0C00C3D9A1657D8C /* RCTNativeModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTNativeModule.h; sourceTree = ""; }; 0078CF9DAC8CC4187F6E291B8F51727E /* SDImageIOAnimatedCoder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageIOAnimatedCoder.h; path = SDWebImage/Core/SDImageIOAnimatedCoder.h; sourceTree = ""; }; 00A08DD362055E20F1FB0559D19644E4 /* GDTCORStoredEvent.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GDTCORStoredEvent.m; path = GoogleDataTransport/GDTCORLibrary/GDTCORStoredEvent.m; sourceTree = ""; }; - 00AFBA4ABCDEA52552CE6DEE889952A8 /* RNFetchBlob.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNFetchBlob.h; sourceTree = ""; }; - 00CCFE3233440987FB59571F1101034A /* RCTJavaScriptLoader.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTJavaScriptLoader.mm; sourceTree = ""; }; - 00E88DCCC45AE7E2AD5AD3CF3AB8A7CE /* UMDefines.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMDefines.h; path = UMCore/UMDefines.h; sourceTree = ""; }; + 00AAB01200B5833E4E94C35D688A3105 /* React-jsiexecutor-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-jsiexecutor-prefix.pch"; sourceTree = ""; }; + 00C4D903ACCC5E760024CF200CD44699 /* EXLocationRequester.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXLocationRequester.m; path = EXPermissions/EXLocationRequester.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; }; - 0137CAA805D11FAE4912C547CDCD8305 /* BSG_KSCrashReportWriter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashReportWriter.h; sourceTree = ""; }; - 014DC72B8494508C63AE4AF36F3FB746 /* RNDeviceInfo-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNDeviceInfo-prefix.pch"; sourceTree = ""; }; + 012F4462BB9C07820206BE66B1F20D80 /* RCTGIFImageDecoder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTGIFImageDecoder.h; path = Libraries/Image/RCTGIFImageDecoder.h; sourceTree = ""; }; 014FBCA79FB8FD0C06F5F4EBBC1B6BE8 /* FIRInstanceIDVersionUtilities.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstanceIDVersionUtilities.m; path = Firebase/InstanceID/FIRInstanceIDVersionUtilities.m; sourceTree = ""; }; 0162C892BDD766E04E2714F47090AB60 /* FIRApp.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRApp.m; path = FirebaseCore/Sources/FIRApp.m; sourceTree = ""; }; - 0178F3CC133D66F2F71B9D64FF0082E1 /* QBImagePickerController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = QBImagePickerController.h; path = ios/QBImagePicker/QBImagePicker/QBImagePickerController.h; sourceTree = ""; }; + 017AA1EC0956C3075F84099B5F9EE844 /* EXDownloadDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXDownloadDelegate.h; path = EXFileSystem/EXDownloadDelegate.h; sourceTree = ""; }; 017CC1B34A00D5D000439D51172861CF /* FIROptions.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIROptions.h; path = FirebaseCore/Sources/Public/FIROptions.h; sourceTree = ""; }; - 01C506B0E0D7455EBDDC6171B896BCDE /* ARTPattern.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = ARTPattern.m; sourceTree = ""; }; - 01C7D09FC34435AADB05B98A7299757D /* YGStyle.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YGStyle.h; path = yoga/YGStyle.h; sourceTree = ""; }; - 01DDFF5FAC484AEC4F0EABD558E7F39E /* REATransformNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REATransformNode.h; sourceTree = ""; }; - 01E4D35D3B6F72A2421299BAF890CA44 /* EXConstants-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "EXConstants-prefix.pch"; sourceTree = ""; }; + 01C7091A1372E1B06A1D9C51EF288892 /* 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; }; + 01F3DCCBAF4F375B15B6C53ED8AFED57 /* RCTTransformAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTransformAnimatedNode.h; sourceTree = ""; }; 01FEFA98B5E8668AD537CEE144C68D35 /* FIRInstallationsKeychainUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstallationsKeychainUtils.h; path = FirebaseInstallations/Source/Library/SecureStorage/FIRInstallationsKeychainUtils.h; sourceTree = ""; }; - 020312D89B043D8BDC95D91DF532DD89 /* ReactNativeART.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = ReactNativeART.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - 024D1505352512990079B9D8899E5BD7 /* ARTText.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ARTText.h; path = ios/ARTText.h; sourceTree = ""; }; - 029B7C4BD1C808427749DF3CBBFF33C0 /* BugsnagMetaData.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagMetaData.m; sourceTree = ""; }; + 0241DD171AA09A9F252F7880C4B31025 /* RCTTrackingAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTTrackingAnimatedNode.m; sourceTree = ""; }; + 02A52C18AFAA01DCA83FB5093702078F /* RCTTurboModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTurboModule.h; sourceTree = ""; }; 02B92AD44CE84D68E6DC4BD460DA089D /* Fabric.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Fabric.framework; path = iOS/Fabric.framework; sourceTree = ""; }; - 02C59C4B6554A3680218B0041D625C73 /* RCTBridge+Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RCTBridge+Private.h"; sourceTree = ""; }; - 02EF78E7DCBF02EDF3AE8C96BA83811D /* RNFirebaseFirestoreDocumentReference.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNFirebaseFirestoreDocumentReference.h; sourceTree = ""; }; - 02F725A207A9E435E47C3A0729C45139 /* RNPanHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNPanHandler.m; sourceTree = ""; }; - 035B11053E82BAF8EC1FA090128DF97C /* RNDeviceInfo.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNDeviceInfo.m; path = ios/RNDeviceInfo/RNDeviceInfo.m; sourceTree = ""; }; - 0367DB380611B790C05380EFBD852273 /* SRHash.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = SRHash.m; sourceTree = ""; }; + 02CDFF93B047B472A8624B224BCE7384 /* EXFileSystem.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = EXFileSystem.xcconfig; sourceTree = ""; }; + 02DE7ACDA4AB69D6585B22F198B5CEEE /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; + 02E7207020757F9A3FB2E5177DC30328 /* RCTConvert+UIBackgroundFetchResult.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RCTConvert+UIBackgroundFetchResult.m"; sourceTree = ""; }; + 02EFE8D80FE7265F2A7983DF4324BDE5 /* react-native-appearance.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "react-native-appearance.xcconfig"; sourceTree = ""; }; + 02F089C12B3B670F8597FF9EDB6EE0EF /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; + 030BD91C556FD99E868650A4DAAB9B7B /* ObservingInputAccessoryView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = ObservingInputAccessoryView.m; path = lib/ObservingInputAccessoryView.m; sourceTree = ""; }; + 0324AFEAF677ABDDC5DF2C723CB58373 /* LongLivedObject.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = LongLivedObject.cpp; path = turbomodule/core/LongLivedObject.cpp; sourceTree = ""; }; + 032A3A60C74E36C608A3A1B273340DE1 /* RCTModuleMethod.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTModuleMethod.mm; sourceTree = ""; }; + 032AFD590E849D0D137615D857D6D010 /* REAConcatNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REAConcatNode.m; sourceTree = ""; }; + 032E268394E8AFE22A18149586AE8168 /* RCTSlider.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSlider.h; sourceTree = ""; }; + 03367196CD80CDE7E055E609C9A13BF2 /* 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; }; + 03598506A4C272FF566CC0BCDFC4EDD0 /* EXVideoManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = EXVideoManager.m; sourceTree = ""; }; 037048A23ACDD15887BD75AFB6F14662 /* GDTCCTPrioritizer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCCTPrioritizer.h; path = GoogleDataTransportCCTSupport/GDTCCTLibrary/Private/GDTCCTPrioritizer.h; sourceTree = ""; }; 037F5EC90407C5CE3418149B6C7A824B /* utils.c */ = {isa = PBXFileReference; includeInIndex = 1; name = utils.c; path = src/utils/utils.c; sourceTree = ""; }; 0383EBC057B08B3B4D8E2D06F7D33F38 /* GULNetworkMessageCode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULNetworkMessageCode.h; path = GoogleUtilities/Network/Private/GULNetworkMessageCode.h; sourceTree = ""; }; - 03C2AD1FC34E990747B1A8212A73590A /* RCTPerformanceLogger.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTPerformanceLogger.m; sourceTree = ""; }; + 03BE05ED68AA7E760BCA2C1DCCA745F4 /* DeviceUID.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = DeviceUID.m; path = ios/RNDeviceInfo/DeviceUID.m; sourceTree = ""; }; 03D64694CDD23D5AA5D2926DA6659EED /* 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 = ""; }; - 03E28836948D6527F365ADF367C7BC50 /* RNBootSplash.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RNBootSplash.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - 04401F754D467E27089BDCB37E19F6C3 /* RCTScrollContentShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTScrollContentShadowView.h; sourceTree = ""; }; - 04ADE75A9E0641EB8D97A1CF7AC4079C /* React-cxxreact.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-cxxreact.xcconfig"; sourceTree = ""; }; + 03DDE00F106E1098206D051ED5939082 /* zh-Hans.lproj */ = {isa = PBXFileReference; includeInIndex = 1; name = "zh-Hans.lproj"; path = "ios/QBImagePicker/QBImagePicker/zh-Hans.lproj"; sourceTree = ""; }; + 03FD0AB819F302C3EF4B3D524AB5B742 /* 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; }; + 04014F2F5BB5AC05629CDB1EA3F6C1E7 /* RCTPerformanceLogger.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTPerformanceLogger.h; sourceTree = ""; }; + 042F8046425845024B7B158054E637AC /* RCTBaseTextInputShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBaseTextInputShadowView.h; sourceTree = ""; }; + 043EA52813F5F81394AD6B3DF3AAF24C /* REAJSCallNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REAJSCallNode.m; sourceTree = ""; }; + 04492B680609A54B99BF01D684667ED7 /* BSG_KSCrashIdentifier.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashIdentifier.h; sourceTree = ""; }; + 0491756833ED7A5A5B6358687356636D /* 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; }; + 04DECA7B079BEC5C2F5F5FC292BDED8B /* RCTBridge.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTBridge.m; sourceTree = ""; }; + 04F8DB5B837E32C73A91A7D3076ADC08 /* BSG_KSCrashSentry_MachException.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSCrashSentry_MachException.c; sourceTree = ""; }; 0500B10E6BA68DF16917B05F920FA4CE /* 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 = ""; }; - 05553CE576B9B4B0EA5F0A96C92D6F48 /* UMTaskLaunchReason.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMTaskLaunchReason.h; path = UMTaskManagerInterface/UMTaskLaunchReason.h; sourceTree = ""; }; - 058D84BCAA61F6630D0509EF179C31FD /* UMReactNativeAdapter-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "UMReactNativeAdapter-dummy.m"; sourceTree = ""; }; - 05AFC2863FDD469C17B1DB2123F22259 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; - 05C3386266A82A155F4CD3421B3F06F9 /* EXVideoView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = EXVideoView.m; sourceTree = ""; }; + 0503ED22B6C0FF8DE4927EEE03963BFC /* REABlockNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REABlockNode.h; sourceTree = ""; }; + 0523512581D72F0977D54C1E21C22E7B /* BSG_KSCrashContext.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashContext.h; sourceTree = ""; }; + 052F0D9D272AAEFECC957E6CB8B04DF8 /* 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; }; + 053E12B6FE85A8F6D4D8B0558869991B /* RCTScrollView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTScrollView.h; sourceTree = ""; }; + 05478CF18D13F38BADF007E74C20948D /* event.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = event.cpp; sourceTree = ""; }; + 056F905D99CA1946F7FD9A5CE9F95DBA /* RCTSafeAreaViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSafeAreaViewManager.h; sourceTree = ""; }; + 0596D4E6DBEDA918A70DFA8B4498AF30 /* RCTModalHostViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTModalHostViewController.h; sourceTree = ""; }; + 05A178309018FA80769AE521310F22DB /* RNGestureHandlerManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNGestureHandlerManager.h; path = ios/RNGestureHandlerManager.h; sourceTree = ""; }; 05D21B2E62B525961EA9BE1309FB1D32 /* Unicode.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = Unicode.cpp; path = folly/Unicode.cpp; sourceTree = ""; }; 05F2BC055A4813F5A29FBD88A3F3261D /* FBLPromise+Then.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "FBLPromise+Then.m"; path = "Sources/FBLPromises/FBLPromise+Then.m"; sourceTree = ""; }; 0605FB329064F4B740AB3DA84343A94A /* vp8_dec.c */ = {isa = PBXFileReference; includeInIndex = 1; name = vp8_dec.c; path = src/dec/vp8_dec.c; sourceTree = ""; }; - 060D1E09824A6BDCFA363B597162E89F /* JSCallInvoker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = JSCallInvoker.h; path = jscallinvoker/ReactCommon/JSCallInvoker.h; sourceTree = ""; }; + 061E6228DDEA6938940BACBB7B79F537 /* React-CoreModules-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-CoreModules-prefix.pch"; sourceTree = ""; }; + 0623F5CE520BFB95831739B983C72876 /* ARTRadialGradient.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = ARTRadialGradient.m; sourceTree = ""; }; + 06248AFAA54B8CE7BFFFE1EA6FA9E152 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; 064078AF10DF91404B3DE14C08B4C6D7 /* filters_utils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = filters_utils.h; path = src/utils/filters_utils.h; sourceTree = ""; }; 06489499588BFA8FD5E63DD6375CD533 /* libFolly.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libFolly.a; path = libFolly.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 065C8F01086220491452ABD97A3093AA /* React-RCTVibration-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-RCTVibration-prefix.pch"; sourceTree = ""; }; 06736283C77882D931377C3AF94D64FD /* FIRInstallationsIIDStore.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstallationsIIDStore.h; path = FirebaseInstallations/Source/Library/IIDMigration/FIRInstallationsIIDStore.h; sourceTree = ""; }; - 067B0383F3335B0CC6705EF1ED57726D /* TurboModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TurboModule.h; path = turbomodule/core/TurboModule.h; sourceTree = ""; }; 068267BE04ED7FFA08E2A827F9406A85 /* RSKImageCropViewController+Protected.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "RSKImageCropViewController+Protected.h"; path = "RSKImageCropper/RSKImageCropViewController+Protected.h"; sourceTree = ""; }; - 06838361DB5743523DF21901D2F16D10 /* RCTValueAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTValueAnimatedNode.m; sourceTree = ""; }; - 068DD97BE9C269FD40A197EF8547742A /* JsArgumentHelpers.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = JsArgumentHelpers.h; sourceTree = ""; }; 0695A738C7F41C79A285AD67DCD00EE2 /* SDAnimatedImageView+WebCache.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "SDAnimatedImageView+WebCache.m"; path = "SDWebImage/Core/SDAnimatedImageView+WebCache.m"; sourceTree = ""; }; - 06AC030B2EA1E86AE0CDA3C4CD57B831 /* RCTModuleData.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTModuleData.mm; sourceTree = ""; }; + 06D6EDCFEB477FDB58E6F2DC33693C91 /* React-RCTNetwork-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-RCTNetwork-prefix.pch"; sourceTree = ""; }; 06E1729FCDB517FF8E598520953361E3 /* SDImageCache.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageCache.m; path = SDWebImage/Core/SDImageCache.m; sourceTree = ""; }; 06F15669F5B860FA4E51821B5C31DD25 /* GDTCCTNanopbHelpers.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCCTNanopbHelpers.h; path = GoogleDataTransportCCTSupport/GDTCCTLibrary/Private/GDTCCTNanopbHelpers.h; sourceTree = ""; }; 06FC5C9CF96D60C50FCD47D339C91951 /* libnanopb.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libnanopb.a; path = libnanopb.a; sourceTree = BUILT_PRODUCTS_DIR; }; + 070429B06A32B526D719C22C0ED95B89 /* UMConstantsInterface.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMConstantsInterface.xcconfig; sourceTree = ""; }; 0707F165A40293C90DB9DB10B0433839 /* enc_sse41.c */ = {isa = PBXFileReference; includeInIndex = 1; name = enc_sse41.c; path = src/dsp/enc_sse41.c; sourceTree = ""; }; 070C05407939F9DFE5B7ED06A3FE346E /* FBLPromise+Wrap.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "FBLPromise+Wrap.m"; path = "Sources/FBLPromises/FBLPromise+Wrap.m"; sourceTree = ""; }; + 071AA34BD25C821E40C621307ACA926E /* RCTAnimationUtils.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTAnimationUtils.m; sourceTree = ""; }; + 071AFD7AB7088D24B07F5F05029CC241 /* RNFastImage.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RNFastImage.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 07209CEE98FCE4A92F6952E84C9631E6 /* UMBarCodeScannerProviderInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMBarCodeScannerProviderInterface.h; path = UMBarCodeScannerInterface/UMBarCodeScannerProviderInterface.h; sourceTree = ""; }; 0723D9254A0FF8AAD5189C6A5CDB013B /* FIRComponentContainer.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRComponentContainer.m; path = FirebaseCore/Sources/FIRComponentContainer.m; sourceTree = ""; }; - 073C093FE8E2A5C5508B85D1287049D7 /* RCTFileReaderModule.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTFileReaderModule.m; sourceTree = ""; }; + 073F30BB95FEBD162501E3C3E40BFE22 /* RCTBaseTextViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBaseTextViewManager.h; sourceTree = ""; }; + 07436AC34D3C651F8C4B86BFCF86FA9B /* EXReactNativeUserNotificationCenterProxy.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXReactNativeUserNotificationCenterProxy.h; path = EXPermissions/EXReactNativeUserNotificationCenterProxy.h; sourceTree = ""; }; + 07443A38AA394574B8222DBCEF0AB663 /* RCTImageLoader.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTImageLoader.mm; sourceTree = ""; }; 0752B852E884FC47B65B0C2D2105EE8E /* WebRTC.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = WebRTC.framework; path = Frameworks/WebRTC.framework; sourceTree = ""; }; - 0762C4F48C07AF4FCD42EBD0FCD533D0 /* BSG_RFC3339DateTool.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BSG_RFC3339DateTool.m; sourceTree = ""; }; - 077917B1D3903CB3C07616C204CE5396 /* React-RCTLinking.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-RCTLinking.xcconfig"; sourceTree = ""; }; + 0766E85126F49BB645BDB3C0CE05B4EF /* FontAwesome5_Brands.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = FontAwesome5_Brands.ttf; path = Fonts/FontAwesome5_Brands.ttf; sourceTree = ""; }; + 078C92FD17E4E6B9FCD402E23D22D09D /* RCTPackagerConnection.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTPackagerConnection.h; sourceTree = ""; }; + 078E1A116DFEF74C56BE72D549086645 /* RCTDecayAnimation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTDecayAnimation.h; sourceTree = ""; }; 079482D8D03370ABEA3B4293E9E0F902 /* buffer_dec.c */ = {isa = PBXFileReference; includeInIndex = 1; name = buffer_dec.c; path = src/dec/buffer_dec.c; sourceTree = ""; }; - 07C3DCD3D67D3BF60A73E76C19167830 /* RCTLinkingManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTLinkingManager.m; sourceTree = ""; }; - 07DE8A314E976D752E59F46B935D6F02 /* ARTSurfaceViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = ARTSurfaceViewManager.h; sourceTree = ""; }; - 0803A4640DC09A380D8F0B812B56AFC0 /* RNPushKitEventListener.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNPushKitEventListener.m; path = RNNotifications/RNPushKitEventListener.m; sourceTree = ""; }; - 082483C70AE10A5F45C50C7794177471 /* UMModuleRegistryProvider.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMModuleRegistryProvider.h; sourceTree = ""; }; + 07F75FBFC7731268C1D8D4D2F3601DCD /* React-cxxreact-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-cxxreact-prefix.pch"; sourceTree = ""; }; + 07FBA55D74E173238E33A16C344F642F /* RCTDiffClampAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTDiffClampAnimatedNode.m; sourceTree = ""; }; + 08132FDEEE869B5DDF9F2BC2D1A2A924 /* REATransition.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REATransition.m; sourceTree = ""; }; + 08215ED1667C22CEC03E00D608044BFF /* RCTMultipartStreamReader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTMultipartStreamReader.h; sourceTree = ""; }; + 08269F5E1ADC589B6299F651DDDCAA79 /* EXWebBrowser.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXWebBrowser.m; path = EXWebBrowser/EXWebBrowser.m; sourceTree = ""; }; + 083CB40CF18107B6E6F1986B3D9314C8 /* RNTapHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNTapHandler.h; sourceTree = ""; }; 08419E1C07242E0A29A26A675DC67E63 /* FIRInstanceIDTokenFetchOperation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstanceIDTokenFetchOperation.h; path = Firebase/InstanceID/FIRInstanceIDTokenFetchOperation.h; sourceTree = ""; }; - 084B3672643797BE497CAD11608075C3 /* react-native-keyboard-input-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "react-native-keyboard-input-dummy.m"; sourceTree = ""; }; 084DF8B81E62B3FA2DD1A9E2620122EC /* RSKInternalUtility.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RSKInternalUtility.h; path = RSKImageCropper/RSKInternalUtility.h; sourceTree = ""; }; - 0875E1E03475959A72BC0BBB6C3BD7AF /* RCTConvert+UIBackgroundFetchResult.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RCTConvert+UIBackgroundFetchResult.m"; sourceTree = ""; }; - 08AA6966F0622C2865934F4E61FE30C0 /* rn-fetch-blob.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "rn-fetch-blob.xcconfig"; sourceTree = ""; }; + 08785549EF25E1D47BD6FF4EB6DA3892 /* RCTAppState.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTAppState.m; sourceTree = ""; }; 08D1FFC2980C1ED72AE9A4C44A0544C3 /* libreact-native-document-picker.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libreact-native-document-picker.a"; path = "libreact-native-document-picker.a"; sourceTree = BUILT_PRODUCTS_DIR; }; - 08DF799E97B320AEED0FF5F930A34550 /* React-RCTSettings-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-RCTSettings-prefix.pch"; sourceTree = ""; }; + 08E75F1EC103C1D76F0F2963A1A34459 /* RCTTextView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTTextView.m; sourceTree = ""; }; + 08E84F1A9A7782074CA343CC081CE2C1 /* BSG_KSCrashSentry.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashSentry.h; sourceTree = ""; }; 08ECB6371492FBD46314AE3703CD8DAF /* json_pointer.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = json_pointer.cpp; path = folly/json_pointer.cpp; sourceTree = ""; }; - 091F259C74A683B82CFCA07A3599940C /* ReactMarker.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = ReactMarker.cpp; sourceTree = ""; }; - 092912E596DAA8B4FDD2F0531DC4A9F5 /* AudioRecorderManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AudioRecorderManager.h; path = ios/AudioRecorderManager.h; sourceTree = ""; }; - 093E6F234B317B935BCACAEDA5398B30 /* RNFetchBlobFS.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNFetchBlobFS.m; path = ios/RNFetchBlobFS.m; sourceTree = ""; }; - 0988705FB2C65721AEF74736449A7A2B /* LNInterpolable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = LNInterpolable.h; sourceTree = ""; }; - 099476CFEBC4B803BD2735285840C6A1 /* React-CoreModules-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-CoreModules-prefix.pch"; sourceTree = ""; }; + 0907B55ACD583D9BD4842D7018B00535 /* React-RCTActionSheet-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-RCTActionSheet-prefix.pch"; sourceTree = ""; }; + 0942DF135A2CFF8F154CEDA322F03A50 /* React.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = React.xcconfig; sourceTree = ""; }; + 099817EC62B1164C873CB1AEB203D7E1 /* Bitfield.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Bitfield.h; path = yoga/Bitfield.h; sourceTree = ""; }; 099A43376A0723FBD49B492ED1DA139D /* near_lossless_enc.c */ = {isa = PBXFileReference; includeInIndex = 1; name = near_lossless_enc.c; path = src/enc/near_lossless_enc.c; sourceTree = ""; }; 09A8F5B7DA6974622D6C9A6189F7FAEE /* FIRInstallationsIIDTokenStore.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstallationsIIDTokenStore.h; path = FirebaseInstallations/Source/Library/IIDMigration/FIRInstallationsIIDTokenStore.h; sourceTree = ""; }; - 09D030101CDE9E6A70BBF7B7CF9C0D54 /* UMViewManagerAdapter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = UMViewManagerAdapter.m; sourceTree = ""; }; + 09AF128C9D77084F4D4AA8E723EC123D /* 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; }; + 09B5856105EF7C6447B9EC57E7E36B34 /* libEXKeepAwake.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libEXKeepAwake.a; path = libEXKeepAwake.a; sourceTree = BUILT_PRODUCTS_DIR; }; + 09BA6D193F473056C9FF724BDC8D2155 /* READebugNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = READebugNode.m; sourceTree = ""; }; + 09CBFEAA3470958599C4870CC17588C0 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; 09F74600A3F236533A7364611CBCD0A9 /* FBLPromise+Validate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FBLPromise+Validate.h"; path = "Sources/FBLPromises/include/FBLPromise+Validate.h"; sourceTree = ""; }; - 0A33D132A1E8748CF00DEFBF335C393A /* UMViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = UMViewManager.m; path = UMCore/UMViewManager.m; sourceTree = ""; }; - 0A4AE1571D783FDB388F937262F77CB3 /* BSG_KSCrash.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BSG_KSCrash.m; sourceTree = ""; }; + 0A04939F0BE8BD04E3F140CAA04FD5EF /* RNDateTimePickerManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNDateTimePickerManager.m; path = ios/RNDateTimePickerManager.m; sourceTree = ""; }; + 0A1CE5EF7C7C82D6099B3F2F67BE2668 /* YGNodePrint.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YGNodePrint.h; path = yoga/YGNodePrint.h; sourceTree = ""; }; + 0A2BFD50F94AD38AE107E46ACB952D78 /* RCTJavaScriptLoader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTJavaScriptLoader.h; sourceTree = ""; }; 0A50C6F190916F34A6C994F0FA9A369F /* SDImageLoadersManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageLoadersManager.m; path = SDWebImage/Core/SDImageLoadersManager.m; sourceTree = ""; }; - 0A62D7489F27C8A2F94B206B6DE094B0 /* RCTSafeAreaView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSafeAreaView.h; sourceTree = ""; }; - 0AAB16903F6C72F5AC5A5D643B4A9E7B /* RCTSourceCode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSourceCode.h; sourceTree = ""; }; - 0ABA0FEDA324BA525B5DEFBB2DB4CF06 /* RCTConvert+RNNotifications.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "RCTConvert+RNNotifications.h"; path = "RNNotifications/RCTConvert+RNNotifications.h"; sourceTree = ""; }; + 0A7D6F4043A5D4ECF4512F642C43C17A /* RNCSliderManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCSliderManager.h; path = ios/RNCSliderManager.h; sourceTree = ""; }; + 0A89C6896D4F08E8248CFC2F9506CBDD /* RNJitsiMeetViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNJitsiMeetViewManager.m; path = ios/RNJitsiMeetViewManager.m; sourceTree = ""; }; + 0ACADA2C0709063A90146E70C934F3EA /* RNRootView.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNRootView.xcconfig; sourceTree = ""; }; + 0ACB608E847D51BFEF7567016CD38ECC /* JSINativeModules.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = JSINativeModules.cpp; path = jsireact/JSINativeModules.cpp; sourceTree = ""; }; 0ACF31EDEFE1E569CF6189573939269F /* SDWebImageDownloaderOperation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWebImageDownloaderOperation.m; path = SDWebImage/Core/SDWebImageDownloaderOperation.m; sourceTree = ""; }; + 0ADF56430FFD715DB3531F3EADD9C783 /* EXContactsRequester.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXContactsRequester.h; path = EXPermissions/EXContactsRequester.h; sourceTree = ""; }; 0AF863C6208094AACCEA61A2F59700AB /* vp8li_dec.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = vp8li_dec.h; path = src/dec/vp8li_dec.h; sourceTree = ""; }; 0B1BB1A3C8627427538472C2BEF119CE /* FIRInstallationsIIDStore.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstallationsIIDStore.m; path = FirebaseInstallations/Source/Library/IIDMigration/FIRInstallationsIIDStore.m; sourceTree = ""; }; 0B2C19870540C57176CD67F1135A50CA /* yuv.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = yuv.h; path = src/dsp/yuv.h; sourceTree = ""; }; + 0B34C148473052547D211F4B4E03700F /* RCTDeviceInfo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTDeviceInfo.h; sourceTree = ""; }; + 0B3CE9A2BD0AC00010DEDB37BD7F4D1A /* REATransitionValues.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REATransitionValues.h; sourceTree = ""; }; 0B600A9196EDF7F5CE30EAA93665B08F /* GDTCORStorage.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GDTCORStorage.m; path = GoogleDataTransport/GDTCORLibrary/GDTCORStorage.m; sourceTree = ""; }; + 0B85A31F3F82AEF91625230E7A5F0BEC /* RNFirebaseLinks.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNFirebaseLinks.h; sourceTree = ""; }; 0B8C2145C378EBCD15C3B414625FD2D0 /* NSButton+WebCache.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSButton+WebCache.m"; path = "SDWebImage/Core/NSButton+WebCache.m"; sourceTree = ""; }; - 0B99EF89588E39AEB8D0B3013E373B86 /* ARTRenderable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ARTRenderable.h; path = ios/ARTRenderable.h; sourceTree = ""; }; 0B9BD3B6B09CD5A1C2631CF99883907E /* frame_dec.c */ = {isa = PBXFileReference; includeInIndex = 1; name = frame_dec.c; path = src/dec/frame_dec.c; sourceTree = ""; }; - 0BA0A7093A69B8402756E016E4FEBEEB /* JSIndexedRAMBundle.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = JSIndexedRAMBundle.h; sourceTree = ""; }; 0BB0025F1EC6EF96CB0113EBC33D3711 /* SDWebImageOperation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageOperation.h; path = SDWebImage/Core/SDWebImageOperation.h; sourceTree = ""; }; - 0BB9E3C233F176523BAAE5558371F613 /* EXContactsRequester.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXContactsRequester.h; path = EXPermissions/EXContactsRequester.h; sourceTree = ""; }; - 0BCE7BF2A3D165BDF17546EC20DB92AE /* REAModule.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = REAModule.m; path = ios/REAModule.m; sourceTree = ""; }; - 0C029F597750864869A6AF6D6C5CF9B7 /* REABlockNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REABlockNode.m; sourceTree = ""; }; - 0C172CA1DB4E50F47F4A2EB2654A3364 /* UMTaskInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMTaskInterface.h; path = UMTaskManagerInterface/UMTaskInterface.h; sourceTree = ""; }; - 0C2F777EBC4324C29F0BC5D5896D30E8 /* BSG_KSString.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSString.c; sourceTree = ""; }; + 0BD33B0D74A9CC26A84EB1DE14A555F3 /* react-native-document-picker.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "react-native-document-picker.xcconfig"; sourceTree = ""; }; + 0BFE950C765DC0ADE9C93BF29C121691 /* ReactMarker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = ReactMarker.h; sourceTree = ""; }; + 0C089E300BFE39AD22D64D46AF91D37C /* EXHaptics-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "EXHaptics-prefix.pch"; sourceTree = ""; }; + 0C2A9D413C80FCDF3EB55CA1716BD4E5 /* EXAV.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXAV.h; path = EXAV/EXAV.h; sourceTree = ""; }; 0C3136B59B61BB160560C616ED25BC08 /* NSBezierPath+RoundedCorners.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSBezierPath+RoundedCorners.h"; path = "SDWebImage/Private/NSBezierPath+RoundedCorners.h"; sourceTree = ""; }; - 0C317503EC34FB763347286A6E16DF56 /* RNScreens.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RNScreens.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - 0C83F709BB2D0860B2921F9FDFBC4220 /* RNFirebaseFirestore.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNFirebaseFirestore.h; sourceTree = ""; }; - 0CC552347E616F6D1ABDFAEFDF898E95 /* EXPermissions-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "EXPermissions-dummy.m"; sourceTree = ""; }; - 0CE1ECCA6CFB5B862B175CA1BCA57CB5 /* BSGConnectivity.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSGConnectivity.h; sourceTree = ""; }; - 0CFE82396A6955ACDCA2721F798678F0 /* RCTImageUtils.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTImageUtils.m; sourceTree = ""; }; - 0D088E0F5568643AE3AFB3E177FE0508 /* RNDeviceInfo.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RNDeviceInfo.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - 0D3E57938940940A46C88270F28BF7FA /* React-RCTActionSheet-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-RCTActionSheet-prefix.pch"; sourceTree = ""; }; - 0D643F3C2F2AE34AF4787C133ECECE47 /* EXAVPlayerData.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXAVPlayerData.m; path = EXAV/EXAVPlayerData.m; sourceTree = ""; }; - 0D83EE0D42AEC98C55DE1BC5A74A8EB0 /* SharedProxyCxxModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = SharedProxyCxxModule.h; sourceTree = ""; }; - 0D98D5A100FC20D37B5972B51F9A57C3 /* 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; }; + 0C8759B3CC9AE7915986FEE88C9DB0B9 /* RCTRequired.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RCTRequired.xcconfig; sourceTree = ""; }; + 0C9035805E189D647067EF790B3332FC /* RNCSlider.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCSlider.h; path = ios/RNCSlider.h; sourceTree = ""; }; + 0CA55E503F4BF95ED2EDF62A2504C205 /* RNGestureHandler-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNGestureHandler-prefix.pch"; sourceTree = ""; }; + 0CA79E2932EBB980CBD13F423FAF20CB /* React-jsinspector.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-jsinspector.xcconfig"; sourceTree = ""; }; + 0CAFC812CFBEC4222B769385DF27E252 /* BugsnagSessionFileStore.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagSessionFileStore.h; sourceTree = ""; }; + 0CBDEACE8A1F1587BA4A7E95B38FCD9A /* RCTConvert.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTConvert.m; sourceTree = ""; }; + 0CDCBDF89092A1E15CA647D202589047 /* RNFetchBlobReqBuilder.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNFetchBlobReqBuilder.m; path = ios/RNFetchBlobReqBuilder.m; sourceTree = ""; }; + 0D2DE9827B9D6AC0450FC8319D97BE71 /* React-RCTNetwork-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-RCTNetwork-dummy.m"; sourceTree = ""; }; + 0D367356E9EBF149AC388E793D2A57E5 /* RCTSRWebSocket.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCTSRWebSocket.m; path = Libraries/WebSocket/RCTSRWebSocket.m; sourceTree = ""; }; + 0D890CE3F924C1940BAC96B4007D68F5 /* react-native-orientation-locker-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "react-native-orientation-locker-prefix.pch"; sourceTree = ""; }; 0DB662C3FB633BCCF0EFD8EBAEEF8AF1 /* GDTCORClock.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GDTCORClock.m; path = GoogleDataTransport/GDTCORLibrary/GDTCORClock.m; sourceTree = ""; }; - 0DDDE6D32029298B9F3CBB96B9F4BE7B /* experiments.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = experiments.h; sourceTree = ""; }; - 0DF7B600EDB384BB868F44CE0125575D /* BSG_KSCrashSentry_NSException.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BSG_KSCrashSentry_NSException.m; sourceTree = ""; }; + 0DEF7B1DADBA2BAE9E293D2C96C91041 /* RNFetchBlobRequest.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNFetchBlobRequest.m; path = ios/RNFetchBlobRequest.m; sourceTree = ""; }; 0DFCFAD3BB3A6A89D23F127637FA0517 /* SDImageCodersManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageCodersManager.m; path = SDWebImage/Core/SDImageCodersManager.m; sourceTree = ""; }; - 0E241BA696C3CD7E8FC8B617D4DD2211 /* REAClockNodes.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REAClockNodes.h; sourceTree = ""; }; + 0E26F64CB9F929CC0F3579A71B693C15 /* RNDeviceInfo.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNDeviceInfo.m; path = ios/RNDeviceInfo/RNDeviceInfo.m; sourceTree = ""; }; + 0E28FAE9488CB7CF19AACE217AA4095B /* REAStyleNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REAStyleNode.m; sourceTree = ""; }; 0E28FEB864CD8E6FC7A5CD387F3CE7FD /* FIRInstallationsErrors.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstallationsErrors.h; path = FirebaseInstallations/Source/Library/Public/FIRInstallationsErrors.h; sourceTree = ""; }; - 0E3368017A0A22EC37DDEFB6F429708E /* BugsnagUser.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagUser.h; sourceTree = ""; }; - 0E4FC61FDB9C2A7998C8AAA89FF843E4 /* EXReactNativeUserNotificationCenterProxy.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXReactNativeUserNotificationCenterProxy.h; path = EXPermissions/EXReactNativeUserNotificationCenterProxy.h; sourceTree = ""; }; - 0E63261E3978943F422CBC31D4AEC1FE /* REAFunctionNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REAFunctionNode.h; sourceTree = ""; }; + 0E35B60CC9EC81D190B734380F8348F6 /* RNSScreen.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNSScreen.h; path = ios/RNSScreen.h; sourceTree = ""; }; + 0E42A6A4C7DDA96A9CE41E1BC2AF24AC /* UMFontInterface.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = UMFontInterface.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; 0E711CC040CB2C9B6660541E7C73B310 /* GDTCORConsoleLogger.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCORConsoleLogger.h; path = GoogleDataTransport/GDTCORLibrary/Public/GDTCORConsoleLogger.h; sourceTree = ""; }; + 0E7647CB0F78CB90AE2964BE8EF5E6B2 /* RNFirebaseDatabaseReference.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNFirebaseDatabaseReference.m; sourceTree = ""; }; + 0E78EEBD99D652B1C1789771217FD6CF /* RCTVersion.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTVersion.m; sourceTree = ""; }; + 0E9BD1CBC9CD59E172AEF359B0F56014 /* React-Core-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-Core-prefix.pch"; sourceTree = ""; }; + 0EA1512F9531252A0ABA2D3F0060F5DD /* RCTAssert.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTAssert.h; sourceTree = ""; }; + 0ED61C842590DBA7937D308C0B6804EA /* QBVideoIconView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = QBVideoIconView.m; path = ios/QBImagePicker/QBImagePicker/QBVideoIconView.m; sourceTree = ""; }; + 0EFDE0F540ECDC4B29AFFD10654D7EF7 /* RNTapHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNTapHandler.m; sourceTree = ""; }; + 0F1C297A0F73DDF5436BBCA26B8442AC /* EXAudioSessionManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXAudioSessionManager.m; path = EXAV/EXAudioSessionManager.m; sourceTree = ""; }; + 0F1D5ED9C4FD4D89EA62D27A4E52FE63 /* EXFileSystemAssetLibraryHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXFileSystemAssetLibraryHandler.m; path = EXFileSystem/EXFileSystemAssetLibraryHandler.m; sourceTree = ""; }; + 0F1EAFD9D9BF3E2258F2B5D3E4FB0EAF /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; 0F2BEB3203326DA9994D2329F5515A34 /* ssim_sse2.c */ = {isa = PBXFileReference; includeInIndex = 1; name = ssim_sse2.c; path = src/dsp/ssim_sse2.c; sourceTree = ""; }; + 0F313C739AD2E4FC435D56A8A9607272 /* EXLocationRequester.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXLocationRequester.h; path = EXPermissions/EXLocationRequester.h; sourceTree = ""; }; 0F354B2F01F2D88BF64EFB54C7F55D9B /* vlog_is_on.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = vlog_is_on.cc; path = src/vlog_is_on.cc; sourceTree = ""; }; - 0F4B3BA31DCDC79BBCB27289BAA13917 /* RCTUIImageViewAnimated.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTUIImageViewAnimated.h; path = Libraries/Image/RCTUIImageViewAnimated.h; sourceTree = ""; }; - 0F5997A4901A1634A198FB4158C8253D /* Zocial.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = Zocial.ttf; path = Fonts/Zocial.ttf; sourceTree = ""; }; + 0F582AF6EFF217637358B4EB1B0531DA /* BugsnagSessionTrackingApiClient.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagSessionTrackingApiClient.m; sourceTree = ""; }; + 0F61D4BF713EFC630F1A3B9525D0E4A8 /* RNNotifications.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNNotifications.h; path = RNNotifications/RNNotifications.h; sourceTree = ""; }; 0F838A60D7566E3ED6EAAAB29782AD39 /* quant_dec.c */ = {isa = PBXFileReference; includeInIndex = 1; name = quant_dec.c; path = src/dec/quant_dec.c; sourceTree = ""; }; - 0F8CDB7251C4DD0DAF59A86C804B856C /* BSG_KSMachApple.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSMachApple.h; sourceTree = ""; }; - 0FBA2A384AB19326CEDB1B9DFEAEE9B3 /* UMModuleRegistry.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = UMModuleRegistry.m; sourceTree = ""; }; - 1005BB3173B8FDA44E6FD8B761F5DD63 /* RCTDiffClampAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTDiffClampAnimatedNode.h; sourceTree = ""; }; - 101E0C5F993CFDA8DE70331408FD6286 /* RNJitsiMeetViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNJitsiMeetViewManager.h; path = ios/RNJitsiMeetViewManager.h; sourceTree = ""; }; + 0FE4A35B3060C6FAFB1CEA413EF89E21 /* RCTNetInfo.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTNetInfo.m; sourceTree = ""; }; + 0FEBC42AB2D87FD0C0000531A1E7CCCA /* JSBundleType.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = JSBundleType.cpp; sourceTree = ""; }; + 0FF4C273A6A8B5CE4DDB5A8BFBBE0FF4 /* RNFetchBlobNetwork.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNFetchBlobNetwork.h; path = ios/RNFetchBlobNetwork.h; sourceTree = ""; }; + 0FF997E32FD2CA8E9A901A519160E7FF /* BSG_KSCrashSentry_MachException.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashSentry_MachException.h; sourceTree = ""; }; + 10208D64F55D2D410966A16D3ADDD4E6 /* RNFirebaseFirestoreCollectionReference.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNFirebaseFirestoreCollectionReference.h; sourceTree = ""; }; 102D559173B1A82E75F05608FC7771F9 /* 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 = ""; }; 10518D1EE8B03DD5443764694A2E2192 /* libwebp-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "libwebp-prefix.pch"; sourceTree = ""; }; 106194880B0291DBB2CB25096A7764E5 /* RSKImageCropper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RSKImageCropper.h; path = RSKImageCropper/RSKImageCropper.h; sourceTree = ""; }; - 106AF01BC69D72B6002781D8A758CBB9 /* ARTShape.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ARTShape.h; path = ios/ARTShape.h; sourceTree = ""; }; + 1074444495BF746087735B3410FCF659 /* RNCWebViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCWebViewManager.m; path = ios/RNCWebViewManager.m; sourceTree = ""; }; 108BA2E99330882B915006784045B5A9 /* UIImage+ExtendedCacheData.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIImage+ExtendedCacheData.h"; path = "SDWebImage/Core/UIImage+ExtendedCacheData.h"; sourceTree = ""; }; 108CB420FAB407BE3178EAEC6141D97E /* FIRBundleUtil.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRBundleUtil.h; path = FirebaseCore/Sources/FIRBundleUtil.h; sourceTree = ""; }; - 109E17A268FE8F02B5D35C6162B39DEE /* BSG_KSCrashReportFilter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashReportFilter.h; sourceTree = ""; }; - 10A8C4C742967569EE3A18C53C9DDE76 /* decorator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = decorator.h; sourceTree = ""; }; - 10B080B2C16168A95CE68EF1378B8A6F /* SRDelegateController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = SRDelegateController.h; sourceTree = ""; }; - 10C97D20E86E939D1862FE86B3C6050C /* RCTRootContentView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTRootContentView.h; sourceTree = ""; }; - 10D2A737518C498B3BC1A2397F60DD1E /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; - 10FF2B32A6B1C7C5562295785C219026 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; - 10FFBF48D3E94CA67AB4FEA6086D0FF9 /* FBReactNativeSpec.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = FBReactNativeSpec.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - 1107E9928ACA566771642BF6777A8CCC /* RCTRootShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTRootShadowView.m; sourceTree = ""; }; + 1097A5B451F9E63CC3C2F2455BA500D7 /* Foundation.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = Foundation.ttf; path = Fonts/Foundation.ttf; sourceTree = ""; }; + 10BAEFF1DA5AE4B114614462FF39C27B /* ReactNativeART-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "ReactNativeART-prefix.pch"; sourceTree = ""; }; + 10CED3B8AA15352A41DDFB70B55B2A8D /* RCTAutoInsetsProtocol.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTAutoInsetsProtocol.h; sourceTree = ""; }; + 10D06A03790FEE2282893BD2C4456C74 /* RCTCxxUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTCxxUtils.h; sourceTree = ""; }; 112CFA9961DCCEA1D55E037EE24E1C38 /* CGGeometry+RSKImageCropper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "CGGeometry+RSKImageCropper.h"; path = "RSKImageCropper/CGGeometry+RSKImageCropper.h"; sourceTree = ""; }; - 1143F9AA0894C091A8B495D93ED2B112 /* BSG_KSCrashIdentifier.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashIdentifier.h; sourceTree = ""; }; + 113BEECB9A84D6F4BE3FF2159398BFDA /* RCTRequired.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RCTRequired.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 115CC108AEDECF85B62AF830AE3EFFF2 /* RCTLayoutAnimation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTLayoutAnimation.m; sourceTree = ""; }; 11613175A36C6EBE31343B6BACA3302C /* FIRComponent.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRComponent.h; path = FirebaseCore/Sources/Private/FIRComponent.h; sourceTree = ""; }; - 1164FEEBF72B352C8F7618890AC63B6D /* EXAV.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = EXAV.xcconfig; sourceTree = ""; }; - 119D3C6BF56514923BC5216016DDD651 /* React-RCTActionSheet-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-RCTActionSheet-dummy.m"; sourceTree = ""; }; - 11B613F8F0813D328CEC721E55136EB2 /* BSG_KSCrashDoctor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashDoctor.h; sourceTree = ""; }; - 11BA50444939DB8E3A2F27F4A4E46EA4 /* jsi.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = jsi.h; sourceTree = ""; }; + 1195A8241BB209D7752D91E9504B61C0 /* UMTaskManagerInterface.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = UMTaskManagerInterface.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 119FFB3F848631A057B879B37004A1D9 /* RCTSubtractionAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSubtractionAnimatedNode.m; sourceTree = ""; }; 11C0A683D9914E0CCC77E6DCABB2816C /* SDImageCachesManagerOperation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageCachesManagerOperation.h; path = SDWebImage/Private/SDImageCachesManagerOperation.h; sourceTree = ""; }; 11C183F4C4B1F1E989B5028A735C3B2A /* RSKImageCropper-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RSKImageCropper-prefix.pch"; sourceTree = ""; }; - 11D08E4A9BA15CC7A552F6180F7E4D07 /* RNDateTimePickerManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNDateTimePickerManager.m; path = ios/RNDateTimePickerManager.m; sourceTree = ""; }; - 120DA196AB8A472D4EA1D7C5BA055D17 /* 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; }; - 121BE1C25A0E21A9864EA9A6EEDBB710 /* react-native-keyboard-tracking-view-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "react-native-keyboard-tracking-view-prefix.pch"; sourceTree = ""; }; - 1227A2435239622BC767BD3D73E2FB17 /* REANodesManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = REANodesManager.h; path = ios/REANodesManager.h; sourceTree = ""; }; - 122B0814270FDC762B712CB84C9F5635 /* DeviceUID.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = DeviceUID.m; path = ios/RNDeviceInfo/DeviceUID.m; sourceTree = ""; }; - 12363D8E7810F9D32978997391C718AE /* REAJSCallNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REAJSCallNode.m; sourceTree = ""; }; - 124203A71CC0672033E57E46124AF729 /* RCTMultipartDataTask.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTMultipartDataTask.h; sourceTree = ""; }; + 11C60A0BF45054568DDE7E37CB86A806 /* RCTUITextField.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTUITextField.m; sourceTree = ""; }; + 11DDC617B58C7EB6C414E4D661BEFABE /* BSGSerialization.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSGSerialization.h; sourceTree = ""; }; + 11F0B32660F7804AA40A7BF7880C44FE /* ARTRenderableManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = ARTRenderableManager.h; sourceTree = ""; }; + 12181BAC60EBF53F4BE9F37D9827C6C3 /* jsilib.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = jsilib.h; sourceTree = ""; }; 1246B4FC24C785047CD95D5E8BB7AE12 /* SDImageAssetManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageAssetManager.h; path = SDWebImage/Private/SDImageAssetManager.h; sourceTree = ""; }; - 12525713DC65652720280D156EFDA372 /* RNFirebaseDatabaseReference.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNFirebaseDatabaseReference.m; sourceTree = ""; }; - 12861D83F34D4F2AF899BC41682F2AB2 /* RNFetchBlobNetwork.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNFetchBlobNetwork.h; path = ios/RNFetchBlobNetwork.h; sourceTree = ""; }; - 12AFEB92B4444D9FDEBA96AC02F82E66 /* RNFirebaseAdMobRewardedVideo.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNFirebaseAdMobRewardedVideo.m; sourceTree = ""; }; - 12B654D906725B5E6232AC9FA3EE2762 /* RNFetchBlobProgress.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNFetchBlobProgress.m; path = ios/RNFetchBlobProgress.m; sourceTree = ""; }; - 1325822DFA0CEBD5F2B9C376FAFC52B0 /* RCTTextDecorationLineType.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTextDecorationLineType.h; sourceTree = ""; }; - 135A662BDD56FDB59F2034096947DC8B /* RCTConvert.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTConvert.m; sourceTree = ""; }; - 135CB166A79C27938AA7E8FF963129A7 /* UMAppLifecycleListener.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMAppLifecycleListener.h; sourceTree = ""; }; - 138D6641C7D6ECA256E1490D0D5FC838 /* RCTTypeSafety-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RCTTypeSafety-dummy.m"; sourceTree = ""; }; - 139C8D9238725DAE7FCBF01C2CB3061B /* UMNativeModulesProxy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = UMNativeModulesProxy.m; sourceTree = ""; }; - 13A51ABCE5742FF133D096D77C36DDDB /* MaterialIcons.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = MaterialIcons.ttf; path = Fonts/MaterialIcons.ttf; sourceTree = ""; }; + 124C19D7E3F7653C367911A081BA9B58 /* RNCWebView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCWebView.m; path = ios/RNCWebView.m; sourceTree = ""; }; + 127AED4A9CC0C0982EA1D024313501BB /* RCTSafeAreaView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSafeAreaView.h; sourceTree = ""; }; + 128D961623172015FE2B685D67B6F34A /* RNCommandsHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCommandsHandler.m; path = RNNotifications/RNCommandsHandler.m; sourceTree = ""; }; + 12B9E8EAEEFC054A0CC6389AB00B2F89 /* RNFirebaseNotifications.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNFirebaseNotifications.m; sourceTree = ""; }; + 12D4CADAD278F7AFB72F216C771AD8F3 /* RCTSurfaceStage.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSurfaceStage.m; sourceTree = ""; }; + 1310988E8851BFF67E3D509CFAE33B43 /* react-native-keyboard-input.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = "react-native-keyboard-input.podspec"; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 131F4E7FA39E272444228FDB91061F1B /* UMPermissionsInterface.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = UMPermissionsInterface.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 13344BE3EB2DBA8011D66765692F0C39 /* CompactValue.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CompactValue.h; path = yoga/CompactValue.h; sourceTree = ""; }; + 138C7BA75C8AF37730D9FAB299EE60ED /* RCTResizeMode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTResizeMode.h; path = Libraries/Image/RCTResizeMode.h; sourceTree = ""; }; + 138D37B9AB880AE23C443E4A30FFB780 /* Orientation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Orientation.h; path = iOS/RCTOrientation/Orientation.h; sourceTree = ""; }; + 13B6AA9C65AFBEE6EF84653AF08E8E3F /* RCTWebSocketModule.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCTWebSocketModule.m; path = Libraries/WebSocket/RCTWebSocketModule.m; sourceTree = ""; }; 13BC4224F66908DB532F9B44C792439A /* GULReachabilityChecker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULReachabilityChecker.h; path = GoogleUtilities/Reachability/Private/GULReachabilityChecker.h; sourceTree = ""; }; 13C8C8B254851998F9289F71229B28A2 /* libFirebaseInstallations.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libFirebaseInstallations.a; path = libFirebaseInstallations.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 13DB9E7A9EDCAD57724ECE7095B82C48 /* RCTTypedModuleConstants.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTypedModuleConstants.h; sourceTree = ""; }; - 13EABF8099CB3BAAD767B05803D5839C /* RNFirebase.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNFirebase.h; path = RNFirebase/RNFirebase.h; sourceTree = ""; }; - 141749C671C39B3A24761C8B223476D5 /* ARTBrush.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = ARTBrush.m; sourceTree = ""; }; - 142645C01EEDC63308811732C7B0EFCB /* RCTSettingsManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSettingsManager.m; sourceTree = ""; }; - 142E0A31A9E6960D08872D751EC3327E /* RCTTypedModuleConstants.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTTypedModuleConstants.mm; sourceTree = ""; }; - 14627FA88A737246F278536FA23AE01E /* RCTI18nUtil.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTI18nUtil.h; sourceTree = ""; }; - 146E954310E57FF845846D12DBA3658F /* RCTURLRequestHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTURLRequestHandler.h; sourceTree = ""; }; + 13D4A757D374EB94C239E80E850E4712 /* 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; }; + 13D536AFCE3AD22E3689BC5612CB06E1 /* QBCheckmarkView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = QBCheckmarkView.h; path = ios/QBImagePicker/QBImagePicker/QBCheckmarkView.h; sourceTree = ""; }; + 140F593D0AA923E7785433A4962B6E13 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; + 146308BB6AE4D7FA53EC0DD812FD6017 /* RNEventEmitter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNEventEmitter.m; path = RNNotifications/RNEventEmitter.m; sourceTree = ""; }; + 14799CF9DA3B3D4B9C9FC11268DC0B3F /* RCTEventDispatcher.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTEventDispatcher.m; sourceTree = ""; }; 147CFFA41FD70FB3BEA2696A188FD294 /* GDTCORRegistrar.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCORRegistrar.h; path = GoogleDataTransport/GDTCORLibrary/Public/GDTCORRegistrar.h; sourceTree = ""; }; + 147F0FC071C559A962350966AA459C27 /* EXFileSystemLocalFileHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXFileSystemLocalFileHandler.h; path = EXFileSystem/EXFileSystemLocalFileHandler.h; sourceTree = ""; }; + 148431F7426009B1283775695F30B497 /* RCTComponentEvent.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTComponentEvent.h; sourceTree = ""; }; 1488EEFA6E3BB4A30E0FA6D3CAB794CC /* FirebaseAnalytics.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = FirebaseAnalytics.xcconfig; sourceTree = ""; }; - 1495116E22112E9315699DD2CEEC5B15 /* RCTProfileTrampoline-arm64.S */ = {isa = PBXFileReference; includeInIndex = 1; path = "RCTProfileTrampoline-arm64.S"; sourceTree = ""; }; - 14E45A7096AAFC9F9E9D0FE35C14654B /* FontAwesome5_Solid.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = FontAwesome5_Solid.ttf; path = Fonts/FontAwesome5_Solid.ttf; sourceTree = ""; }; 14E9D8CDCDCDC635008003D55AC6728F /* FIRAppInternal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAppInternal.h; path = FirebaseCore/Sources/Private/FIRAppInternal.h; sourceTree = ""; }; - 150FA0DA16A869AC68AF87F39880529E /* RCTAlertManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTAlertManager.h; sourceTree = ""; }; - 1510D1383CD77197A987E752485FA456 /* BSG_KSObjCApple.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSObjCApple.h; sourceTree = ""; }; - 154A342A29F4E76888C1DDF8A0397BAE /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; + 152D8C21CB1FDF0CD9E05A110C6B9F3F /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; + 15350290ECCC67D3F4EF5A3624B47A13 /* BSG_KSCrashSentry_User.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSCrashSentry_User.c; sourceTree = ""; }; 15762D6096B65B02F92828DF3C3101E4 /* fixed-dtoa.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "fixed-dtoa.h"; path = "double-conversion/fixed-dtoa.h"; sourceTree = ""; }; - 1588E29142F3C2B86991D3641C9D3BF9 /* RCTScrollContentViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTScrollContentViewManager.m; sourceTree = ""; }; + 158AB63A4F769D06A1F3E7CF24957D83 /* RCTDeviceInfo.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTDeviceInfo.m; sourceTree = ""; }; + 158F562EBC638DDC814F6070A24423D7 /* BSG_KSMach_Arm.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSMach_Arm.c; sourceTree = ""; }; 15912309AA610251329D74FA111DE5CA /* libRNLocalize.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libRNLocalize.a; path = libRNLocalize.a; sourceTree = BUILT_PRODUCTS_DIR; }; 15B61266CE79A06337D4E2231EBAF1DE /* lossless.c */ = {isa = PBXFileReference; includeInIndex = 1; name = lossless.c; path = src/dsp/lossless.c; sourceTree = ""; }; - 160690186E5B65B940AE74951A3E9B3B /* RCTAppState.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTAppState.h; sourceTree = ""; }; 160856CCFCFA358DCF2AAC3EFA195712 /* cost.c */ = {isa = PBXFileReference; includeInIndex = 1; name = cost.c; path = src/dsp/cost.c; sourceTree = ""; }; - 161605A0E5D6571F78BE8A55365468C3 /* React-RCTAnimation-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-RCTAnimation-dummy.m"; sourceTree = ""; }; - 1624177CEA51AE1FCB5499928F2843BA /* RCTMultiplicationAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTMultiplicationAnimatedNode.m; sourceTree = ""; }; - 164B92D0063FA055AF79B570D6031EC6 /* BSG_KSSysCtl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSSysCtl.h; sourceTree = ""; }; - 16D4AE3113FBACF99CF67759074AFDD6 /* RCTNetworking.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTNetworking.h; path = Libraries/Network/RCTNetworking.h; sourceTree = ""; }; - 16DD327792446E00B2FCA87EDB058042 /* Color+Interpolation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Color+Interpolation.m"; sourceTree = ""; }; - 16F122EFC1B43D7DFD70217ECFE9F0B4 /* LNAnimator.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = LNAnimator.m; sourceTree = ""; }; + 1657C2EB12A144FA1A909AB1F7F8829B /* RCTVirtualTextShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTVirtualTextShadowView.m; sourceTree = ""; }; + 166518D4FB47DCC850F4FE18BF759514 /* 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; }; + 166A5A5D786A519E24FBAA9901A92FAB /* RCTSlider.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSlider.m; sourceTree = ""; }; 16FB6D1CB6C00FD26DF39F79C94A3B7C /* GULHeartbeatDateStorage.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULHeartbeatDateStorage.h; path = GoogleUtilities/Environment/Public/GULHeartbeatDateStorage.h; sourceTree = ""; }; - 170DF0FE02A38ECB274A62518B1AD171 /* RAMBundleRegistry.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = RAMBundleRegistry.cpp; sourceTree = ""; }; + 171C898D33D93EE03DDF4838D058E0A1 /* NSDataBigString.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = NSDataBigString.h; sourceTree = ""; }; 1731BEB8C2C3368DB5FDF5403C2F7DF3 /* FBLPromise+Async.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FBLPromise+Async.h"; path = "Sources/FBLPromises/include/FBLPromise+Async.h"; sourceTree = ""; }; - 176C3F50309045AEA58CA738F9B1F5CB /* RCTCxxConvert.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTCxxConvert.h; sourceTree = ""; }; + 1735B21AB2D3DED15024CA3EEDDC5B5A /* RCTFPSGraph.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTFPSGraph.m; sourceTree = ""; }; + 176196C60786A12681D53DE0574DA35E /* EXFileSystemLocalFileHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXFileSystemLocalFileHandler.m; path = EXFileSystem/EXFileSystemLocalFileHandler.m; sourceTree = ""; }; 176DC1CC909FEC82CDF5716487143CF4 /* Crashlytics.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Crashlytics.framework; path = iOS/Crashlytics.framework; sourceTree = ""; }; - 176FC245BA56A69C554B7B9790542028 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; - 17746BD41A3351FD6FDE3B8F9BBD4C68 /* EXAppLoaderProvider-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "EXAppLoaderProvider-dummy.m"; sourceTree = ""; }; - 177B20649747AEBF05DB3D10A1CB15B7 /* react-native-jitsi-meet.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "react-native-jitsi-meet.xcconfig"; sourceTree = ""; }; - 177F27791F1F5AB2C725EAF000624C2C /* RCTWeakProxy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTWeakProxy.m; sourceTree = ""; }; - 17A0030F1CB272C85997A3DF61901A6D /* BSG_KSCrashReportFilterCompletion.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashReportFilterCompletion.h; sourceTree = ""; }; - 17B73A3797F5839F9406A5822140831E /* RCTCustomKeyboardViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTCustomKeyboardViewController.m; sourceTree = ""; }; - 17FD6938434448E24EC5E7C3DF584BD1 /* RNDeviceInfo-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNDeviceInfo-dummy.m"; sourceTree = ""; }; - 181E5E7E71CD7EAD5286CAA30021085D /* UMLogManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = UMLogManager.m; sourceTree = ""; }; - 1820332532E60ECDD82A8E03893DD8E8 /* RCTInputAccessoryViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTInputAccessoryViewManager.h; sourceTree = ""; }; + 17887F782EE6846FEF9833CAB3F0E873 /* RNFirebaseAdMob.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNFirebaseAdMob.h; sourceTree = ""; }; 183A3C0267913A961293F8FCB8FCF81D /* SDWebImageCacheKeyFilter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWebImageCacheKeyFilter.m; path = SDWebImage/Core/SDWebImageCacheKeyFilter.m; sourceTree = ""; }; 1876F2F1E1CB7222FA2BE64E89BC0A68 /* GULNetworkURLSession.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GULNetworkURLSession.m; path = GoogleUtilities/Network/GULNetworkURLSession.m; sourceTree = ""; }; 188DE396BFE9BACC9E475E966B3ECB4C /* SDmetamacros.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDmetamacros.h; path = SDWebImage/Private/SDmetamacros.h; sourceTree = ""; }; - 18B8E3216FF3FD18FE1BC4FB7A158ED7 /* BugsnagBreadcrumb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagBreadcrumb.h; sourceTree = ""; }; + 18935E7E6A482C6121AB371499111D51 /* UMFontScalersManagerInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMFontScalersManagerInterface.h; path = UMFontInterface/UMFontScalersManagerInterface.h; sourceTree = ""; }; + 18BA23CCE2E4009C79ADFF14DEF6AEC5 /* RNCWKProcessPoolManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCWKProcessPoolManager.h; path = ios/RNCWKProcessPoolManager.h; sourceTree = ""; }; + 18D93B967DFA8851D29B5EFC28A9635A /* RCTBundleURLProvider.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTBundleURLProvider.m; sourceTree = ""; }; + 18E0A638F487F3A88013825A439B91D0 /* React-RCTBlob-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-RCTBlob-dummy.m"; sourceTree = ""; }; 192CCAEA3A7BD283727CC8F0076D4F1F /* Demangle.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = Demangle.cpp; path = folly/Demangle.cpp; sourceTree = ""; }; 195034DDBA6E2F083A2BB6F020769C4F /* UIApplication+RSKImageCropper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIApplication+RSKImageCropper.h"; path = "RSKImageCropper/UIApplication+RSKImageCropper.h"; sourceTree = ""; }; 1959F3ECFABC8A4D200C1715ED0696A0 /* FBLPromise+Validate.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "FBLPromise+Validate.m"; path = "Sources/FBLPromises/FBLPromise+Validate.m"; sourceTree = ""; }; - 199388DDDD589FFF779E1CE9CCC75AFB /* UMPermissionsInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMPermissionsInterface.h; path = UMPermissionsInterface/UMPermissionsInterface.h; sourceTree = ""; }; 1999800C3B5B4E5C0A32818F3D47D45A /* FIRLogger.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRLogger.h; path = FirebaseCore/Sources/Private/FIRLogger.h; sourceTree = ""; }; 19B4CD2BCA1F7FD16045A42310FCE9F0 /* UIImage+Metadata.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIImage+Metadata.h"; path = "SDWebImage/Core/UIImage+Metadata.h"; sourceTree = ""; }; + 19BB86AA1190C4C8B7A0666F7AC9AC82 /* BSG_KSCrashSentry_Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashSentry_Private.h; sourceTree = ""; }; + 19BB8FA40C891F4D51BEB41ABE33EC1A /* BSG_KSCrashReportStore.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BSG_KSCrashReportStore.m; sourceTree = ""; }; 19C61133E42FEBE0031138AEB2C96709 /* diy-fp.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "diy-fp.h"; path = "double-conversion/diy-fp.h"; sourceTree = ""; }; - 19C78564C2B123AC387DF002DAC6F6A2 /* REAParamNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REAParamNode.h; sourceTree = ""; }; + 19E1995D5604A113830A6DC6793AAEEA /* RNAudio-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNAudio-dummy.m"; sourceTree = ""; }; 19F7DAA1BD0C331F0062BBC640DBC35E /* FIRDependency.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRDependency.h; path = FirebaseCore/Sources/Private/FIRDependency.h; sourceTree = ""; }; + 19FF8114E311AD8501678DA2DEA3E7AD /* JSIndexedRAMBundle.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = JSIndexedRAMBundle.h; sourceTree = ""; }; + 1A05D47FED4223ADAC9427FDD8540AEB /* RNLongPressHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNLongPressHandler.m; sourceTree = ""; }; + 1A22417369B201D083B5C56FD0131E12 /* RNBootSplash.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNBootSplash.m; path = ios/RNBootSplash.m; sourceTree = ""; }; + 1A29891C6206BC22C536908B9B91F548 /* BugsnagErrorReportApiClient.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagErrorReportApiClient.m; sourceTree = ""; }; + 1A523BB61F5BFB8222D313B9BB64638E /* EXVideoView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = EXVideoView.h; sourceTree = ""; }; 1A5B8DD3BD08B970140758525F472335 /* GDTCORClock.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCORClock.h; path = GoogleDataTransport/GDTCORLibrary/Public/GDTCORClock.h; sourceTree = ""; }; - 1A70BBF1266636A6BD69C601346E4E4B /* REAParamNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REAParamNode.m; sourceTree = ""; }; - 1A9CF061A5E12F9A85E5EB4A235969E3 /* RCTDisplayLink.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTDisplayLink.m; sourceTree = ""; }; - 1AB8F4E46E2657ADD2B3E9F7B2C4C0FB /* JSIndexedRAMBundle.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = JSIndexedRAMBundle.cpp; sourceTree = ""; }; - 1AC474F85069CA1640D99F940CA853D0 /* React-RCTBlob-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-RCTBlob-prefix.pch"; sourceTree = ""; }; + 1A62DD96FAC84C70491B262C93877767 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; + 1A77EA908CFC0545DA4D08F646D1D20B /* UMTaskLaunchReason.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMTaskLaunchReason.h; path = UMTaskManagerInterface/UMTaskLaunchReason.h; sourceTree = ""; }; + 1A9EC077BA003513D64323D8EF9FE8FC /* EXAppLoaderProvider.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = EXAppLoaderProvider.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 1AD931A3769962EFF7BE82AD4E7BF961 /* ImageCropPicker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ImageCropPicker.h; path = ios/src/ImageCropPicker.h; sourceTree = ""; }; 1B0188F1CFA087DDC5889F8B0B0301C3 /* neon.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = neon.h; path = src/dsp/neon.h; sourceTree = ""; }; + 1B027AE931A8EFEE85CE5F1CE684D726 /* Utils.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = Utils.cpp; path = yoga/Utils.cpp; sourceTree = ""; }; + 1B3367FDEB6842D6C08B09D6F704CBBF /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; + 1B3D2651BD7200B68EF1D5F78CD17540 /* Color+Interpolation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Color+Interpolation.m"; sourceTree = ""; }; 1B408AE390C2CD577F7EF23E9F2D97CA /* strtod.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = strtod.h; path = "double-conversion/strtod.h"; sourceTree = ""; }; - 1B433D027402666189C911F7677C68C7 /* BSG_KSArchSpecific.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSArchSpecific.h; sourceTree = ""; }; - 1B4CE47AAEE3E338D296FF8B71DFDA84 /* RCTClipboard.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTClipboard.m; sourceTree = ""; }; - 1B5DED35BFD48166AA47F9A19BDCB1A2 /* ReactNativeART-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "ReactNativeART-prefix.pch"; sourceTree = ""; }; - 1B7C3608604BDDF8ACD43AB2706BB219 /* ARTGroupManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = ARTGroupManager.m; sourceTree = ""; }; - 1B9817DDC659D19779803F9E20C6AB86 /* RNTapHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNTapHandler.m; sourceTree = ""; }; - 1BF9AB567D9E0A51CDE4ADCFDEBD269C /* ImageCropPicker.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = ImageCropPicker.m; path = ios/src/ImageCropPicker.m; sourceTree = ""; }; - 1C17C6DA60BE10DF74347646322D930C /* AntDesign.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = AntDesign.ttf; path = Fonts/AntDesign.ttf; sourceTree = ""; }; + 1B6582127616A80FE1ECF318DA264FF0 /* jsilib-windows.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = "jsilib-windows.cpp"; sourceTree = ""; }; + 1BB51D7FFE1F27312BA8DD9DEFF8487E /* RCTTypeSafety.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RCTTypeSafety.xcconfig; sourceTree = ""; }; + 1BD56A20AEB3E37F98C3B9820C95DDCA /* RCTTurboModuleManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTurboModuleManager.h; sourceTree = ""; }; + 1BDBD74AE31C2B29BEBFF92A6E24A65E /* EXConstants.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXConstants.m; path = EXConstants/EXConstants.m; sourceTree = ""; }; + 1BE069BE8C0674EF74ED966F92BA0754 /* BSGOutOfMemoryWatchdog.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSGOutOfMemoryWatchdog.h; sourceTree = ""; }; 1C2373D7CD550A7BB6746818ACCFF4A9 /* FIRLibrary.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRLibrary.h; path = FirebaseCore/Sources/Private/FIRLibrary.h; sourceTree = ""; }; + 1C2FFBE00DE465C5BCA8C592BEFFBBFD /* EXCameraPermissionRequester.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXCameraPermissionRequester.h; path = EXPermissions/EXCameraPermissionRequester.h; sourceTree = ""; }; + 1C30029B5D1961DB498768F7F5B3539B /* BSG_KSString.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSString.h; sourceTree = ""; }; + 1C34B0DD834FA9E42460088D3ED6C63F /* RCTLayoutAnimationGroup.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTLayoutAnimationGroup.h; sourceTree = ""; }; 1C4857A0842D2EBB815D30CCE3A20B92 /* huffman_utils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = huffman_utils.h; path = src/utils/huffman_utils.h; sourceTree = ""; }; - 1C67871F1DC0355FE10997027FD2BE02 /* RNAudio.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RNAudio.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 1C8946432644A4A745E4C01F3F76DCAF /* RNUserDefaults-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNUserDefaults-prefix.pch"; sourceTree = ""; }; 1CA3042722DE6BE862DDD182F6A65072 /* SDInternalMacros.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDInternalMacros.h; path = SDWebImage/Private/SDInternalMacros.h; sourceTree = ""; }; - 1CBA8EB956DAA087A5011494458EAE76 /* QBAssetCell.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = QBAssetCell.m; path = ios/QBImagePicker/QBImagePicker/QBAssetCell.m; sourceTree = ""; }; - 1CBD08A6001612AFBD1D6C1C18C2280A /* fr.lproj */ = {isa = PBXFileReference; includeInIndex = 1; name = fr.lproj; path = ios/QBImagePicker/QBImagePicker/fr.lproj; sourceTree = ""; }; - 1CCBB5CA34FEE4E295C2889C97784871 /* SRIOConsumerPool.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = SRIOConsumerPool.m; sourceTree = ""; }; - 1CF6D980954E8CA254E4CB92954057C7 /* UMAccelerometerInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMAccelerometerInterface.h; path = UMSensorsInterface/UMAccelerometerInterface.h; sourceTree = ""; }; - 1CFC539F4AA6744CCCC5DA15DE242897 /* RCTSwitchManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSwitchManager.m; sourceTree = ""; }; + 1CA8A55AAE71F7EAC4B68767CBFAAAF1 /* RNNotificationEventHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNNotificationEventHandler.h; path = RNNotifications/RNNotificationEventHandler.h; sourceTree = ""; }; + 1CB0894A4004AF4CFE6CE31924DA0937 /* BSG_KSBacktrace.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSBacktrace.c; sourceTree = ""; }; + 1CD753103E6BC2594790766FF6348A88 /* React-RCTAnimation-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-RCTAnimation-prefix.pch"; sourceTree = ""; }; + 1D08135C440198B989A028E3E509A0A3 /* BugsnagKeys.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagKeys.h; sourceTree = ""; }; + 1D0B7A74AA89880E51C1C602661BE0D0 /* jsi-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "jsi-inl.h"; sourceTree = ""; }; 1D31DB622D9EBAA4FBD560D40618BCBA /* FIRApp.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRApp.h; path = FirebaseCore/Sources/Public/FIRApp.h; sourceTree = ""; }; 1D432FED92D53468BB148EBC674FF927 /* GDTCORTransport.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GDTCORTransport.m; path = GoogleDataTransport/GDTCORLibrary/GDTCORTransport.m; sourceTree = ""; }; - 1D55286078DE9B0E3DC2A02630ED8D2C /* RCTBlobManager.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTBlobManager.mm; sourceTree = ""; }; + 1D4E91BC2D9732B86741ECCCD21997B8 /* RCTConvert+RNNotifications.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "RCTConvert+RNNotifications.m"; path = "RNNotifications/RCTConvert+RNNotifications.m"; sourceTree = ""; }; + 1D666A6FD7D11F33C1D59A0AE90F113B /* RCTTypeSafety.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RCTTypeSafety.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; 1D6EDA25FA893D1DF91AAEA53BA75B9D /* GDTCORStorage.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCORStorage.h; path = GoogleDataTransport/GDTCORLibrary/Private/GDTCORStorage.h; sourceTree = ""; }; - 1DCA1DFD8A5758EDBE5164D779B23221 /* RCTPropsAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTPropsAnimatedNode.h; sourceTree = ""; }; + 1DC0F40D3EC7137C9F56AE3B0EB2E4BD /* EXConstantsService.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXConstantsService.m; path = EXConstants/EXConstantsService.m; sourceTree = ""; }; + 1DC6C31D4AE93CC9AC8592C333F974BA /* UMFaceDetectorInterface.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = UMFaceDetectorInterface.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; 1DCB7B74B4C2EC6C5BAFC108D409C754 /* GULAppEnvironmentUtil.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULAppEnvironmentUtil.h; path = GoogleUtilities/Environment/third_party/GULAppEnvironmentUtil.h; sourceTree = ""; }; - 1DD6E94F4BB2EB60DDEA158D8DA9E9B3 /* RCTAsyncLocalStorage.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTAsyncLocalStorage.m; sourceTree = ""; }; - 1DDEBDE9D18E704D506A4C8AA2638468 /* REAValueNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REAValueNode.m; sourceTree = ""; }; - 1DE553C7BC7B4430A86B1538FD50FA6D /* UMConstantsInterface.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = UMConstantsInterface.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; 1DF066F20D14665E0A04D678CAD81F85 /* FIRInstanceIDCheckinService.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstanceIDCheckinService.m; path = Firebase/InstanceID/FIRInstanceIDCheckinService.m; sourceTree = ""; }; - 1E0B6A044D5B728554C8DC8921B8E9A9 /* TurboCxxModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TurboCxxModule.h; path = turbomodule/core/TurboCxxModule.h; sourceTree = ""; }; - 1E2C8AAD119BED651B2BAF6C020FAD3C /* RCTInputAccessoryView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTInputAccessoryView.h; sourceTree = ""; }; + 1E24061819610A9D72F6BA23D9759EA7 /* RCTPointerEvents.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTPointerEvents.h; sourceTree = ""; }; + 1E35A0529B8C85486D5AC2121974CD45 /* UMImageLoaderInterface.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = UMImageLoaderInterface.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 1E3F1F2550D5459BD9AC9C316821612E /* RCTAdditionAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTAdditionAnimatedNode.h; sourceTree = ""; }; 1E5CFD24886A762C411A37478D6B0296 /* UIImage+MemoryCacheCost.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIImage+MemoryCacheCost.m"; path = "SDWebImage/Core/UIImage+MemoryCacheCost.m"; sourceTree = ""; }; - 1F6D70F5419A11FC7576DB263CED5243 /* RCTAnimatedImage.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTAnimatedImage.h; path = Libraries/Image/RCTAnimatedImage.h; sourceTree = ""; }; - 1F8A2E1F39B0FA2B48D874E8DA74681B /* RCTSegmentedControl.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSegmentedControl.m; sourceTree = ""; }; - 1F900664606405A9CBE565FDAEAE2BB7 /* RNFirebaseUtil.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNFirebaseUtil.h; path = RNFirebase/RNFirebaseUtil.h; sourceTree = ""; }; - 1FB6E330BF595D986F3D0623B760C94F /* RNGestureHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNGestureHandler.m; path = ios/RNGestureHandler.m; sourceTree = ""; }; + 1E6C1E5398309582A4E2B5A4F44C4D67 /* UMModuleRegistryConsumer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMModuleRegistryConsumer.h; sourceTree = ""; }; + 1ED903085E4EBD27C7CA11AF11A2BE1C /* RCTActivityIndicatorView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTActivityIndicatorView.h; sourceTree = ""; }; + 1F2694B84B88592AC03EEAFC669C6EA5 /* UIResponder+FirstResponder.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIResponder+FirstResponder.m"; path = "lib/UIResponder+FirstResponder.m"; sourceTree = ""; }; + 1F578ED8A1F9A83D7D64AC029D06366D /* BSG_KSSysCtl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSSysCtl.h; sourceTree = ""; }; + 1F7DE5683334A228B233CAFFB8F6DAA3 /* RCTRootContentView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTRootContentView.m; sourceTree = ""; }; 1FC1353AA6CA2364871614AD5734013C /* GDTCORConsoleLogger.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GDTCORConsoleLogger.m; path = GoogleDataTransport/GDTCORLibrary/GDTCORConsoleLogger.m; sourceTree = ""; }; - 1FC78CD3DF37497B74B8B2E1CA609313 /* RNFirebaseUtil.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNFirebaseUtil.m; path = RNFirebase/RNFirebaseUtil.m; sourceTree = ""; }; + 1FE97021ECAFB4B3D7131C2439FD365A /* RNLocalize.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNLocalize.h; path = ios/RNLocalize.h; sourceTree = ""; }; + 1FF2034994B9970DB2BB5903D7BB1D55 /* UMExportedModule.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = UMExportedModule.m; path = UMCore/UMExportedModule.m; sourceTree = ""; }; 1FF50E5ECFD2E8272C61A10AF4ED50A1 /* SDImageCachesManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageCachesManager.h; path = SDWebImage/Core/SDImageCachesManager.h; sourceTree = ""; }; - 201DFBC98BC09F90B42FAFD3AACA725C /* RCTModalHostViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTModalHostViewController.h; sourceTree = ""; }; + 200BFF93E03089A04D00BDE1CF43492D /* RCTPlatform.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTPlatform.mm; sourceTree = ""; }; 202722AA0D229A11350F6DC0F267A0BA /* libRNBootSplash.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libRNBootSplash.a; path = libRNBootSplash.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 202C4D6DA553B5E3EC6087AD40486531 /* RCTCxxMethod.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTCxxMethod.mm; sourceTree = ""; }; - 203F48A56246ADAA1C00DA87F90BC8C4 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; - 20A869A3834D59EFE78BCB05AF9E7C29 /* YGLayout.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YGLayout.h; path = yoga/YGLayout.h; sourceTree = ""; }; - 20BD4FDC15FB2DE109484CD34546BF70 /* RCTPackagerConnection.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTPackagerConnection.h; sourceTree = ""; }; - 20DE93B1F9E4AF2638BA4F40BCE379FC /* 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; }; + 209C16039DBEA1AE8E1BB62DA5B75406 /* BugsnagSessionTrackingApiClient.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagSessionTrackingApiClient.h; sourceTree = ""; }; + 20AB771AA698A314809BE121BCFE091C /* TurboModule.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = TurboModule.cpp; path = turbomodule/core/TurboModule.cpp; sourceTree = ""; }; 20EB67591180BD14936DAED287A3BFF0 /* Pods-ShareRocketChatRN-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Pods-ShareRocketChatRN-dummy.m"; sourceTree = ""; }; - 20F87B36C247C5A2E237B9B02B110533 /* RCTImageView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageView.h; path = Libraries/Image/RCTImageView.h; sourceTree = ""; }; - 20FA65E7173DBF053E94AD89C00B5142 /* RCTVibration.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTVibration.h; path = Libraries/Vibration/RCTVibration.h; sourceTree = ""; }; + 20F07523138EDB707EEA15859A780DF0 /* SimpleLineIcons.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = SimpleLineIcons.ttf; path = Fonts/SimpleLineIcons.ttf; sourceTree = ""; }; 210731369AB3AD93BEB294C250CD20AA /* JitsiMeet.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = JitsiMeet.framework; path = Frameworks/JitsiMeet.framework; sourceTree = ""; }; - 2116176163B56F07C9E9B28FAF07B3CD /* BugsnagKSCrashSysInfoParser.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagKSCrashSysInfoParser.h; sourceTree = ""; }; - 211D4B533E871CAD37B284D1EE055D6B /* RNCWebView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCWebView.m; path = ios/RNCWebView.m; sourceTree = ""; }; - 212B3673436F3EA140F0E188CC72942B /* RCTSliderManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSliderManager.h; sourceTree = ""; }; - 2182CF13B7F357FB4C7E9DF5C350CE31 /* RNFastImage-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNFastImage-prefix.pch"; sourceTree = ""; }; + 2122B71FF39776F28C815E0F8E2E8600 /* EXCalendarRequester.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXCalendarRequester.h; path = EXPermissions/EXCalendarRequester.h; sourceTree = ""; }; + 2183604D689CFF2ACE1CEEFF60B3A2D3 /* RCTAlertManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTAlertManager.h; sourceTree = ""; }; + 2193A9C6C7D6978D5F7970B023F4A848 /* RCTMultilineTextInputViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTMultilineTextInputViewManager.h; sourceTree = ""; }; + 2194C9BDF97586E8F49B5408FEF50FAF /* RNCAppearanceProviderManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCAppearanceProviderManager.m; path = ios/Appearance/RNCAppearanceProviderManager.m; sourceTree = ""; }; + 219A2733281409E60ED6EFD18358038F /* EXVideoManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = EXVideoManager.h; sourceTree = ""; }; 21A7E3A6A97682E28E064E912B3B4371 /* GULSceneDelegateSwizzler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GULSceneDelegateSwizzler.m; path = GoogleUtilities/SceneDelegateSwizzler/GULSceneDelegateSwizzler.m; sourceTree = ""; }; + 21BAB5042DDC0532E64D1E0AE5FC2844 /* YGValue.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YGValue.h; path = yoga/YGValue.h; sourceTree = ""; }; 21BBC4149E367B15994D55B0BE6395A3 /* lossless_common.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = lossless_common.h; path = src/dsp/lossless_common.h; sourceTree = ""; }; 21BCCE9D22EB85259CE081E0A923EDB6 /* thread_utils.c */ = {isa = PBXFileReference; includeInIndex = 1; name = thread_utils.c; path = src/utils/thread_utils.c; sourceTree = ""; }; - 21EEA62AA34B1955156B48D8813CD3A5 /* TurboModule.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = TurboModule.cpp; path = turbomodule/core/TurboModule.cpp; sourceTree = ""; }; + 21C87ED9D4B412DA8575EBF109AA2B48 /* EXCalendarRequester.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXCalendarRequester.m; path = EXPermissions/EXCalendarRequester.m; sourceTree = ""; }; + 21CBC4FF30E155417536FB52FD82ECE0 /* RCTImageViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageViewManager.h; path = Libraries/Image/RCTImageViewManager.h; sourceTree = ""; }; + 21DBE4BBEA8FF81F7C7334E07828CD37 /* RCTFileRequestHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTFileRequestHandler.h; path = Libraries/Network/RCTFileRequestHandler.h; sourceTree = ""; }; + 21F584AC7028CEEC291E1B0A0CFF531C /* RNLocalize.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RNLocalize.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 21FC1057A335E68F2C7CA020078E42BF /* RNFirebaseDatabase.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNFirebaseDatabase.h; sourceTree = ""; }; 220361FF3B2778F8F38C2C4DCC5B49FD /* libEXConstants.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libEXConstants.a; path = libEXConstants.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 222E8B3C272CDC1AC42C40A5AFDB24C4 /* SRWebSocket.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SRWebSocket.m; path = SocketRocket/SRWebSocket.m; sourceTree = ""; }; - 22316581D00EF39F8C035146857EE459 /* RCTDatePickerManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTDatePickerManager.h; sourceTree = ""; }; - 2241A481A38ECBDC82FD7B8014278C90 /* BSG_KSSystemCapabilities.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSSystemCapabilities.h; sourceTree = ""; }; - 224ED1BA761A9EB2A8535AA51EE6B5B0 /* BSG_KSCrashSentry.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSCrashSentry.c; sourceTree = ""; }; + 221328CEBF3B74494BF816A8C0D0816B /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; + 22149EAF70CC1E264BA0C19002B87DF4 /* UMJavaScriptContextProvider.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMJavaScriptContextProvider.h; sourceTree = ""; }; 226470D5AC918D710F1EE1BDBAADC256 /* FIRInstallationsStatus.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstallationsStatus.h; path = FirebaseInstallations/Source/Library/InstallationsIDController/FIRInstallationsStatus.h; sourceTree = ""; }; + 226770D64621B378E0AD57C3D8DED81A /* REAAlwaysNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REAAlwaysNode.h; sourceTree = ""; }; + 227F6E7C98F31D9C50E961370496A3CB /* REAStyleNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REAStyleNode.h; sourceTree = ""; }; 2281519202E71413AA842990FD9E7D77 /* SpookyHashV2.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = SpookyHashV2.cpp; path = folly/hash/SpookyHashV2.cpp; sourceTree = ""; }; - 2292439F3AF6D1B2C4953BB6E8FB57B2 /* RCTAnimationUtils.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTAnimationUtils.m; sourceTree = ""; }; - 22B3B93BAD15FF28E1F658EF9563AAB6 /* RNCommandsHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCommandsHandler.h; path = RNNotifications/RNCommandsHandler.h; sourceTree = ""; }; - 22B6FD695D5599BD03A6A20D19B48690 /* RCTSRWebSocket.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCTSRWebSocket.m; path = Libraries/WebSocket/RCTSRWebSocket.m; sourceTree = ""; }; - 22B84C18CFDBA11F6CB66E08DAAAE066 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; + 22973557654166AD890742D4B80E6391 /* RNAudio-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNAudio-prefix.pch"; sourceTree = ""; }; + 22C357387594FDA4AC495365D7ECABF3 /* JSBundleType.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = JSBundleType.h; sourceTree = ""; }; + 22C8B3B5D30708E0D32DB24603161DC3 /* UMFontManagerInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMFontManagerInterface.h; path = UMFontInterface/UMFontManagerInterface.h; sourceTree = ""; }; 22DA47BB069C91769B82987265E8AA4F /* SDAnimatedImageView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDAnimatedImageView.m; path = SDWebImage/Core/SDAnimatedImageView.m; sourceTree = ""; }; - 22DCF2802F9A144C12D094CD9B3648DD /* RCTSafeAreaView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSafeAreaView.m; sourceTree = ""; }; - 2337DDFDED6611BD80E32A01AB8886B3 /* react-native-orientation-locker.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "react-native-orientation-locker.xcconfig"; sourceTree = ""; }; - 23505BFC936A84EB00E98DC7A1560F6B /* UMSingletonModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMSingletonModule.h; path = UMCore/UMSingletonModule.h; sourceTree = ""; }; - 2358B61A26F92B31E2B0DAF55348F3C5 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; - 23776C1B0E8657F226F01CD3497C554B /* TurboCxxModule.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = TurboCxxModule.cpp; path = turbomodule/core/TurboCxxModule.cpp; sourceTree = ""; }; + 22EAB66614F49CF38DB545C6C8B7941E /* rn-fetch-blob-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "rn-fetch-blob-prefix.pch"; sourceTree = ""; }; + 232C03DC2BE946443283361738300A2B /* NSDataBigString.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = NSDataBigString.mm; sourceTree = ""; }; + 23407D404212839083FA402ED6C9CF32 /* REATransition.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REATransition.h; sourceTree = ""; }; + 234790945CE0B8BB21816A754494B8DE /* RCTDefines.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTDefines.h; sourceTree = ""; }; + 23699EF9ED482A234477FD3CC00DAFAA /* React-RCTVibration.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-RCTVibration.xcconfig"; sourceTree = ""; }; 238912792225FCFD2816B4E4CF1D3D79 /* GULSwizzler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GULSwizzler.m; path = GoogleUtilities/MethodSwizzler/GULSwizzler.m; sourceTree = ""; }; - 239BE55162CF269E4926013B46201EB7 /* BSG_KSBacktrace.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSBacktrace.c; sourceTree = ""; }; + 2389E7712E74122E76AE062C1E1D4618 /* 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; }; + 23A6A5C3CC9632CBACB8F3B227D88AA1 /* RCTObjcExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTObjcExecutor.h; sourceTree = ""; }; 23AF27BB8FC1D90102AF761B02C48033 /* SDAssociatedObject.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDAssociatedObject.h; path = SDWebImage/Private/SDAssociatedObject.h; sourceTree = ""; }; 23D5AA523F9126F7D30ECF8AA9BBE433 /* GDTCCTUploader.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GDTCCTUploader.m; path = GoogleDataTransportCCTSupport/GDTCCTLibrary/GDTCCTUploader.m; sourceTree = ""; }; + 2407A5C97CE083F9080094BA4E3FF07B /* RNNotificationUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNNotificationUtils.h; path = RNNotifications/RNNotificationUtils.h; sourceTree = ""; }; + 24188A9359977F5282BE2C0D494C965F /* RNFirebaseAuth.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNFirebaseAuth.m; sourceTree = ""; }; 242758B9EDFF146ABE411909CAC8F130 /* libreact-native-appearance.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libreact-native-appearance.a"; path = "libreact-native-appearance.a"; sourceTree = BUILT_PRODUCTS_DIR; }; - 242CC982C2F9E674F8E4082508B29A0F /* RCTAnimatedImage.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTAnimatedImage.m; sourceTree = ""; }; - 247FFC6F2A28AE96DFD1F1E89C952983 /* RCTReconnectingWebSocket.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCTReconnectingWebSocket.m; path = Libraries/WebSocket/RCTReconnectingWebSocket.m; sourceTree = ""; }; + 243EC5FDBF449542F55F85B6EB8B8AE2 /* RNDeviceInfo.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNDeviceInfo.xcconfig; sourceTree = ""; }; + 248F64165802844864418C70465519A3 /* ARTSurfaceView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ARTSurfaceView.h; path = ios/ARTSurfaceView.h; sourceTree = ""; }; 24B86369C499373261B640769283284B /* Firebase.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Firebase.h; path = CoreOnly/Sources/Firebase.h; sourceTree = ""; }; - 24BC7983C5C77662F1B1E1ECB47E0261 /* EXFileSystemAssetLibraryHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXFileSystemAssetLibraryHandler.m; path = EXFileSystem/EXFileSystemAssetLibraryHandler.m; sourceTree = ""; }; - 25279C48966FA07EA522177FF66B0543 /* RNBridgeModule.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNBridgeModule.m; path = RNNotifications/RNBridgeModule.m; sourceTree = ""; }; + 24CD4E138D34122AAF3DD9F0EAE3992B /* React-RCTText.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-RCTText.xcconfig"; sourceTree = ""; }; + 24EB8B7CF7A55316666DD0A89214CE04 /* RCTScrollableProtocol.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTScrollableProtocol.h; sourceTree = ""; }; 2536DE7D124E9784E2285002DB68F17A /* demux.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = demux.h; path = src/webp/demux.h; sourceTree = ""; }; - 254C75BE2B62D801A09BF11463B5C395 /* BugsnagCollections.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagCollections.m; sourceTree = ""; }; - 255D0FA10027F83D8A9415C7B4456159 /* react-native-document-picker-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "react-native-document-picker-dummy.m"; sourceTree = ""; }; + 254EB2013274F93DE25330B892490A4D /* RCTComponent.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTComponent.h; sourceTree = ""; }; + 25546CFF0549B75468718408D326CECE /* rn-fetch-blob.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "rn-fetch-blob.xcconfig"; sourceTree = ""; }; + 257676ADB5897AE32839135C7C41BBB6 /* EXSystemBrightnessRequester.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXSystemBrightnessRequester.m; path = EXPermissions/EXSystemBrightnessRequester.m; sourceTree = ""; }; 2577F299FCB0A19824FE989BE77B8E8F /* libReact-jsinspector.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libReact-jsinspector.a"; path = "libReact-jsinspector.a"; sourceTree = BUILT_PRODUCTS_DIR; }; - 2583B3124E98A395B0C407D847D73F19 /* ResourceBundle-QBImagePicker-RNImageCropPicker-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "ResourceBundle-QBImagePicker-RNImageCropPicker-Info.plist"; sourceTree = ""; }; - 25D7037FA61065437F2E75B2CD5F046C /* RCTBaseTextInputViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTBaseTextInputViewManager.m; sourceTree = ""; }; - 25E99870CA1226A989378F2CCE057DC8 /* REATransitionAnimation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REATransitionAnimation.h; sourceTree = ""; }; - 25F909FC5FAD0CDE226B103F90126288 /* RNFirebaseRemoteConfig.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNFirebaseRemoteConfig.m; sourceTree = ""; }; - 262331116A81D1C127DD7B434199B78B /* RCTScrollContentShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTScrollContentShadowView.m; sourceTree = ""; }; + 25DF488B81D0E671DF23DF5FEA48695B /* JsArgumentHelpers-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "JsArgumentHelpers-inl.h"; sourceTree = ""; }; + 25EAC7CF8D48A25BC09B2F0275D86E72 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; + 25F931BA0A4073AE54F40800E8F6EDA0 /* React-RCTLinking.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-RCTLinking.xcconfig"; sourceTree = ""; }; + 260284E320C55DC1F401EF3613313217 /* BSG_KSCrashState.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BSG_KSCrashState.m; sourceTree = ""; }; + 260AF1B2F4B5C6D69475585F8DEBFD5E /* jsilib-posix.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = "jsilib-posix.cpp"; sourceTree = ""; }; + 2617AF47F3E94033E3755B4EFFF22D5E /* AntDesign.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = AntDesign.ttf; path = Fonts/AntDesign.ttf; sourceTree = ""; }; 264FC1F2B694A07F9E99ECECA1434258 /* SDImageHEICCoderInternal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageHEICCoderInternal.h; path = SDWebImage/Private/SDImageHEICCoderInternal.h; sourceTree = ""; }; - 2679C9C2E3B6F0640D6DD9B7D603BC4E /* RNRotationHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNRotationHandler.m; sourceTree = ""; }; - 267A14EE651A30BDA05A3ACAEFA42DB3 /* RCTPackagerClient.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTPackagerClient.h; sourceTree = ""; }; + 2671FA8596FC4724FB94806291A5C98A /* RNImageCropPicker.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNImageCropPicker.xcconfig; sourceTree = ""; }; 2691CB449C5A42D1964D19F13F61C0B7 /* picture_tools_enc.c */ = {isa = PBXFileReference; includeInIndex = 1; name = picture_tools_enc.c; path = src/enc/picture_tools_enc.c; sourceTree = ""; }; - 2697ECF4E2B34B6E3473910148017B33 /* ARTText.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = ARTText.m; path = ios/ARTText.m; sourceTree = ""; }; 269BE773C9482484B70949A40F4EA525 /* libReact-RCTSettings.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libReact-RCTSettings.a"; path = "libReact-RCTSettings.a"; sourceTree = BUILT_PRODUCTS_DIR; }; - 26AC45CC78CD938F00939C83FC147E78 /* RCTKeyboardObserver.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTKeyboardObserver.m; sourceTree = ""; }; 26C5912343F09FDEC67C47A7DD500AAF /* FIRHeartbeatInfo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRHeartbeatInfo.h; path = FirebaseCore/Sources/Private/FIRHeartbeatInfo.h; sourceTree = ""; }; - 2710EF5312E3F10E41CCD8EEEB263BD5 /* RCTAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTAnimatedNode.m; sourceTree = ""; }; - 2720FB96DDE513B6CD1FCA3998287D7D /* RCTBundleURLProvider.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBundleURLProvider.h; sourceTree = ""; }; + 26E5B4ECB8E3637E3E2AF67D796484D6 /* RNGestureHandler.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RNGestureHandler.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 26FA9CC84711849B24882F0E489476B5 /* RNCAppearance.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCAppearance.m; path = ios/Appearance/RNCAppearance.m; sourceTree = ""; }; 2728A14783AB5E811E5251887AADACAF /* GULAppDelegateSwizzler_Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULAppDelegateSwizzler_Private.h; path = GoogleUtilities/AppDelegateSwizzler/Internal/GULAppDelegateSwizzler_Private.h; sourceTree = ""; }; + 277B945E2FB601EA03F50A2E8436C115 /* QBImagePickerController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = QBImagePickerController.h; path = ios/QBImagePicker/QBImagePicker/QBImagePickerController.h; sourceTree = ""; }; + 278900E30B4F04A0B121A968574F5891 /* RCTFileReaderModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTFileReaderModule.h; path = Libraries/Blob/RCTFileReaderModule.h; sourceTree = ""; }; 279390C893577F74DD2049383E1EDD1A /* libKeyCommands.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libKeyCommands.a; path = libKeyCommands.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 279D2353658C49913AE86F14F5858CCB /* 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; }; 27AACFC75C230014487A026D8216B40F /* mux.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = mux.h; path = src/webp/mux.h; sourceTree = ""; }; + 27BC6A0DCE103E2BEDD6175E79ACC77D /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; 27DCBA8B031ECFD777996CDBB53368B9 /* lossless_enc_sse41.c */ = {isa = PBXFileReference; includeInIndex = 1; name = lossless_enc_sse41.c; path = src/dsp/lossless_enc_sse41.c; sourceTree = ""; }; - 27E86C2438F77089ECDB4E32C97EF052 /* REANode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REANode.m; sourceTree = ""; }; - 27F8144B0940E1DC51A3C2B4A04A41F8 /* RCTDevMenu.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTDevMenu.m; sourceTree = ""; }; + 2831EE20313C3202F55D3651E49DEE21 /* RCTImageEditingManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTImageEditingManager.m; sourceTree = ""; }; + 28332F8538757A0B214131FAF44F74B7 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; 28360F116ACE0C01D969AB83563A87B3 /* picture_rescale_enc.c */ = {isa = PBXFileReference; includeInIndex = 1; name = picture_rescale_enc.c; path = src/enc/picture_rescale_enc.c; sourceTree = ""; }; - 283E32212092845B782239CA79F27169 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; - 284296C3D41B4831607BAE923581DF35 /* RCTPickerManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTPickerManager.m; sourceTree = ""; }; 285481B86C63C48528603907702089DB /* muxread.c */ = {isa = PBXFileReference; includeInIndex = 1; name = muxread.c; path = src/mux/muxread.c; sourceTree = ""; }; - 2881EB958F33BA11F1D2DDFEE691173F /* Bugsnag.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = Bugsnag.h; sourceTree = ""; }; + 2861A98CBEF359E1FA98BD8BA3E4CE7C /* UMFileSystemInterface.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMFileSystemInterface.xcconfig; sourceTree = ""; }; + 2879556DEB4A8C08C13CA52B827D1B30 /* RAMBundleRegistry.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RAMBundleRegistry.h; sourceTree = ""; }; 288BE286F03060115DD9AF8F02177A9A /* upsampling_sse2.c */ = {isa = PBXFileReference; includeInIndex = 1; name = upsampling_sse2.c; path = src/dsp/upsampling_sse2.c; sourceTree = ""; }; 289A7FAC33616CEAE154163C9869020A /* FIRInstallationsIDController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstallationsIDController.h; path = FirebaseInstallations/Source/Library/InstallationsIDController/FIRInstallationsIDController.h; sourceTree = ""; }; 28AD1F843F1DFF344E92B8B18AB1A0FB /* SDImageCoderHelper.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageCoderHelper.m; path = SDWebImage/Core/SDImageCoderHelper.m; sourceTree = ""; }; 28FAFC7FE3AEBCDC53B7E984681EB602 /* FIRInstanceID_Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstanceID_Private.h; path = Firebase/InstanceID/Private/FIRInstanceID_Private.h; sourceTree = ""; }; - 292D360FBD2DF0B1A7BC35B6D987C722 /* RNDocumentPicker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNDocumentPicker.h; path = ios/RNDocumentPicker/RNDocumentPicker.h; sourceTree = ""; }; - 293453996B788C70D633FA86055F6290 /* 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; }; - 2936785F59C5322B88D81B1FAA01D28F /* BSG_KSCrashSentry_MachException.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSCrashSentry_MachException.c; sourceTree = ""; }; - 2953AFEA5B472DB9615C22E8789CB2BF /* BugsnagCrashSentry.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagCrashSentry.m; sourceTree = ""; }; - 2964A875804DB408D6BC6915AC9AEB8B /* RCTCxxBridge.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTCxxBridge.mm; sourceTree = ""; }; + 2967FE25DC0A47F8F883D96F5B771EC7 /* BugsnagCrashSentry.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagCrashSentry.h; sourceTree = ""; }; 297C759A2A6FB64610A331F75C41FC8D /* FIRInstanceIDAuthService.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstanceIDAuthService.h; path = Firebase/InstanceID/FIRInstanceIDAuthService.h; sourceTree = ""; }; 2987EA104168329CA646DE0B0609C594 /* FIRSecureStorage.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRSecureStorage.m; path = FirebaseInstallations/Source/Library/SecureStorage/FIRSecureStorage.m; sourceTree = ""; }; - 298DE658797268757F1A65E1E4E04840 /* RCTPlatform.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTPlatform.h; path = React/CoreModules/RCTPlatform.h; sourceTree = ""; }; + 299DE3575A6A766F8259A86B25064EA8 /* BugsnagCollections.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagCollections.m; sourceTree = ""; }; + 29A3D23975AEB6C01C3F1C00D62CFCA8 /* RCTTypedModuleConstants.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTTypedModuleConstants.mm; sourceTree = ""; }; + 29A7D11D300350632C05A768527780F6 /* RCTTouchEvent.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTTouchEvent.m; sourceTree = ""; }; + 29B12B1677700ED9FF44C3DAC8D0D196 /* RCTVirtualTextViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTVirtualTextViewManager.m; sourceTree = ""; }; 29BA4E5D5665A96984B0753F69FC38F7 /* Answers.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Answers.h; path = iOS/Crashlytics.framework/Headers/Answers.h; sourceTree = ""; }; + 29C15F0C9AAE37BA7318B35D4D917AFC /* ARTSolidColor.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = ARTSolidColor.m; sourceTree = ""; }; + 29D1EAC7FD47DC8D48535505CD061B3F /* RCTSwitch.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSwitch.m; sourceTree = ""; }; 29E2C22FF879C56A44707455873A657F /* firebasecore.nanopb.c */ = {isa = PBXFileReference; includeInIndex = 1; name = firebasecore.nanopb.c; path = Firebase/CoreDiagnostics/FIRCDLibrary/Protogen/nanopb/firebasecore.nanopb.c; sourceTree = ""; }; - 2A0AA3CE52D648DE41A3571BD5E16B0B /* ObservingInputAccessoryView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ObservingInputAccessoryView.h; path = lib/ObservingInputAccessoryView.h; sourceTree = ""; }; + 2A007E613A6BE0172BA89F4F8206660B /* RNFirebaseAdMobNativeExpressManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNFirebaseAdMobNativeExpressManager.h; sourceTree = ""; }; 2A2F1FA0788DFD486412DD726FC1C595 /* alpha_processing_sse2.c */ = {isa = PBXFileReference; includeInIndex = 1; name = alpha_processing_sse2.c; path = src/dsp/alpha_processing_sse2.c; sourceTree = ""; }; - 2A3C660C075184E8349C7E814CE48B2A /* BSG_KSCrashCallCompletion.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BSG_KSCrashCallCompletion.m; sourceTree = ""; }; - 2A4286B118C0A4F278E88C5D7372FF87 /* BannerComponent.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BannerComponent.m; sourceTree = ""; }; + 2A4E7108199FFDAEBEBF093950081874 /* RCTSurfaceRootShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSurfaceRootShadowView.m; sourceTree = ""; }; + 2A50FE5F8576807454CF6EB0587594A9 /* RCTImageLoaderProtocol.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageLoaderProtocol.h; path = Libraries/Image/RCTImageLoaderProtocol.h; sourceTree = ""; }; + 2A7AB6D66E7368C61F50FD2D27200B73 /* REAFunctionNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REAFunctionNode.h; sourceTree = ""; }; 2AA5FDE5D455838C40D597792B73FDCC /* SDImageCache.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageCache.h; path = SDWebImage/Core/SDImageCache.h; sourceTree = ""; }; - 2AD60FADFD97120FCFC1ABE6D30645F3 /* RCTImageStoreManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageStoreManager.h; path = React/CoreModules/RCTImageStoreManager.h; sourceTree = ""; }; - 2B17117BBA0FA32F7166B9FEAF823C1B /* RNFirebaseFirestoreCollectionReference.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNFirebaseFirestoreCollectionReference.h; sourceTree = ""; }; + 2AB430F2D01D646B93638CA23E08BF4F /* EXAV.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = EXAV.xcconfig; 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; }; - 2B1E44F7BDC8B7848079D7AACD2613F3 /* UMMagnetometerUncalibratedInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMMagnetometerUncalibratedInterface.h; path = UMSensorsInterface/UMMagnetometerUncalibratedInterface.h; sourceTree = ""; }; - 2B57AE722B7D0ACB1489C007CBC791C4 /* Bitfield.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Bitfield.h; path = yoga/Bitfield.h; sourceTree = ""; }; + 2B18181095B13DDFFBC3A6F7559C3D7E /* UMCameraInterface.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMCameraInterface.xcconfig; sourceTree = ""; }; + 2B26CF4A24F14DA46F4CBBE49C2E878D /* BugsnagErrorReportApiClient.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagErrorReportApiClient.h; sourceTree = ""; }; 2B5CA70816F8CA51268D097D84CE8B5B /* muxi.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = muxi.h; path = src/mux/muxi.h; sourceTree = ""; }; 2B60F0B412AB14099AD2E2BCB853B9F5 /* cached-powers.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "cached-powers.h"; path = "double-conversion/cached-powers.h"; sourceTree = ""; }; - 2B7A0342F5E5EAC123106C4C6C3F7CD6 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; + 2B6EBC45A237F740A12D58BFBFFB8230 /* ARTText.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ARTText.h; path = ios/ARTText.h; sourceTree = ""; }; + 2B83A561B4411E2632F6E481392116BE /* RNPushKit.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNPushKit.h; path = RNNotifications/RNPushKit.h; sourceTree = ""; }; + 2B98A8F9F7623B90F4B72BAF5548029A /* BSG_KSCrash.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BSG_KSCrash.m; sourceTree = ""; }; + 2BA63D57696D7E687EC2FA4516202830 /* UMLogHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMLogHandler.h; sourceTree = ""; }; 2BA675DA25C52E2FD5633ACE43240432 /* UIImage+GIF.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIImage+GIF.m"; path = "SDWebImage/Core/UIImage+GIF.m"; sourceTree = ""; }; 2BB0CFABA51216D7A7818D5F5D3015E7 /* cost_sse2.c */ = {isa = PBXFileReference; includeInIndex = 1; name = cost_sse2.c; path = src/dsp/cost_sse2.c; sourceTree = ""; }; + 2BC8D4E3EF3B9785792DFC040198C1E6 /* ARTRenderable.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = ARTRenderable.m; path = ios/ARTRenderable.m; sourceTree = ""; }; 2BD8EAE53B4A1B7062C4C439BA87951A /* Folly-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Folly-prefix.pch"; sourceTree = ""; }; 2BDC9CA7E51DCBAD996FE36076C1898E /* quant_levels_dec_utils.c */ = {isa = PBXFileReference; includeInIndex = 1; name = quant_levels_dec_utils.c; path = src/utils/quant_levels_dec_utils.c; sourceTree = ""; }; - 2BEC937B09574F427F2B45A82AD5CABF /* threadsafe.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = threadsafe.h; sourceTree = ""; }; - 2BFF82F85E72CE3BD263A56043744B85 /* advancedIos.md */ = {isa = PBXFileReference; includeInIndex = 1; name = advancedIos.md; path = docs/advancedIos.md; sourceTree = ""; }; + 2BEE581066BA4F123FBFD23B18ADC150 /* RCTMessageThread.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTMessageThread.mm; sourceTree = ""; }; + 2BF1BF656EC3B47BD4F59A5E5A51D844 /* EXKeepAwake.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = EXKeepAwake.xcconfig; sourceTree = ""; }; 2C015C102D6AB79D534F16ADF531CE8A /* FBLPromise+Testing.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FBLPromise+Testing.h"; path = "Sources/FBLPromises/include/FBLPromise+Testing.h"; sourceTree = ""; }; - 2C899536526DA1C73EC790E761C62BA6 /* UIResponder+FirstResponder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIResponder+FirstResponder.h"; path = "lib/UIResponder+FirstResponder.h"; sourceTree = ""; }; - 2C9C70911FE0ECFB92CA0FD3ABF17D61 /* RNBootSplash-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNBootSplash-dummy.m"; sourceTree = ""; }; - 2CA5678DC8F76ECB68F2667BD6BAA658 /* react-native-slider-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "react-native-slider-prefix.pch"; sourceTree = ""; }; - 2CE17607A2D920F7ABFE779394D23BF1 /* EXPermissions.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = EXPermissions.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - 2D078396B9ADE58EE3989BC92CE12587 /* RCTScrollContentView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTScrollContentView.m; sourceTree = ""; }; - 2D25B416996629B1B6EA7BB84C2A4FD5 /* UMReactNativeAdapter-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "UMReactNativeAdapter-prefix.pch"; sourceTree = ""; }; + 2C0AC29E6A0CE19E6C0057F95DD14384 /* EXWebBrowser-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "EXWebBrowser-dummy.m"; sourceTree = ""; }; + 2C77987BF682AFDFBDF7EA54C1F74FEE /* ARTNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ARTNode.h; path = ios/ARTNode.h; sourceTree = ""; }; + 2CBF432CE8D967079BB9DCFF84273861 /* UMTaskConsumerInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMTaskConsumerInterface.h; path = UMTaskManagerInterface/UMTaskConsumerInterface.h; sourceTree = ""; }; + 2CE90885A509D3BF4CCC47D823B2AA2F /* UMMagnetometerUncalibratedInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMMagnetometerUncalibratedInterface.h; path = UMSensorsInterface/UMMagnetometerUncalibratedInterface.h; sourceTree = ""; }; 2D2804B1DCF18B3386453877783E3BBC /* raw_logging.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = raw_logging.h; path = src/glog/raw_logging.h; sourceTree = ""; }; - 2D371E92E90BEE8CA11BFF000CBFA5CD /* RNJitsiMeetView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNJitsiMeetView.m; path = ios/RNJitsiMeetView.m; sourceTree = ""; }; + 2D359E03F9FE1F077A3D82FAB52F7E5A /* BSG_KSMach.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSMach.c; sourceTree = ""; }; 2D591C821A51F0825209BC1C05DFFB03 /* ssim.c */ = {isa = PBXFileReference; includeInIndex = 1; name = ssim.c; path = src/dsp/ssim.c; sourceTree = ""; }; 2D6E08DDF45483F5A4732B16AF971B03 /* GDTFLLUploader.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GDTFLLUploader.m; path = GoogleDataTransportCCTSupport/GDTCCTLibrary/GDTFLLUploader.m; sourceTree = ""; }; - 2D7684489BB16387B098D701CF6C60ED /* SocketRocket.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = SocketRocket.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 2D8C63FB8E4F9A996BD7B48B9D6AC6A8 /* BugsnagSink.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagSink.m; sourceTree = ""; }; + 2D95F855C66A73E8B8AF4EDF5C8496B2 /* BSG_KSSystemCapabilities.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSSystemCapabilities.h; sourceTree = ""; }; 2DA0D814DFCB860D31D7BCD63D795858 /* libFirebaseInstanceID.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libFirebaseInstanceID.a; path = libFirebaseInstanceID.a; sourceTree = BUILT_PRODUCTS_DIR; }; 2DAA01CE0749CD75B5D864D9C3DB8B11 /* SDWebImageDownloaderOperation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageDownloaderOperation.h; path = SDWebImage/Core/SDWebImageDownloaderOperation.h; sourceTree = ""; }; - 2DF2C146D066E5391A35C0AABECF830B /* EXWebBrowser.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXWebBrowser.m; path = EXWebBrowser/EXWebBrowser.m; sourceTree = ""; }; - 2E05218823012A4B1EEF8F9DBB40D1E0 /* RNGestureHandler-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNGestureHandler-dummy.m"; sourceTree = ""; }; - 2E129D35D85F70842378DAED6AEA862A /* ja.lproj */ = {isa = PBXFileReference; includeInIndex = 1; name = ja.lproj; path = ios/QBImagePicker/QBImagePicker/ja.lproj; sourceTree = ""; }; - 2E314D75D6DA169CB35F4DE4ABA2D8B2 /* subscription.md */ = {isa = PBXFileReference; includeInIndex = 1; name = subscription.md; path = docs/subscription.md; sourceTree = ""; }; - 2E47084E6E1000C6B0F23A4BE56D55B8 /* RCTGIFImageDecoder.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTGIFImageDecoder.m; sourceTree = ""; }; - 2E580349FA744B3346458A3C2E935B86 /* Yoga-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Yoga-prefix.pch"; sourceTree = ""; }; - 2E6024EDA1E8A791BC82A9049DD72D86 /* RNReanimated.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RNReanimated.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - 2E778981D37C53A0E35AF123EFF341D0 /* RNCCameraRollManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCCameraRollManager.m; path = ios/RNCCameraRollManager.m; sourceTree = ""; }; - 2E907964A01A0EBE1F44A25EE7D8E39D /* EXSystemBrightnessRequester.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXSystemBrightnessRequester.h; path = EXPermissions/EXSystemBrightnessRequester.h; sourceTree = ""; }; + 2E50340A01C6E685735D38CA40DC8A44 /* EXSystemBrightnessRequester.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXSystemBrightnessRequester.h; path = EXPermissions/EXSystemBrightnessRequester.h; sourceTree = ""; }; + 2E596CF03E8FB545AE5A94F575DF8D50 /* EXAppLoaderProvider.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXAppLoaderProvider.m; path = EXAppLoaderProvider/EXAppLoaderProvider.m; sourceTree = ""; }; + 2E7B00BF6FF630502AC09E09DD7EEF10 /* RNGestureHandlerRegistry.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNGestureHandlerRegistry.m; path = ios/RNGestureHandlerRegistry.m; sourceTree = ""; }; 2EA1D92B58046A683FB99792F54C738E /* GoogleDataTransport-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "GoogleDataTransport-dummy.m"; sourceTree = ""; }; - 2EAF303A49C1930A526AA27B3D484A4D /* React-RCTNetwork.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-RCTNetwork.xcconfig"; sourceTree = ""; }; + 2EC7B534B525A025374BCD25858E368E /* FBReactNativeSpec-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "FBReactNativeSpec-prefix.pch"; sourceTree = ""; }; + 2ED4F97DE63B1EE66CE94FD217229288 /* BugsnagConfiguration.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagConfiguration.m; sourceTree = ""; }; 2EE8ED7B82F5E3A7EF109FDD2E17A97F /* NSButton+WebCache.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSButton+WebCache.h"; path = "SDWebImage/Core/NSButton+WebCache.h"; sourceTree = ""; }; 2EE96081B960EB5843F26F6558A40730 /* UIView+WebCache.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIView+WebCache.m"; path = "SDWebImage/Core/UIView+WebCache.m"; sourceTree = ""; }; - 2EF9ECF63D5D2FCB6E536A7D85E8BC04 /* 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; }; 2F107D99DE30C03FC83538F1745C81DE /* SDAnimatedImageView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDAnimatedImageView.h; path = SDWebImage/Core/SDAnimatedImageView.h; sourceTree = ""; }; - 2F2911EE8CF76A3661108A945FBBCDA0 /* RCTNativeModule.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTNativeModule.mm; sourceTree = ""; }; + 2F363F579B0872A1071139741255EA95 /* DispatchMessageQueueThread.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = DispatchMessageQueueThread.h; sourceTree = ""; }; 2F373F964FD76A572A5BB6D473B3233B /* types.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = types.h; path = src/webp/types.h; sourceTree = ""; }; - 2F648E0E3E84654009319A9A0EC7A4C9 /* RCTPerformanceLogger.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTPerformanceLogger.h; sourceTree = ""; }; 2F7C021AFD37BBD8879F4CED45D3CBB6 /* nanopb-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "nanopb-prefix.pch"; sourceTree = ""; }; - 2F800695D27FA1FC622EE957138F69CB /* RCTFollyConvert.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTFollyConvert.h; sourceTree = ""; }; - 2F9ADA297A62FAD8A41BDA8437479CD7 /* UMDeviceMotionInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMDeviceMotionInterface.h; path = UMSensorsInterface/UMDeviceMotionInterface.h; sourceTree = ""; }; + 2F975753960B42CEAF0D6CB4682433F2 /* RNGestureHandlerEvents.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNGestureHandlerEvents.h; path = ios/RNGestureHandlerEvents.h; sourceTree = ""; }; 2F9FF75DBA3C633DA045206F6C039C91 /* FirebaseInstanceID.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = FirebaseInstanceID.xcconfig; sourceTree = ""; }; 2FA8915E0D8D275C898AC3CC45B0C183 /* Folly-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Folly-dummy.m"; sourceTree = ""; }; + 2FA9D9405A01F7572D48EA2326166D64 /* LNAnimator.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = LNAnimator.m; sourceTree = ""; }; + 2FB1DBCF6934AC61BC52CAF58D20B94F /* RCTURLRequestHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTURLRequestHandler.h; sourceTree = ""; }; 2FC5C1273D1024C325327DCD080C4650 /* dec_sse41.c */ = {isa = PBXFileReference; includeInIndex = 1; name = dec_sse41.c; path = src/dsp/dec_sse41.c; sourceTree = ""; }; - 2FC8520ECC31420FA2690C6A65283618 /* RootView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RootView.h; path = ios/RootView.h; sourceTree = ""; }; - 2FF7E5D0F84784985C0963A5E13C7EEA /* RCTProfileTrampoline-i386.S */ = {isa = PBXFileReference; includeInIndex = 1; path = "RCTProfileTrampoline-i386.S"; sourceTree = ""; }; - 301FCE951F2D1213894FFD2A9F1C86B6 /* RCTLayoutAnimation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTLayoutAnimation.m; sourceTree = ""; }; - 3028E0F70A65168FC0D8B1285013F788 /* RCTUIUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTUIUtils.h; sourceTree = ""; }; - 3036FECE3E869779BDDCBE736F73DA45 /* UMUIManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMUIManager.h; sourceTree = ""; }; + 3019868D5639647EF28AF7FD7FFB8551 /* RCTRequired.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTRequired.h; path = RCTRequired/RCTRequired.h; sourceTree = ""; }; + 306BACE18FC2849B86A1322FA34E4E19 /* React-RCTActionSheet-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-RCTActionSheet-dummy.m"; sourceTree = ""; }; + 3070F569D77C934F5B7C297593D5B5A6 /* InspectorInterfaces.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = InspectorInterfaces.cpp; sourceTree = ""; }; + 307E93E79DB8B9F66EC9B5653D8CFBE4 /* UMFileSystemInterface.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = UMFileSystemInterface.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 309EEEB47263874F5B9CEE95977E403C /* EXHaptics-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "EXHaptics-dummy.m"; sourceTree = ""; }; 30B2778F70E9E7B0D2AE6C69B7F5FA18 /* UIImage+WebP.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIImage+WebP.h"; path = "SDWebImageWebPCoder/Classes/UIImage+WebP.h"; sourceTree = ""; }; - 30B353DEC498EA5A641CAFC6D6DB0633 /* React-jsiexecutor.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-jsiexecutor.xcconfig"; sourceTree = ""; }; - 30B42C0239D75D77F4F692191C449F96 /* RNTapHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNTapHandler.h; sourceTree = ""; }; 30B6C6D8A65E6CF1025DC7B7A6DEE0CD /* FIRInstallationsAuthTokenResult.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstallationsAuthTokenResult.h; path = FirebaseInstallations/Source/Library/Public/FIRInstallationsAuthTokenResult.h; sourceTree = ""; }; - 30BA22A2D2F4FAFF76942172910C1E45 /* RCTVirtualTextViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTVirtualTextViewManager.h; sourceTree = ""; }; - 310F683ED975C384F97BB40AD49191AD /* UMInternalModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMInternalModule.h; sourceTree = ""; }; - 311469F132A4E4FCE7A2BF8C5C518FA8 /* NSURLRequest+SRWebSocket.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSURLRequest+SRWebSocket.m"; path = "SocketRocket/NSURLRequest+SRWebSocket.m"; sourceTree = ""; }; - 311BD31044EA36C407E4B911BE3314CE /* UMReactNativeAdapter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMReactNativeAdapter.h; sourceTree = ""; }; - 3134FBAA99877C4AA59911BA02CDC2EC /* BSG_KSCrashReportStore.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashReportStore.h; sourceTree = ""; }; - 313A426486521590465E09DC26A5D443 /* RCTConvertHelpers.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTConvertHelpers.h; sourceTree = ""; }; - 3145621CFDEA849F9DB960EC916DAD82 /* SRLog.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = SRLog.h; sourceTree = ""; }; + 3111C404121894DDCFC1B6FF8A409B32 /* RCTSegmentedControl.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSegmentedControl.m; sourceTree = ""; }; + 31656A9AAAC055D25FC56A768516F9EA /* REACallFuncNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REACallFuncNode.h; sourceTree = ""; }; + 3177022A507B89ED5E2D545E92DF7054 /* RCTLayout.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTLayout.m; sourceTree = ""; }; 3185ACD9193E4C2844B2A264ECC81F13 /* Fabric.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = Fabric.xcconfig; sourceTree = ""; }; + 319A7A9BF1988098566FE61369534C72 /* Yoga-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Yoga-dummy.m"; sourceTree = ""; }; 31AFD104F69CCD2F1C24B01B859DDA5A /* FIRIMessageCode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRIMessageCode.h; path = Firebase/InstanceID/FIRIMessageCode.h; sourceTree = ""; }; 31CCEDC883A767472D9DE6E98B55225A /* FIRConfiguration.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRConfiguration.h; path = FirebaseCore/Sources/Public/FIRConfiguration.h; sourceTree = ""; }; 31D19F7F78897D1BC258DE9692B90D33 /* SDAnimatedImageRep.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDAnimatedImageRep.h; path = SDWebImage/Core/SDAnimatedImageRep.h; sourceTree = ""; }; - 31E1FCAB5F0FDA1320E0B4D3E33C49B0 /* BSG_KSFileUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSFileUtils.h; sourceTree = ""; }; - 322F3B7909BAA7E21257160C8C1CB542 /* React-RCTVibration.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-RCTVibration.xcconfig"; sourceTree = ""; }; - 324C341C67E51980953FB2A952813183 /* RCTDeviceInfo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTDeviceInfo.h; sourceTree = ""; }; + 322571C45B804E9A539D80A85896A748 /* BugsnagNotifier.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagNotifier.h; sourceTree = ""; }; + 3227282E2EF72045F2D73E9B1891162B /* Yoga.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Yoga.h; path = yoga/Yoga.h; sourceTree = ""; }; + 322A3A64E30DD2212EA30D3262C8F54B /* FFFastImageViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FFFastImageViewManager.h; path = ios/FastImage/FFFastImageViewManager.h; sourceTree = ""; }; 325556A95664EB529C31870C6A52D5D8 /* FirebaseCore.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FirebaseCore.h; path = FirebaseCore/Sources/Public/FirebaseCore.h; sourceTree = ""; }; 325C4D831CC5588DA91A39FF53FA5BB0 /* NSError+FIRInstanceID.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSError+FIRInstanceID.h"; path = "Firebase/InstanceID/NSError+FIRInstanceID.h"; sourceTree = ""; }; 327D614BA3B1F0B08F1632FD256AEA36 /* enc.c */ = {isa = PBXFileReference; includeInIndex = 1; name = enc.c; path = src/dsp/enc.c; sourceTree = ""; }; + 328E43D019FF2742D785C617C3826662 /* BSG_KSSysCtl.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSSysCtl.c; sourceTree = ""; }; 32964D290663FAA0AEFD17DAEBD90947 /* lossless_msa.c */ = {isa = PBXFileReference; includeInIndex = 1; name = lossless_msa.c; path = src/dsp/lossless_msa.c; sourceTree = ""; }; - 329D269B4F8F72EA282F5DFAE404C963 /* react-native-document-picker.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "react-native-document-picker.xcconfig"; sourceTree = ""; }; - 32A92903CC9F58C188FC431919F6F5FF /* RCTParserUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTParserUtils.h; sourceTree = ""; }; + 32B872F24CAC2DF9B15DDEDECDB1C82A /* BSG_KSCrashC.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSCrashC.c; sourceTree = ""; }; + 32DE5F05C8013901EA4EBF72E868DE3D /* BSG_KSSystemInfo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSSystemInfo.h; sourceTree = ""; }; 32E8D2B7930D83212864A4ACCE2292BC /* lossless_enc_neon.c */ = {isa = PBXFileReference; includeInIndex = 1; name = lossless_enc_neon.c; path = src/dsp/lossless_enc_neon.c; sourceTree = ""; }; - 32F2C349D59E36828E96C8963E9CDE75 /* JSBundleType.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = JSBundleType.cpp; sourceTree = ""; }; + 3302E2B631B54F490607586F09010046 /* RNBootSplash-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNBootSplash-prefix.pch"; sourceTree = ""; }; + 330966B3711E07FB73BDF539582957A3 /* RNBootSplash.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNBootSplash.h; path = ios/RNBootSplash.h; sourceTree = ""; }; + 33436A67057DC5539D341F791AD7A813 /* RCTTextAttributes.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTTextAttributes.m; sourceTree = ""; }; 33446CC862D2173DA53D5E95665C24A8 /* GDTFLLPrioritizer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTFLLPrioritizer.h; path = GoogleDataTransportCCTSupport/GDTCCTLibrary/Private/GDTFLLPrioritizer.h; sourceTree = ""; }; 3347A1AB6546F0A3977529B8F199DC41 /* libPromisesObjC.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libPromisesObjC.a; path = libPromisesObjC.a; sourceTree = BUILT_PRODUCTS_DIR; }; 336D56D9272DA9C7A6F5356D0DB9B248 /* NSData+ImageContentType.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSData+ImageContentType.h"; path = "SDWebImage/Core/NSData+ImageContentType.h"; sourceTree = ""; }; - 33722450044BDFC3ABA98AE32BD91D44 /* react-native-background-timer-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "react-native-background-timer-prefix.pch"; sourceTree = ""; }; - 3375C1D4BD7DD40F7EF70F8FB2AA0456 /* RCTBackedTextInputDelegateAdapter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTBackedTextInputDelegateAdapter.m; sourceTree = ""; }; - 3386361BCF1253328BFC0FEE0AB8FC2B /* RNFirebaseAdMobInterstitial.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNFirebaseAdMobInterstitial.h; sourceTree = ""; }; - 338CC2A9A05E26A831599E57812361DF /* UMModuleRegistryProvider.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = UMModuleRegistryProvider.m; sourceTree = ""; }; - 33CA4AF62A3D638383E51FFAD00B3B23 /* RCTRefreshControlManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTRefreshControlManager.h; sourceTree = ""; }; - 33E4CF797C3A48C4F95A43DA7FC4763D /* RCTImageEditingManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageEditingManager.h; path = React/CoreModules/RCTImageEditingManager.h; sourceTree = ""; }; 340F8DC0B45AE963FE9FEB6290B2F0BA /* FIRInstanceIDCheckinPreferences.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstanceIDCheckinPreferences.h; path = Firebase/InstanceID/Private/FIRInstanceIDCheckinPreferences.h; sourceTree = ""; }; - 3439A4F51CD7004E03A46A8C1CFCA866 /* REAAlwaysNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REAAlwaysNode.h; sourceTree = ""; }; + 3436760029CF8480604F8B48EC482CD7 /* REAValueNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REAValueNode.m; sourceTree = ""; }; + 343B172F0660C823EE8078AA60242870 /* BSG_KSString.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSString.c; sourceTree = ""; }; 343CB5CAE5DB1DC31FE3E8AA6F13485D /* Pods-RocketChatRN-acknowledgements.markdown */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; path = "Pods-RocketChatRN-acknowledgements.markdown"; sourceTree = ""; }; - 3453EF6400BE072C1F53D0DBA6DF2F86 /* RNFirebaseInstanceId.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNFirebaseInstanceId.m; sourceTree = ""; }; 34576144E62481590800B259D7FB76E9 /* SDWebImage-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "SDWebImage-prefix.pch"; sourceTree = ""; }; - 34742A3FEAFF78BFDCA00F394852BBEE /* NativeToJsBridge.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = NativeToJsBridge.h; sourceTree = ""; }; - 34788C3FA39C4DF8855A9713FF986AA5 /* React-RCTAnimation-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-RCTAnimation-prefix.pch"; sourceTree = ""; }; 3479DAFDB6E7103FA78860240F0C3A7C /* SDWebImageCompat.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageCompat.h; path = SDWebImage/Core/SDWebImageCompat.h; sourceTree = ""; }; - 3494CD0839E949CDB414695323700978 /* EXAVPlayerData.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXAVPlayerData.h; path = EXAV/EXAVPlayerData.h; sourceTree = ""; }; - 34AB7353157698E0185BF1E0F8704B0F /* RCTImageSource.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTImageSource.m; sourceTree = ""; }; + 34976D1F0EB553F6DED4F7314D387F99 /* RCTStyleAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTStyleAnimatedNode.h; sourceTree = ""; }; 34ACC90522BF9626ADB3630C6DD72733 /* UIImageView+HighlightedWebCache.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIImageView+HighlightedWebCache.m"; path = "SDWebImage/Core/UIImageView+HighlightedWebCache.m"; sourceTree = ""; }; - 34BA3B9513B4A637C87015392B20B03E /* ARTLinearGradient.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = ARTLinearGradient.h; sourceTree = ""; }; - 34C8101D476E1C5E09D71D8968D53742 /* RNDocumentPicker.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNDocumentPicker.m; path = ios/RNDocumentPicker/RNDocumentPicker.m; sourceTree = ""; }; - 34D7223FF2AE4853BCFF44A79FBEA6E7 /* RCTSpringAnimation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSpringAnimation.m; sourceTree = ""; }; - 34F300D91EF74B849CCC058CA6C04487 /* jsilib.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = jsilib.h; sourceTree = ""; }; - 34FC437454CBB9E8FB9A9B93FE086ABE /* MaterialCommunityIcons.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = MaterialCommunityIcons.ttf; path = Fonts/MaterialCommunityIcons.ttf; sourceTree = ""; }; + 34BD12EFE87BBC1715B6008AB32ED33B /* RCTVirtualTextViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTVirtualTextViewManager.h; sourceTree = ""; }; + 35042D1973059E08B00F8A8AD1B01E49 /* RCTBackedTextInputDelegateAdapter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTBackedTextInputDelegateAdapter.m; sourceTree = ""; }; + 350AD172999370ABF4BACFB3589A46E0 /* UMModuleRegistryProvider.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = UMModuleRegistryProvider.m; sourceTree = ""; }; + 35145DC66624F0E776BF52C0BAB5863F /* UMBarCodeScannerInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMBarCodeScannerInterface.h; path = UMBarCodeScannerInterface/UMBarCodeScannerInterface.h; sourceTree = ""; }; 352467F523D37BA242FF792076C4BBA2 /* cpu.c */ = {isa = PBXFileReference; includeInIndex = 1; name = cpu.c; path = src/dsp/cpu.c; sourceTree = ""; }; - 354A9BE84DB39B99B7E5602F4ECDB776 /* EXFilePermissionModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXFilePermissionModule.h; path = EXFileSystem/EXFilePermissionModule.h; sourceTree = ""; }; - 355046293781F1CAE32BB1C4CE8258DE /* RCTAsyncLocalStorage.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTAsyncLocalStorage.h; sourceTree = ""; }; - 3566F3E246CB4E6EC676ED2CE9303D83 /* UMTaskServiceInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMTaskServiceInterface.h; path = UMTaskManagerInterface/UMTaskServiceInterface.h; sourceTree = ""; }; - 356870037B3F43B3E9AB0BE29AD1FA6E /* RCTSafeAreaShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSafeAreaShadowView.h; sourceTree = ""; }; - 35749A2B024B6AA94FBDED0A3B6CEF2E /* 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; }; - 359F229F29BACA8A332F42FCA27FD253 /* EXAudioRecordingPermissionRequester.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXAudioRecordingPermissionRequester.m; path = EXPermissions/EXAudioRecordingPermissionRequester.m; sourceTree = ""; }; - 35AE382F030BD854463EFF0F7EC63E61 /* EXLocationRequester.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXLocationRequester.h; path = EXPermissions/EXLocationRequester.h; sourceTree = ""; }; - 35B98F414D15769FDDBC11E001628A67 /* RCTInputAccessoryView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTInputAccessoryView.m; sourceTree = ""; }; + 352EBF854A2144E7D723C8C90EFF61C1 /* RCTModalHostViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTModalHostViewManager.m; sourceTree = ""; }; + 3546BC760EA50844B9B5EA7EE0995913 /* RCTBlobCollector.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTBlobCollector.mm; sourceTree = ""; }; + 3568E84483FD71FD9A50EB376435E211 /* RCTImageUtils.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTImageUtils.m; sourceTree = ""; }; 35C331504D9FED2A78645DE10B40A14F /* fast-dtoa.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "fast-dtoa.h"; path = "double-conversion/fast-dtoa.h"; sourceTree = ""; }; - 35F82330B8E68C52F82F58F0989F80E2 /* RNFirebaseCrashlytics.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNFirebaseCrashlytics.m; sourceTree = ""; }; + 35D3D70B2616F0BEDD4C1DE5AABC1C38 /* BugsnagSink.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagSink.h; sourceTree = ""; }; 360D859E4F26E0D45AC34F09DA57FE65 /* GULSceneDelegateSwizzler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULSceneDelegateSwizzler.h; path = GoogleUtilities/SceneDelegateSwizzler/Private/GULSceneDelegateSwizzler.h; sourceTree = ""; }; - 3637B0A5F74D889EBE4FEC06A504731C /* BugsnagSessionTracker.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagSessionTracker.m; sourceTree = ""; }; - 363E1E9E9110F7A556772468C20C2395 /* QBVideoIndicatorView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = QBVideoIndicatorView.m; path = ios/QBImagePicker/QBImagePicker/QBVideoIndicatorView.m; sourceTree = ""; }; + 363F567F983EFF93ABD0E998D6CE055C /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; 36437C1B03AC2005FE5AE9B6ABB4A399 /* quant_levels_utils.c */ = {isa = PBXFileReference; includeInIndex = 1; name = quant_levels_utils.c; path = src/utils/quant_levels_utils.c; sourceTree = ""; }; + 365041740810955DB1449E165C1D4204 /* RCTConvertHelpers.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTConvertHelpers.h; sourceTree = ""; }; 36585169EB94500CF044692BF107C3A0 /* FIRInstanceID+Private.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "FIRInstanceID+Private.m"; path = "Firebase/InstanceID/FIRInstanceID+Private.m"; sourceTree = ""; }; - 3659FB904660BFDA326C370058C63522 /* RNFirebaseAdMob.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNFirebaseAdMob.m; sourceTree = ""; }; - 365C56573D7F2571B09C2A845BCF13E1 /* EXVideoManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = EXVideoManager.h; sourceTree = ""; }; 369513EEA056867CD6A5F02835B302FE /* webp_enc.c */ = {isa = PBXFileReference; includeInIndex = 1; name = webp_enc.c; path = src/enc/webp_enc.c; sourceTree = ""; }; 36F488E2824DFEFCE2DA5121F3EFF1AF /* thread_utils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = thread_utils.h; path = src/utils/thread_utils.h; sourceTree = ""; }; 3705D82A3DC4CA7F5EDBE3BE24EB6EE3 /* GoogleAppMeasurement.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = GoogleAppMeasurement.xcconfig; sourceTree = ""; }; + 370C0BF090AADF29F836C4B173E20BA8 /* UMViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = UMViewManager.m; path = UMCore/UMViewManager.m; sourceTree = ""; }; 371C3A9071849B2A8C9AA73083078BAB /* filters_msa.c */ = {isa = PBXFileReference; includeInIndex = 1; name = filters_msa.c; path = src/dsp/filters_msa.c; sourceTree = ""; }; + 373838D62F21752766117049326DD9A8 /* RNUserDefaults.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNUserDefaults.h; path = ios/RNUserDefaults.h; sourceTree = ""; }; 37592FDAD45752511010F4B06AC57355 /* libReact-cxxreact.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libReact-cxxreact.a"; path = "libReact-cxxreact.a"; sourceTree = BUILT_PRODUCTS_DIR; }; 3762F4EB37B62BDA42A52139A2CE184A /* NSBezierPath+RoundedCorners.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSBezierPath+RoundedCorners.m"; path = "SDWebImage/Private/NSBezierPath+RoundedCorners.m"; sourceTree = ""; }; - 377475B80F7E130D5D172087140371EB /* RNLocalize-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNLocalize-prefix.pch"; sourceTree = ""; }; 378C25F0844A70F6AF0AD604D5B04960 /* SDAnimatedImagePlayer.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDAnimatedImagePlayer.m; path = SDWebImage/Core/SDAnimatedImagePlayer.m; sourceTree = ""; }; - 37A99D280F571F59625B44925CDC9211 /* EXFileSystemAssetLibraryHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXFileSystemAssetLibraryHandler.h; path = EXFileSystem/EXFileSystemAssetLibraryHandler.h; sourceTree = ""; }; 37AECEE6AC0671E260C2B1BE9B3738AD /* vp8i_dec.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = vp8i_dec.h; path = src/dec/vp8i_dec.h; sourceTree = ""; }; - 37FFBD965979814BCBD0ABC597560358 /* BannerComponent.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BannerComponent.h; sourceTree = ""; }; - 381ACA616782C0C9F41DD974A4BF5521 /* RCTTextView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTextView.h; sourceTree = ""; }; - 3826DF82E9CC270392DC3031EDF5A369 /* React-jsinspector.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-jsinspector.xcconfig"; sourceTree = ""; }; + 37BB7DDC3451BEFC99E1D9F94D744450 /* log.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = log.h; path = yoga/log.h; sourceTree = ""; }; + 37BD19E43D701CAE444E127D1DC6910A /* RCTConvert+ART.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "RCTConvert+ART.h"; path = "ios/RCTConvert+ART.h"; sourceTree = ""; }; + 37F0F4903F60E772E81AA73B8F63FA68 /* RCTKeyCommands.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTKeyCommands.h; sourceTree = ""; }; + 381F1DC347A9886BB29C50263D255BBD /* en.lproj */ = {isa = PBXFileReference; includeInIndex = 1; name = en.lproj; path = ios/QBImagePicker/QBImagePicker/en.lproj; sourceTree = ""; }; 3831B2A00965967014DC2303A0B27F59 /* FIRSecureStorage.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRSecureStorage.h; path = FirebaseInstallations/Source/Library/SecureStorage/FIRSecureStorage.h; sourceTree = ""; }; 383A35C11C4C2DD2BADC793667564783 /* pb_encode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = pb_encode.h; sourceTree = ""; }; - 386E4CCDBF2F5ADB2DD2E02591BB47FF /* EXLocationRequester.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXLocationRequester.m; path = EXPermissions/EXLocationRequester.m; sourceTree = ""; }; - 387BE2328C28DC2CEFBFC95AA03064EC /* RCTCxxMethod.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTCxxMethod.h; sourceTree = ""; }; + 3842FCE8B9E849B27CCA1FDAD4511762 /* RCTFont.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTFont.mm; sourceTree = ""; }; + 38432BA34CBDF337C8E48E5858BCE7D9 /* RNScreens-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNScreens-prefix.pch"; sourceTree = ""; }; + 38686A84D06924E5F84F508EC9989699 /* RCTEventDispatcher.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTEventDispatcher.h; sourceTree = ""; }; 387FDB6229B2B5EDABF7EAFC7EB23979 /* filters_sse2.c */ = {isa = PBXFileReference; includeInIndex = 1; name = filters_sse2.c; path = src/dsp/filters_sse2.c; sourceTree = ""; }; - 389643E2CEF07BCBF0B588BEE771B98F /* MessageQueueThread.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = MessageQueueThread.h; sourceTree = ""; }; - 38BC8B60FD8088AEA1252FFD7701D678 /* YGEnums.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = YGEnums.cpp; path = yoga/YGEnums.cpp; sourceTree = ""; }; - 38C9CAB167C3A105C83931874B177D67 /* ARTGroup.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = ARTGroup.m; path = ios/ARTGroup.m; sourceTree = ""; }; + 38B93C728FB951DF046A356CDFC0E44D /* RNUserDefaults.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RNUserDefaults.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; 38CB235F9B094ECF8F8B1B1C082AB298 /* GDTCORUploadCoordinator.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GDTCORUploadCoordinator.m; path = GoogleDataTransport/GDTCORLibrary/GDTCORUploadCoordinator.m; sourceTree = ""; }; - 390EB75A812143B1A811F566F22BEC7B /* RNUserDefaults.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNUserDefaults.m; path = ios/RNUserDefaults.m; sourceTree = ""; }; + 38FC68E3E17EC6854982DDDAD639B419 /* LongLivedObject.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = LongLivedObject.h; path = turbomodule/core/LongLivedObject.h; sourceTree = ""; }; 3912963231AA3AA7436B53843E64EE76 /* SDWebImageDownloaderRequestModifier.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWebImageDownloaderRequestModifier.m; path = SDWebImage/Core/SDWebImageDownloaderRequestModifier.m; sourceTree = ""; }; 392B3106DCD1282949C544B07B1586E4 /* tree_enc.c */ = {isa = PBXFileReference; includeInIndex = 1; name = tree_enc.c; path = src/enc/tree_enc.c; sourceTree = ""; }; + 39420CC50732B5C7EF63B99B8EE64DB9 /* RCTHTTPRequestHandler.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTHTTPRequestHandler.mm; sourceTree = ""; }; + 39487850C84D1F5D30871A9B1105A7A1 /* RCTShadowView+Layout.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RCTShadowView+Layout.h"; sourceTree = ""; }; + 394C59DEA4E90E10EA55F0EC97A723FD /* TurboModuleUtils.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = TurboModuleUtils.cpp; path = turbomodule/core/TurboModuleUtils.cpp; sourceTree = ""; }; 395775162350335AB985C2E53A0F2AFA /* UIImage+ExtendedCacheData.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIImage+ExtendedCacheData.m"; path = "SDWebImage/Core/UIImage+ExtendedCacheData.m"; sourceTree = ""; }; - 39668E5BE34343D5B35086F2764604FB /* EXAppLoaderProvider.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = EXAppLoaderProvider.xcconfig; sourceTree = ""; }; + 39639DEFAB37B167C11BA5145D71E714 /* BugsnagHandledState.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagHandledState.h; sourceTree = ""; }; 3967559F2F789C16C8ECC9F64D330D0F /* yuv_sse2.c */ = {isa = PBXFileReference; includeInIndex = 1; name = yuv_sse2.c; path = src/dsp/yuv_sse2.c; sourceTree = ""; }; + 396A93D0FB42E576209E2DFBD6213ACD /* RCTBaseTextShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBaseTextShadowView.h; sourceTree = ""; }; + 398334E9BFB85EF5826D989998679C43 /* UMCameraInterface.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = UMCameraInterface.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; 3995372A68A43A67B051244F80037938 /* FIRInstanceIDVersionUtilities.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstanceIDVersionUtilities.h; path = Firebase/InstanceID/FIRInstanceIDVersionUtilities.h; sourceTree = ""; }; - 39A2D851FE615DF7A584C8271B878C49 /* RCTSurfacePresenterStub.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSurfacePresenterStub.h; sourceTree = ""; }; - 39A6C2D16B6CA118EADEF15BE4AAFF5A /* EXUserNotificationRequester.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXUserNotificationRequester.h; path = EXPermissions/EXUserNotificationRequester.h; sourceTree = ""; }; - 39B388442F0969FBDAADF1FF5C0BFDFC /* Feather.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = Feather.ttf; path = Fonts/Feather.ttf; sourceTree = ""; }; 39D1DB7D0AB5BA90F8138F64EBA4323B /* FIRInstanceIDConstants.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstanceIDConstants.m; path = Firebase/InstanceID/FIRInstanceIDConstants.m; sourceTree = ""; }; - 39DC53D4A85213E664AAA0FC642E0690 /* RCTRefreshControlManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTRefreshControlManager.m; sourceTree = ""; }; - 39FCB92FEFA582E1264D20B8974C25D7 /* RCTSinglelineTextInputViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSinglelineTextInputViewManager.h; sourceTree = ""; }; - 39FF141C8955B49FEF966E062C6BF70A /* SRURLUtilities.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = SRURLUtilities.h; sourceTree = ""; }; - 3A125568FCC4029332BB55668E241081 /* UMModuleRegistryConsumer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMModuleRegistryConsumer.h; sourceTree = ""; }; - 3A5201057D2833FE481A1362AEFA89DF /* RCTTextSelection.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTTextSelection.m; sourceTree = ""; }; - 3ABC1FBB5AB1BDD5F644EB9F2017D18C /* FFFastImageViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FFFastImageViewManager.h; path = ios/FastImage/FFFastImageViewManager.h; sourceTree = ""; }; + 3A83A10DCA120BCFF11AC91AC2107418 /* EXRemoteNotificationRequester.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXRemoteNotificationRequester.m; path = EXPermissions/EXRemoteNotificationRequester.m; sourceTree = ""; }; + 3A8C581D9EF1B77EF6DCBDF21CE6A214 /* YGEnums.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = YGEnums.cpp; path = yoga/YGEnums.cpp; sourceTree = ""; }; + 3A8D32B9400E3291CDE2A19563EED735 /* NSTextStorage+FontScaling.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "NSTextStorage+FontScaling.m"; sourceTree = ""; }; 3AEA4A114C08533A2C0F8E039A4C5EB9 /* libRNImageCropPicker.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libRNImageCropPicker.a; path = libRNImageCropPicker.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 3B27AF07DF369B7F988916D839C0A8D1 /* ARTLinearGradient.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = ARTLinearGradient.m; sourceTree = ""; }; - 3B29F066C4D7A5F4CDAA141FF6B4208C /* RNNotificationUtils.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNNotificationUtils.m; path = RNNotifications/RNNotificationUtils.m; sourceTree = ""; }; - 3B4A222D583E9AD9DD60C4833772C233 /* UMModuleRegistry.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMModuleRegistry.h; sourceTree = ""; }; - 3B61A9482BC3A9BEDDDE88B257AB21F1 /* UMNativeModulesProxy.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMNativeModulesProxy.h; sourceTree = ""; }; + 3B16C6CC030E54F9A3BDE536225E6528 /* BSG_KSCrashCallCompletion.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashCallCompletion.h; sourceTree = ""; }; + 3B1C66F45EEF55D24FA354EF02182F86 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; + 3B4E37F98268D21A8352B832538BC8EA /* ModuleRegistry.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = ModuleRegistry.h; sourceTree = ""; }; + 3B4F65145F6E794BAB60F60F08197DE2 /* RCTAsyncLocalStorage.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTAsyncLocalStorage.m; sourceTree = ""; }; 3B640835BAA914DD267B5E780D8CFEC7 /* libUMReactNativeAdapter.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libUMReactNativeAdapter.a; path = libUMReactNativeAdapter.a; sourceTree = BUILT_PRODUCTS_DIR; }; 3B65CB9B6DCD893501BDCF1DE7BA926C /* libRNAudio.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libRNAudio.a; path = libRNAudio.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 3BE921D7BECDF796EFC4AD40C6D8797A /* RCTErrorInfo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTErrorInfo.h; sourceTree = ""; }; - 3BEAB31533E97E2BAC87330EA35D04DA /* SRSecurityPolicy.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SRSecurityPolicy.h; path = SocketRocket/SRSecurityPolicy.h; sourceTree = ""; }; - 3C0EE17279C996567D2F074EF0414F4F /* MethodCall.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = MethodCall.cpp; sourceTree = ""; }; - 3C32DE0B3B6C459E1AD9C72200BAB56C /* RCTTransformAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTransformAnimatedNode.h; sourceTree = ""; }; - 3C338BD60261AF2FD0C7B470F23922BB /* react-native-document-picker-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "react-native-document-picker-prefix.pch"; sourceTree = ""; }; - 3C3813F10C00C6606FEA8943AF75045E /* RCTAnimationType.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTAnimationType.h; sourceTree = ""; }; + 3B7C37914C89D8E242AA293908C90A94 /* React-RCTBlob.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-RCTBlob.xcconfig"; sourceTree = ""; }; + 3B811D77A892D0A6D91EE2E70613A60C /* ARTText.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = ARTText.m; path = ios/ARTText.m; sourceTree = ""; }; + 3B9F645165AC155363E87BF3E30F5887 /* RNBackgroundTimer.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNBackgroundTimer.m; path = ios/RNBackgroundTimer.m; sourceTree = ""; }; + 3BB0880DBB26A100D5CDAF450356CF3C /* RCTPlatform.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTPlatform.h; path = React/CoreModules/RCTPlatform.h; sourceTree = ""; }; + 3C0C274DADCDA9D823ED46898B120A65 /* RCTSafeAreaViewLocalData.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSafeAreaViewLocalData.m; sourceTree = ""; }; 3C3849B9FE871B8A9BFFEA94781CC286 /* SDWebImageDownloader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageDownloader.h; path = SDWebImage/Core/SDWebImageDownloader.h; sourceTree = ""; }; + 3C41CCEE96E59EFFFD18F3F989DF6F24 /* REASetNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REASetNode.h; sourceTree = ""; }; 3C4BE532E284D6FC858B445EBCE54BE5 /* cost_mips32.c */ = {isa = PBXFileReference; includeInIndex = 1; name = cost_mips32.c; path = src/dsp/cost_mips32.c; sourceTree = ""; }; 3C4C051A4E9CF5D93B0327AFF8F51044 /* 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 = ""; }; - 3C537E8220F54370D5B5FAEED6470734 /* RCTSegmentedControl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSegmentedControl.h; sourceTree = ""; }; 3C5D630EAB7ED6E3B3B8A2DA57CE8B0C /* alpha_enc.c */ = {isa = PBXFileReference; includeInIndex = 1; name = alpha_enc.c; path = src/enc/alpha_enc.c; sourceTree = ""; }; - 3C8D153CA2E140138F6C5CC994BFCB17 /* RCTComponentData.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTComponentData.m; sourceTree = ""; }; + 3C6AE67B60E5F1584325FAD2B0EAB584 /* UMTaskServiceInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMTaskServiceInterface.h; path = UMTaskManagerInterface/UMTaskServiceInterface.h; sourceTree = ""; }; + 3C88FE8C08401D6F56CC0054F2E1007C /* RCTRedBoxExtraDataViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTRedBoxExtraDataViewController.m; sourceTree = ""; }; 3CA2FA4336B15BA4DCCD78A997AEC892 /* FIRInstanceIDTokenStore.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstanceIDTokenStore.m; path = Firebase/InstanceID/FIRInstanceIDTokenStore.m; sourceTree = ""; }; 3CA7A9404CCDD6BA22C97F8348CE3209 /* libglog.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libglog.a; path = libglog.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 3CABEB31333183206F44D7B44F9521ED /* 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; }; - 3CBA8541EA1AAE2E10B8010FFD897204 /* JSCRuntime.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = JSCRuntime.h; sourceTree = ""; }; + 3CC4BDA3A400FB4E6358566A70D25BB1 /* BugsnagReactNative-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "BugsnagReactNative-prefix.pch"; sourceTree = ""; }; + 3CD6E6E4E40B7A43AB1DF37E35105062 /* RNRootViewGestureRecognizer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNRootViewGestureRecognizer.h; path = ios/RNRootViewGestureRecognizer.h; sourceTree = ""; }; + 3CE11C19C75D48A2A6E101F06C1ABC38 /* RCTSourceCode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSourceCode.m; sourceTree = ""; }; + 3D10094A371D09B28AC7855AE82E3205 /* RNFirebaseAdMobInterstitial.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNFirebaseAdMobInterstitial.m; sourceTree = ""; }; 3D213A29F586151F62E7D1190EC36483 /* GDTCORUploadPackage.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GDTCORUploadPackage.m; path = GoogleDataTransport/GDTCORLibrary/GDTCORUploadPackage.m; sourceTree = ""; }; + 3D270A0DDE5C9F3BF6AE0A1E8AFF2488 /* EXConstants-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "EXConstants-prefix.pch"; sourceTree = ""; }; 3D469EED379CDAF76B456D41CE1D789E /* pb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = pb.h; sourceTree = ""; }; - 3D5B15F0426BA99C850F32275888F3A8 /* UMSensorsInterface.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMSensorsInterface.xcconfig; sourceTree = ""; }; - 3D9CA88B1BD3C6055F2E952ED7561E51 /* RCTBackedTextInputDelegateAdapter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBackedTextInputDelegateAdapter.h; sourceTree = ""; }; + 3DB88B5D0C1D4D29C963C5FB5F477C3B /* react-native-background-timer.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "react-native-background-timer.xcconfig"; sourceTree = ""; }; 3DCCC9C42EB3E07CFD81800EC8A2515D /* QBImagePicker.bundle */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; name = QBImagePicker.bundle; path = "RNImageCropPicker-QBImagePicker.bundle"; sourceTree = BUILT_PRODUCTS_DIR; }; 3DF98BC6C3F20CCC5179F53F73FF41B6 /* GDTCORTransport_Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCORTransport_Private.h; path = GoogleDataTransport/GDTCORLibrary/Private/GDTCORTransport_Private.h; sourceTree = ""; }; - 3E24B5E9BA4E1E8734E0431140E2D485 /* RCTI18nManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTI18nManager.m; sourceTree = ""; }; - 3E2C1CEB3D196D4E4917BDD83DFDC203 /* RCTReloadCommand.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTReloadCommand.h; sourceTree = ""; }; 3E30B8CCF8842538B301F60452DFD5E4 /* 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 = ""; }; 3E41B296571AC95DE177C8BDD92082EE /* JitsiMeetSDK.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = JitsiMeetSDK.xcconfig; sourceTree = ""; }; - 3E629C1FAC371353C91F47301E2A52FB /* UIView+React.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "UIView+React.m"; sourceTree = ""; }; - 3E6CD11A87541FE5C1B03B903FA49E9C /* RNEventEmitter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNEventEmitter.m; path = RNNotifications/RNEventEmitter.m; sourceTree = ""; }; - 3E9C901B01228322B8B094E3E52AE7EF /* RCTConvert+Transform.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RCTConvert+Transform.m"; sourceTree = ""; }; 3EE448D03DC1030CB1623347E60A913A /* cct.nanopb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = cct.nanopb.h; path = GoogleDataTransportCCTSupport/GDTCCTLibrary/Protogen/nanopb/cct.nanopb.h; sourceTree = ""; }; 3EEAA606F6866DA20E6601B9655B1027 /* libBugsnagReactNative.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libBugsnagReactNative.a; path = libBugsnagReactNative.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 3EEB0E39C75777724F60E29B18935220 /* RNLocalize-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNLocalize-dummy.m"; sourceTree = ""; }; - 3F0E8CF1A9335A8CAB8D7D7E114E0F9F /* RNNotificationsStore.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNNotificationsStore.h; path = RNNotifications/RNNotificationsStore.h; sourceTree = ""; }; + 3F11A95E82F274CF19A53C219FF61170 /* RNFirebaseFunctions.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNFirebaseFunctions.m; sourceTree = ""; }; 3F19DADEA197E3EB0A522E8E1D520775 /* SDDisplayLink.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDDisplayLink.m; path = SDWebImage/Private/SDDisplayLink.m; sourceTree = ""; }; - 3F382A40AE236F54486DDA821B9F6254 /* BugsnagReactNative-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "BugsnagReactNative-dummy.m"; sourceTree = ""; }; 3F3CB5FABF8ADED7650DF34AE8C9567D /* FirebaseInstallations.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = FirebaseInstallations.xcconfig; sourceTree = ""; }; - 3F79091C9F4C4912E37D52021A7C2936 /* RCTComponentEvent.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTComponentEvent.m; sourceTree = ""; }; - 3F80CA067CF0BF512E417DCE081EEC75 /* QBAssetsViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = QBAssetsViewController.m; path = ios/QBImagePicker/QBImagePicker/QBAssetsViewController.m; sourceTree = ""; }; - 3FD98BA6B8B36A3A9D2BE342D332A619 /* RCTStatusBarManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTStatusBarManager.h; sourceTree = ""; }; - 3FDD7BD01854E280BA29253781EF1020 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; + 3FD06CCB831E6482EE83DEA12754ACEE /* RCTGIFImageDecoder.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTGIFImageDecoder.m; sourceTree = ""; }; 3FECE8B750D858CB3C6E9F3EC41E9A9F /* FBLPromise+Wrap.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FBLPromise+Wrap.h"; path = "Sources/FBLPromises/include/FBLPromise+Wrap.h"; sourceTree = ""; }; - 401ADA1FB17407FDE15E4ED94C4B07EA /* RCTJavaScriptLoader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTJavaScriptLoader.h; sourceTree = ""; }; - 402D285E9F45B171CBAC43E39897E804 /* RCTMultilineTextInputViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTMultilineTextInputViewManager.h; sourceTree = ""; }; - 409399A211C9BBCADADFC7BBEA9D1598 /* BSG_KSCrashSentry.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashSentry.h; sourceTree = ""; }; - 40AB3CA1E71EB7AF865C9E4A2454DEBA /* REACondNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REACondNode.m; sourceTree = ""; }; + 4026B050CA72676670724048203E67F7 /* UMNativeModulesProxy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = UMNativeModulesProxy.m; sourceTree = ""; }; + 4043AD1E8D873D561FE59CC68F4489BE /* EXAV-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "EXAV-dummy.m"; sourceTree = ""; }; + 407F2989447A7D2DD6C3EFE0DCC1B409 /* RCTEventAnimation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTEventAnimation.h; sourceTree = ""; }; 40C0ACE417B604A869EFEBF0F8727F90 /* GDTCORLifecycle.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GDTCORLifecycle.m; path = GoogleDataTransport/GDTCORLibrary/GDTCORLifecycle.m; sourceTree = ""; }; - 40E0A99010BC271F69BC538461AEE955 /* RCTUITextView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTUITextView.m; sourceTree = ""; }; - 40ECA3321A2730B374CF7A906DA4D1F9 /* Yoga-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Yoga-dummy.m"; sourceTree = ""; }; - 410A77634DA7271378BD28B20E3C8DE6 /* UMLogHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMLogHandler.h; sourceTree = ""; }; - 4119AF802DA7AA45913A38DB6D5B44F5 /* SocketRocket-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "SocketRocket-prefix.pch"; sourceTree = ""; }; - 412C0B6839528851CB09B870A50E2F7C /* BugsnagSink.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagSink.m; sourceTree = ""; }; - 41380E07D12C9C4B5596EAD3227A6258 /* UMCore.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMCore.xcconfig; sourceTree = ""; }; - 4149CFF25071AE480926AC938FC1DC8D /* BugsnagKeys.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagKeys.h; sourceTree = ""; }; - 4158383322F0996F912D9F1008500D78 /* RCTDivisionAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTDivisionAnimatedNode.h; sourceTree = ""; }; - 415B7BF98846838D581516D927421F9B /* RCTLinkingManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTLinkingManager.h; path = Libraries/LinkingIOS/RCTLinkingManager.h; sourceTree = ""; }; - 416FE2C65F8217355D88853C265C10E3 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; + 40C953DECB85B4F4B336EA6C9BA39A3E /* REAAllTransitions.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REAAllTransitions.m; sourceTree = ""; }; + 40E3681DBC555561CFF42E610625877C /* RNFirebaseStorage.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNFirebaseStorage.h; sourceTree = ""; }; + 40E5C5BD935039565B268D7C5D5E1D42 /* 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; }; + 410974AD76C46979A85DD8829197DFE4 /* JSIDynamic.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = JSIDynamic.h; sourceTree = ""; }; + 413874B890B6E9A85B52911EBD65AF85 /* RCTUIManagerUtils.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTUIManagerUtils.m; sourceTree = ""; }; + 41621A3395ABDCD31C0BE787B0F375AF /* RNRootView-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNRootView-prefix.pch"; sourceTree = ""; }; + 41652E9741E4642801B4A9A1A6F8C7AA /* RCTNetworking.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTNetworking.mm; sourceTree = ""; }; + 41EB4C6E0BFCE249D65819744C353237 /* RCTUIImageViewAnimated.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTUIImageViewAnimated.h; path = Libraries/Image/RCTUIImageViewAnimated.h; sourceTree = ""; }; 41F62D04DF20EF8EB64F38D9EEEE02A9 /* FIRVersion.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRVersion.h; path = FirebaseCore/Sources/FIRVersion.h; sourceTree = ""; }; - 420EF2A13C4AC4D4744C1D40CCDA9DCC /* EvilIcons.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = EvilIcons.ttf; path = Fonts/EvilIcons.ttf; sourceTree = ""; }; - 4215E366E96B19336AAA4E4770DA7B6A /* RCTUIUtils.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTUIUtils.m; sourceTree = ""; }; - 4223604BB31C3DBC8164425EA2AC9895 /* ARTCGFloatArray.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ARTCGFloatArray.h; path = ios/ARTCGFloatArray.h; sourceTree = ""; }; - 423F8EF8FFDCF87B4F6AD491C47B7CE8 /* RCTModalManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTModalManager.h; sourceTree = ""; }; - 424A17DAC007724F7D5AE614779F3E3F /* REAEventNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REAEventNode.h; sourceTree = ""; }; - 426288AB110806D17A16FCF95DFA9E6B /* RCTTextTransform.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTTextTransform.h; path = Libraries/Text/RCTTextTransform.h; sourceTree = ""; }; - 4299E32ADB6508288AAF57D0EEB0A05F /* RCTResizeMode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTResizeMode.h; path = Libraries/Image/RCTResizeMode.h; sourceTree = ""; }; - 42B8DFDAE0F63AB98C3BF5F0C106A8C4 /* RCTBridge.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBridge.h; sourceTree = ""; }; - 4307232295CBA79E7CD2734C1D761BF4 /* BSG_KSJSONCodec.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSJSONCodec.c; sourceTree = ""; }; + 421FF329D93C28FFC05114FD913D8640 /* RNCWebViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCWebViewManager.h; path = ios/RNCWebViewManager.h; sourceTree = ""; }; + 424A820722AE0AB3B5DEBBC663D3CC7E /* FFFastImageView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FFFastImageView.m; path = ios/FastImage/FFFastImageView.m; sourceTree = ""; }; + 426D44B7D569B4438F6DB50DF39C1B43 /* RCTValueAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTValueAnimatedNode.h; sourceTree = ""; }; + 427FA1590F9E1333CDF3F693F752F0E3 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; + 42E0319865F7265D0E5279D85B0DF038 /* ARTCGFloatArray.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ARTCGFloatArray.h; path = ios/ARTCGFloatArray.h; sourceTree = ""; }; + 431B63A00C1A747B8D7A0B78E519D23B /* UMFaceDetectorInterface.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMFaceDetectorInterface.xcconfig; sourceTree = ""; }; + 432DB2A7AD085C3F73F4627E1619060E /* UMCore-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "UMCore-dummy.m"; sourceTree = ""; }; 4341798946137AA9F80EA098E35B9931 /* FIRInstallationsKeychainUtils.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstallationsKeychainUtils.m; path = FirebaseInstallations/Source/Library/SecureStorage/FIRInstallationsKeychainUtils.m; sourceTree = ""; }; - 434790F5144B1D3D04D00F59A5F2E067 /* BSG_KSCrashType.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashType.h; sourceTree = ""; }; + 4355E7B43141D819D523969BEB21E010 /* LNInterpolable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = LNInterpolable.h; sourceTree = ""; }; 435C84BA7D4AB3EB7649F9B26277DA8E /* SDWebImageDefine.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageDefine.h; path = SDWebImage/Core/SDWebImageDefine.h; sourceTree = ""; }; 43670C6003CB892BF4EEBCCCCF5B1628 /* GDTCORTargets.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCORTargets.h; path = GoogleDataTransport/GDTCORLibrary/Public/GDTCORTargets.h; sourceTree = ""; }; + 4368BE8AB9CFAD4122EE9A7CB749D345 /* RCTNativeAnimatedModule.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTNativeAnimatedModule.m; sourceTree = ""; }; 436BEED2A30591A8D4E5DB90E45FC2FA /* SDWebImageIndicator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageIndicator.h; path = SDWebImage/Core/SDWebImageIndicator.h; sourceTree = ""; }; 438B0AFC915C650C7DD6BBD7E1482856 /* SDWebImageTransition.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWebImageTransition.m; path = SDWebImage/Core/SDWebImageTransition.m; sourceTree = ""; }; + 4395DDE9E7CC08760D1991A26F6B1F60 /* JSCExecutorFactory.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = JSCExecutorFactory.h; sourceTree = ""; }; 43AAE931318CFC65211035F2E169B081 /* GDTCORRegistrar.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GDTCORRegistrar.m; path = GoogleDataTransport/GDTCORLibrary/GDTCORRegistrar.m; sourceTree = ""; }; - 43B496F8A354B24C48A31986B214345F /* RNFetchBlobProgress.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNFetchBlobProgress.h; path = ios/RNFetchBlobProgress.h; sourceTree = ""; }; - 43C033E58EE44D5D9C8CE9E7006C2354 /* QBAlbumsViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = QBAlbumsViewController.h; path = ios/QBImagePicker/QBImagePicker/QBAlbumsViewController.h; sourceTree = ""; }; - 43E874B0D8C56E5F4E51789D0A5B9C7A /* EXAppLoaderInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = EXAppLoaderInterface.h; sourceTree = ""; }; + 43C2A33DA2CC4C747712007294B2198B /* RCTBaseTextViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTBaseTextViewManager.m; sourceTree = ""; }; + 43E2AD3911FF9A4E612FA46ED62FD35D /* experiments.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = experiments.cpp; sourceTree = ""; }; 43E958E567C22BA0032023C305BEC2AD /* FIRInstallationsItem.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstallationsItem.m; path = FirebaseInstallations/Source/Library/FIRInstallationsItem.m; sourceTree = ""; }; - 440BA5D9B166A2E2B5CEFEDB45182A2B /* RNCAppearance.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCAppearance.m; path = ios/Appearance/RNCAppearance.m; sourceTree = ""; }; - 442021A1597754B5A40B5273C97AC21C /* RCTTextViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTTextViewManager.m; sourceTree = ""; }; - 444AEC4C92B7D6B376A2D99180882CDC /* RNNotificationEventHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNNotificationEventHandler.m; path = RNNotifications/RNNotificationEventHandler.m; sourceTree = ""; }; - 445111053B115FD7E770DE4180CE51A3 /* RNGestureHandlerEvents.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNGestureHandlerEvents.h; path = ios/RNGestureHandlerEvents.h; sourceTree = ""; }; - 4455645A7164B3DE0B1756DAEAC5C318 /* RCTRedBox.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTRedBox.m; sourceTree = ""; }; - 44576D0E42EA00F1DD0E6DA2D192F076 /* EXHaptics.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = EXHaptics.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 4411C08EC7AD9760E3EE9B61EE00D50A /* RCTConvert+FFFastImage.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "RCTConvert+FFFastImage.m"; path = "ios/FastImage/RCTConvert+FFFastImage.m"; sourceTree = ""; }; + 442E4964E9064855EF721A22F8638EA3 /* RCTModalHostViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTModalHostViewController.m; sourceTree = ""; }; + 445803957C1CAB12D47CFBBA58447056 /* RNJitsiMeetViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNJitsiMeetViewManager.h; path = ios/RNJitsiMeetViewManager.h; sourceTree = ""; }; + 445906CAC8934B17BE0591219143FF81 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; 445FADAAD22E2C0B298304BB38E55693 /* SDImageFrame.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageFrame.h; path = SDWebImage/Core/SDImageFrame.h; sourceTree = ""; }; - 44753D403C3ABDFAE77633E32B6B056D /* RNDateTimePickerManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNDateTimePickerManager.h; path = ios/RNDateTimePickerManager.h; sourceTree = ""; }; - 44C31CCF14610D613D6C140A14825BD7 /* RCTCxxModule.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTCxxModule.mm; sourceTree = ""; }; - 44D9F3CE14E625BABB5E097B30F5CB76 /* EXRemoteNotificationRequester.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXRemoteNotificationRequester.m; path = EXPermissions/EXRemoteNotificationRequester.m; sourceTree = ""; }; - 4504528B8B98692A19E87DAA06BA51AA /* UMUtilities.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = UMUtilities.m; path = UMCore/UMUtilities.m; sourceTree = ""; }; + 446C4C6613D2057CFB9884F9DACAF8F1 /* RCTModalManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTModalManager.m; sourceTree = ""; }; + 448EE0F13FAFFF4797D06C4E6784737B /* RNFastImage-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNFastImage-dummy.m"; sourceTree = ""; }; + 44B73E94CC09F67018EAD36DAE72D999 /* BSG_KSMach_Arm64.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSMach_Arm64.c; sourceTree = ""; }; + 44C26B1AF5555BF7DFE92192559B92E8 /* RCTKeyCommandConstants.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCTKeyCommandConstants.m; path = ios/KeyCommands/RCTKeyCommandConstants.m; sourceTree = ""; }; + 451666493334938F198A70DFCE74A2E6 /* RCTFrameUpdate.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTFrameUpdate.m; sourceTree = ""; }; + 452598C78BFE80FC4D5CA6FEC831CFD6 /* BugsnagLogger.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagLogger.h; sourceTree = ""; }; 4539E3108AC9825410E6FE95CBEB6EA7 /* SDImageWebPCoder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageWebPCoder.h; path = SDWebImageWebPCoder/Classes/SDImageWebPCoder.h; sourceTree = ""; }; - 454B1B3B96D01D136C3C623B65E191D9 /* QBAlbumCell.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = QBAlbumCell.m; path = ios/QBImagePicker/QBImagePicker/QBAlbumCell.m; sourceTree = ""; }; - 45533DF14ED4EFE52189CAE13473C13F /* RCTRawTextViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTRawTextViewManager.m; sourceTree = ""; }; - 4568836D549CEE24E5AC8669B605C0E7 /* RCTSpringAnimation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSpringAnimation.h; sourceTree = ""; }; - 4585A7A5C539B02B0BF2A53842C81F01 /* en.lproj */ = {isa = PBXFileReference; includeInIndex = 1; name = en.lproj; path = ios/QBImagePicker/QBImagePicker/en.lproj; sourceTree = ""; }; + 4555C24D7106A3596ECFE8B43DF540F2 /* React-RCTText-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-RCTText-prefix.pch"; sourceTree = ""; }; + 457FDE7327ADA30AFB2C2998ECDD77F6 /* BridgeJSCallInvoker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = BridgeJSCallInvoker.h; path = jscallinvoker/ReactCommon/BridgeJSCallInvoker.h; sourceTree = ""; }; 458BC6D0F0ABCC8D2958F42C9A3F3820 /* SDImageLoadersManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageLoadersManager.h; path = SDWebImage/Core/SDImageLoadersManager.h; sourceTree = ""; }; + 459BA954870F7DB509349D7CB16999FB /* RCTInvalidating.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTInvalidating.h; sourceTree = ""; }; + 459CB01901100E5C0B8096B30A4A88EF /* JSIDynamic.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = JSIDynamic.cpp; sourceTree = ""; }; 459EF69C87F0423DE3DAFA049CEC05EC /* FBLPromise+Await.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "FBLPromise+Await.m"; path = "Sources/FBLPromises/FBLPromise+Await.m"; sourceTree = ""; }; - 45C8A2669B698784A22CF8108F1A3070 /* JSBigString.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = JSBigString.cpp; sourceTree = ""; }; + 45BE059D32CDFFC69A1E8781C3EAD863 /* UMFontInterface.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMFontInterface.xcconfig; sourceTree = ""; }; 45C98A4D849F92BF74F62E180ABEA4E5 /* cost_enc.c */ = {isa = PBXFileReference; includeInIndex = 1; name = cost_enc.c; path = src/enc/cost_enc.c; sourceTree = ""; }; - 45D40F84C6B9F50EEB5A1CA59FE83231 /* React-RCTImage-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-RCTImage-prefix.pch"; sourceTree = ""; }; - 45D57EB4FEF19D3DB6A3492689D85F62 /* RNCAssetsLibraryRequestHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCAssetsLibraryRequestHandler.h; path = ios/RNCAssetsLibraryRequestHandler.h; sourceTree = ""; }; - 45F9B89B69155B9338A5184745240C16 /* RCTPlatform.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTPlatform.mm; sourceTree = ""; }; - 4633365250C40A30F42C01736FDC7B6E /* RCTPicker.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTPicker.m; sourceTree = ""; }; + 45E10692EB662F67F697D4974A212A58 /* RCTUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTUtils.h; sourceTree = ""; }; + 460A7340C0C22B2C9730067FDCB0B7A7 /* QBAssetsViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = QBAssetsViewController.h; path = ios/QBImagePicker/QBImagePicker/QBAssetsViewController.h; sourceTree = ""; }; + 462651BBAB120CE2204EC03B2466C083 /* REAAllTransitions.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REAAllTransitions.h; sourceTree = ""; }; + 462B49F70DCEE6909C2EA1401BF8034C /* KeyCommands.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = KeyCommands.xcconfig; sourceTree = ""; }; + 464064AA6F64B6B4C17E0FDAB271E050 /* React-CoreModules-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-CoreModules-dummy.m"; sourceTree = ""; }; 464C3A02594F9D69187EC87E695B4726 /* GULReachabilityMessageCode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULReachabilityMessageCode.h; path = GoogleUtilities/Reachability/Private/GULReachabilityMessageCode.h; sourceTree = ""; }; - 464D3948F302B6216BBEA7DCC99ADE3F /* 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; }; - 465BEDE78B0DADB6C8C5AF9A2C503464 /* RCTStyleAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTStyleAnimatedNode.h; sourceTree = ""; }; - 4687FB5E5B9A9C75426247410B9CE5A4 /* RCTSurfaceSizeMeasureMode.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTSurfaceSizeMeasureMode.mm; sourceTree = ""; }; - 46ABA79487D88F19D9777DD4E69C2E87 /* RCTImageBlurUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageBlurUtils.h; path = Libraries/Image/RCTImageBlurUtils.h; sourceTree = ""; }; - 46AD5611B8101B3D398797EB9B7049A9 /* RCTStatusBarManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTStatusBarManager.m; sourceTree = ""; }; - 46AE0441B738973D3B8033C63A743535 /* RCTNativeAnimatedModule.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTNativeAnimatedModule.m; sourceTree = ""; }; - 46FABD0869A33C6F694792F55276CB53 /* BugsnagApiClient.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagApiClient.m; sourceTree = ""; }; - 470678FF420AF5923D2476348B25B58A /* QBVideoIndicatorView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = QBVideoIndicatorView.h; path = ios/QBImagePicker/QBImagePicker/QBVideoIndicatorView.h; sourceTree = ""; }; - 4746C1D78EA15092C8E1E4698ECA412A /* RNSScreenContainer.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNSScreenContainer.m; path = ios/RNSScreenContainer.m; sourceTree = ""; }; + 4677195446E5488B8DE51EEE473A810E /* RCTConvert+UIBackgroundFetchResult.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RCTConvert+UIBackgroundFetchResult.h"; sourceTree = ""; }; + 46BAF87F1B656C184D7E9A83E1511FF9 /* Entypo.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = Entypo.ttf; path = Fonts/Entypo.ttf; sourceTree = ""; }; + 46CB2F49C23D61BF1BFB11EEFF87AD85 /* REAClockNodes.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REAClockNodes.m; sourceTree = ""; }; + 46D7F38726FE55F1B1612AD5DF7F598F /* RNFirebaseEvents.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNFirebaseEvents.h; path = RNFirebase/RNFirebaseEvents.h; sourceTree = ""; }; + 46FDBBA42C73AF080F4CAECDA4F7BD6E /* RCTImageDataDecoder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageDataDecoder.h; path = Libraries/Image/RCTImageDataDecoder.h; sourceTree = ""; }; + 472E3F2F09714B0A2594DB9286216CB7 /* EXWebBrowser-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "EXWebBrowser-prefix.pch"; sourceTree = ""; }; 476178CDB7F6A524306920EEDD3D60DC /* rescaler_msa.c */ = {isa = PBXFileReference; includeInIndex = 1; name = rescaler_msa.c; path = src/dsp/rescaler_msa.c; sourceTree = ""; }; + 476409B12C5A51E11C7895FCDDE361A7 /* Fontisto.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = Fontisto.ttf; path = Fonts/Fontisto.ttf; sourceTree = ""; }; 47667B177B8F7040093014A945593A04 /* Demangle.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = Demangle.cpp; path = folly/detail/Demangle.cpp; sourceTree = ""; }; - 4782156508E1F36CB7FD5DD62DE03DC2 /* pl.lproj */ = {isa = PBXFileReference; includeInIndex = 1; name = pl.lproj; path = ios/QBImagePicker/QBImagePicker/pl.lproj; sourceTree = ""; }; + 477638BFCC42AE591C8C63F78A1DE711 /* Compression.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Compression.h; path = ios/src/Compression.h; sourceTree = ""; }; 47848D888973B34379A73A1129C8E494 /* backward_references_cost_enc.c */ = {isa = PBXFileReference; includeInIndex = 1; name = backward_references_cost_enc.c; path = src/enc/backward_references_cost_enc.c; sourceTree = ""; }; 478F25920DDB277A1F4403B7268C02D9 /* 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 = ""; }; - 47A0B5428EC85D998EECAFED9CBCC8A4 /* 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; }; 47B052E1FD1233F07E279610681D4C0B /* FBLPromise+Always.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FBLPromise+Always.h"; path = "Sources/FBLPromises/include/FBLPromise+Always.h"; sourceTree = ""; }; 47BAFD858ABCC55478AF6AB0854547DF /* FBLPromise+Catch.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FBLPromise+Catch.h"; path = "Sources/FBLPromises/include/FBLPromise+Catch.h"; sourceTree = ""; }; - 47CA2F9B4EB9158B5F8602745A9AB4E6 /* BSG_KSCrashState.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BSG_KSCrashState.m; sourceTree = ""; }; - 47DDC51FE3E3ED4B99A0EA0FCF2E177D /* UMBarometerInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMBarometerInterface.h; path = UMSensorsInterface/UMBarometerInterface.h; sourceTree = ""; }; 481BAF2737C4B9EED2882A2C4CB20C17 /* RSKImageCropViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RSKImageCropViewController.m; path = RSKImageCropper/RSKImageCropViewController.m; sourceTree = ""; }; + 48225D2AC73787066D8B6EB55129E347 /* RNImageCropPicker.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RNImageCropPicker.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; 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; }; - 4865E331EF036AC9955C5D87E59FD803 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; - 48A8CFB74C512578B3160D2865303A65 /* RNFirebasePerformance.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNFirebasePerformance.m; sourceTree = ""; }; - 48DD8DB2A4735F5062B9BF0A7270FAF5 /* Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = Private.h; sourceTree = ""; }; - 48F55A96F4B39F4EAC7C991A98C77C75 /* UMFontInterface.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMFontInterface.xcconfig; sourceTree = ""; }; - 491C4D2AD815C77CA5C389D78DDDCD7F /* RNGestureHandler-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNGestureHandler-prefix.pch"; sourceTree = ""; }; - 4949477EDE0B58D8E10B1D1E56C035BC /* RCTSurfaceHostingProxyRootView.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTSurfaceHostingProxyRootView.mm; sourceTree = ""; }; - 49497B791975A6D1FDBF5B4F8D1FB4D3 /* BSG_KSMach_x86_32.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSMach_x86_32.c; sourceTree = ""; }; - 494C09D9FBA204CD6AC46A8EC5B78852 /* QBAlbumsViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = QBAlbumsViewController.m; path = ios/QBImagePicker/QBImagePicker/QBAlbumsViewController.m; sourceTree = ""; }; - 496E8AA69FEBFE25A99F6197F4132460 /* REAConcatNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REAConcatNode.h; sourceTree = ""; }; - 4982C28DA8AB92708C12DF174B860C00 /* RNDeviceInfo.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNDeviceInfo.xcconfig; sourceTree = ""; }; + 4845F889D82357322C71E52FC4C73C4C /* RCTWrapperViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTWrapperViewController.m; sourceTree = ""; }; + 48CBFA9FB88CD691B3404C21A69DC044 /* RCTNetworkTask.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTNetworkTask.h; path = Libraries/Network/RCTNetworkTask.h; sourceTree = ""; }; + 48DEE3CBA13B8FCBBD36CA46389BF087 /* BugsnagSessionTracker.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagSessionTracker.m; sourceTree = ""; }; + 48FEBAC372020C751DE77B3F172BC8A2 /* RCTMessageThread.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTMessageThread.h; sourceTree = ""; }; + 4914796E64F630A6E2F7EC8093650BFE /* RCTBackedTextInputDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBackedTextInputDelegate.h; sourceTree = ""; }; + 4918B1E9B839873F273906356093EEB7 /* RNGestureHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNGestureHandler.h; path = ios/RNGestureHandler.h; sourceTree = ""; }; + 495445908EE659AF2636C1259E847FBA /* RNNotifications.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNNotifications.m; path = RNNotifications/RNNotifications.m; sourceTree = ""; }; 49A51F5FBBCFD3F02638D5838DF22338 /* Pods-ShareRocketChatRN.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-ShareRocketChatRN.debug.xcconfig"; sourceTree = ""; }; - 49B82A52342363D28F596DD1CC67FD30 /* RCTSurfaceDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSurfaceDelegate.h; sourceTree = ""; }; - 49E9FA0CAC29D7D243E9B6AD3C3F1AFC /* RCTModuloAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTModuloAnimatedNode.h; sourceTree = ""; }; - 49ED2B1FA5F6D32683D4F13B8BE58004 /* RCTModalHostView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTModalHostView.h; sourceTree = ""; }; - 4A1120550B2A2794884C5EEF6E3C885C /* JSINativeModules.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = JSINativeModules.cpp; path = jsireact/JSINativeModules.cpp; sourceTree = ""; }; - 4A5768B95402EA98542FFA2B585EDB2C /* RCTTypeSafety-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RCTTypeSafety-prefix.pch"; sourceTree = ""; }; - 4A6D5797739082382F344CC9DA33F8AA /* NSRunLoop+SRWebSocketPrivate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "NSRunLoop+SRWebSocketPrivate.h"; sourceTree = ""; }; + 49B31BEF630FE1A84BBC550977571750 /* RNFetchBlobConst.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNFetchBlobConst.m; path = ios/RNFetchBlobConst.m; sourceTree = ""; }; + 49B4DEB1DAC016ECA7C46AB4A688571B /* MessageQueueThread.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = MessageQueueThread.h; sourceTree = ""; }; + 49CCD4BE716047C8EABE4F6D6E296979 /* ios_date.png */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = image.png; name = ios_date.png; path = docs/images/ios_date.png; sourceTree = ""; }; + 49D996D4E9E3C16478D7D694F97206A9 /* RCTFrameAnimation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTFrameAnimation.m; sourceTree = ""; }; + 4A0317821D03033EF9B41F8CE7797C29 /* InspectorInterfaces.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = InspectorInterfaces.h; sourceTree = ""; }; + 4A06BB9A317330A368C6C8D5623CEC4A /* RCTCxxBridgeDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTCxxBridgeDelegate.h; sourceTree = ""; }; + 4A196FC642D11153FA3959D4663139F0 /* RNFirebasePerformance.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNFirebasePerformance.m; sourceTree = ""; }; + 4A20331AEFE584D7B6CBACB9EE3B6C06 /* RCTSurface.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTSurface.mm; sourceTree = ""; }; + 4A599197657455ED85D0F51A50C1CCD9 /* RCTBundleURLProvider.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBundleURLProvider.h; sourceTree = ""; }; 4A7647A1716C841E08616F47541DCD7B /* FIRInstallationsStoredItem.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstallationsStoredItem.h; path = FirebaseInstallations/Source/Library/InstallationsStore/FIRInstallationsStoredItem.h; sourceTree = ""; }; - 4A997D06BCEA5AB0DCC0B60D34C4102C /* 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; }; - 4ACE1713CF0D67CDFB06ED354C87253E /* EXHaptics-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "EXHaptics-prefix.pch"; sourceTree = ""; }; + 4A7E60A0E9CFA3617FEB966BBB5D45E4 /* RCTWeakProxy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTWeakProxy.m; sourceTree = ""; }; + 4AEFBC381C301E07576A537B59494F93 /* RNGestureHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNGestureHandler.m; path = ios/RNGestureHandler.m; sourceTree = ""; }; + 4AFD719A041151F58B9D1468AA30075D /* RCTAnimationType.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTAnimationType.h; sourceTree = ""; }; 4B019F88D183D8F0E9D8BF083F3699B1 /* FIRInstallationsAPIService.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstallationsAPIService.m; path = FirebaseInstallations/Source/Library/InstallationsAPI/FIRInstallationsAPIService.m; sourceTree = ""; }; - 4B5AD4C09486D6E14B93F11CB59BE224 /* FontAwesome5_Regular.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = FontAwesome5_Regular.ttf; path = Fonts/FontAwesome5_Regular.ttf; sourceTree = ""; }; + 4B139798AFB68A92A1429B37619900E8 /* RNDeviceInfo-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNDeviceInfo-prefix.pch"; sourceTree = ""; }; + 4B2638AE3C498C6F849896DFB3E9373D /* RCTBackedTextInputDelegateAdapter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBackedTextInputDelegateAdapter.h; sourceTree = ""; }; + 4B2779409AF590F9DC3A7708F12DD950 /* RCTTextViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTextViewManager.h; sourceTree = ""; }; + 4B5E596084900C526779079F4796DA51 /* UMFileSystemInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMFileSystemInterface.h; path = UMFileSystemInterface/UMFileSystemInterface.h; sourceTree = ""; }; + 4B65E2F6E7BEC6C45ED76B879F168832 /* FontAwesome5_Regular.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = FontAwesome5_Regular.ttf; path = Fonts/FontAwesome5_Regular.ttf; sourceTree = ""; }; + 4B7602D499F00AD5406A3D24D333C82A /* Yoga.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = Yoga.cpp; path = yoga/Yoga.cpp; sourceTree = ""; }; 4B78E7E3DBE12168C17E886E24FB2F51 /* FIRInstanceIDTokenFetchOperation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstanceIDTokenFetchOperation.m; path = Firebase/InstanceID/FIRInstanceIDTokenFetchOperation.m; sourceTree = ""; }; + 4B8495F202AB54ED0DD218EEC127DF3C /* QBAlbumCell.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = QBAlbumCell.m; path = ios/QBImagePicker/QBImagePicker/QBAlbumCell.m; sourceTree = ""; }; + 4B8C09B761BB8B1094107916DCB77622 /* RCTI18nManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTI18nManager.h; sourceTree = ""; }; 4B9414D353B3774B94F6BC07EDA11C7C /* UIImageView+HighlightedWebCache.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIImageView+HighlightedWebCache.h"; path = "SDWebImage/Core/UIImageView+HighlightedWebCache.h"; sourceTree = ""; }; - 4B9A98874D6F22FE61A9BC8DE833777F /* RCTTextView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTTextView.m; sourceTree = ""; }; + 4BA12030263DB9815E3B8E6F29CB8AB6 /* RCTPackagerClient.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTPackagerClient.m; sourceTree = ""; }; + 4BA90E75647A49B33D1E4960B5BFEF80 /* EXUserNotificationRequester.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXUserNotificationRequester.h; path = EXPermissions/EXUserNotificationRequester.h; sourceTree = ""; }; 4BB3E1A796EA4028EC6374B3EACD53CE /* FIRConfigurationInternal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRConfigurationInternal.h; path = FirebaseCore/Sources/Private/FIRConfigurationInternal.h; sourceTree = ""; }; - 4BBD9AC825086AB43BFF1C5CE068DEBE /* RNFirebaseStorage.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNFirebaseStorage.h; sourceTree = ""; }; - 4BCD4347EB8E48168D84DA9D02F394B2 /* LICENSE.md */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE.md; sourceTree = ""; }; + 4BD96B9E416EC595DA0024B3572F9902 /* RCTTiming.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTTiming.m; sourceTree = ""; }; 4BE1EB0C0D097F1CEF044EABD60FA2B0 /* GULUserDefaults.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULUserDefaults.h; path = GoogleUtilities/UserDefaults/Private/GULUserDefaults.h; sourceTree = ""; }; - 4BF44C6499F2BAA0FE3BD9E58D054237 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; - 4BFC212667A54603AA17C665FB0114DB /* EXFileSystem.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = EXFileSystem.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - 4C34EA46220E67405BD96475B2FA73A8 /* RCTShadowView+Internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RCTShadowView+Internal.h"; sourceTree = ""; }; - 4C70A87489F392A1B6E5D1D0AE32FACA /* RCTNativeAnimatedModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTNativeAnimatedModule.h; path = Libraries/NativeAnimation/RCTNativeAnimatedModule.h; sourceTree = ""; }; + 4BEF442C14EB1725D989617D98AC0663 /* BSG_KSSystemInfo.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BSG_KSSystemInfo.m; sourceTree = ""; }; + 4BF281BE59CC7E587D8E86F93601EE42 /* Bugsnag.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = Bugsnag.h; sourceTree = ""; }; + 4C18A10A30D307A1C08B17C6278B4DAC /* React-RCTAnimation.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-RCTAnimation.xcconfig"; sourceTree = ""; }; + 4C2021EE3A7AF4A4B2DE119F7DBCB267 /* RCTCxxMethod.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTCxxMethod.h; sourceTree = ""; }; + 4C2D59DF8B0247ABF490F7F8CE07A609 /* YGNode.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = YGNode.cpp; path = yoga/YGNode.cpp; sourceTree = ""; }; + 4C683A7AD58854CE9F9A0C58669E2925 /* RCTTiming.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTiming.h; sourceTree = ""; }; + 4C8D022D5E0F5AF8E2B947CDD37B655B /* YGConfig.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = YGConfig.cpp; path = yoga/YGConfig.cpp; sourceTree = ""; }; 4C90CBA13EADC2DE8CBA3C3E38DBAD8D /* GDTCCTPrioritizer.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GDTCCTPrioritizer.m; path = GoogleDataTransportCCTSupport/GDTCCTLibrary/GDTCCTPrioritizer.m; sourceTree = ""; }; 4C94E6DDA61D0E2F0939457B8941960B /* PromisesObjC.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = PromisesObjC.xcconfig; sourceTree = ""; }; - 4C9F38946A84FEF131990F464DD814AC /* api.md */ = {isa = PBXFileReference; includeInIndex = 1; name = api.md; path = docs/api.md; sourceTree = ""; }; + 4CAC4159EFC9D11139B2370518066769 /* RNFetchBlobNetwork.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNFetchBlobNetwork.m; path = ios/RNFetchBlobNetwork.m; sourceTree = ""; }; + 4CB1FE8465337B521E6D9A0CDD6F8A99 /* React-RCTLinking-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-RCTLinking-dummy.m"; sourceTree = ""; }; 4CC3251FDA9E9F879B68C261CF445809 /* FIRInstanceIDCheckinPreferences+Internal.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "FIRInstanceIDCheckinPreferences+Internal.m"; path = "Firebase/InstanceID/FIRInstanceIDCheckinPreferences+Internal.m"; sourceTree = ""; }; - 4CF67E6DFF68BF36E29D90A416235194 /* RCTUtils.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTUtils.m; sourceTree = ""; }; + 4CDE34E54BC7EE0335E22FF392871BAB /* ObservingInputAccessoryView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ObservingInputAccessoryView.h; path = lib/ObservingInputAccessoryView.h; sourceTree = ""; }; 4D352643E8BC0C05FAD0BB5404F73E27 /* GULReachabilityChecker+Internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "GULReachabilityChecker+Internal.h"; path = "GoogleUtilities/Reachability/GULReachabilityChecker+Internal.h"; sourceTree = ""; }; - 4D64B695E3D1A4B87496EAC258BB84A1 /* RCTMacros.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTMacros.h; sourceTree = ""; }; + 4D56494F44DFE819271A6C0586D48903 /* React-Core.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-Core.xcconfig"; sourceTree = ""; }; + 4D5AD05BB69D393AA56A6B6E816F86E6 /* RCTLog.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTLog.h; sourceTree = ""; }; 4D68CBDDD5A7D610F9E436686A07B74A /* FIRInstanceIDKeychain.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstanceIDKeychain.h; path = Firebase/InstanceID/FIRInstanceIDKeychain.h; sourceTree = ""; }; 4D7305392656B07787D0BAA87B5735C4 /* strtod.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = strtod.cc; path = "double-conversion/strtod.cc"; sourceTree = ""; }; + 4D7840B54937455A39D0CEBEDCC64E05 /* LNInterpolable.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = LNInterpolable.m; sourceTree = ""; }; 4D7A4F8652C719FD780B45A40A0104C1 /* ANSCompatibility.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ANSCompatibility.h; path = iOS/Crashlytics.framework/Headers/ANSCompatibility.h; sourceTree = ""; }; 4D7BE8D11D0BE425A162D262300BF5D5 /* FBLPromise+Async.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "FBLPromise+Async.m"; path = "Sources/FBLPromises/FBLPromise+Async.m"; sourceTree = ""; }; - 4D7D4150174C399C428113A0E6DED6C5 /* BugsnagApiClient.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagApiClient.h; sourceTree = ""; }; 4D7F7DEEE1B431B212DE4B6E85BFD120 /* SDImageTransformer.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageTransformer.m; path = SDWebImage/Core/SDImageTransformer.m; sourceTree = ""; }; - 4DCBD6A4476F6EDD8DCC23AA02CFE0A7 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; - 4DCD054A86F1437985DF8B641BD91042 /* LNAnimator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = LNAnimator.h; sourceTree = ""; }; + 4D898441F49FDE4DD4697706429C466A /* NSError+BSG_SimpleConstructor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "NSError+BSG_SimpleConstructor.h"; sourceTree = ""; }; + 4DA0100AFFCA32F963754E69A13D1B27 /* UMBridgeModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMBridgeModule.h; path = UMReactNativeAdapter/UMBridgeModule.h; sourceTree = ""; }; 4DF0BD63D7D4CFDCC663E62D0F856294 /* dec_sse2.c */ = {isa = PBXFileReference; includeInIndex = 1; name = dec_sse2.c; path = src/dsp/dec_sse2.c; sourceTree = ""; }; - 4E1E7E53AA00DBF6A019D48CE87F06EA /* RNGestureHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNGestureHandler.h; path = ios/RNGestureHandler.h; sourceTree = ""; }; - 4E2058AF25652B9765A51F7C92CDA8E2 /* RNRotationHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNRotationHandler.h; sourceTree = ""; }; - 4E3E33C7B18343D61C3D170F017D87F0 /* MethodCall.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = MethodCall.h; sourceTree = ""; }; - 4E4E070C3341B38A3C50BD22E628846D /* RCTLog.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTLog.h; sourceTree = ""; }; + 4E3F51F99A0E125B446201A8E4D8376F /* NativeModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = NativeModule.h; sourceTree = ""; }; 4E5A82E2D83D68A798CF22B1F77829FC /* GoogleDataTransportCCTSupport-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "GoogleDataTransportCCTSupport-dummy.m"; sourceTree = ""; }; - 4E7CE0632EFA00D927BC58194B78874C /* REAValueNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REAValueNode.h; sourceTree = ""; }; - 4E7FA7C3ED395718A44170C8755F17FB /* RCTPicker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTPicker.h; sourceTree = ""; }; - 4E9671CEB5D29D25E802B2BDF384DB3A /* RNFetchBlob.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNFetchBlob.m; sourceTree = ""; }; + 4E63400ED41748BB889958F91DF4A375 /* RCTRawTextShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTRawTextShadowView.m; sourceTree = ""; }; + 4E65E9C4BA7BC0DF78267AE2E1FE3F5D /* RCTMultipartStreamReader.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTMultipartStreamReader.m; sourceTree = ""; }; + 4E7B41938C6CAE89D204F91EBF12C890 /* React-RCTSettings.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-RCTSettings.xcconfig"; sourceTree = ""; }; + 4E835AC053C9D36CDE90E241374CF252 /* 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; }; 4E9D30B663A082E804F4CAA873DD3822 /* pb_decode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = pb_decode.h; sourceTree = ""; }; - 4EADED15D71917222E6187CBFD5148FB /* jsilib-windows.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = "jsilib-windows.cpp"; sourceTree = ""; }; + 4E9E1910C00EB122C812A55E77E3CE8D /* RCTInputAccessoryView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTInputAccessoryView.h; sourceTree = ""; }; + 4EA6DA9EFE4E732DEB26F4811C5CCD26 /* BSG_KSCrashSentry_CPPException.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSCrashSentry_CPPException.mm; sourceTree = ""; }; + 4EA9170BDDF03B26378A295895425522 /* ARTRenderable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ARTRenderable.h; path = ios/ARTRenderable.h; sourceTree = ""; }; 4EAF7225D8D498E7D232AE1520E6CBD3 /* libRNFirebase.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libRNFirebase.a; path = libRNFirebase.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 4ECD8FB8DE9B1A1C9296584DB3ECA5B1 /* ARTNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = ARTNode.m; path = ios/ARTNode.m; sourceTree = ""; }; - 4ECEC10A3DC3CDCA5B92F4E88D2416F4 /* Utils.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = Utils.cpp; path = yoga/Utils.cpp; sourceTree = ""; }; - 4F10B268A6259F94F71B5D146A4FFD11 /* RCTBackedTextInputDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBackedTextInputDelegate.h; sourceTree = ""; }; - 4F141B3510268B10F274291C41A9BBE5 /* BugsnagConfiguration.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagConfiguration.h; sourceTree = ""; }; - 4F76D923E4F1B3560DEF7B0F66F4FF75 /* RCTDevSettings.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTDevSettings.mm; sourceTree = ""; }; - 4F861E509BB1D167464D241BA5DDE472 /* BSG_KSSignalInfo.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSSignalInfo.c; sourceTree = ""; }; + 4EB1D78F58F2AC22BAFBEA75562D26E7 /* EXConstants-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "EXConstants-dummy.m"; sourceTree = ""; }; + 4EE9424A584CECAA86E9F4751BDEC443 /* RCTRootShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTRootShadowView.m; sourceTree = ""; }; + 4F6AC73BDDDC198C27DABE8C51E2BF5D /* RCTModuleData.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTModuleData.h; sourceTree = ""; }; + 4F77A11D90734F6ED70430128BF7FA56 /* react-native-keyboard-input-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "react-native-keyboard-input-dummy.m"; sourceTree = ""; }; + 4FC7CFFB023F10AE363402A0225FD479 /* RCTSurfacePresenterStub.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSurfacePresenterStub.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; }; - 4FDF56ADFCE5837FA2FE682BB2D2B171 /* RNGestureHandler.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RNGestureHandler.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - 4FF48C3C581B8B6319C4CB6646E30641 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; - 4FFEF2A042B8994E50F48637F199F48B /* react-native-keyboard-input.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "react-native-keyboard-input.xcconfig"; sourceTree = ""; }; + 4FF70E7A6CD9CDDA0BD7D426216CD3FC /* JSIExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = JSIExecutor.h; path = jsireact/JSIExecutor.h; sourceTree = ""; }; + 50037523A2CE9244EFC6483F29D4B6F8 /* UMModuleRegistry.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMModuleRegistry.h; sourceTree = ""; }; 500E76CDFB8113AFD9AC1DB0CB454843 /* GDTFLLPrioritizer.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GDTFLLPrioritizer.m; path = GoogleDataTransportCCTSupport/GDTCCTLibrary/GDTFLLPrioritizer.m; sourceTree = ""; }; - 5029EBDDAA64A35DF8B5D51EE9343462 /* AudioRecorderManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = AudioRecorderManager.m; path = ios/AudioRecorderManager.m; sourceTree = ""; }; - 5045A8141BFFF3ECEAB843511A69EA5A /* Ionicons.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = Ionicons.ttf; path = Fonts/Ionicons.ttf; sourceTree = ""; }; + 50225539BC3970508A5311FA54C90244 /* RCTSurfaceView.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTSurfaceView.mm; sourceTree = ""; }; + 502A95436A12BB1AF9E01165BB945574 /* CoreModulesPlugins.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = CoreModulesPlugins.mm; sourceTree = ""; }; 505638042E3CDED31ED33340DD6E648E /* FIRInstallationsHTTPError.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstallationsHTTPError.m; path = FirebaseInstallations/Source/Library/Errors/FIRInstallationsHTTPError.m; sourceTree = ""; }; 507484DC13FF28BFA253C3259BC915AF /* config_enc.c */ = {isa = PBXFileReference; includeInIndex = 1; name = config_enc.c; path = src/enc/config_enc.c; sourceTree = ""; }; 50B1336BF0B799990F11A2C6C846FEC9 /* FIRInstanceIDTokenOperation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstanceIDTokenOperation.m; path = Firebase/InstanceID/FIRInstanceIDTokenOperation.m; sourceTree = ""; }; + 50B45969D0E77467A2FF115E15121F9F /* FBLazyVector.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBLazyVector.h; path = FBLazyVector/FBLazyVector.h; sourceTree = ""; }; 50B5347C9A6E93B7D4CFC3673BA6FB7E /* libRNScreens.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libRNScreens.a; path = libRNScreens.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 50D33B55BBF94FA2C02E25F302E01D1C /* NSDataBigString.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = NSDataBigString.h; sourceTree = ""; }; + 50C793F4190EE80479B132976E5217D7 /* ARTRenderableManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = ARTRenderableManager.m; sourceTree = ""; }; 50D7273241DE97D0F9D835E4AFD14299 /* FirebaseInstanceID.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FirebaseInstanceID.h; path = Firebase/InstanceID/Public/FirebaseInstanceID.h; sourceTree = ""; }; 50E82E5A5409C6B9B611DFB5A5C88A38 /* RSKImageCropperStrings.bundle */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = "wrapper.plug-in"; name = RSKImageCropperStrings.bundle; path = RSKImageCropper/RSKImageCropperStrings.bundle; sourceTree = ""; }; - 50F03489287103989552D43C23469F6B /* RNBootSplash.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNBootSplash.h; path = ios/RNBootSplash.h; sourceTree = ""; }; 51087434509AC9D80EDBA3801FBA46D9 /* FIRInstanceIDUtilities.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstanceIDUtilities.m; path = Firebase/InstanceID/FIRInstanceIDUtilities.m; sourceTree = ""; }; - 510D92EDEE5E30E76903020689184FA9 /* UIView+Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "UIView+Private.h"; sourceTree = ""; }; - 512296677BE7CC8C8178D08B4ED5FFDC /* EXWebBrowser-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "EXWebBrowser-prefix.pch"; sourceTree = ""; }; - 5137C30F03EB416AF5837B43D82A53DA /* RNFirebaseAdMobRewardedVideo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNFirebaseAdMobRewardedVideo.h; sourceTree = ""; }; 514AE00CD420A8229A4F661330A06B47 /* FIRErrors.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRErrors.h; path = FirebaseCore/Sources/Private/FIRErrors.h; sourceTree = ""; }; - 5155B718DF56CEFAAF1CDA6A3C230C14 /* RCTSurfaceRootView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSurfaceRootView.h; sourceTree = ""; }; - 515DBA763B7D28FBE19F6EEE19E8195B /* JSCRuntime.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = JSCRuntime.cpp; sourceTree = ""; }; - 515ED9D73A60909FF8CAB05A5F739EBE /* RCTInterpolationAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTInterpolationAnimatedNode.h; sourceTree = ""; }; - 518664B6200162676839C30ACF99064A /* RNPushKit.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNPushKit.h; path = RNNotifications/RNPushKit.h; sourceTree = ""; }; - 519DCCFFAE92D0CAF9F4D2D373BFF0AD /* RCTPackagerConnection.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTPackagerConnection.mm; sourceTree = ""; }; 51B50F20C76CF72E2BEF8D4764235306 /* libReactNativeART.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libReactNativeART.a; path = libReactNativeART.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 51CF1452F991EA98E58AFC0BE7AA197F /* SRMutex.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = SRMutex.h; sourceTree = ""; }; + 51C1A9B4E59A3E485D0E8EA467945E83 /* RNFetchBlobConst.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNFetchBlobConst.h; path = ios/RNFetchBlobConst.h; sourceTree = ""; }; + 51C377E66CEC117793ABD7B709341B91 /* ARTRadialGradient.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = ARTRadialGradient.h; sourceTree = ""; }; 51D0EC206B3FF3FD54D207F3F5C70719 /* FIRComponentContainerInternal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRComponentContainerInternal.h; path = FirebaseCore/Sources/Private/FIRComponentContainerInternal.h; sourceTree = ""; }; - 51D22D32DAA9E8BE62F7DEB0FE53BDBC /* RNSScreen.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNSScreen.m; path = ios/RNSScreen.m; sourceTree = ""; }; 51EE49DA7F1EB208F9461CB6483D55F0 /* picture_csp_enc.c */ = {isa = PBXFileReference; includeInIndex = 1; name = picture_csp_enc.c; path = src/enc/picture_csp_enc.c; sourceTree = ""; }; - 521A0A629210511FCD3E3ABB5D71A74A /* RCTShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTShadowView.m; sourceTree = ""; }; - 522850CA85F97F9087EE45F06E60C698 /* UMFaceDetectorInterface.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = UMFaceDetectorInterface.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - 52365A8480F8EAE6885A277BFE38C27B /* RNNativeViewHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNNativeViewHandler.m; sourceTree = ""; }; - 525703D8A43EB8FCA48E004E7130FB34 /* 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; }; + 52314E40541798B7B27A877E3D74169E /* RNSScreenStack.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNSScreenStack.h; path = ios/RNSScreenStack.h; sourceTree = ""; }; + 524B6107C05BA5B8BA8D4B4196CD7045 /* RCTInputAccessoryShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTInputAccessoryShadowView.m; sourceTree = ""; }; 527CD81DF520880893DE8021CD41E619 /* Pods-ShareRocketChatRN.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-ShareRocketChatRN.release.xcconfig"; sourceTree = ""; }; - 528D7A41D5D2F7190F5379FB981B24D6 /* UMExportedModule.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = UMExportedModule.m; path = UMCore/UMExportedModule.m; sourceTree = ""; }; - 52B964F114FDAAD446D5928A05EDCA0A /* RCTI18nUtil.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTI18nUtil.m; sourceTree = ""; }; + 529809D206CC06EBA7EF646831069BB4 /* 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; }; + 52B0FB1E36AA72F83EB68413FD14370A /* ResourceBundle-QBImagePicker-RNImageCropPicker-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "ResourceBundle-QBImagePicker-RNImageCropPicker-Info.plist"; sourceTree = ""; }; + 52BD787C10CFD74ACC1AB71A99C7A09E /* EXContactsRequester.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXContactsRequester.m; path = EXPermissions/EXContactsRequester.m; sourceTree = ""; }; 52C28AD783EE3A1E4AB2B1A936CBEC0A /* FIROptions.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIROptions.m; path = FirebaseCore/Sources/FIROptions.m; sourceTree = ""; }; - 52C7174BC9C090FFCE1A3619FF427FD8 /* REAConcatNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REAConcatNode.m; sourceTree = ""; }; 52CDBAFD1C6554282FCD586FFBA8FFFD /* FIRCoreDiagnosticsConnector.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCoreDiagnosticsConnector.h; path = FirebaseCore/Sources/Private/FIRCoreDiagnosticsConnector.h; sourceTree = ""; }; + 52D948002EB1AD3DF1564A20CC99DB97 /* 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; }; 52EB1989DFD74CEB5377A42F0481FCAC /* RSKImageCropper-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RSKImageCropper-dummy.m"; sourceTree = ""; }; - 533674A52F32C7F4ABFF2B1DFD95A254 /* UMBarCodeScannerProviderInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMBarCodeScannerProviderInterface.h; path = UMBarCodeScannerInterface/UMBarCodeScannerProviderInterface.h; sourceTree = ""; }; - 534E598D280AE46AEED481FC0D7094A5 /* react-native-keyboard-tracking-view.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = "react-native-keyboard-tracking-view.podspec"; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - 535232372892510EA668EA0B95D2E341 /* RCTSafeAreaViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSafeAreaViewManager.h; sourceTree = ""; }; + 5333920C6146873D53E49C793CEA566B /* RCTProfileTrampoline-arm.S */ = {isa = PBXFileReference; includeInIndex = 1; path = "RCTProfileTrampoline-arm.S"; sourceTree = ""; }; 535AA0B78CF70BA9675FAEC421BED1E6 /* frame_enc.c */ = {isa = PBXFileReference; includeInIndex = 1; name = frame_enc.c; path = src/enc/frame_enc.c; sourceTree = ""; }; + 535EE13156147E38DAEA77FE5AE91DB3 /* Instance.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = Instance.h; sourceTree = ""; }; 5372D71E7AAFE0D044943DB958C2F428 /* FIRInstanceIDTokenInfo.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstanceIDTokenInfo.m; path = Firebase/InstanceID/FIRInstanceIDTokenInfo.m; sourceTree = ""; }; - 53845A81703C1C4952A0BB23FEE64B7D /* RCTInputAccessoryShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTInputAccessoryShadowView.h; sourceTree = ""; }; - 538B91047017AB8B2ECBAA02464A7615 /* READebugNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = READebugNode.m; sourceTree = ""; }; - 539E86C9FAB62F0D8903B34C26E30752 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; - 53B571D9D97B54417BBF7937F3A31CA4 /* react-native-cameraroll-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "react-native-cameraroll-prefix.pch"; sourceTree = ""; }; - 53C23EEF3A231BAE4998393E9CEC6E27 /* UMBarCodeScannerInterface.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMBarCodeScannerInterface.xcconfig; sourceTree = ""; }; - 5404E1BB112AB1AD2E66596014FB52E7 /* RCTKeyCommandConstants.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCTKeyCommandConstants.m; path = ios/KeyCommands/RCTKeyCommandConstants.m; sourceTree = ""; }; - 54091FF4F82F312CC86C4D42CED02D5A /* EXPermissions-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "EXPermissions-prefix.pch"; sourceTree = ""; }; - 540F853F7561FDFE3EE67E3312865FD5 /* YGNode.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = YGNode.cpp; path = yoga/YGNode.cpp; sourceTree = ""; }; - 542AC4AC28EAE758F45556B15C2CC63C /* REABlockNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REABlockNode.h; sourceTree = ""; }; + 539B7B17099D8AA15550991441616A78 /* RCTCxxMethod.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTCxxMethod.mm; sourceTree = ""; }; + 53A2AE7C23FC2740216BDCD227CBFA4E /* RCTBackedTextInputViewProtocol.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBackedTextInputViewProtocol.h; sourceTree = ""; }; + 53BCCAACD566CBD030E535C2D2A9CA0B /* RCTTouchEvent.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTouchEvent.h; sourceTree = ""; }; + 53F14BDD5F4FC4AF0FEA5519BD548562 /* RNFirebaseFirestoreDocumentReference.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNFirebaseFirestoreDocumentReference.h; sourceTree = ""; }; + 54280E8022DD29F21AA03BFAAE564270 /* Yoga.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = Yoga.xcconfig; sourceTree = ""; }; + 54409E813226CC0DE818716BA0944423 /* REAParamNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REAParamNode.h; sourceTree = ""; }; 545D3B715E5AF6AFEC5AE16325F9E898 /* GULMutableDictionary.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GULMutableDictionary.m; path = GoogleUtilities/Network/GULMutableDictionary.m; sourceTree = ""; }; 5469BFF90FA3FA7460B0D79CE5197D1D /* UIImage+MemoryCacheCost.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIImage+MemoryCacheCost.h"; path = "SDWebImage/Core/UIImage+MemoryCacheCost.h"; sourceTree = ""; }; - 547501DCD5BE356E8F4D1A4970D9AB13 /* RCTRedBoxExtraDataViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTRedBoxExtraDataViewController.h; sourceTree = ""; }; 54AE600BDD27B1D9D24B98E5EA73E2BB /* enc_mips32.c */ = {isa = PBXFileReference; includeInIndex = 1; name = enc_mips32.c; path = src/dsp/enc_mips32.c; sourceTree = ""; }; 54C80AE83CCD41943A1509A4518CEF1A /* mux_types.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = mux_types.h; path = src/webp/mux_types.h; sourceTree = ""; }; 54D0A0D72E5409D9555B3AB6C444425A /* picture_psnr_enc.c */ = {isa = PBXFileReference; includeInIndex = 1; name = picture_psnr_enc.c; path = src/enc/picture_psnr_enc.c; sourceTree = ""; }; 54EB650E96F37C37F0F35851F8C12BA6 /* Conv.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = Conv.cpp; path = folly/Conv.cpp; sourceTree = ""; }; - 54F2E8898CC234DF4D918DE037C924AC /* CxxNativeModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = CxxNativeModule.h; sourceTree = ""; }; - 54F5E1A4C627EC65AC00277DD62B4496 /* RCTResizeMode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTResizeMode.m; sourceTree = ""; }; - 54F9073EBF7C4E026B1A0B65EA673223 /* RCTViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTViewManager.m; sourceTree = ""; }; + 54EC03B90BB40EFF21E9F3E4D064B7CE /* ARTGroup.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ARTGroup.h; path = ios/ARTGroup.h; sourceTree = ""; }; 54FDDD0372DB70DE5506C1BE95A23BE4 /* UIImage+GIF.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIImage+GIF.h"; path = "SDWebImage/Core/UIImage+GIF.h"; sourceTree = ""; }; - 55014DC55695E2C387F7AFF31BEF7945 /* UMJavaScriptContextProvider.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMJavaScriptContextProvider.h; sourceTree = ""; }; + 5502DEE09F13AF71CD73586AF452FBBF /* RCTDisplayLink.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTDisplayLink.m; sourceTree = ""; }; 55172F9BCA61ED8903813A0BE84F0A81 /* SDAnimatedImageView+WebCache.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "SDAnimatedImageView+WebCache.h"; path = "SDWebImage/Core/SDAnimatedImageView+WebCache.h"; sourceTree = ""; }; - 552B1897F67DC6773C54CAF6C57C4E61 /* RCTSwitchManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSwitchManager.h; sourceTree = ""; }; + 55243D276BCCCAEF309D004B5F9BAEBA /* RCTProfile.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTProfile.m; sourceTree = ""; }; 55331CDCA3E4E9F322A2CA7CE5915A6A /* SDWebImageDefine.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWebImageDefine.m; path = SDWebImage/Core/SDWebImageDefine.m; sourceTree = ""; }; - 5539FE619426DF1750297D0781DFF001 /* READebugNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = READebugNode.h; sourceTree = ""; }; - 556A19703E8622926CDBB14F212EA6AA /* Yoga.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = Yoga.cpp; path = yoga/Yoga.cpp; sourceTree = ""; }; + 5550B29A3A12B046C327D297BD817790 /* FFFastImageViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FFFastImageViewManager.m; path = ios/FastImage/FFFastImageViewManager.m; sourceTree = ""; }; + 557B26123DD659C929CE930A4321BFD7 /* BugsnagMetaData.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagMetaData.h; sourceTree = ""; }; + 557DEB4E6F363594421A7F2DC79BAE85 /* ARTSurfaceView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = ARTSurfaceView.m; path = ios/ARTSurfaceView.m; sourceTree = ""; }; 55ABCD868D69EBB8B226D955E9B65C94 /* GDTCORTransport.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCORTransport.h; path = GoogleDataTransport/GDTCORLibrary/Public/GDTCORTransport.h; sourceTree = ""; }; - 55BD986FFD96FCA3F5000FFA58A44308 /* UMExportedModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMExportedModule.h; path = UMCore/UMExportedModule.h; sourceTree = ""; }; + 55CDDE57FC78DBCA7864F84CCC0F0E50 /* EXVideoPlayerViewControllerDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = EXVideoPlayerViewControllerDelegate.h; sourceTree = ""; }; 55DEC1E6B4290093E9B0766AC1D19DFF /* SDDiskCache.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDDiskCache.h; path = SDWebImage/Core/SDDiskCache.h; sourceTree = ""; }; - 55E0D3E1D9A2FFEB2AB820673F800E52 /* BugsnagCrashReport.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagCrashReport.m; sourceTree = ""; }; - 55EBE121DF0CBC202924ADF9DF7DD7DC /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; - 567558B0D0A19CD7C1BDC6FECCDC8442 /* RCTCustomKeyboardViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTCustomKeyboardViewController.h; sourceTree = ""; }; - 56D1FB31E2C106F327F32C3AF706800D /* QBVideoIconView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = QBVideoIconView.m; path = ios/QBImagePicker/QBImagePicker/QBVideoIconView.m; sourceTree = ""; }; + 55EC6646EA0F58C998F8997231399B54 /* RNBackgroundTimer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNBackgroundTimer.h; path = ios/RNBackgroundTimer.h; sourceTree = ""; }; + 565CD3C5BE5D4C48BB31984D19329D93 /* JSBigString.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = JSBigString.h; sourceTree = ""; }; + 566F8E26BE02F41DFA100FB1E0186FE9 /* RCTPickerManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTPickerManager.m; sourceTree = ""; }; + 56855D62431167073423C3E4343CCFEE /* RCTFollyConvert.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTFollyConvert.h; sourceTree = ""; }; + 56A8F506B4F91A8E13FAB50DB4FA5DC6 /* MethodCall.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = MethodCall.cpp; sourceTree = ""; }; + 56AC17775CF9BD254E41F497EF8E7C82 /* UMModuleRegistryProvider.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMModuleRegistryProvider.h; sourceTree = ""; }; + 56AF97F63EFE431F1C013A7EAE85414A /* RCTImageShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTImageShadowView.m; sourceTree = ""; }; 56E78EE0CF3ED46276B3F9962DBC7817 /* libwebp.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = libwebp.xcconfig; sourceTree = ""; }; - 56E7BF46F866F04E47CAF898C2DFCB9C /* SocketRocket.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SocketRocket.h; path = SocketRocket/SocketRocket.h; sourceTree = ""; }; - 56EDCB32DE75F36ED96B23810BB54455 /* RNJitsiMeetViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNJitsiMeetViewManager.m; path = ios/RNJitsiMeetViewManager.m; sourceTree = ""; }; - 5716A60DCC3F0EC6EEA4C9258D69B220 /* RCTSurfaceView.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTSurfaceView.mm; sourceTree = ""; }; - 5719D17F58C0C57C15D3199D73EF94A4 /* RNScreens-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNScreens-prefix.pch"; sourceTree = ""; }; - 57279FEEFA03EE0D3FBF36AB7C24566D /* UMReactNativeEventEmitter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = UMReactNativeEventEmitter.m; sourceTree = ""; }; - 572D0088BFEC231049A849D2B998C3D8 /* RNFirebase-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNFirebase-dummy.m"; sourceTree = ""; }; + 56FEAC0D99FD583AF71021360CBAF80E /* react-native-keyboard-tracking-view.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = "react-native-keyboard-tracking-view.podspec"; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 5725F510340E6E5521BD629DAAF432D4 /* RCTCxxConvert.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTCxxConvert.m; sourceTree = ""; }; 574C5FDCBE394444827C0B4B3C7DE9A5 /* yuv_mips_dsp_r2.c */ = {isa = PBXFileReference; includeInIndex = 1; name = yuv_mips_dsp_r2.c; path = src/dsp/yuv_mips_dsp_r2.c; sourceTree = ""; }; 574E8A849B86DCF8EE5726418D974721 /* libEXWebBrowser.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libEXWebBrowser.a; path = libEXWebBrowser.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 575B7072D0BC2FCD47EE0DDBC9A18796 /* RCTBorderDrawing.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTBorderDrawing.m; sourceTree = ""; }; - 5774C2C05049631DE87F2C907B6A314F /* RCTImageDataDecoder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageDataDecoder.h; path = Libraries/Image/RCTImageDataDecoder.h; sourceTree = ""; }; - 5799FA9AC8B924573C5A3E3251830CE5 /* BugsnagNotifier.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagNotifier.h; sourceTree = ""; }; - 57B5741DCAD75447DDEC71C6E58CD217 /* RCTTurboModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTurboModule.h; sourceTree = ""; }; - 57BB5857333B5A5C1BECBE34C6FA2C7B /* RNFirebaseAdMobBannerManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNFirebaseAdMobBannerManager.m; sourceTree = ""; }; - 57D4207BB861E02AAF2D49C30A6E9E64 /* RCTBridgeMethod.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBridgeMethod.h; sourceTree = ""; }; + 576D19E168AD6C6DB4C1A8E34718E9E4 /* React-RCTImage-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-RCTImage-prefix.pch"; sourceTree = ""; }; + 57BEABE77D7E5A632DCA9DF7662E5BB6 /* RCTTextViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTTextViewManager.m; sourceTree = ""; }; + 57F11FB6EEE31A59C686129B33E8A98E /* FBReactNativeSpec.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = FBReactNativeSpec.xcconfig; sourceTree = ""; }; 57F3CF73401C2A7D1861DD573FA5AAAB /* FIRInstanceIDLogger.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstanceIDLogger.m; path = Firebase/InstanceID/FIRInstanceIDLogger.m; sourceTree = ""; }; - 57F535FC39240295DE33B9A42DC815CD /* RNFastImage.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RNFastImage.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; 580123A082788AF220ECF528D65896DE /* FIRInstanceIDStringEncoding.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstanceIDStringEncoding.m; path = Firebase/InstanceID/FIRInstanceIDStringEncoding.m; sourceTree = ""; }; + 5802B7A0529F2862ADCC21060B02AF0D /* EXFilePermissionModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXFilePermissionModule.h; path = EXFileSystem/EXFilePermissionModule.h; sourceTree = ""; }; 580712ADE0DDE9601ED35B000EC802D6 /* libRSKImageCropper.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libRSKImageCropper.a; path = libRSKImageCropper.a; sourceTree = BUILT_PRODUCTS_DIR; }; + 5813747E3321148C9C628526DC88943B /* CxxNativeModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = CxxNativeModule.h; sourceTree = ""; }; + 5831FD0948D56E91F7E3CA9691E165A9 /* react-native-notifications-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "react-native-notifications-dummy.m"; sourceTree = ""; }; + 583C78D06D85B0F0870949F7687750AB /* RCTDivisionAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTDivisionAnimatedNode.m; sourceTree = ""; }; 583F2384046EE63CCD0360AE527E4565 /* GDTCCTNanopbHelpers.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GDTCCTNanopbHelpers.m; path = GoogleDataTransportCCTSupport/GDTCCTLibrary/GDTCCTNanopbHelpers.m; sourceTree = ""; }; - 58447C2D64026B5107DD7F36B06C84F6 /* RCTObjcExecutor.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTObjcExecutor.mm; sourceTree = ""; }; 5844E9E8BBD906339EA96EF1BD79326F /* FIRLoggerLevel.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRLoggerLevel.h; path = FirebaseCore/Sources/Public/FIRLoggerLevel.h; sourceTree = ""; }; 5847FD2633BC9047F028FE38A7084AD7 /* GDTCCTCompressionHelper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCCTCompressionHelper.h; path = GoogleDataTransportCCTSupport/GDTCCTLibrary/Private/GDTCCTCompressionHelper.h; sourceTree = ""; }; + 584EAD828707EF357D31A87E90058A71 /* RNSScreenContainer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNSScreenContainer.h; path = ios/RNSScreenContainer.h; sourceTree = ""; }; + 585CF1C45B8DDF6F28ABF8416F7794ED /* React-jsiexecutor-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-jsiexecutor-dummy.m"; sourceTree = ""; }; 586602EDE69E2D273945D156ECB89853 /* libPods-RocketChatRN.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libPods-RocketChatRN.a"; path = "libPods-RocketChatRN.a"; sourceTree = BUILT_PRODUCTS_DIR; }; + 586E1AE368A958D493CB28470CD8DAA8 /* EXPermissions.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = EXPermissions.xcconfig; sourceTree = ""; }; 587AD88BD32631BB096534980CA556E2 /* SDDiskCache.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDDiskCache.m; path = SDWebImage/Core/SDDiskCache.m; sourceTree = ""; }; 5890F013C17AD08F673E9838E1CBC85D /* bit_writer_utils.c */ = {isa = PBXFileReference; includeInIndex = 1; name = bit_writer_utils.c; path = src/utils/bit_writer_utils.c; sourceTree = ""; }; - 589AB7CD199564697BA3559F25CB61AB /* RCTNetworking.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTNetworking.mm; sourceTree = ""; }; - 58AD4AD2148C58A9CC8BB6B97D4216BF /* EXAppLoaderProvider.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = EXAppLoaderProvider.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - 590994D6B41920C6BFD44BE95824900F /* event.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = event.h; sourceTree = ""; }; - 590BC99D468B137EC35CDA917EBF0708 /* RNFetchBlobRequest.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNFetchBlobRequest.h; path = ios/RNFetchBlobRequest.h; sourceTree = ""; }; - 59A58F5FAE29F0EF4FF137EB1C05318B /* EXHapticsModule.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXHapticsModule.m; path = EXHaptics/EXHapticsModule.m; sourceTree = ""; }; + 589B9865C80918AB7F5066B06E8E11A9 /* RCTConvert+CoreLocation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RCTConvert+CoreLocation.h"; sourceTree = ""; }; + 58E309FAA47B11B7B5D3217B55F0FDDC /* RNCSlider.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCSlider.m; path = ios/RNCSlider.m; sourceTree = ""; }; + 596340A74BAAF58C81534D0AD98EA482 /* LNAnimator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = LNAnimator.h; sourceTree = ""; }; + 5987A792C94C45A6F6CBFDDB76719589 /* RCTModalHostView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTModalHostView.m; sourceTree = ""; }; + 5990CEFE9A2CA85B49282CAB546FA1A3 /* decorator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = decorator.h; sourceTree = ""; }; + 5992071390E2CBCF78CC2FBF807ED268 /* BSG_KSCrashAdvanced.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashAdvanced.h; sourceTree = ""; }; + 599D8A86884CC391ADA002B37D40D8D3 /* BugsnagMetaData.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagMetaData.m; sourceTree = ""; }; + 59A1EB5759C3D1C6D71C074D9FDE298D /* BSG_KSCrashReport.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashReport.h; sourceTree = ""; }; 59B76FA92742AFE4EC1B07FB04CDCEFE /* FIRInstanceIDAPNSInfo.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstanceIDAPNSInfo.m; path = Firebase/InstanceID/FIRInstanceIDAPNSInfo.m; sourceTree = ""; }; - 59CCC6AC00485DAEF9D9C5C18DA7611E /* UIView+React.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "UIView+React.h"; sourceTree = ""; }; - 59EC4FEB968B020E0CD690A6DB3E868B /* RCTBackedTextInputViewProtocol.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBackedTextInputViewProtocol.h; sourceTree = ""; }; + 59B7F70D11E021F08A31998EE1A86179 /* Octicons.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = Octicons.ttf; path = Fonts/Octicons.ttf; sourceTree = ""; }; + 59E11B597E23C72030409FFD90845C7A /* RCTSourceCode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSourceCode.h; sourceTree = ""; }; 59EDFE4884DAF3E61B6C33A8BE503617 /* FIRAppAssociationRegistration.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAppAssociationRegistration.h; path = FirebaseCore/Sources/Private/FIRAppAssociationRegistration.h; sourceTree = ""; }; - 5A0249D5BF713C4646877B4DF25EDCEB /* RNGestureHandlerModule.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNGestureHandlerModule.m; path = ios/RNGestureHandlerModule.m; sourceTree = ""; }; 5A09F908C75D99E518BBF382A235C2DB /* FIRInstallationsHTTPError.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstallationsHTTPError.h; path = FirebaseInstallations/Source/Library/Errors/FIRInstallationsHTTPError.h; sourceTree = ""; }; + 5A0A6C1586C666190D9BB40ECFF3C50F /* Feather.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = Feather.ttf; path = Fonts/Feather.ttf; sourceTree = ""; }; + 5A130F9A600D0594233949331634285C /* RCTConvert+RNNotifications.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "RCTConvert+RNNotifications.h"; path = "RNNotifications/RCTConvert+RNNotifications.h"; sourceTree = ""; }; 5A16CE135CC71ACDAB57AB9C085A4213 /* FIROptionsInternal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIROptionsInternal.h; path = FirebaseCore/Sources/Private/FIROptionsInternal.h; sourceTree = ""; }; - 5A35B117843579EEF47246C58706C5F0 /* RNFirebase.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNFirebase.m; path = RNFirebase/RNFirebase.m; sourceTree = ""; }; - 5A980A6EEE137896F876DCE1BFFCE89E /* RCTBundleURLProvider.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTBundleURLProvider.m; sourceTree = ""; }; - 5A9A27F54134F1A5DB297C535B527E2E /* RCTKeyCommandsManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTKeyCommandsManager.h; path = ios/KeyCommands/RCTKeyCommandsManager.h; sourceTree = ""; }; - 5AA230DB04272787B0BE5CE99CA36B95 /* 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; }; - 5AA9AAE62BCA1EB60DEE9F7AB174DA07 /* ARTTextFrame.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ARTTextFrame.h; path = ios/ARTTextFrame.h; sourceTree = ""; }; - 5AABE94E3E1F38B5DAEDF19A46E650F9 /* UMSingletonModule.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = UMSingletonModule.m; path = UMCore/UMSingletonModule.m; sourceTree = ""; }; - 5AC8F2B86FD9669CCC8F075040C642CD /* React-RCTBlob-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-RCTBlob-dummy.m"; sourceTree = ""; }; + 5A7B0C1C76773A38052B63E278819AC5 /* RCTScrollContentShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTScrollContentShadowView.h; sourceTree = ""; }; + 5A92F7A8EF0B089FA910606989EC696B /* EXCameraRollRequester.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXCameraRollRequester.h; path = EXPermissions/EXCameraRollRequester.h; sourceTree = ""; }; + 5ACF58911FE63DD19FD16C8DFAFABC88 /* EXAVPlayerData.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXAVPlayerData.h; path = EXAV/EXAVPlayerData.h; sourceTree = ""; }; 5AD246BB1DA917A3E16D3F36B4867501 /* FBLPromise+Reduce.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "FBLPromise+Reduce.m"; path = "Sources/FBLPromises/FBLPromise+Reduce.m"; sourceTree = ""; }; - 5AE6C4FAC04274A0DF959A5312014DB3 /* RCTComponentEvent.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTComponentEvent.h; sourceTree = ""; }; + 5ADC01D0B2DF21C8E2B7C9AF31CEA266 /* BSG_KSCrashC.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashC.h; sourceTree = ""; }; + 5B27647BCAB7E9E56AF1C1B7224AA22A /* UMViewManagerAdapter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMViewManagerAdapter.h; sourceTree = ""; }; 5B3A6A7C3F776BAF61AC51C5A02FBFA0 /* FBLPromise+Timeout.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "FBLPromise+Timeout.m"; path = "Sources/FBLPromises/FBLPromise+Timeout.m"; sourceTree = ""; }; 5B528863F8D26E47DBD2FAA61C3FC4FA /* 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 = ""; }; - 5B6008E05CC91A71F962829CA0E6CE90 /* RCTSurfaceStage.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSurfaceStage.h; sourceTree = ""; }; - 5B7FDE171B62E30BD02C835F98460D70 /* RCTTurboModuleManager.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTTurboModuleManager.mm; sourceTree = ""; }; - 5BAC389FE0AEA9F0EC1B3641793AAB72 /* RNEventEmitter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNEventEmitter.h; path = RNNotifications/RNEventEmitter.h; sourceTree = ""; }; - 5BD8B4834ABC16EBB220DB0B996B48F7 /* UMPermissionsInterface.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMPermissionsInterface.xcconfig; sourceTree = ""; }; + 5B83B3722402B2A7D21156D06CFA5326 /* react-native-slider.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "react-native-slider.xcconfig"; sourceTree = ""; }; + 5B8B3E648A51A11C0B8B859ED10DCE1A /* ARTSolidColor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = ARTSolidColor.h; sourceTree = ""; }; + 5BBBBB4DC4C22CE3A9520ADDFF3B3E85 /* RCTModalHostViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTModalHostViewManager.h; sourceTree = ""; }; + 5BCF8DE26741DDA2059FE0122EE66E12 /* RCTSurfaceHostingView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSurfaceHostingView.h; sourceTree = ""; }; + 5BD5A5FCD00F2D95836F952C0E53B498 /* RNPanHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNPanHandler.h; sourceTree = ""; }; + 5BE3A2681A336B566EDEA9C2612B8182 /* RCTBorderStyle.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBorderStyle.h; sourceTree = ""; }; + 5BFF93BEDB1C10111B46484D46EC3C01 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; + 5C0036B22D788F059AD795BBBC44656E /* RNDeviceInfo.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RNDeviceInfo.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 5C1B9061D19410501780E0625C47998E /* RNGestureHandler.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNGestureHandler.xcconfig; sourceTree = ""; }; + 5C27280A6BD823FE48C7BA606E831914 /* RCTAppState.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTAppState.h; sourceTree = ""; }; 5C3170CE50BA839FD7FFABDF189D8F38 /* quant_enc.c */ = {isa = PBXFileReference; includeInIndex = 1; name = quant_enc.c; path = src/enc/quant_enc.c; sourceTree = ""; }; 5C366C49F593DF61C1B36CA3537E513C /* SDWebImageCacheKeyFilter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageCacheKeyFilter.h; path = SDWebImage/Core/SDWebImageCacheKeyFilter.h; sourceTree = ""; }; - 5C61352E8B56BA1D22F8AC723E7C510A /* IOS7Polyfill.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = IOS7Polyfill.h; path = ios/IOS7Polyfill.h; sourceTree = ""; }; - 5C7B5BE4CD05BC18AAF33DE7CB9B56F1 /* UMFaceDetectorInterface.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMFaceDetectorInterface.xcconfig; sourceTree = ""; }; - 5C83CDFF04D1A01B13629CF955351BD8 /* RNImageCropPicker-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNImageCropPicker-prefix.pch"; sourceTree = ""; }; - 5C910818B6524C8841009D36914A5180 /* RCTKeyCommands.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTKeyCommands.h; sourceTree = ""; }; - 5C9F2F1343AF7A8BA895B653D840F849 /* BSG_KSCrashCallCompletion.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashCallCompletion.h; sourceTree = ""; }; + 5C5003138522EACDDD81AF6E395C1AD3 /* KeyCommands.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = KeyCommands.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 5CA6EA65B6A4DCAD7CA99970C3CE2F49 /* EXConstants.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = EXConstants.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; 5CA8F1A20B87DBB263F925DD7FE29947 /* libreact-native-keyboard-input.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libreact-native-keyboard-input.a"; path = "libreact-native-keyboard-input.a"; sourceTree = BUILT_PRODUCTS_DIR; }; + 5CB5CDF7512734C433D9A729E8A6624C /* RCTCxxModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTCxxModule.h; sourceTree = ""; }; + 5CF4ACDFB96383F590C01F0004DB1A1A /* RCTSinglelineTextInputView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSinglelineTextInputView.m; sourceTree = ""; }; 5CFEB116ECB9A495D54B314D795B805B /* stl_logging.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = stl_logging.h; path = src/glog/stl_logging.h; sourceTree = ""; }; + 5CFF31790601FBE2A0771E7E1C5AE8CA /* RCTTextShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTextShadowView.h; sourceTree = ""; }; + 5D6B7C40686D239FE69F6420F1BA90E3 /* EvilIcons.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = EvilIcons.ttf; path = Fonts/EvilIcons.ttf; sourceTree = ""; }; 5D7200E0CD187410B1D095CC51FF6E72 /* FIRInstanceIDCheckinStore.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstanceIDCheckinStore.h; path = Firebase/InstanceID/FIRInstanceIDCheckinStore.h; sourceTree = ""; }; - 5D865DAE916128207DE24EADBF3BAE84 /* RCTScrollView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTScrollView.m; sourceTree = ""; }; - 5D8A0D0BBAD00AB40617AED6CF4C9C88 /* SRRandom.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = SRRandom.m; sourceTree = ""; }; + 5DAEB7AFD20524FE9695A7D2D1D535A9 /* FBReactNativeSpec.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = FBReactNativeSpec.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; 5DB602E4418A6458062E66FDBE8939FB /* FIRCoreDiagnosticsConnector.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCoreDiagnosticsConnector.m; path = FirebaseCore/Sources/FIRCoreDiagnosticsConnector.m; sourceTree = ""; }; - 5DB7B664AD22D440870DACEA949D0182 /* RNNotificationCenter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNNotificationCenter.h; path = RNNotifications/RNNotificationCenter.h; sourceTree = ""; }; - 5DC7EB6128BE6052BA7AA5A73096E957 /* React-CoreModules-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-CoreModules-dummy.m"; sourceTree = ""; }; - 5E3596E809929F56D6C013739C427DBB /* RCTBridgeDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBridgeDelegate.h; sourceTree = ""; }; + 5DC44C6607404E13FC04107356853ADB /* RCTParserUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTParserUtils.h; sourceTree = ""; }; + 5DD508AB0D346DE34BA31FE277C21433 /* react-native-slider-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "react-native-slider-prefix.pch"; sourceTree = ""; }; + 5E350B5C123863569EC380ABC2DF1A1B /* BSG_KSCrashType.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSCrashType.c; sourceTree = ""; }; 5E395510D11DCC7395A036D8E1F57BA3 /* SDWebImageCacheSerializer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageCacheSerializer.h; path = SDWebImage/Core/SDWebImageCacheSerializer.h; sourceTree = ""; }; 5E4674603A5D5B9215FFA0F8E69F8B71 /* liblibwebp.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = liblibwebp.a; path = liblibwebp.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 5E5B66EAB3095DBCF2163E18F25534DB /* RCTBridgeModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBridgeModule.h; sourceTree = ""; }; 5E5CC8F6A5743198CEE068F4A629834B /* FIRComponentType.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRComponentType.m; path = FirebaseCore/Sources/FIRComponentType.m; sourceTree = ""; }; 5E6CBF3BA9FA871AD606BAA54F66FC97 /* FirebaseAnalytics.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = FirebaseAnalytics.framework; path = Frameworks/FirebaseAnalytics.framework; sourceTree = ""; }; - 5E76FFD831CBFC180923270AAB941B90 /* BugsnagSessionTrackingApiClient.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagSessionTrackingApiClient.h; sourceTree = ""; }; - 5E7B1861001959FFBD718B8E8C31814E /* ARTRadialGradient.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = ARTRadialGradient.h; sourceTree = ""; }; - 5ECBF7B20C1C9FF645678F85CFD5F4BE /* FBReactNativeSpec.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = FBReactNativeSpec.xcconfig; sourceTree = ""; }; - 5ECF498737298D08C58E44A78EB27CE6 /* ARTTextManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = ARTTextManager.m; sourceTree = ""; }; + 5E9B0FD9CFE103E603026ABAEF9DE9FD /* RCTBaseTextInputViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTBaseTextInputViewManager.m; sourceTree = ""; }; 5EE39A7B4283BEFE43E66F46862951DC /* SDImageAPNGCoder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageAPNGCoder.h; path = SDWebImage/Core/SDImageAPNGCoder.h; sourceTree = ""; }; 5EE46B386E95AC9FBBEE856CF2383198 /* bignum.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = bignum.cc; path = "double-conversion/bignum.cc"; sourceTree = ""; }; 5F1C5F873FB22C5A73E967F1C3900F05 /* String.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = String.cpp; path = folly/String.cpp; sourceTree = ""; }; - 5F421E4F57D9A4433BF1EFFAB8A86727 /* EXAudioSessionManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXAudioSessionManager.m; path = EXAV/EXAudioSessionManager.m; sourceTree = ""; }; - 5F5E3B9A3BFEA3E55CEDD3F30F0C8B63 /* RNFirebaseFirestoreCollectionReference.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNFirebaseFirestoreCollectionReference.m; sourceTree = ""; }; - 5F97B05C028C8606E8431975E5B9B4E3 /* react-native-keyboard-input-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "react-native-keyboard-input-prefix.pch"; sourceTree = ""; }; + 5F66F1E3E71254F5A951B94C0A5FE22F /* RCTMultilineTextInputView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTMultilineTextInputView.h; sourceTree = ""; }; + 5F96269818E4FE5E931F3956EAAA776F /* UMTaskManagerInterface.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMTaskManagerInterface.xcconfig; sourceTree = ""; }; 5FA7BEFCEE456CEE557E176D2373B2AE /* UIView+WebCache.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIView+WebCache.h"; path = "SDWebImage/Core/UIView+WebCache.h"; sourceTree = ""; }; - 5FCBECCE8C153134A71B63AA69A2029A /* Color+Interpolation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Color+Interpolation.h"; sourceTree = ""; }; - 5FD85CBF9DF39FB8FA9F5165A14B4B85 /* RCTSurfacePresenterStub.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSurfacePresenterStub.m; sourceTree = ""; }; - 603458B1947B082DFA09CC52C0057886 /* RCTSafeAreaShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSafeAreaShadowView.m; sourceTree = ""; }; - 6054B2DD1ED3D15C8ECD803F4364A544 /* RNImageCropPicker.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNImageCropPicker.xcconfig; sourceTree = ""; }; - 608100E743082C1CA5FB2818A68155EA /* RCTSinglelineTextInputView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSinglelineTextInputView.m; sourceTree = ""; }; - 6084DDC35E5D37C93CAF1107978E5DBD /* RNFirebaseEvents.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNFirebaseEvents.h; path = RNFirebase/RNFirebaseEvents.h; sourceTree = ""; }; + 5FB4E429709FEA44E83F39CF06BFD8B7 /* RNCWKProcessPoolManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCWKProcessPoolManager.m; path = ios/RNCWKProcessPoolManager.m; sourceTree = ""; }; + 5FFADEAB305FDC25772B125EFF5D6831 /* RCTSafeAreaShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSafeAreaShadowView.h; sourceTree = ""; }; + 600F74A2B725854868F8263604096B78 /* RCTBridge+Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RCTBridge+Private.h"; sourceTree = ""; }; + 605E136781AE87E42A384ED77767AF54 /* REATransformNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REATransformNode.h; sourceTree = ""; }; + 6067480709BD2FEE874AE26E59989BA0 /* RNCAppearanceProviderManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCAppearanceProviderManager.h; path = ios/Appearance/RNCAppearanceProviderManager.h; sourceTree = ""; }; 608E4B0589801079221FEB94B6D394AC /* FIRInstanceIDStore.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstanceIDStore.h; path = Firebase/InstanceID/FIRInstanceIDStore.h; sourceTree = ""; }; 60BC27AD9ED5029E588DEDFB282BC600 /* FIRInstanceIDBackupExcludedPlist.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstanceIDBackupExcludedPlist.m; path = Firebase/InstanceID/FIRInstanceIDBackupExcludedPlist.m; sourceTree = ""; }; - 61151BC066897B3D19D888712807F0AF /* RNFirebaseFunctions.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNFirebaseFunctions.m; sourceTree = ""; }; - 6124E4C51D9177A23B8FEE1F3BCBA0AB /* React-Core-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-Core-dummy.m"; sourceTree = ""; }; + 60C6CF14C7A27A5A0F0852E9D99D738C /* RCTShadowView+Internal.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RCTShadowView+Internal.m"; sourceTree = ""; }; + 60D49F0985161C896921D7BD7367B8FC /* RNDateTimePicker.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RNDateTimePicker.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 6106000F1195C8E92D7251F41019B12F /* RCTWrapperViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTWrapperViewController.h; sourceTree = ""; }; + 611C1142B2D48827BD18FA78541F3CA6 /* RCTUITextView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTUITextView.h; sourceTree = ""; }; 6129D17144193C727D68FFB158130674 /* FIRInstallationsSingleOperationPromiseCache.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstallationsSingleOperationPromiseCache.h; path = FirebaseInstallations/Source/Library/InstallationsIDController/FIRInstallationsSingleOperationPromiseCache.h; sourceTree = ""; }; - 61316B300EC4E6516D45C322572BBB67 /* React-cxxreact-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-cxxreact-dummy.m"; sourceTree = ""; }; 616B59B78E41E0F8743C2A2FDFBA466B /* FBLPromise+Reduce.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FBLPromise+Reduce.h"; path = "Sources/FBLPromises/include/FBLPromise+Reduce.h"; sourceTree = ""; }; - 617BC987A88508B41B4A29B28B77001B /* SRProxyConnect.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = SRProxyConnect.m; sourceTree = ""; }; 61AF1837C4C82F78744ED30517A5031F /* analysis_enc.c */ = {isa = PBXFileReference; includeInIndex = 1; name = analysis_enc.c; path = src/enc/analysis_enc.c; sourceTree = ""; }; - 61AF358A0DA0DBA787A15264884C5C91 /* RCTCxxUtils.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTCxxUtils.mm; sourceTree = ""; }; - 61D1047CE9D402DCA90E68B4569E386D /* SRURLUtilities.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = SRURLUtilities.m; sourceTree = ""; }; - 61E87445627B4C5F78DF1D88E468050C /* RNVectorIconsManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNVectorIconsManager.m; path = RNVectorIconsManager/RNVectorIconsManager.m; sourceTree = ""; }; - 620DB600098BB7C3DDAEBFF151CB985D /* BSG_KSCrashSentry_CPPException.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashSentry_CPPException.h; sourceTree = ""; }; - 6253EB5A53E273BEE1C7092D9CBDEBB0 /* REASetNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REASetNode.m; sourceTree = ""; }; - 625DD3142FE45CA4B97195CE5728C80B /* RCTMessageThread.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTMessageThread.mm; sourceTree = ""; }; - 62B9A522FD69793920A33C573F1E2A99 /* JSExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = JSExecutor.h; sourceTree = ""; }; + 61E1CC05B0D6981933244DE1C07901B3 /* Utils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Utils.h; path = yoga/Utils.h; sourceTree = ""; }; + 6251479B660542FA4B8E650B74A21886 /* SystraceSection.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = SystraceSection.h; sourceTree = ""; }; + 625333C80B2EAAB76B341DE8740C086C /* BSG_KSSingleton.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSSingleton.h; sourceTree = ""; }; + 626A53AAB2F22C619F60189EA67E963B /* RCTReloadCommand.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTReloadCommand.h; sourceTree = ""; }; 62DCD8FC43D8554520EF5C154FB8D476 /* SDWebImageDownloaderRequestModifier.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageDownloaderRequestModifier.h; path = SDWebImage/Core/SDWebImageDownloaderRequestModifier.h; sourceTree = ""; }; 62E764263319E7C9A53A9AF39D7723E5 /* FIRInstanceID+Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FIRInstanceID+Private.h"; path = "Firebase/InstanceID/Private/FIRInstanceID+Private.h"; sourceTree = ""; }; - 63109D175A5FD3B40F98A65BCBDA80B6 /* RCTRawTextViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTRawTextViewManager.h; sourceTree = ""; }; 631C18F49615412D4C905B1C37D9ADA9 /* UIImage+RSKImageCropper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIImage+RSKImageCropper.h"; path = "RSKImageCropper/UIImage+RSKImageCropper.h"; sourceTree = ""; }; - 633B42E5FC15E3A8F82BC89CCC2DA071 /* BugsnagReactNative.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = BugsnagReactNative.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - 635F7B63DA9E22DD55626E3F9D2B3D7A /* RCTDataRequestHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTDataRequestHandler.m; sourceTree = ""; }; + 6321263A248630E4645EA7591C0BBE5F /* JsArgumentHelpers.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = JsArgumentHelpers.h; sourceTree = ""; }; + 6349F711E9C50FF7106EFE4C0724756A /* EXFileSystem-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "EXFileSystem-dummy.m"; sourceTree = ""; }; + 636B320601CBCC8B89DD6E7ABD3608A2 /* JSBigString.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = JSBigString.cpp; sourceTree = ""; }; 636D6783185DE1F442D58AEE9C52B4B1 /* GDTCCTCompressionHelper.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GDTCCTCompressionHelper.m; path = GoogleDataTransportCCTSupport/GDTCCTLibrary/GDTCCTCompressionHelper.m; sourceTree = ""; }; 63743B445C8FAC8021EC41CC4362CF9F /* log_severity.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = log_severity.h; path = src/glog/log_severity.h; sourceTree = ""; }; - 63A398CCE7AE87E90C3536847FABCE66 /* UMFontInterface.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = UMFontInterface.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; 63B31FE76518F6AD1B9C7FC4FC3BE0FD /* SDWebImageIndicator.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWebImageIndicator.m; path = SDWebImage/Core/SDWebImageIndicator.m; sourceTree = ""; }; - 63D00D396E1DDAB0E268E279D996EAA1 /* RCTMultilineTextInputView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTMultilineTextInputView.h; sourceTree = ""; }; - 63EAF27516C829F79D1EF78AD154BB37 /* ReactNativeART-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "ReactNativeART-dummy.m"; sourceTree = ""; }; + 63E02F31641BA64A05570A91167B7DFF /* UMReactFontManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMReactFontManager.h; sourceTree = ""; }; + 63E2D5EBDD75E01B9E740029F6DE0DD0 /* UMTaskManagerInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMTaskManagerInterface.h; path = UMTaskManagerInterface/UMTaskManagerInterface.h; sourceTree = ""; }; + 63E4FDA869FAD60878F385D1A9589C6D /* UMBarCodeScannerInterface.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMBarCodeScannerInterface.xcconfig; sourceTree = ""; }; 63F237C28969479FD39F0D8EB9063B79 /* UIImage+MultiFormat.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIImage+MultiFormat.m"; path = "SDWebImage/Core/UIImage+MultiFormat.m"; sourceTree = ""; }; - 63F78F223C69C1972720D9E1B452AF19 /* RCTExceptionsManager.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTExceptionsManager.mm; sourceTree = ""; }; 63FC874B85C176CC532B90BB75E6546F /* GULLoggerLevel.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULLoggerLevel.h; path = GoogleUtilities/Logger/Public/GULLoggerLevel.h; sourceTree = ""; }; - 6453C16E95756708559EADDB0E549140 /* RCTViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTViewManager.h; sourceTree = ""; }; + 640AC21085460BE3C3B9E6F84AE66236 /* Yoga.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = Yoga.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 644AB07B2AB908600728D0D3C86A669D /* EXAppLoaderInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = EXAppLoaderInterface.h; sourceTree = ""; }; + 64539EC7E7E67AFB2A7B3DAD832D6747 /* BSG_KSFileUtils.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSFileUtils.c; sourceTree = ""; }; 645432A1DF9B3036F4D66BBB89CBAA89 /* backward_references_enc.c */ = {isa = PBXFileReference; includeInIndex = 1; name = backward_references_enc.c; path = src/enc/backward_references_enc.c; sourceTree = ""; }; 6456BEB6732CB1208721A93717E83ACB /* SDAnimatedImagePlayer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDAnimatedImagePlayer.h; path = SDWebImage/Core/SDAnimatedImagePlayer.h; sourceTree = ""; }; - 647AA6F94D105A62C7E3B52AF0C309ED /* EXAppLoaderProvider-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "EXAppLoaderProvider-prefix.pch"; sourceTree = ""; }; 64858CBC195C53A245090C9C8C11D8DB /* FIRInstanceIDCheckinPreferences+Internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FIRInstanceIDCheckinPreferences+Internal.h"; path = "Firebase/InstanceID/FIRInstanceIDCheckinPreferences+Internal.h"; sourceTree = ""; }; 64963B0AD90508C9D1DAD41D65CBBC0C /* random_utils.c */ = {isa = PBXFileReference; includeInIndex = 1; name = random_utils.c; path = src/utils/random_utils.c; sourceTree = ""; }; - 64CDDD1473B481651A4A38971F237725 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; - 64D6A0EC48B1AD4A2A516B7E6395D9C8 /* RCTUIManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTUIManager.m; sourceTree = ""; }; - 64ED3293AF89363B6DA19DC034FE5148 /* LICENCE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENCE; sourceTree = ""; }; - 6515AC64D27C87B7C5E178A661BB0A0F /* EXAV-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "EXAV-dummy.m"; sourceTree = ""; }; - 651C1F507330EB1F461771AF1A875EB3 /* NativeToJsBridge.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = NativeToJsBridge.cpp; sourceTree = ""; }; - 651FE2BE449A4AD3D18E39236DCFE313 /* 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; }; - 6583819C2D0075DAAE5ED707C9A9A91D /* RNCWKProcessPoolManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCWKProcessPoolManager.h; path = ios/RNCWKProcessPoolManager.h; sourceTree = ""; }; + 64E12C3096FAC70863A1A19A220C0A5F /* RNLocalize-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNLocalize-dummy.m"; sourceTree = ""; }; + 652BE57AEB7940AE99C9158D45AC829B /* RCTUIUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTUIUtils.h; sourceTree = ""; }; + 6533AF30C7F1669E54085F1CA122D063 /* KeyboardTrackingViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = KeyboardTrackingViewManager.m; path = lib/KeyboardTrackingViewManager.m; sourceTree = ""; }; + 654085B96AEB3EFDE12C2D6DF53BBE94 /* UIView+React.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "UIView+React.m"; sourceTree = ""; }; + 65484968CCFD85A1DDBC1B92EE4D30D9 /* RCTTypeSafety-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RCTTypeSafety-dummy.m"; sourceTree = ""; }; + 654EEAB16ABA9FA29F41A3DCB1606F23 /* RNFirebaseUtil.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNFirebaseUtil.m; path = RNFirebase/RNFirebaseUtil.m; sourceTree = ""; }; + 656BF0C11A2DDDA0C766C3761D7E88B7 /* RCTBaseTextInputViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBaseTextInputViewManager.h; sourceTree = ""; }; 65985823BA9E59CD5D699B8553FBFC7A /* SDWebImageCompat.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWebImageCompat.m; path = SDWebImage/Core/SDWebImageCompat.m; sourceTree = ""; }; - 65B41CF167FF6DCF3FEDAD73573AF2EE /* REAModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = REAModule.h; path = ios/REAModule.h; sourceTree = ""; }; - 65BD95C37CE00958082C4E0E3AA13635 /* RNNotificationCenter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNNotificationCenter.m; path = RNNotifications/RNNotificationCenter.m; sourceTree = ""; }; - 65C7994B7144D7BD386DEE3187235915 /* DispatchMessageQueueThread.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = DispatchMessageQueueThread.h; sourceTree = ""; }; 65D0A19C165FA1126B1360680FE6DB12 /* libYoga.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libYoga.a; path = libYoga.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 65D1AF76071643A304712F4F0947B6C9 /* react-native-appearance-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "react-native-appearance-prefix.pch"; sourceTree = ""; }; + 65D56D642AA96CB54D083C3E65A1C9FD /* ARTNodeManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = ARTNodeManager.m; sourceTree = ""; }; + 65D732F2884AB3C353026D8706FD986C /* REATransitionValues.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REATransitionValues.m; sourceTree = ""; }; 65F4CD4AED2AC4EF14B118A58EDEE355 /* UIImage+RSKImageCropper.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIImage+RSKImageCropper.m"; path = "RSKImageCropper/UIImage+RSKImageCropper.m"; sourceTree = ""; }; - 660E8E2E8BA57B6EE99682B94753A01B /* SRRunLoopThread.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = SRRunLoopThread.m; sourceTree = ""; }; - 661399D54AE297D8AE1A9DAB3725099C /* RCTInputAccessoryViewContent.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTInputAccessoryViewContent.h; sourceTree = ""; }; + 6604636E857C6DB4F65CDD7529C29621 /* RCTUIManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTUIManager.m; sourceTree = ""; }; + 661CA3A1F694AE04D71F854CED234349 /* RCTKeyCommands.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTKeyCommands.m; sourceTree = ""; }; 66228ED45E198EDBDEA21A197E306C7E /* SDWebImageDownloaderResponseModifier.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWebImageDownloaderResponseModifier.m; path = SDWebImage/Core/SDWebImageDownloaderResponseModifier.m; sourceTree = ""; }; - 6635661FE90F9C0B843EC5459944A09E /* REAAllTransitions.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REAAllTransitions.h; sourceTree = ""; }; 6638D4A39DF660C0D118FE1FB6420263 /* format_constants.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = format_constants.h; path = src/webp/format_constants.h; sourceTree = ""; }; - 663A2F203BA900C797824FFA89D4BECE /* BSG_KSLogger.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BSG_KSLogger.m; sourceTree = ""; }; - 666A7F71C5417708B15203FD9CA45EE1 /* Entypo.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = Entypo.ttf; path = Fonts/Entypo.ttf; sourceTree = ""; }; + 667D46F6C366F61325EDE72448BABA21 /* React-RCTImage.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-RCTImage.xcconfig"; sourceTree = ""; }; 6689EFD327C141249C36F84B370FCC15 /* SDAnimatedImage.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDAnimatedImage.m; path = SDWebImage/Core/SDAnimatedImage.m; sourceTree = ""; }; 668DB3196C8AC5E9F322863CBC018C56 /* FIRInstallationsVersion.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstallationsVersion.h; path = FirebaseInstallations/Source/Library/Public/FIRInstallationsVersion.h; sourceTree = ""; }; 669E2D815BA85AA4A6BB99088F534BB0 /* lossless_enc_sse2.c */ = {isa = PBXFileReference; includeInIndex = 1; name = lossless_enc_sse2.c; path = src/dsp/lossless_enc_sse2.c; sourceTree = ""; }; 66BB28169F8562B9DE334B74B5B456EB /* SDImageGraphics.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageGraphics.h; path = SDWebImage/Core/SDImageGraphics.h; sourceTree = ""; }; 66BE2E56E1110F499C048713FEB1CE2A /* demux.c */ = {isa = PBXFileReference; includeInIndex = 1; name = demux.c; path = src/demux/demux.c; sourceTree = ""; }; + 66C149719C5CBD2A4D2ACEB8C0CD6D1F /* ReactNativeART.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = ReactNativeART.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; 66EF89ABD7B5DBBB462B12529A796D9B /* GoogleDataTransport.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GoogleDataTransport.h; path = GoogleDataTransport/GDTCORLibrary/Public/GoogleDataTransport.h; sourceTree = ""; }; - 670F19CD099E71FFF3DB849FA9EF1C2B /* React-RCTText.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-RCTText.xcconfig"; sourceTree = ""; }; + 6703C32082581B00621FCDD674B73ED8 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; 67126F01CF3D1827B3B8FF2A8F677A2F /* double-conversion.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "double-conversion.h"; path = "double-conversion/double-conversion.h"; sourceTree = ""; }; - 672903B0E575274B044EE2771C1CAF7E /* RCTUIManagerObserverCoordinator.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTUIManagerObserverCoordinator.mm; sourceTree = ""; }; + 6730970C10E2B812DA5EFCE6F2CF1470 /* RNSScreenContainer.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNSScreenContainer.m; path = ios/RNSScreenContainer.m; sourceTree = ""; }; 67495001F5CD5835C2BB0CC49D35E686 /* GULNetworkConstants.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GULNetworkConstants.m; path = GoogleUtilities/Network/GULNetworkConstants.m; sourceTree = ""; }; - 674D3ED4A35628BAD371C36DA6D4A113 /* BSG_KSCrashDoctor.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BSG_KSCrashDoctor.m; sourceTree = ""; }; - 675E4382C53964FF05CCAD7BAE0A9410 /* RCTRawTextShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTRawTextShadowView.h; sourceTree = ""; }; - 676F9C9E5B5CA96DADC388DB958A0316 /* RNFirebaseMessaging.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNFirebaseMessaging.m; sourceTree = ""; }; - 677166F630594E11AE96CF04D9C7E975 /* RNNotifications.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNNotifications.m; path = RNNotifications/RNNotifications.m; sourceTree = ""; }; + 6761C6C7DA57DD5FFC45F3B77CBD269C /* UMModuleRegistryAdapter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMModuleRegistryAdapter.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; }; 677829C82932437E90068CC931C2D606 /* FIRInstallationsSingleOperationPromiseCache.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstallationsSingleOperationPromiseCache.m; path = FirebaseInstallations/Source/Library/InstallationsIDController/FIRInstallationsSingleOperationPromiseCache.m; sourceTree = ""; }; - 6796460AE35395D20A5FD33B258C51E5 /* BugsnagSessionTrackingApiClient.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagSessionTrackingApiClient.m; sourceTree = ""; }; - 6798DBC55D7C95271E0674633811C427 /* React-RCTText-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-RCTText-dummy.m"; sourceTree = ""; }; - 67AF74868CC0A8C3EC9D8133919D30CF /* BugsnagBreadcrumb.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagBreadcrumb.m; sourceTree = ""; }; - 67EA32B6DADAEC348B9E350D1AEC56DB /* NSRunLoop+SRWebSocket.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSRunLoop+SRWebSocket.m"; path = "SocketRocket/NSRunLoop+SRWebSocket.m"; sourceTree = ""; }; + 679EE75DD15CCB9C0BE232695CAFC935 /* RCTRefreshControlManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTRefreshControlManager.m; sourceTree = ""; }; 68041748F69925013F2E5E2E941E5D0B /* FBLPromise+Delay.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FBLPromise+Delay.h"; path = "Sources/FBLPromises/include/FBLPromise+Delay.h"; sourceTree = ""; }; - 6810B086173C803B1AC5D3F0C6FD4076 /* FFFastImageView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FFFastImageView.m; path = ios/FastImage/FFFastImageView.m; sourceTree = ""; }; - 6834B38E97B0877135ACC8436548C363 /* BSG_KSCrashSentry_MachException.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashSentry_MachException.h; sourceTree = ""; }; - 684C8059776AB8F2E7E35EE179FB8EA7 /* EXAudioSessionManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXAudioSessionManager.h; path = EXAV/EXAudioSessionManager.h; sourceTree = ""; }; + 683BD839FEECD36F6910B2D2DE071EA0 /* BugsnagReactNative.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = BugsnagReactNative.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; 6853D0C0275C488A7AFF75D5BF9ACC72 /* RSKImageCropViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RSKImageCropViewController.h; path = RSKImageCropper/RSKImageCropViewController.h; sourceTree = ""; }; - 686234FF9B66012D4812B8BF63F5CF6F /* RCTAnimationUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTAnimationUtils.h; path = Libraries/NativeAnimation/RCTAnimationUtils.h; sourceTree = ""; }; - 686869BC8067E9C4F6766CE8AD1062A9 /* RCTRootViewInternal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTRootViewInternal.h; sourceTree = ""; }; 686FA236B3A0EDC2B7D10C6CB83450C8 /* libreact-native-keyboard-tracking-view.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libreact-native-keyboard-tracking-view.a"; path = "libreact-native-keyboard-tracking-view.a"; sourceTree = BUILT_PRODUCTS_DIR; }; - 6883CD65AE78B306992DCC7BCE8D5B2E /* 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; }; - 68C0D22D5268386F7EB78415CC43071A /* RCTLocalAssetImageLoader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTLocalAssetImageLoader.h; path = Libraries/Image/RCTLocalAssetImageLoader.h; sourceTree = ""; }; - 68F688C70F7602F31121EA84CAE8C6D8 /* RCTScrollViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTScrollViewManager.h; sourceTree = ""; }; + 6904432957BAB3A3C83C0A370724DE98 /* RCTDatePicker.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTDatePicker.m; sourceTree = ""; }; + 693AC29F8B9544E88334BAA75FB2C9D2 /* RCTImageStoreManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageStoreManager.h; path = React/CoreModules/RCTImageStoreManager.h; sourceTree = ""; }; + 6941EF57B2898BB3FAC85FE115CE4F41 /* pl.lproj */ = {isa = PBXFileReference; includeInIndex = 1; name = pl.lproj; path = ios/QBImagePicker/QBImagePicker/pl.lproj; sourceTree = ""; }; 6942351307BC1F54575D9853307EAE0E /* libGoogleDataTransportCCTSupport.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libGoogleDataTransportCCTSupport.a; path = libGoogleDataTransportCCTSupport.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 694FD9E92513288848243F87AB52D9A6 /* RNRootViewGestureRecognizer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNRootViewGestureRecognizer.h; path = ios/RNRootViewGestureRecognizer.h; sourceTree = ""; }; - 6951354FB7E0B0A22B73913FA8424442 /* RCTPointerEvents.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTPointerEvents.h; sourceTree = ""; }; - 695BA1753BFCE794E1936B121510714E /* RCTView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTView.m; sourceTree = ""; }; - 697F784E78B71245476692F3D390DF5C /* UMReactLogHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMReactLogHandler.h; sourceTree = ""; }; - 69D48149BD7E426D4552A4467DA18E7F /* ReactNativeShareExtension.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ReactNativeShareExtension.h; path = ios/ReactNativeShareExtension.h; sourceTree = ""; }; - 69EB09CE2A99BC4B5CA1572AD8EC9BD4 /* BugsnagReactNative.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = BugsnagReactNative.h; path = cocoa/BugsnagReactNative.h; sourceTree = ""; }; + 69D7CE7BBF3A36EA846D94B45E64B36D /* RCTScrollContentView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTScrollContentView.h; sourceTree = ""; }; + 69DBAD1F4358CBE1911C5CCDC4C91D9C /* react-native-keyboard-tracking-view-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "react-native-keyboard-tracking-view-dummy.m"; sourceTree = ""; }; + 69FA7C8169224D40DAA35E1DAC8FAF5B /* react-native-orientation-locker.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "react-native-orientation-locker.xcconfig"; sourceTree = ""; }; + 6A06A5F42608234902F2795066879110 /* RNPushKitEventHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNPushKitEventHandler.h; path = RNNotifications/RNPushKitEventHandler.h; sourceTree = ""; }; 6A21588A6554E872D0F5137FF593521A /* UIView+WebCacheOperation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIView+WebCacheOperation.h"; path = "SDWebImage/Core/UIView+WebCacheOperation.h"; sourceTree = ""; }; 6A5DB3B95A61733B29846B836C5FE77A /* upsampling_neon.c */ = {isa = PBXFileReference; includeInIndex = 1; name = upsampling_neon.c; path = src/dsp/upsampling_neon.c; sourceTree = ""; }; - 6A898E6DE18628EF60F56FA7A3453405 /* RNNotificationParser.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNNotificationParser.m; path = RNNotifications/RNNotificationParser.m; sourceTree = ""; }; 6A9B97E8CE94081CD64AB0B4FC540CC4 /* Pods-RocketChatRN-resources.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-RocketChatRN-resources.sh"; sourceTree = ""; }; + 6A9C542B51663967CB6AE75E477BEEC0 /* RNBootSplash.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNBootSplash.xcconfig; sourceTree = ""; }; 6A9DF5E9B3012A39ED9F672E0C8D62E4 /* FABAttributes.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FABAttributes.h; path = iOS/Fabric.framework/Headers/FABAttributes.h; sourceTree = ""; }; - 6AA7C13C0FC11542577D8E0982809738 /* RCTSurfaceHostingProxyRootView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSurfaceHostingProxyRootView.h; sourceTree = ""; }; - 6AD52A5002C35FD045E3F1FA0F209341 /* Orientation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Orientation.h; path = iOS/RCTOrientation/Orientation.h; sourceTree = ""; }; - 6AF92ACDC4D1D99F5C63FB2E85370715 /* SRHTTPConnectMessage.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = SRHTTPConnectMessage.m; sourceTree = ""; }; 6B3000A1D45E185CABEFD0B060F04FC4 /* GULNSData+zlib.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "GULNSData+zlib.m"; path = "GoogleUtilities/NSData+zlib/GULNSData+zlib.m"; sourceTree = ""; }; - 6B3DCBE451998AF84A7227E28C828B6B /* BugsnagLogger.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagLogger.h; sourceTree = ""; }; 6B3DCE3E62D468D58DE3FECB07CFAB5C /* FBLPromise+Race.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "FBLPromise+Race.m"; path = "Sources/FBLPromises/FBLPromise+Race.m"; sourceTree = ""; }; - 6B57EFAEC94E64832C57A8D942E538B5 /* RCTShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTShadowView.h; sourceTree = ""; }; + 6B4CD3C1301C2BB0C3EA2456667D0CCF /* RNFirebaseDatabase.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNFirebaseDatabase.m; sourceTree = ""; }; 6B8FEC8581AD19DDD78ABBB18ECE2F22 /* GDTFLLUploader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTFLLUploader.h; path = GoogleDataTransportCCTSupport/GDTCCTLibrary/Private/GDTFLLUploader.h; sourceTree = ""; }; 6BB4E471066205C1B9F8413CE80BAB3E /* random_utils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = random_utils.h; path = src/utils/random_utils.h; sourceTree = ""; }; - 6BCA70E3C7BD3F877DC1FDC829C001A9 /* RCTNullability.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTNullability.h; sourceTree = ""; }; - 6C5FE44A31BD5CB84DE59BBAFFD9EE65 /* UMFileSystemInterface.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMFileSystemInterface.xcconfig; sourceTree = ""; }; - 6C7AD7AA57B41A571BB9B7279D8BC0C7 /* YGLayout.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = YGLayout.cpp; path = yoga/YGLayout.cpp; sourceTree = ""; }; + 6BBA3D75201AD135E3C4F124CBA41DC5 /* RCTScrollContentViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTScrollContentViewManager.m; sourceTree = ""; }; + 6BD48EE77936769A0C95168E4AAC836E /* RNFirebase-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNFirebase-dummy.m"; sourceTree = ""; }; + 6BE5328275FAB669B6D0040970EFA5E6 /* RNBridgeModule.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNBridgeModule.m; path = RNNotifications/RNBridgeModule.m; sourceTree = ""; }; + 6BE7793A9E985BA86D51A2779D89AC69 /* REACondNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REACondNode.m; sourceTree = ""; }; + 6C0C3747E397A2707BF9B1EF64956559 /* UMCore-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "UMCore-prefix.pch"; sourceTree = ""; }; + 6C1428EB227F10BE3CB287FD00E83FD5 /* UMConstantsInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMConstantsInterface.h; path = UMConstantsInterface/UMConstantsInterface.h; sourceTree = ""; }; + 6C376114ECCDF17400B6E3AE4766A075 /* RNPushKitEventListener.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNPushKitEventListener.m; path = RNNotifications/RNPushKitEventListener.m; sourceTree = ""; }; + 6C3B8D829EC3EED4A0A20FCDEB87EC9A /* RNPinchHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNPinchHandler.h; sourceTree = ""; }; 6C8B9AF946127A4CCC12F6DA5E9EFD4E /* FIRAppAssociationRegistration.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRAppAssociationRegistration.m; path = FirebaseCore/Sources/FIRAppAssociationRegistration.m; sourceTree = ""; }; 6C8FC56CD5FE60871A148C7D2580D8D2 /* upsampling_sse41.c */ = {isa = PBXFileReference; includeInIndex = 1; name = upsampling_sse41.c; path = src/dsp/upsampling_sse41.c; sourceTree = ""; }; - 6C931CF72C07DEFC287AEA959CE943E2 /* RCTVersion.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTVersion.m; sourceTree = ""; }; - 6CC2DBBA6742EE74F85A5E56719C000D /* RNCAssetsLibraryRequestHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCAssetsLibraryRequestHandler.m; path = ios/RNCAssetsLibraryRequestHandler.m; sourceTree = ""; }; - 6CD213CBF8225CEDC688993BA1A8346A /* RCTTouchHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTouchHandler.h; sourceTree = ""; }; - 6D00718F193B816B9AEC873D72D440AC /* UMReactNativeEventEmitter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMReactNativeEventEmitter.h; sourceTree = ""; }; - 6D0868376A35A8D3AC4D814FDC6147A4 /* RCTWebSocketExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTWebSocketExecutor.h; path = Libraries/WebSocket/RCTWebSocketExecutor.h; sourceTree = ""; }; - 6D2F53023440974A063B63AB9E1ABC22 /* RNUserDefaults.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNUserDefaults.xcconfig; sourceTree = ""; }; - 6D700A18FFE467C32FA8C069C33E1628 /* RCTTextShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTTextShadowView.m; sourceTree = ""; }; + 6C9909DE92AC43C391867844EB721B48 /* REATransitionAnimation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REATransitionAnimation.m; sourceTree = ""; }; + 6CB50D0B506E5976EB566742A2B84590 /* RCTSurfaceRootView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSurfaceRootView.h; sourceTree = ""; }; + 6CD1833BA2BA013CA5E2E53441796CAE /* JSExecutor.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = JSExecutor.cpp; sourceTree = ""; }; + 6CEABFCA41CB42F5B3CAFFA472645E5D /* RNVectorIcons-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNVectorIcons-dummy.m"; sourceTree = ""; }; + 6CFA067283E1A30696863332A0466C9E /* RNFirebaseAnalytics.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNFirebaseAnalytics.h; sourceTree = ""; }; + 6D0F44C460371DD08D55A8C00E471B1D /* EXCameraPermissionRequester.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXCameraPermissionRequester.m; path = EXPermissions/EXCameraPermissionRequester.m; sourceTree = ""; }; + 6D12EBF6E2A447CA627F61E05B923CFF /* RCTJavaScriptExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTJavaScriptExecutor.h; sourceTree = ""; }; + 6D1EAA12E2E5B41CA4D13AC9E480FB48 /* BSG_KSCrashSentry_Signal.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSCrashSentry_Signal.c; sourceTree = ""; }; + 6D2763003E8CCA2E51AFD45211947284 /* react-native-orientation-locker-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "react-native-orientation-locker-dummy.m"; sourceTree = ""; }; + 6D296FCDD2DBB71E85283EA9421D7052 /* React-RCTSettings-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-RCTSettings-dummy.m"; sourceTree = ""; }; + 6D58BF93363CAA6D35899BE155CACB47 /* RCTProgressViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTProgressViewManager.m; sourceTree = ""; }; + 6D71BCAE7FB8CA2B29CA93BC9C79DC4E /* RCTSpringAnimation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSpringAnimation.h; sourceTree = ""; }; 6D7591D0402DD814820F0F732E55134A /* FBLPromise+All.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "FBLPromise+All.m"; path = "Sources/FBLPromises/FBLPromise+All.m"; sourceTree = ""; }; - 6D89AF8CB73F0475A009662F3DD61F7B /* JSIExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = JSIExecutor.h; path = jsireact/JSIExecutor.h; sourceTree = ""; }; + 6D7ED3AC941C8C83AA4EA061C458DE4F /* RCTConvert.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTConvert.h; sourceTree = ""; }; 6D8BCB824FD16FFB5D40146868CEB425 /* 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 = ""; }; 6D9558B896F99A90A93DC099BD7C8D88 /* UIButton+WebCache.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIButton+WebCache.m"; path = "SDWebImage/Core/UIButton+WebCache.m"; sourceTree = ""; }; - 6DAB1A43C38395471FDF552B91A4D720 /* RNFirebaseAnalytics.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNFirebaseAnalytics.h; sourceTree = ""; }; - 6DB473DE49C64A907CF7780073D75D5C /* YGConfig.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YGConfig.h; path = yoga/YGConfig.h; sourceTree = ""; }; 6DBFEEEE8490B0AEC5A93E092F2857A5 /* GDTCOREventTransformer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCOREventTransformer.h; path = GoogleDataTransport/GDTCORLibrary/Public/GDTCOREventTransformer.h; sourceTree = ""; }; - 6DDEE36481C60BAD50A38AAAA55A85A5 /* RCTMessageThread.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTMessageThread.h; sourceTree = ""; }; - 6DE41CADA0EFE626471B9B571B7B4216 /* RCTFPSGraph.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTFPSGraph.m; sourceTree = ""; }; + 6DD940FCA0BB42B3DA944B21DCFB0B6E /* QBImagePicker.storyboard */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = file.storyboard; name = QBImagePicker.storyboard; path = ios/QBImagePicker/QBImagePicker/QBImagePicker.storyboard; sourceTree = ""; }; 6E1351AE14BC4DCE7B93E301AA99026B /* FBLPromise.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBLPromise.h; path = Sources/FBLPromises/include/FBLPromise.h; sourceTree = ""; }; 6E2CDB4C30DCF3C644EBFB1CB6F8B63C /* utils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = utils.h; path = src/utils/utils.h; sourceTree = ""; }; - 6E357D07D0B62149CB54E4BBC7C1892A /* RCTVirtualTextViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTVirtualTextViewManager.m; sourceTree = ""; }; - 6E35D717020D8896440BE519CB959D0C /* JSDeltaBundleClient.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = JSDeltaBundleClient.h; sourceTree = ""; }; - 6E45F889C3FE17736E3EF7B34177B638 /* BSG_KSSysCtl.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSSysCtl.c; sourceTree = ""; }; - 6E642E8C45F4DDCA17F861D8A17C467A /* REATransitionValues.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REATransitionValues.h; sourceTree = ""; }; - 6E6A672E9A3FA7D268468391B2D726AE /* 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; }; - 6E887F6BE53835287D1AB305304DB272 /* RCTBaseTextInputView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTBaseTextInputView.m; sourceTree = ""; }; - 6E9218532103C4522A6F7D4ECCBAC4E6 /* UMConstantsInterface.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMConstantsInterface.xcconfig; sourceTree = ""; }; - 6EC0ECDD792E8CC42416EED2EF4A3DEE /* RNBootSplash.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNBootSplash.m; path = ios/RNBootSplash.m; sourceTree = ""; }; + 6E2DF60F0AFEF13D4B6A472E39DB3AC2 /* RCTConvert+ART.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "RCTConvert+ART.m"; path = "ios/RCTConvert+ART.m"; sourceTree = ""; }; + 6E81FABE2BD798CF26BA5C238122815E /* RNCCameraRollManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCCameraRollManager.m; path = ios/RNCCameraRollManager.m; sourceTree = ""; }; + 6E992CC08AE1065016A7F5DA77C6120E /* RCTSegmentedControl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSegmentedControl.h; sourceTree = ""; }; + 6ECBB2ECFCC801807C5BF343D6867656 /* BugsnagSession.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagSession.h; sourceTree = ""; }; 6ECC10905A36138211973FA8BFF62640 /* UIImage+Metadata.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIImage+Metadata.m"; path = "SDWebImage/Core/UIImage+Metadata.m"; sourceTree = ""; }; - 6ECFC60A45F1703154D991BEA5BA1344 /* ARTSurfaceView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ARTSurfaceView.h; path = ios/ARTSurfaceView.h; sourceTree = ""; }; - 6EDBB32D68D52D326D16685BF00251BB /* react-native-notifications-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "react-native-notifications-dummy.m"; sourceTree = ""; }; 6F2B281A5C5A6DA83EEDED90A470812A /* pb_encode.c */ = {isa = PBXFileReference; includeInIndex = 1; path = pb_encode.c; sourceTree = ""; }; - 6F590C8C8F2CDC014E2AEA8B6412375D /* RCTUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTUtils.h; sourceTree = ""; }; - 6F6EB58B2C2940D1942E88C0C077E219 /* RCTDivisionAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTDivisionAnimatedNode.m; sourceTree = ""; }; - 6F779C63F901699AAD271415114C2F4D /* RNNativeViewHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNNativeViewHandler.h; sourceTree = ""; }; + 6F2DFE5CDE79A7E8F7E1D090C440DEBB /* RCTMaskedViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTMaskedViewManager.h; sourceTree = ""; }; + 6F30B4F4430BD17B16926BAD7E92BE0F /* RCTDevMenu.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTDevMenu.m; sourceTree = ""; }; + 6F3E4946951354BBAC9A7623C9A9F773 /* RNFetchBlob.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNFetchBlob.h; sourceTree = ""; }; 6F8611F8EC76BA0AD83706FBD552AEFF /* SDWebImageManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageManager.h; path = SDWebImage/Core/SDWebImageManager.h; sourceTree = ""; }; + 6FA8A402A2AD70D9944B47FAAB7ED5A0 /* UMDefines.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMDefines.h; path = UMCore/UMDefines.h; sourceTree = ""; }; 6FAC32E62B1F1A5CF4B7035D16475866 /* FBLPromise+All.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FBLPromise+All.h"; path = "Sources/FBLPromises/include/FBLPromise+All.h"; sourceTree = ""; }; - 6FC55A8B0E9B17572A9A3BF223B8133F /* JSIDynamic.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = JSIDynamic.cpp; sourceTree = ""; }; - 6FD384724CB3E86D404BF9A0B4D0B73C /* RNDateTimePicker.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RNDateTimePicker.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - 6FF5CBC39AD3F139106C225552621DBB /* RCTEventDispatcher.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTEventDispatcher.h; sourceTree = ""; }; - 6FF771E6C2A8C52C88A59F2DCD024103 /* ARTNodeManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = ARTNodeManager.h; sourceTree = ""; }; + 6FAD7EF1B8A1AF83416EDBA8A7109925 /* RCTManagedPointer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTManagedPointer.h; sourceTree = ""; }; 6FFB7B2992BB53405E6B771A5BA1E97D /* libDoubleConversion.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libDoubleConversion.a; path = libDoubleConversion.a; sourceTree = BUILT_PRODUCTS_DIR; }; 6FFD07CA8CC396C11428C8593FC6E959 /* SDDisplayLink.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDDisplayLink.h; path = SDWebImage/Private/SDDisplayLink.h; sourceTree = ""; }; - 7013E12ADB40FFBABED4D9A87E97E663 /* RCTProgressViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTProgressViewManager.h; sourceTree = ""; }; - 705DD6F2C62BAB2F610B2260F24815BB /* experiments.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = experiments.cpp; sourceTree = ""; }; - 7061F23193E7B4E0C91B0D98949730ED /* RCTFont.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTFont.h; sourceTree = ""; }; - 709C8882F69906A0672BF3CEC304D897 /* BSG_KSCrashReport.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashReport.h; sourceTree = ""; }; - 70B951976ED7FB041821BB7F2D799980 /* RCTSurfaceRootView.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTSurfaceRootView.mm; sourceTree = ""; }; + 7027216DD776EAA9FFAA199D0A6B3694 /* EXHapticsModule.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXHapticsModule.m; path = EXHaptics/EXHapticsModule.m; sourceTree = ""; }; + 703A3630970263830B7E7C356A213B02 /* RCTUIManagerObserverCoordinator.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTUIManagerObserverCoordinator.mm; sourceTree = ""; }; + 705C70FE93E9DA65A365408D2A5F7783 /* RNFetchBlobProgress.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNFetchBlobProgress.h; path = ios/RNFetchBlobProgress.h; sourceTree = ""; }; + 7069C2C936229A00CE1EFCE2C0FEC1C9 /* RNFirebaseAdMobRewardedVideo.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNFirebaseAdMobRewardedVideo.m; sourceTree = ""; }; 70BF969C7EE75D6BABCC43461AAEF644 /* SDImageLoader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageLoader.h; path = SDWebImage/Core/SDImageLoader.h; sourceTree = ""; }; - 70C97587CC22DFF7A5BD633A38CBCC75 /* React-jsinspector-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-jsinspector-prefix.pch"; sourceTree = ""; }; - 70E6E5EDD941810DD75AC29CC64C8F9F /* QBSlomoIconView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = QBSlomoIconView.h; path = ios/QBImagePicker/QBImagePicker/QBSlomoIconView.h; sourceTree = ""; }; - 7110E2F65494A326F44479E0E02B9EA6 /* Yoga.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Yoga.h; path = yoga/Yoga.h; sourceTree = ""; }; 7121DEBABF2BDFF8481B59788B8C759F /* FIRInstanceIDAPNSInfo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstanceIDAPNSInfo.h; path = Firebase/InstanceID/FIRInstanceIDAPNSInfo.h; sourceTree = ""; }; - 7130E8836E6922C737FF3F3F35012540 /* RNPinchHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNPinchHandler.m; sourceTree = ""; }; - 713E263D198D4BE5838D651E97DB659E /* FBLazyVector.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBLazyVector.h; path = FBLazyVector/FBLazyVector.h; sourceTree = ""; }; - 7188C8580CBA0C711AA79464E037CB04 /* RCTDevMenu.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTDevMenu.h; sourceTree = ""; }; - 718D59D6F078BD382B50DE82EAEB46F5 /* EXCameraRollRequester.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXCameraRollRequester.m; path = EXPermissions/EXCameraRollRequester.m; sourceTree = ""; }; - 7218C82D3C00413556C771B6B7FC1644 /* RCTDecayAnimation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTDecayAnimation.h; sourceTree = ""; }; - 7229F900D342839BC98BB24AA62C9250 /* UIImage+Resize.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIImage+Resize.m"; path = "ios/src/UIImage+Resize.m"; sourceTree = ""; }; - 7244EC3F0088EEE398FD38601A9F75B3 /* KeyCommands.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = KeyCommands.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 714C991B3E7AA83F25BCF7A32B980C87 /* REABlockNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REABlockNode.m; sourceTree = ""; }; + 716421CC6BDFD365A8FA8541CF195B56 /* RCTCxxModule.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTCxxModule.mm; sourceTree = ""; }; + 71789EFDC650C275DC69DEA233F72AF0 /* RCTBridgeModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBridgeModule.h; sourceTree = ""; }; + 718C0BCCD01612A70B7757E88AA0B55B /* RCTAnimatedImage.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTAnimatedImage.m; sourceTree = ""; }; + 71BFB63846D90EC9F35997A234EA80E1 /* react-native-cameraroll-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "react-native-cameraroll-dummy.m"; sourceTree = ""; }; + 71DA3D9D1CD248E7C6FB7891802684D8 /* CoreModulesPlugins.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CoreModulesPlugins.h; path = React/CoreModules/CoreModulesPlugins.h; sourceTree = ""; }; + 721BA4EE83EB340B197C62BF7B548E36 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; 726CEC5D657E14C2D28E2608DB007104 /* SDWebImageError.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageError.h; path = SDWebImage/Core/SDWebImageError.h; sourceTree = ""; }; 726D3479A42B94820104FFB82565ADF8 /* 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 = ""; }; - 727CEE8714BE477B78EB5D7A42995117 /* REAEventNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REAEventNode.m; sourceTree = ""; }; 7290A8B4E4F31EF8E2A4BB18F88F59D6 /* libwebp-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "libwebp-dummy.m"; sourceTree = ""; }; - 7295D565E10FC4EBE263B4FC70983CB5 /* BSGOutOfMemoryWatchdog.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSGOutOfMemoryWatchdog.h; sourceTree = ""; }; - 72D4F5F1BEF3C9DB9A518DCD538F01B7 /* RCTModuleMethod.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTModuleMethod.mm; sourceTree = ""; }; + 72934FFA26AD7BB259682341C8E185F2 /* RCTInspectorDevServerHelper.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTInspectorDevServerHelper.mm; sourceTree = ""; }; + 72ADF40F856EAD8F2DB2F5F46F74402F /* RCTTouchHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTTouchHandler.m; sourceTree = ""; }; 72DE4BF3FB9CE0858E90F96FEF8A53AE /* libRNDateTimePicker.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libRNDateTimePicker.a; path = libRNDateTimePicker.a; sourceTree = BUILT_PRODUCTS_DIR; }; 72E494917AC5EC2582197F07061A28B0 /* libEXPermissions.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libEXPermissions.a; path = libEXPermissions.a; sourceTree = BUILT_PRODUCTS_DIR; }; + 72F03E034D294C2CF30D399AB335A031 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; 72F2F55C8488AA7450E778BF58AD47EB /* common_dec.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = common_dec.h; path = src/dec/common_dec.h; sourceTree = ""; }; - 7306C3037928E2C16AEB0951B479DE3D /* React.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = React.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - 732F4DE0B320FE0CFE1BE269D83906DF /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; - 7337293FD1684C954BC628530DC505DC /* RCTImageViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTImageViewManager.m; sourceTree = ""; }; - 73660DB3B546183E563BF37F42573BBB /* RNCAppearanceProvider.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCAppearanceProvider.m; path = ios/Appearance/RNCAppearanceProvider.m; sourceTree = ""; }; - 737D44EB3F6D1D1D886B07AB172805FF /* BSG_KSCrashType.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSCrashType.c; sourceTree = ""; }; - 738F518B34C8D629773F9B375F031C50 /* SRError.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = SRError.h; sourceTree = ""; }; - 739DF972DF173022E45FEDC9704EC4DC /* RNFirebaseFirestoreDocumentReference.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNFirebaseFirestoreDocumentReference.m; sourceTree = ""; }; + 7307278DBE57A51CD085E513C3C64E1D /* BSG_KSMach_x86_64.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSMach_x86_64.c; sourceTree = ""; }; + 73217AEE8BFBF443544995432E5010DF /* RNFirebaseRemoteConfig.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNFirebaseRemoteConfig.m; sourceTree = ""; }; + 73B37AC4B9C33052FBC9BC1B903457AF /* RCTNativeAnimatedNodesManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTNativeAnimatedNodesManager.m; sourceTree = ""; }; + 73C308790036FB49D5ADCBBC8E8C973C /* RNLocalize-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNLocalize-prefix.pch"; sourceTree = ""; }; 73D1E0BDB42EE2F595BCB0C3E231490F /* upsampling_mips_dsp_r2.c */ = {isa = PBXFileReference; includeInIndex = 1; name = upsampling_mips_dsp_r2.c; path = src/dsp/upsampling_mips_dsp_r2.c; sourceTree = ""; }; - 73D7AE12BEA376704153BD1412CA216F /* UMConstantsInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMConstantsInterface.h; path = UMConstantsInterface/UMConstantsInterface.h; sourceTree = ""; }; 73DF275591A289869A037B732ACCE445 /* FIRComponent.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRComponent.m; path = FirebaseCore/Sources/FIRComponent.m; sourceTree = ""; }; 73F8A95B79671F501F31EA4F1D04AA8B /* libReact-RCTActionSheet.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libReact-RCTActionSheet.a"; path = "libReact-RCTActionSheet.a"; sourceTree = BUILT_PRODUCTS_DIR; }; - 742AD571C5BE761827EEF22146A46463 /* RNSScreenStackHeaderConfig.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNSScreenStackHeaderConfig.h; path = ios/RNSScreenStackHeaderConfig.h; sourceTree = ""; }; - 742CD800500758D4594804D6A9BD6C26 /* RNDateTimePicker.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNDateTimePicker.m; path = ios/RNDateTimePicker.m; sourceTree = ""; }; + 7413A1DC52576787DEA98E670555F79C /* RCTAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTAnimatedNode.m; sourceTree = ""; }; 742DA574AD9989337C7A051B2C2DC52F /* CLSLogging.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CLSLogging.h; path = iOS/Crashlytics.framework/Headers/CLSLogging.h; sourceTree = ""; }; - 744F74F47B727F2059D95906EDD0C441 /* react-native-keyboard-tracking-view.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "react-native-keyboard-tracking-view.xcconfig"; sourceTree = ""; }; 746D3D964458B43BFFB90666578396AE /* FirebaseCoreDiagnostics.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = FirebaseCoreDiagnostics.xcconfig; sourceTree = ""; }; 7480B7F4FAB96A496173DE0E7C617B9C /* SDImageCoderHelper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageCoderHelper.h; path = SDWebImage/Core/SDImageCoderHelper.h; sourceTree = ""; }; - 74F4379011B30183DCE324FB2DB5EEA0 /* RNFirebaseRemoteConfig.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNFirebaseRemoteConfig.h; sourceTree = ""; }; - 75380D94FBDE690CE5653BE9793E3C9F /* UMFilePermissionModuleInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMFilePermissionModuleInterface.h; path = UMFileSystemInterface/UMFilePermissionModuleInterface.h; sourceTree = ""; }; - 7545290814D33E29EB6A3B14B9EEA817 /* RCTFileRequestHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTFileRequestHandler.h; path = Libraries/Network/RCTFileRequestHandler.h; sourceTree = ""; }; - 7547CF1649325803E5235EA43DE8F1FA /* EXCalendarRequester.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXCalendarRequester.h; path = EXPermissions/EXCalendarRequester.h; sourceTree = ""; }; + 74C7C7995009FC19E1BAABE1ADEDF07D /* LICENSE.md */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE.md; sourceTree = ""; }; + 74DE877035EE74EB44D5D03BB75BD898 /* RCTBlobManager.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTBlobManager.mm; sourceTree = ""; }; + 750DD532C8AE4CEEA27C7E2878D44B91 /* RNFastImage-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNFastImage-prefix.pch"; sourceTree = ""; }; + 750F08B5CAD7FE8C0ADA4879A3D39F4F /* RCTPerformanceLogger.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTPerformanceLogger.m; sourceTree = ""; }; + 752BD0A5AB53CE88B7070B52814F58A9 /* ARTBrush.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = ARTBrush.h; sourceTree = ""; }; + 753710D90975AC53075478A5BA9CC7A0 /* RCTImageView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTImageView.m; sourceTree = ""; }; 754C1763718FE74C32CF806FF8384D33 /* vp8i_enc.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = vp8i_enc.h; path = src/enc/vp8i_enc.h; sourceTree = ""; }; - 7558AAEC6638C6317A6697695760FDF2 /* UMModuleRegistryAdapter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMModuleRegistryAdapter.h; sourceTree = ""; }; - 75BF1FF4B1F8B5EAD5AFAED5A3CE7E71 /* RNLocalize.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNLocalize.h; path = ios/RNLocalize.h; sourceTree = ""; }; - 75D12281C83ADCB38906BD4B4B0EBAE5 /* BugsnagMetaData.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagMetaData.h; sourceTree = ""; }; - 75DE09E0918C540F371EFBD969D982CB /* RNFlingHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNFlingHandler.m; sourceTree = ""; }; + 75555A22B90D962584B057CB428246BF /* RCTTextShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTTextShadowView.m; sourceTree = ""; }; + 7599B6818B2DFB53AA2DF81D2AD102BF /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; + 759BC504286B8CCE97EFEF1740983CDB /* RCTFrameUpdate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTFrameUpdate.h; sourceTree = ""; }; + 75E8305AA087EEF6B9784DC22E9C8DF6 /* EXUserNotificationRequester.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXUserNotificationRequester.m; path = EXPermissions/EXUserNotificationRequester.m; sourceTree = ""; }; 75E84073A3FF1C0075C2A143F4BBA591 /* Crashlytics.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = Crashlytics.xcconfig; sourceTree = ""; }; - 75EFBF9D5923028C61D053781FC48840 /* RCTImageShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTImageShadowView.m; sourceTree = ""; }; + 75E916C11B117641ADC4295D0929A1F3 /* RCTInputAccessoryViewContent.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTInputAccessoryViewContent.h; sourceTree = ""; }; + 75FF3E83DCCF979DB9AFA4E36A6E0F5A /* BSG_KSCrashReportStore.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashReportStore.h; sourceTree = ""; }; + 7608F2915FB57D2BB6CBBFF2BBBF2BD2 /* REATransitionAnimation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REATransitionAnimation.h; sourceTree = ""; }; 760D77A4F668A9C3F29BC76736A73378 /* GULUserDefaults.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GULUserDefaults.m; path = GoogleUtilities/UserDefaults/GULUserDefaults.m; sourceTree = ""; }; - 760E084FF9253B90AE10648B74D95FC4 /* BridgeJSCallInvoker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = BridgeJSCallInvoker.h; path = jscallinvoker/ReactCommon/BridgeJSCallInvoker.h; sourceTree = ""; }; 7612B1F9763549EA1DC383D43FC8950C /* SDImageAPNGCoder.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageAPNGCoder.m; path = SDWebImage/Core/SDImageAPNGCoder.m; sourceTree = ""; }; 76248F9402D4DD786D6A8E7AA04A7A4C /* GULSecureCoding.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GULSecureCoding.m; path = GoogleUtilities/Environment/GULSecureCoding.m; sourceTree = ""; }; 762B0734C882B680C9D971AF79E220CA /* huffman_encode_utils.c */ = {isa = PBXFileReference; includeInIndex = 1; name = huffman_encode_utils.c; path = src/utils/huffman_encode_utils.c; sourceTree = ""; }; - 7639B6DBE98AE5D9CBE69749C5D1778D /* BSG_KSMach.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSMach.c; sourceTree = ""; }; - 76509F80046098BB4EDA1201032468F5 /* RCTAdditionAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTAdditionAnimatedNode.m; sourceTree = ""; }; + 7630ACAF66A3CD79E1A14EA3B8C1AC18 /* RCTTypeSafety-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RCTTypeSafety-prefix.pch"; sourceTree = ""; }; + 7649EAE55724A02D5F081AB53C472E2B /* YGFloatOptional.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YGFloatOptional.h; path = yoga/YGFloatOptional.h; sourceTree = ""; }; + 76638DE53EA41247279955B228624F23 /* EXFileSystem-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "EXFileSystem-prefix.pch"; sourceTree = ""; }; + 766CA1058BE46DE35D0DD26733077C9A /* ARTTextManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = ARTTextManager.m; sourceTree = ""; }; + 7684A18650D3B2D033100F486776AFDA /* 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; }; 76870B32976CD2CF19434FE44E4DAB9E /* SDWebImageOptionsProcessor.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWebImageOptionsProcessor.m; path = SDWebImage/Core/SDWebImageOptionsProcessor.m; sourceTree = ""; }; - 76AB9524CEC8C7CB522460DD471D2306 /* UMReactFontManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = UMReactFontManager.m; sourceTree = ""; }; - 76ACAEE07AAD4EE346C18B5E6D45F650 /* RNLocalize.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNLocalize.m; path = ios/RNLocalize.m; sourceTree = ""; }; 76B1D8152D1957AC23B75A79D58FDEB3 /* CLSReport.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CLSReport.h; path = iOS/Crashlytics.framework/Headers/CLSReport.h; sourceTree = ""; }; - 76B5651EA6DE6613FE7E753B399C8BEE /* ARTRenderable.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = ARTRenderable.m; path = ios/ARTRenderable.m; sourceTree = ""; }; - 76E3BEE6C45E5FC9D34998122A49EB31 /* ios_date.png */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = image.png; name = ios_date.png; path = docs/images/ios_date.png; sourceTree = ""; }; - 76EFAA94897818485AB8BCB45E7E7E33 /* ARTTextManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = ARTTextManager.h; sourceTree = ""; }; + 76B317AF8011752CEE734A75AD464778 /* RCTInputAccessoryView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTInputAccessoryView.m; sourceTree = ""; }; + 76C889C2773FF8E6395422F9314FE86C /* RNRootView-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNRootView-dummy.m"; sourceTree = ""; }; 77028BA581AF00AEF7C147D7449E82B9 /* FIRInstanceIDURLQueryItem.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstanceIDURLQueryItem.h; path = Firebase/InstanceID/FIRInstanceIDURLQueryItem.h; sourceTree = ""; }; - 770686229D678BD8D17B9C3C4103774E /* RCTProfile.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTProfile.h; sourceTree = ""; }; - 770EC53C8416C142407CC52EF9EBA6EC /* RCTKeyboardObserver.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTKeyboardObserver.h; sourceTree = ""; }; - 772F6B311F16BD718B2669568126CA43 /* RNFetchBlobConst.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNFetchBlobConst.h; path = ios/RNFetchBlobConst.h; sourceTree = ""; }; - 7779A9A102DBCAA3E0F0B0C8BB64547A /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; - 77D1EFFC13571D9E286934ED8C679C69 /* RCTComponentData.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTComponentData.h; sourceTree = ""; }; - 78226B90A8A085985631BF6A9FF9FB77 /* ReactCommon-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "ReactCommon-prefix.pch"; sourceTree = ""; }; - 78275978BD2BABAC8C587CE4FAB3E31E /* RCTAutoInsetsProtocol.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTAutoInsetsProtocol.h; sourceTree = ""; }; + 770F0748043B114DAA49F3A3DA41B58F /* RNFirebaseAuth.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNFirebaseAuth.h; sourceTree = ""; }; + 773C4737DCF8345231C8970E43584802 /* EXKeepAwake.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = EXKeepAwake.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 773F03AC502D02B75772D11C2745FDC5 /* BugsnagReactNative.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = BugsnagReactNative.h; path = cocoa/BugsnagReactNative.h; sourceTree = ""; }; + 775A89C79ECDEA9FB87A4A55C040B4B4 /* RNFetchBlobReqBuilder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNFetchBlobReqBuilder.h; path = ios/RNFetchBlobReqBuilder.h; sourceTree = ""; }; + 779AAC453F8FB8A7223C104D0BE1C314 /* EXFileSystem.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXFileSystem.m; path = EXFileSystem/EXFileSystem.m; sourceTree = ""; }; + 77BDB2B59A28D75A91261233C42ABC37 /* ARTShapeManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = ARTShapeManager.h; sourceTree = ""; }; + 77BF86CD83A4F1DED5398B8BFBED3A9F /* TurboModuleUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TurboModuleUtils.h; path = turbomodule/core/TurboModuleUtils.h; sourceTree = ""; }; + 77D68116CBB0F3E14F0F7342A3EECFEE /* BSG_KSMach.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSMach.h; sourceTree = ""; }; + 77FCC32F6B908133422A8A76316F670F /* experiments-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "experiments-inl.h"; sourceTree = ""; }; 782DC576EA301487BA3AFF6CDF22C7F0 /* enc_msa.c */ = {isa = PBXFileReference; includeInIndex = 1; name = enc_msa.c; path = src/dsp/enc_msa.c; sourceTree = ""; }; - 7844F48521E98E1AE880D2D82021135B /* RCTSRWebSocket.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTSRWebSocket.h; path = Libraries/WebSocket/RCTSRWebSocket.h; sourceTree = ""; }; - 785DDA99E0152C2C12DBC98A5280D09B /* RCTKeyCommandsManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCTKeyCommandsManager.m; path = ios/KeyCommands/RCTKeyCommandsManager.m; sourceTree = ""; }; - 7863585CD0E852336E86A78D380423EB /* RCTSurfaceRootShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSurfaceRootShadowView.h; sourceTree = ""; }; - 78A4BBFBE5C6E1EBCCE0514E27C2969A /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; + 7869A461BD6132F04E28CDA4F8DA98A5 /* rn-fetch-blob-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "rn-fetch-blob-dummy.m"; sourceTree = ""; }; + 78991A732BB73FFE5BC236FB7E8B31C5 /* api.md */ = {isa = PBXFileReference; includeInIndex = 1; name = api.md; path = docs/api.md; sourceTree = ""; }; 78A5E4508694C25663685CE163B7A18D /* GDTCORReachability.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCORReachability.h; path = GoogleDataTransport/GDTCORLibrary/Private/GDTCORReachability.h; sourceTree = ""; }; - 78BAA33EEE4F30D6800E9C7F64361E60 /* FFFastImageSource.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FFFastImageSource.m; path = ios/FastImage/FFFastImageSource.m; sourceTree = ""; }; 78D16CA96B3633E9D5C63D2D8DEB3AFD /* GDTCORRegistrar_Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCORRegistrar_Private.h; path = GoogleDataTransport/GDTCORLibrary/Private/GDTCORRegistrar_Private.h; sourceTree = ""; }; - 78D342071E9E74C51583CF6979E97A94 /* JSBundleType.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = JSBundleType.h; sourceTree = ""; }; 78E05B5B4544D8C74092E8B0982CF77B /* dec.c */ = {isa = PBXFileReference; includeInIndex = 1; name = dec.c; path = src/dsp/dec.c; sourceTree = ""; }; - 78EF57B0FD05E69C407FC6D8EC28A634 /* BugsnagHandledState.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagHandledState.h; sourceTree = ""; }; - 790BF37E8DCA4A70465007F505BC0CD3 /* UMFaceDetectorManagerProvider.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMFaceDetectorManagerProvider.h; path = UMFaceDetectorInterface/UMFaceDetectorManagerProvider.h; sourceTree = ""; }; - 798A174BEBFBCEDE4CCADAB3BEE72722 /* UMBarCodeScannerInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMBarCodeScannerInterface.h; path = UMBarCodeScannerInterface/UMBarCodeScannerInterface.h; sourceTree = ""; }; - 799A090E58929BD48D329F145571CE6F /* BSG_KSCrashSentry_CPPException.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSCrashSentry_CPPException.mm; sourceTree = ""; }; - 799E4AB53FE5402E6BCB30E200986637 /* UMKernelService.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMKernelService.h; sourceTree = ""; }; - 79A5C32FF86A7E02BD42FA055AFDB39B /* React-RCTActionSheet.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-RCTActionSheet.xcconfig"; sourceTree = ""; }; - 79B0D89C8F3ADE40B1ADE99C4E53F538 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; - 79D41FD2877BB095503E0BE5D805D440 /* React-RCTText-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-RCTText-prefix.pch"; sourceTree = ""; }; - 79F474346C43F93D7D10AF94FA30C332 /* ARTNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ARTNode.h; path = ios/ARTNode.h; sourceTree = ""; }; - 79F723683ACCA77DB181F8F4D1D69975 /* RAMBundleRegistry.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RAMBundleRegistry.h; sourceTree = ""; }; - 7A42EA128B624DE465416479D0357F46 /* BSG_KSString.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSString.h; sourceTree = ""; }; - 7A5D6A5AB38FAF86E652DF4E0E7D838C /* RCTLayoutAnimationGroup.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTLayoutAnimationGroup.h; sourceTree = ""; }; - 7A9ED89D8D773020586E954726458DC3 /* EXDownloadDelegate.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXDownloadDelegate.m; path = EXFileSystem/EXDownloadDelegate.m; sourceTree = ""; }; + 7920E4EE1AF2799AAAF18E57AA42039D /* React-jsi-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-jsi-dummy.m"; sourceTree = ""; }; + 7928F1A3A47C5E892B5A7935B9EA2F9D /* RNNotificationEventHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNNotificationEventHandler.m; path = RNNotifications/RNNotificationEventHandler.m; sourceTree = ""; }; + 79485D2A427D73525846B5A7223C5550 /* RCTMultilineTextInputView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTMultilineTextInputView.m; sourceTree = ""; }; + 7A162754FC5CA1F3447684BE99181C94 /* ARTPattern.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = ARTPattern.h; sourceTree = ""; }; + 7A203F197885C11C5848610C607A893E /* RCTScrollContentViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTScrollContentViewManager.h; sourceTree = ""; }; + 7A2423EA63851EBA3580D9490B341C4C /* RCTEventEmitter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTEventEmitter.m; sourceTree = ""; }; + 7A2C11ACF77F677DD3C30F29704F4D84 /* REAOperatorNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REAOperatorNode.m; sourceTree = ""; }; + 7A3DF1388CCFE08E5E3B3581FE47323C /* RNUserDefaults.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNUserDefaults.m; path = ios/RNUserDefaults.m; sourceTree = ""; }; + 7A47CD394AF66313A739E2111BCD7D5E /* ReactNativeShareExtension.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ReactNativeShareExtension.h; path = ios/ReactNativeShareExtension.h; sourceTree = ""; }; + 7A90C571E8724574D71484C0877FFDC1 /* FontAwesome.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = FontAwesome.ttf; path = Fonts/FontAwesome.ttf; sourceTree = ""; }; + 7A9136379DFD481947CF714DDCB0ADCF /* IOS7Polyfill.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = IOS7Polyfill.h; path = ios/IOS7Polyfill.h; sourceTree = ""; }; 7AB2ABB19DF260BF726A2A7DE50BB0C7 /* enc_neon.c */ = {isa = PBXFileReference; includeInIndex = 1; name = enc_neon.c; path = src/dsp/enc_neon.c; sourceTree = ""; }; + 7AB72F5B5DA6225824815B0185F60C6A /* RCTInspectorDevServerHelper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTInspectorDevServerHelper.h; sourceTree = ""; }; + 7ABA58BBBF42A4CEBCEDF8B50AB93EE5 /* RCTNativeAnimatedNodesManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTNativeAnimatedNodesManager.h; path = Libraries/NativeAnimation/RCTNativeAnimatedNodesManager.h; sourceTree = ""; }; 7AE11FC733D32808154EE0C7975D70AD /* SDImageCacheDefine.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageCacheDefine.m; path = SDWebImage/Core/SDImageCacheDefine.m; sourceTree = ""; }; - 7B012D0B2BC77634C8BF32EF8409BE7C /* RCTConvert+Text.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RCTConvert+Text.m"; sourceTree = ""; }; - 7B0E3D03DB412ECDC746F6D3E36C8209 /* UMEventEmitter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMEventEmitter.h; sourceTree = ""; }; - 7B1AEBC36E945E0A48D186FC8822FD79 /* JSIDynamic.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = JSIDynamic.h; sourceTree = ""; }; + 7AE12C2C3A51F89888D41C6DB6D5CD05 /* RNDeviceInfo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNDeviceInfo.h; path = ios/RNDeviceInfo/RNDeviceInfo.h; sourceTree = ""; }; + 7AF3BD1A9F7EC671AB4355057ED5C34F /* EXHapticsModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXHapticsModule.h; path = EXHaptics/EXHapticsModule.h; sourceTree = ""; }; + 7AFE840E1045C8967A28B8568B57C019 /* NSValue+Interpolation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "NSValue+Interpolation.h"; sourceTree = ""; }; + 7B1A1C31EB9ECCADE2E4A1F54B864E52 /* RNUserDefaults.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNUserDefaults.xcconfig; sourceTree = ""; }; + 7B416D61CA87084064E2F42BD543B8AD /* BSGOutOfMemoryWatchdog.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BSGOutOfMemoryWatchdog.m; sourceTree = ""; }; 7B75AFFDAD90901B97B9F59583DB4E96 /* SDWebImageDownloaderResponseModifier.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageDownloaderResponseModifier.h; path = SDWebImage/Core/SDWebImageDownloaderResponseModifier.h; sourceTree = ""; }; - 7B85F7D90C71261D80F72379FBA1F2A0 /* RCTMaskedView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTMaskedView.h; sourceTree = ""; }; - 7BA456D90B2D1CBE37FDB4C1E430C2CE /* event.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = event.cpp; sourceTree = ""; }; - 7BA7673B877BA34B973FC61A6164F329 /* REATransitionAnimation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REATransitionAnimation.m; sourceTree = ""; }; + 7B7EB7E1FAEAD6D700871A354AEFEF52 /* RNRotationHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNRotationHandler.m; sourceTree = ""; }; + 7B95F2071F2159579CD2F412BD046134 /* EXWebBrowser.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXWebBrowser.h; path = EXWebBrowser/EXWebBrowser.h; sourceTree = ""; }; 7BC2EF7B3BFD238AB12617D31274CEF8 /* FIRInstanceIDStore.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstanceIDStore.m; path = Firebase/InstanceID/FIRInstanceIDStore.m; sourceTree = ""; }; - 7BC795C895152549297A14DC372AB624 /* RNPanHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNPanHandler.h; sourceTree = ""; }; - 7BC92B6305B0F86A7B63592C0D0C2A63 /* ARTSolidColor.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = ARTSolidColor.m; sourceTree = ""; }; - 7BF3632D791F4A5F714352EEA5B8D876 /* RNFetchBlobConst.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNFetchBlobConst.m; path = ios/RNFetchBlobConst.m; sourceTree = ""; }; - 7C00DDC862FBDCD3A594A7007F4DFE82 /* RCTSwitch.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSwitch.h; sourceTree = ""; }; - 7C06B16DEB3B50C5FE57E70B35BAEEAA /* 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; }; - 7C1C12709FFB7FFCEB53B912C600CBB5 /* RNPushKitEventListener.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNPushKitEventListener.h; path = RNNotifications/RNPushKitEventListener.h; sourceTree = ""; }; - 7C2A80E898E0D6260EE252324C57CEDB /* BSGSerialization.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSGSerialization.h; sourceTree = ""; }; - 7C6B7609643CEE2C7693A86610ACF888 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; + 7BFC19D11EB971B3CD362FBC620E2945 /* UMFontProcessorInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMFontProcessorInterface.h; path = UMFontInterface/UMFontProcessorInterface.h; sourceTree = ""; }; 7C78B03E18C3C58965E80B1E11C3CAC7 /* RSKInternalUtility.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RSKInternalUtility.m; path = RSKImageCropper/RSKInternalUtility.m; sourceTree = ""; }; - 7C8E6D93607F72E13CDAF077D9FF158E /* SimpleLineIcons.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = SimpleLineIcons.ttf; path = Fonts/SimpleLineIcons.ttf; sourceTree = ""; }; - 7CA46703A00BA4A9EF0DD355AEF5DD90 /* CompactValue.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CompactValue.h; path = yoga/CompactValue.h; sourceTree = ""; }; - 7CC02974A6FF92936716DE35746FEAF6 /* EXConstantsService.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXConstantsService.m; path = EXConstants/EXConstantsService.m; sourceTree = ""; }; - 7D0A8175214D7223329888CFADBEB2DB /* UMFontProcessorInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMFontProcessorInterface.h; path = UMFontInterface/UMFontProcessorInterface.h; sourceTree = ""; }; + 7C957AEEBE8732084F3E9060381BF81B /* YGLayout.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = YGLayout.cpp; path = yoga/YGLayout.cpp; sourceTree = ""; }; + 7CB85B01F73553314133E64ACC15CF01 /* React-RCTText-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-RCTText-dummy.m"; sourceTree = ""; }; + 7CDBCF3709FCB8AE98B0B388322F0A1B /* BugsnagKSCrashSysInfoParser.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagKSCrashSysInfoParser.h; sourceTree = ""; }; + 7D00C3CCD82FE1C5EADE820AC7100F0D /* RCTConvert+Transform.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RCTConvert+Transform.h"; sourceTree = ""; }; 7D0B134B634581BF0AB4FFB905334766 /* FirebaseInstallations.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FirebaseInstallations.h; path = FirebaseInstallations/Source/Library/Public/FirebaseInstallations.h; sourceTree = ""; }; - 7D1A7CE079C1DC6BB58EB51221259A9D /* SRIOConsumer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = SRIOConsumer.h; sourceTree = ""; }; - 7D440FB6D3CFF9DF0C9C7B3057F7E681 /* ARTRenderableManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = ARTRenderableManager.h; sourceTree = ""; }; - 7D62F07926EB11321F85BFCF3F01D921 /* jsi.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = jsi.cpp; sourceTree = ""; }; - 7D86090E6D592FBECD7C393F4B28C7CE /* android_date.png */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = image.png; name = android_date.png; path = docs/images/android_date.png; sourceTree = ""; }; + 7D4F40EF76DFB87B2423EBC0918751CA /* UMEventEmitter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMEventEmitter.h; sourceTree = ""; }; 7DA120FFE328161A90702286BAB6CDA6 /* FIRInstanceIDTokenOperation+Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FIRInstanceIDTokenOperation+Private.h"; path = "Firebase/InstanceID/FIRInstanceIDTokenOperation+Private.h"; sourceTree = ""; }; - 7DEB2FA8CEE41968D60F7D3E00E2C27D /* RCTInputAccessoryViewContent.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTInputAccessoryViewContent.m; sourceTree = ""; }; - 7DF887CBF4D13A271DF1EE41E5FC6A63 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; + 7DC5EB572EABEA087CB3C84B616E80E6 /* RCTCustomInputController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTCustomInputController.h; sourceTree = ""; }; + 7DCF83BC9FCCFF58A6A62DC6C927FF6A /* RCTBaseTextInputView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTBaseTextInputView.m; sourceTree = ""; }; + 7DCF8BDD417177D5E28DF72A21CD4051 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; + 7DE782C2BD00BB7546E6EC40C41AFC0C /* RCTSinglelineTextInputView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSinglelineTextInputView.h; sourceTree = ""; }; 7E1CF3BEFF840D7071D158D044A4E745 /* lossless_sse2.c */ = {isa = PBXFileReference; includeInIndex = 1; name = lossless_sse2.c; path = src/dsp/lossless_sse2.c; sourceTree = ""; }; - 7E561A083D82315E4BC4219566966904 /* RNGestureHandler.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNGestureHandler.xcconfig; sourceTree = ""; }; - 7E67FB467D3A4BA89B6579844BDB8F80 /* LICENSE.md */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE.md; sourceTree = ""; }; + 7E6DF9E6EA157EE86994776DB213ED2B /* RCTModuloAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTModuloAnimatedNode.m; sourceTree = ""; }; + 7E7E88F03D3F3406A06D39A891E38AC9 /* RNPushKit.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNPushKit.m; path = RNNotifications/RNPushKit.m; sourceTree = ""; }; 7E8C6A830011E9B4493E7F2FC363A651 /* tree_dec.c */ = {isa = PBXFileReference; includeInIndex = 1; name = tree_dec.c; path = src/dec/tree_dec.c; sourceTree = ""; }; 7EA24205E9A7B87800BCFEEC108BFF33 /* GoogleUtilities-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "GoogleUtilities-dummy.m"; sourceTree = ""; }; 7EAF77B51624F49BDB16C3865BA59750 /* SDImageIOAnimatedCoderInternal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageIOAnimatedCoderInternal.h; path = SDWebImage/Private/SDImageIOAnimatedCoderInternal.h; sourceTree = ""; }; - 7EB39C6BECE77FFF00736B171017BCE5 /* RNCSlider.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCSlider.m; path = ios/RNCSlider.m; sourceTree = ""; }; - 7EF317EA9A04BCA70761C1DBF2C695B1 /* React-Core.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-Core.xcconfig"; sourceTree = ""; }; - 7F2CF506F50A4850AF8B6B170ECDB2AD /* RCTRequired.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTRequired.h; path = RCTRequired/RCTRequired.h; sourceTree = ""; }; + 7EBCF5304126BB498ED1BF731DEC4263 /* EXConstants.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXConstants.h; path = EXConstants/EXConstants.h; sourceTree = ""; }; + 7ED3AF06321ED85BB28A9F1F6A54E2D9 /* RCTValueAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTValueAnimatedNode.m; sourceTree = ""; }; + 7EFA642ED657529977D8BECDB69C6552 /* EXPermissions.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = EXPermissions.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 7F0F532B3297A42FF404A00844692830 /* react-native-notifications-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "react-native-notifications-prefix.pch"; sourceTree = ""; }; 7F5EDA23D6D2D1ACE2F5DFFCB0B53C29 /* FBLPromise+Race.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FBLPromise+Race.h"; path = "Sources/FBLPromises/include/FBLPromise+Race.h"; sourceTree = ""; }; - 7F81908E4DF9C3A9AF198B988EACDA5C /* SystraceSection.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = SystraceSection.h; sourceTree = ""; }; - 7FB983A632C1D1A294AAF50E8BCD9BAD /* RCTDeviceInfo.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTDeviceInfo.m; sourceTree = ""; }; - 7FD575470A0B7D1917095D2248010239 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; + 7F7CCC85FE07D8D74A5D7CE9D9391E5A /* RCTProfile.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTProfile.h; sourceTree = ""; }; + 7FC023D83ABAA92FFB9931AF1FE58FEF /* RCTNativeAnimatedModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTNativeAnimatedModule.h; path = Libraries/NativeAnimation/RCTNativeAnimatedModule.h; sourceTree = ""; }; 7FE52EC86FAD6477499E13343ED2C1DF /* FIRAnalyticsConfiguration.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRAnalyticsConfiguration.m; path = FirebaseCore/Sources/FIRAnalyticsConfiguration.m; sourceTree = ""; }; 7FE80A0E5A04BEDCC2FE998068C2E8A5 /* GULLogger.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULLogger.h; path = GoogleUtilities/Logger/Private/GULLogger.h; sourceTree = ""; }; - 7FF5C0A072427E893DB4DACA1CDD0F75 /* RCTRefreshControl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTRefreshControl.h; sourceTree = ""; }; - 80089B9FD3693DFD1248F9C0449EC162 /* RNVectorIconsManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNVectorIconsManager.h; path = RNVectorIconsManager/RNVectorIconsManager.h; sourceTree = ""; }; + 7FE84E9CCD39E1BEA3AF2269A594416A /* RCTBlobManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTBlobManager.h; path = Libraries/Blob/RCTBlobManager.h; sourceTree = ""; }; + 800A2D79CB04CE030D338681CB99F701 /* RCTDatePickerManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTDatePickerManager.m; sourceTree = ""; }; + 8020DF33D4A3B23979E63205EDCA831D /* EXHaptics.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = EXHaptics.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; 802121F5B756ACBFDD6D08C36246DADD /* libReact-RCTLinking.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libReact-RCTLinking.a"; path = "libReact-RCTLinking.a"; sourceTree = BUILT_PRODUCTS_DIR; }; 8047865EF52BDB8F74E450253525FD98 /* SDImageIOAnimatedCoder.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageIOAnimatedCoder.m; path = SDWebImage/Core/SDImageIOAnimatedCoder.m; 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; }; - 8081042ECD3D41DE2D8C08B48D1047A9 /* FBLazyIterator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBLazyIterator.h; path = FBLazyVector/FBLazyIterator.h; sourceTree = ""; }; - 80A3D7CCF7C837F1775EE8CAD9A12200 /* RCTDefines.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTDefines.h; sourceTree = ""; }; + 809D7CFE1698363E3A4E0C2D465A00C2 /* RNSScreenStack.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNSScreenStack.m; path = ios/RNSScreenStack.m; sourceTree = ""; }; + 80A1D9D2947255CCB6980709B7867EA5 /* RCTSliderManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSliderManager.m; sourceTree = ""; }; 80A51B61FECFED8D1A0D95AAD32A2938 /* libEXHaptics.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libEXHaptics.a; path = libEXHaptics.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 80BC67BC45CE1085E5D602DD7A88F813 /* RCTActionSheetManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTActionSheetManager.m; sourceTree = ""; }; - 80EE4027DA88E06F0E9F7B1BC66E21A9 /* RCTTrackingAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTTrackingAnimatedNode.m; sourceTree = ""; }; - 812335310C7F9686CE3F564B7FA88E6F /* NSValue+Interpolation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "NSValue+Interpolation.h"; sourceTree = ""; }; + 80BDEA72FADCDD09F7EA4DB54EA2D491 /* RCTSurfaceStage.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSurfaceStage.h; sourceTree = ""; }; 812DCB2F8F49903836E6EBBDD65655F2 /* FBLPromise+Timeout.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FBLPromise+Timeout.h"; path = "Sources/FBLPromises/include/FBLPromise+Timeout.h"; sourceTree = ""; }; - 816E8087D0B4D4448E5E58682E2671EF /* REATransitionValues.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REATransitionValues.m; sourceTree = ""; }; + 8135E9B831B83589E003527B4B16340D /* QBSlomoIconView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = QBSlomoIconView.m; path = ios/QBImagePicker/QBImagePicker/QBSlomoIconView.m; sourceTree = ""; }; + 813E87FEFBBC0B1AFBCE06DF0029DCC2 /* RCTImageBlurUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageBlurUtils.h; path = Libraries/Image/RCTImageBlurUtils.h; sourceTree = ""; }; + 816C0B31B2C064EF1BD1EE2C047B6A44 /* BugsnagCrashReport.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagCrashReport.m; sourceTree = ""; }; + 8174553A704A3296A6EA492FEB5062E3 /* ARTNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = ARTNode.m; path = ios/ARTNode.m; sourceTree = ""; }; 8174EE8838427BE46A0885CA8539CA9D /* GDTCORUploadPackage.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCORUploadPackage.h; path = GoogleDataTransport/GDTCORLibrary/Public/GDTCORUploadPackage.h; sourceTree = ""; }; - 818E434C2169AD217DFDDF0A582869A2 /* React-jsi-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-jsi-prefix.pch"; sourceTree = ""; }; - 8192956884A0037E0B68630BAE6242CE /* es.lproj */ = {isa = PBXFileReference; includeInIndex = 1; name = es.lproj; path = ios/QBImagePicker/QBImagePicker/es.lproj; sourceTree = ""; }; + 817FAA1AAEAE43A6556BF57418ED4259 /* jsi.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = jsi.cpp; sourceTree = ""; }; + 818D53D65DB7CA06B66EF9BB15E93985 /* EXAudioRecordingPermissionRequester.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXAudioRecordingPermissionRequester.h; path = EXPermissions/EXAudioRecordingPermissionRequester.h; sourceTree = ""; }; + 81AB4D42E5C4E42B829E5593C9F448A4 /* RCTImageBlurUtils.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTImageBlurUtils.m; sourceTree = ""; }; 81B9283887252C3A5BFACBC794BD9596 /* FIRInstallationsVersion.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstallationsVersion.m; path = FirebaseInstallations/Source/Library/FIRInstallationsVersion.m; sourceTree = ""; }; 81CE6C1BD2CD84627ACB2375ECEDDBF0 /* FBLPromise+Recover.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FBLPromise+Recover.h"; path = "Sources/FBLPromises/include/FBLPromise+Recover.h"; sourceTree = ""; }; 81DA341D791704280F8256A98FF27460 /* FIRInstanceIDTokenStore.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstanceIDTokenStore.h; path = Firebase/InstanceID/FIRInstanceIDTokenStore.h; sourceTree = ""; }; - 81F5EC703D7AA5A043BFC5A89F77E5DC /* RCTModalHostViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTModalHostViewManager.h; sourceTree = ""; }; - 8229C7B94874242389AA622F7750EF2E /* RCTKeyCommands.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTKeyCommands.m; sourceTree = ""; }; - 824CBB6DC676A51BE5DF4E52C4B5EE6D /* RCTPropsAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTPropsAnimatedNode.m; sourceTree = ""; }; - 8257A2AAD95D3DA2B906646CB70FC9E5 /* YGValue.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = YGValue.cpp; path = yoga/YGValue.cpp; sourceTree = ""; }; - 827FED012D06E2542D11D73C1DAB5AEB /* BSG_KSObjC.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSObjC.h; sourceTree = ""; }; + 81E08A05E77AD5C7A1020F208DFD4033 /* RCTScrollViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTScrollViewManager.m; sourceTree = ""; }; + 82029B11A69D43F2CECCC452BD7F030F /* RCTImageSource.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTImageSource.h; sourceTree = ""; }; + 8246BE2CF1F863DE03327C201770AA97 /* RCTBaseTextShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTBaseTextShadowView.m; sourceTree = ""; }; + 8256DA6869ACF3E3397CCBD8BEC522C9 /* notificationsEvents.md */ = {isa = PBXFileReference; includeInIndex = 1; name = notificationsEvents.md; path = docs/notificationsEvents.md; sourceTree = ""; }; + 827690DE743685D8E5129378CA84CA1A /* JSDeltaBundleClient.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = JSDeltaBundleClient.h; sourceTree = ""; }; + 82792A209B9AF3CD82B0E4D90A8284B8 /* UMImageLoaderInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMImageLoaderInterface.h; path = UMImageLoaderInterface/UMImageLoaderInterface.h; sourceTree = ""; }; 8282D52E552AB2125F97A62608C8C38B /* CLSAttributes.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CLSAttributes.h; path = iOS/Crashlytics.framework/Headers/CLSAttributes.h; sourceTree = ""; }; - 82AC5601A7CC44065D1DAA3A7C61CB60 /* RCTModalManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTModalManager.m; sourceTree = ""; }; + 8287C3AE4898ABF0931C1FE37270421B /* rn-extensions-share-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "rn-extensions-share-prefix.pch"; sourceTree = ""; }; + 82AADF162D49004B235303BC98C8DAB6 /* RNFirebaseAdMobBannerManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNFirebaseAdMobBannerManager.m; sourceTree = ""; }; + 82B76F9EF5DEAC9B0A39E9A27F7C11DA /* BSG_KSCrashSentry.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSCrashSentry.c; sourceTree = ""; }; 82BA2E6A5BD7AF8E90A46BA46468DB13 /* Pods-RocketChatRN-acknowledgements.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-RocketChatRN-acknowledgements.plist"; sourceTree = ""; }; 82C307D1CC81EE4425E3DE4DFA23E2F3 /* yuv.c */ = {isa = PBXFileReference; includeInIndex = 1; name = yuv.c; path = src/dsp/yuv.c; sourceTree = ""; }; 82C5CB61A36D2F0DDF60097EB08DBD66 /* SDImageCoder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageCoder.h; path = SDWebImage/Core/SDImageCoder.h; sourceTree = ""; }; - 82CE3F7DAA1E57A2C16A1420E14F8EA6 /* BugsnagFileStore.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagFileStore.m; sourceTree = ""; }; - 82D1F08709A71593209C4D6E2EF80918 /* EXFilePermissionModule.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXFilePermissionModule.m; path = EXFileSystem/EXFilePermissionModule.m; sourceTree = ""; }; + 82D683F71493A4FB62FC3F9759E83754 /* RCTImageCache.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageCache.h; path = Libraries/Image/RCTImageCache.h; sourceTree = ""; }; + 82E223E2EC34137B964DFA17E046F88E /* MaterialIcons.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = MaterialIcons.ttf; path = Fonts/MaterialIcons.ttf; sourceTree = ""; }; + 82E80EAD8DC94D17BFB56E68EA5F0676 /* UMReactNativeEventEmitter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = UMReactNativeEventEmitter.m; sourceTree = ""; }; 82F6DE05F32E14B763473B91688324E1 /* SDImageHEICCoder.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageHEICCoder.m; path = SDWebImage/Core/SDImageHEICCoder.m; sourceTree = ""; }; - 832FA1D1265E3E8DA09A56EA182BAAD4 /* EXVideoManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = EXVideoManager.m; sourceTree = ""; }; - 833A2697F2C7ADB11744A5832AB31057 /* BSG_KSMach_x86_64.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSMach_x86_64.c; sourceTree = ""; }; - 836FF39CC12A344494AEC01E9A856DEA /* ARTSurfaceView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = ARTSurfaceView.m; path = ios/ARTSurfaceView.m; sourceTree = ""; }; - 837F9381A0B501653A6253A2DDB75349 /* 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; }; - 83AEF50578E8BE801DC17FA2B78B7DF9 /* RNDateTimePicker.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNDateTimePicker.xcconfig; sourceTree = ""; }; - 83C62B574085B6A08F29118247EAD9D0 /* BugsnagErrorReportApiClient.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagErrorReportApiClient.h; sourceTree = ""; }; - 83C653AE5E0F520CBE6FBF95F25032A4 /* RCTImageViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageViewManager.h; path = Libraries/Image/RCTImageViewManager.h; sourceTree = ""; }; - 83D24F2ED92A1A29A5CD59AA87A0BCB9 /* BugsnagCrashSentry.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagCrashSentry.h; sourceTree = ""; }; - 841FF80D5B6AA6B69EABE80C6F2B4B06 /* EXRemindersRequester.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXRemindersRequester.h; path = EXPermissions/EXRemindersRequester.h; sourceTree = ""; }; + 830487E1CCB4D4387A8D80D3ECFD96F3 /* BugsnagFileStore.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagFileStore.m; sourceTree = ""; }; + 83092E59EF925F1798C306AD31A4BCCB /* AudioRecorderManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AudioRecorderManager.h; path = ios/AudioRecorderManager.h; sourceTree = ""; }; + 830B2C23F2B1D9BCE8A596BA3FBB8559 /* RNDateTimePicker.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNDateTimePicker.xcconfig; sourceTree = ""; }; + 83721110039CFE42056BFEDFC27ECD7A /* YGConfig.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YGConfig.h; path = yoga/YGConfig.h; sourceTree = ""; }; + 838F080F431E7065A2947FAA1E85053E /* FBReactNativeSpec.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBReactNativeSpec.h; path = FBReactNativeSpec/FBReactNativeSpec.h; sourceTree = ""; }; + 83B2E30D5CA08A472F9A15613DB9A49D /* RootView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RootView.m; path = ios/RootView.m; sourceTree = ""; }; + 8417848A33C246DBF9F0A26374E34AF6 /* BannerComponent.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BannerComponent.h; sourceTree = ""; }; 842C1C29367F774BD441F53EB6BD4437 /* diy-fp.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = "diy-fp.cc"; path = "double-conversion/diy-fp.cc"; sourceTree = ""; }; - 8459D161AD8D1A8FE026F476A904A147 /* EXCameraPermissionRequester.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXCameraPermissionRequester.m; path = EXPermissions/EXCameraPermissionRequester.m; sourceTree = ""; }; - 84CE69D12921D635B2AC77BE0BBECFB8 /* UMFileSystemInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMFileSystemInterface.h; path = UMFileSystemInterface/UMFileSystemInterface.h; sourceTree = ""; }; - 84DADC94AACC5A4C7077269740FB97B3 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; + 846D7765D01BE164A295A8CA556D3AF9 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; + 84C4B68701663B819E5E5E67BCAC43CD /* RCTDivisionAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTDivisionAnimatedNode.h; sourceTree = ""; }; + 84D516CE8D1A2B0D2D412A017EEC4464 /* react-native-keyboard-tracking-view.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "react-native-keyboard-tracking-view.xcconfig"; sourceTree = ""; }; + 84E95B4CCAB7B65F14342EB42E03D1D2 /* UMUtilities.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMUtilities.h; path = UMCore/UMUtilities.h; sourceTree = ""; }; 84EC518D9D034614AA1F401DB6FF9D92 /* UIImage+WebP.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIImage+WebP.m"; path = "SDWebImageWebPCoder/Classes/UIImage+WebP.m"; sourceTree = ""; }; - 84F4F2DE720F6E48B05618230068F5E2 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; - 84FB9E50BE845E4A965BD89CA6152FEB /* SRSIMDHelpers.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = SRSIMDHelpers.m; sourceTree = ""; }; - 850FD2FA4D46C449A47827877A4B9249 /* RCTSwitch.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSwitch.m; sourceTree = ""; }; - 85108725487F7D2C6B566ECA50133065 /* REABezierNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REABezierNode.h; sourceTree = ""; }; 853B2681E8D6B8DC9F55CF27A6E8090C /* GULHeartbeatDateStorage.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GULHeartbeatDateStorage.m; path = GoogleUtilities/Environment/GULHeartbeatDateStorage.m; sourceTree = ""; }; - 8567D98C1156641848CB1C85449D720D /* EXAV.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXAV.m; path = EXAV/EXAV.m; sourceTree = ""; }; + 854177E1FBDBC92D734BAEC839BA9065 /* 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; }; 856B5CD56F194FAD26EA91620B66D614 /* libGoogleDataTransport.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libGoogleDataTransport.a; path = libGoogleDataTransport.a; sourceTree = BUILT_PRODUCTS_DIR; }; 85852013697E914BA35F277826FB9CEE /* SDWeakProxy.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWeakProxy.h; path = SDWebImage/Private/SDWeakProxy.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; }; - 85A01882ED06DFEA2E0CE78BCDB204A7 /* libSocketRocket.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libSocketRocket.a; path = libSocketRocket.a; sourceTree = BUILT_PRODUCTS_DIR; }; + 8597914A0A94EB4606CDBF793C5CBF47 /* React-RCTNetwork.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-RCTNetwork.xcconfig"; sourceTree = ""; }; + 85B79B9B5F87B6F89E48972183BD00B1 /* react-native-document-picker-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "react-native-document-picker-prefix.pch"; sourceTree = ""; }; + 85EDB2333CBF4A1AC8C9B1392D115DC4 /* RCTComponentData.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTComponentData.m; sourceTree = ""; }; 85F22489B98808C5DA103C7B579C00A3 /* SDImageAssetManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageAssetManager.m; path = SDWebImage/Private/SDImageAssetManager.m; sourceTree = ""; }; - 86182666DE84512205B57EB10223FB24 /* RNFetchBlobReqBuilder.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNFetchBlobReqBuilder.m; path = ios/RNFetchBlobReqBuilder.m; sourceTree = ""; }; - 8620E75DBF5B7D56827F270F2CDDD9DF /* RCTProfile.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTProfile.m; sourceTree = ""; }; + 8612EE252C77A44315B94C42994C2986 /* NativeToJsBridge.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = NativeToJsBridge.h; sourceTree = ""; }; + 8618666306E69961208486374E6BBCC2 /* BSG_KSCrashSentry_NSException.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BSG_KSCrashSentry_NSException.m; sourceTree = ""; }; + 86586632FE78B03656CD3C5B2AE0AD79 /* QBAlbumsViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = QBAlbumsViewController.h; path = ios/QBImagePicker/QBImagePicker/QBAlbumsViewController.h; sourceTree = ""; }; 86670E276CC761C5AD9108582C55EDC3 /* FBLPromise+Do.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "FBLPromise+Do.m"; path = "Sources/FBLPromises/FBLPromise+Do.m"; sourceTree = ""; }; - 8690B5D6CABB906A84F7F9E27C302E2D /* BSG_KSCrashSentry_User.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashSentry_User.h; sourceTree = ""; }; - 86CDD6B4B9D3FC38F3690B53AD6617B4 /* REAOperatorNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REAOperatorNode.h; sourceTree = ""; }; - 87147EA3924490E7FE3B10CF6A434585 /* react-native-webview.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "react-native-webview.xcconfig"; sourceTree = ""; }; - 872254C84ED3127FF36A116DEDBF725E /* QBVideoIconView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = QBVideoIconView.h; path = ios/QBImagePicker/QBImagePicker/QBVideoIconView.h; sourceTree = ""; }; + 86CDD05F30692820EDC6E071CDB9C32E /* RNCAssetsLibraryRequestHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCAssetsLibraryRequestHandler.h; path = ios/RNCAssetsLibraryRequestHandler.h; sourceTree = ""; }; + 86D2327908DB8A5753C0024311E12EF1 /* UMFilePermissionModuleInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMFilePermissionModuleInterface.h; path = UMFileSystemInterface/UMFilePermissionModuleInterface.h; sourceTree = ""; }; 872F0037F0BE0480407ABDF7F96FBAF6 /* vp8l_enc.c */ = {isa = PBXFileReference; includeInIndex = 1; name = vp8l_enc.c; path = src/enc/vp8l_enc.c; sourceTree = ""; }; - 8755CAEB41C6BF69F755A5D32FEDFE00 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; + 874D587D590CB2FD1B564F8A1FF8C4F5 /* ReactCommon-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "ReactCommon-prefix.pch"; sourceTree = ""; }; + 876C8D7091AA8A63FBB4DB53510FC72A /* ARTPattern.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = ARTPattern.m; sourceTree = ""; }; 877F0D1D9A0A956008B6F07FD23EC8B1 /* SDImageCoder.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageCoder.m; path = SDWebImage/Core/SDImageCoder.m; sourceTree = ""; }; - 878457F5B4DA61353A80FEB0FEB9FA2A /* RCTInspectorPackagerConnection.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTInspectorPackagerConnection.m; sourceTree = ""; }; + 87988F40F79859FAC6F8A054C52D402B /* RCTNetInfo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTNetInfo.h; path = Libraries/Network/RCTNetInfo.h; sourceTree = ""; }; + 87B42A9BC9EA2574581724D063832874 /* RCTDatePickerManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTDatePickerManager.h; sourceTree = ""; }; + 87B581DEA79BAEC1A5962B9B7F23D39C /* RCTSwitch.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSwitch.h; sourceTree = ""; }; + 87BDE213930602568428589CA91EC8A3 /* REAJSCallNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REAJSCallNode.h; sourceTree = ""; }; 8816AC006C3D22F054F7BAB4EA2511ED /* alpha_processing.c */ = {isa = PBXFileReference; includeInIndex = 1; name = alpha_processing.c; path = src/dsp/alpha_processing.c; sourceTree = ""; }; 8825B0D3568A19F57CDF00412E9B2DD6 /* SDWebImageWebPCoder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageWebPCoder.h; path = SDWebImageWebPCoder/Module/SDWebImageWebPCoder.h; sourceTree = ""; }; - 888A4D48FA55F32314E99958205EA5A5 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; - 88E180936C1EF9C11A746618CD130AE8 /* RCTModalHostView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTModalHostView.m; sourceTree = ""; }; + 883B616E238DD29BBF97C1068FE05195 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; + 8873DD07BF4CCC6E0748DC31BAF006E4 /* RCTRootViewInternal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTRootViewInternal.h; sourceTree = ""; }; + 88875CCBC1ECDE2E34958A86D1012817 /* RNDeviceInfo-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNDeviceInfo-dummy.m"; sourceTree = ""; }; + 88B68424CB0BD6AA63E98BD8272CA630 /* RNVectorIcons-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNVectorIcons-prefix.pch"; sourceTree = ""; }; + 88EC3AC0FC6F15CEAF97903F8923E681 /* RNCAssetsLibraryRequestHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCAssetsLibraryRequestHandler.m; path = ios/RNCAssetsLibraryRequestHandler.m; sourceTree = ""; }; 88FB1508A1C9E9DF1C4FCF0644BFB25D /* SDFileAttributeHelper.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDFileAttributeHelper.m; path = SDWebImage/Private/SDFileAttributeHelper.m; sourceTree = ""; }; - 891F51FBCC2DF3E6A223D2E14C7C00B6 /* SRHash.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = SRHash.h; sourceTree = ""; }; 893353C22879F217358868739D8C89E9 /* rescaler_mips_dsp_r2.c */ = {isa = PBXFileReference; includeInIndex = 1; name = rescaler_mips_dsp_r2.c; path = src/dsp/rescaler_mips_dsp_r2.c; sourceTree = ""; }; - 896F851511E62E3117AEFD973203BF31 /* BSG_KSCrashSentry_Signal.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSCrashSentry_Signal.c; sourceTree = ""; }; - 89898C341B98EDD11F13631BF24D54CD /* RCTTiming.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTTiming.m; sourceTree = ""; }; + 8933B2E3ED8C0EB07F4776D48B0272A6 /* QBAssetCell.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = QBAssetCell.m; path = ios/QBImagePicker/QBImagePicker/QBAssetCell.m; sourceTree = ""; }; + 8958EDE284309A7EAFBB83F9365B0567 /* ARTShape.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ARTShape.h; path = ios/ARTShape.h; sourceTree = ""; }; + 8988AE6A601B0F2DB1CF64F62CB271A5 /* RNCSliderManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCSliderManager.m; path = ios/RNCSliderManager.m; sourceTree = ""; }; 8998273719FDD789E6F9C7541AFD0B33 /* libRNVectorIcons.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libRNVectorIcons.a; path = libRNVectorIcons.a; sourceTree = BUILT_PRODUCTS_DIR; }; + 8999BFF15F3E1DC5AC79709C36F5AABF /* RNFirebaseRemoteConfig.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNFirebaseRemoteConfig.h; sourceTree = ""; }; 899A689BA65BA61151C1DDFB19F5BE93 /* GULNetwork.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULNetwork.h; path = GoogleUtilities/Network/Private/GULNetwork.h; sourceTree = ""; }; - 89A375CD79FD4E7A782B78ADFD3CED41 /* RCTTextViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTextViewManager.h; sourceTree = ""; }; + 899CA464D481520BF7606BA74E308C54 /* REAEventNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REAEventNode.m; sourceTree = ""; }; + 89A0807D2B49673C8750B616BECF1EAB /* RCTVibration.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTVibration.m; sourceTree = ""; }; + 89B3D9CD7FF68E7F4A8F6C05B00C33FE /* RCTParserUtils.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTParserUtils.m; sourceTree = ""; }; 89C6619CB1C1D1AE75ECCE9C2E6A35A5 /* cost_enc.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = cost_enc.h; path = src/enc/cost_enc.h; sourceTree = ""; }; - 89D905FA644344704AF27B2A0C9AEEF9 /* React-RCTNetwork-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-RCTNetwork-prefix.pch"; sourceTree = ""; }; - 8A44F997D00019987B9EFD2D3A54B71A /* ModuleRegistry.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = ModuleRegistry.cpp; sourceTree = ""; }; + 89D6F65D3CE73D4BDDF44AB18602DB31 /* RCTI18nUtil.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTI18nUtil.h; sourceTree = ""; }; + 8A00AB569D049133AE6D7ACA512DF937 /* RCTInputAccessoryViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTInputAccessoryViewManager.m; sourceTree = ""; }; + 8A0CC5644DE47283BD6FF0D0160FCD6F /* BSG_KSArchSpecific.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSArchSpecific.h; sourceTree = ""; }; 8A4DD3054BCAAC1DD111B122592F96DD /* Firebase.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = Firebase.xcconfig; sourceTree = ""; }; - 8A6CEFA758BED65813D2DA60C7CBA372 /* react-native-notifications-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "react-native-notifications-prefix.pch"; sourceTree = ""; }; - 8A82857178FB6B496F5B0BCE00B320B0 /* RCTBaseTextInputShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTBaseTextInputShadowView.m; sourceTree = ""; }; - 8AB310BFF5D7A85FB6C9AD1A44D622CF /* RCTLog.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTLog.mm; sourceTree = ""; }; - 8ACDBE0C58D48D310185794A7355AF4A /* BSG_KSCrashC.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashC.h; sourceTree = ""; }; - 8AE93B7BE8E4B8CC628C1257C9D40F62 /* RNFirebaseMessaging.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNFirebaseMessaging.h; sourceTree = ""; }; - 8AF491B7DC94C7EBFDFD5C791D6B519A /* REAPropsNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REAPropsNode.m; sourceTree = ""; }; + 8A5CB591EF54070343DA7ECA0BB53DB9 /* RCTUIManagerUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTUIManagerUtils.h; sourceTree = ""; }; + 8A5E00C94BF4E62031F5735FA0C2CFB9 /* BSG_KSCrashType.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashType.h; sourceTree = ""; }; + 8A5FA8D27FAC96EB49C2BA4FCD400BB1 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; + 8A8B168311FE0AF90E27A757F57589CA /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; + 8A8B6EA1E5AD764ECC191164749FC3D9 /* RCTInputAccessoryShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTInputAccessoryShadowView.h; sourceTree = ""; }; + 8AC24873AE21C7CB4D10EC567908AE3E /* RCTMacros.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTMacros.h; sourceTree = ""; }; + 8ADCC0F216E0F7913C3F75C7C93B7644 /* MethodCall.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = MethodCall.h; sourceTree = ""; }; + 8AF2214A7EFA1ED75BCCF7921E59945B /* UMDeviceMotionInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMDeviceMotionInterface.h; path = UMSensorsInterface/UMDeviceMotionInterface.h; sourceTree = ""; }; + 8B24221EA56FB96FD49E83E221AFA2F1 /* BSGSerialization.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BSGSerialization.m; sourceTree = ""; }; + 8B37866CCEB6DADDF2FF416FCB47D611 /* BugsnagHandledState.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagHandledState.m; sourceTree = ""; }; + 8B3B20954674E500BC0C60E9385E0B74 /* RCTExceptionsManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTExceptionsManager.h; path = React/CoreModules/RCTExceptionsManager.h; sourceTree = ""; }; 8B4C2C687BA9A4F482BCC6E3550747BE /* NSImage+Compatibility.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSImage+Compatibility.h"; path = "SDWebImage/Core/NSImage+Compatibility.h"; sourceTree = ""; }; - 8BAC9B9C975D08964BA4AF902A46B471 /* ARTContainer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ARTContainer.h; path = ios/ARTContainer.h; sourceTree = ""; }; - 8BB773C29D6CE3712DA8D04B3E3F8E9F /* NSError+BSG_SimpleConstructor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "NSError+BSG_SimpleConstructor.h"; sourceTree = ""; }; + 8B4C9F758CDDA9CBD51DE98A4495A10A /* RCTConvert+CoreLocation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RCTConvert+CoreLocation.m"; sourceTree = ""; }; + 8B7F43DC4EC1B6258DBD40E20BEBD0FB /* REABezierNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REABezierNode.m; sourceTree = ""; }; + 8BA996A3669B72AD5B4B7147E6BED823 /* RCTInputAccessoryViewContent.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTInputAccessoryViewContent.m; sourceTree = ""; }; + 8BD90BA5AFD95D998185C8E73F473888 /* RNReanimated-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNReanimated-dummy.m"; sourceTree = ""; }; + 8BFB59944C660864F8F99BA6631A44DA /* localNotifications.md */ = {isa = PBXFileReference; includeInIndex = 1; name = localNotifications.md; path = docs/localNotifications.md; sourceTree = ""; }; + 8C0EF90CBF2D12C653918BD3F6E38EFF /* BugsnagCollections.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagCollections.h; sourceTree = ""; }; + 8C1F22E76A0175009050761B53AD9665 /* RNBridgeModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNBridgeModule.h; path = RNNotifications/RNBridgeModule.h; sourceTree = ""; }; + 8C3CD206B77DAF6F30D5EDDD376B4C99 /* BugsnagUser.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagUser.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; }; 8C40A67EE1D77C8674B2974823212EA0 /* GDTCORReachability.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GDTCORReachability.m; path = GoogleDataTransport/GDTCORLibrary/GDTCORReachability.m; sourceTree = ""; }; - 8C55AA6E3DF7B37A6608F9F1CA6AD1DD /* SRDelegateController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = SRDelegateController.m; sourceTree = ""; }; 8C64106BB2DF7529C974379A31A7B6EE /* dec_mips_dsp_r2.c */ = {isa = PBXFileReference; includeInIndex = 1; name = dec_mips_dsp_r2.c; path = src/dsp/dec_mips_dsp_r2.c; sourceTree = ""; }; - 8C783C133CDC69E176158DB13D9002C3 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; - 8C7C1F3044E71AF9B64E733B5BFA47E7 /* RNFetchBlobRequest.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNFetchBlobRequest.m; path = ios/RNFetchBlobRequest.m; sourceTree = ""; }; - 8C8119DC7B6E2D5AB06D4A9385DCD729 /* EXFileSystem-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "EXFileSystem-prefix.pch"; sourceTree = ""; }; - 8CB03193658E4035AF88CCC52810967F /* UMLogManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMLogManager.h; sourceTree = ""; }; + 8C807DEA628CB2093341AB770184F3A1 /* RCTUIImageViewAnimated.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTUIImageViewAnimated.m; sourceTree = ""; }; 8CC9178C366942FD6FF6A115604EAD58 /* libFirebaseCoreDiagnostics.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libFirebaseCoreDiagnostics.a; path = libFirebaseCoreDiagnostics.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 8D0D8D530585825403547D9DC295DF5C /* EXRemindersRequester.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXRemindersRequester.m; path = EXPermissions/EXRemindersRequester.m; sourceTree = ""; }; - 8D0D9C59BE0CBF118DB6D61BD6D32266 /* EXAV.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXAV.h; path = EXAV/EXAV.h; sourceTree = ""; }; - 8D13C7520AA20108E14471D603A404CA /* RCTConvert+REATransition.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RCTConvert+REATransition.h"; sourceTree = ""; }; + 8CE8905389FD603B0F5B476C5AE400DA /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; + 8D236EF97878BA3F898BD938036D1520 /* BSG_KSCrashReportFields.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashReportFields.h; sourceTree = ""; }; + 8D2C5A8F831E892581AC87353D324085 /* RCTExceptionsManager.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTExceptionsManager.mm; sourceTree = ""; }; 8D34461A66E3259AB0C1167A107511FE /* enc_sse2.c */ = {isa = PBXFileReference; includeInIndex = 1; name = enc_sse2.c; path = src/dsp/enc_sse2.c; sourceTree = ""; }; - 8D40E05A89E0419CE69ED7EE791E8FD8 /* BugsnagFileStore.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagFileStore.h; sourceTree = ""; }; + 8D40FF2BA9B31FB8FB3E32C2ACAACF2C /* RCTUIManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTUIManager.h; sourceTree = ""; }; + 8D5357EC0F02191720BFC09D0E1C5D6D /* BSG_KSCrashReportFilterCompletion.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashReportFilterCompletion.h; sourceTree = ""; }; + 8D5FBC4B31621BBAFF7F3339A7DA318F /* RCTStatusBarManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTStatusBarManager.m; sourceTree = ""; }; 8D7029D8FB8076E86500FDD8484FDDD4 /* webp_dec.c */ = {isa = PBXFileReference; includeInIndex = 1; name = webp_dec.c; path = src/dec/webp_dec.c; sourceTree = ""; }; - 8D7635460ED8FD643150486E9CB9D81B /* RCTImageLoaderProtocol.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageLoaderProtocol.h; path = Libraries/Image/RCTImageLoaderProtocol.h; sourceTree = ""; }; - 8D8B3E5C3E4B9372369E6A593B7CCCCA /* EXHaptics-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "EXHaptics-dummy.m"; sourceTree = ""; }; - 8DD1027A6B8EDA7C9D7BDB4F481DC280 /* RCTActivityIndicatorViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTActivityIndicatorViewManager.m; sourceTree = ""; }; - 8DF301DB1050DE2FF5B6175BD96B779B /* RNFirebaseFirestore.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNFirebaseFirestore.m; sourceTree = ""; }; + 8DCCFAF216AFB433D6EA67CD07AD4B0E /* REABezierNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REABezierNode.h; sourceTree = ""; }; + 8DD57D7737664ABAD0AA03D40925FD64 /* RCTUITextView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTUITextView.m; sourceTree = ""; }; + 8DE306F01A8F8C01463E62520EBD4B79 /* JSDeltaBundleClient.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = JSDeltaBundleClient.cpp; 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; }; + 8DF7BE118B4A9C7992B9F7758F740FA3 /* NativeExpressComponent.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = NativeExpressComponent.m; sourceTree = ""; }; 8DFBAA668DAA11EFFF653C4F4F65920D /* NSError+FIRInstanceID.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSError+FIRInstanceID.m"; path = "Firebase/InstanceID/NSError+FIRInstanceID.m"; sourceTree = ""; }; - 8E0DCAAEC2DDFD38666AB597B28500F9 /* React-jsiexecutor-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-jsiexecutor-prefix.pch"; sourceTree = ""; }; 8E103C191260FD8059A70EBEAD980250 /* yuv_sse41.c */ = {isa = PBXFileReference; includeInIndex = 1; name = yuv_sse41.c; path = src/dsp/yuv_sse41.c; sourceTree = ""; }; - 8E693E5E6C4F6ED9A549E0D590C611C0 /* EXCameraPermissionRequester.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXCameraPermissionRequester.h; path = EXPermissions/EXCameraPermissionRequester.h; sourceTree = ""; }; + 8E235073D947F6AE9BD52EEB39D17CA7 /* RCTSegmentedControlManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSegmentedControlManager.h; sourceTree = ""; }; + 8E28EE78E661B7FBF9CD48D10A4B751F /* BugsnagUser.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagUser.h; sourceTree = ""; }; + 8E31A6B81DDCDCE340A0C39D6BB1401A /* EXAppLoaderProvider-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "EXAppLoaderProvider-prefix.pch"; sourceTree = ""; }; + 8E46827A66AC7B8EF1A87F22E7A2A6A4 /* React-RCTVibration-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-RCTVibration-dummy.m"; sourceTree = ""; }; 8E8C019C75FF4F789E40C8784D2EEB25 /* FIRInstallationsItem+RegisterInstallationAPI.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FIRInstallationsItem+RegisterInstallationAPI.h"; path = "FirebaseInstallations/Source/Library/InstallationsAPI/FIRInstallationsItem+RegisterInstallationAPI.h"; sourceTree = ""; }; - 8E8EFBBDC42E5B25D24FC7C59575DECD /* react-native-webview-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "react-native-webview-dummy.m"; sourceTree = ""; }; + 8E90CC927E40D20F68CBF9A0F8F978F2 /* YGLayout.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YGLayout.h; path = yoga/YGLayout.h; sourceTree = ""; }; 8ECEDAD2A838321D345DEE9D05E6BB90 /* glog-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "glog-dummy.m"; sourceTree = ""; }; + 8ED5FFEC37DF77FD9DF7501A5F681826 /* RCTUITextField.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTUITextField.h; sourceTree = ""; }; 8EDA6DF3A3B6AF0071D4A7A9742995B2 /* SDWebImageDownloaderDecryptor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageDownloaderDecryptor.h; path = SDWebImage/Core/SDWebImageDownloaderDecryptor.h; sourceTree = ""; }; - 8EDE901EC7D3DE0A41D9B041CF2453F1 /* QBAssetCell.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = QBAssetCell.h; path = ios/QBImagePicker/QBImagePicker/QBAssetCell.h; sourceTree = ""; }; - 8F0921E721DDC0F6BE45151BDCD1ABDF /* BugsnagUser.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagUser.m; sourceTree = ""; }; - 8F56DF5F1A4E519857ECC4A6A206A951 /* RNImageCropPicker.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RNImageCropPicker.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 8F0137794D60F31FCD06798B5707FBEF /* RNDateTimePicker-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNDateTimePicker-dummy.m"; sourceTree = ""; }; + 8F342318793A3822FC62B8389824A93E /* RCTViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTViewManager.m; sourceTree = ""; }; + 8F5899B6499FEC85F4D4AB9B0F168FE0 /* RCTTypedModuleConstants.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTypedModuleConstants.h; sourceTree = ""; }; + 8F5D9296BC55DECE24B717234E67D3BD /* RCTConvert+Text.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RCTConvert+Text.m"; sourceTree = ""; }; 8F65F9361F2069CF9E9D751272968DE4 /* libRNGestureHandler.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libRNGestureHandler.a; path = libRNGestureHandler.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 8FAF8FD987784D3CD7130ABD88030E18 /* RCTObjcExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTObjcExecutor.h; sourceTree = ""; }; + 8FC06326CBCF4D5554003ABD7AA1D026 /* BridgeJSCallInvoker.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = BridgeJSCallInvoker.cpp; path = jscallinvoker/ReactCommon/BridgeJSCallInvoker.cpp; sourceTree = ""; }; 8FE78D699DF0963CA715538E756C4EE2 /* GULApplication.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULApplication.h; path = GoogleUtilities/AppDelegateSwizzler/Private/GULApplication.h; sourceTree = ""; }; - 900FD7401EF46D6331EB6A027BC2E24B /* BugsnagSession.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagSession.m; sourceTree = ""; }; - 902C612F40E547BCFA5567CA0308FA68 /* EXHapticsModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXHapticsModule.h; path = EXHaptics/EXHapticsModule.h; sourceTree = ""; }; + 8FF0E90CBD46D14B8158DE06195E1118 /* RNFetchBlob.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNFetchBlob.m; sourceTree = ""; }; + 8FFBE1BD43F2D5789EB599A1D15ABE08 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; + 900D8F4B2B74F84E9D88168B660E69D5 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; + 90449CFD20AC9ECF90C0D33DF2D396CA /* UMReactFontManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = UMReactFontManager.m; sourceTree = ""; }; + 904D642278F8E880B2DDEF5EB580F9CB /* BugsnagSessionFileStore.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagSessionFileStore.m; sourceTree = ""; }; + 9055FF3A18019923DF5C754051CB78B9 /* BugsnagNotifier.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagNotifier.m; sourceTree = ""; }; 905B1BD1CB9FFBC1DD7770F2DBD5FD19 /* FIRInstanceIDCombinedHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstanceIDCombinedHandler.m; path = Firebase/InstanceID/FIRInstanceIDCombinedHandler.m; sourceTree = ""; }; - 908C907CBBED05A05EE11BE0B54565EC /* RCTSurfaceRootShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSurfaceRootShadowView.m; sourceTree = ""; }; - 909C770291972B658838E4A4FA5FD6D1 /* RCTFrameAnimation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTFrameAnimation.m; sourceTree = ""; }; - 90AF60B0F6683B65398FE51232962194 /* LNInterpolable.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = LNInterpolable.m; sourceTree = ""; }; - 910A105704845EF8D5DEC36EF7122E57 /* EXPermissions.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXPermissions.m; path = EXPermissions/EXPermissions.m; sourceTree = ""; }; - 910E694B02BDD7EFB6194679904FF89E /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; - 911B61ED93F3F7368413853F322BD53A /* RCTWebSocketModule.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCTWebSocketModule.m; path = Libraries/WebSocket/RCTWebSocketModule.m; sourceTree = ""; }; + 908159DCF7F75519610203786DF35A94 /* RCTImageCache.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTImageCache.m; sourceTree = ""; }; + 90C33D877B66B11D59A02B19EDA0BCB9 /* react-native-keyboard-input.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "react-native-keyboard-input.xcconfig"; sourceTree = ""; }; + 90C3DF9E7E4D01932B8AD30654D97DC9 /* RNCAppearance.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCAppearance.h; path = ios/Appearance/RNCAppearance.h; sourceTree = ""; }; + 90E20766F6B425775E572CC15A75ADBE /* QBAlbumsViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = QBAlbumsViewController.m; path = ios/QBImagePicker/QBImagePicker/QBAlbumsViewController.m; sourceTree = ""; }; 91359A1A9D71282B8617D5BF30B86B04 /* GoogleUtilities-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "GoogleUtilities-prefix.pch"; sourceTree = ""; }; + 9161A4E4D577B1906F2C9AE3CDC4AD37 /* ARTBrush.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = ARTBrush.m; sourceTree = ""; }; + 917CDA9ADC6D80ADFAAAF0974BA533E9 /* Bugsnag.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = Bugsnag.m; sourceTree = ""; }; 919435F4CD2ADBE3C210FD10F56B568A /* FBLPromise.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBLPromise.m; path = Sources/FBLPromises/FBLPromise.m; sourceTree = ""; }; - 91999577661B53D8F919F97505048E93 /* RCTTurboModule.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTTurboModule.mm; sourceTree = ""; }; - 91BFEBD63CAA5403876ECB4D96B94FC9 /* RCTImageCache.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTImageCache.m; sourceTree = ""; }; - 91C2AEA3D7AFD819EF2FA9B5574EE650 /* RCTFrameAnimation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTFrameAnimation.h; sourceTree = ""; }; 91CF14832C73F2B333714483F06B3C9A /* UIImage+Transform.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIImage+Transform.m"; path = "SDWebImage/Core/UIImage+Transform.m"; sourceTree = ""; }; - 91D7FA5E9338225929D79EA998D5ACA6 /* UMImageLoaderInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMImageLoaderInterface.h; path = UMImageLoaderInterface/UMImageLoaderInterface.h; sourceTree = ""; }; + 91F95847CE0D9E2EE18BF7D35ABDA330 /* EXKeepAwake-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "EXKeepAwake-prefix.pch"; sourceTree = ""; }; + 921669BDFA8122F90068B29D548AC083 /* RNFirebaseAdMobBannerManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNFirebaseAdMobBannerManager.h; sourceTree = ""; }; 921B01A30EBFEA00540CF83973A575F9 /* GDTCOREvent.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCOREvent.h; path = GoogleDataTransport/GDTCORLibrary/Public/GDTCOREvent.h; sourceTree = ""; }; - 921B1B6B15E65FA19BCBD7605358CF85 /* FontAwesome5_Brands.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = FontAwesome5_Brands.ttf; path = Fonts/FontAwesome5_Brands.ttf; sourceTree = ""; }; 921C25810B4533D9E001D73370A577B6 /* GULAppDelegateSwizzler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULAppDelegateSwizzler.h; path = GoogleUtilities/AppDelegateSwizzler/Private/GULAppDelegateSwizzler.h; sourceTree = ""; }; + 924548DAFFA73CBB710AEE305AB820FD /* react-native-keyboard-input-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "react-native-keyboard-input-prefix.pch"; sourceTree = ""; }; + 9246F421DA5C78784C1F693CFD363B41 /* RNFlingHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNFlingHandler.m; sourceTree = ""; }; + 9264962D918434D599141B849812E45B /* BugsnagReactNative.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = BugsnagReactNative.m; path = cocoa/BugsnagReactNative.m; sourceTree = ""; }; 9266B058E00473F5A3D7D31E6AFE30EA /* GULAppEnvironmentUtil.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GULAppEnvironmentUtil.m; path = GoogleUtilities/Environment/third_party/GULAppEnvironmentUtil.m; sourceTree = ""; }; 92839ECA01AD51593C6AC08DBD9EBCC2 /* GDTCORTransformer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCORTransformer.h; path = GoogleDataTransport/GDTCORLibrary/Private/GDTCORTransformer.h; sourceTree = ""; }; - 92EC1FEF018758B136B2165819C574F0 /* FontAwesome.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = FontAwesome.ttf; path = Fonts/FontAwesome.ttf; sourceTree = ""; }; + 92AD3F3615247DF1DAD78AFF16D8CC2B /* RCTJSStackFrame.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTJSStackFrame.h; sourceTree = ""; }; + 92DB40F1CDFF8CB643A1ABA4AE526B60 /* RCTRefreshControlManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTRefreshControlManager.h; sourceTree = ""; }; 92FA3E16143BD843AB82FBE1484C3175 /* GDTCORTransformer.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GDTCORTransformer.m; path = GoogleDataTransport/GDTCORLibrary/GDTCORTransformer.m; sourceTree = ""; }; - 9303FD85EB1EBA0967A32B10A01B367F /* JSIExecutor.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = JSIExecutor.cpp; path = jsireact/JSIExecutor.cpp; sourceTree = ""; }; - 931A1156880F35BD9F6F44BB9BE4A476 /* RNLongPressHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNLongPressHandler.m; sourceTree = ""; }; + 92FAD6EE8E44F62642759199B21818D0 /* REATransitionManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REATransitionManager.m; sourceTree = ""; }; + 93183655C767EAAF164D23123FD1EB30 /* RCTDevLoadingView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTDevLoadingView.h; sourceTree = ""; }; 933895F5689A726BB5DBED7880848CEA /* FBLPromise+Retry.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FBLPromise+Retry.h"; path = "Sources/FBLPromises/include/FBLPromise+Retry.h"; sourceTree = ""; }; 9338EA7FE417C2BDF76DEEE30198B2B8 /* FBLPromise+Catch.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "FBLPromise+Catch.m"; path = "Sources/FBLPromises/FBLPromise+Catch.m"; sourceTree = ""; }; + 933A69C8231D89AE329175EDEB5BE0B2 /* React-Core-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-Core-dummy.m"; sourceTree = ""; }; + 934F0CB2BDAF35D7A5F97101FF54BDC0 /* EXHaptics.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = EXHaptics.xcconfig; sourceTree = ""; }; + 935A072C2C83A8EBEA49BE04DE9E1AB4 /* RNNotificationsStore.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNNotificationsStore.h; path = RNNotifications/RNNotificationsStore.h; sourceTree = ""; }; 93606334B2DB3E80CC396AEDC2F909F5 /* 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 = ""; }; - 936E9E27233FC0F3B1195C1CD5BF3700 /* notificationsEvents.md */ = {isa = PBXFileReference; includeInIndex = 1; name = notificationsEvents.md; path = docs/notificationsEvents.md; sourceTree = ""; }; - 93783A9755F74D6B0279A1DC456F6FF9 /* RNGestureHandlerManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNGestureHandlerManager.m; path = ios/RNGestureHandlerManager.m; sourceTree = ""; }; - 9393EBBA5A0C71C877C8420DCFD4431A /* RNFirebaseFunctions.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNFirebaseFunctions.h; sourceTree = ""; }; - 9399433CF1ACF421382928B069190505 /* RCTCxxModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTCxxModule.h; sourceTree = ""; }; 93B11D5857328B9B8C43CEFE929288EC /* SDMemoryCache.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDMemoryCache.m; path = SDWebImage/Core/SDMemoryCache.m; sourceTree = ""; }; 93B448CC3FB8A5E0A529641BC3F578C2 /* GDTCORDataFuture.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GDTCORDataFuture.m; path = GoogleDataTransport/GDTCORLibrary/GDTCORDataFuture.m; sourceTree = ""; }; - 93BD7E697E11BB724D87C0E664A07174 /* EXPermissions.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXPermissions.h; path = EXPermissions/EXPermissions.h; sourceTree = ""; }; 93C7F9D33807C629347B5CC327303501 /* GULNSData+zlib.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "GULNSData+zlib.h"; path = "GoogleUtilities/NSData+zlib/GULNSData+zlib.h"; sourceTree = ""; }; - 93DCFAEDF7520474568C3D08B41D4B70 /* UMReactNativeAdapter.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMReactNativeAdapter.xcconfig; sourceTree = ""; }; + 93CB41803BC8440C606EA147578CDE99 /* REANodesManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = REANodesManager.h; path = ios/REANodesManager.h; sourceTree = ""; }; 93F8311DDBE0DBF0536063DB1283834E /* FBLPromise+Any.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FBLPromise+Any.h"; path = "Sources/FBLPromises/include/FBLPromise+Any.h"; sourceTree = ""; }; 93FD2FCA283A90F02414FA05025F9086 /* UIColor+HexString.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIColor+HexString.h"; path = "SDWebImage/Private/UIColor+HexString.h"; sourceTree = ""; }; - 9498A7B70892C9D9BD847BC0A62FFC19 /* log.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = log.cpp; path = yoga/log.cpp; sourceTree = ""; }; - 94B82F0760FC99EAF1D717F92381EF1D /* RNFirebaseDatabaseReference.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNFirebaseDatabaseReference.h; sourceTree = ""; }; - 94DF1CFB849E81DE83353A7DED6D5BC8 /* REATransitionManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REATransitionManager.m; sourceTree = ""; }; - 95066CB4C83D6FFBB006FDCF11B972C3 /* SRConstants.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = SRConstants.m; sourceTree = ""; }; + 941AA7CB66C7571E8337B0A35BB2807B /* RCTAnimationUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTAnimationUtils.h; path = Libraries/NativeAnimation/RCTAnimationUtils.h; sourceTree = ""; }; + 941CB7337A22D2FC3F9A2BD378A98380 /* REACondNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REACondNode.h; sourceTree = ""; }; + 946ABCFB770AD6764BB8B03E35B72EB8 /* RCTComponentData.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTComponentData.h; sourceTree = ""; }; + 946E76F08905CA9E7CBDE530F40F6C56 /* RCTInspectorPackagerConnection.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTInspectorPackagerConnection.h; sourceTree = ""; }; + 94728FCA009C8D4E8032027A6D9CE7BE /* 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; }; + 9479F4BA67F6F3E15B163805C0BA0C3D /* BSG_KSJSONCodecObjC.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSJSONCodecObjC.h; sourceTree = ""; }; + 9486290889B3C6325EDECE288CAA9A34 /* RCTProfileTrampoline-x86_64.S */ = {isa = PBXFileReference; includeInIndex = 1; path = "RCTProfileTrampoline-x86_64.S"; sourceTree = ""; }; + 948C08EB2C9D41E3EAE9FF50A2C2D022 /* RCTVersion.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTVersion.h; sourceTree = ""; }; + 94C83077D3F6110B022A2FA2C7D76C2B /* UMBarometerInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMBarometerInterface.h; path = UMSensorsInterface/UMBarometerInterface.h; sourceTree = ""; }; + 94DAEF5EFD04FA4301A2876D5799B235 /* ARTShapeManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = ARTShapeManager.m; sourceTree = ""; }; + 94E51C32E2091084A5F3CC3F2DD45A7E /* RNFirebase-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNFirebase-prefix.pch"; sourceTree = ""; }; + 94F42D796A80AB6ABB10321353CD36BE /* RCTSafeAreaShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSafeAreaShadowView.m; sourceTree = ""; }; 951060CAC29689856FF5CE28D672D5F9 /* glog-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "glog-prefix.pch"; sourceTree = ""; }; + 95139157D114FB108933DFC69FECD2EA /* React-CoreModules.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-CoreModules.xcconfig"; sourceTree = ""; }; 951EA411C3609031BB767BB3EC28580E /* json.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = json.cpp; path = folly/json.cpp; sourceTree = ""; }; - 9564001A129DE20B1126AA1C8B62BDA8 /* RCTDatePicker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTDatePicker.h; sourceTree = ""; }; - 959FE6EF0FD19BB30B1224F7C20003B8 /* RNFetchBlobNetwork.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNFetchBlobNetwork.m; path = ios/RNFetchBlobNetwork.m; sourceTree = ""; }; - 95C718E70F68126F5BBB539625221AE4 /* RCTSafeAreaViewLocalData.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSafeAreaViewLocalData.h; sourceTree = ""; }; - 95D9AD26F26CB7EAA4982F0FAED803CF /* BridgeJSCallInvoker.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = BridgeJSCallInvoker.cpp; path = jscallinvoker/ReactCommon/BridgeJSCallInvoker.cpp; sourceTree = ""; }; + 9549C802432C554FBD2B4F409C09B17E /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; + 954B6E7D061ACE40440D17E3F80885F6 /* react-native-keyboard-tracking-view-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "react-native-keyboard-tracking-view-prefix.pch"; sourceTree = ""; }; + 9583EC8BD5CEB3AF7B3F5B83709C7A44 /* JSCExecutorFactory.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = JSCExecutorFactory.mm; sourceTree = ""; }; + 959E02EDFE2FC16928D069CD4618BC12 /* RNGestureHandlerButton.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNGestureHandlerButton.h; path = ios/RNGestureHandlerButton.h; sourceTree = ""; }; + 95B6921F2E0D5D99F5CC1A7BC8746CB8 /* BSG_KSObjC.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSObjC.c; sourceTree = ""; }; + 95DF25C1EECA72B7CA9635F569B6B7F3 /* RNSScreen.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNSScreen.m; path = ios/RNSScreen.m; sourceTree = ""; }; + 95E3FF9E4237671F1324CEA5E5D3DBE8 /* installation.md */ = {isa = PBXFileReference; includeInIndex = 1; name = installation.md; path = docs/installation.md; sourceTree = ""; }; + 95EA7F97D487D4E28EA607752A53D9A5 /* RCTTransformAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTTransformAnimatedNode.m; sourceTree = ""; }; 95F672D173395EBA22AF0884C6C8915F /* FIRInstanceIDTokenOperation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstanceIDTokenOperation.h; path = Firebase/InstanceID/FIRInstanceIDTokenOperation.h; sourceTree = ""; }; - 95FAABA84BF67C347FE880EFCFC536D6 /* EXContactsRequester.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXContactsRequester.m; path = EXPermissions/EXContactsRequester.m; sourceTree = ""; }; 9602665ED7A4FCF32AFDE7F8439C8C55 /* msa_macro.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = msa_macro.h; path = src/dsp/msa_macro.h; sourceTree = ""; }; - 963658A67F583C063C47E4961BBF9F72 /* LICENSE.txt */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE.txt; sourceTree = ""; }; - 963E3E54C7919C504651B8E791832E83 /* RNNotificationUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNNotificationUtils.h; path = RNNotifications/RNNotificationUtils.h; sourceTree = ""; }; - 96415BBAA19ADD3C96A17BF635D3D1CC /* RCTImageURLLoader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageURLLoader.h; path = Libraries/Image/RCTImageURLLoader.h; sourceTree = ""; }; - 9642307CFE69843F8EC6FA3D05587A1A /* EXVideoPlayerViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = EXVideoPlayerViewController.h; sourceTree = ""; }; + 961828EA321B88CA49122824675BF27C /* RNFirebaseDatabaseReference.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNFirebaseDatabaseReference.h; sourceTree = ""; }; + 9618FE3ED8CEACEEDC70C22C5216DEB6 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; + 965CDFBB1BD166BB219A0030A7C0C9FB /* Instance.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = Instance.cpp; sourceTree = ""; }; 965EC53F67148F2FB7C1C52C636A654B /* Format.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = Format.cpp; path = folly/Format.cpp; sourceTree = ""; }; - 9667D6891677A0AAA9920C5B89D717E3 /* UMImageLoaderInterface.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMImageLoaderInterface.xcconfig; sourceTree = ""; }; - 966BEA81EA3259693A21B0C8773FFFA3 /* RCTTextSelection.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTextSelection.h; sourceTree = ""; }; - 96867B9D40020D69A2C4C29126C0524C /* React.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = React.xcconfig; sourceTree = ""; }; - 969494DAF2F14EBC24BD4CFD56BD41AC /* BugsnagKSCrashSysInfoParser.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagKSCrashSysInfoParser.m; sourceTree = ""; }; - 96A951F4E62E4175EE6FF64DBCD63734 /* BugsnagSessionTracker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagSessionTracker.h; sourceTree = ""; }; + 969E94DB080007C79EE1C6770135A2D5 /* BSG_KSLogger.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSLogger.h; sourceTree = ""; }; + 96A92634A41C53331A90F02931E662D9 /* UIImage+Resize.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIImage+Resize.m"; path = "ios/src/UIImage+Resize.m"; sourceTree = ""; }; 96BA55D82ECFF1108092369C40805752 /* anim_encode.c */ = {isa = PBXFileReference; includeInIndex = 1; name = anim_encode.c; path = src/mux/anim_encode.c; sourceTree = ""; }; + 96D449172474B67F75AEB11C04EB8FE0 /* RCTSegmentedControlManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSegmentedControlManager.m; sourceTree = ""; }; + 972CDC068BFD39E07DB81AD634F73258 /* UIResponder+FirstResponder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIResponder+FirstResponder.h"; path = "lib/UIResponder+FirstResponder.h"; sourceTree = ""; }; + 974CF72F019FFD15DF14B08971B6587C /* React-jsinspector-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-jsinspector-dummy.m"; sourceTree = ""; }; 975D51C22494655692ADF60A40FC9F94 /* UIImageView+WebCache.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIImageView+WebCache.h"; path = "SDWebImage/Core/UIImageView+WebCache.h"; sourceTree = ""; }; - 97652E20DB8DBBE8592A74E75E289BCF /* RCTRootView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTRootView.m; sourceTree = ""; }; + 976F7A2402DE1ECBB4C1458711ADD7F4 /* JSCallInvoker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = JSCallInvoker.h; path = jscallinvoker/ReactCommon/JSCallInvoker.h; sourceTree = ""; }; + 979669F74E09BDB7CDBEF7A2B6A9B34F /* RNFirebaseCrashlytics.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNFirebaseCrashlytics.h; sourceTree = ""; }; 979A76AD19363B9D26207764CC5EE2C2 /* FirebaseCoreDiagnosticsInterop.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = FirebaseCoreDiagnosticsInterop.xcconfig; sourceTree = ""; }; - 97CA2C9944040D8E3487507E0506EBFB /* RCTTurboModuleManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTurboModuleManager.h; sourceTree = ""; }; - 97D54E84787A915F4248890314F017E6 /* UMViewManagerAdapterClassesRegistry.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = UMViewManagerAdapterClassesRegistry.m; sourceTree = ""; }; - 9801F115F537316FFFC074DD1EE6D720 /* EXPermissions.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = EXPermissions.xcconfig; sourceTree = ""; }; + 980C9AA781192DA5461ABE8735B98A92 /* RCTBlobCollector.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBlobCollector.h; sourceTree = ""; }; 9823CB2C7479BFFC9C9AA170BD0CBB10 /* SDImageIOCoder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageIOCoder.h; path = SDWebImage/Core/SDImageIOCoder.h; sourceTree = ""; }; - 98305923090289A42F8E6DE81E905800 /* RCTEventEmitter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTEventEmitter.h; sourceTree = ""; }; - 9844F24E14A23FC4D4193BCFDBE1D3EF /* RNGestureHandlerEvents.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNGestureHandlerEvents.m; path = ios/RNGestureHandlerEvents.m; sourceTree = ""; }; - 9852E028331B964DD6FA5438D714650C /* SRWebSocket.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SRWebSocket.h; path = SocketRocket/SRWebSocket.h; sourceTree = ""; }; - 985F95F23921DC850D948490B4FB6A1A /* UMUtilitiesInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMUtilitiesInterface.h; sourceTree = ""; }; - 987D5C4E77696336363C3474CD98C269 /* RNDeviceInfo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNDeviceInfo.h; path = ios/RNDeviceInfo/RNDeviceInfo.h; sourceTree = ""; }; - 9895EB822CA5AB1EAD8CDC90429ECE7E /* react-native-slider-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "react-native-slider-dummy.m"; sourceTree = ""; }; - 98C1316FCB22EDA6317DCA981F721C04 /* RNFirebaseAdMobBannerManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNFirebaseAdMobBannerManager.h; sourceTree = ""; }; - 9910761C70985104D9B9EB9569F9E898 /* SRConstants.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = SRConstants.h; sourceTree = ""; }; + 9852B50C5269E9DD077E852495902588 /* 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; }; + 986BF827521FEAD00289100D0694D7B7 /* JSExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = JSExecutor.h; sourceTree = ""; }; + 9897ED2BDCCDC32C6D76B2DD9634C6E8 /* UMFontScalerInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMFontScalerInterface.h; path = UMFontInterface/UMFontScalerInterface.h; sourceTree = ""; }; + 989D7398E57E8B2B01EF3DDF443D6A1D /* RCTImageLoader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageLoader.h; path = React/CoreModules/RCTImageLoader.h; sourceTree = ""; }; + 98A410FC602339458820164A11F2353C /* RCTActivityIndicatorViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTActivityIndicatorViewManager.h; sourceTree = ""; }; + 98A4E931EB603C1D5C3BE5D6D5BAB84C /* RCTSettingsManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTSettingsManager.h; path = Libraries/Settings/RCTSettingsManager.h; sourceTree = ""; }; + 98B81BC7A3053A89F53945DECFB56375 /* RCTSurfaceView+Internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RCTSurfaceView+Internal.h"; sourceTree = ""; }; + 98C1DBFA71052149F3EE5D9EFC687522 /* QBAssetsViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = QBAssetsViewController.m; path = ios/QBImagePicker/QBImagePicker/QBAssetsViewController.m; sourceTree = ""; }; + 98DEBDD5CA80657E6FED84E7AC4B3E3A /* UMAccelerometerInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMAccelerometerInterface.h; path = UMSensorsInterface/UMAccelerometerInterface.h; sourceTree = ""; }; 993AC02EC1C111E4334D17D3E0BBE05E /* signalhandler.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = signalhandler.cc; path = src/signalhandler.cc; sourceTree = ""; }; - 9946A4BF5077CF64BDD518BCDA8F4ECF /* FFFastImageViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FFFastImageViewManager.m; path = ios/FastImage/FFFastImageViewManager.m; sourceTree = ""; }; - 994B165874A7AC63236C23D219FD4272 /* REATransition.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REATransition.m; sourceTree = ""; }; - 9978C94F23479A2F0EB1600AB83103DE /* UMModuleRegistryAdapter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = UMModuleRegistryAdapter.m; sourceTree = ""; }; - 998EEDC93302BD3DF1B6DCB89EAB86B1 /* 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; }; + 993C4DCA49A1D0EC883E73C5248D148F /* de.lproj */ = {isa = PBXFileReference; includeInIndex = 1; name = de.lproj; path = ios/QBImagePicker/QBImagePicker/de.lproj; sourceTree = ""; }; + 9961D634417BB323B4F4DCEF34E08B0C /* RCTDataRequestHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTDataRequestHandler.h; path = Libraries/Network/RCTDataRequestHandler.h; sourceTree = ""; }; 999C11E9F0B6529BC62034D8CCC9BC0B /* FIRInstallationsLogger.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstallationsLogger.m; path = FirebaseInstallations/Source/Library/FIRInstallationsLogger.m; sourceTree = ""; }; - 99A3A6F2044FAC845D8EB90E53977206 /* RNFirebaseDatabase.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNFirebaseDatabase.m; sourceTree = ""; }; - 99B418EDEB220C1A0BCD1A0A0B8156E7 /* JSExecutor.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = JSExecutor.cpp; sourceTree = ""; }; - 99C590A2A3E280556E807975D1F0E755 /* TurboModuleBinding.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = TurboModuleBinding.cpp; path = turbomodule/core/TurboModuleBinding.cpp; sourceTree = ""; }; - 99F77BD252D247427D31DDA50F27E380 /* RCTRedBox.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTRedBox.h; sourceTree = ""; }; + 99A8E222EFEA001C6D7351280E42D58B /* React-RCTVibration-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-RCTVibration-prefix.pch"; sourceTree = ""; }; + 99AF4DFDE2ABD62C27EAF18027F31333 /* BugsnagReactNative.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = BugsnagReactNative.xcconfig; sourceTree = ""; }; + 99BA76DC5026C5A6F9A2550C28426BC0 /* UMEventEmitterService.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMEventEmitterService.h; sourceTree = ""; }; + 99CCC935F2D2DCE7B8B37E98E8185E00 /* RCTRawTextViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTRawTextViewManager.m; sourceTree = ""; }; + 99D3168ADFE03596ED5D7E8D4E6932BD /* RCTModuleData.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTModuleData.mm; sourceTree = ""; }; + 99E407056F1EB32758CF672845CA94C0 /* REAModule.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = REAModule.m; path = ios/REAModule.m; sourceTree = ""; }; 9A03EB9B87FF49512AC6907C1B9AA221 /* Pods-RocketChatRN-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Pods-RocketChatRN-dummy.m"; sourceTree = ""; }; - 9A06BAE3BDFDC52A4DCD355E7C178A53 /* YGStyle.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = YGStyle.cpp; path = yoga/YGStyle.cpp; sourceTree = ""; }; 9A4D3B3B310D9827F2482B1F3DE8CC69 /* bignum-dtoa.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = "bignum-dtoa.cc"; path = "double-conversion/bignum-dtoa.cc"; sourceTree = ""; }; - 9A572F79CC9FE7F5B756A0975E467AAB /* KeyboardTrackingViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = KeyboardTrackingViewManager.h; path = lib/KeyboardTrackingViewManager.h; sourceTree = ""; }; + 9A5960405F9D7518E1A2F0362AA7F19A /* UMReactNativeAdapter.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = UMReactNativeAdapter.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; 9A5D533C41D3DCA0AE4501ABA408A5EF /* muxinternal.c */ = {isa = PBXFileReference; includeInIndex = 1; name = muxinternal.c; path = src/mux/muxinternal.c; sourceTree = ""; }; + 9A61E6E4B2351E3A08F9D5CC8D16E8DE /* React-jsi.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-jsi.xcconfig"; sourceTree = ""; }; 9A65228A597C9CDF1630D3E33E79C2E7 /* SDWeakProxy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWeakProxy.m; path = SDWebImage/Private/SDWeakProxy.m; sourceTree = ""; }; - 9A734040A5B5A83A3725D4245DF81EA9 /* RecoverableError.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RecoverableError.h; sourceTree = ""; }; - 9A7D6A73E5DA89C445ABE9F2101C73BC /* RNRootView.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RNRootView.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - 9A7EFE22C7A1D800D93010278E35C114 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; - 9A9758E88D5B4159C227D4E98B9D4B1D /* BugsnagSessionTrackingPayload.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagSessionTrackingPayload.h; sourceTree = ""; }; - 9AA5595991C741CEE6643FADA2FBC7AD /* jsi-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "jsi-inl.h"; sourceTree = ""; }; + 9A70159DAD434BBBC64A38034D0D4803 /* RCTActivityIndicatorView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTActivityIndicatorView.m; sourceTree = ""; }; + 9A8D3E5BBBD8684107593E5F4D30283C /* RCTAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTAnimatedNode.h; sourceTree = ""; }; 9AB0FF969520EECB0B36AF7E6D88CD2D /* GULNetworkConstants.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULNetworkConstants.h; path = GoogleUtilities/Network/Private/GULNetworkConstants.h; sourceTree = ""; }; - 9AC4E0C4B283E74D66F28360F59D51A7 /* RNReanimated-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNReanimated-prefix.pch"; sourceTree = ""; }; 9AE4C4F557F4921C9D27A6E75DDB9A1A /* ScopeGuard.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = ScopeGuard.cpp; path = folly/ScopeGuard.cpp; sourceTree = ""; }; - 9AF4A45F8B7BBB13BDF8B609AFF309DC /* RCTFont.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTFont.mm; sourceTree = ""; }; - 9B22B4592DEE5DD9369F5D576E118B19 /* RNCCameraRollManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCCameraRollManager.h; path = ios/RNCCameraRollManager.h; sourceTree = ""; }; - 9B51DF7B5215F677AB26AF7126F92F77 /* RNFirebaseLinks.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNFirebaseLinks.m; sourceTree = ""; }; + 9B1F2DF1BECF9F85C9D31E1FBBD1B43E /* UIImage+Resize.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIImage+Resize.h"; path = "ios/src/UIImage+Resize.h"; sourceTree = ""; }; + 9B5AE71365E5C1AB4687BC99014AA804 /* UIView+Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "UIView+Private.h"; sourceTree = ""; }; 9B6AE09786B2423B11C27D00079FCE17 /* GDTCORUploadPackage_Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCORUploadPackage_Private.h; path = GoogleDataTransport/GDTCORLibrary/Private/GDTCORUploadPackage_Private.h; sourceTree = ""; }; + 9B8036D6004AA4DC9A6690B2DF2AAC63 /* RNGestureHandlerManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNGestureHandlerManager.m; path = ios/RNGestureHandlerManager.m; sourceTree = ""; }; + 9B8E528E0769D9EDD4AA2875221D0FC2 /* BugsnagBreadcrumb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagBreadcrumb.h; sourceTree = ""; }; + 9BA143200912C794A9C68A492EF45BBE /* RCTSurfaceRootShadowViewDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSurfaceRootShadowViewDelegate.h; sourceTree = ""; }; 9BE700AB1A857567583B903EB1F58B73 /* FIRInstanceID.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstanceID.h; path = Firebase/InstanceID/Public/FIRInstanceID.h; sourceTree = ""; }; - 9C117BD5672D5E429709D96222462AFA /* RNFirebaseCrashlytics.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNFirebaseCrashlytics.h; sourceTree = ""; }; - 9C123303B7C794E103EC360B0D050AD3 /* React-RCTSettings-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-RCTSettings-dummy.m"; sourceTree = ""; }; - 9C4EEBB15D16DA2243DE8D1FEB106E0E /* RCTGIFImageDecoder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTGIFImageDecoder.h; path = Libraries/Image/RCTGIFImageDecoder.h; sourceTree = ""; }; + 9C53F60F154B44CD7B7D8F3BDBE35516 /* RNRootView.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RNRootView.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; 9C6750D1449BBDDD153063D5BC8E25D0 /* FIRCoreDiagnosticsData.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCoreDiagnosticsData.h; path = Interop/CoreDiagnostics/Public/FIRCoreDiagnosticsData.h; sourceTree = ""; }; - 9C7874D6708620C50D14C4410799AEFD /* React-RCTLinking-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-RCTLinking-prefix.pch"; sourceTree = ""; }; - 9C85407951B41F33062F9DFCC058306C /* RCTPickerManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTPickerManager.h; sourceTree = ""; }; - 9C8EA2D9F970036EE5F61BE816166DBF /* react-native-jitsi-meet-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "react-native-jitsi-meet-prefix.pch"; sourceTree = ""; }; - 9CA88B119DDB073FC3D1C7EE47908BE1 /* BSG_KSCrashReportFields.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashReportFields.h; sourceTree = ""; }; + 9C908A705746AA11B0244833E9C9C840 /* RCTComponentEvent.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTComponentEvent.m; sourceTree = ""; }; 9CB6851B50895A42D3F7C877300D7C7A /* FIRInstanceIDTokenDeleteOperation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstanceIDTokenDeleteOperation.m; path = Firebase/InstanceID/FIRInstanceIDTokenDeleteOperation.m; sourceTree = ""; }; 9CC2E2273ED5FE89DBB756223A07E524 /* double-conversion.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = "double-conversion.cc"; path = "double-conversion/double-conversion.cc"; sourceTree = ""; }; 9CE153AFAE2F96D0F934D1BAF6939CCD /* GULSwizzler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULSwizzler.h; path = GoogleUtilities/MethodSwizzler/Private/GULSwizzler.h; sourceTree = ""; }; - 9CFEF4B2F71FFC3B4CECF95138A92078 /* BugsnagReactNative.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = BugsnagReactNative.xcconfig; sourceTree = ""; }; - 9D66A331ECD318AD1EEC4BA57AABA5A8 /* RNPinchHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNPinchHandler.h; sourceTree = ""; }; - 9D8CE8D79AD7CD91A6019AF9DB1A1495 /* EXFileSystem.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXFileSystem.h; path = EXFileSystem/EXFileSystem.h; sourceTree = ""; }; + 9D14418A9FCD05F5C0F3B6B2BBF501B0 /* TurboModuleBinding.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = TurboModuleBinding.cpp; path = turbomodule/core/TurboModuleBinding.cpp; sourceTree = ""; }; + 9D8B89DC3B0341D3E79D845CE3710EF9 /* RNSScreenStackHeaderConfig.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNSScreenStackHeaderConfig.h; path = ios/RNSScreenStackHeaderConfig.h; sourceTree = ""; }; + 9D8E2C2C622582DECC25843C7689124A /* ARTLinearGradient.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = ARTLinearGradient.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; }; + 9DC25696DAF43807F365F44F575C4E8A /* EXDownloadDelegate.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXDownloadDelegate.m; path = EXFileSystem/EXDownloadDelegate.m; sourceTree = ""; }; 9DC3538131FBA43CF7F442029413C750 /* FBLPromise+Recover.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "FBLPromise+Recover.m"; path = "Sources/FBLPromises/FBLPromise+Recover.m"; sourceTree = ""; }; 9DC55014AFA153FD4E3CBC4A4A6CEF69 /* FIRInstanceIDTokenInfo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstanceIDTokenInfo.h; path = Firebase/InstanceID/FIRInstanceIDTokenInfo.h; sourceTree = ""; }; - 9DCAE61686543EFD1D0B3E045B7F0C5C /* NSTextStorage+FontScaling.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "NSTextStorage+FontScaling.m"; sourceTree = ""; }; - 9DEE816A6D7411DCF8B13E18DFC6C8A0 /* RCTConvert+FFFastImage.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "RCTConvert+FFFastImage.m"; path = "ios/FastImage/RCTConvert+FFFastImage.m"; sourceTree = ""; }; - 9E05F77B6AF44F418C6E077CED2FBB93 /* RCTEventDispatcher.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTEventDispatcher.m; sourceTree = ""; }; - 9E0FF4ADBE373E8B88BEEB975D4CC769 /* ReactCommon-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "ReactCommon-dummy.m"; sourceTree = ""; }; - 9E2130E471529F403B268FD0D5717250 /* JSCExecutorFactory.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = JSCExecutorFactory.h; sourceTree = ""; }; - 9E5E29BC8A0F08A228A3013929100A89 /* RCTTrackingAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTrackingAnimatedNode.h; sourceTree = ""; }; - 9E5E583DDA13898683E5CA0D326778FC /* BSG_KSObjC.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSObjC.c; sourceTree = ""; }; - 9E74C17E7160312F910F44D6B6B8340A /* RCTInspector.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTInspector.mm; sourceTree = ""; }; + 9E3F1EC012B1E9084C73D718D53D6489 /* RCTLocalAssetImageLoader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTLocalAssetImageLoader.h; path = Libraries/Image/RCTLocalAssetImageLoader.h; sourceTree = ""; }; + 9E58D9CA714675ECC7520AD8614504E1 /* EXAVPlayerData.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXAVPlayerData.m; path = EXAV/EXAVPlayerData.m; sourceTree = ""; }; + 9E6B32C790A21A841EDA4BC5A9401C92 /* RCTNetworking.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTNetworking.h; path = Libraries/Network/RCTNetworking.h; sourceTree = ""; }; 9E799F0463BF1E9CB29AB2DD41EB7846 /* FIRAnalyticsConfiguration.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAnalyticsConfiguration.h; path = FirebaseCore/Sources/Private/FIRAnalyticsConfiguration.h; sourceTree = ""; }; 9E97258EDDE1B0FF09F0FC66346AD27A /* lossless_enc_msa.c */ = {isa = PBXFileReference; includeInIndex = 1; name = lossless_enc_msa.c; path = src/dsp/lossless_enc_msa.c; sourceTree = ""; }; - 9EC42C12870C913DC0C019147B261D28 /* FBReactNativeSpec-generated.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = "FBReactNativeSpec-generated.mm"; path = "FBReactNativeSpec/FBReactNativeSpec-generated.mm"; sourceTree = ""; }; - 9F0BE9354B21DB8B50783D86FACC9768 /* RCTMaskedView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTMaskedView.m; sourceTree = ""; }; - 9F51578C89DD9E17BD6B471ED8C51D18 /* BugsnagErrorReportApiClient.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagErrorReportApiClient.m; sourceTree = ""; }; - 9F6875CF19B5DBBF63F716646E5ADDDC /* RCTShadowView+Internal.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RCTShadowView+Internal.m"; sourceTree = ""; }; - 9F8338440D9AC78C37FECEB66F768F69 /* RCTRootView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTRootView.h; sourceTree = ""; }; - 9F9747D57C6D15CD10C373F1E196CDB5 /* RCTRootContentView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTRootContentView.m; sourceTree = ""; }; - 9FA90F2A19EA39D751067C60883C265D /* de.lproj */ = {isa = PBXFileReference; includeInIndex = 1; name = de.lproj; path = ios/QBImagePicker/QBImagePicker/de.lproj; sourceTree = ""; }; - 9FC8A6ED4862330A88C805F77FF25F20 /* KeyboardTrackingViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = KeyboardTrackingViewManager.m; path = lib/KeyboardTrackingViewManager.m; sourceTree = ""; }; + 9EDFF0E0FB610A1DE60E52FE94A877F4 /* ARTTextManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = ARTTextManager.h; sourceTree = ""; }; + 9F018843E2DC370532D916D1C32DFF36 /* RCTBaseTextInputView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBaseTextInputView.h; sourceTree = ""; }; + 9F231E7A508F455940C09000159F5F86 /* EXAppRecordInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = EXAppRecordInterface.h; sourceTree = ""; }; + 9F3D99E9230C8D077937CA35A4A2B807 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; + 9F56B045F7383F4DDF69AB5032C448A9 /* RCTDevSettings.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTDevSettings.h; sourceTree = ""; }; + 9F5DA438A0B5146F8AA8B653B1C9DE05 /* RCTActionSheetManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTActionSheetManager.m; sourceTree = ""; }; + 9F6CD9F6F458EF420C5CD6FEEC5CF91B /* RCTNativeModule.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTNativeModule.mm; sourceTree = ""; }; + 9FA2085627B2BD75045C8ECB6919AFF9 /* RCTReloadCommand.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTReloadCommand.m; sourceTree = ""; }; 9FE7CAD15D46DC8EB22E034ACFB28888 /* FIRInstallationsStoredAuthToken.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstallationsStoredAuthToken.m; path = FirebaseInstallations/Source/Library/InstallationsStore/FIRInstallationsStoredAuthToken.m; sourceTree = ""; }; - 9FF10750196677D1DEC87898FEF4B219 /* RCTAppState.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTAppState.m; sourceTree = ""; }; - 9FFF9F7F29AF91E06560968DC19A7AE7 /* UMBarCodeScannerInterface.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = UMBarCodeScannerInterface.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - A00C952231F8F43E9590FCAFC1C119B5 /* EXAV-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "EXAV-prefix.pch"; sourceTree = ""; }; + 9FED12192B0942108CD3EC565594B9ED /* ARTLinearGradient.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = ARTLinearGradient.m; sourceTree = ""; }; + 9FFCD9B03BD9FEEC8AA4EC08773BBC5D /* RCTPerfMonitor.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTPerfMonitor.m; sourceTree = ""; }; + A02D2DAD961AAC601903EB6B6D658838 /* RNGestureHandlerDirection.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNGestureHandlerDirection.h; path = ios/RNGestureHandlerDirection.h; sourceTree = ""; }; + A0560F8B27270D8FF2B4CFBBBB94AF16 /* RNNativeViewHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNNativeViewHandler.h; sourceTree = ""; }; A05BCBED3EF0DF896274C0F7F49E194B /* FBLPromise+Do.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FBLPromise+Do.h"; path = "Sources/FBLPromises/include/FBLPromise+Do.h"; sourceTree = ""; }; - A0A1B18683237ABED0E0AECAC13E49AA /* rn-extensions-share-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "rn-extensions-share-dummy.m"; sourceTree = ""; }; - A0BE77DA71704DDC94E998DEC7D42DDF /* localNotifications.md */ = {isa = PBXFileReference; includeInIndex = 1; name = localNotifications.md; path = docs/localNotifications.md; sourceTree = ""; }; + A06A8A3595975643253C9A50DAD2043A /* BSG_KSBacktrace_Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSBacktrace_Private.h; sourceTree = ""; }; + A081C2890E864E3504B3B4552B972C53 /* QBAlbumCell.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = QBAlbumCell.h; path = ios/QBImagePicker/QBImagePicker/QBAlbumCell.h; sourceTree = ""; }; A0DE2AA756FD1093A58487EEF833F499 /* FIRInstanceIDStringEncoding.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstanceIDStringEncoding.h; path = Firebase/InstanceID/FIRInstanceIDStringEncoding.h; sourceTree = ""; }; A0EA3217B857F6515E5C3725E793D70A /* FIRInstallationsAPIService.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstallationsAPIService.h; path = FirebaseInstallations/Source/Library/InstallationsAPI/FIRInstallationsAPIService.h; sourceTree = ""; }; - A1050F11CBCC5A08C0F9B6D02F0AED86 /* RNVectorIcons-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNVectorIcons-dummy.m"; sourceTree = ""; }; - A157050EDC841EA67391B48FD12EDD06 /* QBAlbumCell.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = QBAlbumCell.h; path = ios/QBImagePicker/QBImagePicker/QBAlbumCell.h; sourceTree = ""; }; + A0F59E137E728AEF7C5C6AB9578CFADE /* BSG_KSJSONCodec.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSJSONCodec.c; sourceTree = ""; }; + A11398DE77D2B7F8880A1495071FA359 /* UMCameraInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMCameraInterface.h; path = UMCameraInterface/UMCameraInterface.h; sourceTree = ""; }; + A1193969A1702DA6744E95A06E7CD44C /* RNForceTouchHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNForceTouchHandler.h; sourceTree = ""; }; + A1307B3A72BF7EEAE8A6CCCC08D63FF3 /* YGNodePrint.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = YGNodePrint.cpp; path = yoga/YGNodePrint.cpp; sourceTree = ""; }; + A13F787F16E1F201620EEE82BD0B252B /* RNPanHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNPanHandler.m; sourceTree = ""; }; A15D9453B10C17715504A05E32605847 /* 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 = ""; }; - A181FA94ADBBC86FBED598FD2D61AE64 /* BSGSerialization.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BSGSerialization.m; sourceTree = ""; }; - A18D0A6FBFFC4082D75B81EDCFCCF6D8 /* RCTSurfaceRootShadowViewDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSurfaceRootShadowViewDelegate.h; sourceTree = ""; }; - A1ACC3FD8D64CE7DC825F41BAEDE8DEA /* Foundation.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = Foundation.ttf; path = Fonts/Foundation.ttf; sourceTree = ""; }; - A1B383B4949CD894FE47DF37011D8B08 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; - A1B68EBB7391E8F92AAC2C0B00AF7932 /* REAStyleNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REAStyleNode.m; sourceTree = ""; }; + A175373ED871D8A311F07D9C8124C01E /* BSG_KSCrashReportWriter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashReportWriter.h; sourceTree = ""; }; A1C0F847D5B6DD6759E31413551F6F58 /* UIButton+WebCache.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIButton+WebCache.h"; path = "SDWebImage/Core/UIButton+WebCache.h"; sourceTree = ""; }; - A1E8041757FCCA6D26A29DA6A83B478C /* UMReactLogHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = UMReactLogHandler.m; sourceTree = ""; }; A1EC5104042BAFCD052B353B775968D7 /* CGGeometry+RSKImageCropper.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "CGGeometry+RSKImageCropper.m"; path = "RSKImageCropper/CGGeometry+RSKImageCropper.m"; sourceTree = ""; }; A1F0899513A15CABEC77801711DA43EC /* lossless_enc_mips32.c */ = {isa = PBXFileReference; includeInIndex = 1; name = lossless_enc_mips32.c; path = src/dsp/lossless_enc_mips32.c; sourceTree = ""; }; - A205548659AB855F56F731B50745BD2D /* BSG_KSCrash.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrash.h; sourceTree = ""; }; + A20991E1ABDC9BC64B827B8B80EE252B /* UMPermissionsInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMPermissionsInterface.h; path = UMPermissionsInterface/UMPermissionsInterface.h; sourceTree = ""; }; + A20E1F2D1B98BFF885E55A7C9EEC21F6 /* RootView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RootView.h; path = ios/RootView.h; sourceTree = ""; }; A225ED83E33DC48D25B9FF35BA50CCD0 /* libEXAppLoaderProvider.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libEXAppLoaderProvider.a; path = libEXAppLoaderProvider.a; sourceTree = BUILT_PRODUCTS_DIR; }; + A2692B01E0F056C61892A9B46420A99C /* RCTReconnectingWebSocket.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCTReconnectingWebSocket.m; path = Libraries/WebSocket/RCTReconnectingWebSocket.m; sourceTree = ""; }; A2894FAA81841C7DE26398644B1F3ACD /* GULReachabilityChecker.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GULReachabilityChecker.m; path = GoogleUtilities/Reachability/GULReachabilityChecker.m; sourceTree = ""; }; - A2A8038DD6AE24F536FEA2AA939F1D26 /* UMPermissionsInterface.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = UMPermissionsInterface.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - A2B875E2EB4BD61AC13118FFD9A943D5 /* Yoga-internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "Yoga-internal.h"; path = "yoga/Yoga-internal.h"; sourceTree = ""; }; - A2C2BC4FB05DDC6EF560968C5BF8AA93 /* RCTProfileTrampoline-x86_64.S */ = {isa = PBXFileReference; includeInIndex = 1; path = "RCTProfileTrampoline-x86_64.S"; sourceTree = ""; }; + A291D9FB53A8941C253B17C53045229F /* EXAV-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "EXAV-prefix.pch"; sourceTree = ""; }; A2CB7B6EE46AF3166A4B3053A322A61C /* SDGraphicsImageRenderer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDGraphicsImageRenderer.h; path = SDWebImage/Core/SDGraphicsImageRenderer.h; sourceTree = ""; }; + A2CFC3AEB3541720A9E024200FDDF38A /* UMSingletonModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMSingletonModule.h; path = UMCore/UMSingletonModule.h; sourceTree = ""; }; + A2F41F885500B1838C11CA05CCE6114E /* BugsnagKSCrashSysInfoParser.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagKSCrashSysInfoParser.m; sourceTree = ""; }; A2F98D797C5A100E3115EA3505C1DA82 /* GoogleUtilities.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = GoogleUtilities.xcconfig; sourceTree = ""; }; - A2FF9E8F757B79139954AC8169CB7F1A /* RCTFPSGraph.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTFPSGraph.h; sourceTree = ""; }; - A30304C4FE2D283910E52A345B67D389 /* RNNotificationCenterListener.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNNotificationCenterListener.m; path = RNNotifications/RNNotificationCenterListener.m; sourceTree = ""; }; - A3070CBE3065FA5DEE58868B6FD0A8D3 /* RNReanimated-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNReanimated-dummy.m"; sourceTree = ""; }; + A304D665E5550C42813C192A9DD81A9A /* react-native-background-timer-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "react-native-background-timer-dummy.m"; sourceTree = ""; }; + A30FB865B887D7CDD03F8FD5D904A4FB /* FBReactNativeSpec-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "FBReactNativeSpec-dummy.m"; sourceTree = ""; }; A31F188D4B66F6B22F8E86B908FDCAFE /* RSKTouchView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RSKTouchView.h; path = RSKImageCropper/RSKTouchView.h; sourceTree = ""; }; - A32DB30A7B688DA7A3D4D627CC567A96 /* REASetNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REASetNode.h; sourceTree = ""; }; - A337EC126CBDE81BFB5B1489BD2C0646 /* log.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = log.h; path = yoga/log.h; sourceTree = ""; }; - A3736C82FCC63550F526FFA30B72A94D /* RCTSubtractionAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSubtractionAnimatedNode.h; sourceTree = ""; }; + A323E8D7320BDFBB0D244635AD624EAA /* RCTAdditionAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTAdditionAnimatedNode.m; sourceTree = ""; }; + A333C1FD0CBA0F0ACBC0EE1853F50D2E /* RCTAsyncLocalStorage.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTAsyncLocalStorage.h; sourceTree = ""; }; A38CE196FAF4456B06F77B5B9E0CFDBE /* SDImageTransformer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageTransformer.h; path = SDWebImage/Core/SDImageTransformer.h; sourceTree = ""; }; A38D33F827E62F685D432C9A01C918E6 /* FIRLogger.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRLogger.m; path = FirebaseCore/Sources/FIRLogger.m; sourceTree = ""; }; - A3B99A92D54B8F7F66FE4154931AF07E /* react-native-appearance-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "react-native-appearance-dummy.m"; sourceTree = ""; }; - A3E5C4CE53F7B66631A1299DFC538DFC /* EXConstants.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXConstants.m; path = EXConstants/EXConstants.m; sourceTree = ""; }; + A38E63BC17368EEBC2A004D84EDFE87E /* fr.lproj */ = {isa = PBXFileReference; includeInIndex = 1; name = fr.lproj; path = ios/QBImagePicker/QBImagePicker/fr.lproj; sourceTree = ""; }; + A3C1409A99321AC9D3AFDE8F8B4606FF /* UMCore.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMCore.xcconfig; sourceTree = ""; }; A3EF6DDC9ECF54BEBC12FEF5478C225C /* FIRInstanceIDCheckinStore.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstanceIDCheckinStore.m; path = Firebase/InstanceID/FIRInstanceIDCheckinStore.m; sourceTree = ""; }; - A3FCF6738E7CCD3B68EE06C013A821C3 /* RCTShadowView+Layout.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RCTShadowView+Layout.h"; sourceTree = ""; }; - A45C1A483A3BDBD66E508CC63B3FA1C6 /* TurboModuleUtils.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = TurboModuleUtils.cpp; path = turbomodule/core/TurboModuleUtils.cpp; sourceTree = ""; }; + A403286D4D96B05EFAD45095F78C0221 /* DeviceUID.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DeviceUID.h; path = ios/RNDeviceInfo/DeviceUID.h; sourceTree = ""; }; + A4044FF471A1F855621DA4EDC7FD0871 /* RCTFrameAnimation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTFrameAnimation.h; sourceTree = ""; }; + A40588D746061F920A89898D60115F4D /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; + A4227A82DCDAC44E5DAA0FAE99F28533 /* ios_time.png */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = image.png; name = ios_time.png; path = docs/images/ios_time.png; sourceTree = ""; }; + A47BC74A3642010E8BF4C76D781F4588 /* RNScreens-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNScreens-dummy.m"; sourceTree = ""; }; + A489C8A991980938256086593ABFAD32 /* BSG_RFC3339DateTool.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BSG_RFC3339DateTool.m; sourceTree = ""; }; A4B5638048C9BE689A53D2981A56EE93 /* FIRInstanceIDAuthService.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstanceIDAuthService.m; path = Firebase/InstanceID/FIRInstanceIDAuthService.m; sourceTree = ""; }; A4CCD66701BA3DC52D7F6038E6A0FE21 /* SDWebImage.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = SDWebImage.xcconfig; sourceTree = ""; }; - A4F5EA988153E3310EADF516601680FA /* RCTDecayAnimation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTDecayAnimation.m; sourceTree = ""; }; + A4FFFF283C6757F72857BBF4B3992490 /* RCTAccessibilityManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTAccessibilityManager.m; sourceTree = ""; }; A5018CAA450033C9F40CBBDC23FA4A74 /* Crashlytics.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Crashlytics.h; path = iOS/Crashlytics.framework/Headers/Crashlytics.h; sourceTree = ""; }; A504DDAED24ACC8CF4D4D4E69E078BAA /* nanopb.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = nanopb.xcconfig; sourceTree = ""; }; - A5106FDAF2638B10BBE85A9909699C37 /* BugsnagSessionFileStore.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagSessionFileStore.m; sourceTree = ""; }; - A51B066308182EAFF665F73AD486C2CB /* RCTRedBoxExtraDataViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTRedBoxExtraDataViewController.m; sourceTree = ""; }; + A509DDB7C50562B7C76B46E1A50DD500 /* EXPermissions-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "EXPermissions-dummy.m"; sourceTree = ""; }; + A5214F5196D7E17C1062B99B2BB0E766 /* YGMacros.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YGMacros.h; path = yoga/YGMacros.h; sourceTree = ""; }; + A547E58DF1C01BD35292D94C470A2ED3 /* RNVectorIconsManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNVectorIconsManager.h; path = RNVectorIconsManager/RNVectorIconsManager.h; sourceTree = ""; }; A54A0AB081F02B68C732C27229CC546A /* SDImageCodersManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageCodersManager.h; path = SDWebImage/Core/SDImageCodersManager.h; sourceTree = ""; }; - A58343B7048068BA0537B274CBCBE64F /* FBReactNativeSpec.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBReactNativeSpec.h; path = FBReactNativeSpec/FBReactNativeSpec.h; sourceTree = ""; }; - A5F18E83AD7B95E2A2B5DE16AB228D3A /* React-jsi-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-jsi-dummy.m"; sourceTree = ""; }; - A61AC0C8B33BC86F5353944CB256E66A /* RCTExceptionsManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTExceptionsManager.h; path = React/CoreModules/RCTExceptionsManager.h; sourceTree = ""; }; - A625FD8F2EA66347AA72D5E4FE3EFFD1 /* BugsnagSession.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagSession.h; sourceTree = ""; }; + A5757EC58B549528F0E8386F2A12F2C1 /* BugsnagSessionTracker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagSessionTracker.h; sourceTree = ""; }; + A5A12E39560D995686640457604A09D5 /* ImageCropPicker.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = ImageCropPicker.m; path = ios/src/ImageCropPicker.m; sourceTree = ""; }; + A5B5A06151FF53640D69899E12C43896 /* RCTErrorCustomizer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTErrorCustomizer.h; sourceTree = ""; }; + A5BC1B430DF5AE6B833ED3A37AF2D9A7 /* RCTDevSettings.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTDevSettings.mm; sourceTree = ""; }; + A5EEB97B307AF3C4767B6FE824F4AC39 /* RCTSurfaceDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSurfaceDelegate.h; sourceTree = ""; }; + A5F42D476AE4ED3EA3E1ED52F62E22F0 /* UMSingletonModule.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = UMSingletonModule.m; path = UMCore/UMSingletonModule.m; sourceTree = ""; }; + A5F448386CBE4CD578FDCAC472B044C8 /* TurboCxxModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TurboCxxModule.h; path = turbomodule/core/TurboCxxModule.h; sourceTree = ""; }; + A6026F4325389EE05BF49376F2C6AC1F /* EXAppLoaderProvider.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = EXAppLoaderProvider.xcconfig; sourceTree = ""; }; A6279E1E2E3335F1103BFA5A97B32CAA /* cached-powers.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = "cached-powers.cc"; path = "double-conversion/cached-powers.cc"; sourceTree = ""; }; - A643C3CC2044D5E317BC3FCF2DA65F85 /* RNRootView-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNRootView-prefix.pch"; sourceTree = ""; }; - A64A892C9BB5809DD7F08D9DE14A1A28 /* RCTSegmentedControlManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSegmentedControlManager.h; sourceTree = ""; }; - A688ECDA59560C727A18D9A9EC838A62 /* EXWebBrowser-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "EXWebBrowser-dummy.m"; sourceTree = ""; }; + A62D4E50FE0D898488D5ED8DA709D6CA /* Compression.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = Compression.m; path = ios/src/Compression.m; sourceTree = ""; }; + A660BC06C3C42712042ED0388286DE7B /* REANode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REANode.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; }; - A6A2E7C068812D9EB15ED0E55FEEE7E4 /* REANode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REANode.h; sourceTree = ""; }; + A6B61E11092D997709ECB60B44D7DBB8 /* EXConstants.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = EXConstants.xcconfig; sourceTree = ""; }; A6C7344EA1DD6836B5D82E682D0A59D7 /* NSImage+Compatibility.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSImage+Compatibility.m"; path = "SDWebImage/Core/NSImage+Compatibility.m"; sourceTree = ""; }; - A6CE4513D9C9CADFCE2E8F239F5276CA /* RCTSafeAreaViewLocalData.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSafeAreaViewLocalData.m; sourceTree = ""; }; - A702D8FC4E65539EDE7AFCC50E46B0A3 /* REAStyleNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REAStyleNode.h; sourceTree = ""; }; - A724CB86DBDDC1034E5423677B33B545 /* RCTActionSheetManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTActionSheetManager.h; path = Libraries/ActionSheetIOS/RCTActionSheetManager.h; sourceTree = ""; }; - A731D7BD800AFFE50212974FAEF71DD9 /* RNFetchBlobReqBuilder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNFetchBlobReqBuilder.h; path = ios/RNFetchBlobReqBuilder.h; sourceTree = ""; }; - A7C033AC21B9BB174EC5BA0222B82112 /* SRIOConsumer.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = SRIOConsumer.m; sourceTree = ""; }; - A7C060C8CB3CFCACD29DBD22252B3D73 /* NSURLRequest+SRWebSocket.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSURLRequest+SRWebSocket.h"; path = "SocketRocket/NSURLRequest+SRWebSocket.h"; sourceTree = ""; }; + A6DD518CE86681853265FCA0B58F48F3 /* RNFirebase.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNFirebase.m; path = RNFirebase/RNFirebase.m; sourceTree = ""; }; + A6EC4EA4F64CFAB723AFE96CBB14EC6B /* RCTSafeAreaViewLocalData.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSafeAreaViewLocalData.h; sourceTree = ""; }; + A723F44FAE5881611020AE90C27E625A /* RCTSinglelineTextInputViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSinglelineTextInputViewManager.m; sourceTree = ""; }; + A72A7F7D98EDF07AAD86A60E4CCA3E43 /* RCTTextSelection.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTTextSelection.m; sourceTree = ""; }; + A765350840F28DF7C2FED40DB55E60B3 /* BSG_KSFileUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSFileUtils.h; sourceTree = ""; }; + A765AE10C0799D6B63E133F1DDE1DADA /* RCTSurfaceHostingProxyRootView.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTSurfaceHostingProxyRootView.mm; sourceTree = ""; }; + A765B6A46819F2A5761417E17C78ACC6 /* React-RCTActionSheet.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-RCTActionSheet.xcconfig"; sourceTree = ""; }; + A78A2E361B03399C72BAE17355644251 /* BSG_KSCrashSentry_NSException.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashSentry_NSException.h; sourceTree = ""; }; + A7AC34E2D1E64073AECAF87885D71208 /* BSG_KSCrashSentry_Signal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashSentry_Signal.h; sourceTree = ""; }; + A7DBB9C1159118D927EA6931587997B3 /* RCTInspectorPackagerConnection.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTInspectorPackagerConnection.m; sourceTree = ""; }; + A7E28B85C59EC325E693064F02F09EA9 /* UMSensorsInterface.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMSensorsInterface.xcconfig; sourceTree = ""; }; + A83D8146B3DB1E98F53E543737177FCE /* UMUserNotificationCenterProxyInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMUserNotificationCenterProxyInterface.h; path = UMPermissionsInterface/UMUserNotificationCenterProxyInterface.h; sourceTree = ""; }; A85363A0C59C12E9ABF0D991127F666D /* FIRConfiguration.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRConfiguration.m; path = FirebaseCore/Sources/FIRConfiguration.m; sourceTree = ""; }; - A85C0A3454094BB98E5B9B15030C4AE2 /* FBReactNativeSpec-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "FBReactNativeSpec-prefix.pch"; sourceTree = ""; }; - A862B67A6C938F10F5935FFD3D10F460 /* RNCWebView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCWebView.h; path = ios/RNCWebView.h; sourceTree = ""; }; - A873589A9A4048DE5A1E4F5FFD417951 /* 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; }; + A854F5D9C3D977362678288E58D20C84 /* BSG_KSCrash.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrash.h; sourceTree = ""; }; A88DF20441288B71F15D147211C1C64B /* SDGraphicsImageRenderer.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDGraphicsImageRenderer.m; path = SDWebImage/Core/SDGraphicsImageRenderer.m; sourceTree = ""; }; - A8961D4F92001ADD417D49A3AF4DC252 /* EXFileSystem.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXFileSystem.m; path = EXFileSystem/EXFileSystem.m; sourceTree = ""; }; - A8A7770A070C393FBFF98FEC154A152E /* Utils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Utils.h; path = yoga/Utils.h; sourceTree = ""; }; A8C2E718EEB7FC61E0AF4FF7745365F7 /* FIRInstallationsAuthTokenResultInternal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstallationsAuthTokenResultInternal.h; path = FirebaseInstallations/Source/Library/FIRInstallationsAuthTokenResultInternal.h; sourceTree = ""; }; - A8CAFD204ED4574FA1360D9560434436 /* React-RCTImage-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-RCTImage-dummy.m"; sourceTree = ""; }; - A91632BCF57834B6021F6B7E46C47237 /* UMViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMViewManager.h; path = UMCore/UMViewManager.h; sourceTree = ""; }; - A9203AB661181F0B317A6E63B1A62242 /* UMCore.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = UMCore.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - A93914AD7BBA0852CFDE369494A246B1 /* ModuleRegistry.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = ModuleRegistry.h; sourceTree = ""; }; - A93F01BDE5BE564697AA6E77797E4897 /* RCTReloadCommand.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTReloadCommand.m; sourceTree = ""; }; - A97135A9FF0BCD9BF02F7D39ECD79FA4 /* RCTDevSettings.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTDevSettings.h; sourceTree = ""; }; - A981A7D532F8B1CD877B991FF98460E9 /* RCTConvert+ART.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "RCTConvert+ART.h"; path = "ios/RCTConvert+ART.h"; sourceTree = ""; }; + A9280A7138A590BA6D4E847CCE7F406A /* React-jsinspector-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-jsinspector-prefix.pch"; sourceTree = ""; }; + A9700FE4C6CAAC5DF7823791B7A9F6B8 /* JSIExecutor.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = JSIExecutor.cpp; path = jsireact/JSIExecutor.cpp; sourceTree = ""; }; + A97BB3DA1EFCDEABDE48E811772041A2 /* UMFaceDetectorManagerProvider.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMFaceDetectorManagerProvider.h; path = UMFaceDetectorInterface/UMFaceDetectorManagerProvider.h; sourceTree = ""; }; + A981D9FB40BDBB2546EC08AC9CD14F49 /* EXPermissions-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "EXPermissions-prefix.pch"; sourceTree = ""; }; + A988EFB2A8550B357201230846EBC292 /* react-native-notifications.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "react-native-notifications.xcconfig"; sourceTree = ""; }; A9916A69A97251C8AA9535F6F70AE9DB /* Pods-RocketChatRN.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-RocketChatRN.release.xcconfig"; sourceTree = ""; }; + A9924A02B0332BE333C931246DEDE55E /* BSG_KSCrashSentry_CPPException.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashSentry_CPPException.h; sourceTree = ""; }; A99DA828BE8FDFE29CCA18FF1A666E27 /* token_enc.c */ = {isa = PBXFileReference; includeInIndex = 1; name = token_enc.c; path = src/enc/token_enc.c; sourceTree = ""; }; - A9B02D1D114F0DB20A7F209353DAD25C /* RNFirebaseAuth.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNFirebaseAuth.m; sourceTree = ""; }; - AA1C1618390AB5F98AF7B16B1E54B315 /* RCTCxxConvert.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTCxxConvert.m; sourceTree = ""; }; + A9D023EECEF6EF99FAB5D00FF2748EEB /* BSG_KSCrashSentry_User.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashSentry_User.h; sourceTree = ""; }; + AA104A2D8EC4A9DCF9282439173DB1BB /* ARTTextFrame.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ARTTextFrame.h; path = ios/ARTTextFrame.h; sourceTree = ""; }; + AA3B60EE0DA2A703449E53DAD24B2D31 /* RCTEventEmitter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTEventEmitter.h; sourceTree = ""; }; AA42C4E98C13EF33E441FE62148783CB /* GDTCORTransformer_Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCORTransformer_Private.h; path = GoogleDataTransport/GDTCORLibrary/Private/GDTCORTransformer_Private.h; sourceTree = ""; }; AA4F5619775B05EAF3BD82EDACD91B98 /* FIRInstallationsIDController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstallationsIDController.m; path = FirebaseInstallations/Source/Library/InstallationsIDController/FIRInstallationsIDController.m; sourceTree = ""; }; - AA697145226558BFF883AD6BECA9D4BD /* rn-fetch-blob-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "rn-fetch-blob-dummy.m"; sourceTree = ""; }; - AA71B11D21A5E8F663D6182CCE0AE713 /* RNVectorIcons-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNVectorIcons-prefix.pch"; sourceTree = ""; }; - AA725589A71618077853D75819628D5A /* RCTActivityIndicatorView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTActivityIndicatorView.h; sourceTree = ""; }; - AA732ACDD7AB0D8171B8342B02E96613 /* React-jsiexecutor-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-jsiexecutor-dummy.m"; sourceTree = ""; }; - AAAFB23246600310DB407DC0C43DF033 /* BSG_KSCrashAdvanced.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashAdvanced.h; sourceTree = ""; }; + AAA50A9FFB210D77784EA8FB048F3054 /* RNFirebaseAdMobNativeExpressManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNFirebaseAdMobNativeExpressManager.m; sourceTree = ""; }; AAB27BBE32494400507F8652BE36111F /* filters_mips_dsp_r2.c */ = {isa = PBXFileReference; includeInIndex = 1; name = filters_mips_dsp_r2.c; path = src/dsp/filters_mips_dsp_r2.c; sourceTree = ""; }; AAC30C36CEF4ACB54CE1E6E49DCF3E31 /* GULNetwork.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GULNetwork.m; path = GoogleUtilities/Network/GULNetwork.m; sourceTree = ""; }; - AAC76A793B6C4D88ABB6C27AAD0ACF14 /* UMFontScalerInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMFontScalerInterface.h; path = UMFontInterface/UMFontScalerInterface.h; sourceTree = ""; }; - AAE3EEEEF1FE96C10FCD6AFDE416AC56 /* RNSScreenStack.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNSScreenStack.m; path = ios/RNSScreenStack.m; sourceTree = ""; }; - AB0D25A2375F58A112BFD4D461102F7D /* RNUserDefaults-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNUserDefaults-prefix.pch"; sourceTree = ""; }; - AB2739361BCF15A40439F0B6BA615041 /* TurboModuleUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TurboModuleUtils.h; path = turbomodule/core/TurboModuleUtils.h; sourceTree = ""; }; - AB31DE33FE9D6E90D24D14B2069D4B61 /* ARTGroup.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ARTGroup.h; path = ios/ARTGroup.h; sourceTree = ""; }; - AB39927EBB85CB037E90FA21E4258141 /* react-native-background-timer.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "react-native-background-timer.xcconfig"; sourceTree = ""; }; + AB0419027ACC2037AFACF6BBC785FFB3 /* JSINativeModules.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = JSINativeModules.h; path = jsireact/JSINativeModules.h; sourceTree = ""; }; + AB27674CF19F3B5D1FA2D0A9D0E2C2EB /* RCTKeyboardObserver.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTKeyboardObserver.m; sourceTree = ""; }; + AB2C54B740DA1C3F9624DF4628B9B5B6 /* RCTModuleMethod.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTModuleMethod.h; sourceTree = ""; }; + AB4E1685D5ADB0F9829D8826559E5FA1 /* RCTImageSource.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTImageSource.m; sourceTree = ""; }; AB686584E542E1751A41715CD307E524 /* SDWebImageManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWebImageManager.m; path = SDWebImage/Core/SDWebImageManager.m; sourceTree = ""; }; + AB814E0278F2E23C8075800C8FA068E1 /* LICENSE.txt */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE.txt; sourceTree = ""; }; AB976C1FBBC26BF65B263E79ED2A0E2D /* idec_dec.c */ = {isa = PBXFileReference; includeInIndex = 1; name = idec_dec.c; path = src/dec/idec_dec.c; sourceTree = ""; }; - ABA1B10914BC5CA476BF7378D667FA12 /* RCTTextAttributes.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTTextAttributes.h; path = Libraries/Text/RCTTextAttributes.h; sourceTree = ""; }; ABB34BE98015F83F80BC4216458D9FE9 /* FIRInstanceIDTokenManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstanceIDTokenManager.h; path = Firebase/InstanceID/FIRInstanceIDTokenManager.h; sourceTree = ""; }; ABBAB6A3B14167BE15806D2D4C391430 /* FIRComponentContainer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRComponentContainer.h; path = FirebaseCore/Sources/Private/FIRComponentContainer.h; sourceTree = ""; }; - ABBB5ECF6510D755EC3C81E8F6EA2531 /* RCTImageView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTImageView.m; sourceTree = ""; }; - ABBCF9F2DE522F1DA8F22D2A452F7D62 /* RCTAssert.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTAssert.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; }; - ABF0C932DEF8909B6ECFB16147F5E2EE /* RCTRequired.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RCTRequired.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - ABF3B2ED55A9EBC6C8EF9959140D4B39 /* Yoga.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = Yoga.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + ABD943DFCB5827F150F3FB3EDDCB0F9F /* UMLogManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMLogManager.h; sourceTree = ""; }; ABFB99715FD05FB4DB35E948155D825C /* FirebaseCore-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "FirebaseCore-dummy.m"; sourceTree = ""; }; ABFDDF7E2B4A60522C6DC5915D034318 /* FIRInstallationsAuthTokenResult.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstallationsAuthTokenResult.m; path = FirebaseInstallations/Source/Library/FIRInstallationsAuthTokenResult.m; sourceTree = ""; }; + ABFEE1EC32DE79776E007287732E5698 /* BSG_KSMach_x86_32.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSMach_x86_32.c; sourceTree = ""; }; ABFEEA82A6C346B22843FBE0B0582182 /* libFBReactNativeSpec.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libFBReactNativeSpec.a; path = libFBReactNativeSpec.a; sourceTree = BUILT_PRODUCTS_DIR; }; - AC187AB10FB11B8FC0724A0C54F25A6D /* RCTConvert.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTConvert.h; sourceTree = ""; }; + AC0E5144BC8E45C0A8AA0E7DF26EAEA1 /* RNFetchBlobProgress.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNFetchBlobProgress.m; path = ios/RNFetchBlobProgress.m; sourceTree = ""; }; + AC3146F80E9E21A1B8B4808D1C68C39B /* RNForceTouchHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNForceTouchHandler.m; sourceTree = ""; }; + AC34E5A5F3C3F1FEDD15FCEB960B5EAA /* RNFirebaseUtil.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNFirebaseUtil.h; path = RNFirebase/RNFirebaseUtil.h; sourceTree = ""; }; AC3787BF1E614D7EEDF5E1142F012247 /* FIRInstanceIDConstants.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstanceIDConstants.h; path = Firebase/InstanceID/FIRInstanceIDConstants.h; sourceTree = ""; }; + AC3BF52795F302CF04D568959A0EB08B /* YGStyle.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YGStyle.h; path = yoga/YGStyle.h; sourceTree = ""; }; AC5BBA5FEB96505850A90FBE111B046F /* SDFileAttributeHelper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDFileAttributeHelper.h; path = SDWebImage/Private/SDFileAttributeHelper.h; sourceTree = ""; }; - AC7C0F5CA672859F3E6F54731FF78567 /* RCTI18nManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTI18nManager.h; sourceTree = ""; }; - AC8B79264BEAFFF8CAF35EEA50E38615 /* RNRootView-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNRootView-dummy.m"; sourceTree = ""; }; + AC64E99EE53FD5E54618EE097493CF4F /* RCTLinkingManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTLinkingManager.h; path = Libraries/LinkingIOS/RCTLinkingManager.h; sourceTree = ""; }; + AC735A59116C66149F11C9C6ECA571AD /* QBAssetCell.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = QBAssetCell.h; path = ios/QBImagePicker/QBImagePicker/QBAssetCell.h; sourceTree = ""; }; AC94EA86B185F27AFFDD010481B75ED0 /* FirebaseCore.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = FirebaseCore.xcconfig; sourceTree = ""; }; - AC95BCBFF2E6B35B1515A5AE39ED0FAE /* RNFlingHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNFlingHandler.h; sourceTree = ""; }; + ACA006BA2957A14C3E181488A9D61840 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; ACAF6F97C93480DEF850BDAA7DE9577A /* Folly.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = Folly.xcconfig; sourceTree = ""; }; - ACEE4B37CDC23E851505FAB6B5B59F72 /* RCTImageLoader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageLoader.h; path = React/CoreModules/RCTImageLoader.h; sourceTree = ""; }; + ACFE96085A3777879FACEAC1111C4A68 /* RNNotificationParser.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNNotificationParser.h; path = RNNotifications/RNNotificationParser.h; sourceTree = ""; }; + AD1BBA375D2CAFC79E7B546BC5AD24F7 /* BugsnagFileStore.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagFileStore.h; sourceTree = ""; }; AD40A94AE1ADFA1CDF9602BA3B04C90E /* libEXAV.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libEXAV.a; path = libEXAV.a; sourceTree = BUILT_PRODUCTS_DIR; }; AD5C654D5F9C65609BC75BEDEB1C2EF1 /* SDImageCachesManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageCachesManager.m; path = SDWebImage/Core/SDImageCachesManager.m; sourceTree = ""; }; AD6234B3E3CB445DBD2389BF9FB6E66F /* GoogleAppMeasurement.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = GoogleAppMeasurement.framework; path = Frameworks/GoogleAppMeasurement.framework; sourceTree = ""; }; - AD7F341918A5C64065D88DD166F5C8C3 /* RNDateTimePicker-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNDateTimePicker-prefix.pch"; sourceTree = ""; }; - AD9F3B8647BE8BA12C1FCF44900864AE /* RCTModuloAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTModuloAnimatedNode.m; sourceTree = ""; }; - ADF7B651D03C048B8399FE7FED8881AD /* BSG_KSCrashIdentifier.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BSG_KSCrashIdentifier.m; sourceTree = ""; }; - AE02A491760D2BBEB1B5070AEE77F91D /* RNCAppearanceProviderManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCAppearanceProviderManager.h; path = ios/Appearance/RNCAppearanceProviderManager.h; sourceTree = ""; }; - AE31F865C9AEFEB1EBA0418010F744A5 /* NSDataBigString.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = NSDataBigString.mm; sourceTree = ""; }; + ADB7F9F46EF6A4138FCBB997F5FB5172 /* RNNotificationCenterListener.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNNotificationCenterListener.h; path = RNNotifications/RNNotificationCenterListener.h; sourceTree = ""; }; + AE209A393FF8A2720977A905B28D1841 /* RCTInterpolationAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTInterpolationAnimatedNode.h; sourceTree = ""; }; AE40F8A55B4E0868CA1A35733818234B /* FirebaseCoreDiagnostics-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "FirebaseCoreDiagnostics-dummy.m"; sourceTree = ""; }; AE42AA2FA59AF812E73CBB61E72ECEA8 /* decode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = decode.h; path = src/webp/decode.h; sourceTree = ""; }; AE6009DB9E0286F743D5CFA5415F06EF /* F14Table.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = F14Table.cpp; path = folly/container/detail/F14Table.cpp; sourceTree = ""; }; AE786E2067197B64CADFCEB08C452C84 /* SDWebImagePrefetcher.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImagePrefetcher.h; path = SDWebImage/Core/SDWebImagePrefetcher.h; sourceTree = ""; }; - AEF198231F8DA88E3C88A5CF95040E4F /* RCTSegmentedControlManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSegmentedControlManager.m; sourceTree = ""; }; + AE82711F9579DB3A866AA62685BD4259 /* RNFirebaseMessaging.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNFirebaseMessaging.h; sourceTree = ""; }; + AEB1D052D9CA6562839EFD9298E150C8 /* EXFilePermissionModule.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXFilePermissionModule.m; path = EXFileSystem/EXFilePermissionModule.m; sourceTree = ""; }; AF0ED6FD0E89DAD5362477D5AFF91A2E /* alpha_processing_neon.c */ = {isa = PBXFileReference; includeInIndex = 1; name = alpha_processing_neon.c; path = src/dsp/alpha_processing_neon.c; sourceTree = ""; }; - AF23EE3EDD8077D6AC7FE28561C9B32D /* RCTNativeAnimatedNodesManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTNativeAnimatedNodesManager.h; path = Libraries/NativeAnimation/RCTNativeAnimatedNodesManager.h; sourceTree = ""; }; - AF36BF5322A8F1669835C50F41EBF7AF /* ARTShapeManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = ARTShapeManager.m; sourceTree = ""; }; - AF36EF623726F10B874489B4D806967A /* RCTAssert.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTAssert.m; sourceTree = ""; }; - AF5387405863629488A740A14865A803 /* RCTScrollViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTScrollViewManager.m; sourceTree = ""; }; AF56195464AFAF7C34D6F48C7CFF702E /* UIImageView+WebCache.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIImageView+WebCache.m"; path = "SDWebImage/Core/UIImageView+WebCache.m"; sourceTree = ""; }; + AF6CD19FBCA0258E16A1C7D632DB4266 /* RCTPackagerClient.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTPackagerClient.h; sourceTree = ""; }; AF72FD600DE7E2D330BA50F877993E05 /* libUMCore.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libUMCore.a; path = libUMCore.a; sourceTree = BUILT_PRODUCTS_DIR; }; - AF74C4A9752B4DCA4C7BFB9D7A1C4156 /* SRRunLoopThread.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = SRRunLoopThread.h; sourceTree = ""; }; - AF7F59D71FDFCE7DC66117FC06918CB6 /* Orientation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = Orientation.m; path = iOS/RCTOrientation/Orientation.m; sourceTree = ""; }; - AF92BAEF3A761A17CE4C19BC9737DC17 /* RCTTypeSafety.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RCTTypeSafety.xcconfig; sourceTree = ""; }; - AFDB750BF6A083142D44FC5889D60117 /* RCTMultipartStreamReader.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTMultipartStreamReader.m; sourceTree = ""; }; - B0021F87AF4D5BCE38D706C751D5C3BA /* React-jsinspector-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-jsinspector-dummy.m"; sourceTree = ""; }; - B008DCBA1F86445C58EA17A32051D55D /* BSG_KSCrashSentry_NSException.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashSentry_NSException.h; sourceTree = ""; }; - B03FAEA89B6C72A886E243887CD6C1C4 /* RCTManagedPointer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTManagedPointer.h; sourceTree = ""; }; - B055AFA473FC3220999341B10F56F810 /* RCTVersion.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTVersion.h; sourceTree = ""; }; + AF7310E172DAEB5E0D0F1E93C36ABC3C /* Ionicons.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = Ionicons.ttf; path = Fonts/Ionicons.ttf; sourceTree = ""; }; + AFA32A2AF10EF4086D9739065D3A8A36 /* react-native-webview-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "react-native-webview-prefix.pch"; sourceTree = ""; }; + AFC8A9E0CE61A584E470F366996EE5D3 /* RCTRedBoxExtraDataViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTRedBoxExtraDataViewController.h; sourceTree = ""; }; + B004EA3AE960755FB007C1BCE53D1990 /* RCTSinglelineTextInputViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSinglelineTextInputViewManager.h; sourceTree = ""; }; + B01D54E09F5250811909DBD8839F9EED /* BannerComponent.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BannerComponent.m; sourceTree = ""; }; + B02E191D7CCFB36F49F8903DA1DB0940 /* RCTRawTextViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTRawTextViewManager.h; sourceTree = ""; }; + B04662DD8F156C1AE56B5303BFE1AF0E /* FBLazyVector.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = FBLazyVector.xcconfig; sourceTree = ""; }; B05C43896E9F95B6A4756C24B12C8DBB /* SDWebImageWebPCoder.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = SDWebImageWebPCoder.xcconfig; sourceTree = ""; }; - B05EF8E009A097B6D36E5A1BE5D273FB /* UMCore-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "UMCore-prefix.pch"; sourceTree = ""; }; - B06703997BF3F70C043A9803466D5A80 /* BugsnagSink.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagSink.h; sourceTree = ""; }; - B06BEEA2CB6E5A49BC815D0CBE35533B /* RCTHTTPRequestHandler.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTHTTPRequestHandler.mm; sourceTree = ""; }; - B07D48E7147AADC05B5BC94BED2CAE42 /* ARTShapeManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = ARTShapeManager.h; sourceTree = ""; }; + B089D6C9E9764C06EFB3B2037BF93AE0 /* UMViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMViewManager.h; path = UMCore/UMViewManager.h; sourceTree = ""; }; + B0A0720DC33231F000E35AF8AF43BE34 /* RCTMultilineTextInputViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTMultilineTextInputViewManager.m; sourceTree = ""; }; + B0A4DC3C36195417A86F9EA7EC209E25 /* UMConstantsInterface.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = UMConstantsInterface.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + B0A9A6EFD153CBF12ACA4453003585B6 /* BugsnagReactNative-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "BugsnagReactNative-dummy.m"; sourceTree = ""; }; B0B214D775196BA7CA8E17E53048A493 /* libSDWebImage.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libSDWebImage.a; path = libSDWebImage.a; sourceTree = BUILT_PRODUCTS_DIR; }; + B0B98A696251E4EF51DCEE25CDF2FB22 /* BSG_KSSignalInfo.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSSignalInfo.c; sourceTree = ""; }; + B0BA1896A9685A2D8B9372F886B345DA /* BSG_KSCrashState.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashState.h; sourceTree = ""; }; B0C730BFACECB7606E3E03C1D15A4BA2 /* mips_macro.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = mips_macro.h; path = src/dsp/mips_macro.h; sourceTree = ""; }; + B0CC66D253ACAED8D32573749AF303E8 /* JSModulesUnbundle.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = JSModulesUnbundle.h; sourceTree = ""; }; B0D7F4389F6E6CC404907A69EE8797DE /* vp8_dec.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = vp8_dec.h; path = src/dec/vp8_dec.h; sourceTree = ""; }; - B0DFBEECC237981FDC5C491E881652EC /* EXAppLoaderProvider.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXAppLoaderProvider.h; path = EXAppLoaderProvider/EXAppLoaderProvider.h; sourceTree = ""; }; - B1019DF88487C0D7B086AED9553E017B /* RNFirebaseNotifications.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNFirebaseNotifications.m; sourceTree = ""; }; B101A21C2A5287012254B056CFA7D4FC /* UIImage+ForceDecode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIImage+ForceDecode.m"; path = "SDWebImage/Core/UIImage+ForceDecode.m"; sourceTree = ""; }; + B11418C4D1D542261F7AA14ED17A1BEA /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; B1151875A2C24A78423CC58505388627 /* SDAnimatedImage.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDAnimatedImage.h; path = SDWebImage/Core/SDAnimatedImage.h; sourceTree = ""; }; - B11D171834A77FF88E839237BE79D83B /* installation.md */ = {isa = PBXFileReference; includeInIndex = 1; name = installation.md; path = docs/installation.md; sourceTree = ""; }; + B11B86F0004D588495EC22D231AFA14A /* NativeToJsBridge.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = NativeToJsBridge.cpp; sourceTree = ""; }; + B13841985C2DA28D0C3225208AFF2650 /* RNBootSplash.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RNBootSplash.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; B1481C8FC99F5FE787F9FBBE96DD5E9F /* alpha_dec.c */ = {isa = PBXFileReference; includeInIndex = 1; name = alpha_dec.c; path = src/dec/alpha_dec.c; sourceTree = ""; }; - B17F14A0214F04411D0979D60852557A /* ARTBrush.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = ARTBrush.h; sourceTree = ""; }; B18979D7EEF1DB0BD8B390FAE4FA6123 /* vp8l_dec.c */ = {isa = PBXFileReference; includeInIndex = 1; name = vp8l_dec.c; path = src/dec/vp8l_dec.c; sourceTree = ""; }; - B1C13BBA60C6E5F565C50268233795B4 /* ARTGroupManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = ARTGroupManager.h; sourceTree = ""; }; - B1C6797FB32CE3EC0972829BF2C0F857 /* RCTDevLoadingView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTDevLoadingView.h; sourceTree = ""; }; + B1B06373B19E6718FE5623A38632E961 /* RCTCustomInputController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTCustomInputController.m; sourceTree = ""; }; + B1B111C52C2718203D389326D88E6853 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; + B1C94A0B03D6B56BE09722453D630261 /* RNNotificationCenterListener.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNNotificationCenterListener.m; path = RNNotifications/RNNotificationCenterListener.m; sourceTree = ""; }; + B1D6CE1BAD3DB06B35DBDF02ACC71D40 /* RCTSubtractionAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSubtractionAnimatedNode.h; sourceTree = ""; }; B1E3B9B644AA67562AB8AF3F6ADB7F0C /* FBLPromisePrivate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBLPromisePrivate.h; path = Sources/FBLPromises/include/FBLPromisePrivate.h; sourceTree = ""; }; - B21CA4A19845E0A61AB2E336377ACC3A /* RCTSurfaceStage.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSurfaceStage.m; sourceTree = ""; }; - B2788A49B48ED49B9BF95A866CEE78F9 /* RNSScreenStack.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNSScreenStack.h; path = ios/RNSScreenStack.h; sourceTree = ""; }; + B1F65D7FF3135A0627DF673CBD7C9BFA /* RCTLog.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTLog.mm; sourceTree = ""; }; + B20CD8A27AB4ED9991D5CE8DB676D870 /* RNFirebaseAdMob.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNFirebaseAdMob.m; sourceTree = ""; }; + B23588F9DAD527223E2F6A2624C1D8EE /* RCTCxxBridge.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTCxxBridge.mm; sourceTree = ""; }; + B240E33ACD088E410D7B37AA73F58027 /* RCTMultipartDataTask.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTMultipartDataTask.h; sourceTree = ""; }; + B246D2F2CABF0035A46CDD1FA46AA472 /* RCTStyleAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTStyleAnimatedNode.m; sourceTree = ""; }; + B24F3AEDF693897FF98C79C14EC875D5 /* RNJitsiMeetView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNJitsiMeetView.h; path = ios/RNJitsiMeetView.h; sourceTree = ""; }; + B24FC92D1A76F9E7EDEEFB8F35746F7D /* EXAppLoaderProvider.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXAppLoaderProvider.h; path = EXAppLoaderProvider/EXAppLoaderProvider.h; sourceTree = ""; }; + B255948DF124DF951901703DCC532B92 /* TurboModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TurboModule.h; path = turbomodule/core/TurboModule.h; sourceTree = ""; }; + B26E3150918CB4B6EFEBBCEE4ED286E7 /* RNDocumentPicker.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNDocumentPicker.m; path = ios/RNDocumentPicker/RNDocumentPicker.m; sourceTree = ""; }; + B270BBBD6A601121183CDB371E33BA3D /* EXVideoPlayerViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = EXVideoPlayerViewController.m; sourceTree = ""; }; B2910F746BA799CA787EFCE48845B524 /* SDWebImageError.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWebImageError.m; path = SDWebImage/Core/SDWebImageError.m; sourceTree = ""; }; B298AD16DF9C7781D252AE8F6F69B0B4 /* common_sse41.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = common_sse41.h; path = src/dsp/common_sse41.h; sourceTree = ""; }; + B29C092A6C3A3E45D14C9E7AD888587E /* BugsnagSessionTrackingPayload.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagSessionTrackingPayload.m; sourceTree = ""; }; + B2AF2075C759F200D6704623D761697A /* REAModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = REAModule.h; path = ios/REAModule.h; sourceTree = ""; }; B2BDA968F3FED747EC612A14381CAFCB /* utils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = utils.h; path = "double-conversion/utils.h"; sourceTree = ""; }; - B2D7BF90C313DE7C73C7925F48AFE8DF /* 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; }; - B3152E50EB9AD9614CBDC9B6A5AA2639 /* RCTLayoutAnimation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTLayoutAnimation.h; sourceTree = ""; }; - B326B2109C0685C03903F37A807BE28B /* RCTFrameUpdate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTFrameUpdate.h; sourceTree = ""; }; - B38A182AC24D99272525C56833F805E0 /* RCTLayout.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTLayout.h; sourceTree = ""; }; - B3DBE8EBCC8D7500A5EDBA1A17F5D2FA /* Instance.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = Instance.h; sourceTree = ""; }; - B3E046E29E17EE7F1D0F97E3EF9A1405 /* BSG_KSCrashSentry_User.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSCrashSentry_User.c; sourceTree = ""; }; - B41A28C40E3F64F2FEF71073FC098E8D /* FFFastImageView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FFFastImageView.h; path = ios/FastImage/FFFastImageView.h; sourceTree = ""; }; - B42C05EA585F6414B0981D042D8FD78A /* ARTNodeManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = ARTNodeManager.m; sourceTree = ""; }; - B42C876ABD86D4A05BDE2E8BB12A504A /* RCTWrapperViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTWrapperViewController.m; sourceTree = ""; }; + B2E4F4CDECA5C51A7A1BB9752146FE6D /* EXAV.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXAV.m; path = EXAV/EXAV.m; sourceTree = ""; }; + B346361ACF4080E6B4D9A5ADF5C59F3D /* NSError+BSG_SimpleConstructor.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "NSError+BSG_SimpleConstructor.m"; sourceTree = ""; }; + B349DD5435D1EB19753961274872B199 /* RCTMultiplicationAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTMultiplicationAnimatedNode.h; sourceTree = ""; }; + B3852D1889FE05FE2B093D54B5F91D67 /* RCTSliderManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSliderManager.h; sourceTree = ""; }; + B407A36592542744447C716CC5A491A1 /* ARTShape.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = ARTShape.m; path = ios/ARTShape.m; sourceTree = ""; }; + B413D55FD51104471FC2C4FDD468580D /* RNImageCropPicker-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNImageCropPicker-prefix.pch"; sourceTree = ""; }; B43874C6CBB50E7134FBEC24BABFE14F /* libGoogleUtilities.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libGoogleUtilities.a; path = libGoogleUtilities.a; sourceTree = BUILT_PRODUCTS_DIR; }; B43DE523DEC5C5015D53A04238FFF28A /* GoogleDataTransport.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = GoogleDataTransport.xcconfig; sourceTree = ""; }; - B46983DAC9FC5504F8F350F4E54E82B5 /* UMCameraInterface.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = UMCameraInterface.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - B473AA844D4B101A825EDAC5BF9D9086 /* UMSensorsInterface.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = UMSensorsInterface.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + B4667F52FE6F3DA21AB467946BCD128B /* RCTWeakProxy.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTWeakProxy.h; sourceTree = ""; }; + B47D76B4CD8715A14EE59913C8DEBA9E /* RCTFollyConvert.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTFollyConvert.mm; sourceTree = ""; }; B491F35981D199A9F597FA6ADB1CDADD /* bit_reader_utils.c */ = {isa = PBXFileReference; includeInIndex = 1; name = bit_reader_utils.c; path = src/utils/bit_reader_utils.c; sourceTree = ""; }; - B4936E886594F0F86E4CB217B2D498E3 /* UIResponder+FirstResponder.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIResponder+FirstResponder.m"; path = "lib/UIResponder+FirstResponder.m"; sourceTree = ""; }; B49950F25B4587A0F1428A0FF4D062F1 /* SDWebImageDownloaderDecryptor.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWebImageDownloaderDecryptor.m; path = SDWebImage/Core/SDWebImageDownloaderDecryptor.m; sourceTree = ""; }; B4A567AE04DB13B59FF8430E58211E82 /* lossless_neon.c */ = {isa = PBXFileReference; includeInIndex = 1; name = lossless_neon.c; path = src/dsp/lossless_neon.c; sourceTree = ""; }; - B4E118CA5DB7999296F32C8A6E78548A /* BSG_KSSingleton.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSSingleton.h; sourceTree = ""; }; B4E59C34733EDDB63352F51EA330CB81 /* pb_common.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = pb_common.h; sourceTree = ""; }; - B53790AD4EBEFCDA82A9C783FEE738A6 /* REACallFuncNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REACallFuncNode.m; sourceTree = ""; }; + B4F3D461D7527502D46B835A4356458C /* subscription.md */ = {isa = PBXFileReference; includeInIndex = 1; name = subscription.md; path = docs/subscription.md; sourceTree = ""; }; + B501F1D0ED50C1D646B16A87F01C0EBB /* RCTSafeAreaViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSafeAreaViewManager.m; sourceTree = ""; }; + B51F01FE0D0C924D540DCBCCD5CB8503 /* RCTRedBox.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTRedBox.m; sourceTree = ""; }; + B526EDD8BACBB94EF557CA9D6F520738 /* RCTInspector.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTInspector.h; sourceTree = ""; }; + B55F3AF8966AB2CDAD8D0F804DBB48B8 /* RCTPropsAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTPropsAnimatedNode.h; sourceTree = ""; }; B5609AB6E46F0A418839F14921E70AE4 /* io_dec.c */ = {isa = PBXFileReference; includeInIndex = 1; name = io_dec.c; path = src/dec/io_dec.c; sourceTree = ""; }; - B561081BA9CB53D078948C04A06AED0D /* react-native-background-timer-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "react-native-background-timer-dummy.m"; sourceTree = ""; }; - B57D47AC691DAF42EDAA4D89956EC77E /* rn-extensions-share-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "rn-extensions-share-prefix.pch"; sourceTree = ""; }; - B58B349B77DC5BD8E970EE9930E404C5 /* JSModulesUnbundle.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = JSModulesUnbundle.h; sourceTree = ""; }; + B582EC8B9AA16C7601BDDB4328D99F55 /* RNFirebaseFirestore.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNFirebaseFirestore.h; sourceTree = ""; }; + B595F90DB6439247AE7D4AD78CEDB249 /* EXAVObject.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXAVObject.h; path = EXAV/EXAVObject.h; sourceTree = ""; }; B59C6445493BACD5876AA3D8176366EB /* cost_neon.c */ = {isa = PBXFileReference; includeInIndex = 1; name = cost_neon.c; path = src/dsp/cost_neon.c; sourceTree = ""; }; B5C4CF7EEBB56E009C17E4CB2CDCD303 /* dec_msa.c */ = {isa = PBXFileReference; includeInIndex = 1; name = dec_msa.c; path = src/dsp/dec_msa.c; sourceTree = ""; }; - B5CC6208EC4852AE045AC20C6DD364CE /* React-RCTSettings.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-RCTSettings.xcconfig"; sourceTree = ""; }; B5D32CE02F68EE345F9101FFAF7E3476 /* Pods-RocketChatRN.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-RocketChatRN.debug.xcconfig"; sourceTree = ""; }; - B5E6032FEAC635340844207134541077 /* RCTKeyCommandConstants.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTKeyCommandConstants.h; path = ios/KeyCommands/RCTKeyCommandConstants.h; sourceTree = ""; }; + B5F705E47FB22AF244B0CE93D1183E6A /* RCTSurface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSurface.h; sourceTree = ""; }; + B61495BCC248BD822D7A6FBD0220D04E /* RCTNullability.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTNullability.h; sourceTree = ""; }; + B6229D3A231329117FB890DA64EC51E7 /* RNFirebaseAdMobInterstitial.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNFirebaseAdMobInterstitial.h; sourceTree = ""; }; + B63AEE5BB5482D8E73F573C666904415 /* REANodesManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = REANodesManager.m; path = ios/REANodesManager.m; sourceTree = ""; }; + B64158B9BBC03FE61CC62C98E97988A0 /* UMReactNativeAdapter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMReactNativeAdapter.h; sourceTree = ""; }; B64A61A851185348B2695008405AD490 /* GULMutableDictionary.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULMutableDictionary.h; path = GoogleUtilities/Network/Private/GULMutableDictionary.h; sourceTree = ""; }; B65D1E0F95214E2E1AC4F513C1753CC7 /* Pods-ShareRocketChatRN-resources.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-ShareRocketChatRN-resources.sh"; sourceTree = ""; }; + B6841DA2414D92A3CD24C3DF9CE0A6C2 /* EXVideoPlayerViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = EXVideoPlayerViewController.h; sourceTree = ""; }; B68868E9598353F7206899DB35AA264C /* fixed-dtoa.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = "fixed-dtoa.cc"; path = "double-conversion/fixed-dtoa.cc"; sourceTree = ""; }; - B6C3400B9B43229B89FF56742C801E21 /* BugsnagSessionFileStore.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagSessionFileStore.h; sourceTree = ""; }; - B6C9DD78E0C948983075BD3C9EA833AE /* ReactCommon.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = ReactCommon.xcconfig; sourceTree = ""; }; - B6D99B67D367D34DBC278AE5E858A3D5 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; + B68AA15C4F4F0A45F5AFD6068B2217C6 /* FBReactNativeSpec-generated.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = "FBReactNativeSpec-generated.mm"; path = "FBReactNativeSpec/FBReactNativeSpec-generated.mm"; sourceTree = ""; }; + B6A6B3249AE6644494DC1529A7ADE309 /* RCTRootViewDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTRootViewDelegate.h; sourceTree = ""; }; + B6B43552880DE27E989CB279A0D604C8 /* RCTPropsAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTPropsAnimatedNode.m; sourceTree = ""; }; + B6CAAE78EA5CCE98700AFB5C907FA960 /* RNPinchHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNPinchHandler.m; sourceTree = ""; }; + B6CECEFE723256B99091772FFAA1E804 /* QBVideoIndicatorView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = QBVideoIndicatorView.h; path = ios/QBImagePicker/QBImagePicker/QBVideoIndicatorView.h; sourceTree = ""; }; + B6D562B0D04F9C595BF3969F0306EDBA /* RCTCxxConvert.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTCxxConvert.h; sourceTree = ""; }; B6DAE9177A3C3A2B93422B1382202FF6 /* SDImageGIFCoder.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageGIFCoder.m; path = SDWebImage/Core/SDImageGIFCoder.m; sourceTree = ""; }; - B6FBB8866BCE49A5BBBDDEBBBF7EFB88 /* RCTDiffClampAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTDiffClampAnimatedNode.m; sourceTree = ""; }; - B71B0B7C53F63837EA8CA137AA591173 /* UMMagnetometerInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMMagnetometerInterface.h; path = UMSensorsInterface/UMMagnetometerInterface.h; sourceTree = ""; }; + B70C656C30A9978DF60302DE8BC606CD /* UMUtilitiesInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMUtilitiesInterface.h; sourceTree = ""; }; B72D2A1AFE5D8CB8AE76AADD8B87B42B /* pb_decode.c */ = {isa = PBXFileReference; includeInIndex = 1; path = pb_decode.c; sourceTree = ""; }; - B73A1983217C4ED2CB9CB653AF61D2EF /* RCTDevLoadingView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTDevLoadingView.m; sourceTree = ""; }; + B734674085C56A240B8386BEDBC9568C /* EXKeepAwake-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "EXKeepAwake-dummy.m"; 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; }; B7619685EB70998E0F7EC8865DDD7D94 /* SDInternalMacros.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDInternalMacros.m; path = SDWebImage/Private/SDInternalMacros.m; sourceTree = ""; }; - B7684049BE4BD4B7BAD2C8EB194BC26C /* UMReactNativeAdapter.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = UMReactNativeAdapter.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - B7C6DEA8C3CB3A2D8972AB5C382DA40F /* RCTNetworkTask.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTNetworkTask.m; sourceTree = ""; }; - B7D1B79909003012A055C68887F1391E /* UMCameraInterface.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMCameraInterface.xcconfig; sourceTree = ""; }; - B7E0EC156A08C666D058F17A8F3E7679 /* RCTSurfaceView+Internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RCTSurfaceView+Internal.h"; sourceTree = ""; }; - B7EFC596C03B6ED88161E433283CCC12 /* SRSecurityPolicy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SRSecurityPolicy.m; path = SocketRocket/SRSecurityPolicy.m; sourceTree = ""; }; + B77809A2F9FA6C47221E339E3A77864C /* RNDocumentPicker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNDocumentPicker.h; path = ios/RNDocumentPicker/RNDocumentPicker.h; sourceTree = ""; }; + B78B850171569093651CB372D73233E0 /* RCTLinkingManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTLinkingManager.m; sourceTree = ""; }; + B7A3682421142A23D4ABB6E7CD245A96 /* ReactCommon-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "ReactCommon-dummy.m"; sourceTree = ""; }; + B7BB23C4ABDF2081AD8A80B64267DE95 /* RCTSurfacePresenterStub.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSurfacePresenterStub.m; sourceTree = ""; }; + B846C87014E8DDFD31AF359908BEC0FE /* RCTView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTView.m; sourceTree = ""; }; + B870C42FE47EB3A8EAF297F39C532938 /* RCTShadowView+Internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RCTShadowView+Internal.h"; sourceTree = ""; }; + B885A84BF1B79007E652005E923B21B2 /* 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; }; B8B19D7098E1C36EB82CCA7E162D0984 /* glog.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = glog.xcconfig; sourceTree = ""; }; - B8F68604311D3EF2649AA23C3501A4DA /* android_time.png */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = image.png; name = android_time.png; path = docs/images/android_time.png; sourceTree = ""; }; - B92470A218086B50E25F897D11673DB9 /* RCTErrorCustomizer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTErrorCustomizer.h; sourceTree = ""; }; - B950F2AD89310ADE0AD499648B2F95A0 /* RCTTouchEvent.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTouchEvent.h; sourceTree = ""; }; - B954713B1A7287727B5EDF5E846AC7EE /* Bugsnag.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = Bugsnag.m; sourceTree = ""; }; - B98DC9B757DDBDD7FF014553ACFAA046 /* RNSScreen.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNSScreen.h; path = ios/RNSScreen.h; sourceTree = ""; }; - B9FC7149D94DFF084D191B1C070F6EB9 /* JSBigString.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = JSBigString.h; sourceTree = ""; }; + B8B6AD8CAC97607C30EF72CAAAC0D0E3 /* BSG_RFC3339DateTool.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_RFC3339DateTool.h; sourceTree = ""; }; + B8BAA8B10007CE4D8FEB4969D40B6094 /* RNCommandsHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCommandsHandler.h; path = RNNotifications/RNCommandsHandler.h; sourceTree = ""; }; + B98B9DFE8DA2F9A4D98992E7B2176DC5 /* RCTI18nUtil.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTI18nUtil.m; sourceTree = ""; }; + B98BA79CAEA26BC06182CBDC1A5F77A3 /* ARTGroup.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = ARTGroup.m; path = ios/ARTGroup.m; sourceTree = ""; }; + B9BC0B5783E6838E59FA0DDDFA4C7E7B /* log.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = log.cpp; path = yoga/log.cpp; sourceTree = ""; }; + B9D31ADFA24CAB396511E4EA658CE83A /* RCTBridge.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBridge.h; sourceTree = ""; }; + B9FCABC0CCB401DD3C7C26B92D2303E8 /* RNFirebaseLinks.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNFirebaseLinks.m; sourceTree = ""; }; BA065BF226D7D8BE5F672D1B12FD2519 /* FBLPromise+Retry.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "FBLPromise+Retry.m"; path = "Sources/FBLPromises/FBLPromise+Retry.m"; sourceTree = ""; }; - BA21698334313D792491E49E77C3B469 /* JSDeltaBundleClient.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = JSDeltaBundleClient.cpp; sourceTree = ""; }; - BA2347A832724E32FEB50A98EBF28C69 /* RNGestureHandlerDirection.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNGestureHandlerDirection.h; path = ios/RNGestureHandlerDirection.h; sourceTree = ""; }; - BA4DF455B5B36AFA5445D5D08FE28E45 /* REANodesManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = REANodesManager.m; path = ios/REANodesManager.m; sourceTree = ""; }; - BA96A4294166CCA0210FED1496ABF3E6 /* RNFirebase.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNFirebase.xcconfig; sourceTree = ""; }; + BA1A44C2FD243D93836FBBC75A329E00 /* RNFirebaseMessaging.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNFirebaseMessaging.m; sourceTree = ""; }; + BA5E09EEA2D2D61AA67D8D74BE2AE978 /* LNInterpolation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = LNInterpolation.h; sourceTree = ""; }; + BA95F437E9AE05B0EE2703A4665CD9E9 /* RCTReconnectingWebSocket.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTReconnectingWebSocket.h; path = Libraries/WebSocket/RCTReconnectingWebSocket.h; sourceTree = ""; }; BA97DE2A8EF2E1432F205EFE746D7873 /* GDTCORPrioritizer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCORPrioritizer.h; path = GoogleDataTransport/GDTCORLibrary/Public/GDTCORPrioritizer.h; sourceTree = ""; }; - BAEC8B4D8A58E94B63E4802D8A80C726 /* BugsnagSessionTrackingPayload.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagSessionTrackingPayload.m; sourceTree = ""; }; + BB0938370789745029F383FA8B6BDAA6 /* RCTI18nManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTI18nManager.m; sourceTree = ""; }; BB117D47D780DC71082229222E18A9BB /* lossless_enc.c */ = {isa = PBXFileReference; includeInIndex = 1; name = lossless_enc.c; path = src/dsp/lossless_enc.c; sourceTree = ""; }; - BB335CBD7693DF5C6519E408890E5308 /* RCTFileRequestHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTFileRequestHandler.m; sourceTree = ""; }; BB3994268A3900BB3EC0B6E41C8ACEEC /* RSKTouchView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RSKTouchView.m; path = RSKImageCropper/RSKTouchView.m; sourceTree = ""; }; BB473672F668467D6664FFB5D1B0E078 /* DoubleConversion.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = DoubleConversion.xcconfig; sourceTree = ""; }; - BBC3B3DB6C4F93F2750D938E01017EDB /* 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; }; - BBD1F216127024D2D5EC07E43AD1785B /* EXWebBrowser.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = EXWebBrowser.xcconfig; sourceTree = ""; }; - BBF27B43E65A8E0C33985A62B07AF014 /* BugsnagCollections.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagCollections.h; sourceTree = ""; }; - BBF53F9C604AB4436239C85D4A730B20 /* RCTScrollableProtocol.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTScrollableProtocol.h; sourceTree = ""; }; - BC0837151C4E564C57BFFA1DB2F79540 /* UMAppLifecycleService.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMAppLifecycleService.h; sourceTree = ""; }; - BC2280109178365BF5E8D19D3664F27C /* REATransformNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REATransformNode.m; sourceTree = ""; }; + BB5C3F269B8C5ACC0C2871F4F0C42D50 /* RNGestureHandlerRegistry.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNGestureHandlerRegistry.h; path = ios/RNGestureHandlerRegistry.h; sourceTree = ""; }; + BB82523CE0A8E7434C6A5440F254E204 /* React-RCTBlob-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-RCTBlob-prefix.pch"; sourceTree = ""; }; BC36EC56CD213D984C4B7F24FD1B9665 /* FIRCoreDiagnosticsInterop.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCoreDiagnosticsInterop.h; path = Interop/CoreDiagnostics/Public/FIRCoreDiagnosticsInterop.h; sourceTree = ""; }; + BC3FAFDE025D65B8999582A662376F97 /* RCTSurfaceSizeMeasureMode.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTSurfaceSizeMeasureMode.mm; sourceTree = ""; }; BC41853A6450E14F865A02ADC3D019D7 /* anim_decode.c */ = {isa = PBXFileReference; includeInIndex = 1; name = anim_decode.c; path = src/demux/anim_decode.c; sourceTree = ""; }; - BC5E26A6F9DFFD3F9E3E2E7D4D7CB197 /* RCTProfileTrampoline-arm.S */ = {isa = PBXFileReference; includeInIndex = 1; path = "RCTProfileTrampoline-arm.S"; sourceTree = ""; }; - BCD1F58DE01453E51B4A1E51986A28F3 /* EXVideoPlayerViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = EXVideoPlayerViewController.m; sourceTree = ""; }; + BC72CD5189DE683C7FAE0F54020CACD1 /* RCTEventAnimation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTEventAnimation.m; sourceTree = ""; }; BCDC1F0FF0B1E2E4C213D78D24F0F9CD /* GDTCORPlatform.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GDTCORPlatform.m; path = GoogleDataTransport/GDTCORLibrary/GDTCORPlatform.m; sourceTree = ""; }; + BCE46127F21C3989418839D395900BB1 /* UMReactNativeEventEmitter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMReactNativeEventEmitter.h; sourceTree = ""; }; + BCF63C72351343394CB1C3C17ED0D3A6 /* RCTPackagerConnection.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTPackagerConnection.mm; sourceTree = ""; }; + BCFF8DBCFA53E8201EA4B50E97598095 /* RCTCustomKeyboardViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTCustomKeyboardViewController.m; sourceTree = ""; }; BD2D19249B0E5F20B228D7924697E712 /* FIRInstanceIDTokenManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstanceIDTokenManager.m; path = Firebase/InstanceID/FIRInstanceIDTokenManager.m; sourceTree = ""; }; + BD39C63457B07FD68C443B542372BCDB /* RCTWebSocketExecutor.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCTWebSocketExecutor.m; path = Libraries/WebSocket/RCTWebSocketExecutor.m; sourceTree = ""; }; BD58A224BC63CD1E1BB8C5E6A0AC8AD7 /* FBLPromise+Any.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "FBLPromise+Any.m"; path = "Sources/FBLPromises/FBLPromise+Any.m"; sourceTree = ""; }; + BD66CCF02B3EA0A1EB7AC776F1B25294 /* RCTMaskedView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTMaskedView.m; sourceTree = ""; }; BD71E2539823621820F84384064C253A /* libReact-Core.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libReact-Core.a"; path = "libReact-Core.a"; sourceTree = BUILT_PRODUCTS_DIR; }; BD7302148CAB101FE972B11E7D6DB858 /* GULSecureCoding.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULSecureCoding.h; path = GoogleUtilities/Environment/Public/GULSecureCoding.h; sourceTree = ""; }; - BD948116D2FBD3DD544C55A03AD2D163 /* RCTAdditionAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTAdditionAnimatedNode.h; sourceTree = ""; }; - BD94ABB8BE4C32628F20FC265681E7A0 /* RCTInputAccessoryShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTInputAccessoryShadowView.m; sourceTree = ""; }; - BDAC9F18BBFF584CC2329AAC07897BA5 /* BSG_KSSystemInfo.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BSG_KSSystemInfo.m; sourceTree = ""; }; - BDC3B5646EFDB78EC0F56B9F584539B7 /* UMViewManagerAdapter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMViewManagerAdapter.h; sourceTree = ""; }; - BDC9BF17534C2192F7CE64EB2181B71A /* RNVectorIcons.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RNVectorIcons.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - BDE577FD28DA6C87A519E233BA0FC8D9 /* RCTEventEmitter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTEventEmitter.m; sourceTree = ""; }; + BD7F9D788D834660F3AD258022870418 /* RNVectorIcons.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RNVectorIcons.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + BDBD57513A31CA7A9B1EA59149A57060 /* NativeExpressComponent.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = NativeExpressComponent.h; sourceTree = ""; }; + BDDE3BFBD40A3A7AECBFB703CED4B961 /* EXWebBrowser.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = EXWebBrowser.xcconfig; sourceTree = ""; }; + BDE91D39AAB6655D69E37B7A15E64831 /* JSIndexedRAMBundle.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = JSIndexedRAMBundle.cpp; sourceTree = ""; }; BDEA5C38759AB791A74D4E71063DB293 /* RSKImageScrollView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RSKImageScrollView.h; path = RSKImageCropper/RSKImageScrollView.h; sourceTree = ""; }; - BDEC502F8043DAC827CF0FFF0DC005FE /* SRIOConsumerPool.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = SRIOConsumerPool.h; sourceTree = ""; }; - BDEFFFFC11A828082CD1C3DB0768AEAD /* React-RCTAnimation.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-RCTAnimation.xcconfig"; sourceTree = ""; }; - BE11EEA3F6FF26A0F1D1B45140033B94 /* RCTUIManagerUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTUIManagerUtils.h; sourceTree = ""; }; - BE1C92AB0C7F29A4F507C41ECB899B9B /* RCTDataRequestHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTDataRequestHandler.h; path = Libraries/Network/RCTDataRequestHandler.h; sourceTree = ""; }; - BE31E7F6241CF0B138A7806E8CB36547 /* SocketRocket-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "SocketRocket-dummy.m"; sourceTree = ""; }; - BE39B8616244665A9D7D7E1723302142 /* RCTSlider.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSlider.m; sourceTree = ""; }; - BE3F533C440D355C04FB146D5389C644 /* BugsnagCrashReport.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagCrashReport.h; sourceTree = ""; }; - BE564D08050A1E2CC31F087FC0A866B6 /* RCTView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTView.h; sourceTree = ""; }; - BE6C4F2B842D7B2F900C5C9944803F21 /* FFFastImageSource.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FFFastImageSource.h; path = ios/FastImage/FFFastImageSource.h; sourceTree = ""; }; + BDF4C3172110600542CCCA8F784C6CBF /* UMBarCodeScannerInterface.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = UMBarCodeScannerInterface.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + BE242FA97CCA31BE86E46580F018738E /* 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; }; + BE70D642DE39B95B31E9EF38AC541D66 /* RNFetchBlobRequest.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNFetchBlobRequest.h; path = ios/RNFetchBlobRequest.h; sourceTree = ""; }; BE710B81BB8CB34A3D44E178C59ED0D3 /* SDImageCacheDefine.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageCacheDefine.h; path = SDWebImage/Core/SDImageCacheDefine.h; sourceTree = ""; }; + BE8CD12DEFA577A0D368990B033EB057 /* android_date.png */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = image.png; name = android_date.png; path = docs/images/android_date.png; sourceTree = ""; }; BE9A40D3A7B0498886FB7048EF92990B /* FIRCoreDiagnostics.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCoreDiagnostics.m; path = Firebase/CoreDiagnostics/FIRCDLibrary/FIRCoreDiagnostics.m; sourceTree = ""; }; - BE9A9A0EFCA4E15B2407B5C7A7305A67 /* instrumentation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = instrumentation.h; sourceTree = ""; }; + BEA4940B5D5E52997106558D83B64DB6 /* RCTProgressViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTProgressViewManager.h; sourceTree = ""; }; BEAA4F63A52753F14D4888D08369618E /* SDMemoryCache.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDMemoryCache.h; path = SDWebImage/Core/SDMemoryCache.h; sourceTree = ""; }; - BEC71C8DCAB3D40932F29632B7B083FB /* RCTTouchEvent.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTTouchEvent.m; sourceTree = ""; }; + BEE805160E9BD4F326C882AF564B2282 /* RCTJavaScriptLoader.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTJavaScriptLoader.mm; sourceTree = ""; }; + BEE98970FA96D086DC9401F7D6CCA1F6 /* RCTDiffClampAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTDiffClampAnimatedNode.h; sourceTree = ""; }; + BEEB0B184AA1DF1DA7EA01E3CEF7A67F /* REAEventNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REAEventNode.h; sourceTree = ""; }; + BEF06095E0B10F0023E9C1C533B8F92A /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; + BF0931A1447651EF50EE921ABC5C04F3 /* ARTContainer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ARTContainer.h; path = ios/ARTContainer.h; sourceTree = ""; }; BF0E8DD8BC7FDA879032926A40B37AA3 /* bignum-dtoa.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "bignum-dtoa.h"; path = "double-conversion/bignum-dtoa.h"; sourceTree = ""; }; - BF28D6411819551A0C3F513B2FB176F2 /* RNFirebasePerformance.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNFirebasePerformance.h; sourceTree = ""; }; - BF2A164B5E45E1797ED8D2CD8EDA12B9 /* RCTVirtualTextShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTVirtualTextShadowView.m; sourceTree = ""; }; - BF3672536FF643DF11A9682FB3429BD6 /* SRRandom.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = SRRandom.h; sourceTree = ""; }; - BF37F50FC97902AD9B89249E7BD96088 /* RCTCxxUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTCxxUtils.h; sourceTree = ""; }; - BF74F2A8772696D1272263E8C7689D37 /* UMFontManagerInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMFontManagerInterface.h; path = UMFontInterface/UMFontManagerInterface.h; sourceTree = ""; }; + BF17B5C378BF4E3EAB078D3DFAD3B372 /* RCTClipboard.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTClipboard.m; sourceTree = ""; }; + BF2BEAA276BAE703F676D98DFD951C1E /* REACallFuncNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REACallFuncNode.m; sourceTree = ""; }; + BF489842F633BC2B97B300ED3A4079C2 /* UMModuleRegistryAdapter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = UMModuleRegistryAdapter.m; sourceTree = ""; }; + BF68EA8D3718F8D0710898C64DB8E4EC /* RCTKeyboardObserver.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTKeyboardObserver.h; sourceTree = ""; }; BFA3D1106C1072A2B733533A2E770794 /* Pods-ShareRocketChatRN-acknowledgements.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-ShareRocketChatRN-acknowledgements.plist"; sourceTree = ""; }; + BFB7D7D7547D91DB8ED2258EE5661073 /* EXRemindersRequester.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXRemindersRequester.m; path = EXPermissions/EXRemindersRequester.m; sourceTree = ""; }; BFCE4058442BFB8DEB89BA3F261A76BA /* libRNUserDefaults.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libRNUserDefaults.a; path = libRNUserDefaults.a; sourceTree = BUILT_PRODUCTS_DIR; }; - BFEC92E06BB365368B583C644DBB0F6E /* UMTaskManagerInterface.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMTaskManagerInterface.xcconfig; sourceTree = ""; }; - C00495D2A51078A2A72C323A20B1A9FD /* RNNotificationCenterListener.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNNotificationCenterListener.h; path = RNNotifications/RNNotificationCenterListener.h; sourceTree = ""; }; - C008E1A6674DB96C41FD47D7AC4BA3CB /* Fontisto.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = Fontisto.ttf; path = Fonts/Fontisto.ttf; sourceTree = ""; }; - C00F22328D14F065FA9850E5D07BFA13 /* React-RCTBlob.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-RCTBlob.xcconfig"; sourceTree = ""; }; - C00F34ABBF4138E80C776A8D4EBAB47F /* EXFileSystemLocalFileHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXFileSystemLocalFileHandler.m; path = EXFileSystem/EXFileSystemLocalFileHandler.m; sourceTree = ""; }; + BFE390E12190C0EE02F84C30EC1C7CEE /* RNFirebaseInstanceId.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNFirebaseInstanceId.h; sourceTree = ""; }; + C009CD0F0640F9686BEB171B032C2C71 /* React-cxxreact-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-cxxreact-dummy.m"; sourceTree = ""; }; C02C313B7B5553296D2F7158CBE25081 /* GDTCOREvent.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GDTCOREvent.m; path = GoogleDataTransport/GDTCORLibrary/GDTCOREvent.m; sourceTree = ""; }; - C04B3E607F247314964F07370F362467 /* BugsnagReactNative-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "BugsnagReactNative-prefix.pch"; sourceTree = ""; }; - C056D0734876597FB2C2C335EC7DD03E /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; + C04A0D9CC860F0AD202065275C72FEA7 /* RCTLayoutAnimation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTLayoutAnimation.h; sourceTree = ""; }; C06F60B264CEB19482C4DFD3476D64D2 /* FBLPromise+Always.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "FBLPromise+Always.m"; path = "Sources/FBLPromises/FBLPromise+Always.m"; sourceTree = ""; }; - C0AB2D2B3F9D802375A687B12E800576 /* EXVideoView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = EXVideoView.h; sourceTree = ""; }; - C0B98FF58C3CA160B626311D16BFD673 /* RCTMaskedViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTMaskedViewManager.m; sourceTree = ""; }; + C0AA4E342B4DA2D89F6115831A3AEA8D /* BSGConnectivity.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BSGConnectivity.m; sourceTree = ""; }; C0DCE0BB52AF13A0B41211860EA0CDCA /* GDTCCTUploader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCCTUploader.h; path = GoogleDataTransportCCTSupport/GDTCCTLibrary/Private/GDTCCTUploader.h; sourceTree = ""; }; - C1112B2DDBBB87AABF45247247DA931F /* RCTCxxBridgeDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTCxxBridgeDelegate.h; sourceTree = ""; }; - C11E28228FF84EF339353D067E2B5C67 /* RCTNetInfo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTNetInfo.h; path = Libraries/Network/RCTNetInfo.h; sourceTree = ""; }; - C16B0AB3BA550BAB0D12425260DD3ED0 /* REACallFuncNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REACallFuncNode.h; sourceTree = ""; }; + C0E26A2634E1B96F926FB681AE697488 /* UMViewManagerAdapterClassesRegistry.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = UMViewManagerAdapterClassesRegistry.m; sourceTree = ""; }; + C11D5B7318C6A6E072A3BE503C089B9F /* YGStyle.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = YGStyle.cpp; path = yoga/YGStyle.cpp; sourceTree = ""; }; + C169D321FB2D04757BCB7E11EBFA594C /* RCTConvert+Transform.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RCTConvert+Transform.m"; sourceTree = ""; }; C17CE26530BAEFDE35C1E982341393BB /* DoubleConversion-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "DoubleConversion-prefix.pch"; sourceTree = ""; }; + C195B26A91001B997F2E0007A9E2C599 /* BugsnagCrashReport.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagCrashReport.h; sourceTree = ""; }; + C1A2899F88ABFCAF79F364273E41EE6D /* ARTSurfaceViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = ARTSurfaceViewManager.h; sourceTree = ""; }; C1A919103EAC9813D236486C34FC0A21 /* libReact-RCTVibration.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libReact-RCTVibration.a"; path = "libReact-RCTVibration.a"; sourceTree = BUILT_PRODUCTS_DIR; }; - C1B895501B807DB5044A955FE28FD5F4 /* RCTModalHostViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTModalHostViewController.m; sourceTree = ""; }; - C1F334D25444866BB5C2B37591173B34 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; - C22F1A78A1843F70163F5A77E0EB9521 /* REATransition.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REATransition.h; sourceTree = ""; }; - C256E2664723AD4002E40A3892EE439B /* RNGestureHandlerButton.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNGestureHandlerButton.h; path = ios/RNGestureHandlerButton.h; sourceTree = ""; }; - C25EB0CA5329252665CE41EC579A206E /* QBCheckmarkView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = QBCheckmarkView.m; path = ios/QBImagePicker/QBImagePicker/QBCheckmarkView.m; sourceTree = ""; }; - C28E5E922B2695A945FC7FC7E4667102 /* RCTConvert+RNNotifications.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "RCTConvert+RNNotifications.m"; path = "RNNotifications/RCTConvert+RNNotifications.m"; sourceTree = ""; }; - C298CF9BB7C65BDE611C32EC7BA726A7 /* RNBackgroundTimer.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNBackgroundTimer.m; path = ios/RNBackgroundTimer.m; sourceTree = ""; }; - C2F3961FF92C2244C5F6A55A90ADB792 /* RCTWeakProxy.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTWeakProxy.h; sourceTree = ""; }; + C1B2680A51934BED2FCD5FB1D34E94BF /* RCTTouchHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTouchHandler.h; sourceTree = ""; }; + C1B4EAEDBB4470CFCF598E6FF7CC4917 /* QBVideoIconView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = QBVideoIconView.h; path = ios/QBImagePicker/QBImagePicker/QBVideoIconView.h; sourceTree = ""; }; + C207E80E3497C69A291B670A4D766466 /* RNDateTimePicker-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNDateTimePicker-prefix.pch"; sourceTree = ""; }; + C24A123952AD94E3FE0404B07BA9A433 /* FBLazyVector.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = FBLazyVector.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + C24D0CD392A5C3559F02C3375E142CF4 /* BugsnagConfiguration.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagConfiguration.h; sourceTree = ""; }; + C26A133F4DC22A4CD5C1A721D09806FE /* RNCAppearanceProvider.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCAppearanceProvider.h; path = ios/Appearance/RNCAppearanceProvider.h; sourceTree = ""; }; + C29520914DEC7AE5CCD911A42C68BF0C /* REAClockNodes.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REAClockNodes.h; sourceTree = ""; }; + C2A3E54AD95D989768F49547ADA6DB0E /* REAPropsNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REAPropsNode.h; sourceTree = ""; }; + C2AB2C6DF577517B46C6AFDA1CA56AA9 /* YGEnums.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YGEnums.h; path = yoga/YGEnums.h; sourceTree = ""; }; + C2CA730EEB88F4CC4D52ADB2B5A521C2 /* RCTErrorInfo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTErrorInfo.h; sourceTree = ""; }; C31EC300C1418FF40CB367611BE8EB41 /* dec_mips32.c */ = {isa = PBXFileReference; includeInIndex = 1; name = dec_mips32.c; path = src/dsp/dec_mips32.c; sourceTree = ""; }; C33B5059A86C095F0D92336CBCB1F51B /* FIRInstanceIDBackupExcludedPlist.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstanceIDBackupExcludedPlist.h; path = Firebase/InstanceID/FIRInstanceIDBackupExcludedPlist.h; sourceTree = ""; }; - C33B7E4EEE4FDF245A3128E2528B2C43 /* RCTSurface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSurface.h; sourceTree = ""; }; - C33FD5BEA3A3CB47664840BF4F156C4D /* BSG_KSCrashC.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSCrashC.c; sourceTree = ""; }; - C3966B4484D3CB6BB103F67534953DBB /* UMFileSystemInterface.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = UMFileSystemInterface.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - C3B02F019F3C05BE57654F61A3656B34 /* BSG_KSJSONCodecObjC.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BSG_KSJSONCodecObjC.m; sourceTree = ""; }; - C3B8C8A229EA73F4201D5749FB110123 /* EXReactNativeUserNotificationCenterProxy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXReactNativeUserNotificationCenterProxy.m; path = EXPermissions/EXReactNativeUserNotificationCenterProxy.m; sourceTree = ""; }; - C3CAAFE28F985B36F0EBF1BA2885D07F /* EXAudioRecordingPermissionRequester.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXAudioRecordingPermissionRequester.h; path = EXPermissions/EXAudioRecordingPermissionRequester.h; sourceTree = ""; }; - C3F6C8FDCD5A3058409CC47FF7967A70 /* RCTImageEditingManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTImageEditingManager.m; sourceTree = ""; }; - C40461EF02CA744E700FA23B4CC04E99 /* RCTFollyConvert.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTFollyConvert.mm; sourceTree = ""; }; + C345CBAC3B5E7DB8AFC906BBDAC2CBF0 /* UMReactLogHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMReactLogHandler.h; sourceTree = ""; }; + C353DA738806DE69766268C01BB7AEB3 /* EXAudioRecordingPermissionRequester.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXAudioRecordingPermissionRequester.m; path = EXPermissions/EXAudioRecordingPermissionRequester.m; sourceTree = ""; }; + C36CA7C300DA70AC17561FBDC09EF3A1 /* RCTClipboard.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTClipboard.h; sourceTree = ""; }; + C37B5A96B8889BDBE550BBDD51EA995A /* UMUtilities.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = UMUtilities.m; path = UMCore/UMUtilities.m; sourceTree = ""; }; + C3CF3BCDC0EF632B589861EFDDA5B31E /* experiments.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = experiments.h; sourceTree = ""; }; + C401506569A2F353B6F07852D0FC9C10 /* KeyCommands-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "KeyCommands-prefix.pch"; sourceTree = ""; }; + C40B0C283E831817424B0AF9D4F03144 /* RCTRefreshControl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTRefreshControl.h; sourceTree = ""; }; C422929093AA864A077D3201B48F2AD0 /* FIRInstallationsItem+RegisterInstallationAPI.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "FIRInstallationsItem+RegisterInstallationAPI.m"; path = "FirebaseInstallations/Source/Library/InstallationsAPI/FIRInstallationsItem+RegisterInstallationAPI.m"; sourceTree = ""; }; - C43AF8005A08F0890AD659CE3C91EEB9 /* REAAlwaysNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REAAlwaysNode.m; sourceTree = ""; }; + C426163CD3D5B0FD4D4FD78018344313 /* RNNotificationUtils.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNNotificationUtils.m; path = RNNotifications/RNNotificationUtils.m; sourceTree = ""; }; C4479616B9A8800084821451D7E8362A /* SDImageCacheConfig.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageCacheConfig.h; path = SDWebImage/Core/SDImageCacheConfig.h; sourceTree = ""; }; C4539C0D5139FA433EA40799F1AC83A5 /* SDAsyncBlockOperation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDAsyncBlockOperation.m; path = SDWebImage/Private/SDAsyncBlockOperation.m; sourceTree = ""; }; C460DA70768C93ED1BE2D6D8F8EB4963 /* FIRDependency.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRDependency.m; path = FirebaseCore/Sources/FIRDependency.m; sourceTree = ""; }; - C48AC7790D744C6FC6360C37EB6F9950 /* RCTMultiplicationAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTMultiplicationAnimatedNode.h; sourceTree = ""; }; - C4C97EB33BAAD82406A582703949A3F7 /* RNFetchBlobFS.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNFetchBlobFS.h; path = ios/RNFetchBlobFS.h; sourceTree = ""; }; - C4D1DE2786652F59731EDEF8A0DBF47C /* ReactMarker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = ReactMarker.h; sourceTree = ""; }; - C4D58D64FE77C98852515EA277A3C226 /* jsilib-posix.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = "jsilib-posix.cpp"; sourceTree = ""; }; + C47B57CFB6FB02C32E14D4973EEDB19E /* BSG_KSCrashReportVersion.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashReportVersion.h; sourceTree = ""; }; + C49E850BF03B507FA1CE00F3413C7922 /* RCTDatePicker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTDatePicker.h; sourceTree = ""; }; C4FFE67DC13EEC2EBC31ADD1DEBB2A2A /* FIRInstallationsStoredAuthToken.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstallationsStoredAuthToken.h; path = FirebaseInstallations/Source/Library/InstallationsStore/FIRInstallationsStoredAuthToken.h; sourceTree = ""; }; - C518105F4FA3A1C0068602376FE7C597 /* RNFirebaseNotifications.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNFirebaseNotifications.h; sourceTree = ""; }; - C5217234B617BF51EA5BF669B486DE25 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; - C55E7F8ECA540C10662FB91C50C909BE /* RCTBaseTextInputViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBaseTextInputViewManager.h; sourceTree = ""; }; - C57481EF13F88F7181813402EC4CF0B7 /* RCTImageUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageUtils.h; path = Libraries/Image/RCTImageUtils.h; sourceTree = ""; }; - C57B5817AE6D14ECAB1C0CE5B413A293 /* RCTJSStackFrame.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTJSStackFrame.h; sourceTree = ""; }; - C585D0C0783603E2C7D37BCB426D1971 /* JSCExecutorFactory.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = JSCExecutorFactory.mm; sourceTree = ""; }; - C5C6004578B409C02E2AC3DB22D41A8F /* RNAudio-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNAudio-prefix.pch"; sourceTree = ""; }; + C5212E4A5F592D1AC2FE95732DE152F1 /* UMViewManagerAdapter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = UMViewManagerAdapter.m; sourceTree = ""; }; + C5351E6F9CEC551F47CEB516149B6942 /* react-native-appearance-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "react-native-appearance-prefix.pch"; sourceTree = ""; }; + C54EB26AA61E208704AAE9D62CA23D1F /* RCTBaseTextInputShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTBaseTextInputShadowView.m; sourceTree = ""; }; + C55D40C48BFBE3791CE4779FC1608DCB /* RNFirebaseAnalytics.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNFirebaseAnalytics.m; sourceTree = ""; }; + C61A9F8D5C26666E41D69DCEBF3BFA66 /* react-native-slider-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "react-native-slider-dummy.m"; sourceTree = ""; }; + C638D8A1B319F7317803730057DA782F /* RNFirebaseFirestoreDocumentReference.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNFirebaseFirestoreDocumentReference.m; sourceTree = ""; }; + C6480C7B053AF37E2547A87E75B115A7 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; C65235A5B4462861F568033127D5801F /* dynamic.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = dynamic.cpp; path = folly/dynamic.cpp; sourceTree = ""; }; + C656FF6D5D30B52A35562CE99D9BC651 /* RCTURLRequestDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTURLRequestDelegate.h; sourceTree = ""; }; + C65D94E71FE74B0A8F1DE09B5C1629F6 /* RCTMaskedView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTMaskedView.h; sourceTree = ""; }; C6624A128D06B1B7C27D2FBFA0584A44 /* upsampling.c */ = {isa = PBXFileReference; includeInIndex = 1; name = upsampling.c; path = src/dsp/upsampling.c; sourceTree = ""; }; + C66CC20831BCBEF7702213D8C3355533 /* EXFileSystemAssetLibraryHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXFileSystemAssetLibraryHandler.h; path = EXFileSystem/EXFileSystemAssetLibraryHandler.h; sourceTree = ""; }; + C675EB4DA741116915944B05F9947C8E /* UMAppLifecycleService.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMAppLifecycleService.h; sourceTree = ""; }; C67A04FD4DB80B332055C981539D61A1 /* cct.nanopb.c */ = {isa = PBXFileReference; includeInIndex = 1; name = cct.nanopb.c; path = GoogleDataTransportCCTSupport/GDTCCTLibrary/Protogen/nanopb/cct.nanopb.c; sourceTree = ""; }; + C6974E631DAFDFEC150F6548B10353B7 /* RCTSurfaceRootView.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTSurfaceRootView.mm; sourceTree = ""; }; + C6A06C0AFA61D9F6E450941713661B9D /* UMFaceDetectorManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMFaceDetectorManager.h; path = UMFaceDetectorInterface/UMFaceDetectorManager.h; sourceTree = ""; }; C6A63FCD6FAFEE69391E5C3FC275512F /* SDWebImage.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImage.h; path = WebImage/SDWebImage.h; sourceTree = ""; }; + C6B76870816281889E6BC42E375751B2 /* REAPropsNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REAPropsNode.m; sourceTree = ""; }; C6C1424961A6648F4F404DB4D5B51284 /* PromisesObjC-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "PromisesObjC-dummy.m"; sourceTree = ""; }; - C6CC5F08AAE5268A991BB3982B3573AA /* 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; }; - C6D171DF4994A123133AE5FD69B7AC4D /* EXFileSystem.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = EXFileSystem.xcconfig; sourceTree = ""; }; - C6E7AEA26FF5A4C5C52F488D021F6CB1 /* RCTBorderDrawing.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBorderDrawing.h; sourceTree = ""; }; - C705CF5F27669785A685AA891C72729A /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; + C6D6CF7B6C821D62327563EE50B84C04 /* UMViewManagerAdapterClassesRegistry.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMViewManagerAdapterClassesRegistry.h; sourceTree = ""; }; + C6E4C7045D8CD305FF6C399599207835 /* RCTPicker.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTPicker.m; sourceTree = ""; }; + C70A2F6A9FEA88B026D72808AAFBA232 /* instrumentation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = instrumentation.h; sourceTree = ""; }; + C717429966806B6A05BBA0A2015DDE84 /* ARTGroupManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = ARTGroupManager.m; sourceTree = ""; }; + C727C9881A4A63C180CB13D3CCA55B7A /* RCTConvert+Text.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "RCTConvert+Text.h"; path = "Libraries/Text/RCTConvert+Text.h"; sourceTree = ""; }; C74C60148A4948BAD446E2F2B11586EB /* dsp.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = dsp.h; path = src/dsp/dsp.h; sourceTree = ""; }; - C7596BD887A9C3ABDC87D3F56C9C7108 /* EXCameraRollRequester.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXCameraRollRequester.h; path = EXPermissions/EXCameraRollRequester.h; sourceTree = ""; }; C75A86B18664AF17C832083530EBC07C /* raw_logging.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = raw_logging.cc; path = src/raw_logging.cc; sourceTree = ""; }; C75F6B7CCC80F365375AE3D64978BE9F /* utilities.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = utilities.cc; path = src/utilities.cc; sourceTree = ""; }; - C76E7FF2703F50B0592F86A822430F1F /* SRMutex.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = SRMutex.m; sourceTree = ""; }; + C774E8622465BCD66BA07FE9CD5784B5 /* RNFirebaseStorage.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNFirebaseStorage.m; sourceTree = ""; }; + C7771DCDBC5853B3D98A8A8DB941AA38 /* RNFirebaseInstanceId.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNFirebaseInstanceId.m; sourceTree = ""; }; C777CF2FB1E39A45CBBDB54E8693F471 /* libRNReanimated.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libRNReanimated.a; path = libRNReanimated.a; sourceTree = BUILT_PRODUCTS_DIR; }; - C7930E4CF5334470EFD51157392AB83D /* RNReanimated.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNReanimated.xcconfig; sourceTree = ""; }; - C7C013F8C1B065D53C6E7653BAB68572 /* BSG_KSJSONCodec.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSJSONCodec.h; sourceTree = ""; }; + C7CEABA4C850F5AE6FC6B75F7A9C44C3 /* event.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = event.h; sourceTree = ""; }; + C7D449E810B2BA587461F79809FD6A0E /* EXPermissions.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXPermissions.h; path = EXPermissions/EXPermissions.h; sourceTree = ""; }; + C7D466F2D7512F509D09D9ACDF98A8D4 /* RNFirebaseNotifications.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNFirebaseNotifications.h; sourceTree = ""; }; C7EFB60008DF9B71E0BF22DE8B9F1110 /* FIRInstallationsStoredItem.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstallationsStoredItem.m; path = FirebaseInstallations/Source/Library/InstallationsStore/FIRInstallationsStoredItem.m; sourceTree = ""; }; - C7FE4583922DFFEAA71F67AB537108BD /* BSGOutOfMemoryWatchdog.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BSGOutOfMemoryWatchdog.m; sourceTree = ""; }; - C804F5D566B2CBBA0333E924A4FD5386 /* React-RCTNetwork-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-RCTNetwork-dummy.m"; sourceTree = ""; }; - C816790EB4E6ABA37CC24D1DABA196A5 /* react-native-cameraroll-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "react-native-cameraroll-dummy.m"; sourceTree = ""; }; - C84311A37E28EA5AD000E7CD1838C64F /* RCTInspectorPackagerConnection.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTInspectorPackagerConnection.h; sourceTree = ""; }; - C85761D52F3F08615BE3A6569731C96E /* BSG_KSCrashReportVersion.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashReportVersion.h; sourceTree = ""; }; - C86689487D4AC89DAE6A1C4E3E993C72 /* Yoga.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = Yoga.xcconfig; sourceTree = ""; }; + C7F96682DD85D4BF92F99631282708FD /* BugsnagApiClient.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagApiClient.h; sourceTree = ""; }; + C8347D41FC070E90B0280DEAD80BAB02 /* react-native-document-picker-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "react-native-document-picker-dummy.m"; sourceTree = ""; }; + C84407C896CACB04FED00E8870233C34 /* UMModuleRegistryDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMModuleRegistryDelegate.h; sourceTree = ""; }; + C8641817A53EB16ED589E7017D8F4EB7 /* RCTRootView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTRootView.h; sourceTree = ""; }; + C87908D36F26EDCC8A8BD3A8C8A92377 /* RCTObjcExecutor.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTObjcExecutor.mm; sourceTree = ""; }; C8AAC00DA3B23BFCDC15277B87A9557B /* GULOriginalIMPConvenienceMacros.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULOriginalIMPConvenienceMacros.h; path = GoogleUtilities/MethodSwizzler/Private/GULOriginalIMPConvenienceMacros.h; sourceTree = ""; }; - C8B94668C2766AEEB3B887E70C7A39ED /* RCTSinglelineTextInputView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSinglelineTextInputView.h; sourceTree = ""; }; - C8C8C58A070FA85A44A893611668E541 /* RNCWebViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCWebViewManager.h; path = ios/RNCWebViewManager.h; sourceTree = ""; }; - C8DF861B4AC631F3F65B6A339D216BE0 /* CxxNativeModule.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = CxxNativeModule.cpp; sourceTree = ""; }; - C8E8C6D9E69992742B3E73AD89D5E426 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; + C8B3E28659D32D7CF5369980B1A77DBC /* RNRotationHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNRotationHandler.h; sourceTree = ""; }; + C8C16F60CB9E4A0670E5368528E1F528 /* RCTRedBox.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTRedBox.h; sourceTree = ""; }; + C93A5EA5086EA98FAB9852F64384774F /* RCTPicker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTPicker.h; sourceTree = ""; }; C9483040D5F6D422F682396B87AF87D3 /* alpha_processing_sse41.c */ = {isa = PBXFileReference; includeInIndex = 1; name = alpha_processing_sse41.c; path = src/dsp/alpha_processing_sse41.c; sourceTree = ""; }; - C97D7BB8E6D81FF9EA727CE67095F11D /* YGFloatOptional.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YGFloatOptional.h; path = yoga/YGFloatOptional.h; sourceTree = ""; }; + C9681AA2558043F6935F3827D5E1190A /* EXKeepAwake.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXKeepAwake.h; path = EXKeepAwake/EXKeepAwake.h; sourceTree = ""; }; + C980CD0C14BCDCF7A1A63E4A0702E677 /* RNCWebView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCWebView.h; path = ios/RNCWebView.h; sourceTree = ""; }; C98669397B6EB380F73981625F007E41 /* SDWebImageCacheSerializer.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWebImageCacheSerializer.m; path = SDWebImage/Core/SDWebImageCacheSerializer.m; sourceTree = ""; }; - C98EFB8224066F6B757465914FC89BD4 /* RNBridgeModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNBridgeModule.h; path = RNNotifications/RNBridgeModule.h; sourceTree = ""; }; C99B6ED7E39443CBF47A64AE5D60CD8E /* FIRInstallations.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstallations.h; path = FirebaseInstallations/Source/Library/Public/FIRInstallations.h; sourceTree = ""; }; - C9BC0349EE3270CF31CAEEE2C3284E46 /* RCTImageStoreManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTImageStoreManager.m; sourceTree = ""; }; + C99CAF6908373D2AA383AFD70081BEEE /* EXAudioSessionManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXAudioSessionManager.h; path = EXAV/EXAudioSessionManager.h; sourceTree = ""; }; + C9AE48D025ED018BDD98CE52096C0000 /* RNFirebase.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNFirebase.xcconfig; sourceTree = ""; }; + C9AEAF103FBBF7D92B7B32B40FF1AB03 /* QBCheckmarkView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = QBCheckmarkView.m; path = ios/QBImagePicker/QBImagePicker/QBCheckmarkView.m; sourceTree = ""; }; C9C21A13DD4599456884602B0D4C6757 /* RSKImageScrollView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RSKImageScrollView.m; path = RSKImageCropper/RSKImageScrollView.m; sourceTree = ""; }; - C9F14057FF9D2198A1144BA0005C2EF7 /* BSG_KSFileUtils.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSFileUtils.c; sourceTree = ""; }; - CA0DD05B31427097444D46ACA3633CE0 /* RCTRawTextShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTRawTextShadowView.m; sourceTree = ""; }; + CA133AB547F9EAFAB10F3D5C26F169F0 /* RCTWebSocketExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTWebSocketExecutor.h; path = Libraries/WebSocket/RCTWebSocketExecutor.h; sourceTree = ""; }; CA21C40AB9E6792C5EB386BCA0C5CF9D /* filters_neon.c */ = {isa = PBXFileReference; includeInIndex = 1; name = filters_neon.c; path = src/dsp/filters_neon.c; sourceTree = ""; }; - CA3371B5B15F7DC4CCF22BBF4078D864 /* RCTAccessibilityManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTAccessibilityManager.m; sourceTree = ""; }; - CA523ABF6A0D9C7C2605E24CCCC7E853 /* BSG_KSDynamicLinker.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSDynamicLinker.c; sourceTree = ""; }; - CA7007C33B613B85F7224B8C1483A870 /* RNForceTouchHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNForceTouchHandler.m; sourceTree = ""; }; - CA8C1583771AC99D1C0A8461F878B483 /* SRSIMDHelpers.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = SRSIMDHelpers.h; sourceTree = ""; }; - CA9C45BB0012BF09029A9FB62FCE5839 /* RCTTextShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTextShadowView.h; sourceTree = ""; }; + CA70B73C709B2798A72267B68CBE436D /* BSG_KSDynamicLinker.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSDynamicLinker.c; sourceTree = ""; }; + CA8C378488901E5D9DB369379F4D75B4 /* UMReactNativeAdapter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = UMReactNativeAdapter.m; sourceTree = ""; }; + CAB55A63AB325CA5E2B5DC7191E60462 /* RNGestureHandlerButton.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNGestureHandlerButton.m; path = ios/RNGestureHandlerButton.m; sourceTree = ""; }; CAB97B058E412E0CFCBF16E6AD07DCA2 /* SDDeviceHelper.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDDeviceHelper.m; path = SDWebImage/Private/SDDeviceHelper.m; sourceTree = ""; }; - CAD04E08245F96BB432821FCBEAD57B8 /* UMCameraInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMCameraInterface.h; path = UMCameraInterface/UMCameraInterface.h; sourceTree = ""; }; - CADD613CA408969380D9E7AB864DB134 /* RCTLayout.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTLayout.m; sourceTree = ""; }; - CAE4AE35BE9DE38DD203A86792429978 /* UMViewManagerAdapterClassesRegistry.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMViewManagerAdapterClassesRegistry.h; sourceTree = ""; }; + CAC67D9F86DB72ABC4AA0A05AC670B08 /* UMImageLoaderInterface.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMImageLoaderInterface.xcconfig; sourceTree = ""; }; + CAF3C1C585BFCF952CFDF22563FD4CE4 /* RNVectorIcons.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNVectorIcons.xcconfig; sourceTree = ""; }; + CB0BB8BE8D492A55C9843AE9F33156DF /* RCTBorderDrawing.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTBorderDrawing.m; sourceTree = ""; }; CB0E66A3C33EB8EEC21616C116ABB4A4 /* GDTCORAssert.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GDTCORAssert.m; path = GoogleDataTransport/GDTCORLibrary/GDTCORAssert.m; sourceTree = ""; }; - CB5456F379D19780324568286FC790F0 /* RCTWebSocketModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTWebSocketModule.h; path = Libraries/WebSocket/RCTWebSocketModule.h; sourceTree = ""; }; - CB591AF5D322453F528F32259069B4C3 /* RCTVibration.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTVibration.m; sourceTree = ""; }; - CB5AC702E3C11A6992BC64217D1A82DB /* EXUserNotificationRequester.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXUserNotificationRequester.m; path = EXPermissions/EXUserNotificationRequester.m; sourceTree = ""; }; + CB3C9975CEC93E9055107C94EC3B42A7 /* RCTImageEditingManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageEditingManager.h; path = React/CoreModules/RCTImageEditingManager.h; sourceTree = ""; }; + CB554346B45BEA1433A35DAC20A6302D /* rn-extensions-share.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "rn-extensions-share.xcconfig"; sourceTree = ""; }; CBD554C9D80E29A82E56D1B7897C0E38 /* rescaler_neon.c */ = {isa = PBXFileReference; includeInIndex = 1; name = rescaler_neon.c; path = src/dsp/rescaler_neon.c; sourceTree = ""; }; - CBEF956B84FE37854F9C187616AB1868 /* BSGConnectivity.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BSGConnectivity.m; sourceTree = ""; }; - CBF9C1AF14974A9BB1391E68B7D00804 /* RNFirebaseInstanceId.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNFirebaseInstanceId.h; sourceTree = ""; }; - CBFCB93D8C224182152D433040D7B1CE /* RNFastImage-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNFastImage-dummy.m"; sourceTree = ""; }; - CC0C460DACC6A977B10BD60BD18529C2 /* RCTEventAnimation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTEventAnimation.m; sourceTree = ""; }; + CBE74C01DFA15ACD28E7926C36C4F0F4 /* EXAppLoaderProvider-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "EXAppLoaderProvider-dummy.m"; sourceTree = ""; }; + CBE8A3D3C11CB110388CDDBEC3FDAD2B /* react-native-cameraroll.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "react-native-cameraroll.xcconfig"; sourceTree = ""; }; + CC1A8422AE202E45008D12C095D7CFD2 /* TurboModuleBinding.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TurboModuleBinding.h; path = turbomodule/core/TurboModuleBinding.h; sourceTree = ""; }; + CC264D21EAF74E8C5F178B430E18CE47 /* JSCRuntime.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = JSCRuntime.cpp; sourceTree = ""; }; CC36153E97819CC766DFEB874BBF6500 /* FIRInstallationsIIDTokenStore.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstallationsIIDTokenStore.m; path = FirebaseInstallations/Source/Library/IIDMigration/FIRInstallationsIIDTokenStore.m; sourceTree = ""; }; - CC547F27AFE464620F4B58D5283952F4 /* RCTSettingsManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTSettingsManager.h; path = Libraries/Settings/RCTSettingsManager.h; sourceTree = ""; }; CC558CC663CA045F998F5CA528ADEDB7 /* enc_mips_dsp_r2.c */ = {isa = PBXFileReference; includeInIndex = 1; name = enc_mips_dsp_r2.c; path = src/dsp/enc_mips_dsp_r2.c; sourceTree = ""; }; - CC7DE6EC5643854FE9DFEB03FFBD307F /* ios_time.png */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = image.png; name = ios_time.png; path = docs/images/ios_time.png; sourceTree = ""; }; + CC76F7D673A9515F2AA3A9CBC26C6572 /* ARTNodeManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = ARTNodeManager.h; sourceTree = ""; }; + CC83285B8FFE6264303C37DA42984689 /* Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = Private.h; sourceTree = ""; }; + CCCD2C94BD30D3B521CD399597DFA1BA /* ReactCommon.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = ReactCommon.xcconfig; sourceTree = ""; }; + CCCDDF994AB905DE9C260944E7A71F89 /* react-native-background-timer-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "react-native-background-timer-prefix.pch"; sourceTree = ""; }; + CCD293FA0EAEF58D6E0D1A4661E49E02 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; CCE13B65AEE9DB27E1676D172D142597 /* FIRErrorCode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRErrorCode.h; path = FirebaseCore/Sources/Private/FIRErrorCode.h; sourceTree = ""; }; CCE294EC7F18FA41E37CBBE707B45FEA /* FIRInstanceIDCombinedHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstanceIDCombinedHandler.h; path = Firebase/InstanceID/FIRInstanceIDCombinedHandler.h; sourceTree = ""; }; - CD05057504EA0D047D1368ED39C03962 /* BSG_KSCrashSentry_Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashSentry_Private.h; sourceTree = ""; }; - CD09EF50591FE6079F45B714CABBF042 /* RNDateTimePicker-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNDateTimePicker-dummy.m"; sourceTree = ""; }; - CD17BCF75ACA06CD42D42089C2076038 /* RCTScrollContentViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTScrollContentViewManager.h; sourceTree = ""; }; - CD23B50D69689A33773F3E14C92A1EC6 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; - CD470D4A16FBB4DAAFAB1FB1DC1E378F /* RNUserDefaults-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNUserDefaults-dummy.m"; sourceTree = ""; }; - CD47D297B233E6B1B7503E9B48C8A8B0 /* BSG_RFC3339DateTool.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_RFC3339DateTool.h; sourceTree = ""; }; - CD7A83EF812ADF87E10F39C6C68C64E1 /* EXAVObject.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXAVObject.h; path = EXAV/EXAVObject.h; sourceTree = ""; }; - CD81524ED48B48D5EC48654321483E76 /* RCTEventAnimation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTEventAnimation.h; sourceTree = ""; }; - CD94E261EB58A9E366B55161C8BADBE7 /* RCTNetworkTask.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTNetworkTask.h; path = Libraries/Network/RCTNetworkTask.h; sourceTree = ""; }; - CD9F66BA347806853E7A440558DC2009 /* RNBackgroundTimer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNBackgroundTimer.h; path = ios/RNBackgroundTimer.h; sourceTree = ""; }; + CD07B1E4268858E14F0544203AE43256 /* RecoverableError.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RecoverableError.h; sourceTree = ""; }; + CD2876941A6308794AFFA9F2ECCD90E4 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; + CD2AF6A5A1620BD7F0DCD17EAB8A73CB /* RCTDisplayLink.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTDisplayLink.h; sourceTree = ""; }; + CD397F08DCC61B47D7A7E89F8A6B503F /* LICENCE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENCE; sourceTree = ""; }; + CD41C0268DCE4A9FFBD989A394BA7C6D /* RCTTextDecorationLineType.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTextDecorationLineType.h; sourceTree = ""; }; + CD51A155264523A3BC8E61514600183A /* JSCRuntime.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = JSCRuntime.h; sourceTree = ""; }; + CD58055A3420A79299262FFF12AAE574 /* RCTBridgeDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBridgeDelegate.h; sourceTree = ""; }; + CD8FA610ED442EF54B7A3621701720A2 /* RAMBundleRegistry.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = RAMBundleRegistry.cpp; sourceTree = ""; }; CDAD3963A0F8EA40EAE6B916D5AA0A1F /* FBLPromise+Await.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FBLPromise+Await.h"; path = "Sources/FBLPromises/include/FBLPromise+Await.h"; sourceTree = ""; }; - CDEB73FF6978392D966224D99861C785 /* RNPushKitEventHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNPushKitEventHandler.h; path = RNNotifications/RNPushKitEventHandler.h; sourceTree = ""; }; - CDFFD1EB35C7E5BB3110A29A1825464E /* UMFaceDetectorManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMFaceDetectorManager.h; path = UMFaceDetectorInterface/UMFaceDetectorManager.h; sourceTree = ""; }; - CE3C0F03CEBA7D3784CA020DB10A6A64 /* UMAppDelegateWrapper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMAppDelegateWrapper.h; path = UMCore/UMAppDelegateWrapper.h; sourceTree = ""; }; + CDB0B1AD988F0C8E905480472EAD9AF9 /* EXReactNativeUserNotificationCenterProxy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXReactNativeUserNotificationCenterProxy.m; path = EXPermissions/EXReactNativeUserNotificationCenterProxy.m; sourceTree = ""; }; + CDB556E0C6EA1C86F3268807D706B123 /* RCTShadowView+Layout.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RCTShadowView+Layout.m"; sourceTree = ""; }; + CDF82BBA5F38308C657334F5B05987B0 /* RNEventEmitter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNEventEmitter.h; path = RNNotifications/RNEventEmitter.h; sourceTree = ""; }; + CDFFE655B5351851551DA661BB7ED091 /* react-native-webview-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "react-native-webview-dummy.m"; sourceTree = ""; }; + CE2284606C1BCC9C5B0C58C58D759BED /* FBLazyIterator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBLazyIterator.h; path = FBLazyVector/FBLazyIterator.h; sourceTree = ""; }; + CE346E52AE3F8F80411B4E8D4A0A9C23 /* RCTImageViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTImageViewManager.m; sourceTree = ""; }; CE50447D6089FD034C451BE7675B6D7A /* picture_enc.c */ = {isa = PBXFileReference; includeInIndex = 1; name = picture_enc.c; path = src/enc/picture_enc.c; sourceTree = ""; }; - CE5054CB399F9901FF193F88B8D5427D /* RCTUIManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTUIManager.h; sourceTree = ""; }; - CE69419E38094A83898713802458E7E1 /* RCTBaseTextInputView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBaseTextInputView.h; sourceTree = ""; }; - CE6CA023CC9E78434E79E308BBF2CFD5 /* FBReactNativeSpec-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "FBReactNativeSpec-dummy.m"; sourceTree = ""; }; - CE7152566D1A33559178736F0DE3167C /* RCTTextAttributes.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTTextAttributes.m; sourceTree = ""; }; CE71CD3D3C773A121030FB81AB751D1A /* GDTCORPlatform.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCORPlatform.h; path = GoogleDataTransport/GDTCORLibrary/Public/GDTCORPlatform.h; sourceTree = ""; }; - CE8DFF2CFED4362D4E5BD0D9912A18DE /* UMAppDelegateWrapper.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = UMAppDelegateWrapper.m; path = UMCore/UMAppDelegateWrapper.m; sourceTree = ""; }; - CEA0CA780795D10F2739E501C7FC49AB /* EXConstants.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = EXConstants.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - CECB83613519345964F31D322F7F18A9 /* React-RCTLinking-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-RCTLinking-dummy.m"; sourceTree = ""; }; - CEE74D72BD81F22BDDA2A8ECAC0EF55F /* RCTBaseTextViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBaseTextViewManager.h; sourceTree = ""; }; + CEBE1AEEEAA3894D097740711D92330E /* SharedProxyCxxModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = SharedProxyCxxModule.h; sourceTree = ""; }; CF05DD10D852093D157806E5E953BD23 /* iterator_enc.c */ = {isa = PBXFileReference; includeInIndex = 1; name = iterator_enc.c; path = src/enc/iterator_enc.c; sourceTree = ""; }; - CF28EC7DE25E24BB4C0F4ED8FE012653 /* CxxModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = CxxModule.h; sourceTree = ""; }; - CF3ABE487ACB39B2F06050C40519366F /* RNScreens-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNScreens-dummy.m"; sourceTree = ""; }; - CF6DD5E7D0621F9E885AF5BBF5C4AB43 /* YGValue.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YGValue.h; path = yoga/YGValue.h; sourceTree = ""; }; + CF112031398DB6ACDE25DF0E97AD3A17 /* REAParamNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REAParamNode.m; sourceTree = ""; }; + CF5DF84ED7BD46C898CF322C3FDA980A /* READebugNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = READebugNode.h; sourceTree = ""; }; + CF8BD4089AE1F91B64B4ADD0A90CF28A /* REANode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REANode.m; sourceTree = ""; }; CF993D633A32BC1ADCF4B996EA47AB13 /* FIRInstanceIDCheckinService.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstanceIDCheckinService.h; path = Firebase/InstanceID/FIRInstanceIDCheckinService.h; sourceTree = ""; }; - CF9F15FD5960E55BD2D1A59F9F4F379C /* ReactNativeART.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = ReactNativeART.xcconfig; sourceTree = ""; }; - CFA4FD27BF4EF6BF9F31B449BD11B3A0 /* QBAssetsViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = QBAssetsViewController.h; path = ios/QBImagePicker/QBImagePicker/QBAssetsViewController.h; sourceTree = ""; }; - CFC46799B96695284F0D93FF2CBD9E33 /* Instance.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = Instance.cpp; sourceTree = ""; }; - CFC83A96B783E6971A1EEEA7708B461F /* RCTWrapperViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTWrapperViewController.h; sourceTree = ""; }; - CFD89BDD36EFFB95791A0D1BDEE26AF1 /* RCTAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTAnimatedNode.h; sourceTree = ""; }; - CFEE60A15DCDC8CB79B25E3A19FB4F2E /* SRError.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = SRError.m; sourceTree = ""; }; + CFBEF106655B3DE0DE1707129CE4C182 /* FFFastImageView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FFFastImageView.h; path = ios/FastImage/FFFastImageView.h; sourceTree = ""; }; + CFE8E27B65B95F6ECC427DDB4D0567D5 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; + CFF77FA29836B0D7440C94D956777A5E /* ja.lproj */ = {isa = PBXFileReference; includeInIndex = 1; name = ja.lproj; path = ios/QBImagePicker/QBImagePicker/ja.lproj; sourceTree = ""; }; D00145960C57E93C0FE7769437FEFA04 /* FIRInstanceIDTokenDeleteOperation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstanceIDTokenDeleteOperation.h; path = Firebase/InstanceID/FIRInstanceIDTokenDeleteOperation.h; sourceTree = ""; }; - D0018E5273E1F3A9E33A2A60A4A239E0 /* BSG_KSLogger.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSLogger.h; sourceTree = ""; }; - D068AA010E5068DD76917E39E0E3352A /* experiments-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "experiments-inl.h"; sourceTree = ""; }; - D0A0CC56A64639015791B404EDC7C406 /* React-RCTVibration-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-RCTVibration-dummy.m"; sourceTree = ""; }; - D0CDF372B79B19534402289628E4608E /* InspectorInterfaces.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = InspectorInterfaces.cpp; sourceTree = ""; }; - D0F09ED87D626E7B4260EDB6A8ACEBD2 /* RCTMultilineTextInputViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTMultilineTextInputViewManager.m; sourceTree = ""; }; + D045AEF9F23D6AC81AA9505593167B69 /* RNScreens.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNScreens.xcconfig; sourceTree = ""; }; + D075C71D4C0C39F67DE3C7451916A577 /* RCTImageShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageShadowView.h; path = Libraries/Image/RCTImageShadowView.h; sourceTree = ""; }; + D08A231B08E5233EA0462CE87A7CEA26 /* RCTProfileTrampoline-arm64.S */ = {isa = PBXFileReference; includeInIndex = 1; path = "RCTProfileTrampoline-arm64.S"; sourceTree = ""; }; + D08A9161C10FA43A9478466E564BA91B /* TurboCxxModule.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = TurboCxxModule.cpp; path = turbomodule/core/TurboCxxModule.cpp; sourceTree = ""; }; + D09341F2420B8B6C6306246C8261092D /* RCTAnimationDriver.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTAnimationDriver.h; sourceTree = ""; }; + D0DA39416131DDA6FD113AED143C09D7 /* RCTKeyCommandsManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTKeyCommandsManager.h; path = ios/KeyCommands/RCTKeyCommandsManager.h; sourceTree = ""; }; D0FE094866BD845597950E5E71ABA095 /* boost-for-react-native.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "boost-for-react-native.xcconfig"; sourceTree = ""; }; - D10B756D6433BD53BC68C90390C45CC7 /* BSG_KSJSONCodecObjC.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSJSONCodecObjC.h; sourceTree = ""; }; - D16DB42242AAD6739B77AF6F41605B7A /* SRLog.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = SRLog.m; sourceTree = ""; }; - D17E584D3DC8DAF5C97C33F3CE5B8AD2 /* UMImageLoaderInterface.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = UMImageLoaderInterface.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - D2043CF5152C825C890550BD1356BFBD /* RCTMultipartStreamReader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTMultipartStreamReader.h; sourceTree = ""; }; - D20773A3ABE321E7E66ED677F6D96CBC /* RCTProgressViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTProgressViewManager.m; sourceTree = ""; }; + D168C46C2D5418F8C09978772351355F /* RCTNetworkTask.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTNetworkTask.m; sourceTree = ""; }; + D17A82E1B8D80E44CA11B7579813C374 /* RCTSpringAnimation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSpringAnimation.m; sourceTree = ""; }; + D190D2321000F2D1EEE359D96EAA6622 /* RCTModalManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTModalManager.h; sourceTree = ""; }; + D1C4C7B631E523D59084AD135A2BFFBD /* RCTCxxUtils.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTCxxUtils.mm; sourceTree = ""; }; D21939B5F49D3C368E0AE91BCDCB1CF4 /* histogram_enc.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = histogram_enc.h; path = src/enc/histogram_enc.h; sourceTree = ""; }; - D229B2E64A6AD47DEA3FAB57A3C58F9A /* RNCSliderManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCSliderManager.m; path = ios/RNCSliderManager.m; sourceTree = ""; }; + D22B8726A0B75B8B3970CCE1DDEB7166 /* RNFirebaseFirestoreCollectionReference.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNFirebaseFirestoreCollectionReference.m; sourceTree = ""; }; D2339AD0FFA27A5E25CA38B3E89E724E /* FIRInstanceIDUtilities.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstanceIDUtilities.h; path = Firebase/InstanceID/FIRInstanceIDUtilities.h; sourceTree = ""; }; - D2343C88DB7EFD216839F145E2680F52 /* react-native-jitsi-meet-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "react-native-jitsi-meet-dummy.m"; sourceTree = ""; }; D2435B61807A015F7C86DCAB5E5A19AC /* vp8li_enc.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = vp8li_enc.h; path = src/enc/vp8li_enc.h; sourceTree = ""; }; - D299EB579C6FDA2EAF70C40BEDB65683 /* RCTValueAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTValueAnimatedNode.h; sourceTree = ""; }; - D2E7B72A0F5317C61BB9CC6DFB7CF533 /* Compression.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = Compression.m; path = ios/src/Compression.m; sourceTree = ""; }; - D328FE948889A058CE8AE8506C08089C /* RCTSlider.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSlider.h; sourceTree = ""; }; + D24AD048A4B3F5467DA06657F1339CD5 /* RCTErrorInfo.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTErrorInfo.m; sourceTree = ""; }; + D28613E98A46A0EE9018556951EBD668 /* LICENSE.md */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE.md; sourceTree = ""; }; + D2FD13AE085185F0B4F9B37CDB3F6815 /* UMAppLifecycleListener.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMAppLifecycleListener.h; sourceTree = ""; }; + D3038B691CBB8D31F26D901D94F774E6 /* RNGestureHandlerState.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNGestureHandlerState.h; path = ios/RNGestureHandlerState.h; sourceTree = ""; }; + D343B59DABDDFEC2F2E11C886E30474D /* RCTRefreshControl.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTRefreshControl.m; sourceTree = ""; }; + D3480B0E19980EC835584D10A01FFD2D /* FontAwesome5_Solid.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = FontAwesome5_Solid.ttf; path = Fonts/FontAwesome5_Solid.ttf; sourceTree = ""; }; + D34A1447E7A054BF22DF40BDA08A0197 /* CxxNativeModule.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = CxxNativeModule.cpp; sourceTree = ""; }; D34AAFE9C37C1A4DC2FFAF19DFF69CDC /* dec_clip_tables.c */ = {isa = PBXFileReference; includeInIndex = 1; name = dec_clip_tables.c; path = src/dsp/dec_clip_tables.c; sourceTree = ""; }; D3601FC2175A7805C42496F6D3F25E1D /* GDTCOREventDataObject.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCOREventDataObject.h; path = GoogleDataTransport/GDTCORLibrary/Public/GDTCOREventDataObject.h; sourceTree = ""; }; + D378B19DB71DE15E6D101071559E2414 /* BSG_KSCrashIdentifier.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BSG_KSCrashIdentifier.m; sourceTree = ""; }; D3ABC6469D72A242803A91AF2DA0B153 /* FIRInstallationsItem.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstallationsItem.h; path = FirebaseInstallations/Source/Library/FIRInstallationsItem.h; sourceTree = ""; }; - D3ACDC17AF9A573823884B791DB047BE /* UMUserNotificationCenterProxyInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMUserNotificationCenterProxyInterface.h; path = UMPermissionsInterface/UMUserNotificationCenterProxyInterface.h; sourceTree = ""; }; - D3B448C982D7EBD948B4234A6E44C763 /* YGNodePrint.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = YGNodePrint.cpp; path = yoga/YGNodePrint.cpp; sourceTree = ""; }; - D3F5DEDE72F9BC9C91355919B2C12D2D /* RCTScrollContentView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTScrollContentView.h; sourceTree = ""; }; - D3FDD7D93C571A667E0831F1A88BF76E /* CoreModulesPlugins.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = CoreModulesPlugins.mm; sourceTree = ""; }; - D413490959869B9502726774F55A6D44 /* RCTNativeAnimatedNodesManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTNativeAnimatedNodesManager.m; sourceTree = ""; }; + D3C6DEE768B5877013FC01775363AD4F /* QBVideoIndicatorView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = QBVideoIndicatorView.m; path = ios/QBImagePicker/QBImagePicker/QBVideoIndicatorView.m; sourceTree = ""; }; + D3CEB80305B48975A47AD18BFFEA7611 /* 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; }; + D40F880C10CC981DF3F05D2C1CBC71EC /* RCTPickerManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTPickerManager.h; sourceTree = ""; }; + D416471368066B2302F1B793CB4E24D7 /* threadsafe.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = threadsafe.h; sourceTree = ""; }; + D4174C80D73CF2A07F03D41AFD17478B /* React-RCTLinking-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-RCTLinking-prefix.pch"; sourceTree = ""; }; D4389EC289745BCEF60BEA7CDAC784D2 /* GULAppDelegateSwizzler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GULAppDelegateSwizzler.m; path = GoogleUtilities/AppDelegateSwizzler/GULAppDelegateSwizzler.m; sourceTree = ""; }; - D43C4460B969FE5B8EA38996A9B54E06 /* RNCommandsHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCommandsHandler.m; path = RNNotifications/RNCommandsHandler.m; sourceTree = ""; }; D43DE3DC7792E0B353371829F68C0FFD /* Pods-ShareRocketChatRN-acknowledgements.markdown */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; path = "Pods-ShareRocketChatRN-acknowledgements.markdown"; sourceTree = ""; }; - D44B0D95BDFB4FC2B12FF156D34873B6 /* BSG_KSSignalInfo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSSignalInfo.h; sourceTree = ""; }; - D45C637C3EFB15AF8940238347419E27 /* RCTClipboard.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTClipboard.h; sourceTree = ""; }; - D48BCF842FABD776150BAA9BB4A4E2EB /* ARTShape.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = ARTShape.m; path = ios/ARTShape.m; sourceTree = ""; }; - D49FBB4BAF0905B91E5A130C7D85CC9B /* RCTURLRequestDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTURLRequestDelegate.h; sourceTree = ""; }; - D4C71B8344FFCEFC6D32F754AFED7707 /* LNInterpolation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = LNInterpolation.h; sourceTree = ""; }; - D51EE29F11A5F83DABF1D865890EBC0F /* RCTMaskedViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTMaskedViewManager.h; sourceTree = ""; }; - D5210DBD5CEE5BD5EF9DFA8AF49492EC /* RCTModalHostViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTModalHostViewManager.m; sourceTree = ""; }; + D468698EF0E3423844D4EA60736389A4 /* RNReanimated.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RNReanimated.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + D47D3600545703DC639CC0FC96134CD7 /* RCTViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTViewManager.h; sourceTree = ""; }; + D48DA90B6A9D843B63A7579FA2C7E972 /* BugsnagBreadcrumb.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagBreadcrumb.m; sourceTree = ""; }; + D4A6B6B426B31D5630CDBA836D2FF9D8 /* BSG_KSBacktrace.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSBacktrace.h; sourceTree = ""; }; + D4C4F7CDE8BD004BD46B396CCD9D8234 /* react-native-jitsi-meet-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "react-native-jitsi-meet-dummy.m"; sourceTree = ""; }; + D4C5F5D791B6F526FB95ADB58BB237B6 /* RCTSurfaceRootShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSurfaceRootShadowView.h; sourceTree = ""; }; + D50D6B679FC38A0B85069A2DF33BFAB1 /* RNLocalize.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNLocalize.xcconfig; sourceTree = ""; }; D525C8CC60B15909F0B82D63E338E963 /* SDImageGraphics.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageGraphics.m; path = SDWebImage/Core/SDImageGraphics.m; sourceTree = ""; }; - D52A63F75807F3148470F4CD4B5DBC70 /* React-Core-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-Core-prefix.pch"; sourceTree = ""; }; D53A23815D628A7C3EFFC59488C8EA44 /* filters_utils.c */ = {isa = PBXFileReference; includeInIndex = 1; name = filters_utils.c; path = src/utils/filters_utils.c; sourceTree = ""; }; D53CE5F9F1B3C1396FB3444A3DC670B0 /* FIRInstanceIDURLQueryItem.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstanceIDURLQueryItem.m; path = Firebase/InstanceID/FIRInstanceIDURLQueryItem.m; sourceTree = ""; }; - D58B3D9F699BFBEF16AA2CC82CA907DC /* BSG_KSSystemInfo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSSystemInfo.h; sourceTree = ""; }; - D59853E1F7C76D1F53A4AF7E12C099FC /* React-RCTImage.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-RCTImage.xcconfig"; sourceTree = ""; }; - D59EEE985E14494A1BDB3E0E21F79E05 /* RNFirebaseAdMob.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNFirebaseAdMob.h; sourceTree = ""; }; - D5A8E89DA9929CB6D34C2B3DCC16CB76 /* RCTFrameUpdate.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTFrameUpdate.m; sourceTree = ""; }; + D55F630EF710E1F4061AC7F94DEC4437 /* UIView+React.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "UIView+React.h"; sourceTree = ""; }; + D578A923BDF78F6E661CB528ADC2119D /* RCTBorderDrawing.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBorderDrawing.h; sourceTree = ""; }; D5B3BDB0DF8A0EE45046BCB479E4B62C /* GDTCORDataFuture.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCORDataFuture.h; path = GoogleDataTransport/GDTCORLibrary/Public/GDTCORDataFuture.h; sourceTree = ""; }; - D5BB8C4A5B89B93A54210020B52760AD /* RCTDisplayLink.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTDisplayLink.h; sourceTree = ""; }; D5C775614AC76D44CECB6BE08B022F1F /* libReactCommon.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libReactCommon.a; path = libReactCommon.a; sourceTree = BUILT_PRODUCTS_DIR; }; - D5F0D6A6E5DCD8D75DD39C3D32A148FA /* RCTRefreshControl.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTRefreshControl.m; sourceTree = ""; }; - D63692C0E7A705D9370F7BD189DAA2CF /* RNForceTouchHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNForceTouchHandler.h; sourceTree = ""; }; + D60525102E9CF955CCD58FC6757EFB28 /* RNSScreenStackHeaderConfig.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNSScreenStackHeaderConfig.m; path = ios/RNSScreenStackHeaderConfig.m; sourceTree = ""; }; + D6239308CC1B53D9B40E09F6020AA313 /* BSG_KSCrashReportFilter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashReportFilter.h; sourceTree = ""; }; D63B972B95C4ACEAA36C351BF1B2CDDD /* SDImageCacheConfig.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageCacheConfig.m; path = SDWebImage/Core/SDImageCacheConfig.m; sourceTree = ""; }; - D65E68B93FB3217B03B69F5FC4A4196F /* RCTModuleData.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTModuleData.h; sourceTree = ""; }; - D663687779FA5090927E808C13E98D01 /* EXConstants.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = EXConstants.xcconfig; sourceTree = ""; }; D66719B7E0573E532519532723F67812 /* Assume.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = Assume.cpp; path = folly/lang/Assume.cpp; sourceTree = ""; }; - D6B6866455153F0C88C9AC425906D711 /* JsArgumentHelpers-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "JsArgumentHelpers-inl.h"; sourceTree = ""; }; - D6C1F29D38A015CD434F043ADAE0C80F /* RCTShadowView+Layout.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RCTShadowView+Layout.m"; sourceTree = ""; }; - D6D95C9208F5BA2F9CB7DEFEF7FFDECF /* RCTInterpolationAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTInterpolationAnimatedNode.m; sourceTree = ""; }; + D6CD053C18B431A14A30D28DF52545FB /* BSG_KSLogger.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BSG_KSLogger.m; sourceTree = ""; }; + D6D1FF00459282BB2FDCD94695E9A5C9 /* BSG_KSSignalInfo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSSignalInfo.h; sourceTree = ""; }; + D6F83C5B8128560C302B2FBA53C98CCD /* ReactNativeART.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = ReactNativeART.xcconfig; sourceTree = ""; }; D701D1816B81717849B176050ED98E4F /* FBLPromise+Testing.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "FBLPromise+Testing.m"; path = "Sources/FBLPromises/FBLPromise+Testing.m"; sourceTree = ""; }; - D73BFDE40792D5D4DE76E754D057B8EF /* UMTaskManagerInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMTaskManagerInterface.h; path = UMTaskManagerInterface/UMTaskManagerInterface.h; sourceTree = ""; }; - D73E9F5256FAFC6F64368F34D6438D49 /* RNGestureHandlerState.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNGestureHandlerState.h; path = ios/RNGestureHandlerState.h; sourceTree = ""; }; D74BB20E1BC0B778FF8CFFA36C0840CF /* rescaler_sse2.c */ = {isa = PBXFileReference; includeInIndex = 1; name = rescaler_sse2.c; path = src/dsp/rescaler_sse2.c; sourceTree = ""; }; D7593711A2E6EAD105E206B03D6E3616 /* UIColor+HexString.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIColor+HexString.m"; path = "SDWebImage/Private/UIColor+HexString.m"; sourceTree = ""; }; D76568A132A5A42C9799FAF84FB8BD09 /* GDTCORStorage_Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCORStorage_Private.h; path = GoogleDataTransport/GDTCORLibrary/Private/GDTCORStorage_Private.h; sourceTree = ""; }; + D7794F9473569D9DBA4A12E7B350CE6B /* RCTTrackingAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTrackingAnimatedNode.h; sourceTree = ""; }; D78FEB55F9E2565E62801C68DC429BCE /* FIRInstanceID.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstanceID.m; path = Firebase/InstanceID/FIRInstanceID.m; sourceTree = ""; }; - D7989AAB611C1CBC3D4BF5E88FD14802 /* REAClockNodes.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REAClockNodes.m; sourceTree = ""; }; - D799D8ABEBBA30A4B950CAB36EAF36E1 /* react-native-notifications.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "react-native-notifications.xcconfig"; sourceTree = ""; }; D79E6FEE7691DA5E934AADB1851C0232 /* encode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = encode.h; path = src/webp/encode.h; sourceTree = ""; }; - D7C65E5202BD6FD5E6D85DE803491F0F /* RCTConvert+FFFastImage.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "RCTConvert+FFFastImage.h"; path = "ios/FastImage/RCTConvert+FFFastImage.h"; sourceTree = ""; }; - D7CA1630494FD978E0C84BA8940B4C84 /* UMTaskConsumerInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMTaskConsumerInterface.h; path = UMTaskManagerInterface/UMTaskConsumerInterface.h; sourceTree = ""; }; - D7CD301DE8C33AFC31FBB707FA097453 /* RCTMultipartDataTask.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTMultipartDataTask.m; sourceTree = ""; }; - D7D0FEC06BDFBB5ABB28EF8174082B9B /* UMReactNativeAdapter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = UMReactNativeAdapter.m; sourceTree = ""; }; - D7E27CA1DCEF358279A3960D6BADB155 /* RNLongPressHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNLongPressHandler.h; sourceTree = ""; }; + D8056D7F986C2E2EFE85E02C807F757D /* RCTHTTPRequestHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTHTTPRequestHandler.h; path = Libraries/Network/RCTHTTPRequestHandler.h; sourceTree = ""; }; + D8105987156AE60E1367FC56E28A19ED /* NSTextStorage+FontScaling.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "NSTextStorage+FontScaling.h"; sourceTree = ""; }; + D815097C52BD12BD83A7E666EB86A118 /* React-jsi-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-jsi-prefix.pch"; sourceTree = ""; }; D8183FDF6CBBC2458D910575E0B9AE45 /* rescaler_utils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = rescaler_utils.h; path = src/utils/rescaler_utils.h; sourceTree = ""; }; - D82E58C035AE88E8480F07CC8AEAEEF1 /* YGMacros.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YGMacros.h; path = yoga/YGMacros.h; sourceTree = ""; }; + D83FF9E67D8B49D47E872869CE224AA2 /* RCTJSStackFrame.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTJSStackFrame.m; sourceTree = ""; }; + D8769C70C86B65DF6E21276A1A22C134 /* RNFastImage.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNFastImage.xcconfig; sourceTree = ""; }; + D87895D1A7528674953C49E301EA8397 /* REAConcatNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REAConcatNode.h; sourceTree = ""; }; + D896773D29755E1615A12B08A89BB3AA /* advancedIos.md */ = {isa = PBXFileReference; includeInIndex = 1; name = advancedIos.md; path = docs/advancedIos.md; sourceTree = ""; }; + D8AB6C8DC931DE9A770BB12FFE47E751 /* RCTAlertManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTAlertManager.m; sourceTree = ""; }; D8ABBD704A725E7E0D996145CBF6F03A /* 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 = ""; }; - D8D105744D89D41C51D7366D9C1F12AF /* RCTSourceCode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSourceCode.m; sourceTree = ""; }; D8DE3BC13CAB60BD0F12942A7720BC23 /* FIRDiagnosticsData.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRDiagnosticsData.m; path = FirebaseCore/Sources/FIRDiagnosticsData.m; sourceTree = ""; }; - D8E39B23B48773C52C45606E9C76C345 /* RNFirebase.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RNFirebase.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + D8F37DB1BAC1BA1087476BCD1EDB1F8D /* RNFirebase.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNFirebase.h; path = RNFirebase/RNFirebase.h; sourceTree = ""; }; D91483DC2ACFBE14D934FB42131A0745 /* webpi_dec.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = webpi_dec.h; path = src/dec/webpi_dec.h; sourceTree = ""; }; - D916A145C86ACF5D6B7D8B59318A684D /* BSG_KSDynamicLinker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSDynamicLinker.h; sourceTree = ""; }; - D928D107A0205FC146B0B4D0DA6217B2 /* RCTAlertManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTAlertManager.m; sourceTree = ""; }; D93D3654709D1331D79514EC1B960450 /* lossless_mips_dsp_r2.c */ = {isa = PBXFileReference; includeInIndex = 1; name = lossless_mips_dsp_r2.c; path = src/dsp/lossless_mips_dsp_r2.c; sourceTree = ""; }; - D95CA5A405D8A647E0023BAA9DB29152 /* RCTConvert+Text.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "RCTConvert+Text.h"; path = "Libraries/Text/RCTConvert+Text.h"; sourceTree = ""; }; - D97FE7AC856985BE11B7345F38491585 /* BSG_KSMach.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSMach.h; sourceTree = ""; }; + D94EF9D8C49CFF644F0AD13580B65E5C /* React-RCTImage-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-RCTImage-dummy.m"; sourceTree = ""; }; D996FB83753842B15AAE13001FED927E /* UIApplication+RSKImageCropper.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIApplication+RSKImageCropper.m"; path = "RSKImageCropper/UIApplication+RSKImageCropper.m"; sourceTree = ""; }; - D9978EFD225317CD8079BD001D10843B /* RCTDatePicker.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTDatePicker.m; sourceTree = ""; }; - D99E6A52E94F195ED249309F88CB52CA /* react-native-orientation-locker-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "react-native-orientation-locker-prefix.pch"; sourceTree = ""; }; - D9AFB91BBF49BF620AA053C9102946E4 /* RNBootSplash.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNBootSplash.xcconfig; sourceTree = ""; }; + D9AC424D1A5BC320BF1EC7E2C2F3652D /* REAValueNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REAValueNode.h; sourceTree = ""; }; D9C3D3CC551D9381EB6D1805585CF24D /* FIRInstanceIDAuthKeyChain.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstanceIDAuthKeyChain.m; path = Firebase/InstanceID/FIRInstanceIDAuthKeyChain.m; sourceTree = ""; }; D9F334F2E90E3EE462FC4192AF5C03BD /* libReact-jsi.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libReact-jsi.a"; path = "libReact-jsi.a"; sourceTree = BUILT_PRODUCTS_DIR; }; - D9FFF0DDA092D68ED00FA2A01676FA09 /* SRPinningSecurityPolicy.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = SRPinningSecurityPolicy.h; sourceTree = ""; }; - DA788A6E731EB911D3B8E8D74459028C /* RNNotifications.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNNotifications.h; path = RNNotifications/RNNotifications.h; sourceTree = ""; }; - DA8BC861A666D1E1C917F57565070C44 /* RNNotificationParser.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNNotificationParser.h; path = RNNotifications/RNNotificationParser.h; sourceTree = ""; }; - DA8FD0BA2B221950A40ED181E849C297 /* RNLocalize.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNLocalize.xcconfig; sourceTree = ""; }; + DA0A914F95EC0D3983D7B4C4AC1BD9CB /* RCTMultiplicationAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTMultiplicationAnimatedNode.m; sourceTree = ""; }; + DA11FE95A41E9CFC348E16D89E3989C3 /* RCTRootShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTRootShadowView.h; sourceTree = ""; }; + DA46BDECFBF0757C612C2E9AE49CB34F /* RNBootSplash-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNBootSplash-dummy.m"; sourceTree = ""; }; + DA58948875C4402E1D271A01A5D3D543 /* YGNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YGNode.h; path = yoga/YGNode.h; sourceTree = ""; }; + DA6B5D7C25005F26EA1F762DDBBBD31A /* RCTScrollViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTScrollViewManager.h; sourceTree = ""; }; + DA6F1053894D5E42F7EF24340A881C1F /* RCTAccessibilityManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTAccessibilityManager.h; sourceTree = ""; }; + DA7DB9D03B77A0AD415A926C86BEFAA2 /* RCTImageView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageView.h; path = Libraries/Image/RCTImageView.h; sourceTree = ""; }; + DA969159AFFB2BC5EF84D1109CA9F7B2 /* RNVectorIconsManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNVectorIconsManager.m; path = RNVectorIconsManager/RNVectorIconsManager.m; sourceTree = ""; }; + DAB1EC0A430C852147670277947FA7CE /* RCTSRWebSocket.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTSRWebSocket.h; path = Libraries/WebSocket/RCTSRWebSocket.h; sourceTree = ""; }; + DAC42D6378B4A8DA99C8441218A0E640 /* EXPermissions.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXPermissions.m; path = EXPermissions/EXPermissions.m; sourceTree = ""; }; + DACFC6CDEFD1B3CC5FD3B77C2F41C21A /* RNDateTimePickerManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNDateTimePickerManager.h; path = ios/RNDateTimePickerManager.h; sourceTree = ""; }; DAD1EC07061CD01D8DB00C1DF9CBA5B9 /* SDWebImageWebPCoder-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "SDWebImageWebPCoder-dummy.m"; sourceTree = ""; }; - DAE8A2391847858777EC8ACFC83F1826 /* NativeModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = NativeModule.h; sourceTree = ""; }; + DADC2B23E659B1845C0F16574087D8D3 /* RCTWebSocketModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTWebSocketModule.h; path = Libraries/WebSocket/RCTWebSocketModule.h; sourceTree = ""; }; + DADFA29679DDDCE50802FB9F0E63891D /* react-native-webview.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "react-native-webview.xcconfig"; sourceTree = ""; }; + DB1396294BD397C47DFE2E77940D40C5 /* BSG_KSJSONCodec.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSJSONCodec.h; sourceTree = ""; }; DB4059D2FB364A28E6585D247CD47FBA /* lossless.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = lossless.h; path = src/dsp/lossless.h; sourceTree = ""; }; - DB4F6EC5C5800A0CCE98C47B6E8E41EC /* UMFontScalersManagerInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMFontScalersManagerInterface.h; path = UMFontInterface/UMFontScalersManagerInterface.h; sourceTree = ""; }; - DB74B8E0E7F8AD95BC70ACFEF567A015 /* RCTUITextField.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTUITextField.m; sourceTree = ""; }; - DB7B6FD6C6EE0BC4DD555D925F90B5B2 /* RNCAppearance.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCAppearance.h; path = ios/Appearance/RNCAppearance.h; sourceTree = ""; }; - DB7B7DED5BC12B45C227911BACA693AD /* EXFileSystemLocalFileHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXFileSystemLocalFileHandler.h; path = EXFileSystem/EXFileSystemLocalFileHandler.h; sourceTree = ""; }; - DBDFD00E0D0F645440B3C52CDAF3924E /* JSINativeModules.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = JSINativeModules.h; path = jsireact/JSINativeModules.h; sourceTree = ""; }; - DC1B11FD93DFAB4C6E08FF54F4DFADCC /* RootView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RootView.m; path = ios/RootView.m; sourceTree = ""; }; - DC26A9C488BB8A6A184B6388AFB81552 /* RCTSurfaceSizeMeasureMode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSurfaceSizeMeasureMode.h; sourceTree = ""; }; - DC3DA5DA8FE0F9BCE4503E8D5A7AC52B /* BugsnagReactNative.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = BugsnagReactNative.m; path = cocoa/BugsnagReactNative.m; sourceTree = ""; }; + DBB42A880691A8555F022897569AB967 /* RCTSwitchManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSwitchManager.h; sourceTree = ""; }; + DBBD0F8BF355B4D86CD79147196FD9C4 /* EXFileSystem.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXFileSystem.h; path = EXFileSystem/EXFileSystem.h; sourceTree = ""; }; + DBDD71525B618A4FC1A1B957BB3175EF /* EXWebBrowser.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = EXWebBrowser.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + DBEC3FE86BE0E6013132AC57F16E0A26 /* RCTMultipartDataTask.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTMultipartDataTask.m; sourceTree = ""; }; + DBF29F8652A0F7C37431977C2120739C /* QBImagePickerController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = QBImagePickerController.m; path = ios/QBImagePicker/QBImagePicker/QBImagePickerController.m; sourceTree = ""; }; DC3FBA3E5B2AE0036A215BD1C8E37D31 /* ColdClass.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = ColdClass.cpp; path = folly/lang/ColdClass.cpp; sourceTree = ""; }; - DC4D661EDA49D5AAE00EBD5945C9B927 /* ReactNativeShareExtension.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = ReactNativeShareExtension.m; path = ios/ReactNativeShareExtension.m; sourceTree = ""; }; - DC4EE86ED57A5C244D92B6AADEF47DA6 /* RCTInspector.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTInspector.h; sourceTree = ""; }; - DC8207E9D9E6CC6A92DA0EC2EC940696 /* BSG_KSSystemInfoC.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSSystemInfoC.h; sourceTree = ""; }; + DC465FA3E4FB4B65215A9BA22F9A0BC0 /* REAFunctionNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REAFunctionNode.m; sourceTree = ""; }; + DC70E3B215AAF282FC476C5BD4A9CCFF /* react-native-jitsi-meet.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "react-native-jitsi-meet.xcconfig"; sourceTree = ""; }; + DC7D75E5C5EE9AF36BA1CD8A4C46ED7B /* RCTFPSGraph.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTFPSGraph.h; sourceTree = ""; }; DC834FE770DBAFD4CAD544AB5F592ED4 /* FIRInstallations.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstallations.m; path = FirebaseInstallations/Source/Library/FIRInstallations.m; sourceTree = ""; }; - DC982BA645E4501054C92207D63A8DEE /* FBLazyVector.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = FBLazyVector.xcconfig; sourceTree = ""; }; DCA1074616EEF1BC09293FE2105C9CFC /* UIView+WebCacheOperation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIView+WebCacheOperation.m"; path = "SDWebImage/Core/UIView+WebCacheOperation.m"; sourceTree = ""; }; DCADAF076921DEC4D671151F9E0C9584 /* 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 = ""; }; + DCB0C29BDF1BA538986BF7B1ABE1CD20 /* RCTRootView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTRootView.m; sourceTree = ""; }; DCB16C1702DEA720BC36211E43A6596E /* logging.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = logging.cc; path = src/logging.cc; sourceTree = ""; }; DCB23ABFC8B49A5E319D843667A25D15 /* rescaler.c */ = {isa = PBXFileReference; includeInIndex = 1; name = rescaler.c; path = src/dsp/rescaler.c; sourceTree = ""; }; - DCB8719C5F9541D42F7ACCD58A5FFA76 /* RNNotificationEventHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNNotificationEventHandler.h; path = RNNotifications/RNNotificationEventHandler.h; sourceTree = ""; }; - DCD07C4900A296C51CC77B4A94FB2133 /* RCTRootShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTRootShadowView.h; sourceTree = ""; }; - DD1CDA00BBFDDBECA744F70CED75D8C3 /* RNSScreenContainer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNSScreenContainer.h; path = ios/RNSScreenContainer.h; sourceTree = ""; }; + DCCFD093AB7EEEE3BBD485C8D8CC0CA0 /* RCTSettingsManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSettingsManager.m; sourceTree = ""; }; + DD1ACDA8D6069E48780F82588482CD67 /* BugsnagSession.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagSession.m; sourceTree = ""; }; DD2806395B36E55041B47CB2F212D053 /* SDDeviceHelper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDDeviceHelper.h; path = SDWebImage/Private/SDDeviceHelper.h; sourceTree = ""; }; - DD440291E24C6A32F4E323F06C4B62F7 /* RNGestureHandlerManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNGestureHandlerManager.h; path = ios/RNGestureHandlerManager.h; sourceTree = ""; }; - DD4A65CBBCE93AF0594F619A3B4CED52 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; - DD4DBFF660B53870D6B05416FCA03E68 /* EXSystemBrightnessRequester.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXSystemBrightnessRequester.m; path = EXPermissions/EXSystemBrightnessRequester.m; sourceTree = ""; }; + DD4AC19853E3153E2B2A37659CA1C199 /* RCTCustomKeyboardViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTCustomKeyboardViewController.h; sourceTree = ""; }; DD709B78F7B831FDC9366D13746333E0 /* GULNetworkURLSession.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULNetworkURLSession.h; path = GoogleUtilities/Network/Private/GULNetworkURLSession.h; sourceTree = ""; }; - DD7406BA1E86D911AC4E38B1D68E5816 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; - DD8DF92340ECC59B2D8A0F26F76025E4 /* REAJSCallNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REAJSCallNode.h; sourceTree = ""; }; - DDC00BE7307F2C8A3E08D04DCD505136 /* RNGestureHandlerModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNGestureHandlerModule.h; path = ios/RNGestureHandlerModule.h; sourceTree = ""; }; - DDC3AD68B6C01CF82549839974F67A26 /* RNLocalize.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RNLocalize.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - DE216113D5C1728CD2DCC5081A37AE41 /* EXAppLoaderProvider.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXAppLoaderProvider.m; path = EXAppLoaderProvider/EXAppLoaderProvider.m; sourceTree = ""; }; - DEC16DAC9FF4E5C4BB47F0FD1CFFAB78 /* RNFirebaseStorage.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNFirebaseStorage.m; sourceTree = ""; }; + DD9ADDBF10393421028491EB2CC23D3A /* RCTKeyCommandsManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCTKeyCommandsManager.m; path = ios/KeyCommands/RCTKeyCommandsManager.m; sourceTree = ""; }; + DDAFB974FA6663AC44446FD8DA483AC0 /* REATransitionManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REATransitionManager.h; sourceTree = ""; }; + DDD7D632A4B00C25C2E623FB991C7407 /* rn-extensions-share-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "rn-extensions-share-dummy.m"; sourceTree = ""; }; + DE42EA30256051B7917CC764C8EE9FA0 /* RCTScrollView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTScrollView.m; sourceTree = ""; }; + DE431B97E37833EC7D1BC16F7A59326F /* react-native-appearance-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "react-native-appearance-dummy.m"; sourceTree = ""; }; + DE55E41657D4475F3CE8EA40B040D62E /* RCTFileReaderModule.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTFileReaderModule.m; sourceTree = ""; }; + DE6B694B56DB0F1DF8CBC2826FA9B1B0 /* RCTProfileTrampoline-i386.S */ = {isa = PBXFileReference; includeInIndex = 1; path = "RCTProfileTrampoline-i386.S"; sourceTree = ""; }; + DE8B7BF569CBA6D1DF75687E3F300B24 /* jsi.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = jsi.h; sourceTree = ""; }; DED9FC57D70D86176F806A8A2529655A /* RSKImageCropper.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RSKImageCropper.xcconfig; sourceTree = ""; }; - DEE1B553408FEEDEFC27C16F7D3A682F /* React-cxxreact-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-cxxreact-prefix.pch"; sourceTree = ""; }; - DEF1E6D4085ECAEDC5C63726D34480F6 /* UMReactFontManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMReactFontManager.h; sourceTree = ""; }; - DF22D78107F6A51F4D5DFC8BD27C71AB /* RNCWebViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCWebViewManager.m; path = ios/RNCWebViewManager.m; sourceTree = ""; }; - DF606D47A4DF17A77D07CF1F8071D83B /* RCTImageSource.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTImageSource.h; sourceTree = ""; }; - DF69FAC7AE2BB577C9855B8B5814580C /* ARTRadialGradient.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = ARTRadialGradient.m; sourceTree = ""; }; - DF787BB1E0CEBEA2B848F9F26475F952 /* REABezierNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REABezierNode.m; sourceTree = ""; }; + DF4D81554317C2DA4627E78356263986 /* REAAlwaysNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REAAlwaysNode.m; sourceTree = ""; }; + DFA17DDFACFA3BD373DD01F4D78902FF /* RNDateTimePicker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNDateTimePicker.h; path = ios/RNDateTimePicker.h; sourceTree = ""; }; DFC6BCB3B33D02DBB888628D1E52A351 /* histogram_enc.c */ = {isa = PBXFileReference; includeInIndex = 1; name = histogram_enc.c; path = src/enc/histogram_enc.c; sourceTree = ""; }; - DFE043D866D20BAAE36815B9899E841C /* EXAV.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = EXAV.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - E010BC1E0AD9F30DC22FA900D5A86D52 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; - E0296559B0223F56ABE0BC8CA6ABCBE4 /* EXAppRecordInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = EXAppRecordInterface.h; sourceTree = ""; }; + DFE1781A6CCF5AA0D49D19025480F590 /* RCTSafeAreaView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSafeAreaView.m; sourceTree = ""; }; + DFEB94ECFAAC6871B13FB3FD9E83AA75 /* AudioRecorderManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = AudioRecorderManager.m; path = ios/AudioRecorderManager.m; sourceTree = ""; }; + DFFFD5E840DAF271EC07068794F59A8B /* EXVideoView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = EXVideoView.m; sourceTree = ""; }; + E02B1FED0E1B7D7D17596A0D4A83D336 /* UMExportedModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMExportedModule.h; path = UMCore/UMExportedModule.h; sourceTree = ""; }; E05491038895B9B893771A35A083EAA8 /* FirebaseInstanceID-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "FirebaseInstanceID-dummy.m"; sourceTree = ""; }; + E0561C75A1A2ACC253357267929397E0 /* RCTResizeMode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTResizeMode.m; sourceTree = ""; }; E06128CB543E05DF7D4F8B8A3EF8EEF2 /* GDTCORStoredEvent.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCORStoredEvent.h; path = GoogleDataTransport/GDTCORLibrary/Public/GDTCORStoredEvent.h; sourceTree = ""; }; - E069EEC391BFDC087401924FA4673F28 /* ARTSurfaceViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = ARTSurfaceViewManager.m; sourceTree = ""; }; - E07638896351CBE331FFEDB245FB7647 /* YGConfig.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = YGConfig.cpp; path = yoga/YGConfig.cpp; sourceTree = ""; }; + E09C33EAFB2C86899356F040D09A7395 /* RCTSwitchManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSwitchManager.m; sourceTree = ""; }; + E0BFCEECC0723F338C167E5CC8F38542 /* BSG_KSSystemInfoC.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSSystemInfoC.h; sourceTree = ""; }; + E0C4770D37FD4D405BFD13ED0E6940C0 /* UMMagnetometerInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMMagnetometerInterface.h; path = UMSensorsInterface/UMMagnetometerInterface.h; sourceTree = ""; }; E0E17F86AEE63B4E96B07B6417885A38 /* GDTCORLifecycle.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCORLifecycle.h; path = GoogleDataTransport/GDTCORLibrary/Public/GDTCORLifecycle.h; sourceTree = ""; }; E0FE6533198104C97DB047DD5CD8AC67 /* libRNDeviceInfo.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libRNDeviceInfo.a; path = libRNDeviceInfo.a; sourceTree = BUILT_PRODUCTS_DIR; }; E10C2950FAF761DCACFC19CB9D52CF9C /* upsampling_msa.c */ = {isa = PBXFileReference; includeInIndex = 1; name = upsampling_msa.c; path = src/dsp/upsampling_msa.c; sourceTree = ""; }; + E122F8B915F5A0C02F11E96CB83F567B /* BSG_KSObjC.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSObjC.h; sourceTree = ""; }; E146C49FCEE4ED98740C53D8AF16B54A /* FIRInstallationsStore.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstallationsStore.h; path = FirebaseInstallations/Source/Library/InstallationsStore/FIRInstallationsStore.h; sourceTree = ""; }; - E14DA641C232C6F3E8E6CF211DC08160 /* UMGyroscopeInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMGyroscopeInterface.h; path = UMSensorsInterface/UMGyroscopeInterface.h; sourceTree = ""; }; E154067690FE650334C7C3D34DA323A1 /* filters.c */ = {isa = PBXFileReference; includeInIndex = 1; name = filters.c; path = src/dsp/filters.c; sourceTree = ""; }; - E18CFF8A50FA62A91B20657462853C52 /* RNFirebaseAdMobNativeExpressManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNFirebaseAdMobNativeExpressManager.h; sourceTree = ""; }; + E17B813ADEBBCD5930DBDE808FA18B7D /* RNFirebasePerformance.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNFirebasePerformance.h; sourceTree = ""; }; + E1818C9F66275E9185FC781EDBC356D6 /* RNJitsiMeetView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNJitsiMeetView.m; path = ios/RNJitsiMeetView.m; sourceTree = ""; }; + E19DA1777EC599E1490DFA81A349EA6B /* RCTImageURLLoader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageURLLoader.h; path = Libraries/Image/RCTImageURLLoader.h; sourceTree = ""; }; + E1DE1AC0868BE4AD630B10A72EB3F913 /* UMInternalModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMInternalModule.h; sourceTree = ""; }; E1E98A139B0A1E84E12ACFECE2DCC7BC /* MallocImpl.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = MallocImpl.cpp; path = folly/memory/detail/MallocImpl.cpp; sourceTree = ""; }; - E205C9A84B269CC452C83BFA5AFBE10D /* REAAllTransitions.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REAAllTransitions.m; sourceTree = ""; }; + E1FFF77D872452CBB7158389EFFA898E /* BugsnagCrashSentry.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagCrashSentry.m; sourceTree = ""; }; + E2305B9E96A28125190EB6022397B0E5 /* RCTLocalAssetImageLoader.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTLocalAssetImageLoader.m; sourceTree = ""; }; E24A9D8245F7C2A76A8F628651409D86 /* cost_mips_dsp_r2.c */ = {isa = PBXFileReference; includeInIndex = 1; name = cost_mips_dsp_r2.c; path = src/dsp/cost_mips_dsp_r2.c; sourceTree = ""; }; - E2716AB3377FB4251AFC0731479663FB /* RCTDatePickerManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTDatePickerManager.m; sourceTree = ""; }; - E287BA502DB96DE50A778991BA5A01BF /* UMCore-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "UMCore-dummy.m"; sourceTree = ""; }; - E2ABE02A530914E3F0722FAAA0A7AF7D /* RCTBorderStyle.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBorderStyle.h; sourceTree = ""; }; + E296D08D38DBBD15E71FA7415A2F7842 /* RNAudio.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RNAudio.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + E29E92983AF31E9A27DB7AB82F1077D2 /* RNLocalize.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNLocalize.m; path = ios/RNLocalize.m; sourceTree = ""; }; + E2A1F3FEA662290153D6D8026F200D52 /* RCTConvert+REATransition.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RCTConvert+REATransition.m"; sourceTree = ""; }; E2B63D462DB7F827C4B11FD51E4F8E2D /* libFirebaseCore.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libFirebaseCore.a; path = libFirebaseCore.a; sourceTree = BUILT_PRODUCTS_DIR; }; + E2B8D86AFA6269BDB864AD4F3BE1E4F0 /* UMPermissionsInterface.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMPermissionsInterface.xcconfig; sourceTree = ""; }; + E2BC113BD72124EA4EFE639E545A9FA7 /* BSG_KSMachApple.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSMachApple.h; sourceTree = ""; }; E2E3C8E6D99317CEB9799CEDC4EF10E0 /* FIRInstallationsLogger.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstallationsLogger.h; path = FirebaseInstallations/Source/Library/FIRInstallationsLogger.h; sourceTree = ""; }; - E2E3F51A5DF74BAC1C363A529FF5230E /* RCTImageShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageShadowView.h; path = Libraries/Image/RCTImageShadowView.h; sourceTree = ""; }; - E2E5B8EAFD3F11EAA410A4BE4C4A6DFF /* InspectorInterfaces.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = InspectorInterfaces.h; sourceTree = ""; }; - E2FD40F2D25FE24816C28944AF370EA0 /* UMTaskManagerInterface.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = UMTaskManagerInterface.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; E2FDE91FD70FFC43E88F683DC84004E6 /* FIRBundleUtil.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRBundleUtil.m; path = FirebaseCore/Sources/FIRBundleUtil.m; sourceTree = ""; }; - E33FA78EE29F5439A3878F4D9271F84A /* NSURLRequest+SRWebSocketPrivate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "NSURLRequest+SRWebSocketPrivate.h"; sourceTree = ""; }; - E34B64DC01D900F9527A6FDCA9F821B1 /* react-native-orientation-locker-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "react-native-orientation-locker-dummy.m"; sourceTree = ""; }; - E3A39234BB93357507F4239CCC4F5737 /* RCTActivityIndicatorView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTActivityIndicatorView.m; sourceTree = ""; }; - E3B1D7BD8244731CEE71638B9028B0E0 /* RCTLayoutAnimationGroup.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTLayoutAnimationGroup.m; sourceTree = ""; }; - E3CE71E9D6DA2DBCF9B04BD5652468CF /* BugsnagNotifier.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagNotifier.m; sourceTree = ""; }; - E3EB5DAB41CAF0439260853166710052 /* EXRemoteNotificationRequester.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXRemoteNotificationRequester.h; path = EXPermissions/EXRemoteNotificationRequester.h; sourceTree = ""; }; - E3F2FC29EDBEBE055A4223FBAE67BAFB /* 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; }; - E4000DACC1BDEE461A205EA6D9726987 /* rn-fetch-blob-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "rn-fetch-blob-prefix.pch"; sourceTree = ""; }; - E4037C9C747422DD6AEE7FBF85DC8CE0 /* EXConstants-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "EXConstants-dummy.m"; sourceTree = ""; }; - E40F20D7ABECF5897E2EEE60DDECDB11 /* RCTImageLoader.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTImageLoader.mm; sourceTree = ""; }; - E4122AEA2369400F511BE1A6669A8742 /* EXFileSystem-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "EXFileSystem-dummy.m"; sourceTree = ""; }; - E413B2340A7D3E06704D4234340540B4 /* RCTJSStackFrame.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTJSStackFrame.m; sourceTree = ""; }; + E314C75DC0ACC4E5077E036935E40D3E /* RCTVibration.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTVibration.h; path = Libraries/Vibration/RCTVibration.h; sourceTree = ""; }; + E32A3DAAA429A80F2BF6D523F06F9CC7 /* RCTKeyCommandConstants.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTKeyCommandConstants.h; path = ios/KeyCommands/RCTKeyCommandConstants.h; sourceTree = ""; }; + E36B045EFCE2734A7701EAEDDC05A232 /* QBSlomoIconView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = QBSlomoIconView.h; path = ios/QBImagePicker/QBImagePicker/QBSlomoIconView.h; sourceTree = ""; }; + E404671492B87C5400D64B192C24DE4D /* KeyCommands-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "KeyCommands-dummy.m"; sourceTree = ""; }; + E41A0625572600783D5F31ED7F045ED2 /* RCTScrollContentView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTScrollContentView.m; sourceTree = ""; }; E427482FF0816F936F72DF5FD9CAB3BC /* pb_common.c */ = {isa = PBXFileReference; includeInIndex = 1; path = pb_common.c; sourceTree = ""; }; - E42CE5FA1A0C3DC66583A7A6E4BBC1D6 /* EXCalendarRequester.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXCalendarRequester.m; path = EXPermissions/EXCalendarRequester.m; sourceTree = ""; }; - E45F3C3955FE5FDC3F6B247C5E980AD1 /* EXVideoPlayerViewControllerDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = EXVideoPlayerViewControllerDelegate.h; sourceTree = ""; }; - E4617DB69DFADFBDA0782817F33AAF2A /* RNVectorIcons.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNVectorIcons.xcconfig; sourceTree = ""; }; + E44D6D04119D0FB57843C0F794CF05BC /* EXRemindersRequester.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXRemindersRequester.h; path = EXPermissions/EXRemindersRequester.h; sourceTree = ""; }; + E461259880A7705262D6C4D90956BC2A /* RNNotificationsStore.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNNotificationsStore.m; path = RNNotifications/RNNotificationsStore.m; sourceTree = ""; }; + E47104869562FC29A7E829A9F6863801 /* RNFirebaseCrashlytics.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNFirebaseCrashlytics.m; sourceTree = ""; }; E496A53A92B4E464B5C30DC5B1E4E257 /* libRNRootView.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libRNRootView.a; path = libRNRootView.a; sourceTree = BUILT_PRODUCTS_DIR; }; - E4A59BDB5B64B943AC27F5E5B6B160B2 /* RCTConvert+REATransition.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RCTConvert+REATransition.m"; sourceTree = ""; }; - E4DEF8F85AF9CBFF8F00C0D795DDD46F /* CoreModulesPlugins.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CoreModulesPlugins.h; path = React/CoreModules/CoreModulesPlugins.h; sourceTree = ""; }; + E4E583ABEBCC7E3F7B23B300229B4EC0 /* RCTScrollContentShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTScrollContentShadowView.m; sourceTree = ""; }; E4FD42C315AF54A28629FCA573EB25FA /* Fabric.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Fabric.h; path = iOS/Fabric.framework/Headers/Fabric.h; sourceTree = ""; }; E50163A58ADB7FB1A0B8C52679BD982C /* CLSStackFrame.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CLSStackFrame.h; path = iOS/Crashlytics.framework/Headers/CLSStackFrame.h; sourceTree = ""; }; E503EE768F7FB7BA45AF2BCAD9C1BFED /* FBLPromise+Delay.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "FBLPromise+Delay.m"; path = "Sources/FBLPromises/FBLPromise+Delay.m"; sourceTree = ""; }; - E5132055C5DA8F723A506EA067ACE48A /* RCTInvalidating.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTInvalidating.h; sourceTree = ""; }; - E521E49A664088B0AC72BA342A771007 /* RNBootSplash-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNBootSplash-prefix.pch"; sourceTree = ""; }; - E522C571C9FA1AB0EC653F2405CE1CFB /* RCTTouchHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTTouchHandler.m; sourceTree = ""; }; E55EA3C6F285F6FA8067C5C8A428FA64 /* libRNFastImage.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libRNFastImage.a; path = libRNFastImage.a; sourceTree = BUILT_PRODUCTS_DIR; }; - E5B48D596BD7B2ACF344424B330A125A /* LongLivedObject.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = LongLivedObject.h; path = turbomodule/core/LongLivedObject.h; sourceTree = ""; }; + E5AAC4B8295FB697520CC3447D3B193C /* UMGyroscopeInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMGyroscopeInterface.h; path = UMSensorsInterface/UMGyroscopeInterface.h; sourceTree = ""; }; E5BFD2113CD9F64E3ED9DA735B433731 /* syntax_enc.c */ = {isa = PBXFileReference; includeInIndex = 1; name = syntax_enc.c; path = src/enc/syntax_enc.c; sourceTree = ""; }; - E5E35A700DF640881A10CFAA884F2546 /* UMBridgeModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMBridgeModule.h; path = UMReactNativeAdapter/UMBridgeModule.h; sourceTree = ""; }; - E5E9E9457247CF3EAEF2A4A273069C47 /* REACondNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REACondNode.h; sourceTree = ""; }; - E613147571B9035D477DC6277D0417C6 /* RCTCustomInputController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTCustomInputController.m; sourceTree = ""; }; - E656B94125EA7E643C7FA16DDE45DE1D /* RCTConvert+ART.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "RCTConvert+ART.m"; path = "ios/RCTConvert+ART.m"; sourceTree = ""; }; - E662B7D9CF1686E91D2F91409470E2B1 /* RNAudio.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNAudio.xcconfig; sourceTree = ""; }; - E67498550846721E93E271F1B0D0935E /* RCTUIImageViewAnimated.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTUIImageViewAnimated.m; sourceTree = ""; }; + E5DF08856F124A8FCBDECC52ADE5D7C6 /* UMReactNativeAdapter.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMReactNativeAdapter.xcconfig; sourceTree = ""; }; + E6218FFA863AB1C0B55E87F9105712AC /* Orientation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = Orientation.m; path = iOS/RCTOrientation/Orientation.m; sourceTree = ""; }; + E661B542D47AB857234C271BBFDC2938 /* Color+Interpolation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Color+Interpolation.h"; sourceTree = ""; }; + E685B71F8689B89D0EC15B716377D563 /* RCTFont.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTFont.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; }; - E6CE01C14A3CBB783965DD126287D8D8 /* RNFastImage.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNFastImage.xcconfig; sourceTree = ""; }; + E6C302336BF2042013EEBA41967DFDBD /* BugsnagApiClient.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagApiClient.m; sourceTree = ""; }; + E6CA66711B954C36A010B6163B4B3200 /* es.lproj */ = {isa = PBXFileReference; includeInIndex = 1; name = es.lproj; path = ios/QBImagePicker/QBImagePicker/es.lproj; sourceTree = ""; }; + E6CDB01595D226A72FEA5027D3BADDB7 /* React-RCTSettings-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-RCTSettings-prefix.pch"; sourceTree = ""; }; E6D457DA870054C0D84E3800FDA55894 /* SDWebImageTransition.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageTransition.h; path = SDWebImage/Core/SDWebImageTransition.h; sourceTree = ""; }; - E6F066E8170EC345A2AF8CAF9B5AE544 /* RCTLocalAssetImageLoader.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTLocalAssetImageLoader.m; sourceTree = ""; }; - E7012DFB516AB61852B9CC8BB61D4BA4 /* KeyCommands.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = KeyCommands.xcconfig; sourceTree = ""; }; E71363AF216BF6A9FDEDA89C8D14B6A2 /* muxedit.c */ = {isa = PBXFileReference; includeInIndex = 1; name = muxedit.c; path = src/mux/muxedit.c; sourceTree = ""; }; - E714E428578D92BDF68599F88505FD58 /* RNFirebaseDatabase.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNFirebaseDatabase.h; sourceTree = ""; }; + E71EA74FAEEC381EEDD3C8BCB5A88CA5 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; E728B448CD6DE78410A3FA3D7DFFAF58 /* FIRInstanceIDCheckinPreferences.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstanceIDCheckinPreferences.m; path = Firebase/InstanceID/FIRInstanceIDCheckinPreferences.m; sourceTree = ""; }; + E72F6D88A4D54F927AB028187927124D /* RCTTurboModule.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTTurboModule.mm; sourceTree = ""; }; E73C501A0EB747305BB4AAD7978E3E0E /* GULSceneDelegateSwizzler_Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULSceneDelegateSwizzler_Private.h; path = GoogleUtilities/SceneDelegateSwizzler/Internal/GULSceneDelegateSwizzler_Private.h; sourceTree = ""; }; + E75D2BEE2A822BC31AE3602BAA2E95B5 /* RCTTextSelection.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTextSelection.h; sourceTree = ""; }; E76F1E8AD66134342407C6C7C3FD17A8 /* SDWebImageDownloaderConfig.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWebImageDownloaderConfig.m; path = SDWebImage/Core/SDWebImageDownloaderConfig.m; sourceTree = ""; }; - E784B19297EB6761608ABFBEE69FE8D2 /* RCTMultilineTextInputView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTMultilineTextInputView.m; sourceTree = ""; }; - E7D2B3E90D0FEF9F5620DE2832121824 /* SRHTTPConnectMessage.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = SRHTTPConnectMessage.h; sourceTree = ""; }; - E7D5D7FCA6C6568054845D64C45FF5CC /* RNFirebaseLinks.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNFirebaseLinks.h; sourceTree = ""; }; + E7DBF398C76B30F22B61FAA334435515 /* RCTDevMenu.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTDevMenu.h; sourceTree = ""; }; E7DE8C91E01DA1613F5EC7CD66F28061 /* FIRInstanceIDCheckinPreferences_Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstanceIDCheckinPreferences_Private.h; path = Firebase/InstanceID/FIRInstanceIDCheckinPreferences_Private.h; sourceTree = ""; }; - E7ED923F9585210CE8597F266367124E /* RCTBaseTextShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBaseTextShadowView.h; sourceTree = ""; }; - E7F168C25561640F06C74537DDA821EF /* RNFirebaseAdMobInterstitial.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNFirebaseAdMobInterstitial.m; sourceTree = ""; }; - E8067365D8CBEBC87332AD5820A32242 /* UMModuleRegistryDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMModuleRegistryDelegate.h; sourceTree = ""; }; + E7EB27ECF6B02A7A20AFC7723FA4DB1C /* RNReanimated-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNReanimated-prefix.pch"; sourceTree = ""; }; + E7ED5E3F9352B025BDB93C2A68391FAB /* UMAppDelegateWrapper.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = UMAppDelegateWrapper.m; path = UMCore/UMAppDelegateWrapper.m; sourceTree = ""; }; + E7EED3632129013E7AA6053DF58BB4EB /* EXAV.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = EXAV.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; E818294C08CF5776BB1D71226C8C1B0A /* SDImageCachesManagerOperation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageCachesManagerOperation.m; path = SDWebImage/Private/SDImageCachesManagerOperation.m; sourceTree = ""; }; E82A30AEF74EE71AF0B62661B8B26951 /* GULLoggerCodes.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULLoggerCodes.h; path = GoogleUtilities/Common/GULLoggerCodes.h; sourceTree = ""; }; + E84145132DD86C87690242E8593EF1E5 /* UMSensorsInterface.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = UMSensorsInterface.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; E843DB2D9152A6891CEC690C8919CC3A /* GDTCORUploader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCORUploader.h; path = GoogleDataTransport/GDTCORLibrary/Public/GDTCORUploader.h; sourceTree = ""; }; - E8A5AB4D865A155C0D11F4883FCC7203 /* RCTImageBlurUtils.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTImageBlurUtils.m; sourceTree = ""; }; - E8B0878E4DE133E2EED49951E7026645 /* BSG_KSCrashContext.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashContext.h; sourceTree = ""; }; - E8B08D8E57E35A72C701732EBC55CF52 /* react-native-appearance.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "react-native-appearance.xcconfig"; sourceTree = ""; }; - E8C566F372C6D5B7D607F9E7D11F6E6A /* DeviceUID.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DeviceUID.h; path = ios/RNDeviceInfo/DeviceUID.h; sourceTree = ""; }; - E9209902141BB566F44E44779CD31FCF /* RCTSliderManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSliderManager.m; sourceTree = ""; }; - E932BA62AE7F53A3DD21C0EF7018D4E7 /* EXConstants.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXConstants.h; path = EXConstants/EXConstants.h; sourceTree = ""; }; + E8AA33D37BF6D7F06BFE5711824D596C /* RCTInterpolationAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTInterpolationAnimatedNode.m; sourceTree = ""; }; + E8C83DAA599C68EE0E103DBBF8CE7BE3 /* RCTTurboModuleManager.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTTurboModuleManager.mm; sourceTree = ""; }; + E8EFA14BBAB4FD0C8A55B5A3DB747BF3 /* react-native-cameraroll-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "react-native-cameraroll-prefix.pch"; sourceTree = ""; }; + E96ADA73666CCE525C77F89BF7AB9B68 /* ARTSurfaceViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = ARTSurfaceViewManager.m; sourceTree = ""; }; E97C6B62E60E3076A98791068DE7D7C1 /* FIRInstanceIDKeychain.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstanceIDKeychain.m; path = Firebase/InstanceID/FIRInstanceIDKeychain.m; sourceTree = ""; }; - E9D6F8AA9511FDAE29A6C31B90EE0A20 /* UMUtilities.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMUtilities.h; path = UMCore/UMUtilities.h; sourceTree = ""; }; - E9D756AB7170118C11C43213A71DD36A /* RCTHTTPRequestHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTHTTPRequestHandler.h; path = Libraries/Network/RCTHTTPRequestHandler.h; sourceTree = ""; }; + E980C56DE08EAF9CF485E3EE118D881F /* BSG_KSCrashDoctor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashDoctor.h; sourceTree = ""; }; + E9EA6346C6605662C93E5B082E3087D5 /* UMKernelService.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMKernelService.h; sourceTree = ""; }; E9FEBF5B13B80FBCD53AF5D844C38822 /* SDAssociatedObject.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDAssociatedObject.m; path = SDWebImage/Private/SDAssociatedObject.m; sourceTree = ""; }; EA3786891CC282557AB2EF14638CDE2D /* filter_enc.c */ = {isa = PBXFileReference; includeInIndex = 1; name = filter_enc.c; path = src/enc/filter_enc.c; sourceTree = ""; }; EA3905F7E6892A7956DD8078E9E87116 /* SDWebImageDownloaderConfig.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageDownloaderConfig.h; path = SDWebImage/Core/SDWebImageDownloaderConfig.h; sourceTree = ""; }; - EA460809421F4C4809D3F28C57C93A55 /* RCTImageCache.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageCache.h; path = Libraries/Image/RCTImageCache.h; sourceTree = ""; }; - EA4E822ED24C31E61AC94B50B125E1B3 /* REAFunctionNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REAFunctionNode.m; sourceTree = ""; }; - EA8888C441895FDD237829660C8F7D8B /* RCTBridge.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTBridge.m; sourceTree = ""; }; - EA89F3106C16A08A4F8A83442AEE0F4E /* RCTStyleAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTStyleAnimatedNode.m; sourceTree = ""; }; + EA5986CB2C30F47658BB169BF8763AAA /* FFFastImageSource.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FFFastImageSource.m; path = ios/FastImage/FFFastImageSource.m; sourceTree = ""; }; + EA8ED48F4CD56159769C24D531D244DB /* ARTGroupManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = ARTGroupManager.h; sourceTree = ""; }; + EAB200056DE1EAEA1022EF5448F1C300 /* BSG_KSObjCApple.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSObjCApple.h; sourceTree = ""; }; EAB62C963029E8092CA65348E89AD1C6 /* common_sse2.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = common_sse2.h; path = src/dsp/common_sse2.h; sourceTree = ""; }; - EB31CC643E32D8B050EF2FC73A7982FC /* rn-extensions-share.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "rn-extensions-share.xcconfig"; sourceTree = ""; }; + EACD26F75DD101ACFFB7666E2D17EE40 /* RCTActivityIndicatorViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTActivityIndicatorViewManager.m; sourceTree = ""; }; + EB0ADCF205E8106C473BD1A769D3ACC9 /* RCTBridgeMethod.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBridgeMethod.h; sourceTree = ""; }; EB3D678D3F78C857A36FCEE91C3A72E5 /* FIRInstanceIDDefines.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstanceIDDefines.h; path = Firebase/InstanceID/FIRInstanceIDDefines.h; sourceTree = ""; }; - EB50F05C09765B05AB3D7AAE4C3732E7 /* RCTCustomInputController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTCustomInputController.h; sourceTree = ""; }; EB58C1A1A2B45B20B44F908DC5FFD1D5 /* rescaler_mips32.c */ = {isa = PBXFileReference; includeInIndex = 1; name = rescaler_mips32.c; path = src/dsp/rescaler_mips32.c; sourceTree = ""; }; - EB5C192F043DD7CD066E5CB4D22CCE92 /* RCTBaseTextInputShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBaseTextInputShadowView.h; sourceTree = ""; }; EB70BE00723008AAD156EB27A07FE171 /* FIRInstallationsErrorUtil.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstallationsErrorUtil.h; path = FirebaseInstallations/Source/Library/Errors/FIRInstallationsErrorUtil.h; sourceTree = ""; }; - EBD0A2E61F70501CC7DA06E88451493F /* RCTRootViewDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTRootViewDelegate.h; sourceTree = ""; }; - EC39A914D7CEFD653C607D912A27C1AD /* QBSlomoIconView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = QBSlomoIconView.m; path = ios/QBImagePicker/QBImagePicker/QBSlomoIconView.m; sourceTree = ""; }; - EC5C2996BB897C23E1C5EE5447775887 /* RCTModuleMethod.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTModuleMethod.h; sourceTree = ""; }; - EC83A980D73202F5AFD1C0054F848EA2 /* RCTReconnectingWebSocket.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTReconnectingWebSocket.h; path = Libraries/WebSocket/RCTReconnectingWebSocket.h; sourceTree = ""; }; - EC868B423877FDBD1EDFB7F7D37849F7 /* React-CoreModules.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-CoreModules.xcconfig"; sourceTree = ""; }; - ECB011A0F5FA23F0C76DAD06C1CB0CBE /* RCTSinglelineTextInputViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSinglelineTextInputViewManager.m; sourceTree = ""; }; - ECF2B2563BF4C84FB16738243BA115F4 /* LongLivedObject.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = LongLivedObject.cpp; path = turbomodule/core/LongLivedObject.cpp; sourceTree = ""; }; + EB7B2A94B2181C8C15B5A01D3286B948 /* RCTConvert+FFFastImage.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "RCTConvert+FFFastImage.h"; path = "ios/FastImage/RCTConvert+FFFastImage.h"; sourceTree = ""; }; + EB950C9618F6211B7FE91302533A1C91 /* RCTUIManagerObserverCoordinator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTUIManagerObserverCoordinator.h; sourceTree = ""; }; + EBE7845CC81A62FBAF26BEC2950AAA5A /* EXRemoteNotificationRequester.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXRemoteNotificationRequester.h; path = EXPermissions/EXRemoteNotificationRequester.h; sourceTree = ""; }; + EBF03A09F4BA3CE37ED37F5E03DCAE85 /* React-jsiexecutor.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-jsiexecutor.xcconfig"; sourceTree = ""; }; + EBFB993F9F9D883A19EDCB87F5F7E89E /* RCTActionSheetManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTActionSheetManager.h; path = Libraries/ActionSheetIOS/RCTActionSheetManager.h; sourceTree = ""; }; + EC1550B0F63A62DE773EA96F1165E48F /* FFFastImageSource.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FFFastImageSource.h; path = ios/FastImage/FFFastImageSource.h; sourceTree = ""; }; + EC1ED66BBFF626FD293EF49A4B01B2CC /* EXFileSystem.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = EXFileSystem.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + EC4143E4BC127C78E4225AC123B9BC2A /* UMCore.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = UMCore.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + EC6253B6B865B4D48A867EEE5670B1DA /* RNNativeViewHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNNativeViewHandler.m; sourceTree = ""; }; + EC6D902F7BA06596A12AC85965D28243 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; + EC9088AFF5123A5910DD00DD39B9D3E8 /* RCTAnimatedImage.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTAnimatedImage.h; path = Libraries/Image/RCTAnimatedImage.h; sourceTree = ""; }; + ECAFE9671EA5B4D2EC7DC5CCA365B2A6 /* RNFirebase.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RNFirebase.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; ECF6CDD59A57C47D27B4C64E3C83F6EB /* SDImageGIFCoder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageGIFCoder.h; path = SDWebImage/Core/SDImageGIFCoder.h; sourceTree = ""; }; ECFF7646CDA1C9BC7B92C2364D35EB4F /* SDAnimatedImageRep.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDAnimatedImageRep.m; path = SDWebImage/Core/SDAnimatedImageRep.m; sourceTree = ""; }; - ED0FF59B3FE2273C8F4D471E785038AF /* RCTSurface.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTSurface.mm; sourceTree = ""; }; - ED11AB60627D21CFAB5E2A83B8B2A744 /* RCTBlobManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTBlobManager.h; path = Libraries/Blob/RCTBlobManager.h; sourceTree = ""; }; + ED123A74CAB8A20F813B4464D6F5E8E0 /* REASetNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REASetNode.m; sourceTree = ""; }; ED1E3FC0DC90F4A787472917BFB6B235 /* libEXFileSystem.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libEXFileSystem.a; path = libEXFileSystem.a; sourceTree = BUILT_PRODUCTS_DIR; }; - ED2BF79538115915C5EC8BA797969E2D /* RNJitsiMeetView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNJitsiMeetView.h; path = ios/RNJitsiMeetView.h; sourceTree = ""; }; - ED5BF08CC94055925E1E64E23F73C1F1 /* RCTWebSocketExecutor.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCTWebSocketExecutor.m; path = Libraries/WebSocket/RCTWebSocketExecutor.m; sourceTree = ""; }; ED5D4ABF81DB0F6F91E1A25F93EE1DEB /* SDWebImageDownloader.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWebImageDownloader.m; path = SDWebImage/Core/SDWebImageDownloader.m; sourceTree = ""; }; - ED8283B1F52BABAE32AE0790A0DB35F4 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; - EDC2DEAE669904A4916FD97CBAF27024 /* ARTSolidColor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = ARTSolidColor.h; sourceTree = ""; }; - EDF13684DFD35C1534554E78EB5E561C /* SocketRocket.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = SocketRocket.xcconfig; sourceTree = ""; }; - EDF66939C627F73390A7CCB963BCF343 /* RCTSubtractionAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSubtractionAnimatedNode.m; sourceTree = ""; }; - EE0C2B09F7F6B4B6DC98A4B999EB1057 /* QBImagePicker.storyboard */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = file.storyboard; name = QBImagePicker.storyboard; path = ios/QBImagePicker/QBImagePicker/QBImagePicker.storyboard; sourceTree = ""; }; - EE0C9D2BC6D6081E1FD6FA2B41F8B47E /* NSError+BSG_SimpleConstructor.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "NSError+BSG_SimpleConstructor.m"; sourceTree = ""; }; + ED6814A73FA33DB129FB8A35EE3385D7 /* 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; }; + EDA10E80D75DC3F538CEF777F1A49B3B /* 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; }; + EDC7EA665F9A2FC5A4374096CA11168C /* UMUIManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMUIManager.h; sourceTree = ""; }; + EE0698383F0AAFAD6AF6103B1B442D36 /* RNAudio.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNAudio.xcconfig; sourceTree = ""; }; EE1AB32C49A2A285235B4FDC69A39BAC /* FIRInstallationsStore.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstallationsStore.m; path = FirebaseInstallations/Source/Library/InstallationsStore/FIRInstallationsStore.m; sourceTree = ""; }; - EE2C369542B8B6F491AA1BFE1C5865D0 /* RNGestureHandlerRegistry.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNGestureHandlerRegistry.h; path = ios/RNGestureHandlerRegistry.h; sourceTree = ""; }; - EEA0A206B0128EAE08558F7DCDB1AC85 /* YGNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YGNode.h; path = yoga/YGNode.h; sourceTree = ""; }; + EE377C18BCA52E7E223E49BA61376BB3 /* BSG_KSCrashCallCompletion.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BSG_KSCrashCallCompletion.m; sourceTree = ""; }; + EE41772303EB8B4AAAE644DFC403733A /* RNFetchBlobFS.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNFetchBlobFS.h; path = ios/RNFetchBlobFS.h; sourceTree = ""; }; + EE5486881ED621DC4839E7EA1FF6B8D5 /* RNGestureHandlerModule.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNGestureHandlerModule.m; path = ios/RNGestureHandlerModule.m; sourceTree = ""; }; + EE916842094A1E66A118A3EF09B92D96 /* BSG_KSJSONCodecObjC.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BSG_KSJSONCodecObjC.m; sourceTree = ""; }; EEC39363574592DDD2C4DE7211730B12 /* SDImageFrame.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageFrame.m; path = SDWebImage/Core/SDImageFrame.m; sourceTree = ""; }; - EECD89054FF8B92031E88750AC9BF5B3 /* RNGestureHandlerButton.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNGestureHandlerButton.m; path = ios/RNGestureHandlerButton.m; sourceTree = ""; }; + EED0D043C8985ED9108620BE8CD2C34C /* RCTInputAccessoryViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTInputAccessoryViewManager.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; }; EEE7EDE32D47E34C402A333EA97DECAB /* logging.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = logging.h; path = src/glog/logging.h; sourceTree = ""; }; - EF10823405FF27A7C92DCDE82B8353A4 /* EXDownloadDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXDownloadDelegate.h; path = EXFileSystem/EXDownloadDelegate.h; sourceTree = ""; }; + EEFCC691170CE3F2190EFCBB6CCA9D92 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; EF173724C22DB7D2C3F88CAA10675F80 /* UIImage+MultiFormat.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIImage+MultiFormat.h"; path = "SDWebImage/Core/UIImage+MultiFormat.h"; sourceTree = ""; }; + EF439CD54E295D06B5EF4DE77D60D6A5 /* RCTSurfaceHostingView.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTSurfaceHostingView.mm; sourceTree = ""; }; EF4EB3533CCB7A84BFF17BE881F535D0 /* FBLPromiseError.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBLPromiseError.h; path = Sources/FBLPromises/include/FBLPromiseError.h; sourceTree = ""; }; - EF775AFE3C1E9C2E72FDF72D90DF1554 /* FBLazyVector.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = FBLazyVector.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - EF87158E83AB91F44BDB6C9DB9D56F4F /* BSG_KSCrashReport.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSCrashReport.c; sourceTree = ""; }; - EFA9C1FFC3E5023F23DE8BB649D0CE97 /* RCTConvertHelpers.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTConvertHelpers.mm; sourceTree = ""; }; - EFB47B5D814F2C6B8453AE856D6E5A4B /* RCTParserUtils.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTParserUtils.m; sourceTree = ""; }; - EFB7840CB02563DF34763637561EC5A1 /* RCTPackagerClient.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTPackagerClient.m; sourceTree = ""; }; - EFFD1C1E446CA4D07FF398A6CDD1B7C3 /* RNRootViewGestureRecognizer.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNRootViewGestureRecognizer.m; path = ios/RNRootViewGestureRecognizer.m; sourceTree = ""; }; - EFFDB666E904439396EF4F7C7F90B397 /* NativeExpressComponent.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = NativeExpressComponent.h; sourceTree = ""; }; - F01EACB61AD2CAF89F50D7F08FF6DA17 /* RCTBaseTextShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTBaseTextShadowView.m; sourceTree = ""; }; + EF6FDED33F0B567F1794633657BA18EB /* BSGConnectivity.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSGConnectivity.h; sourceTree = ""; }; + EFF7B02B4FBF637DFBD69D869E0C19D7 /* UMReactNativeAdapter-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "UMReactNativeAdapter-dummy.m"; sourceTree = ""; }; + F013381882F6989372AA77C67D3EFAD8 /* RCTConvertHelpers.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTConvertHelpers.mm; sourceTree = ""; }; + F01E2898423DF6E7D733820FD09F8BFE /* MaterialCommunityIcons.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = MaterialCommunityIcons.ttf; path = Fonts/MaterialCommunityIcons.ttf; sourceTree = ""; }; F02ACAE8DEE115DBBC18C44F0AE2128C /* quant.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = quant.h; path = src/dsp/quant.h; sourceTree = ""; }; - F031D0FBBAF34DFF53570D9DC4CE8EF3 /* 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; }; - F04971D96A1D7D43DA2C2611338EDBFC /* RCTTransformAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTTransformAnimatedNode.m; sourceTree = ""; }; - F0545D9065FF930613431B950003896C /* NativeExpressComponent.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = NativeExpressComponent.m; sourceTree = ""; }; + F059F4F7C1EA482C86B1E73AF4D193EB /* RCTDecayAnimation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTDecayAnimation.m; sourceTree = ""; }; + F07665624B42E0BA287BFC92427C3E6B /* RCTLayoutAnimationGroup.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTLayoutAnimationGroup.m; sourceTree = ""; }; F08B0F9A4D8A738B0F5EF58D5545D0A9 /* UIImage+ForceDecode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIImage+ForceDecode.h"; path = "SDWebImage/Core/UIImage+ForceDecode.h"; sourceTree = ""; }; - F096D09F19E86E6A0EE21999B3DE82C6 /* RCTComponent.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTComponent.h; sourceTree = ""; }; + F094AD18405C5F3E737EC791D71099C4 /* 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; }; + F09C49B0D59C738FF539A84C334C675C /* BSG_KSDynamicLinker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSDynamicLinker.h; sourceTree = ""; }; F09D66808FCE05691A438366BC25B746 /* SDWebImage-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "SDWebImage-dummy.m"; sourceTree = ""; }; - F0BFEDFCF6519E07F6388739EBBCDCD9 /* EXWebBrowser.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = EXWebBrowser.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - F0C3FAE0D517C3332AFCC417BC1D4DC6 /* EXConstantsService.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXConstantsService.h; path = EXConstants/EXConstantsService.h; sourceTree = ""; }; - F0D636B30B31C8B1301BEC81573A12A4 /* RCTBlobCollector.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTBlobCollector.mm; sourceTree = ""; }; - F0EF5EDFFDC6F580507F02090FDF7C7E /* TurboModuleBinding.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TurboModuleBinding.h; path = turbomodule/core/TurboModuleBinding.h; sourceTree = ""; }; + F0D532B62233DEE22887CF7F717120F1 /* RCTSurfaceView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSurfaceView.h; sourceTree = ""; }; F12DAF7528A201C09ADE0D2FC9600260 /* GULLogger.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GULLogger.m; path = GoogleUtilities/Logger/GULLogger.m; sourceTree = ""; }; - F13C090843416CDD37AC9ACD3E2A329D /* SRProxyConnect.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = SRProxyConnect.h; sourceTree = ""; }; - F151B276A968B757C730FB4784B496E5 /* RCTUIManagerObserverCoordinator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTUIManagerObserverCoordinator.h; sourceTree = ""; }; + F132861DB957D838597D949D7D9B28D8 /* EXCameraRollRequester.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXCameraRollRequester.m; path = EXPermissions/EXCameraRollRequester.m; sourceTree = ""; }; + F151269443021C894C1EE6DD9F2B9156 /* RNFetchBlobFS.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNFetchBlobFS.m; path = ios/RNFetchBlobFS.m; sourceTree = ""; }; F15A1B308313E7B51B2753B9D83EDFA5 /* SDImageWebPCoder.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageWebPCoder.m; path = SDWebImageWebPCoder/Classes/SDImageWebPCoder.m; sourceTree = ""; }; - F1675751654128D660F7174171BF4AA5 /* RCTUITextView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTUITextView.h; sourceTree = ""; }; F17947A41DC67706AD2ADAD8C7C559C3 /* GULNetworkLoggerProtocol.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULNetworkLoggerProtocol.h; path = GoogleUtilities/Network/Private/GULNetworkLoggerProtocol.h; sourceTree = ""; }; + F17EAB69AC122FECB5797C7A4355B56D /* RNGestureHandler-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNGestureHandler-dummy.m"; sourceTree = ""; }; F1A4FFD0829F895C7CB4CE1DADA8C124 /* dec_neon.c */ = {isa = PBXFileReference; includeInIndex = 1; name = dec_neon.c; path = src/dsp/dec_neon.c; sourceTree = ""; }; - F1ABB03CDC66CD9BCCD5B21E65525FE7 /* BSG_KSBacktrace.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSBacktrace.h; sourceTree = ""; }; + F1AEE6B592AEB3C3FC339774AB21E5EF /* RCTFileRequestHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTFileRequestHandler.m; sourceTree = ""; }; F1B1144A35ACFEBD4E96E634A66733F6 /* SDWebImageWebPCoder-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "SDWebImageWebPCoder-prefix.pch"; sourceTree = ""; }; + F1BC5E1AB6047D4F7ADF0D36A29B43F5 /* BugsnagSessionTrackingPayload.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagSessionTrackingPayload.h; sourceTree = ""; }; F1D65D982EF85292BB9FDEA34BBE516E /* symbolize.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = symbolize.cc; path = src/symbolize.cc; sourceTree = ""; }; - F1E30E3F2A050BEF88A240650737A49C /* RNCWKProcessPoolManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCWKProcessPoolManager.m; path = ios/RNCWKProcessPoolManager.m; sourceTree = ""; }; - F2280EC094C3D1BB3D518D72F737B8D9 /* RCTSurfaceHostingView.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTSurfaceHostingView.mm; sourceTree = ""; }; + F1EEA6B7720580ACCAF4F00D2F544C22 /* RNNotificationCenter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNNotificationCenter.m; path = RNNotifications/RNNotificationCenter.m; sourceTree = ""; }; + F24E33E5B75728F9FDCB30D152EA5B28 /* RNReanimated.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNReanimated.xcconfig; sourceTree = ""; }; + F263AE99A545514DD632E73E0F628846 /* BSG_KSCrashReport.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSCrashReport.c; sourceTree = ""; }; F2659EE472B6D6569574FAB9D3BCFB98 /* SDAsyncBlockOperation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDAsyncBlockOperation.h; path = SDWebImage/Private/SDAsyncBlockOperation.h; sourceTree = ""; }; - F26937D95B0B94060660B726E8BA8A61 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; F26BB59FEC9CBF96A4426D94923EF71D /* SDImageLoader.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageLoader.m; path = SDWebImage/Core/SDImageLoader.m; sourceTree = ""; }; - F276886C7FF1515F605C3E41241D6A47 /* RNAudio-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNAudio-dummy.m"; sourceTree = ""; }; - F27E5EE75D59535887DFA78FD389EE3B /* RNUserDefaults.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RNUserDefaults.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - F291ACAABE82CC1AC217EADA7A1EFDDF /* RCTTypeSafety.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RCTTypeSafety.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - F29AB00DBAEED696072011BD73C44A43 /* UIImage+Resize.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIImage+Resize.h"; path = "ios/src/UIImage+Resize.h"; sourceTree = ""; }; + F2A5EF842E0CBD52437A3F0B96F2B26B /* RCTVirtualTextShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTVirtualTextShadowView.h; sourceTree = ""; }; + F2AD7712C98662F62E4CD66E1BA00AB2 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; F2E7C88DFCD460A4B46B913ADEB8A641 /* libReact-jsiexecutor.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libReact-jsiexecutor.a"; path = "libReact-jsiexecutor.a"; sourceTree = BUILT_PRODUCTS_DIR; }; - F2F6F9CE92EF8885DF428F406A04E015 /* BSG_KSMach_Arm.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSMach_Arm.c; sourceTree = ""; }; - F34AAF4EB156179DBB98C9E541819A40 /* RCTJavaScriptExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTJavaScriptExecutor.h; sourceTree = ""; }; - F34F68802CA948F90A588B8AAAC756C9 /* RCTConvert+UIBackgroundFetchResult.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RCTConvert+UIBackgroundFetchResult.h"; sourceTree = ""; }; - F35C2A72FA7101F637DF67235E6483D2 /* RCTErrorInfo.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTErrorInfo.m; sourceTree = ""; }; + F2FE328EE29084CE351BFDA9B0B1A84D /* RCTView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTView.h; sourceTree = ""; }; + F311E3C47D33B13DBE2776545EF45F81 /* UMNativeModulesProxy.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMNativeModulesProxy.h; sourceTree = ""; }; + F3A7C91B10EA7922451F90D51A48A55D /* 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; }; F3AD925B23A79ECA6E6EBDF8DB7412D2 /* UIImage+Transform.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIImage+Transform.h"; path = "SDWebImage/Core/UIImage+Transform.h"; sourceTree = ""; }; F3C820FC2BBE1761DA1AA527AA0093BF /* FirebaseInstallations-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "FirebaseInstallations-dummy.m"; sourceTree = ""; }; - F3D0F33067B5AF8747BCF9147A7ED29C /* RCTInspectorDevServerHelper.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTInspectorDevServerHelper.mm; sourceTree = ""; }; - F3E173A7456214290C4B559AFC03ED23 /* RNScreens.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNScreens.xcconfig; sourceTree = ""; }; + F3D120CD496A3EB7DEBCC75B20E5BBB2 /* Yoga-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Yoga-prefix.pch"; sourceTree = ""; }; + F3D1BC74B7F81B3373570366D060B42D /* RCTTextTransform.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTTextTransform.h; path = Libraries/Text/RCTTextTransform.h; sourceTree = ""; }; F3EA4E1C67B5BF8BD4E1E55A6409EB28 /* FIRInstanceIDAuthKeyChain.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstanceIDAuthKeyChain.h; path = Firebase/InstanceID/FIRInstanceIDAuthKeyChain.h; sourceTree = ""; }; + F3F813412D9D5E175BB6FC37186DA34B /* UMReactLogHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = UMReactLogHandler.m; sourceTree = ""; }; + F40E7FD506B6A4591BA2E53A072C7295 /* RCTManagedPointer.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTManagedPointer.mm; sourceTree = ""; }; + F40F03D6600BB1E45B3D85ADC6AA755B /* RCTDevLoadingView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTDevLoadingView.m; sourceTree = ""; }; F4110D159EB83763AAC648B1B81D2F9D /* bignum.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = bignum.h; path = "double-conversion/bignum.h"; sourceTree = ""; }; F41672D8B6EA45CF462409479614FB31 /* predictor_enc.c */ = {isa = PBXFileReference; includeInIndex = 1; name = predictor_enc.c; path = src/enc/predictor_enc.c; sourceTree = ""; }; - F41739E7FEBF3FE1C1AEAAE4CC3FF7E2 /* ImageCropPicker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ImageCropPicker.h; path = ios/src/ImageCropPicker.h; sourceTree = ""; }; + F43ADA9AC1135C45B508116C9918745C /* RCTInspector.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTInspector.mm; sourceTree = ""; }; F43FC1D38479CA8483FA503030EE4B5B /* FIRErrors.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRErrors.m; path = FirebaseCore/Sources/FIRErrors.m; sourceTree = ""; }; - F45409DE9A47A23DF8D5B05A0A9E2EE4 /* RNSScreenStackHeaderConfig.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNSScreenStackHeaderConfig.m; path = ios/RNSScreenStackHeaderConfig.m; sourceTree = ""; }; - F459CB964CE4ED8DD499B2A6BBA58043 /* RNCSliderManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCSliderManager.h; path = ios/RNCSliderManager.h; sourceTree = ""; }; - F45A73E641BDE1BD18CFC8E867D5E10B /* RCTRequired.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RCTRequired.xcconfig; sourceTree = ""; }; - F46016DF4AF8D71E29B31E6FB0A02B2D /* RNFirebaseAdMobNativeExpressManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNFirebaseAdMobNativeExpressManager.m; sourceTree = ""; }; - F4A30F180984D8AC5055F3ED4A3C9B20 /* RCTVirtualTextShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTVirtualTextShadowView.h; sourceTree = ""; }; + F44265BEFCCA79CAFCEF970F6D0765DA /* RCTImageStoreManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTImageStoreManager.m; sourceTree = ""; }; + F46639E69FBACDA4034916EF0396E669 /* RNLongPressHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNLongPressHandler.h; sourceTree = ""; }; + F4870A86E6C56E9BD33415F93D5D1188 /* android_time.png */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = image.png; name = android_time.png; path = docs/images/android_time.png; sourceTree = ""; }; F4B0846CC9420B2A99D2842B5596A174 /* GDTCOREvent_Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCOREvent_Private.h; path = GoogleDataTransport/GDTCORLibrary/Private/GDTCOREvent_Private.h; sourceTree = ""; }; + F4C57C7D06C6486CEBFF4CD63073F517 /* RCTUtils.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTUtils.m; sourceTree = ""; }; + F4E8B93DDE094ADDEFA731432E9A74B0 /* REATransformNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REATransformNode.m; sourceTree = ""; }; F4EB52F7237332185617C32F718E1270 /* color_cache_utils.c */ = {isa = PBXFileReference; includeInIndex = 1; name = color_cache_utils.c; path = src/utils/color_cache_utils.c; sourceTree = ""; }; - F4FCB02D4E3949EF0C86B1907FBE7CC7 /* ObservingInputAccessoryView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = ObservingInputAccessoryView.m; path = lib/ObservingInputAccessoryView.m; sourceTree = ""; }; F55052F42574B7D52A6BA105DCE2F19E /* GDTCORUploadCoordinator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCORUploadCoordinator.h; path = GoogleDataTransport/GDTCORLibrary/Private/GDTCORUploadCoordinator.h; sourceTree = ""; }; - F557B001E8C41D66E5253538B9E7A7DB /* REAOperatorNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REAOperatorNode.m; sourceTree = ""; }; + F55C2B04C4A9C8B86635F45E07A4C59B /* RCTMaskedViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTMaskedViewManager.m; sourceTree = ""; }; F581E835D4B745A1D287B2D9FAFABD0D /* FBLPromises.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBLPromises.h; path = Sources/FBLPromises/include/FBLPromises.h; sourceTree = ""; }; + F5B78CB4D0944353EC41021425B6E0D2 /* RNDateTimePicker.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNDateTimePicker.m; path = ios/RNDateTimePicker.m; sourceTree = ""; }; F603F708AE1BF751B3ACE89E154E4673 /* FBLPromise+Then.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FBLPromise+Then.h"; path = "Sources/FBLPromises/include/FBLPromise+Then.h"; sourceTree = ""; }; - F61149C7CB39C9ACF3BF0270530309EA /* react-native-cameraroll.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "react-native-cameraroll.xcconfig"; sourceTree = ""; }; + F6244E40980B1C3E992119FCB7EF4F07 /* ReactNativeART-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "ReactNativeART-dummy.m"; sourceTree = ""; }; F62A51F0D87C21CBDCC1B8756AE451C6 /* nanopb-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "nanopb-dummy.m"; sourceTree = ""; }; - F64C9572C53A98CF5C52103A9001C290 /* RCTBaseTextViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTBaseTextViewManager.m; sourceTree = ""; }; - F6B519CF1AC74C2306D48D79595C43B0 /* BugsnagConfiguration.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagConfiguration.m; sourceTree = ""; }; - F6B6FD643CFD4E6D22C223E39F676CD5 /* RNGestureHandlerRegistry.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNGestureHandlerRegistry.m; path = ios/RNGestureHandlerRegistry.m; sourceTree = ""; }; - F6C5D40D80D2E5283D85F6604DEFDCAA /* REAPropsNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REAPropsNode.h; sourceTree = ""; }; - F6E32E206DAF749BA6BF9A9A917D0C4F /* EXWebBrowser.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXWebBrowser.h; path = EXWebBrowser/EXWebBrowser.h; sourceTree = ""; }; - F6FE3146B3E310E68DDB82B95E27D28F /* YGNodePrint.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YGNodePrint.h; path = yoga/YGNodePrint.h; sourceTree = ""; }; - F7140A66BCEA0E2374D90337A4DAD6B1 /* RCTUITextField.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTUITextField.h; sourceTree = ""; }; + F63583F2D2EE601D43B0896533EAFCDF /* KeyboardTrackingViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = KeyboardTrackingViewManager.h; path = lib/KeyboardTrackingViewManager.h; sourceTree = ""; }; + F650DA6B415469641D9DFBFF175D1F4F /* CxxModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = CxxModule.h; sourceTree = ""; }; + F67EE4F4190BEAE253397EF0E41D65D0 /* RNGestureHandlerEvents.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNGestureHandlerEvents.m; path = ios/RNGestureHandlerEvents.m; sourceTree = ""; }; + F6CD0FD8A95804E7EC56E9BE9CB51672 /* RCTRootContentView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTRootContentView.h; sourceTree = ""; }; + F70DAFFFC470AC8CF0C79094BE1C42C2 /* RNFlingHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNFlingHandler.h; sourceTree = ""; }; F7181E6712382186FEFE1FAEE124DC30 /* SDWebImagePrefetcher.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWebImagePrefetcher.m; path = SDWebImage/Core/SDWebImagePrefetcher.m; sourceTree = ""; }; F71EBF73F354B475D465FF6DE9A66707 /* libReact-RCTBlob.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libReact-RCTBlob.a"; path = "libReact-RCTBlob.a"; sourceTree = BUILT_PRODUCTS_DIR; }; F72625A8093D89ACAEF9ACBC3883C014 /* fast-dtoa.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = "fast-dtoa.cc"; path = "double-conversion/fast-dtoa.cc"; sourceTree = ""; }; - F736DCABD4EDB4DBD28ACDE90AA20351 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; - F74EE16B4E75BA0487C801D730BDA2E5 /* RNCSlider.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCSlider.h; path = ios/RNCSlider.h; sourceTree = ""; }; - F75AE064E501D9BA25FAD02AF42C7BB1 /* Octicons.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = Octicons.ttf; path = Fonts/Octicons.ttf; sourceTree = ""; }; - F77B932BE2DF5310379CA95A585105B4 /* RNCAppearanceProviderManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCAppearanceProviderManager.m; path = ios/Appearance/RNCAppearanceProviderManager.m; sourceTree = ""; }; + F75A44300CE3493BF09D9B64ACDCA000 /* RCTShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTShadowView.m; sourceTree = ""; }; + F7682ECCD906776D42EED1F55077A15F /* RNCAppearanceProvider.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCAppearanceProvider.m; path = ios/Appearance/RNCAppearanceProvider.m; sourceTree = ""; }; + F771AC9AB82CDB9992BBEFD479115FC9 /* RCTConvert+REATransition.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RCTConvert+REATransition.h"; sourceTree = ""; }; + F78BAA9318BC3B9495CEC57CE05A095A /* UMLogManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = UMLogManager.m; sourceTree = ""; }; F78C3AEA250BDD82BE7FE666904B87A3 /* DoubleConversion-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "DoubleConversion-dummy.m"; sourceTree = ""; }; F790E8CC5AC5310B53CA380DA817176B /* ieee.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ieee.h; path = "double-conversion/ieee.h"; sourceTree = ""; }; - F847E3CCE33D39A3394B1456005D0D6A /* Compression.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Compression.h; path = ios/src/Compression.h; sourceTree = ""; }; - F84D536010750904489076985DBC630B /* RCTAccessibilityManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTAccessibilityManager.h; sourceTree = ""; }; - F8566C99EDB572BAEA82EDEE2EF22A05 /* RCTNetInfo.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTNetInfo.m; sourceTree = ""; }; - F86A8838F13F8946E284661B2EB8E5A1 /* RCTSurfaceHostingView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSurfaceHostingView.h; sourceTree = ""; }; - F87BC579EA5CA2A5B6B6F5FF355208F1 /* RNRootView.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNRootView.xcconfig; sourceTree = ""; }; + F7AFF9E9F8831B27B4838A13437E6AFA /* RNUserDefaults-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNUserDefaults-dummy.m"; sourceTree = ""; }; + F7B4DF41D35732CC8203AE6EDC834515 /* RNNotificationCenter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNNotificationCenter.h; path = RNNotifications/RNNotificationCenter.h; sourceTree = ""; }; + F7F3B05EF48A181DEA626AAAD7B63498 /* RCTLayout.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTLayout.h; sourceTree = ""; }; + F7FA5E401ABCC1F3D111FB35DF032F48 /* Zocial.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = Zocial.ttf; path = Fonts/Zocial.ttf; sourceTree = ""; }; + F816E429C189AC7FF0CDD8C05386E4A2 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; + F840BF6836B68BC2F0B39D0962A217A7 /* RCTModuloAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTModuloAnimatedNode.h; sourceTree = ""; }; + F853DF4667238413770D3F1867E755E4 /* UMTaskInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMTaskInterface.h; path = UMTaskManagerInterface/UMTaskInterface.h; sourceTree = ""; }; + F875A442D739A43C44CC221609DC7CE8 /* 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; }; F87F6A22FB4F600954FB2663E53340C6 /* SDImageIOCoder.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageIOCoder.m; path = SDWebImage/Core/SDImageIOCoder.m; sourceTree = ""; }; - F89C08AE3E9F60C786AA1AC556E2964C /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; - F8E555558800C5B1844648D07AAE2A72 /* RCTConvert+CoreLocation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RCTConvert+CoreLocation.m"; sourceTree = ""; }; + F8BF55577E9CB50B9C96920DEBDC8284 /* YGValue.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = YGValue.cpp; path = yoga/YGValue.cpp; sourceTree = ""; }; F934561A4844BCB1A5D2C72516F4A72A /* NSData+ImageContentType.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSData+ImageContentType.m"; path = "SDWebImage/Core/NSData+ImageContentType.m"; sourceTree = ""; }; - F94A2AD99091C9E2C768F460BDED0C37 /* RCTScrollView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTScrollView.h; sourceTree = ""; }; + F937CEE2C4F912A509CCE770FF61A806 /* RNScreens.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RNScreens.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; F958876A082BF810B342435CE3FB5AF6 /* libRCTTypeSafety.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libRCTTypeSafety.a; path = libRCTTypeSafety.a; sourceTree = BUILT_PRODUCTS_DIR; }; - F966A458B3DFDF329C77F7E229FEE857 /* RCTFileReaderModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTFileReaderModule.h; path = Libraries/Blob/RCTFileReaderModule.h; sourceTree = ""; }; - F968E803F74865AF58100405D2A73207 /* react-native-keyboard-input.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = "react-native-keyboard-input.podspec"; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - F98980B4FD732EF519F258893B34B29D /* RCTManagedPointer.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTManagedPointer.mm; sourceTree = ""; }; - F98B5C28791B31F1BD8EDCF876EE4A37 /* RCTTiming.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTiming.h; sourceTree = ""; }; - F9A75C1E17AB778DBB20511F689B9909 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; - F9AD7000918BAE9322E40B187BECD7A0 /* BSG_KSCrashSentry_Signal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashSentry_Signal.h; sourceTree = ""; }; - F9F2C789EF9C7BECA5CF70F65FEB2FD8 /* RCTActivityIndicatorViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTActivityIndicatorViewManager.h; sourceTree = ""; }; - F9FC30BA0F6F380628A8C1D348539FCD /* YGEnums.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YGEnums.h; path = yoga/YGEnums.h; sourceTree = ""; }; + F965AA1FCBC69910B283F71994FA5C7B /* ReactNativeShareExtension.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = ReactNativeShareExtension.m; path = ios/ReactNativeShareExtension.m; sourceTree = ""; }; + F975DCABFFD0BA6A6A1A25438D6405F6 /* RCTUIUtils.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTUIUtils.m; sourceTree = ""; }; + F9784E8E0B396952D3CC2448FD0F40A8 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; + F98089A2B7C555B7C71068FC3D66F7B5 /* RCTTextView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTextView.h; sourceTree = ""; }; + F9842A19ACBCF0320E3401C4FC0BFA2D /* RNPushKitEventListener.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNPushKitEventListener.h; path = RNNotifications/RNPushKitEventListener.h; sourceTree = ""; }; F9FDF1E88D043740EACFF1DC73E36B23 /* FIRDiagnosticsData.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRDiagnosticsData.h; path = FirebaseCore/Sources/Private/FIRDiagnosticsData.h; sourceTree = ""; }; FA2193D233F784FDA8D14E5ED56629C0 /* Pods-RocketChatRN-frameworks.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-RocketChatRN-frameworks.sh"; sourceTree = ""; }; FA26B5A8A32F2F522F09863C5C0477C0 /* GoogleDataTransportCCTSupport.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = GoogleDataTransportCCTSupport.xcconfig; sourceTree = ""; }; - FA29B7E7205388792798F4B3377F3E59 /* RCTUIManagerUtils.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTUIManagerUtils.m; sourceTree = ""; }; FA4ECAC99B83A66CECD026177446CB77 /* SDWebImageOptionsProcessor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageOptionsProcessor.h; path = SDWebImage/Core/SDWebImageOptionsProcessor.h; sourceTree = ""; }; - FA6914AAA8D92B304193F795555FEAD8 /* zh-Hans.lproj */ = {isa = PBXFileReference; includeInIndex = 1; name = "zh-Hans.lproj"; path = "ios/QBImagePicker/QBImagePicker/zh-Hans.lproj"; sourceTree = ""; }; - FA696B34750404CFD6B19919C435E8BE /* RNNotificationsStore.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNNotificationsStore.m; path = RNNotifications/RNNotificationsStore.m; sourceTree = ""; }; - FA6B3A8B1FA952C66BA39C4EEDA412CC /* RNPushKitEventHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNPushKitEventHandler.m; path = RNNotifications/RNPushKitEventHandler.m; sourceTree = ""; }; + FA5F7F2BAA4C5C8F1FDBB5390AEC096D /* BSG_KSCrashDoctor.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BSG_KSCrashDoctor.m; sourceTree = ""; }; FA6C315437C3214205593E74AB412E48 /* FIRVersion.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRVersion.m; path = FirebaseCore/Sources/FIRVersion.m; sourceTree = ""; }; - FAC5377C62D31AC16E930AAA687E4117 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; + FA6FF7113372AF721AEA989C93C9BD9F /* RNGestureHandlerModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNGestureHandlerModule.h; path = ios/RNGestureHandlerModule.h; sourceTree = ""; }; + FA9DF80A8C37BBA9A162076C011D410C /* ReactMarker.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = ReactMarker.cpp; sourceTree = ""; }; + FAC109B04FC80810296772EF839D15DF /* RNCCameraRollManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCCameraRollManager.h; path = ios/RNCCameraRollManager.h; sourceTree = ""; }; + FAC219E502CB8FBE7E6D2A1E86DB0F66 /* RCTModalHostView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTModalHostView.h; sourceTree = ""; }; + FAC8ADEF9A55256F990A842716F5B09D /* RCTShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTShadowView.h; sourceTree = ""; }; FAEB584D2FCC43846A157044BC9D5E46 /* yuv_neon.c */ = {isa = PBXFileReference; includeInIndex = 1; name = yuv_neon.c; path = src/dsp/yuv_neon.c; sourceTree = ""; }; - FB39EE33E559072B4EA668CBC7F04C55 /* RNFirebase-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNFirebase-prefix.pch"; sourceTree = ""; }; - FB5467394A36479E9AF7DCDF070BFDDE /* RCTInspectorDevServerHelper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTInspectorDevServerHelper.h; sourceTree = ""; }; - FB565D9230FBB70EF16DA17614C71573 /* QBImagePickerController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = QBImagePickerController.m; path = ios/QBImagePicker/QBImagePicker/QBImagePickerController.m; sourceTree = ""; }; - FBA73E52609D7D1B032A5C01E116D8D6 /* BSG_KSMach_Arm64.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSMach_Arm64.c; sourceTree = ""; }; + FB065042ADCFC88306ADBF0D50AF8098 /* UMAppDelegateWrapper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMAppDelegateWrapper.h; path = UMCore/UMAppDelegateWrapper.h; sourceTree = ""; }; + FB38CFCCCB4ABF71AC7E2584E2DBC245 /* RCTDataRequestHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTDataRequestHandler.m; sourceTree = ""; }; + FB5BD38277E6E2A60D5971113A65EC76 /* RNFirebaseFunctions.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNFirebaseFunctions.h; sourceTree = ""; }; FBB3943BA57703F03AC1AE6E9180EC2B /* FIRInstanceIDLogger.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstanceIDLogger.h; path = Firebase/InstanceID/FIRInstanceIDLogger.h; sourceTree = ""; }; - FBDA62D7D4CABA46A2DFC2F3A9FCC095 /* RCTInputAccessoryViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTInputAccessoryViewManager.m; sourceTree = ""; }; - FBFF441FC84B25E7C8F3C28A549BCE2D /* BugsnagHandledState.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagHandledState.m; sourceTree = ""; }; - FC31EFA79C12858731900C2003838846 /* ARTRenderableManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = ARTRenderableManager.m; sourceTree = ""; }; + FBDAEFF00D4814C71A9FCFA6911A8F0D /* RNPushKitEventHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNPushKitEventHandler.m; path = RNNotifications/RNPushKitEventHandler.m; sourceTree = ""; }; FC39B30F26E84F6B31EE5DC99AA7A735 /* FIRInstallationsErrorUtil.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstallationsErrorUtil.m; path = FirebaseInstallations/Source/Library/Errors/FIRInstallationsErrorUtil.m; sourceTree = ""; }; FC4D1271006F3F19FD1F32ED18916996 /* SDImageHEICCoder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageHEICCoder.h; path = SDWebImage/Core/SDImageHEICCoder.h; sourceTree = ""; }; FC7479F169BDFA83A763E71935B39C0A /* rescaler_utils.c */ = {isa = PBXFileReference; includeInIndex = 1; name = rescaler_utils.c; path = src/utils/rescaler_utils.c; sourceTree = ""; }; - FC787765505DB033B1A703A169EA30DB /* RCTConvert+Transform.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RCTConvert+Transform.h"; sourceTree = ""; }; - FC88815E2B2418744BA108539F7B153B /* RCTSurfaceView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSurfaceView.h; sourceTree = ""; }; + FC8C100F84609F49CA2869F2C9F9CBC8 /* UMModuleRegistry.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = UMModuleRegistry.m; sourceTree = ""; }; FCB6EDCCFB847FE622558CA7FACF0C21 /* FIRAnalyticsConnector.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = FIRAnalyticsConnector.framework; path = Frameworks/FIRAnalyticsConnector.framework; sourceTree = ""; }; - FCBB8E3B6FC94A6A7940D8898AC91B16 /* SRPinningSecurityPolicy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = SRPinningSecurityPolicy.m; sourceTree = ""; }; - FCCFBDF358A2A2888B8341C071D4749B /* UMEventEmitterService.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMEventEmitterService.h; sourceTree = ""; }; - FCEDE834382246446F485AB070F9B9CB /* RCTConvert+CoreLocation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RCTConvert+CoreLocation.h"; sourceTree = ""; }; + FCE6DCB3CC931BC4D607C25ACD24B242 /* React.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = React.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; FCF61D9B2B75054A9A3185DDC609B7FF /* libSDWebImageWebPCoder.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libSDWebImageWebPCoder.a; path = libSDWebImageWebPCoder.a; sourceTree = BUILT_PRODUCTS_DIR; }; FD022A7C3D909D8519F310D4392F2421 /* alphai_dec.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = alphai_dec.h; path = src/dec/alphai_dec.h; sourceTree = ""; }; - FD0522A77323863222F799279CD2584A /* RNUserDefaults.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNUserDefaults.h; path = ios/RNUserDefaults.h; sourceTree = ""; }; - FD0BB39981669D1A579DBF85AD3714DE /* RNCAppearanceProvider.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCAppearanceProvider.h; path = ios/Appearance/RNCAppearanceProvider.h; sourceTree = ""; }; - FD1362BA26D5112AE41ADA2C5A6F6273 /* EXHaptics.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = EXHaptics.xcconfig; sourceTree = ""; }; - FD31D6B0CC2C718B128547ADD22A476E /* RCTSafeAreaViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSafeAreaViewManager.m; sourceTree = ""; }; + FD0B80D0EC31363E9234C55879B93F2A /* RCTSurfaceSizeMeasureMode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSurfaceSizeMeasureMode.h; sourceTree = ""; }; + FD25C0A52FF914112C3804C37A8386C2 /* RCTRawTextShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTRawTextShadowView.h; sourceTree = ""; }; FD463EFB922CF38263587F78A3E403E1 /* FIRComponentType.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRComponentType.h; path = FirebaseCore/Sources/Private/FIRComponentType.h; sourceTree = ""; }; - FD4A677E9CA49D39C842FBC218DB538D /* NSTextStorage+FontScaling.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "NSTextStorage+FontScaling.h"; sourceTree = ""; }; - FD9DD910D5C06981186BDAD63B188670 /* RCTPerfMonitor.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTPerfMonitor.m; sourceTree = ""; }; - FDA0A74ADDB9C5C9E33AB64C0A101B29 /* react-native-webview-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "react-native-webview-prefix.pch"; sourceTree = ""; }; - FDE859A1CFE903D73EC496F2808B21A4 /* RCTNativeModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTNativeModule.h; sourceTree = ""; }; + FD565A43ABA2624D39BC43B81A81F325 /* RNFirebaseAdMobRewardedVideo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNFirebaseAdMobRewardedVideo.h; sourceTree = ""; }; + FD88CEF1B990010FAFE6E6255571C188 /* RCTStatusBarManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTStatusBarManager.h; sourceTree = ""; }; + FDA09634184D77992600B0F692CCDCB7 /* React-RCTAnimation-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-RCTAnimation-dummy.m"; sourceTree = ""; }; + FDC324B82249D14E654BB58D2C459902 /* REAOperatorNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REAOperatorNode.h; sourceTree = ""; }; + FE10DB9AA63D351C0285E36C0807C4CC /* RNRootViewGestureRecognizer.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNRootViewGestureRecognizer.m; path = ios/RNRootViewGestureRecognizer.m; sourceTree = ""; }; FE1CC5E059EA91AFC5ABF8BF527E9F10 /* huffman_utils.c */ = {isa = PBXFileReference; includeInIndex = 1; name = huffman_utils.c; path = src/utils/huffman_utils.c; sourceTree = ""; }; + FE1ED1EC8BF18BAD0FAC29332E9C304E /* RCTSurfaceHostingProxyRootView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSurfaceHostingProxyRootView.h; sourceTree = ""; }; FE7B9294FF05AAFD1653E2104E10844A /* libReact-RCTAnimation.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libReact-RCTAnimation.a"; path = "libReact-RCTAnimation.a"; sourceTree = BUILT_PRODUCTS_DIR; }; - FE86C3E184FD246EBA281044A830BA6D /* BSG_KSBacktrace_Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSBacktrace_Private.h; sourceTree = ""; }; - FE87F7446D77FCE118FD9535031AC421 /* React-jsi.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-jsi.xcconfig"; sourceTree = ""; }; - FE89627E32A0863BE079C80453B79AD1 /* RCTAnimationDriver.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTAnimationDriver.h; sourceTree = ""; }; + FE7CD5C94AFB871210535567E052DFCD /* ModuleRegistry.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = ModuleRegistry.cpp; sourceTree = ""; }; FE99DA2A671583AFDB9A25490E656721 /* FBLPromiseError.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBLPromiseError.m; path = Sources/FBLPromises/FBLPromiseError.m; sourceTree = ""; }; - FECB74A76169853E789D0D17BBE5F768 /* react-native-slider.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "react-native-slider.xcconfig"; sourceTree = ""; }; - FECFF69540557376296F709EC2CA9AFD /* KeyCommands-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "KeyCommands-prefix.pch"; sourceTree = ""; }; + FEC601D1D74D013675FE7C27FD105C6F /* RNNotificationParser.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNNotificationParser.m; path = RNNotifications/RNNotificationParser.m; sourceTree = ""; }; + FEC6081AC23CEB436CA6F056DAB0E1A8 /* EXKeepAwake.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXKeepAwake.m; path = EXKeepAwake/EXKeepAwake.m; sourceTree = ""; }; FED3E487A355D9CE1B0445AF9E4FA899 /* GDTCORAssert.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCORAssert.h; path = GoogleDataTransport/GDTCORLibrary/Public/GDTCORAssert.h; sourceTree = ""; }; - FEE01462E2FB6778E0E88ACD48E7591B /* BSG_KSCrashState.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashState.h; sourceTree = ""; }; - FEE17CE6D0AD8BCA7DDD4AF1C1F76BF2 /* ARTPattern.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = ARTPattern.h; sourceTree = ""; }; + FEE5C7B87CE7FE1D155E18C9FFE07D37 /* UMReactNativeAdapter-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "UMReactNativeAdapter-prefix.pch"; sourceTree = ""; }; FF00CDB7A8232AE4158B172CB16D57C2 /* animi.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = animi.h; path = src/mux/animi.h; sourceTree = ""; }; - FF0DCB70E216342B05B65FE350A12DF7 /* QBCheckmarkView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = QBCheckmarkView.h; path = ios/QBImagePicker/QBImagePicker/QBCheckmarkView.h; sourceTree = ""; }; - FF0F7BE5B8A1BA9C72D90CB9BC6B2509 /* REATransitionManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REATransitionManager.h; sourceTree = ""; }; - FF1FEBEDD561BAEF33A559766BA4CECA /* RNImageCropPicker-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNImageCropPicker-dummy.m"; sourceTree = ""; }; - FF45F8423E452C8B8FAC16822E2A14D4 /* RNPushKit.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNPushKit.m; path = RNNotifications/RNPushKit.m; sourceTree = ""; }; + FF1FBD259367ECDB38F0E731A0E0D4CC /* React-cxxreact.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-cxxreact.xcconfig"; sourceTree = ""; }; FF4A1A447F74EECB8C2AC14492FA6CA0 /* GDTCORReachability_Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCORReachability_Private.h; path = GoogleDataTransport/GDTCORLibrary/Private/GDTCORReachability_Private.h; sourceTree = ""; }; - FF4CCB3FD611F83C724F764EDC90F4CE /* RNFirebaseAnalytics.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNFirebaseAnalytics.m; sourceTree = ""; }; - FF76018294EE0F747D82693B03DEB377 /* react-native-keyboard-tracking-view-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "react-native-keyboard-tracking-view-dummy.m"; sourceTree = ""; }; - FF7AD6A205354D1D4B3820E531CF8FF7 /* NSRunLoop+SRWebSocket.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSRunLoop+SRWebSocket.h"; path = "SocketRocket/NSRunLoop+SRWebSocket.h"; sourceTree = ""; }; + FF5EE12DFAFEDE916B6E17165DB0CEBD /* EXConstantsService.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXConstantsService.h; path = EXConstants/EXConstantsService.h; sourceTree = ""; }; + FF790684A443F38C2A2A38A5EB2F4209 /* RCTTextAttributes.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTTextAttributes.h; path = Libraries/Text/RCTTextAttributes.h; sourceTree = ""; }; + FF8B11D5618879616A9C0F0B92CF0381 /* 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; }; FF92B16CAA4A7AFB4FC58207B113E26A /* yuv_mips32.c */ = {isa = PBXFileReference; includeInIndex = 1; name = yuv_mips32.c; path = src/dsp/yuv_mips32.c; sourceTree = ""; }; - FF9D71C72F2D96E98171895C7B078301 /* RCTBlobCollector.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBlobCollector.h; sourceTree = ""; }; - FFBEA85239A716CD4FFF1F0FA1B3567A /* RNFirebaseAuth.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNFirebaseAuth.h; sourceTree = ""; }; - FFCDDE9BA567EFC215FF2D62653D8C92 /* KeyCommands-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "KeyCommands-dummy.m"; sourceTree = ""; }; + FF96CBA8BB9D8D9B314D33058260968C /* Yoga-internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "Yoga-internal.h"; path = "yoga/Yoga-internal.h"; sourceTree = ""; }; + FFAFB3A0477AA9E5B891B8F8F157096E /* RNFirebaseFirestore.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNFirebaseFirestore.m; sourceTree = ""; }; + FFC48B878AD4545C44646AB56BD282C3 /* RNImageCropPicker-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNImageCropPicker-dummy.m"; sourceTree = ""; }; FFE34689D2E3DE37AC652BA9C6743AD3 /* FIRHeartbeatInfo.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRHeartbeatInfo.m; path = FirebaseCore/Sources/FIRHeartbeatInfo.m; sourceTree = ""; }; /* End PBXFileReference section */ /* Begin PBXFrameworksBuildPhase section */ + 04171A6E8EB7C9EF7081B018D2FDFEF9 /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + runOnlyForDeploymentPostprocessing = 0; + }; 05EE1CF8E74A92E5D3618C4080093918 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; @@ -6755,13 +6682,6 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 0DECAD13919150B7757AE9FB2B83BA0B /* Frameworks */ = { - isa = PBXFrameworksBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; 0F22F363690501476F87C3CF49F3CAAE /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; @@ -7070,6 +6990,13 @@ ); runOnlyForDeploymentPostprocessing = 0; }; + 9E1A42CE3F9C0739F32F60BE706C22A1 /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + runOnlyForDeploymentPostprocessing = 0; + }; A3044A76BB7DB25B126B27CEC50DC142 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; @@ -7084,7 +7011,7 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - B08CFEA9363D15A9AB6B90BB264D3162 /* Frameworks */ = { + AB9273482365358EF6EA8927DDDE56FD /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( @@ -7168,13 +7095,6 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - C972A634AA8E0D8DE49C3095C4BBA1E0 /* Frameworks */ = { - isa = PBXFrameworksBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; CE89E15E4B943EE060FA7E75EC9E2FF2 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; @@ -7290,15 +7210,30 @@ /* End PBXFrameworksBuildPhase section */ /* Begin PBXGroup section */ - 00CD85CBE2D1516BB19D0B71A338EA58 /* React-RCTSettings */ = { + 0041CF366E2D507B74A32A3A4EBA62D1 /* React-jsi */ = { isa = PBXGroup; children = ( - 142645C01EEDC63308811732C7B0EFCB /* RCTSettingsManager.m */, - C59C939570963FB3D5E87D683EAB78BB /* Pod */, - B2C3AF8B44F42C3749EAB5B08F350F37 /* Support Files */, + CC264D21EAF74E8C5F178B430E18CE47 /* JSCRuntime.cpp */, + CD51A155264523A3BC8E61514600183A /* JSCRuntime.h */, + CECEFDAE21BF1266FF7DE08934DE610D /* jsi */, + 41E02584B247CCB09F985F7BEFB11908 /* Pod */, + B6CD825F3C741626668932BC3958290D /* Support Files */, ); - name = "React-RCTSettings"; - path = "../../node_modules/react-native/Libraries/Settings"; + name = "React-jsi"; + path = "../../node_modules/react-native/ReactCommon/jsi"; + sourceTree = ""; + }; + 011B6E5FFAE4D120B13A8339628E61A0 /* EXAppLoaderProvider */ = { + isa = PBXGroup; + children = ( + B24FC92D1A76F9E7EDEEFB8F35746F7D /* EXAppLoaderProvider.h */, + 2E596CF03E8FB545AE5A94F575DF8D50 /* EXAppLoaderProvider.m */, + 7954050E29A1526614ADE3F5FB158A66 /* Interfaces */, + 906CBE7C31ACAE157CECEF57BC3213A8 /* Pod */, + 046B0642F1A1B44FAED06EE9A48F8E13 /* Support Files */, + ); + name = EXAppLoaderProvider; + path = "../../node_modules/expo-app-loader-provider/ios"; sourceTree = ""; }; 014C12EE5AF00EF9920FD4EE73C3B7A9 /* NSData+zlib */ = { @@ -7359,42 +7294,109 @@ path = FirebaseCore; sourceTree = ""; }; - 029BE94D56996AD5E8C0C683AB4A683D /* Support Files */ = { + 02709255A48D61E6388EA06CEFCB198F /* Support Files */ = { isa = PBXGroup; children = ( - D59853E1F7C76D1F53A4AF7E12C099FC /* React-RCTImage.xcconfig */, - A8CAFD204ED4574FA1360D9560434436 /* React-RCTImage-dummy.m */, - 45D40F84C6B9F50EEB5A1CA59FE83231 /* React-RCTImage-prefix.pch */, + 0BD33B0D74A9CC26A84EB1DE14A555F3 /* react-native-document-picker.xcconfig */, + C8347D41FC070E90B0280DEAD80BAB02 /* react-native-document-picker-dummy.m */, + 85B79B9B5F87B6F89E48972183BD00B1 /* react-native-document-picker-prefix.pch */, ); name = "Support Files"; - path = "../../../../ios/Pods/Target Support Files/React-RCTImage"; + path = "../../ios/Pods/Target Support Files/react-native-document-picker"; sourceTree = ""; }; - 03AEB85F9F868FD0DA14DDB9EAD57A2A /* Protocols */ = { + 02FD0BFD563A9EA0A0AA554E25ED9FD1 /* Base */ = { isa = PBXGroup; children = ( - 135CB166A79C27938AA7E8FF963129A7 /* UMAppLifecycleListener.h */, - BC0837151C4E564C57BFFA1DB2F79540 /* UMAppLifecycleService.h */, - 7B0E3D03DB412ECDC746F6D3E36C8209 /* UMEventEmitter.h */, - FCCFBDF358A2A2888B8341C071D4749B /* UMEventEmitterService.h */, - 310F683ED975C384F97BB40AD49191AD /* UMInternalModule.h */, - 55014DC55695E2C387F7AFF31BEF7945 /* UMJavaScriptContextProvider.h */, - 799E4AB53FE5402E6BCB30E200986637 /* UMKernelService.h */, - 410A77634DA7271378BD28B20E3C8DE6 /* UMLogHandler.h */, - 3A125568FCC4029332BB55668E241081 /* UMModuleRegistryConsumer.h */, - 3036FECE3E869779BDDCBE736F73DA45 /* UMUIManager.h */, - 985F95F23921DC850D948490B4FB6A1A /* UMUtilitiesInterface.h */, + 0EA1512F9531252A0ABA2D3F0060F5DD /* RCTAssert.h */, + 00012AD6965A813C30EA32ECA359C3BD /* RCTAssert.m */, + B9D31ADFA24CAB396511E4EA658CE83A /* RCTBridge.h */, + 04DECA7B079BEC5C2F5F5FC292BDED8B /* RCTBridge.m */, + 600F74A2B725854868F8263604096B78 /* RCTBridge+Private.h */, + CD58055A3420A79299262FFF12AAE574 /* RCTBridgeDelegate.h */, + EB0ADCF205E8106C473BD1A769D3ACC9 /* RCTBridgeMethod.h */, + 71789EFDC650C275DC69DEA233F72AF0 /* RCTBridgeModule.h */, + 4A599197657455ED85D0F51A50C1CCD9 /* RCTBundleURLProvider.h */, + 18D93B967DFA8851D29B5EFC28A9635A /* RCTBundleURLProvider.m */, + 148431F7426009B1283775695F30B497 /* RCTComponentEvent.h */, + 9C908A705746AA11B0244833E9C9C840 /* RCTComponentEvent.m */, + 6D7ED3AC941C8C83AA4EA061C458DE4F /* RCTConvert.h */, + 0CBDEACE8A1F1587BA4A7E95B38FCD9A /* RCTConvert.m */, + B6D562B0D04F9C595BF3969F0306EDBA /* RCTCxxConvert.h */, + 5725F510340E6E5521BD629DAAF432D4 /* RCTCxxConvert.m */, + 234790945CE0B8BB21816A754494B8DE /* RCTDefines.h */, + CD2AF6A5A1620BD7F0DCD17EAB8A73CB /* RCTDisplayLink.h */, + 5502DEE09F13AF71CD73586AF452FBBF /* RCTDisplayLink.m */, + A5B5A06151FF53640D69899E12C43896 /* RCTErrorCustomizer.h */, + C2CA730EEB88F4CC4D52ADB2B5A521C2 /* RCTErrorInfo.h */, + D24AD048A4B3F5467DA06657F1339CD5 /* RCTErrorInfo.m */, + 38686A84D06924E5F84F508EC9989699 /* RCTEventDispatcher.h */, + 14799CF9DA3B3D4B9C9FC11268DC0B3F /* RCTEventDispatcher.m */, + 759BC504286B8CCE97EFEF1740983CDB /* RCTFrameUpdate.h */, + 451666493334938F198A70DFCE74A2E6 /* RCTFrameUpdate.m */, + 82029B11A69D43F2CECCC452BD7F030F /* RCTImageSource.h */, + AB4E1685D5ADB0F9829D8826559E5FA1 /* RCTImageSource.m */, + 459BA954870F7DB509349D7CB16999FB /* RCTInvalidating.h */, + 6D12EBF6E2A447CA627F61E05B923CFF /* RCTJavaScriptExecutor.h */, + 0A2BFD50F94AD38AE107E46ACB952D78 /* RCTJavaScriptLoader.h */, + BEE805160E9BD4F326C882AF564B2282 /* RCTJavaScriptLoader.mm */, + 92AD3F3615247DF1DAD78AFF16D8CC2B /* RCTJSStackFrame.h */, + D83FF9E67D8B49D47E872869CE224AA2 /* RCTJSStackFrame.m */, + 37F0F4903F60E772E81AA73B8F63FA68 /* RCTKeyCommands.h */, + 661CA3A1F694AE04D71F854CED234349 /* RCTKeyCommands.m */, + 4D5AD05BB69D393AA56A6B6E816F86E6 /* RCTLog.h */, + B1F65D7FF3135A0627DF673CBD7C9BFA /* RCTLog.mm */, + 6FAD7EF1B8A1AF83416EDBA8A7109925 /* RCTManagedPointer.h */, + F40E7FD506B6A4591BA2E53A072C7295 /* RCTManagedPointer.mm */, + 4F6AC73BDDDC198C27DABE8C51E2BF5D /* RCTModuleData.h */, + 99D3168ADFE03596ED5D7E8D4E6932BD /* RCTModuleData.mm */, + AB2C54B740DA1C3F9624DF4628B9B5B6 /* RCTModuleMethod.h */, + 032A3A60C74E36C608A3A1B273340DE1 /* RCTModuleMethod.mm */, + B240E33ACD088E410D7B37AA73F58027 /* RCTMultipartDataTask.h */, + DBEC3FE86BE0E6013132AC57F16E0A26 /* RCTMultipartDataTask.m */, + 08215ED1667C22CEC03E00D608044BFF /* RCTMultipartStreamReader.h */, + 4E65E9C4BA7BC0DF78267AE2E1FE3F5D /* RCTMultipartStreamReader.m */, + B61495BCC248BD822D7A6FBD0220D04E /* RCTNullability.h */, + 5DC44C6607404E13FC04107356853ADB /* RCTParserUtils.h */, + 89B3D9CD7FF68E7F4A8F6C05B00C33FE /* RCTParserUtils.m */, + 04014F2F5BB5AC05629CDB1EA3F6C1E7 /* RCTPerformanceLogger.h */, + 750F08B5CAD7FE8C0ADA4879A3D39F4F /* RCTPerformanceLogger.m */, + 626A53AAB2F22C619F60189EA67E963B /* RCTReloadCommand.h */, + 9FA2085627B2BD75045C8ECB6919AFF9 /* RCTReloadCommand.m */, + F6CD0FD8A95804E7EC56E9BE9CB51672 /* RCTRootContentView.h */, + 1F7DE5683334A228B233CAFFB8F6DAA3 /* RCTRootContentView.m */, + C8641817A53EB16ED589E7017D8F4EB7 /* RCTRootView.h */, + DCB0C29BDF1BA538986BF7B1ABE1CD20 /* RCTRootView.m */, + B6A6B3249AE6644494DC1529A7ADE309 /* RCTRootViewDelegate.h */, + 8873DD07BF4CCC6E0748DC31BAF006E4 /* RCTRootViewInternal.h */, + 53BCCAACD566CBD030E535C2D2A9CA0B /* RCTTouchEvent.h */, + 29A7D11D300350632C05A768527780F6 /* RCTTouchEvent.m */, + C1B2680A51934BED2FCD5FB1D34E94BF /* RCTTouchHandler.h */, + 72ADF40F856EAD8F2DB2F5F46F74402F /* RCTTouchHandler.m */, + C656FF6D5D30B52A35562CE99D9BC651 /* RCTURLRequestDelegate.h */, + 2FB1DBCF6934AC61BC52CAF58D20B94F /* RCTURLRequestHandler.h */, + 45E10692EB662F67F697D4974A212A58 /* RCTUtils.h */, + F4C57C7D06C6486CEBFF4CD63073F517 /* RCTUtils.m */, + 948C08EB2C9D41E3EAE9FF50A2C2D022 /* RCTVersion.h */, + 0E78EEBD99D652B1C1789771217FD6CF /* RCTVersion.m */, + B4667F52FE6F3DA21AB467946BCD128B /* RCTWeakProxy.h */, + 4A7E60A0E9CFA3617FEB966BBB5D45E4 /* RCTWeakProxy.m */, + C1DD8391F53850A91B8C02C42E06C2C1 /* Surface */, ); - name = Protocols; - path = UMCore/Protocols; + name = Base; + path = React/Base; sourceTree = ""; }; - 04255BE5D102E4D69D09EBF51C3A2D67 /* Pod */ = { + 031D609AEF4A771E942D98DA0731ED92 /* react-native-keyboard-input */ = { isa = PBXGroup; children = ( - 4A997D06BCEA5AB0DCC0B60D34C4102C /* React-RCTVibration.podspec */, + 11A7B9E3AD21CEA9FC214A4BF21E2CB0 /* LNInterpolation */, + C258DBB975DF066325DBA57DC707EBEC /* Pod */, + CC61C886B667388B268C3E80052BE3E5 /* RCTCustomInputController */, + 5395C3180DE161A6CE89EDBF642E163F /* Support Files */, ); - name = Pod; + name = "react-native-keyboard-input"; + path = "../../node_modules/react-native-keyboard-input"; sourceTree = ""; }; 043F146E221D020B79B780B0AA0BA24D /* GoogleUtilities */ = { @@ -7414,282 +7416,95 @@ path = GoogleUtilities; sourceTree = ""; }; - 0467E9D4903E106DE7556288C53A4B54 /* Products */ = { + 0441DECD64A9819BF9C6E7CAAEEE5C3E /* DevSupport */ = { isa = PBXGroup; children = ( - 3EEAA606F6866DA20E6601B9655B1027 /* libBugsnagReactNative.a */, - 6FFB7B2992BB53405E6B771A5BA1E97D /* libDoubleConversion.a */, - A225ED83E33DC48D25B9FF35BA50CCD0 /* libEXAppLoaderProvider.a */, - AD40A94AE1ADFA1CDF9602BA3B04C90E /* libEXAV.a */, - 220361FF3B2778F8F38C2C4DCC5B49FD /* libEXConstants.a */, - ED1E3FC0DC90F4A787472917BFB6B235 /* libEXFileSystem.a */, - 80A51B61FECFED8D1A0D95AAD32A2938 /* libEXHaptics.a */, - 72E494917AC5EC2582197F07061A28B0 /* libEXPermissions.a */, - 574E8A849B86DCF8EE5726418D974721 /* libEXWebBrowser.a */, - ABFEEA82A6C346B22843FBE0B0582182 /* libFBReactNativeSpec.a */, - E2B63D462DB7F827C4B11FD51E4F8E2D /* libFirebaseCore.a */, - 8CC9178C366942FD6FF6A115604EAD58 /* libFirebaseCoreDiagnostics.a */, - 13C8C8B254851998F9289F71229B28A2 /* libFirebaseInstallations.a */, - 2DA0D814DFCB860D31D7BCD63D795858 /* libFirebaseInstanceID.a */, - 06489499588BFA8FD5E63DD6375CD533 /* libFolly.a */, - 3CA7A9404CCDD6BA22C97F8348CE3209 /* libglog.a */, - 856B5CD56F194FAD26EA91620B66D614 /* libGoogleDataTransport.a */, - 6942351307BC1F54575D9853307EAE0E /* libGoogleDataTransportCCTSupport.a */, - B43874C6CBB50E7134FBEC24BABFE14F /* libGoogleUtilities.a */, - 279390C893577F74DD2049383E1EDD1A /* libKeyCommands.a */, - 5E4674603A5D5B9215FFA0F8E69F8B71 /* liblibwebp.a */, - 06FC5C9CF96D60C50FCD47D339C91951 /* libnanopb.a */, - 586602EDE69E2D273945D156ECB89853 /* libPods-RocketChatRN.a */, - ABCA9F4CD6EE0D4686EBA505F526A436 /* libPods-ShareRocketChatRN.a */, - 3347A1AB6546F0A3977529B8F199DC41 /* libPromisesObjC.a */, - F958876A082BF810B342435CE3FB5AF6 /* libRCTTypeSafety.a */, - BD71E2539823621820F84384064C253A /* libReact-Core.a */, - 6771D231F4C8C5976470A369C474B32E /* libReact-CoreModules.a */, - 37592FDAD45752511010F4B06AC57355 /* libReact-cxxreact.a */, - D9F334F2E90E3EE462FC4192AF5C03BD /* libReact-jsi.a */, - F2E7C88DFCD460A4B46B913ADEB8A641 /* libReact-jsiexecutor.a */, - 2577F299FCB0A19824FE989BE77B8E8F /* libReact-jsinspector.a */, - 242758B9EDFF146ABE411909CAC8F130 /* libreact-native-appearance.a */, - B75A261FE3CE62D5A559B997074E70FC /* libreact-native-background-timer.a */, - 8C3E2A6E6F93E60E397F6C0BBA710BF5 /* libreact-native-cameraroll.a */, - 08D1FFC2980C1ED72AE9A4C44A0544C3 /* libreact-native-document-picker.a */, - 8074129DF318155B29544548E1CAF4A3 /* libreact-native-jitsi-meet.a */, - 5CA8F1A20B87DBB263F925DD7FE29947 /* libreact-native-keyboard-input.a */, - 686FA236B3A0EDC2B7D10C6CB83450C8 /* libreact-native-keyboard-tracking-view.a */, - 012242E4480B29DF1D5791EC61C27FEE /* libreact-native-notifications.a */, - 48425DA2F01D82A20786D5E55E264A29 /* libreact-native-orientation-locker.a */, - 2B17A71888AA28CEFEC37B72F2A68A91 /* libreact-native-slider.a */, - 8DF63376066E2275FF26820B3A512A9B /* libreact-native-webview.a */, - 73F8A95B79671F501F31EA4F1D04AA8B /* libReact-RCTActionSheet.a */, - FE7B9294FF05AAFD1653E2104E10844A /* libReact-RCTAnimation.a */, - F71EBF73F354B475D465FF6DE9A66707 /* libReact-RCTBlob.a */, - EEDBF403E8E0B3885E65C2741B536BC5 /* libReact-RCTImage.a */, - 802121F5B756ACBFDD6D08C36246DADD /* libReact-RCTLinking.a */, - A68E5A9B69A3BA0FD52CAF7A354EC93B /* libReact-RCTNetwork.a */, - 269BE773C9482484B70949A40F4EA525 /* libReact-RCTSettings.a */, - E6A16705C69FC7DE11C2469A4A0F8358 /* libReact-RCTText.a */, - C1A919103EAC9813D236486C34FC0A21 /* libReact-RCTVibration.a */, - D5C775614AC76D44CECB6BE08B022F1F /* libReactCommon.a */, - 51B50F20C76CF72E2BEF8D4764235306 /* libReactNativeART.a */, - 858AFA83985937825473045CF6808B15 /* librn-extensions-share.a */, - 4FDA96879D96070EB1983E98E655CBDC /* librn-fetch-blob.a */, - 3B65CB9B6DCD893501BDCF1DE7BA926C /* libRNAudio.a */, - 202722AA0D229A11350F6DC0F267A0BA /* libRNBootSplash.a */, - 72DE4BF3FB9CE0858E90F96FEF8A53AE /* libRNDateTimePicker.a */, - E0FE6533198104C97DB047DD5CD8AC67 /* libRNDeviceInfo.a */, - E55EA3C6F285F6FA8067C5C8A428FA64 /* libRNFastImage.a */, - 4EAF7225D8D498E7D232AE1520E6CBD3 /* libRNFirebase.a */, - 8F65F9361F2069CF9E9D751272968DE4 /* libRNGestureHandler.a */, - 3AEA4A114C08533A2C0F8E039A4C5EB9 /* libRNImageCropPicker.a */, - 15912309AA610251329D74FA111DE5CA /* libRNLocalize.a */, - C777CF2FB1E39A45CBBDB54E8693F471 /* libRNReanimated.a */, - E496A53A92B4E464B5C30DC5B1E4E257 /* libRNRootView.a */, - 50B5347C9A6E93B7D4CFC3673BA6FB7E /* libRNScreens.a */, - BFCE4058442BFB8DEB89BA3F261A76BA /* libRNUserDefaults.a */, - 8998273719FDD789E6F9C7541AFD0B33 /* libRNVectorIcons.a */, - 580712ADE0DDE9601ED35B000EC802D6 /* libRSKImageCropper.a */, - B0B214D775196BA7CA8E17E53048A493 /* libSDWebImage.a */, - FCF61D9B2B75054A9A3185DDC609B7FF /* libSDWebImageWebPCoder.a */, - 85A01882ED06DFEA2E0CE78BCDB204A7 /* libSocketRocket.a */, - AF72FD600DE7E2D330BA50F877993E05 /* libUMCore.a */, - 3B640835BAA914DD267B5E780D8CFEC7 /* libUMReactNativeAdapter.a */, - 65D0A19C165FA1126B1360680FE6DB12 /* libYoga.a */, - 3DCCC9C42EB3E07CFD81800EC8A2515D /* QBImagePicker.bundle */, + 9A76809DA7D78BAE869117295B8DAD87 /* DevSupport */, + 31B80F92F3D17108BB7002557795AE60 /* Inspector */, ); - name = Products; + name = DevSupport; sourceTree = ""; }; - 04EC42867F4051B3449799D9980981BC /* CxxBridge */ = { + 046B0642F1A1B44FAED06EE9A48F8E13 /* Support Files */ = { isa = PBXGroup; children = ( - 9E2130E471529F403B268FD0D5717250 /* JSCExecutorFactory.h */, - C585D0C0783603E2C7D37BCB426D1971 /* JSCExecutorFactory.mm */, - 50D33B55BBF94FA2C02E25F302E01D1C /* NSDataBigString.h */, - AE31F865C9AEFEB1EBA0418010F744A5 /* NSDataBigString.mm */, - 2964A875804DB408D6BC6915AC9AEB8B /* RCTCxxBridge.mm */, - C1112B2DDBBB87AABF45247247DA931F /* RCTCxxBridgeDelegate.h */, - 6DDEE36481C60BAD50A38AAAA55A85A5 /* RCTMessageThread.h */, - 625DD3142FE45CA4B97195CE5728C80B /* RCTMessageThread.mm */, - 8FAF8FD987784D3CD7130ABD88030E18 /* RCTObjcExecutor.h */, - 58447C2D64026B5107DD7F36B06C84F6 /* RCTObjcExecutor.mm */, + A6026F4325389EE05BF49376F2C6AC1F /* EXAppLoaderProvider.xcconfig */, + CBE74C01DFA15ACD28E7926C36C4F0F4 /* EXAppLoaderProvider-dummy.m */, + 8E31A6B81DDCDCE340A0C39D6BB1401A /* EXAppLoaderProvider-prefix.pch */, ); - name = CxxBridge; - path = React/CxxBridge; + name = "Support Files"; + path = "../../../ios/Pods/Target Support Files/EXAppLoaderProvider"; sourceTree = ""; }; - 067DEF7CA2F60DB31878809251A125CA /* Resources */ = { + 04E65EE8944D658E0B9EED1DE60483F3 /* Support Files */ = { isa = PBXGroup; children = ( - 1C17C6DA60BE10DF74347646322D930C /* AntDesign.ttf */, - 666A7F71C5417708B15203FD9CA45EE1 /* Entypo.ttf */, - 420EF2A13C4AC4D4744C1D40CCDA9DCC /* EvilIcons.ttf */, - 39B388442F0969FBDAADF1FF5C0BFDFC /* Feather.ttf */, - 92EC1FEF018758B136B2165819C574F0 /* FontAwesome.ttf */, - 921B1B6B15E65FA19BCBD7605358CF85 /* FontAwesome5_Brands.ttf */, - 4B5AD4C09486D6E14B93F11CB59BE224 /* FontAwesome5_Regular.ttf */, - 14E45A7096AAFC9F9E9D0FE35C14654B /* FontAwesome5_Solid.ttf */, - C008E1A6674DB96C41FD47D7AC4BA3CB /* Fontisto.ttf */, - A1ACC3FD8D64CE7DC825F41BAEDE8DEA /* Foundation.ttf */, - 5045A8141BFFF3ECEAB843511A69EA5A /* Ionicons.ttf */, - 34FC437454CBB9E8FB9A9B93FE086ABE /* MaterialCommunityIcons.ttf */, - 13A51ABCE5742FF133D096D77C36DDDB /* MaterialIcons.ttf */, - F75AE064E501D9BA25FAD02AF42C7BB1 /* Octicons.ttf */, - 7C8E6D93607F72E13CDAF077D9FF158E /* SimpleLineIcons.ttf */, - 0F5997A4901A1634A198FB4158C8253D /* Zocial.ttf */, + 69FA7C8169224D40DAA35E1DAC8FAF5B /* react-native-orientation-locker.xcconfig */, + 6D2763003E8CCA2E51AFD45211947284 /* react-native-orientation-locker-dummy.m */, + 0D890CE3F924C1940BAC96B4007D68F5 /* react-native-orientation-locker-prefix.pch */, ); - name = Resources; + name = "Support Files"; + path = "../../ios/Pods/Target Support Files/react-native-orientation-locker"; sourceTree = ""; }; - 06FCFB4E6C7A47D9C15473083F0952B5 /* RNDateTimePicker */ = { + 0578A868CF9797FCBE2ADC9045C854B5 /* Pod */ = { isa = PBXGroup; children = ( - 0046B30F885A1A0AC9AFF1616909513E /* RNDateTimePicker.h */, - 742CD800500758D4594804D6A9BD6C26 /* RNDateTimePicker.m */, - 44753D403C3ABDFAE77633E32B6B056D /* RNDateTimePickerManager.h */, - 11D08E4A9BA15CC7A552F6180F7E4D07 /* RNDateTimePickerManager.m */, - B2A831FF7F79F01D13F49C149362C0BA /* Pod */, - 652BA6F32200074DC2A273422E62917B /* Support Files */, - ); - name = RNDateTimePicker; - path = "../../node_modules/@react-native-community/datetimepicker"; - sourceTree = ""; - }; - 06FF9DB38394716ACD99B42A980EB19A /* Pod */ = { - isa = PBXGroup; - children = ( - A873589A9A4048DE5A1E4F5FFD417951 /* React-jsiexecutor.podspec */, + 721BA4EE83EB340B197C62BF7B548E36 /* LICENSE */, + 13D4A757D374EB94C239E80E850E4712 /* react-native-webview.podspec */, + 9549C802432C554FBD2B4F409C09B17E /* README.md */, ); name = Pod; sourceTree = ""; }; - 084F18462707434E11AA191D4D544DAA /* firestore */ = { + 07F280B9F18DF4FF30E0A71CD433450C /* Support Files */ = { isa = PBXGroup; children = ( - 0C83F709BB2D0860B2921F9FDFBC4220 /* RNFirebaseFirestore.h */, - 8DF301DB1050DE2FF5B6175BD96B779B /* RNFirebaseFirestore.m */, - 2B17117BBA0FA32F7166B9FEAF823C1B /* RNFirebaseFirestoreCollectionReference.h */, - 5F5E3B9A3BFEA3E55CEDD3F30F0C8B63 /* RNFirebaseFirestoreCollectionReference.m */, - 02EF78E7DCBF02EDF3AE8C96BA83811D /* RNFirebaseFirestoreDocumentReference.h */, - 739DF972DF173022E45FEDC9704EC4DC /* RNFirebaseFirestoreDocumentReference.m */, - ); - name = firestore; - path = RNFirebase/firestore; - sourceTree = ""; - }; - 089563BEB6E33AD22D4D724B10371301 /* fabric */ = { - isa = PBXGroup; - children = ( - 62438FD52A8DC00C77AD9B479ACEC87C /* crashlytics */, - ); - name = fabric; - path = RNFirebase/fabric; - sourceTree = ""; - }; - 08BB031C2A285BE9CA8D745A0A9628DE /* UMFaceDetectorInterface */ = { - isa = PBXGroup; - children = ( - CDFFD1EB35C7E5BB3110A29A1825464E /* UMFaceDetectorManager.h */, - 790BF37E8DCA4A70465007F505BC0CD3 /* UMFaceDetectorManagerProvider.h */, - CA27C9F47AA75330157DD0F1FD703E16 /* Pod */, - 2FE5455556F3ED539953E985A4638D2F /* Support Files */, - ); - name = UMFaceDetectorInterface; - path = "../../node_modules/unimodules-face-detector-interface/ios"; - sourceTree = ""; - }; - 08CE3DA1A4FB807106FA238304FC603C /* ReactNativeART */ = { - isa = PBXGroup; - children = ( - 4223604BB31C3DBC8164425EA2AC9895 /* ARTCGFloatArray.h */, - 8BAC9B9C975D08964BA4AF902A46B471 /* ARTContainer.h */, - AB31DE33FE9D6E90D24D14B2069D4B61 /* ARTGroup.h */, - 38C9CAB167C3A105C83931874B177D67 /* ARTGroup.m */, - 79F474346C43F93D7D10AF94FA30C332 /* ARTNode.h */, - 4ECD8FB8DE9B1A1C9296584DB3ECA5B1 /* ARTNode.m */, - 0B99EF89588E39AEB8D0B3013E373B86 /* ARTRenderable.h */, - 76B5651EA6DE6613FE7E753B399C8BEE /* ARTRenderable.m */, - 106AF01BC69D72B6002781D8A758CBB9 /* ARTShape.h */, - D48BCF842FABD776150BAA9BB4A4E2EB /* ARTShape.m */, - 6ECFC60A45F1703154D991BEA5BA1344 /* ARTSurfaceView.h */, - 836FF39CC12A344494AEC01E9A856DEA /* ARTSurfaceView.m */, - 024D1505352512990079B9D8899E5BD7 /* ARTText.h */, - 2697ECF4E2B34B6E3473910148017B33 /* ARTText.m */, - 5AA9AAE62BCA1EB60DEE9F7AB174DA07 /* ARTTextFrame.h */, - A981A7D532F8B1CD877B991FF98460E9 /* RCTConvert+ART.h */, - E656B94125EA7E643C7FA16DDE45DE1D /* RCTConvert+ART.m */, - 9CE7A0F8D922BC5DF74C9454DBED5336 /* Brushes */, - 32A40E5B8F107DC4F3773808AE0A4826 /* Pod */, - D57B794B29AAA4C4672E8E770FAD803B /* Support Files */, - 5239DFE8BFB1D8C29EFC0E44ED6310AF /* ViewManagers */, - ); - name = ReactNativeART; - path = "../../node_modules/@react-native-community/art"; - sourceTree = ""; - }; - 09B552789E3A51CB0EEB21648957838C /* Nodes */ = { - isa = PBXGroup; - children = ( - BD948116D2FBD3DD544C55A03AD2D163 /* RCTAdditionAnimatedNode.h */, - CFD89BDD36EFFB95791A0D1BDEE26AF1 /* RCTAnimatedNode.h */, - 1005BB3173B8FDA44E6FD8B761F5DD63 /* RCTDiffClampAnimatedNode.h */, - 4158383322F0996F912D9F1008500D78 /* RCTDivisionAnimatedNode.h */, - 515ED9D73A60909FF8CAB05A5F739EBE /* RCTInterpolationAnimatedNode.h */, - 49E9FA0CAC29D7D243E9B6AD3C3F1AFC /* RCTModuloAnimatedNode.h */, - C48AC7790D744C6FC6360C37EB6F9950 /* RCTMultiplicationAnimatedNode.h */, - 1DCA1DFD8A5758EDBE5164D779B23221 /* RCTPropsAnimatedNode.h */, - 465BEDE78B0DADB6C8C5AF9A2C503464 /* RCTStyleAnimatedNode.h */, - A3736C82FCC63550F526FFA30B72A94D /* RCTSubtractionAnimatedNode.h */, - 9E5E29BC8A0F08A228A3013929100A89 /* RCTTrackingAnimatedNode.h */, - 3C32DE0B3B6C459E1AD9C72200BAB56C /* RCTTransformAnimatedNode.h */, - D299EB579C6FDA2EAF70C40BEDB65683 /* RCTValueAnimatedNode.h */, - ); - name = Nodes; - path = Libraries/NativeAnimation/Nodes; - sourceTree = ""; - }; - 09BF169B7821BAD1EB7F238CDC0749BD /* Services */ = { - isa = PBXGroup; - children = ( - DEF1E6D4085ECAEDC5C63726D34480F6 /* UMReactFontManager.h */, - 76AB9524CEC8C7CB522460DD471D2306 /* UMReactFontManager.m */, - 697F784E78B71245476692F3D390DF5C /* UMReactLogHandler.h */, - A1E8041757FCCA6D26A29DA6A83B478C /* UMReactLogHandler.m */, - 311BD31044EA36C407E4B911BE3314CE /* UMReactNativeAdapter.h */, - D7D0FEC06BDFBB5ABB28EF8174082B9B /* UMReactNativeAdapter.m */, - 6D00718F193B816B9AEC873D72D440AC /* UMReactNativeEventEmitter.h */, - 57279FEEFA03EE0D3FBF36AB7C24566D /* UMReactNativeEventEmitter.m */, - ); - name = Services; - path = UMReactNativeAdapter/Services; - sourceTree = ""; - }; - 0A3E3B2D1229ED6BF7A9ED5F49CBDF90 /* EXAV */ = { - isa = PBXGroup; - children = ( - 684C8059776AB8F2E7E35EE179FB8EA7 /* EXAudioSessionManager.h */, - 5F421E4F57D9A4433BF1EFFAB8A86727 /* EXAudioSessionManager.m */, - 8D0D9C59BE0CBF118DB6D61BD6D32266 /* EXAV.h */, - 8567D98C1156641848CB1C85449D720D /* EXAV.m */, - CD7A83EF812ADF87E10F39C6C68C64E1 /* EXAVObject.h */, - 3494CD0839E949CDB414695323700978 /* EXAVPlayerData.h */, - 0D643F3C2F2AE34AF4787C133ECECE47 /* EXAVPlayerData.m */, - B287B53B0FA97757F5ECDA262EE6AFE1 /* Pod */, - 61D3BB202F9F2BDCAFBE155AC096884D /* Support Files */, - 5EAC90720219E2EEA89DF954A2CD9E64 /* Video */, - ); - name = EXAV; - path = "../../node_modules/expo-av/ios"; - sourceTree = ""; - }; - 0A703E82B23E2D9CA00808ED678F6129 /* Support Files */ = { - isa = PBXGroup; - children = ( - E4617DB69DFADFBDA0782817F33AAF2A /* RNVectorIcons.xcconfig */, - A1050F11CBCC5A08C0F9B6D02F0AED86 /* RNVectorIcons-dummy.m */, - AA71B11D21A5E8F663D6182CCE0AE713 /* RNVectorIcons-prefix.pch */, + A988EFB2A8550B357201230846EBC292 /* react-native-notifications.xcconfig */, + 5831FD0948D56E91F7E3CA9691E165A9 /* react-native-notifications-dummy.m */, + 7F0F532B3297A42FF404A00844692830 /* react-native-notifications-prefix.pch */, ); name = "Support Files"; - path = "../../ios/Pods/Target Support Files/RNVectorIcons"; + path = "../../ios/Pods/Target Support Files/react-native-notifications"; + sourceTree = ""; + }; + 09C78E45DD2DE14269159E424E18690B /* Support Files */ = { + isa = PBXGroup; + children = ( + A6B61E11092D997709ECB60B44D7DBB8 /* EXConstants.xcconfig */, + 4EB1D78F58F2AC22BAFBEA75562D26E7 /* EXConstants-dummy.m */, + 3D270A0DDE5C9F3BF6AE0A1E8AFF2488 /* EXConstants-prefix.pch */, + ); + name = "Support Files"; + path = "../../../ios/Pods/Target Support Files/EXConstants"; + sourceTree = ""; + }; + 0A63D52BC0C61DC2BE1D8F03265B5446 /* Pod */ = { + isa = PBXGroup; + children = ( + 113BEECB9A84D6F4BE3FF2159398BFDA /* RCTRequired.podspec */, + ); + name = Pod; + sourceTree = ""; + }; + 0A6BD3C9856260FA74354F2F56B9423B /* ReactCommon */ = { + isa = PBXGroup; + children = ( + 4CCE6109F5F629EE850798BD1B3231DA /* jscallinvoker */, + BD6DC41F71E6CFD88381DD40FDFC450D /* Support Files */, + F7477D63FAB664FDF818AD0633DB51A0 /* turbomodule */, + ); + name = ReactCommon; + path = "../../node_modules/react-native/ReactCommon"; + sourceTree = ""; + }; + 0B0622395864D6F3809BD4ADA33F75AB /* Support Files */ = { + isa = PBXGroup; + children = ( + 0C8759B3CC9AE7915986FEE88C9DB0B9 /* RCTRequired.xcconfig */, + ); + name = "Support Files"; + path = "../../../../ios/Pods/Target Support Files/RCTRequired"; sourceTree = ""; }; 0B306EB60859A04AF7CB557F7C204072 /* nanopb */ = { @@ -7710,34 +7525,66 @@ path = nanopb; sourceTree = ""; }; - 0D07F97C3B2EADD3B217201AFA9D5C32 /* Support Files */ = { + 0B843C69A8928C223ACC237D78C00079 /* Protocols */ = { isa = PBXGroup; children = ( - EC868B423877FDBD1EDFB7F7D37849F7 /* React-CoreModules.xcconfig */, - 5DC7EB6128BE6052BA7AA5A73096E957 /* React-CoreModules-dummy.m */, - 099476CFEBC4B803BD2735285840C6A1 /* React-CoreModules-prefix.pch */, + D2FD13AE085185F0B4F9B37CDB3F6815 /* UMAppLifecycleListener.h */, + C675EB4DA741116915944B05F9947C8E /* UMAppLifecycleService.h */, + 7D4F40EF76DFB87B2423EBC0918751CA /* UMEventEmitter.h */, + 99BA76DC5026C5A6F9A2550C28426BC0 /* UMEventEmitterService.h */, + E1DE1AC0868BE4AD630B10A72EB3F913 /* UMInternalModule.h */, + 22149EAF70CC1E264BA0C19002B87DF4 /* UMJavaScriptContextProvider.h */, + E9EA6346C6605662C93E5B082E3087D5 /* UMKernelService.h */, + 2BA63D57696D7E687EC2FA4516202830 /* UMLogHandler.h */, + 1E6C1E5398309582A4E2B5A4F44C4D67 /* UMModuleRegistryConsumer.h */, + EDC7EA665F9A2FC5A4374096CA11168C /* UMUIManager.h */, + B70C656C30A9978DF60302DE8BC606CD /* UMUtilitiesInterface.h */, ); - name = "Support Files"; - path = "../../../../ios/Pods/Target Support Files/React-CoreModules"; + name = Protocols; + path = UMCore/Protocols; sourceTree = ""; }; - 0D6816E51740ADE85638C67D7979D64F /* RCTVibrationHeaders */ = { + 0C95A1F5DB83E0E52D64A8A2D9C1B513 /* Pod */ = { isa = PBXGroup; children = ( - 20FA65E7173DBF053E94AD89C00B5142 /* RCTVibration.h */, + E7EED3632129013E7AA6053DF58BB4EB /* EXAV.podspec */, ); - name = RCTVibrationHeaders; + name = Pod; sourceTree = ""; }; - 0DAEAA6DCEA5F91B196B35744BCFCF4A /* Support Files */ = { + 0CA2CF31901B8EC4195872D775F0D2DF /* KeyCommands */ = { isa = PBXGroup; children = ( - BBD1F216127024D2D5EC07E43AD1785B /* EXWebBrowser.xcconfig */, - A688ECDA59560C727A18D9A9EC838A62 /* EXWebBrowser-dummy.m */, - 512296677BE7CC8C8178D08B4ED5FFDC /* EXWebBrowser-prefix.pch */, + E32A3DAAA429A80F2BF6D523F06F9CC7 /* RCTKeyCommandConstants.h */, + 44C26B1AF5555BF7DFE92192559B92E8 /* RCTKeyCommandConstants.m */, + D0DA39416131DDA6FD113AED143C09D7 /* RCTKeyCommandsManager.h */, + DD9ADDBF10393421028491EB2CC23D3A /* RCTKeyCommandsManager.m */, + 85DD2155FBBC2B13F610F1CDBB02619F /* Pod */, + BE1477E76A9CF17AD3F4575CFD479D26 /* Support Files */, + ); + name = KeyCommands; + path = "../../node_modules/react-native-keycommands"; + sourceTree = ""; + }; + 0E3C8CCEE29DBA6A366DFBEDBF4B804A /* CxxUtils */ = { + isa = PBXGroup; + children = ( + 56855D62431167073423C3E4343CCFEE /* RCTFollyConvert.h */, + B47D76B4CD8715A14EE59913C8DEBA9E /* RCTFollyConvert.mm */, + ); + name = CxxUtils; + path = React/CxxUtils; + sourceTree = ""; + }; + 0E5ECEF2645A798F63D107C4C2FFE89A /* Support Files */ = { + isa = PBXGroup; + children = ( + 25546CFF0549B75468718408D326CECE /* rn-fetch-blob.xcconfig */, + 7869A461BD6132F04E28CDA4F8DA98A5 /* rn-fetch-blob-dummy.m */, + 22EAB66614F49CF38DB545C6C8B7941E /* rn-fetch-blob-prefix.pch */, ); name = "Support Files"; - path = "../../../ios/Pods/Target Support Files/EXWebBrowser"; + path = "../../ios/Pods/Target Support Files/rn-fetch-blob"; sourceTree = ""; }; 0EB22BBFAB12DE43BF0B817235CAED5A /* GoogleDataTransport */ = { @@ -7792,6 +7639,80 @@ path = GoogleDataTransport; sourceTree = ""; }; + 0EF067A6AEA5F0B058794B5E798E9C97 /* Support Files */ = { + isa = PBXGroup; + children = ( + 99AF4DFDE2ABD62C27EAF18027F31333 /* BugsnagReactNative.xcconfig */, + B0A9A6EFD153CBF12ACA4453003585B6 /* BugsnagReactNative-dummy.m */, + 3CC4BDA3A400FB4E6358566A70D25BB1 /* BugsnagReactNative-prefix.pch */, + ); + name = "Support Files"; + path = "../../ios/Pods/Target Support Files/BugsnagReactNative"; + sourceTree = ""; + }; + 0FECB755C23003677B90A8568401F563 /* Support Files */ = { + isa = PBXGroup; + children = ( + 6A9C542B51663967CB6AE75E477BEEC0 /* RNBootSplash.xcconfig */, + DA46BDECFBF0757C612C2E9AE49CB34F /* RNBootSplash-dummy.m */, + 3302E2B631B54F490607586F09010046 /* RNBootSplash-prefix.pch */, + ); + name = "Support Files"; + path = "../../ios/Pods/Target Support Files/RNBootSplash"; + sourceTree = ""; + }; + 10548F7F601DB24ED0033D90F1759FDC /* Modules */ = { + isa = PBXGroup; + children = ( + DA6F1053894D5E42F7EF24340A881C1F /* RCTAccessibilityManager.h */, + A4FFFF283C6757F72857BBF4B3992490 /* RCTAccessibilityManager.m */, + 2183604D689CFF2ACE1CEEFF60B3A2D3 /* RCTAlertManager.h */, + D8AB6C8DC931DE9A770BB12FFE47E751 /* RCTAlertManager.m */, + 5C27280A6BD823FE48C7BA606E831914 /* RCTAppState.h */, + 08785549EF25E1D47BD6FF4EB6DA3892 /* RCTAppState.m */, + A333C1FD0CBA0F0ACBC0EE1853F50D2E /* RCTAsyncLocalStorage.h */, + 3B4F65145F6E794BAB60F60F08197DE2 /* RCTAsyncLocalStorage.m */, + C36CA7C300DA70AC17561FBDC09EF3A1 /* RCTClipboard.h */, + BF17B5C378BF4E3EAB078D3DFAD3B372 /* RCTClipboard.m */, + 0B34C148473052547D211F4B4E03700F /* RCTDeviceInfo.h */, + 158AB63A4F769D06A1F3E7CF24957D83 /* RCTDeviceInfo.m */, + 9F56B045F7383F4DDF69AB5032C448A9 /* RCTDevSettings.h */, + A5BC1B430DF5AE6B833ED3A37AF2D9A7 /* RCTDevSettings.mm */, + AA3B60EE0DA2A703449E53DAD24B2D31 /* RCTEventEmitter.h */, + 7A2423EA63851EBA3580D9490B341C4C /* RCTEventEmitter.m */, + 4B8C09B761BB8B1094107916DCB77622 /* RCTI18nManager.h */, + BB0938370789745029F383FA8B6BDAA6 /* RCTI18nManager.m */, + 89D6F65D3CE73D4BDDF44AB18602DB31 /* RCTI18nUtil.h */, + B98B9DFE8DA2F9A4D98992E7B2176DC5 /* RCTI18nUtil.m */, + BF68EA8D3718F8D0710898C64DB8E4EC /* RCTKeyboardObserver.h */, + AB27674CF19F3B5D1FA2D0A9D0E2C2EB /* RCTKeyboardObserver.m */, + C04A0D9CC860F0AD202065275C72FEA7 /* RCTLayoutAnimation.h */, + 115CC108AEDECF85B62AF830AE3EFFF2 /* RCTLayoutAnimation.m */, + 1C34B0DD834FA9E42460088D3ED6C63F /* RCTLayoutAnimationGroup.h */, + F07665624B42E0BA287BFC92427C3E6B /* RCTLayoutAnimationGroup.m */, + C8C16F60CB9E4A0670E5368528E1F528 /* RCTRedBox.h */, + B51F01FE0D0C924D540DCBCCD5CB8503 /* RCTRedBox.m */, + AFC8A9E0CE61A584E470F366996EE5D3 /* RCTRedBoxExtraDataViewController.h */, + 3C88FE8C08401D6F56CC0054F2E1007C /* RCTRedBoxExtraDataViewController.m */, + 59E11B597E23C72030409FFD90845C7A /* RCTSourceCode.h */, + 3CE11C19C75D48A2A6E101F06C1ABC38 /* RCTSourceCode.m */, + FD88CEF1B990010FAFE6E6255571C188 /* RCTStatusBarManager.h */, + 8D5FBC4B31621BBAFF7F3339A7DA318F /* RCTStatusBarManager.m */, + 4FC7CFFB023F10AE363402A0225FD479 /* RCTSurfacePresenterStub.h */, + B7BB23C4ABDF2081AD8A80B64267DE95 /* RCTSurfacePresenterStub.m */, + 4C683A7AD58854CE9F9A0C58669E2925 /* RCTTiming.h */, + 4BD96B9E416EC595DA0024B3572F9902 /* RCTTiming.m */, + 8D40FF2BA9B31FB8FB3E32C2ACAACF2C /* RCTUIManager.h */, + 6604636E857C6DB4F65CDD7529C29621 /* RCTUIManager.m */, + EB950C9618F6211B7FE91302533A1C91 /* RCTUIManagerObserverCoordinator.h */, + 703A3630970263830B7E7C356A213B02 /* RCTUIManagerObserverCoordinator.mm */, + 8A5CB591EF54070343DA7ECA0BB53DB9 /* RCTUIManagerUtils.h */, + 413874B890B6E9A85B52911EBD65AF85 /* RCTUIManagerUtils.m */, + ); + name = Modules; + path = React/Modules; + sourceTree = ""; + }; 10D07FABCF69DD0EE97B5E881DE54D1F /* Environment */ = { isa = PBXGroup; children = ( @@ -7805,6 +7726,16 @@ name = Environment; sourceTree = ""; }; + 11094D1662D92E580236C8EF33E03B81 /* Pod */ = { + isa = PBXGroup; + children = ( + 8A5FA8D27FAC96EB49C2BA4FCD400BB1 /* LICENSE */, + CCD293FA0EAEF58D6E0D1A4661E49E02 /* README.md */, + E296D08D38DBBD15E71FA7415A2F7842 /* RNAudio.podspec */, + ); + name = Pod; + sourceTree = ""; + }; 113FAA400B44B384ACD031204F85F5A4 /* Support Files */ = { isa = PBXGroup; children = ( @@ -7815,14 +7746,20 @@ path = "../Target Support Files/PromisesObjC"; sourceTree = ""; }; - 118DD85C31D40C3A854FE862B669F3F8 /* Security */ = { + 11A7B9E3AD21CEA9FC214A4BF21E2CB0 /* LNInterpolation */ = { isa = PBXGroup; children = ( - D9FFF0DDA092D68ED00FA2A01676FA09 /* SRPinningSecurityPolicy.h */, - FCBB8E3B6FC94A6A7940D8898AC91B16 /* SRPinningSecurityPolicy.m */, + E661B542D47AB857234C271BBFDC2938 /* Color+Interpolation.h */, + 1B3D2651BD7200B68EF1D5F78CD17540 /* Color+Interpolation.m */, + 596340A74BAAF58C81534D0AD98EA482 /* LNAnimator.h */, + 2FA9D9405A01F7572D48EA2326166D64 /* LNAnimator.m */, + 4355E7B43141D819D523969BEB21E010 /* LNInterpolable.h */, + 4D7840B54937455A39D0CEBEDCC64E05 /* LNInterpolable.m */, + BA5E09EEA2D2D61AA67D8D74BE2AE978 /* LNInterpolation.h */, + 7AFE840E1045C8967A28B8568B57C019 /* NSValue+Interpolation.h */, ); - name = Security; - path = Security; + name = LNInterpolation; + path = lib/ios/LNInterpolation; sourceTree = ""; }; 11D3F6AF03D8A3626A7FD39925D9BB19 /* webp */ = { @@ -7980,38 +7917,59 @@ name = webp; sourceTree = ""; }; - 14392E3387BDD792B61207058704762F /* Pod */ = { + 1215663C6DC327D7974B4F7ABD76615E /* Support Files */ = { isa = PBXGroup; children = ( - 7C6B7609643CEE2C7693A86610ACF888 /* LICENSE */, - 154A342A29F4E76888C1DDF8A0397BAE /* README.md */, - 2D7684489BB16387B098D701CF6C60ED /* SocketRocket.podspec */, - ); - name = Pod; - sourceTree = ""; - }; - 146F78884D077069196C24BFA97D64BB /* Support Files */ = { - isa = PBXGroup; - children = ( - E6CE01C14A3CBB783965DD126287D8D8 /* RNFastImage.xcconfig */, - CBFCB93D8C224182152D433040D7B1CE /* RNFastImage-dummy.m */, - 2182CF13B7F357FB4C7E9DF5C350CE31 /* RNFastImage-prefix.pch */, + D8769C70C86B65DF6E21276A1A22C134 /* RNFastImage.xcconfig */, + 448EE0F13FAFFF4797D06C4E6784737B /* RNFastImage-dummy.m */, + 750DD532C8AE4CEEA27C7E2878D44B91 /* RNFastImage-prefix.pch */, ); name = "Support Files"; path = "../../ios/Pods/Target Support Files/RNFastImage"; sourceTree = ""; }; - 14DDF94A2093E12C2BB0F21C396367B7 /* RCTNetworkHeaders */ = { + 13B1CF27207684E58511B7E0CEE4ACFE /* Support Files */ = { isa = PBXGroup; children = ( - BE1C92AB0C7F29A4F507C41ECB899B9B /* RCTDataRequestHandler.h */, - 7545290814D33E29EB6A3B14B9EEA817 /* RCTFileRequestHandler.h */, - E9D756AB7170118C11C43213A71DD36A /* RCTHTTPRequestHandler.h */, - C11E28228FF84EF339353D067E2B5C67 /* RCTNetInfo.h */, - 16D4AE3113FBACF99CF67759074AFDD6 /* RCTNetworking.h */, - CD94E261EB58A9E366B55161C8BADBE7 /* RCTNetworkTask.h */, + 23699EF9ED482A234477FD3CC00DAFAA /* React-RCTVibration.xcconfig */, + 8E46827A66AC7B8EF1A87F22E7A2A6A4 /* React-RCTVibration-dummy.m */, + 99A8E222EFEA001C6D7351280E42D58B /* React-RCTVibration-prefix.pch */, ); - name = RCTNetworkHeaders; + name = "Support Files"; + path = "../../../../ios/Pods/Target Support Files/React-RCTVibration"; + sourceTree = ""; + }; + 14314ED9A648F74ED7DD3C018B93C14F /* Nodes */ = { + isa = PBXGroup; + children = ( + 1E3F1F2550D5459BD9AC9C316821612E /* RCTAdditionAnimatedNode.h */, + 9A8D3E5BBBD8684107593E5F4D30283C /* RCTAnimatedNode.h */, + BEE98970FA96D086DC9401F7D6CCA1F6 /* RCTDiffClampAnimatedNode.h */, + 84C4B68701663B819E5E5E67BCAC43CD /* RCTDivisionAnimatedNode.h */, + AE209A393FF8A2720977A905B28D1841 /* RCTInterpolationAnimatedNode.h */, + F840BF6836B68BC2F0B39D0962A217A7 /* RCTModuloAnimatedNode.h */, + B349DD5435D1EB19753961274872B199 /* RCTMultiplicationAnimatedNode.h */, + B55F3AF8966AB2CDAD8D0F804DBB48B8 /* RCTPropsAnimatedNode.h */, + 34976D1F0EB553F6DED4F7314D387F99 /* RCTStyleAnimatedNode.h */, + B1D6CE1BAD3DB06B35DBDF02ACC71D40 /* RCTSubtractionAnimatedNode.h */, + D7794F9473569D9DBA4A12E7B350CE6B /* RCTTrackingAnimatedNode.h */, + 01F3DCCBAF4F375B15B6C53ED8AFED57 /* RCTTransformAnimatedNode.h */, + 426D44B7D569B4438F6DB50DF39C1B43 /* RCTValueAnimatedNode.h */, + ); + name = Nodes; + path = Libraries/NativeAnimation/Nodes; + sourceTree = ""; + }; + 1458150F395F35F31A0A64CBF73E9952 /* rn-extensions-share */ = { + isa = PBXGroup; + children = ( + 7A47CD394AF66313A739E2111BCD7D5E /* ReactNativeShareExtension.h */, + F965AA1FCBC69910B283F71994FA5C7B /* ReactNativeShareExtension.m */, + 166134F25B3F8C48F19002001901638A /* Pod */, + DE9335ABBE9EC872EC4DD5F93AB14941 /* Support Files */, + ); + name = "rn-extensions-share"; + path = "../../node_modules/rn-extensions-share"; sourceTree = ""; }; 15A7F9318FA0157E39897677596C6638 /* Frameworks */ = { @@ -8023,59 +7981,73 @@ name = Frameworks; sourceTree = ""; }; - 16CD6EEC6D1DC335C55C2BFE8CE2146B /* Support Files */ = { + 15EEFDE7526576565A8D73DE40F6C79C /* RNLocalize */ = { isa = PBXGroup; children = ( - 39668E5BE34343D5B35086F2764604FB /* EXAppLoaderProvider.xcconfig */, - 17746BD41A3351FD6FDE3B8F9BBD4C68 /* EXAppLoaderProvider-dummy.m */, - 647AA6F94D105A62C7E3B52AF0C309ED /* EXAppLoaderProvider-prefix.pch */, + 1FE97021ECAFB4B3D7131C2439FD365A /* RNLocalize.h */, + E29E92983AF31E9A27DB7AB82F1077D2 /* RNLocalize.m */, + 9528386EB5CFF3641D75CBBCC4F726A1 /* Pod */, + E7DBD9CBF4E85D5EEFC9B6A0C9E10C02 /* Support Files */, ); - name = "Support Files"; - path = "../../../ios/Pods/Target Support Files/EXAppLoaderProvider"; + name = RNLocalize; + path = "../../node_modules/react-native-localize"; sourceTree = ""; }; - 16DC7B157D97586F0D8DD337A5B56C10 /* Support Files */ = { + 163F853125B01AD9520016DA75EE07FB /* react-native-webview */ = { isa = PBXGroup; children = ( - 79A5C32FF86A7E02BD42FA055AFDB39B /* React-RCTActionSheet.xcconfig */, - 119D3C6BF56514923BC5216016DDD651 /* React-RCTActionSheet-dummy.m */, - 0D3E57938940940A46C88270F28BF7FA /* React-RCTActionSheet-prefix.pch */, + C980CD0C14BCDCF7A1A63E4A0702E677 /* RNCWebView.h */, + 124C19D7E3F7653C367911A081BA9B58 /* RNCWebView.m */, + 421FF329D93C28FFC05114FD913D8640 /* RNCWebViewManager.h */, + 1074444495BF746087735B3410FCF659 /* RNCWebViewManager.m */, + 18BA23CCE2E4009C79ADFF14DEF6AEC5 /* RNCWKProcessPoolManager.h */, + 5FB4E429709FEA44E83F39CF06BFD8B7 /* RNCWKProcessPoolManager.m */, + 0578A868CF9797FCBE2ADC9045C854B5 /* Pod */, + A16895416AA887282E2E90A7FF1DCC6F /* Support Files */, ); - name = "Support Files"; - path = "../../../../ios/Pods/Target Support Files/React-RCTActionSheet"; + name = "react-native-webview"; + path = "../../node_modules/react-native-webview"; sourceTree = ""; }; - 16FD55028A6D1E14608969F18D1DF980 /* Support Files */ = { + 166134F25B3F8C48F19002001901638A /* Pod */ = { isa = PBXGroup; children = ( - F3E173A7456214290C4B559AFC03ED23 /* RNScreens.xcconfig */, - CF3ABE487ACB39B2F06050C40519366F /* RNScreens-dummy.m */, - 5719D17F58C0C57C15D3199D73EF94A4 /* RNScreens-prefix.pch */, + 900D8F4B2B74F84E9D88168B660E69D5 /* LICENSE */, + 1B3367FDEB6842D6C08B09D6F704CBBF /* README.md */, + F094AD18405C5F3E737EC791D71099C4 /* rn-extensions-share.podspec */, ); - name = "Support Files"; - path = "../../ios/Pods/Target Support Files/RNScreens"; + name = Pod; sourceTree = ""; }; - 1782748847A2D62EFCEE88548ED95A51 /* Support Files */ = { + 16BD1080D3E0B76978C5D5E6DCE9ED04 /* KSCrash */ = { isa = PBXGroup; children = ( - AB39927EBB85CB037E90FA21E4258141 /* react-native-background-timer.xcconfig */, - B561081BA9CB53D078948C04A06AED0D /* react-native-background-timer-dummy.m */, - 33722450044BDFC3ABA98AE32BD91D44 /* react-native-background-timer-prefix.pch */, + 7C457E40CC0A5AB06B90C02300B64F07 /* Source */, ); - name = "Support Files"; - path = "../../ios/Pods/Target Support Files/react-native-background-timer"; + name = KSCrash; + path = KSCrash; sourceTree = ""; }; - 17B0DFEBDADA98C8CE07F373D15E6854 /* Multiline */ = { + 16BD15A4F2889B2E309F3B5C8A52139A /* Support Files */ = { isa = PBXGroup; children = ( - E784B19297EB6761608ABFBEE69FE8D2 /* RCTMultilineTextInputView.m */, - D0F09ED87D626E7B4260EDB6A8ACEBD2 /* RCTMultilineTextInputViewManager.m */, - 40E0A99010BC271F69BC538461AEE955 /* RCTUITextView.m */, + 54280E8022DD29F21AA03BFAAE564270 /* Yoga.xcconfig */, + 319A7A9BF1988098566FE61369534C72 /* Yoga-dummy.m */, + F3D120CD496A3EB7DEBCC75B20E5BBB2 /* Yoga-prefix.pch */, ); - name = Multiline; - path = Multiline; + name = "Support Files"; + path = "../../../../ios/Pods/Target Support Files/Yoga"; + sourceTree = ""; + }; + 16E4727370582532EDB60F6A8C4D2432 /* Support Files */ = { + isa = PBXGroup; + children = ( + 4D56494F44DFE819271A6C0586D48903 /* React-Core.xcconfig */, + 933A69C8231D89AE329175EDEB5BE0B2 /* React-Core-dummy.m */, + 0E9BD1CBC9CD59E172AEF359B0F56014 /* React-Core-prefix.pch */, + ); + name = "Support Files"; + path = "../../ios/Pods/Target Support Files/React-Core"; sourceTree = ""; }; 18149080C63A878FBB6D5866B0791E49 /* Support Files */ = { @@ -8087,15 +8059,6 @@ path = "../Target Support Files/Crashlytics"; sourceTree = ""; }; - 1823394230AE0C91DE61BADBE7F2FFF5 /* Support Files */ = { - isa = PBXGroup; - children = ( - DC982BA645E4501054C92207D63A8DEE /* FBLazyVector.xcconfig */, - ); - name = "Support Files"; - path = "../../../../ios/Pods/Target Support Files/FBLazyVector"; - sourceTree = ""; - }; 18597F6C4B50A03F961BD4702AB28CEE /* PromisesObjC */ = { isa = PBXGroup; children = ( @@ -8145,230 +8108,205 @@ path = PromisesObjC; sourceTree = ""; }; - 18E0C9511187BB2D7A59C92FF9BBC52F /* Pod */ = { + 18910C637E49F6B65F4242C967E49450 /* Pod */ = { isa = PBXGroup; children = ( - E3F2FC29EDBEBE055A4223FBAE67BAFB /* react-native-slider.podspec */, + 9A5960405F9D7518E1A2F0362AA7F19A /* UMReactNativeAdapter.podspec */, ); name = Pod; sourceTree = ""; }; - 190000440D2B2F78E8E8629574D46D78 /* React-jsinspector */ = { + 196D13383AC66C4AB4BDAD0F915689AB /* Nodes */ = { isa = PBXGroup; children = ( - D0CDF372B79B19534402289628E4608E /* InspectorInterfaces.cpp */, - E2E5B8EAFD3F11EAA410A4BE4C4A6DFF /* InspectorInterfaces.h */, - DAA5C731969A00F8B0F42DD4BF35E553 /* Pod */, - 61425E8AB58C88614EEA60467AB99F6C /* Support Files */, - ); - name = "React-jsinspector"; - path = "../../node_modules/react-native/ReactCommon/jsinspector"; - sourceTree = ""; - }; - 195CCD91184884421200DA513FE12888 /* Pod */ = { - isa = PBXGroup; - children = ( - 84DADC94AACC5A4C7077269740FB97B3 /* README.md */, - 9A7D6A73E5DA89C445ABE9F2101C73BC /* RNRootView.podspec */, - ); - name = Pod; - sourceTree = ""; - }; - 1963341D3748186AB44079E8070C7E13 /* Pod */ = { - isa = PBXGroup; - children = ( - D17E584D3DC8DAF5C97C33F3CE5B8AD2 /* UMImageLoaderInterface.podspec */, - ); - name = Pod; - sourceTree = ""; - }; - 19DBDC98B1E75E1D929F706DDE7194BF /* Recording */ = { - isa = PBXGroup; - children = ( - A205548659AB855F56F731B50745BD2D /* BSG_KSCrash.h */, - 0A4AE1571D783FDB388F937262F77CB3 /* BSG_KSCrash.m */, - AAAFB23246600310DB407DC0C43DF033 /* BSG_KSCrashAdvanced.h */, - C33FD5BEA3A3CB47664840BF4F156C4D /* BSG_KSCrashC.c */, - 8ACDBE0C58D48D310185794A7355AF4A /* BSG_KSCrashC.h */, - E8B0878E4DE133E2EED49951E7026645 /* BSG_KSCrashContext.h */, - 11B613F8F0813D328CEC721E55136EB2 /* BSG_KSCrashDoctor.h */, - 674D3ED4A35628BAD371C36DA6D4A113 /* BSG_KSCrashDoctor.m */, - 1143F9AA0894C091A8B495D93ED2B112 /* BSG_KSCrashIdentifier.h */, - ADF7B651D03C048B8399FE7FED8881AD /* BSG_KSCrashIdentifier.m */, - EF87158E83AB91F44BDB6C9DB9D56F4F /* BSG_KSCrashReport.c */, - 709C8882F69906A0672BF3CEC304D897 /* BSG_KSCrashReport.h */, - 9CA88B119DDB073FC3D1C7EE47908BE1 /* BSG_KSCrashReportFields.h */, - 3134FBAA99877C4AA59911BA02CDC2EC /* BSG_KSCrashReportStore.h */, - 004B471228792A1EFEE67D01BA11994F /* BSG_KSCrashReportStore.m */, - C85761D52F3F08615BE3A6569731C96E /* BSG_KSCrashReportVersion.h */, - FEE01462E2FB6778E0E88ACD48E7591B /* BSG_KSCrashState.h */, - 47CA2F9B4EB9158B5F8602745A9AB4E6 /* BSG_KSCrashState.m */, - 737D44EB3F6D1D1D886B07AB172805FF /* BSG_KSCrashType.c */, - 434790F5144B1D3D04D00F59A5F2E067 /* BSG_KSCrashType.h */, - 2241A481A38ECBDC82FD7B8014278C90 /* BSG_KSSystemCapabilities.h */, - D58B3D9F699BFBEF16AA2CC82CA907DC /* BSG_KSSystemInfo.h */, - BDAC9F18BBFF584CC2329AAC07897BA5 /* BSG_KSSystemInfo.m */, - DC8207E9D9E6CC6A92DA0EC2EC940696 /* BSG_KSSystemInfoC.h */, - B833FC6E17C159D47458920660466940 /* Sentry */, - 7AD541A4A44E5F5847953E7542B9A930 /* Tools */, - ); - name = Recording; - path = Recording; - sourceTree = ""; - }; - 1A75BC43B08FD77BD4D11A1BE6D2D74C /* Utilities */ = { - isa = PBXGroup; - children = ( - 738F518B34C8D629773F9B375F031C50 /* SRError.h */, - CFEE60A15DCDC8CB79B25E3A19FB4F2E /* SRError.m */, - 891F51FBCC2DF3E6A223D2E14C7C00B6 /* SRHash.h */, - 0367DB380611B790C05380EFBD852273 /* SRHash.m */, - E7D2B3E90D0FEF9F5620DE2832121824 /* SRHTTPConnectMessage.h */, - 6AF92ACDC4D1D99F5C63FB2E85370715 /* SRHTTPConnectMessage.m */, - 3145621CFDEA849F9DB960EC916DAD82 /* SRLog.h */, - D16DB42242AAD6739B77AF6F41605B7A /* SRLog.m */, - 51CF1452F991EA98E58AFC0BE7AA197F /* SRMutex.h */, - C76E7FF2703F50B0592F86A822430F1F /* SRMutex.m */, - BF3672536FF643DF11A9682FB3429BD6 /* SRRandom.h */, - 5D8A0D0BBAD00AB40617AED6CF4C9C88 /* SRRandom.m */, - CA8C1583771AC99D1C0A8461F878B483 /* SRSIMDHelpers.h */, - 84FB9E50BE845E4A965BD89CA6152FEB /* SRSIMDHelpers.m */, - 39FF141C8955B49FEF966E062C6BF70A /* SRURLUtilities.h */, - 61D1047CE9D402DCA90E68B4569E386D /* SRURLUtilities.m */, - ); - name = Utilities; - path = Utilities; - sourceTree = ""; - }; - 1AFE0C16CD67DDC00A29935F6B0F6A0E /* Pod */ = { - isa = PBXGroup; - children = ( - B46983DAC9FC5504F8F350F4E54E82B5 /* UMCameraInterface.podspec */, - ); - name = Pod; - sourceTree = ""; - }; - 1BCB8A2CA25F8CE9EFF1DB531DD326EC /* Nodes */ = { - isa = PBXGroup; - children = ( - 76509F80046098BB4EDA1201032468F5 /* RCTAdditionAnimatedNode.m */, - 2710EF5312E3F10E41CCD8EEEB263BD5 /* RCTAnimatedNode.m */, - B6FBB8866BCE49A5BBBDDEBBBF7EFB88 /* RCTDiffClampAnimatedNode.m */, - 6F6EB58B2C2940D1942E88C0C077E219 /* RCTDivisionAnimatedNode.m */, - D6D95C9208F5BA2F9CB7DEFEF7FFDECF /* RCTInterpolationAnimatedNode.m */, - AD9F3B8647BE8BA12C1FCF44900864AE /* RCTModuloAnimatedNode.m */, - 1624177CEA51AE1FCB5499928F2843BA /* RCTMultiplicationAnimatedNode.m */, - 824CBB6DC676A51BE5DF4E52C4B5EE6D /* RCTPropsAnimatedNode.m */, - EA89F3106C16A08A4F8A83442AEE0F4E /* RCTStyleAnimatedNode.m */, - EDF66939C627F73390A7CCB963BCF343 /* RCTSubtractionAnimatedNode.m */, - 80EE4027DA88E06F0E9F7B1BC66E21A9 /* RCTTrackingAnimatedNode.m */, - F04971D96A1D7D43DA2C2611338EDBFC /* RCTTransformAnimatedNode.m */, - 06838361DB5743523DF21901D2F16D10 /* RCTValueAnimatedNode.m */, + 226770D64621B378E0AD57C3D8DED81A /* REAAlwaysNode.h */, + DF4D81554317C2DA4627E78356263986 /* REAAlwaysNode.m */, + 8DCCFAF216AFB433D6EA67CD07AD4B0E /* REABezierNode.h */, + 8B7F43DC4EC1B6258DBD40E20BEBD0FB /* REABezierNode.m */, + 0503ED22B6C0FF8DE4927EEE03963BFC /* REABlockNode.h */, + 714C991B3E7AA83F25BCF7A32B980C87 /* REABlockNode.m */, + 31656A9AAAC055D25FC56A768516F9EA /* REACallFuncNode.h */, + BF2BEAA276BAE703F676D98DFD951C1E /* REACallFuncNode.m */, + C29520914DEC7AE5CCD911A42C68BF0C /* REAClockNodes.h */, + 46CB2F49C23D61BF1BFB11EEFF87AD85 /* REAClockNodes.m */, + D87895D1A7528674953C49E301EA8397 /* REAConcatNode.h */, + 032AFD590E849D0D137615D857D6D010 /* REAConcatNode.m */, + 941CB7337A22D2FC3F9A2BD378A98380 /* REACondNode.h */, + 6BE7793A9E985BA86D51A2779D89AC69 /* REACondNode.m */, + CF5DF84ED7BD46C898CF322C3FDA980A /* READebugNode.h */, + 09BA6D193F473056C9FF724BDC8D2155 /* READebugNode.m */, + BEEB0B184AA1DF1DA7EA01E3CEF7A67F /* REAEventNode.h */, + 899CA464D481520BF7606BA74E308C54 /* REAEventNode.m */, + 2A7AB6D66E7368C61F50FD2D27200B73 /* REAFunctionNode.h */, + DC465FA3E4FB4B65215A9BA22F9A0BC0 /* REAFunctionNode.m */, + 87BDE213930602568428589CA91EC8A3 /* REAJSCallNode.h */, + 043EA52813F5F81394AD6B3DF3AAF24C /* REAJSCallNode.m */, + A660BC06C3C42712042ED0388286DE7B /* REANode.h */, + CF8BD4089AE1F91B64B4ADD0A90CF28A /* REANode.m */, + FDC324B82249D14E654BB58D2C459902 /* REAOperatorNode.h */, + 7A2C11ACF77F677DD3C30F29704F4D84 /* REAOperatorNode.m */, + 54409E813226CC0DE818716BA0944423 /* REAParamNode.h */, + CF112031398DB6ACDE25DF0E97AD3A17 /* REAParamNode.m */, + C2A3E54AD95D989768F49547ADA6DB0E /* REAPropsNode.h */, + C6B76870816281889E6BC42E375751B2 /* REAPropsNode.m */, + 3C41CCEE96E59EFFFD18F3F989DF6F24 /* REASetNode.h */, + ED123A74CAB8A20F813B4464D6F5E8E0 /* REASetNode.m */, + 227F6E7C98F31D9C50E961370496A3CB /* REAStyleNode.h */, + 0E28FAE9488CB7CF19AACE217AA4095B /* REAStyleNode.m */, + 605E136781AE87E42A384ED77767AF54 /* REATransformNode.h */, + F4E8B93DDE094ADDEFA731432E9A74B0 /* REATransformNode.m */, + D9AC424D1A5BC320BF1EC7E2C2F3652D /* REAValueNode.h */, + 3436760029CF8480604F8B48EC482CD7 /* REAValueNode.m */, ); name = Nodes; - path = Nodes; + path = ios/Nodes; sourceTree = ""; }; - 1BCC5F376EA513FBAAA8910005A39683 /* react-native-notifications */ = { + 199196FE6609714594948931D7AE5C5C /* storage */ = { isa = PBXGroup; children = ( - 0ABA0FEDA324BA525B5DEFBB2DB4CF06 /* RCTConvert+RNNotifications.h */, - C28E5E922B2695A945FC7FC7E4667102 /* RCTConvert+RNNotifications.m */, - C98EFB8224066F6B757465914FC89BD4 /* RNBridgeModule.h */, - 25279C48966FA07EA522177FF66B0543 /* RNBridgeModule.m */, - 22B3B93BAD15FF28E1F658EF9563AAB6 /* RNCommandsHandler.h */, - D43C4460B969FE5B8EA38996A9B54E06 /* RNCommandsHandler.m */, - 5BAC389FE0AEA9F0EC1B3641793AAB72 /* RNEventEmitter.h */, - 3E6CD11A87541FE5C1B03B903FA49E9C /* RNEventEmitter.m */, - 5DB7B664AD22D440870DACEA949D0182 /* RNNotificationCenter.h */, - 65BD95C37CE00958082C4E0E3AA13635 /* RNNotificationCenter.m */, - C00495D2A51078A2A72C323A20B1A9FD /* RNNotificationCenterListener.h */, - A30304C4FE2D283910E52A345B67D389 /* RNNotificationCenterListener.m */, - DCB8719C5F9541D42F7ACCD58A5FFA76 /* RNNotificationEventHandler.h */, - 444AEC4C92B7D6B376A2D99180882CDC /* RNNotificationEventHandler.m */, - DA8BC861A666D1E1C917F57565070C44 /* RNNotificationParser.h */, - 6A898E6DE18628EF60F56FA7A3453405 /* RNNotificationParser.m */, - DA788A6E731EB911D3B8E8D74459028C /* RNNotifications.h */, - 677166F630594E11AE96CF04D9C7E975 /* RNNotifications.m */, - 3F0E8CF1A9335A8CAB8D7D7E114E0F9F /* RNNotificationsStore.h */, - FA696B34750404CFD6B19919C435E8BE /* RNNotificationsStore.m */, - 963E3E54C7919C504651B8E791832E83 /* RNNotificationUtils.h */, - 3B29F066C4D7A5F4CDAA141FF6B4208C /* RNNotificationUtils.m */, - 518664B6200162676839C30ACF99064A /* RNPushKit.h */, - FF45F8423E452C8B8FAC16822E2A14D4 /* RNPushKit.m */, - CDEB73FF6978392D966224D99861C785 /* RNPushKitEventHandler.h */, - FA6B3A8B1FA952C66BA39C4EEDA412CC /* RNPushKitEventHandler.m */, - 7C1C12709FFB7FFCEB53B912C600CBB5 /* RNPushKitEventListener.h */, - 0803A4640DC09A380D8F0B812B56AFC0 /* RNPushKitEventListener.m */, - 4D8EA8AF97D2878F6108D2819688D93F /* Pod */, - A575A5AB1D4D5929F5A1BB59C4947670 /* Support Files */, + 40E3681DBC555561CFF42E610625877C /* RNFirebaseStorage.h */, + C774E8622465BCD66BA07FE9CD5784B5 /* RNFirebaseStorage.m */, ); - name = "react-native-notifications"; - path = "../../node_modules/react-native-notifications"; + name = storage; + path = RNFirebase/storage; sourceTree = ""; }; - 1C14DD394AEF7F2C3DD32686DADF15BC /* Services */ = { + 19F083E53B104D98450A632836814C8D /* RCTLinkingHeaders */ = { isa = PBXGroup; children = ( - 8CB03193658E4035AF88CCC52810967F /* UMLogManager.h */, - 181E5E7E71CD7EAD5286CAA30021085D /* UMLogManager.m */, + AC64E99EE53FD5E54618EE097493CF4F /* RCTLinkingManager.h */, ); - name = Services; - path = UMCore/Services; + name = RCTLinkingHeaders; sourceTree = ""; }; - 1CF1AF8139B147A395716AA7146EAB27 /* RNRootView */ = { + 1AD43318690774AFF4A731D89344CAFA /* Support Files */ = { isa = PBXGroup; children = ( - 2FC8520ECC31420FA2690C6A65283618 /* RootView.h */, - DC1B11FD93DFAB4C6E08FF54F4DFADCC /* RootView.m */, - 195CCD91184884421200DA513FE12888 /* Pod */, - DC4B1400BB7BD86E7E7B2D8BB9457AB6 /* Support Files */, + 0942DF135A2CFF8F154CEDA322F03A50 /* React.xcconfig */, ); - name = RNRootView; - path = "../../node_modules/rn-root-view"; + name = "Support Files"; + path = "../../ios/Pods/Target Support Files/React"; sourceTree = ""; }; - 1E68F6CC018EAD03946333FDE65B011E /* Pod */ = { + 1B271201FF2AF3CF009F9903A4F347D7 /* Pod */ = { isa = PBXGroup; children = ( - C3966B4484D3CB6BB103F67534953DBB /* UMFileSystemInterface.podspec */, + EC1ED66BBFF626FD293EF49A4B01B2CC /* EXFileSystem.podspec */, ); name = Pod; sourceTree = ""; }; - 1F4CD791BE414085A624AC9E2D7DD5C6 /* RNBootSplash */ = { + 1B6F8C0DB31142E8A7971C871F419E9F /* Support Files */ = { isa = PBXGroup; children = ( - 50F03489287103989552D43C23469F6B /* RNBootSplash.h */, - 6EC0ECDD792E8CC42416EED2EF4A3DEE /* RNBootSplash.m */, - 349FB124F27443ACDEDF515BE46A5907 /* Pod */, - 665C22C86F1FB077E4DA43C47AF6C249 /* Support Files */, + 63E4FDA869FAD60878F385D1A9589C6D /* UMBarCodeScannerInterface.xcconfig */, ); - name = RNBootSplash; - path = "../../node_modules/react-native-bootsplash"; + name = "Support Files"; + path = "../../../ios/Pods/Target Support Files/UMBarCodeScannerInterface"; sourceTree = ""; }; - 1F5C28C94FB734783BA92939B053570B /* config */ = { + 1CB8D29BCB5F51FCA370C691C119A43A /* FBLazyVector */ = { isa = PBXGroup; children = ( - 74F4379011B30183DCE324FB2DB5EEA0 /* RNFirebaseRemoteConfig.h */, - 25F909FC5FAD0CDE226B103F90126288 /* RNFirebaseRemoteConfig.m */, + CE2284606C1BCC9C5B0C58C58D759BED /* FBLazyIterator.h */, + 50B45969D0E77467A2FF115E15121F9F /* FBLazyVector.h */, + 783FA5956C45433FDA7D8EA020EC58B8 /* Pod */, + 2F1ED2E28CF717999648E8416A5867F9 /* Support Files */, ); - name = config; - path = RNFirebase/config; + name = FBLazyVector; + path = "../../node_modules/react-native/Libraries/FBLazyVector"; sourceTree = ""; }; - 1F7361EAE62CEA2C59B0CA849C6C0A8B /* react-native-orientation-locker */ = { + 1CFF082E514D434545DF73E3D3F8F410 /* CoreModulesHeaders */ = { isa = PBXGroup; children = ( - 6AD52A5002C35FD045E3F1FA0F209341 /* Orientation.h */, - AF7F59D71FDFCE7DC66117FC06918CB6 /* Orientation.m */, - 6B5169FEB45D8F923A9C26BD91766C4E /* Pod */, - 70D33B37D12E9D090C9FF3FC77044E7D /* Support Files */, + 71DA3D9D1CD248E7C6FB7891802684D8 /* CoreModulesPlugins.h */, + 8B3B20954674E500BC0C60E9385E0B74 /* RCTExceptionsManager.h */, + CB3C9975CEC93E9055107C94EC3B42A7 /* RCTImageEditingManager.h */, + 989D7398E57E8B2B01EF3DDF443D6A1D /* RCTImageLoader.h */, + 693AC29F8B9544E88334BAA75FB2C9D2 /* RCTImageStoreManager.h */, + 3BB0880DBB26A100D5CDAF450356CF3C /* RCTPlatform.h */, ); - name = "react-native-orientation-locker"; - path = "../../node_modules/react-native-orientation-locker"; + name = CoreModulesHeaders; + sourceTree = ""; + }; + 1D245FCD877E5820DCEF4ED54F8A1CF7 /* crashlytics */ = { + isa = PBXGroup; + children = ( + 979669F74E09BDB7CDBEF7A2B6A9B34F /* RNFirebaseCrashlytics.h */, + E47104869562FC29A7E829A9F6863801 /* RNFirebaseCrashlytics.m */, + ); + name = crashlytics; + path = crashlytics; + sourceTree = ""; + }; + 1D8376B427A94503FFD0F902A00EA0EB /* auth */ = { + isa = PBXGroup; + children = ( + 770F0748043B114DAA49F3A3DA41B58F /* RNFirebaseAuth.h */, + 24188A9359977F5282BE2C0D494C965F /* RNFirebaseAuth.m */, + ); + name = auth; + path = RNFirebase/auth; + sourceTree = ""; + }; + 1DAE238D6F059459F5D37B1120454A50 /* ReactNativeART */ = { + isa = PBXGroup; + children = ( + 42E0319865F7265D0E5279D85B0DF038 /* ARTCGFloatArray.h */, + BF0931A1447651EF50EE921ABC5C04F3 /* ARTContainer.h */, + 54EC03B90BB40EFF21E9F3E4D064B7CE /* ARTGroup.h */, + B98BA79CAEA26BC06182CBDC1A5F77A3 /* ARTGroup.m */, + 2C77987BF682AFDFBDF7EA54C1F74FEE /* ARTNode.h */, + 8174553A704A3296A6EA492FEB5062E3 /* ARTNode.m */, + 4EA9170BDDF03B26378A295895425522 /* ARTRenderable.h */, + 2BC8D4E3EF3B9785792DFC040198C1E6 /* ARTRenderable.m */, + 8958EDE284309A7EAFBB83F9365B0567 /* ARTShape.h */, + B407A36592542744447C716CC5A491A1 /* ARTShape.m */, + 248F64165802844864418C70465519A3 /* ARTSurfaceView.h */, + 557DEB4E6F363594421A7F2DC79BAE85 /* ARTSurfaceView.m */, + 2B6EBC45A237F740A12D58BFBFFB8230 /* ARTText.h */, + 3B811D77A892D0A6D91EE2E70613A60C /* ARTText.m */, + AA104A2D8EC4A9DCF9282439173DB1BB /* ARTTextFrame.h */, + 37BD19E43D701CAE444E127D1DC6910A /* RCTConvert+ART.h */, + 6E2DF60F0AFEF13D4B6A472E39DB3AC2 /* RCTConvert+ART.m */, + DC673A379434D884098265E2B23090C6 /* Brushes */, + 26136774CD1A6D6B28D379DA11D73D59 /* Pod */, + A8D3BC7885ABA7D02DBB47D8F0E7365F /* Support Files */, + 368FA6011CF7D4B028E06862F225EEA7 /* ViewManagers */, + ); + name = ReactNativeART; + path = "../../node_modules/@react-native-community/art"; + sourceTree = ""; + }; + 1E359974B9B7B993029E10EE32A4C29F /* Support Files */ = { + isa = PBXGroup; + children = ( + 2B18181095B13DDFFBC3A6F7559C3D7E /* UMCameraInterface.xcconfig */, + ); + name = "Support Files"; + path = "../../../ios/Pods/Target Support Files/UMCameraInterface"; + sourceTree = ""; + }; + 1EDA6A204F0803FEB51A4B026DB402FE /* Support Files */ = { + isa = PBXGroup; + children = ( + 2AB430F2D01D646B93638CA23E08BF4F /* EXAV.xcconfig */, + 4043AD1E8D873D561FE59CC68F4489BE /* EXAV-dummy.m */, + A291D9FB53A8941C253B17C53045229F /* EXAV-prefix.pch */, + ); + name = "Support Files"; + path = "../../../ios/Pods/Target Support Files/EXAV"; + sourceTree = ""; + }; + 1F6AA7E826C0341573A860F34856BCCF /* Support Files */ = { + isa = PBXGroup; + children = ( + 070429B06A32B526D719C22C0ED95B89 /* UMConstantsInterface.xcconfig */, + ); + name = "Support Files"; + path = "../../../ios/Pods/Target Support Files/UMConstantsInterface"; sourceTree = ""; }; 1F7EC6C11018294EBF40CA4AAD13152A /* FirebaseInstanceID */ = { @@ -8438,14 +8376,29 @@ path = FirebaseInstanceID; sourceTree = ""; }; - 1FC23761EE26F24647D8F154DCC230DF /* functions */ = { + 200C7008D2FF4CC22A32D0C19B49F4DE /* Support Files */ = { isa = PBXGroup; children = ( - 9393EBBA5A0C71C877C8420DCFD4431A /* RNFirebaseFunctions.h */, - 61151BC066897B3D19D888712807F0AF /* RNFirebaseFunctions.m */, + BDDE3BFBD40A3A7AECBFB703CED4B961 /* EXWebBrowser.xcconfig */, + 2C0AC29E6A0CE19E6C0057F95DD14384 /* EXWebBrowser-dummy.m */, + 472E3F2F09714B0A2594DB9286216CB7 /* EXWebBrowser-prefix.pch */, ); - name = functions; - path = RNFirebase/functions; + name = "Support Files"; + path = "../../../ios/Pods/Target Support Files/EXWebBrowser"; + sourceTree = ""; + }; + 2151C20C6311F4CE04E20D487067A97E /* React-jsiexecutor */ = { + isa = PBXGroup; + children = ( + A9700FE4C6CAAC5DF7823791B7A9F6B8 /* JSIExecutor.cpp */, + 4FF70E7A6CD9CDDA0BD7D426216CD3FC /* JSIExecutor.h */, + 0ACB608E847D51BFEF7567016CD38ECC /* JSINativeModules.cpp */, + AB0419027ACC2037AFACF6BBC785FFB3 /* JSINativeModules.h */, + 662FFA26565FA81922E8861F031CF258 /* Pod */, + F783D98CD3FA591CC6106207219CE8F1 /* Support Files */, + ); + name = "React-jsiexecutor"; + path = "../../node_modules/react-native/ReactCommon/jsiexecutor"; sourceTree = ""; }; 216ED3B7178698D2741E65F697E7BD7F /* Support Files */ = { @@ -8458,12 +8411,60 @@ path = "../Target Support Files/GoogleDataTransport"; sourceTree = ""; }; - 22BA093B64E042E9E2C2FE1C356C4075 /* Pod */ = { + 22F5E3229FF241B0EEE4990DB6A9B4FD /* EXPermissions */ = { isa = PBXGroup; children = ( - B7684049BE4BD4B7BAD2C8EB194BC26C /* UMReactNativeAdapter.podspec */, + 818D53D65DB7CA06B66EF9BB15E93985 /* EXAudioRecordingPermissionRequester.h */, + C353DA738806DE69766268C01BB7AEB3 /* EXAudioRecordingPermissionRequester.m */, + 2122B71FF39776F28C815E0F8E2E8600 /* EXCalendarRequester.h */, + 21C87ED9D4B412DA8575EBF109AA2B48 /* EXCalendarRequester.m */, + 1C2FFBE00DE465C5BCA8C592BEFFBBFD /* EXCameraPermissionRequester.h */, + 6D0F44C460371DD08D55A8C00E471B1D /* EXCameraPermissionRequester.m */, + 5A92F7A8EF0B089FA910606989EC696B /* EXCameraRollRequester.h */, + F132861DB957D838597D949D7D9B28D8 /* EXCameraRollRequester.m */, + 0ADF56430FFD715DB3531F3EADD9C783 /* EXContactsRequester.h */, + 52BD787C10CFD74ACC1AB71A99C7A09E /* EXContactsRequester.m */, + 0F313C739AD2E4FC435D56A8A9607272 /* EXLocationRequester.h */, + 00C4D903ACCC5E760024CF200CD44699 /* EXLocationRequester.m */, + C7D449E810B2BA587461F79809FD6A0E /* EXPermissions.h */, + DAC42D6378B4A8DA99C8441218A0E640 /* EXPermissions.m */, + 07436AC34D3C651F8C4B86BFCF86FA9B /* EXReactNativeUserNotificationCenterProxy.h */, + CDB0B1AD988F0C8E905480472EAD9AF9 /* EXReactNativeUserNotificationCenterProxy.m */, + E44D6D04119D0FB57843C0F794CF05BC /* EXRemindersRequester.h */, + BFB7D7D7547D91DB8ED2258EE5661073 /* EXRemindersRequester.m */, + EBE7845CC81A62FBAF26BEC2950AAA5A /* EXRemoteNotificationRequester.h */, + 3A83A10DCA120BCFF11AC91AC2107418 /* EXRemoteNotificationRequester.m */, + 2E50340A01C6E685735D38CA40DC8A44 /* EXSystemBrightnessRequester.h */, + 257676ADB5897AE32839135C7C41BBB6 /* EXSystemBrightnessRequester.m */, + 4BA90E75647A49B33D1E4960B5BFEF80 /* EXUserNotificationRequester.h */, + 75E8305AA087EEF6B9784DC22E9C8DF6 /* EXUserNotificationRequester.m */, + 75AF69FBFA62DB989159283C91003B63 /* Pod */, + 23C8C6DE57FACA14E110D497675213A5 /* Support Files */, ); - name = Pod; + name = EXPermissions; + path = "../../node_modules/expo-permissions/ios"; + sourceTree = ""; + }; + 23C8C6DE57FACA14E110D497675213A5 /* Support Files */ = { + isa = PBXGroup; + children = ( + 586E1AE368A958D493CB28470CD8DAA8 /* EXPermissions.xcconfig */, + A509DDB7C50562B7C76B46E1A50DD500 /* EXPermissions-dummy.m */, + A981D9FB40BDBB2546EC08AC9CD14F49 /* EXPermissions-prefix.pch */, + ); + name = "Support Files"; + path = "../../../ios/Pods/Target Support Files/EXPermissions"; + sourceTree = ""; + }; + 245ECF5E72044EB53BE3A882B83ADDEC /* Support Files */ = { + isa = PBXGroup; + children = ( + 02CDFF93B047B472A8624B224BCE7384 /* EXFileSystem.xcconfig */, + 6349F711E9C50FF7106EFE4C0724756A /* EXFileSystem-dummy.m */, + 76638DE53EA41247279955B228624F23 /* EXFileSystem-prefix.pch */, + ); + name = "Support Files"; + path = "../../../ios/Pods/Target Support Files/EXFileSystem"; sourceTree = ""; }; 248C867CFC61347DCAF2D42E96528B93 /* SDWebImageWebPCoder */ = { @@ -8480,60 +8481,105 @@ path = SDWebImageWebPCoder; sourceTree = ""; }; - 269D302DB28B993E44C3F65D007A2B8F /* Pod */ = { + 2505E3CD3A9A27BDE0A70C131D0865CE /* SafeAreaView */ = { isa = PBXGroup; children = ( - E2FD40F2D25FE24816C28944AF370EA0 /* UMTaskManagerInterface.podspec */, + 5FFADEAB305FDC25772B125EFF5D6831 /* RCTSafeAreaShadowView.h */, + 94F42D796A80AB6ABB10321353CD36BE /* RCTSafeAreaShadowView.m */, + 127AED4A9CC0C0982EA1D024313501BB /* RCTSafeAreaView.h */, + DFE1781A6CCF5AA0D49D19025480F590 /* RCTSafeAreaView.m */, + A6EC4EA4F64CFAB723AFE96CBB14EC6B /* RCTSafeAreaViewLocalData.h */, + 3C0C274DADCDA9D823ED46898B120A65 /* RCTSafeAreaViewLocalData.m */, + 056F905D99CA1946F7FD9A5CE9F95DBA /* RCTSafeAreaViewManager.h */, + B501F1D0ED50C1D646B16A87F01C0EBB /* RCTSafeAreaViewManager.m */, + ); + name = SafeAreaView; + path = SafeAreaView; + sourceTree = ""; + }; + 26136774CD1A6D6B28D379DA11D73D59 /* Pod */ = { + isa = PBXGroup; + children = ( + 78991A732BB73FFE5BC236FB7E8B31C5 /* api.md */, + 140F593D0AA923E7785433A4962B6E13 /* LICENSE */, + 66C149719C5CBD2A4D2ACEB8C0CD6D1F /* ReactNativeART.podspec */, + CD2876941A6308794AFFA9F2ECCD90E4 /* README.md */, ); name = Pod; sourceTree = ""; }; - 283606CCE0EF1B5570039029BCD10197 /* Support Files */ = { + 26F6947958CFE002BB52415369EADB38 /* Support Files */ = { isa = PBXGroup; children = ( - 87147EA3924490E7FE3B10CF6A434585 /* react-native-webview.xcconfig */, - 8E8EFBBDC42E5B25D24FC7C59575DECD /* react-native-webview-dummy.m */, - FDA0A74ADDB9C5C9E33AB64C0A101B29 /* react-native-webview-prefix.pch */, + A7E28B85C59EC325E693064F02F09EA9 /* UMSensorsInterface.xcconfig */, ); name = "Support Files"; - path = "../../ios/Pods/Target Support Files/react-native-webview"; + path = "../../../ios/Pods/Target Support Files/UMSensorsInterface"; sourceTree = ""; }; - 28B44C26D86A33BFD14E8855795F18EE /* Support Files */ = { + 2804C359F2B3A71A409FB4C51BFA8408 /* UMCore */ = { isa = PBXGroup; children = ( - E662B7D9CF1686E91D2F91409470E2B1 /* RNAudio.xcconfig */, - F276886C7FF1515F605C3E41241D6A47 /* RNAudio-dummy.m */, - C5C6004578B409C02E2AC3DB22D41A8F /* RNAudio-prefix.pch */, + FB065042ADCFC88306ADBF0D50AF8098 /* UMAppDelegateWrapper.h */, + E7ED5E3F9352B025BDB93C2A68391FAB /* UMAppDelegateWrapper.m */, + 6FA8A402A2AD70D9944B47FAAB7ED5A0 /* UMDefines.h */, + E02B1FED0E1B7D7D17596A0D4A83D336 /* UMExportedModule.h */, + 1FF2034994B9970DB2BB5903D7BB1D55 /* UMExportedModule.m */, + A2CFC3AEB3541720A9E024200FDDF38A /* UMSingletonModule.h */, + A5F42D476AE4ED3EA3E1ED52F62E22F0 /* UMSingletonModule.m */, + 84E95B4CCAB7B65F14342EB42E03D1D2 /* UMUtilities.h */, + C37B5A96B8889BDBE550BBDD51EA995A /* UMUtilities.m */, + B089D6C9E9764C06EFB3B2037BF93AE0 /* UMViewManager.h */, + 370C0BF090AADF29F836C4B173E20BA8 /* UMViewManager.m */, + ED78AEF1AA32F48F5783E608B1DE45F9 /* Pod */, + 0B843C69A8928C223ACC237D78C00079 /* Protocols */, + B4B26E11E40FBF99BA472CE1460D8123 /* Services */, + C3C76E2FED5D41B98A79429EC3F392F2 /* Support Files */, + 3FBBB610AEBE0AEDA6555EC9C78E60CD /* UMModuleRegistry */, + CC89B27C29F07E23EF4559519F76D470 /* UMModuleRegistryProvider */, + ); + name = UMCore; + path = "../../node_modules/@unimodules/core/ios"; + sourceTree = ""; + }; + 287B571F9A7F85979890C86A2B87B0A8 /* RCTImageHeaders */ = { + isa = PBXGroup; + children = ( + EC9088AFF5123A5910DD00DD39B9D3E8 /* RCTAnimatedImage.h */, + 012F4462BB9C07820206BE66B1F20D80 /* RCTGIFImageDecoder.h */, + 813E87FEFBBC0B1AFBCE06DF0029DCC2 /* RCTImageBlurUtils.h */, + 82D683F71493A4FB62FC3F9759E83754 /* RCTImageCache.h */, + 46FDBBA42C73AF080F4CAECDA4F7BD6E /* RCTImageDataDecoder.h */, + 2A50FE5F8576807454CF6EB0587594A9 /* RCTImageLoaderProtocol.h */, + D075C71D4C0C39F67DE3C7451916A577 /* RCTImageShadowView.h */, + E19DA1777EC599E1490DFA81A349EA6B /* RCTImageURLLoader.h */, + 001F2E7F1DE84E22E6A02B9950856962 /* RCTImageUtils.h */, + DA7DB9D03B77A0AD415A926C86BEFAA2 /* RCTImageView.h */, + 21CBC4FF30E155417536FB52FD82ECE0 /* RCTImageViewManager.h */, + 9E3F1EC012B1E9084C73D718D53D6489 /* RCTLocalAssetImageLoader.h */, + 138C7BA75C8AF37730D9FAB299EE60ED /* RCTResizeMode.h */, + 41EB4C6E0BFCE249D65819744C353237 /* RCTUIImageViewAnimated.h */, + ); + name = RCTImageHeaders; + sourceTree = ""; + }; + 28BBA341D2A84CAA6A3813BE61A4DF33 /* Pod */ = { + isa = PBXGroup; + children = ( + 8020DF33D4A3B23979E63205EDCA831D /* EXHaptics.podspec */, + ); + name = Pod; + sourceTree = ""; + }; + 28F20382130A3F9D24849491B76A1399 /* Support Files */ = { + isa = PBXGroup; + children = ( + 7B1A1C31EB9ECCADE2E4A1F54B864E52 /* RNUserDefaults.xcconfig */, + F7AFF9E9F8831B27B4838A13437E6AFA /* RNUserDefaults-dummy.m */, + 1C8946432644A4A745E4C01F3F76DCAF /* RNUserDefaults-prefix.pch */, ); name = "Support Files"; - path = "../../ios/Pods/Target Support Files/RNAudio"; - sourceTree = ""; - }; - 28CC649E27049D93FA6057E51AC4E00D /* react-native-keyboard-input */ = { - isa = PBXGroup; - children = ( - E100B897C3B164E2E940553E931EDBF6 /* LNInterpolation */, - BF232C9737BB466F444BB762B850BA10 /* Pod */, - 4BF47DCCD10154A28B2C37ECAAE16938 /* RCTCustomInputController */, - E4499302A2BA270163DAFCDA0F3A46A6 /* Support Files */, - ); - name = "react-native-keyboard-input"; - path = "../../node_modules/react-native-keyboard-input"; - sourceTree = ""; - }; - 2906B673420DE27AD031CC12187CFD3A /* RCTTypeSafety */ = { - isa = PBXGroup; - children = ( - 313A426486521590465E09DC26A5D443 /* RCTConvertHelpers.h */, - EFA9C1FFC3E5023F23DE8BB649D0CE97 /* RCTConvertHelpers.mm */, - 13DB9E7A9EDCAD57724ECE7095B82C48 /* RCTTypedModuleConstants.h */, - 142E0A31A9E6960D08872D751EC3327E /* RCTTypedModuleConstants.mm */, - EE4D1E5430CCCCB0BDFA7286CFDB10AE /* Pod */, - A3F14C54E4CA29FFE87C6919C0ADECE2 /* Support Files */, - ); - name = RCTTypeSafety; - path = "../../node_modules/react-native/Libraries/TypeSafety"; + path = "../../ios/Pods/Target Support Files/RNUserDefaults"; sourceTree = ""; }; 298EEA19A87671656A4C853C89031B0D /* Frameworks */ = { @@ -8556,46 +8602,41 @@ path = FirebaseCoreDiagnostics; sourceTree = ""; }; - 29CFC591A83F7B70874185F261BC50A8 /* UIUtils */ = { + 2A047AFBEBF3DA7B42E420DB22F940B4 /* Profiler */ = { isa = PBXGroup; children = ( - 3028E0F70A65168FC0D8B1285013F788 /* RCTUIUtils.h */, - 4215E366E96B19336AAA4E4770DA7B6A /* RCTUIUtils.m */, + DC7D75E5C5EE9AF36BA1CD8A4C46ED7B /* RCTFPSGraph.h */, + 1735B21AB2D3DED15024CA3EEDDC5B5A /* RCTFPSGraph.m */, + 8AC24873AE21C7CB4D10EC567908AE3E /* RCTMacros.h */, + 9FFCD9B03BD9FEEC8AA4EC08773BBC5D /* RCTPerfMonitor.m */, + 7F7CCC85FE07D8D74A5D7CE9D9391E5A /* RCTProfile.h */, + 55243D276BCCCAEF309D004B5F9BAEBA /* RCTProfile.m */, + 5333920C6146873D53E49C793CEA566B /* RCTProfileTrampoline-arm.S */, + D08A231B08E5233EA0462CE87A7CEA26 /* RCTProfileTrampoline-arm64.S */, + DE6B694B56DB0F1DF8CBC2826FA9B1B0 /* RCTProfileTrampoline-i386.S */, + 9486290889B3C6325EDECE288CAA9A34 /* RCTProfileTrampoline-x86_64.S */, ); - name = UIUtils; - path = React/UIUtils; + name = Profiler; + path = React/Profiler; sourceTree = ""; }; - 2A52F271E022535247B4FF58795685F1 /* Support Files */ = { + 2C8E8215E0CDE58EAD650770CD8D424C /* Pod */ = { isa = PBXGroup; children = ( - BA96A4294166CCA0210FED1496ABF3E6 /* RNFirebase.xcconfig */, - 572D0088BFEC231049A849D2B998C3D8 /* RNFirebase-dummy.m */, - FB39EE33E559072B4EA668CBC7F04C55 /* RNFirebase-prefix.pch */, + 03367196CD80CDE7E055E609C9A13BF2 /* React-RCTVibration.podspec */, + ); + name = Pod; + sourceTree = ""; + }; + 2CF9426B6DAEE315D3F2C222BB122847 /* Support Files */ = { + isa = PBXGroup; + children = ( + EE0698383F0AAFAD6AF6103B1B442D36 /* RNAudio.xcconfig */, + 19E1995D5604A113830A6DC6793AAEEA /* RNAudio-dummy.m */, + 22973557654166AD890742D4B80E6391 /* RNAudio-prefix.pch */, ); name = "Support Files"; - path = "../../../ios/Pods/Target Support Files/RNFirebase"; - sourceTree = ""; - }; - 2BB8D38B764F5FBD80E6C911DDD77F82 /* auth */ = { - isa = PBXGroup; - children = ( - FFBEA85239A716CD4FFF1F0FA1B3567A /* RNFirebaseAuth.h */, - A9B02D1D114F0DB20A7F209353DAD25C /* RNFirebaseAuth.m */, - ); - name = auth; - path = RNFirebase/auth; - sourceTree = ""; - }; - 2C5DB899668FE96661AF4B428F6FE2B4 /* Support Files */ = { - isa = PBXGroup; - children = ( - 04ADE75A9E0641EB8D97A1CF7AC4079C /* React-cxxreact.xcconfig */, - 61316B300EC4E6516D45C322572BBB67 /* React-cxxreact-dummy.m */, - DEE1B553408FEEDEFC27C16F7D3A682F /* React-cxxreact-prefix.pch */, - ); - name = "Support Files"; - path = "../../../../ios/Pods/Target Support Files/React-cxxreact"; + path = "../../ios/Pods/Target Support Files/RNAudio"; sourceTree = ""; }; 2CFB22E97429F69EF0B16000B9744E75 /* Support Files */ = { @@ -8607,99 +8648,119 @@ path = "../Target Support Files/FirebaseAnalytics"; sourceTree = ""; }; - 2D0234A2B74A9200BA51E2B8E7FA1D7E /* Support Files */ = { + 2E02A68BC37D46325DB59A188B81A56F /* Pod */ = { isa = PBXGroup; children = ( - 48F55A96F4B39F4EAC7C991A98C77C75 /* UMFontInterface.xcconfig */, + 883B616E238DD29BBF97C1068FE05195 /* LICENSE */, + 01C7091A1372E1B06A1D9C51EF288892 /* react-native-orientation-locker.podspec */, + 8FFBE1BD43F2D5789EB599A1D15ABE08 /* README.md */, + ); + name = Pod; + sourceTree = ""; + }; + 2F1ED2E28CF717999648E8416A5867F9 /* Support Files */ = { + isa = PBXGroup; + children = ( + B04662DD8F156C1AE56B5303BFE1AF0E /* FBLazyVector.xcconfig */, ); name = "Support Files"; - path = "../../../ios/Pods/Target Support Files/UMFontInterface"; + path = "../../../../ios/Pods/Target Support Files/FBLazyVector"; sourceTree = ""; }; - 2F922BAF3D4A574D27A4D9E130CEA65F /* Pod */ = { + 300D8F9DD5DF0661A5212DB05E29B004 /* internal */ = { isa = PBXGroup; children = ( - 4BFC212667A54603AA17C665FB0114DB /* EXFileSystem.podspec */, + 43E2AD3911FF9A4E612FA46ED62FD35D /* experiments.cpp */, + C3CF3BCDC0EF632B589861EFDDA5B31E /* experiments.h */, + 77FCC32F6B908133422A8A76316F670F /* experiments-inl.h */, ); - name = Pod; + name = internal; + path = yoga/internal; sourceTree = ""; }; - 2FAFA49D284A500EBFAF1BBF89AFBF45 /* RNAudio */ = { + 3013898BA23D8032F20B25192DB1B634 /* Support Files */ = { isa = PBXGroup; children = ( - 092912E596DAA8B4FDD2F0531DC4A9F5 /* AudioRecorderManager.h */, - 5029EBDDAA64A35DF8B5D51EE9343462 /* AudioRecorderManager.m */, - ADB99E5C95685628E4E0DA4588E30387 /* Pod */, - 28B44C26D86A33BFD14E8855795F18EE /* Support Files */, - ); - name = RNAudio; - path = "../../node_modules/react-native-audio"; - sourceTree = ""; - }; - 2FE5455556F3ED539953E985A4638D2F /* Support Files */ = { - isa = PBXGroup; - children = ( - 5C7B5BE4CD05BC18AAF33DE7CB9B56F1 /* UMFaceDetectorInterface.xcconfig */, + FF1FBD259367ECDB38F0E731A0E0D4CC /* React-cxxreact.xcconfig */, + C009CD0F0640F9686BEB171B032C2C71 /* React-cxxreact-dummy.m */, + 07F75FBFC7731268C1D8D4D2F3601DCD /* React-cxxreact-prefix.pch */, ); name = "Support Files"; - path = "../../../ios/Pods/Target Support Files/UMFaceDetectorInterface"; + path = "../../../../ios/Pods/Target Support Files/React-cxxreact"; sourceTree = ""; }; - 30394A8442923BE02C34230D90B8CA76 /* Pod */ = { + 313BDB479647CCD1D56FF3751CBD7C13 /* Pod */ = { isa = PBXGroup; children = ( - 8C783C133CDC69E176158DB13D9002C3 /* LICENSE */, - 84F4F2DE720F6E48B05618230068F5E2 /* README.md */, - BDC9BF17534C2192F7CE64EB2181B71A /* RNVectorIcons.podspec */, + 25EAC7CF8D48A25BC09B2F0275D86E72 /* LICENSE */, + 8CE8905389FD603B0F5B476C5AE400DA /* README.md */, + 48225D2AC73787066D8B6EB55129E347 /* RNImageCropPicker.podspec */, ); name = Pod; sourceTree = ""; }; - 30C7CB72CC27EE12E34E5CCA1FA39E1A /* Text */ = { + 317145A40C68B0FB6EA06FB9329EBCC4 /* Pod */ = { isa = PBXGroup; children = ( - FD4A677E9CA49D39C842FBC218DB538D /* NSTextStorage+FontScaling.h */, - CA9C45BB0012BF09029A9FB62FCE5839 /* RCTTextShadowView.h */, - 381ACA616782C0C9F41DD974A4BF5521 /* RCTTextView.h */, - 89A375CD79FD4E7A782B78ADFD3CED41 /* RCTTextViewManager.h */, - ); - name = Text; - path = Libraries/Text/Text; - sourceTree = ""; - }; - 314CEF9ADCBC246FB295FE7FA286A72E /* instanceid */ = { - isa = PBXGroup; - children = ( - CBF9C1AF14974A9BB1391E68B7D00804 /* RNFirebaseInstanceId.h */, - 3453EF6400BE072C1F53D0DBA6DF2F86 /* RNFirebaseInstanceId.m */, - ); - name = instanceid; - path = RNFirebase/instanceid; - sourceTree = ""; - }; - 3294D59FC68125048968BDB9C1B1E31C /* Text */ = { - isa = PBXGroup; - children = ( - 9DCAE61686543EFD1D0B3E045B7F0C5C /* NSTextStorage+FontScaling.m */, - 6D700A18FFE467C32FA8C069C33E1628 /* RCTTextShadowView.m */, - 4B9A98874D6F22FE61A9BC8DE833777F /* RCTTextView.m */, - 442021A1597754B5A40B5273C97AC21C /* RCTTextViewManager.m */, - ); - name = Text; - path = Text; - sourceTree = ""; - }; - 32A40E5B8F107DC4F3773808AE0A4826 /* Pod */ = { - isa = PBXGroup; - children = ( - 4C9F38946A84FEF131990F464DD814AC /* api.md */, - F26937D95B0B94060660B726E8BA8A61 /* LICENSE */, - 020312D89B043D8BDC95D91DF532DD89 /* ReactNativeART.podspec */, - 64CDDD1473B481651A4A38971F237725 /* README.md */, + 307E93E79DB8B9F66EC9B5653D8CFBE4 /* UMFileSystemInterface.podspec */, ); name = Pod; sourceTree = ""; }; + 31B80F92F3D17108BB7002557795AE60 /* Inspector */ = { + isa = PBXGroup; + children = ( + B526EDD8BACBB94EF557CA9D6F520738 /* RCTInspector.h */, + F43ADA9AC1135C45B508116C9918745C /* RCTInspector.mm */, + 946E76F08905CA9E7CBDE530F40F6C56 /* RCTInspectorPackagerConnection.h */, + A7DBB9C1159118D927EA6931587997B3 /* RCTInspectorPackagerConnection.m */, + ); + name = Inspector; + path = React/Inspector; + sourceTree = ""; + }; + 32B003E72110A27E9782B4668772AF2E /* UMFileSystemInterface */ = { + isa = PBXGroup; + children = ( + 86D2327908DB8A5753C0024311E12EF1 /* UMFilePermissionModuleInterface.h */, + 4B5E596084900C526779079F4796DA51 /* UMFileSystemInterface.h */, + 317145A40C68B0FB6EA06FB9329EBCC4 /* Pod */, + B355283A56B93E39EF500AEB1971B637 /* Support Files */, + ); + name = UMFileSystemInterface; + path = "../../node_modules/unimodules-file-system-interface/ios"; + sourceTree = ""; + }; + 32B88E291D46F4791CC8F4F6AAD20F5F /* RawText */ = { + isa = PBXGroup; + children = ( + FD25C0A52FF914112C3804C37A8386C2 /* RCTRawTextShadowView.h */, + B02E191D7CCFB36F49F8903DA1DB0940 /* RCTRawTextViewManager.h */, + ); + name = RawText; + path = Libraries/Text/RawText; + sourceTree = ""; + }; + 3300A1BF1ABF83CA0152D302535C08B8 /* Pod */ = { + isa = PBXGroup; + children = ( + 1D666A6FD7D11F33C1D59A0AE90F113B /* RCTTypeSafety.podspec */, + ); + name = Pod; + sourceTree = ""; + }; + 3369894A4431BE986BAC1FF1E2A58C10 /* EXWebBrowser */ = { + isa = PBXGroup; + children = ( + 7B95F2071F2159579CD2F412BD046134 /* EXWebBrowser.h */, + 08269F5E1ADC589B6299F651DDDCAA79 /* EXWebBrowser.m */, + 63FD51433F7890571C1C2A7C64099E50 /* Pod */, + 200C7008D2FF4CC22A32D0C19B49F4DE /* Support Files */, + ); + name = EXWebBrowser; + path = "../../node_modules/expo-web-browser/ios"; + sourceTree = ""; + }; 343E456B2AB936C3DDC90D1F4B20237F /* MethodSwizzler */ = { isa = PBXGroup; children = ( @@ -8710,40 +8771,10 @@ name = MethodSwizzler; sourceTree = ""; }; - 346883E1082D4AD13BD0E6A9100D53E2 /* RNScreens */ = { + 3448624F7CE383C33F272BC6752E99F9 /* Pod */ = { isa = PBXGroup; children = ( - B98DC9B757DDBDD7FF014553ACFAA046 /* RNSScreen.h */, - 51D22D32DAA9E8BE62F7DEB0FE53BDBC /* RNSScreen.m */, - DD1CDA00BBFDDBECA744F70CED75D8C3 /* RNSScreenContainer.h */, - 4746C1D78EA15092C8E1E4698ECA412A /* RNSScreenContainer.m */, - B2788A49B48ED49B9BF95A866CEE78F9 /* RNSScreenStack.h */, - AAE3EEEEF1FE96C10FCD6AFDE416AC56 /* RNSScreenStack.m */, - 742AD571C5BE761827EEF22146A46463 /* RNSScreenStackHeaderConfig.h */, - F45409DE9A47A23DF8D5B05A0A9E2EE4 /* RNSScreenStackHeaderConfig.m */, - 54F0BD9D10142F18A4372C35E2175906 /* Pod */, - 16FD55028A6D1E14608969F18D1DF980 /* Support Files */, - ); - name = RNScreens; - path = "../../node_modules/react-native-screens"; - sourceTree = ""; - }; - 349FB124F27443ACDEDF515BE46A5907 /* Pod */ = { - isa = PBXGroup; - children = ( - 22B84C18CFDBA11F6CB66E08DAAAE066 /* LICENSE */, - CD23B50D69689A33773F3E14C92A1EC6 /* README.md */, - 03E28836948D6527F365ADF367C7BC50 /* RNBootSplash.podspec */, - ); - name = Pod; - sourceTree = ""; - }; - 34B3DAEEBE6D6B20D6E4A0618652AAC5 /* Pod */ = { - isa = PBXGroup; - children = ( - 416FE2C65F8217355D88853C265C10E3 /* LICENSE */, - E010BC1E0AD9F30DC22FA900D5A86D52 /* README.md */, - 0D088E0F5568643AE3AFB3E177FE0508 /* RNDeviceInfo.podspec */, + 640AC21085460BE3C3B9E6F84AE66236 /* Yoga.podspec */, ); name = Pod; sourceTree = ""; @@ -8771,84 +8802,101 @@ path = GoogleDataTransportCCTSupport; sourceTree = ""; }; - 3538D898878867CC7C2B9EE5BA31B25D /* Support Files */ = { + 35E40B190F8EA3F189B9E10C78E61ADF /* Support Files */ = { isa = PBXGroup; children = ( - F61149C7CB39C9ACF3BF0270530309EA /* react-native-cameraroll.xcconfig */, - C816790EB4E6ABA37CC24D1DABA196A5 /* react-native-cameraroll-dummy.m */, - 53B571D9D97B54417BBF7937F3A31CA4 /* react-native-cameraroll-prefix.pch */, + 934F0CB2BDAF35D7A5F97101FF54BDC0 /* EXHaptics.xcconfig */, + 309EEEB47263874F5B9CEE95977E403C /* EXHaptics-dummy.m */, + 0C089E300BFE39AD22D64D46AF91D37C /* EXHaptics-prefix.pch */, ); name = "Support Files"; - path = "../../../ios/Pods/Target Support Files/react-native-cameraroll"; + path = "../../../ios/Pods/Target Support Files/EXHaptics"; sourceTree = ""; }; - 363DE955557012DEB31203CF2FA98D4F /* UMTaskManagerInterface */ = { + 360E848C852E4696A73E53CB1E2FD792 /* perf */ = { isa = PBXGroup; children = ( - D7CA1630494FD978E0C84BA8940B4C84 /* UMTaskConsumerInterface.h */, - 0C172CA1DB4E50F47F4A2EB2654A3364 /* UMTaskInterface.h */, - 05553CE576B9B4B0EA5F0A96C92D6F48 /* UMTaskLaunchReason.h */, - D73BFDE40792D5D4DE76E754D057B8EF /* UMTaskManagerInterface.h */, - 3566F3E246CB4E6EC676ED2CE9303D83 /* UMTaskServiceInterface.h */, - 269D302DB28B993E44C3F65D007A2B8F /* Pod */, - 9C6E0689F0992E3156F7D119DC2BC048 /* Support Files */, + E17B813ADEBBCD5930DBDE808FA18B7D /* RNFirebasePerformance.h */, + 4A196FC642D11153FA3959D4663139F0 /* RNFirebasePerformance.m */, ); - name = UMTaskManagerInterface; - path = "../../node_modules/unimodules-task-manager-interface/ios"; + name = perf; + path = RNFirebase/perf; sourceTree = ""; }; - 36EF1310E1777548953812BCC3F578DB /* turbomodule */ = { + 368FA6011CF7D4B028E06862F225EEA7 /* ViewManagers */ = { isa = PBXGroup; children = ( - 4E2C1DF0F339935B99F535080324AAAA /* core */, + EA8ED48F4CD56159769C24D531D244DB /* ARTGroupManager.h */, + C717429966806B6A05BBA0A2015DDE84 /* ARTGroupManager.m */, + CC76F7D673A9515F2AA3A9CBC26C6572 /* ARTNodeManager.h */, + 65D56D642AA96CB54D083C3E65A1C9FD /* ARTNodeManager.m */, + 11F0B32660F7804AA40A7BF7880C44FE /* ARTRenderableManager.h */, + 50C793F4190EE80479B132976E5217D7 /* ARTRenderableManager.m */, + 77BDB2B59A28D75A91261233C42ABC37 /* ARTShapeManager.h */, + 94DAEF5EFD04FA4301A2876D5799B235 /* ARTShapeManager.m */, + C1A2899F88ABFCAF79F364273E41EE6D /* ARTSurfaceViewManager.h */, + E96ADA73666CCE525C77F89BF7AB9B68 /* ARTSurfaceViewManager.m */, + 9EDFF0E0FB610A1DE60E52FE94A877F4 /* ARTTextManager.h */, + 766CA1058BE46DE35D0DD26733077C9A /* ARTTextManager.m */, ); - name = turbomodule; + name = ViewManagers; + path = ios/ViewManagers; sourceTree = ""; }; - 37305EAD4B565B9129BA299BA9516759 /* Drivers */ = { + 37A8689E72A9C89036F89374876EC03F /* BaseText */ = { isa = PBXGroup; children = ( - A4F5EA988153E3310EADF516601680FA /* RCTDecayAnimation.m */, - CC0C460DACC6A977B10BD60BD18529C2 /* RCTEventAnimation.m */, - 909C770291972B658838E4A4FA5FD6D1 /* RCTFrameAnimation.m */, - 34D7223FF2AE4853BCFF44A79FBEA6E7 /* RCTSpringAnimation.m */, + 396A93D0FB42E576209E2DFBD6213ACD /* RCTBaseTextShadowView.h */, + 073F30BB95FEBD162501E3C3E40BFE22 /* RCTBaseTextViewManager.h */, ); - name = Drivers; - path = Drivers; + name = BaseText; + path = Libraries/Text/BaseText; sourceTree = ""; }; - 3A6DD217C93AE946CB946B62F0DB3275 /* UMCore */ = { + 389517D3430D88AB692DE5B6C6139C0C /* React-RCTText */ = { isa = PBXGroup; children = ( - CE3C0F03CEBA7D3784CA020DB10A6A64 /* UMAppDelegateWrapper.h */, - CE8DFF2CFED4362D4E5BD0D9912A18DE /* UMAppDelegateWrapper.m */, - 00E88DCCC45AE7E2AD5AD3CF3AB8A7CE /* UMDefines.h */, - 55BD986FFD96FCA3F5000FFA58A44308 /* UMExportedModule.h */, - 528D7A41D5D2F7190F5379FB981B24D6 /* UMExportedModule.m */, - 23505BFC936A84EB00E98DC7A1560F6B /* UMSingletonModule.h */, - 5AABE94E3E1F38B5DAEDF19A46E650F9 /* UMSingletonModule.m */, - E9D6F8AA9511FDAE29A6C31B90EE0A20 /* UMUtilities.h */, - 4504528B8B98692A19E87DAA06BA51AA /* UMUtilities.m */, - A91632BCF57834B6021F6B7E46C47237 /* UMViewManager.h */, - 0A33D132A1E8748CF00DEFBF335C393A /* UMViewManager.m */, - 51D4543BDE0F722060925E5104930E38 /* Pod */, - 03AEB85F9F868FD0DA14DDB9EAD57A2A /* Protocols */, - 1C14DD394AEF7F2C3DD32686DADF15BC /* Services */, - C2FAA3BD5084B2838693FB54C6B68759 /* Support Files */, - A3AC0F283B6772CE8DBABCBAD1550559 /* UMModuleRegistry */, - 6715845F6A74CC42E68752AAA382B708 /* UMModuleRegistryProvider */, + 8F5D9296BC55DECE24B717234E67D3BD /* RCTConvert+Text.m */, + 33436A67057DC5539D341F791AD7A813 /* RCTTextAttributes.m */, + D670BDEF6E2F3CF45F6FB41A8DF9B218 /* BaseText */, + 91D5A390A559C7A563C8012E9B427E18 /* Pod */, + 42E251A0F997EF862D1F49A93ABA1C48 /* RawText */, + AEE6BCF3029E288F9DE42C7767763BE4 /* Support Files */, + E3FB41BF719BF7E3FBFEB9011F4108D1 /* Text */, + 9FE4278C387F203665CFD1F24A757BDF /* TextInput */, + B4AD15DC7E962959F7085EDD00472074 /* VirtualText */, ); - name = UMCore; - path = "../../node_modules/@unimodules/core/ios"; + name = "React-RCTText"; + path = "../../node_modules/react-native/Libraries/Text"; sourceTree = ""; }; - 3ABE37B2A5B5D1017703D01B967E2829 /* platform */ = { + 38EE548F1F92912DC268DA0AFBD66D3E /* React-RCTImage */ = { isa = PBXGroup; children = ( - 481F5EB8B9605BAD3A212C0E6A14D6AF /* ios */, + 718C0BCCD01612A70B7757E88AA0B55B /* RCTAnimatedImage.m */, + 3FD06CCB831E6482EE83DEA12754ACEE /* RCTGIFImageDecoder.m */, + 81AB4D42E5C4E42B829E5593C9F448A4 /* RCTImageBlurUtils.m */, + 908159DCF7F75519610203786DF35A94 /* RCTImageCache.m */, + 56AF97F63EFE431F1C013A7EAE85414A /* RCTImageShadowView.m */, + 3568E84483FD71FD9A50EB376435E211 /* RCTImageUtils.m */, + 753710D90975AC53075478A5BA9CC7A0 /* RCTImageView.m */, + CE346E52AE3F8F80411B4E8D4A0A9C23 /* RCTImageViewManager.m */, + E2305B9E96A28125190EB6022397B0E5 /* RCTLocalAssetImageLoader.m */, + E0561C75A1A2ACC253357267929397E0 /* RCTResizeMode.m */, + 8C807DEA628CB2093341AB770184F3A1 /* RCTUIImageViewAnimated.m */, + DBA8EE08C4CE7B4447EBCB00B156166C /* Pod */, + 8B5AD026FFCF7248B761CA14ECC96B20 /* Support Files */, ); - name = platform; - path = turbomodule/core/platform; + name = "React-RCTImage"; + path = "../../node_modules/react-native/Libraries/Image"; + sourceTree = ""; + }; + 3AC768FBC10D1232F6C2EC140821EB29 /* Pod */ = { + isa = PBXGroup; + children = ( + F875A442D739A43C44CC221609DC7CE8 /* React-RCTLinking.podspec */, + ); + name = Pod; sourceTree = ""; }; 3AFE7C92461044B160C47A6C0AAAB752 /* Support Files */ = { @@ -8861,124 +8909,89 @@ path = "../Target Support Files/FirebaseInstanceID"; sourceTree = ""; }; - 3B8E3B8310A9761D97B036B664AB6642 /* Development Pods */ = { + 3B13B90CDA2B31B9F11BF38DB54F354B /* Support Files */ = { isa = PBXGroup; children = ( - 54D25922B71E94BF96BB8C6159B8160C /* BugsnagReactNative */, - 3BEA292DCD4FCE47957035DDF7494ACA /* EXAppLoaderProvider */, - 0A3E3B2D1229ED6BF7A9ED5F49CBDF90 /* EXAV */, - C7967BFFF3A338D429F40E394E17EADD /* EXConstants */, - EEDA288E30CD4D92182E34D7630D2AFB /* EXFileSystem */, - 95D9CAAA40A3AA924C880A356DCB7A8C /* EXHaptics */, - B14A2F05EEEF97F27AD91E8FB7193FC4 /* EXPermissions */, - CC2B7C8C7C4C425D896330B3A6409B5D /* EXWebBrowser */, - 93411AE2EC9417B5926273B1F9F3C52B /* FBLazyVector */, - CC8FB1C7DC5BDEB15103B1C3BA57F2F8 /* FBReactNativeSpec */, - E54E1206FDAD0776884A330C004E9D4D /* KeyCommands */, - F4FA8A34E9B6AB0416DBE41356FAEF6F /* RCTRequired */, - 2906B673420DE27AD031CC12187CFD3A /* RCTTypeSafety */, - C5BD07B39DD44DCB625D542B1BB62DE3 /* React */, - C6B8E05DFA9E10EE3E91BB788A82AB18 /* React-Core */, - 9327B84E269F861BA74B50FFBDED029C /* React-CoreModules */, - 699A7F6FEE77384A470582467BA8F8FD /* React-cxxreact */, - FDBE91367089EBA0DD35C404019AD304 /* React-jsi */, - A9AAB25083F953E39B94C4AFD2123729 /* React-jsiexecutor */, - 190000440D2B2F78E8E8629574D46D78 /* React-jsinspector */, - 59C4084C55B311D582B8F2AB19EB4DAF /* react-native-appearance */, - 4187B6BF7840BE4E67F1DF71C4E731A6 /* react-native-background-timer */, - 4C23BBBC87A4AF2938D887AC9A771E4B /* react-native-cameraroll */, - 473A0C3A52066FCE8512CF3EA8F09A7C /* react-native-document-picker */, - 431BE4D555B96D86E445D1B3B2211C18 /* react-native-jitsi-meet */, - 28CC649E27049D93FA6057E51AC4E00D /* react-native-keyboard-input */, - 56E48ADD0DD62393E70D31E266946EAA /* react-native-keyboard-tracking-view */, - 1BCC5F376EA513FBAAA8910005A39683 /* react-native-notifications */, - 1F7361EAE62CEA2C59B0CA849C6C0A8B /* react-native-orientation-locker */, - B24D1AC6081814ABC339B9FD014420DB /* react-native-slider */, - ACED67ED659C9BB0D357FF7AE96A4D01 /* react-native-webview */, - 965DAFB7CECF9893CEEE164FFBD063A5 /* React-RCTActionSheet */, - 5757BC14C40FA4486E86671677CE66E6 /* React-RCTAnimation */, - BCD4F09CB8541EFA2299F46C73159285 /* React-RCTBlob */, - BF15F1AF394461F42C2FBEBC430246C6 /* React-RCTImage */, - 47652663F23B21C29BCA7EA296425D5E /* React-RCTLinking */, - 4F55A5C7318B9D75EF48B2C786891FDD /* React-RCTNetwork */, - 00CD85CBE2D1516BB19D0B71A338EA58 /* React-RCTSettings */, - 683EC08466ADA749EB8EFA21B746702C /* React-RCTText */, - A275E3529F30A3D4E1B7C0031D1584C5 /* React-RCTVibration */, - 784E5E7F8F4542CBBB55C8C552589683 /* ReactCommon */, - 08CE3DA1A4FB807106FA238304FC603C /* ReactNativeART */, - E68BCF80D42D7A14E844E1AD0F7F7038 /* rn-extensions-share */, - E3B764813ABD1DEBCE86A12320267C37 /* rn-fetch-blob */, - 2FAFA49D284A500EBFAF1BBF89AFBF45 /* RNAudio */, - 1F4CD791BE414085A624AC9E2D7DD5C6 /* RNBootSplash */, - 06FCFB4E6C7A47D9C15473083F0952B5 /* RNDateTimePicker */, - FC9B056BA7A6774D596805220406B0FC /* RNDeviceInfo */, - 5B27F731A01C6563DB114BCA70BC9A64 /* RNFastImage */, - 830F002DF6C8BD3A03A31B98A8BB353C /* RNFirebase */, - E20DAFBFE7A16C34AE533994497E1F0D /* RNGestureHandler */, - 4D993293F8C83AE13EF5802A1EB4250F /* RNImageCropPicker */, - ABB021697D25083153497018FF17DF03 /* RNLocalize */, - D5204386F21F6A1D5961BFC81393D35E /* RNReanimated */, - 1CF1AF8139B147A395716AA7146EAB27 /* RNRootView */, - 346883E1082D4AD13BD0E6A9100D53E2 /* RNScreens */, - C308EDD1EF5495B8E02799DF28688E82 /* RNUserDefaults */, - E1E5FDF77007B39BC42A45419E99B1EC /* RNVectorIcons */, - EB09648639C62D24CD03AE79FAB0992D /* SocketRocket */, - D07820F9EB8A59D04FB04118D35F629E /* UMBarCodeScannerInterface */, - D7A5EFE146F19CC7A04C5062998153E0 /* UMCameraInterface */, - 6B86A18EE0FA37336C81D70D562AD3F9 /* UMConstantsInterface */, - 3A6DD217C93AE946CB946B62F0DB3275 /* UMCore */, - 08BB031C2A285BE9CA8D745A0A9628DE /* UMFaceDetectorInterface */, - C604059DBBBC3FF382B1B8F0BD2E44F9 /* UMFileSystemInterface */, - 6C3EEA1A66E8B14B065D5ECA6C47B416 /* UMFontInterface */, - 4C85D9FD782DE2348D614ECADF418474 /* UMImageLoaderInterface */, - 9AD74CFB2E93B40F6AB4ECB02662C4C7 /* UMPermissionsInterface */, - FCD1A18E20E95E3B95C4D591C469B19D /* UMReactNativeAdapter */, - C3EC3C917383E407DFB6ADD943102508 /* UMSensorsInterface */, - 363DE955557012DEB31203CF2FA98D4F /* UMTaskManagerInterface */, - EF945DBC7C44F31C01F5FE9AE804302B /* Yoga */, + 8597914A0A94EB4606CDBF793C5CBF47 /* React-RCTNetwork.xcconfig */, + 0D2DE9827B9D6AC0450FC8319D97BE71 /* React-RCTNetwork-dummy.m */, + 06D6EDCFEB477FDB58E6F2DC33693C91 /* React-RCTNetwork-prefix.pch */, ); - name = "Development Pods"; + name = "Support Files"; + path = "../../../../ios/Pods/Target Support Files/React-RCTNetwork"; sourceTree = ""; }; - 3BEA292DCD4FCE47957035DDF7494ACA /* EXAppLoaderProvider */ = { + 3B823CBB21B5CED31FABC5AF18C0FB78 /* UMSensorsInterface */ = { isa = PBXGroup; children = ( - B0DFBEECC237981FDC5C491E881652EC /* EXAppLoaderProvider.h */, - DE216113D5C1728CD2DCC5081A37AE41 /* EXAppLoaderProvider.m */, - 5E5D4EA10804B56EFB8AD9FD396272C5 /* Interfaces */, - FEBDA8775B07827D5F8047F8DA05F7C5 /* Pod */, - 16CD6EEC6D1DC335C55C2BFE8CE2146B /* Support Files */, + 98DEBDD5CA80657E6FED84E7AC4B3E3A /* UMAccelerometerInterface.h */, + 94C83077D3F6110B022A2FA2C7D76C2B /* UMBarometerInterface.h */, + 8AF2214A7EFA1ED75BCCF7921E59945B /* UMDeviceMotionInterface.h */, + E5AAC4B8295FB697520CC3447D3B193C /* UMGyroscopeInterface.h */, + E0C4770D37FD4D405BFD13ED0E6940C0 /* UMMagnetometerInterface.h */, + 2CE90885A509D3BF4CCC47D823B2AA2F /* UMMagnetometerUncalibratedInterface.h */, + B734DA4B29DF05882698BCAB7BA1E644 /* Pod */, + 26F6947958CFE002BB52415369EADB38 /* Support Files */, ); - name = EXAppLoaderProvider; - path = "../../node_modules/expo-app-loader-provider/ios"; + name = UMSensorsInterface; + path = "../../node_modules/unimodules-sensors-interface/ios"; sourceTree = ""; }; - 3C38C9167E5BE2FC87CD03CE76FEC6BF /* Pod */ = { + 3BA6BBB3172810A062FEB0EDBEA87F8B /* Support Files */ = { isa = PBXGroup; children = ( - 464D3948F302B6216BBEA7DCC99ADE3F /* React-RCTNetwork.podspec */, + 431B63A00C1A747B8D7A0B78E519D23B /* UMFaceDetectorInterface.xcconfig */, ); - name = Pod; + name = "Support Files"; + path = "../../../ios/Pods/Target Support Files/UMFaceDetectorInterface"; sourceTree = ""; }; - 3C8A08BEBCD5BE1F63B0ACBBCBE2CC84 /* UMViewManagerAdapter */ = { + 3DC6AA6EEC21019CBE84CA19D92DB3B9 /* CxxModule */ = { isa = PBXGroup; children = ( - BDC3B5646EFDB78EC0F56B9F584539B7 /* UMViewManagerAdapter.h */, - 09D030101CDE9E6A70BBF7B7CF9C0D54 /* UMViewManagerAdapter.m */, + 2F363F579B0872A1071139741255EA95 /* DispatchMessageQueueThread.h */, + 4C2021EE3A7AF4A4B2DE119F7DBCB267 /* RCTCxxMethod.h */, + 539B7B17099D8AA15550991441616A78 /* RCTCxxMethod.mm */, + 5CB5CDF7512734C433D9A729E8A6624C /* RCTCxxModule.h */, + 716421CC6BDFD365A8FA8541CF195B56 /* RCTCxxModule.mm */, + 10D06A03790FEE2282893BD2C4456C74 /* RCTCxxUtils.h */, + D1C4C7B631E523D59084AD135A2BFFBD /* RCTCxxUtils.mm */, + 006460EA0650490D0C00C3D9A1657D8C /* RCTNativeModule.h */, + 9F6CD9F6F458EF420C5CD6FEEC5CF91B /* RCTNativeModule.mm */, ); - name = UMViewManagerAdapter; - path = UMReactNativeAdapter/UMViewManagerAdapter; + name = CxxModule; + path = React/CxxModule; sourceTree = ""; }; - 3E53E61BF9CA6766D93810B52513883B /* Pod */ = { + 3E7148366E324CA1B03CCE202A91296C /* messaging */ = { isa = PBXGroup; children = ( - 3FDD7BD01854E280BA29253781EF1020 /* LICENSE */, - 283E32212092845B782239CA79F27169 /* README.md */, - F031D0FBBAF34DFF53570D9DC4CE8EF3 /* rn-extensions-share.podspec */, + AE82711F9579DB3A866AA62685BD4259 /* RNFirebaseMessaging.h */, + BA1A44C2FD243D93836FBBC75A329E00 /* RNFirebaseMessaging.m */, ); - name = Pod; + name = messaging; + path = RNFirebase/messaging; + sourceTree = ""; + }; + 3E771404822C50D76A3F1D65A99950A4 /* RNRootView */ = { + isa = PBXGroup; + children = ( + A20E1F2D1B98BFF885E55A7C9EEC21F6 /* RootView.h */, + 83B2E30D5CA08A472F9A15613DB9A49D /* RootView.m */, + D16064228FB866B47AEC5E7A91793ED7 /* Pod */, + 803D0E9C717944436BD8F7A1FF8D47EB /* Support Files */, + ); + name = RNRootView; + path = "../../node_modules/rn-root-view"; + sourceTree = ""; + }; + 3F1643930A6818C985E46D2EC01A2886 /* functions */ = { + isa = PBXGroup; + children = ( + FB5BD38277E6E2A60D5971113A65EC76 /* RNFirebaseFunctions.h */, + 3F11A95E82F274CF19A53C219FF61170 /* RNFirebaseFunctions.m */, + ); + name = functions; + path = RNFirebase/functions; sourceTree = ""; }; 3F6F28E6BE7C21FFF5BEC8EA83FCA9A1 /* Resources */ = { @@ -8989,66 +9002,115 @@ name = Resources; sourceTree = ""; }; - 3FCCB5A1F0FC1CC1FE66170869C28098 /* Internal */ = { + 3F8AFBE5C7B6593ABCCCF85C3591EFD2 /* Support Files */ = { isa = PBXGroup; children = ( - 4A6D5797739082382F344CC9DA33F8AA /* NSRunLoop+SRWebSocketPrivate.h */, - E33FA78EE29F5439A3878F4D9271F84A /* NSURLRequest+SRWebSocketPrivate.h */, - 9910761C70985104D9B9EB9569F9E898 /* SRConstants.h */, - 95066CB4C83D6FFBB006FDCF11B972C3 /* SRConstants.m */, - 4FE45F240D21C60CC5F8472557255580 /* Delegate */, - 59629674EF3DCF1AEEFC9BEEB2F97CC0 /* IOConsumer */, - E00C892DDDDD795E68DEBDF5D75B62BD /* Proxy */, - FF6393C7FEBCF6C83957ED4FFD82F8DB /* RunLoop */, - 118DD85C31D40C3A854FE862B669F3F8 /* Security */, - 1A75BC43B08FD77BD4D11A1BE6D2D74C /* Utilities */, + DC70E3B215AAF282FC476C5BD4A9CCFF /* react-native-jitsi-meet.xcconfig */, + D4C4F7CDE8BD004BD46B396CCD9D8234 /* react-native-jitsi-meet-dummy.m */, + 0029453304E7C56ECEA5D8239AE01BDA /* react-native-jitsi-meet-prefix.pch */, ); - name = Internal; - path = SocketRocket/Internal; + name = "Support Files"; + path = "../../ios/Pods/Target Support Files/react-native-jitsi-meet"; sourceTree = ""; }; - 40041380B1E152C858179BCBFF04F6B1 /* KSCrash */ = { + 3FBBB610AEBE0AEDA6555EC9C78E60CD /* UMModuleRegistry */ = { isa = PBXGroup; children = ( - 19DBDC98B1E75E1D929F706DDE7194BF /* Recording */, - A6CB6F98879D38E4BB74ECD6E5CD581E /* Reporting */, + 50037523A2CE9244EFC6483F29D4B6F8 /* UMModuleRegistry.h */, + FC8C100F84609F49CA2869F2C9F9CBC8 /* UMModuleRegistry.m */, + C84407C896CACB04FED00E8870233C34 /* UMModuleRegistryDelegate.h */, ); - name = KSCrash; - path = KSCrash; + name = UMModuleRegistry; + path = UMCore/UMModuleRegistry; sourceTree = ""; }; - 40C8988530715169DDAF9B2CC1C7BC58 /* Pod */ = { + 3FDBD02648068C60D6B0A15550388962 /* Drivers */ = { isa = PBXGroup; children = ( - 47A0B5428EC85D998EECAFED9CBCC8A4 /* React-RCTLinking.podspec */, + F059F4F7C1EA482C86B1E73AF4D193EB /* RCTDecayAnimation.m */, + BC72CD5189DE683C7FAE0F54020CACD1 /* RCTEventAnimation.m */, + 49D996D4E9E3C16478D7D694F97206A9 /* RCTFrameAnimation.m */, + D17A82E1B8D80E44CA11B7579813C374 /* RCTSpringAnimation.m */, + ); + name = Drivers; + path = Drivers; + sourceTree = ""; + }; + 41E02584B247CCB09F985F7BEFB11908 /* Pod */ = { + isa = PBXGroup; + children = ( + D3CEB80305B48975A47AD18BFFEA7611 /* React-jsi.podspec */, ); name = Pod; sourceTree = ""; }; - 4187B6BF7840BE4E67F1DF71C4E731A6 /* react-native-background-timer */ = { + 42E251A0F997EF862D1F49A93ABA1C48 /* RawText */ = { isa = PBXGroup; children = ( - CD9F66BA347806853E7A440558DC2009 /* RNBackgroundTimer.h */, - C298CF9BB7C65BDE611C32EC7BA726A7 /* RNBackgroundTimer.m */, - A7313213E85DF14B7AEF2FE6CE025A3E /* Pod */, - 1782748847A2D62EFCEE88548ED95A51 /* Support Files */, + 4E63400ED41748BB889958F91DF4A375 /* RCTRawTextShadowView.m */, + 99CCC935F2D2DCE7B8B37E98E8185E00 /* RCTRawTextViewManager.m */, ); - name = "react-native-background-timer"; - path = "../../node_modules/react-native-background-timer"; + name = RawText; + path = RawText; sourceTree = ""; }; - 431BE4D555B96D86E445D1B3B2211C18 /* react-native-jitsi-meet */ = { + 4341C1CDF41F29220B34B3CC69B3B834 /* Source */ = { isa = PBXGroup; children = ( - ED2BF79538115915C5EC8BA797969E2D /* RNJitsiMeetView.h */, - 2D371E92E90BEE8CA11BFF000CBFA5CD /* RNJitsiMeetView.m */, - 101E0C5F993CFDA8DE70331408FD6286 /* RNJitsiMeetViewManager.h */, - 56EDCB32DE75F36ED96B23810BB54455 /* RNJitsiMeetViewManager.m */, - C973A7C0B69253E4BCF2A3C49F86C7DF /* Pod */, - E1FF334D3267351D8C527A09A547241C /* Support Files */, + A175373ED871D8A311F07D9C8124C01E /* BSG_KSCrashReportWriter.h */, + EF6FDED33F0B567F1794633657BA18EB /* BSGConnectivity.h */, + C0AA4E342B4DA2D89F6115831A3AEA8D /* BSGConnectivity.m */, + 1BE069BE8C0674EF74ED966F92BA0754 /* BSGOutOfMemoryWatchdog.h */, + 7B416D61CA87084064E2F42BD543B8AD /* BSGOutOfMemoryWatchdog.m */, + 11DDC617B58C7EB6C414E4D661BEFABE /* BSGSerialization.h */, + 8B24221EA56FB96FD49E83E221AFA2F1 /* BSGSerialization.m */, + 4BF281BE59CC7E587D8E86F93601EE42 /* Bugsnag.h */, + 917CDA9ADC6D80ADFAAAF0974BA533E9 /* Bugsnag.m */, + C7F96682DD85D4BF92F99631282708FD /* BugsnagApiClient.h */, + E6C302336BF2042013EEBA41967DFDBD /* BugsnagApiClient.m */, + 9B8E528E0769D9EDD4AA2875221D0FC2 /* BugsnagBreadcrumb.h */, + D48DA90B6A9D843B63A7579FA2C7E972 /* BugsnagBreadcrumb.m */, + 8C0EF90CBF2D12C653918BD3F6E38EFF /* BugsnagCollections.h */, + 299DE3575A6A766F8259A86B25064EA8 /* BugsnagCollections.m */, + C24D0CD392A5C3559F02C3375E142CF4 /* BugsnagConfiguration.h */, + 2ED4F97DE63B1EE66CE94FD217229288 /* BugsnagConfiguration.m */, + C195B26A91001B997F2E0007A9E2C599 /* BugsnagCrashReport.h */, + 816C0B31B2C064EF1BD1EE2C047B6A44 /* BugsnagCrashReport.m */, + 2967FE25DC0A47F8F883D96F5B771EC7 /* BugsnagCrashSentry.h */, + E1FFF77D872452CBB7158389EFFA898E /* BugsnagCrashSentry.m */, + 2B26CF4A24F14DA46F4CBBE49C2E878D /* BugsnagErrorReportApiClient.h */, + 1A29891C6206BC22C536908B9B91F548 /* BugsnagErrorReportApiClient.m */, + AD1BBA375D2CAFC79E7B546BC5AD24F7 /* BugsnagFileStore.h */, + 830487E1CCB4D4387A8D80D3ECFD96F3 /* BugsnagFileStore.m */, + 39639DEFAB37B167C11BA5145D71E714 /* BugsnagHandledState.h */, + 8B37866CCEB6DADDF2FF416FCB47D611 /* BugsnagHandledState.m */, + 1D08135C440198B989A028E3E509A0A3 /* BugsnagKeys.h */, + 7CDBCF3709FCB8AE98B0B388322F0A1B /* BugsnagKSCrashSysInfoParser.h */, + A2F41F885500B1838C11CA05CCE6114E /* BugsnagKSCrashSysInfoParser.m */, + 452598C78BFE80FC4D5CA6FEC831CFD6 /* BugsnagLogger.h */, + 557B26123DD659C929CE930A4321BFD7 /* BugsnagMetaData.h */, + 599D8A86884CC391ADA002B37D40D8D3 /* BugsnagMetaData.m */, + 322571C45B804E9A539D80A85896A748 /* BugsnagNotifier.h */, + 9055FF3A18019923DF5C754051CB78B9 /* BugsnagNotifier.m */, + 6ECBB2ECFCC801807C5BF343D6867656 /* BugsnagSession.h */, + DD1ACDA8D6069E48780F82588482CD67 /* BugsnagSession.m */, + 0CAFC812CFBEC4222B769385DF27E252 /* BugsnagSessionFileStore.h */, + 904D642278F8E880B2DDEF5EB580F9CB /* BugsnagSessionFileStore.m */, + A5757EC58B549528F0E8386F2A12F2C1 /* BugsnagSessionTracker.h */, + 48DEE3CBA13B8FCBBD36CA46389BF087 /* BugsnagSessionTracker.m */, + 209C16039DBEA1AE8E1BB62DA5B75406 /* BugsnagSessionTrackingApiClient.h */, + 0F582AF6EFF217637358B4EB1B0531DA /* BugsnagSessionTrackingApiClient.m */, + F1BC5E1AB6047D4F7ADF0D36A29B43F5 /* BugsnagSessionTrackingPayload.h */, + B29C092A6C3A3E45D14C9E7AD888587E /* BugsnagSessionTrackingPayload.m */, + 35D3D70B2616F0BEDD4C1DE5AABC1C38 /* BugsnagSink.h */, + 2D8C63FB8E4F9A996BD7B48B9D6AC6A8 /* BugsnagSink.m */, + 8E28EE78E661B7FBF9CD48D10A4B751F /* BugsnagUser.h */, + 8C3CD206B77DAF6F30D5EDDD376B4C99 /* BugsnagUser.m */, + CC83285B8FFE6264303C37DA42984689 /* Private.h */, + 16BD1080D3E0B76978C5D5E6DCE9ED04 /* KSCrash */, ); - name = "react-native-jitsi-meet"; - path = "../../node_modules/react-native-jitsi-meet"; + name = Source; + path = Source; sourceTree = ""; }; 43B8BB7576E1183520FEAE7BF9E22D8D /* Support Files */ = { @@ -9062,22 +9124,59 @@ path = "../Target Support Files/DoubleConversion"; sourceTree = ""; }; - 44016CE76BA6BEE2E0236E69AA94BAD0 /* Pod */ = { + 4412ECB02B7AFF844362743F2D423906 /* Support Files */ = { isa = PBXGroup; children = ( - B473AA844D4B101A825EDAC5BF9D9086 /* UMSensorsInterface.podspec */, + E5DF08856F124A8FCBDECC52ADE5D7C6 /* UMReactNativeAdapter.xcconfig */, + EFF7B02B4FBF637DFBD69D869E0C19D7 /* UMReactNativeAdapter-dummy.m */, + FEE5C7B87CE7FE1D155E18C9FFE07D37 /* UMReactNativeAdapter-prefix.pch */, + ); + name = "Support Files"; + path = "../../../../ios/Pods/Target Support Files/UMReactNativeAdapter"; + sourceTree = ""; + }; + 4480DAA97B20ADDE76D3DC8FF178A421 /* UMModuleRegistryAdapter */ = { + isa = PBXGroup; + children = ( + 6761C6C7DA57DD5FFC45F3B77CBD269C /* UMModuleRegistryAdapter.h */, + BF489842F633BC2B97B300ED3A4079C2 /* UMModuleRegistryAdapter.m */, + C6D6CF7B6C821D62327563EE50B84C04 /* UMViewManagerAdapterClassesRegistry.h */, + C0E26A2634E1B96F926FB681AE697488 /* UMViewManagerAdapterClassesRegistry.m */, + ); + name = UMModuleRegistryAdapter; + path = UMReactNativeAdapter/UMModuleRegistryAdapter; + sourceTree = ""; + }; + 46A53E5E86C802BFE4948E6276A666F2 /* Pod */ = { + isa = PBXGroup; + children = ( + 0E42A6A4C7DDA96A9CE41E1BC2AF24AC /* UMFontInterface.podspec */, ); name = Pod; sourceTree = ""; }; - 46D941DBF4C6CDEC54BD5EDE255B3D68 /* VirtualText */ = { + 46BB31868FBCFF1EBDD34B6157537B7C /* Handlers */ = { isa = PBXGroup; children = ( - BF2A164B5E45E1797ED8D2CD8EDA12B9 /* RCTVirtualTextShadowView.m */, - 6E357D07D0B62149CB54E4BBC7C1892A /* RCTVirtualTextViewManager.m */, + F70DAFFFC470AC8CF0C79094BE1C42C2 /* RNFlingHandler.h */, + 9246F421DA5C78784C1F693CFD363B41 /* RNFlingHandler.m */, + A1193969A1702DA6744E95A06E7CD44C /* RNForceTouchHandler.h */, + AC3146F80E9E21A1B8B4808D1C68C39B /* RNForceTouchHandler.m */, + F46639E69FBACDA4034916EF0396E669 /* RNLongPressHandler.h */, + 1A05D47FED4223ADAC9427FDD8540AEB /* RNLongPressHandler.m */, + A0560F8B27270D8FF2B4CFBBBB94AF16 /* RNNativeViewHandler.h */, + EC6253B6B865B4D48A867EEE5670B1DA /* RNNativeViewHandler.m */, + 5BD5A5FCD00F2D95836F952C0E53B498 /* RNPanHandler.h */, + A13F787F16E1F201620EEE82BD0B252B /* RNPanHandler.m */, + 6C3B8D829EC3EED4A0A20FCDEB87EC9A /* RNPinchHandler.h */, + B6CAAE78EA5CCE98700AFB5C907FA960 /* RNPinchHandler.m */, + C8B3E28659D32D7CF5369980B1A77DBC /* RNRotationHandler.h */, + 7B7EB7E1FAEAD6D700871A354AEFEF52 /* RNRotationHandler.m */, + 083CB40CF18107B6E6F1986B3D9314C8 /* RNTapHandler.h */, + 0EFDE0F540ECDC4B29AFFD10654D7EF7 /* RNTapHandler.m */, ); - name = VirtualText; - path = VirtualText; + name = Handlers; + path = ios/Handlers; sourceTree = ""; }; 472D0655A441F438064A68603A68705A /* Support Files */ = { @@ -9091,39 +9190,48 @@ path = "../Target Support Files/RSKImageCropper"; sourceTree = ""; }; - 473A0C3A52066FCE8512CF3EA8F09A7C /* react-native-document-picker */ = { + 47A7BFF21301506BD596DB9257454EFE /* Video */ = { isa = PBXGroup; children = ( - 292D360FBD2DF0B1A7BC35B6D987C722 /* RNDocumentPicker.h */, - 34C8101D476E1C5E09D71D8968D53742 /* RNDocumentPicker.m */, - B5963312520C3EC66794AF099B7161C4 /* Pod */, - 810687E05886DEC54B9540AD6446489F /* Support Files */, + 219A2733281409E60ED6EFD18358038F /* EXVideoManager.h */, + 03598506A4C272FF566CC0BCDFC4EDD0 /* EXVideoManager.m */, + B6841DA2414D92A3CD24C3DF9CE0A6C2 /* EXVideoPlayerViewController.h */, + B270BBBD6A601121183CDB371E33BA3D /* EXVideoPlayerViewController.m */, + 55CDDE57FC78DBCA7864F84CCC0F0E50 /* EXVideoPlayerViewControllerDelegate.h */, + 1A523BB61F5BFB8222D313B9BB64638E /* EXVideoView.h */, + DFFFD5E840DAF271EC07068794F59A8B /* EXVideoView.m */, ); - name = "react-native-document-picker"; - path = "../../node_modules/react-native-document-picker"; + name = Video; + path = EXAV/Video; sourceTree = ""; }; - 47652663F23B21C29BCA7EA296425D5E /* React-RCTLinking */ = { + 47AFBC15116C721A415D77C25D6D6BE8 /* RNDateTimePicker */ = { isa = PBXGroup; children = ( - 07C3DCD3D67D3BF60A73E76C19167830 /* RCTLinkingManager.m */, - 40C8988530715169DDAF9B2CC1C7BC58 /* Pod */, - DC80A64456791F9C360BF21D01B048EC /* Support Files */, + DFA17DDFACFA3BD373DD01F4D78902FF /* RNDateTimePicker.h */, + F5B78CB4D0944353EC41021425B6E0D2 /* RNDateTimePicker.m */, + DACFC6CDEFD1B3CC5FD3B77C2F41C21A /* RNDateTimePickerManager.h */, + 0A04939F0BE8BD04E3F140CAA04FD5EF /* RNDateTimePickerManager.m */, + A2CAA1F60F574F9665B1DDC932238FA6 /* Pod */, + B6C3B08EBB521846550F2B06E7519924 /* Support Files */, ); - name = "React-RCTLinking"; - path = "../../node_modules/react-native/Libraries/LinkingIOS"; + name = RNDateTimePicker; + path = "../../node_modules/@react-native-community/datetimepicker"; sourceTree = ""; }; - 481F5EB8B9605BAD3A212C0E6A14D6AF /* ios */ = { + 47C36CCBC6F6817AACCC64A49C5BD52F /* UMTaskManagerInterface */ = { isa = PBXGroup; children = ( - 57B5741DCAD75447DDEC71C6E58CD217 /* RCTTurboModule.h */, - 91999577661B53D8F919F97505048E93 /* RCTTurboModule.mm */, - 97CA2C9944040D8E3487507E0506EBFB /* RCTTurboModuleManager.h */, - 5B7FDE171B62E30BD02C835F98460D70 /* RCTTurboModuleManager.mm */, + 2CBF432CE8D967079BB9DCFF84273861 /* UMTaskConsumerInterface.h */, + F853DF4667238413770D3F1867E755E4 /* UMTaskInterface.h */, + 1A77EA908CFC0545DA4D08F646D1D20B /* UMTaskLaunchReason.h */, + 63E2D5EBDD75E01B9E740029F6DE0DD0 /* UMTaskManagerInterface.h */, + 3C6AE67B60E5F1584325FAD2B0EAB584 /* UMTaskServiceInterface.h */, + 65601A0DBC73189E5CE5D798FAA0DFDB /* Pod */, + 626D6B56001E9F8189A5EF3CDDB93238 /* Support Files */, ); - name = ios; - path = ios; + name = UMTaskManagerInterface; + path = "../../node_modules/unimodules-task-manager-interface/ios"; sourceTree = ""; }; 4928610451BAB56E49BA8FF8129BF910 /* Network */ = { @@ -9143,112 +9251,77 @@ name = Network; sourceTree = ""; }; - 4BF47DCCD10154A28B2C37ECAAE16938 /* RCTCustomInputController */ = { + 4939F9AF4C632D879FC6B450894928B0 /* RCTAnimationHeaders */ = { isa = PBXGroup; children = ( - EB50F05C09765B05AB3D7AAE4C3732E7 /* RCTCustomInputController.h */, - E613147571B9035D477DC6277D0417C6 /* RCTCustomInputController.m */, - 567558B0D0A19CD7C1BDC6FECCDC8442 /* RCTCustomKeyboardViewController.h */, - 17B73A3797F5839F9406A5822140831E /* RCTCustomKeyboardViewController.m */, + 941AA7CB66C7571E8337B0A35BB2807B /* RCTAnimationUtils.h */, + 7FC023D83ABAA92FFB9931AF1FE58FEF /* RCTNativeAnimatedModule.h */, + 7ABA58BBBF42A4CEBCEDF8B50AB93EE5 /* RCTNativeAnimatedNodesManager.h */, + 55BFD5E2E59072006D52F5DC2087938D /* Drivers */, + 14314ED9A648F74ED7DD3C018B93C14F /* Nodes */, ); - name = RCTCustomInputController; - path = lib/ios/RCTCustomInputController; + name = RCTAnimationHeaders; sourceTree = ""; }; - 4C23BBBC87A4AF2938D887AC9A771E4B /* react-native-cameraroll */ = { + 4A91CC127CFB356AD0F442D777FCA9B2 /* RNFastImage */ = { isa = PBXGroup; children = ( - 45D57EB4FEF19D3DB6A3492689D85F62 /* RNCAssetsLibraryRequestHandler.h */, - 6CC2DBBA6742EE74F85A5E56719C000D /* RNCAssetsLibraryRequestHandler.m */, - 9B22B4592DEE5DD9369F5D576E118B19 /* RNCCameraRollManager.h */, - 2E778981D37C53A0E35AF123EFF341D0 /* RNCCameraRollManager.m */, - FF00F900ADCB5D1223C8AF77E9B7F1CE /* Pod */, - 3538D898878867CC7C2B9EE5BA31B25D /* Support Files */, + EC1550B0F63A62DE773EA96F1165E48F /* FFFastImageSource.h */, + EA5986CB2C30F47658BB169BF8763AAA /* FFFastImageSource.m */, + CFBEF106655B3DE0DE1707129CE4C182 /* FFFastImageView.h */, + 424A820722AE0AB3B5DEBBC663D3CC7E /* FFFastImageView.m */, + 322A3A64E30DD2212EA30D3262C8F54B /* FFFastImageViewManager.h */, + 5550B29A3A12B046C327D297BD817790 /* FFFastImageViewManager.m */, + EB7B2A94B2181C8C15B5A01D3286B948 /* RCTConvert+FFFastImage.h */, + 4411C08EC7AD9760E3EE9B61EE00D50A /* RCTConvert+FFFastImage.m */, + ABA3D06E3C773757A01F1068AC864472 /* Pod */, + 1215663C6DC327D7974B4F7ABD76615E /* Support Files */, ); - name = "react-native-cameraroll"; - path = "../../node_modules/@react-native-community/cameraroll"; + name = RNFastImage; + path = "../../node_modules/react-native-fast-image"; sourceTree = ""; }; - 4C85D9FD782DE2348D614ECADF418474 /* UMImageLoaderInterface */ = { + 4B035280643B9E4771C8981DAE9C2166 /* rn-fetch-blob */ = { isa = PBXGroup; children = ( - 91D7FA5E9338225929D79EA998D5ACA6 /* UMImageLoaderInterface.h */, - 1963341D3748186AB44079E8070C7E13 /* Pod */, - F9CB62431E58EFF664229016701E7D6E /* Support Files */, + 7A9136379DFD481947CF714DDCB0ADCF /* IOS7Polyfill.h */, + 51C1A9B4E59A3E485D0E8EA467945E83 /* RNFetchBlobConst.h */, + 49B31BEF630FE1A84BBC550977571750 /* RNFetchBlobConst.m */, + EE41772303EB8B4AAAE644DFC403733A /* RNFetchBlobFS.h */, + F151269443021C894C1EE6DD9F2B9156 /* RNFetchBlobFS.m */, + 0FF4C273A6A8B5CE4DDB5A8BFBBE0FF4 /* RNFetchBlobNetwork.h */, + 4CAC4159EFC9D11139B2370518066769 /* RNFetchBlobNetwork.m */, + 705C70FE93E9DA65A365408D2A5F7783 /* RNFetchBlobProgress.h */, + AC0E5144BC8E45C0A8AA0E7DF26EAEA1 /* RNFetchBlobProgress.m */, + 775A89C79ECDEA9FB87A4A55C040B4B4 /* RNFetchBlobReqBuilder.h */, + 0CDCBDF89092A1E15CA647D202589047 /* RNFetchBlobReqBuilder.m */, + BE70D642DE39B95B31E9EF38AC541D66 /* RNFetchBlobRequest.h */, + 0DEF7B1DADBA2BAE9E293D2C96C91041 /* RNFetchBlobRequest.m */, + E72FAA0E838113FC576A55B705A4022A /* Pod */, + 602D08103CC53FB51F5FC81F8B09D425 /* RNFetchBlob */, + 0E5ECEF2645A798F63D107C4C2FFE89A /* Support Files */, ); - name = UMImageLoaderInterface; - path = "../../node_modules/unimodules-image-loader-interface/ios"; + name = "rn-fetch-blob"; + path = "../../node_modules/rn-fetch-blob"; sourceTree = ""; }; - 4CB6D053181513F0FB616CE38FEFC0C7 /* CoreModulesHeaders */ = { + 4C617795BC3A419222A1BAF96AD24A7E /* fabric */ = { isa = PBXGroup; children = ( - E4DEF8F85AF9CBFF8F00C0D795DDD46F /* CoreModulesPlugins.h */, - A61AC0C8B33BC86F5353944CB256E66A /* RCTExceptionsManager.h */, - 33E4CF797C3A48C4F95A43DA7FC4763D /* RCTImageEditingManager.h */, - ACEE4B37CDC23E851505FAB6B5B59F72 /* RCTImageLoader.h */, - 2AD60FADFD97120FCFC1ABE6D30645F3 /* RCTImageStoreManager.h */, - 298DE658797268757F1A65E1E4E04840 /* RCTPlatform.h */, + 1D245FCD877E5820DCEF4ED54F8A1CF7 /* crashlytics */, ); - name = CoreModulesHeaders; + name = fabric; + path = RNFirebase/fabric; sourceTree = ""; }; - 4D19490B6E9DC89E61DF0D9A140A95ED /* Pod */ = { + 4CCE6109F5F629EE850798BD1B3231DA /* jscallinvoker */ = { isa = PBXGroup; children = ( - 44576D0E42EA00F1DD0E6DA2D192F076 /* EXHaptics.podspec */, + 8FC06326CBCF4D5554003ABD7AA1D026 /* BridgeJSCallInvoker.cpp */, + 457FDE7327ADA30AFB2C2998ECDD77F6 /* BridgeJSCallInvoker.h */, + 976F7A2402DE1ECBB4C1458711ADD7F4 /* JSCallInvoker.h */, ); - name = Pod; - sourceTree = ""; - }; - 4D8EA8AF97D2878F6108D2819688D93F /* Pod */ = { - isa = PBXGroup; - children = ( - 2BFF82F85E72CE3BD263A56043744B85 /* advancedIos.md */, - B11D171834A77FF88E839237BE79D83B /* installation.md */, - C705CF5F27669785A685AA891C72729A /* LICENSE */, - A0BE77DA71704DDC94E998DEC7D42DDF /* localNotifications.md */, - 936E9E27233FC0F3B1195C1CD5BF3700 /* notificationsEvents.md */, - 7C06B16DEB3B50C5FE57E70B35BAEEAA /* react-native-notifications.podspec */, - 2B7A0342F5E5EAC123106C4C6C3F7CD6 /* README.md */, - 2E314D75D6DA169CB35F4DE4ABA2D8B2 /* subscription.md */, - ); - name = Pod; - sourceTree = ""; - }; - 4D993293F8C83AE13EF5802A1EB4250F /* RNImageCropPicker */ = { - isa = PBXGroup; - children = ( - F847E3CCE33D39A3394B1456005D0D6A /* Compression.h */, - D2E7B72A0F5317C61BB9CC6DFB7CF533 /* Compression.m */, - F41739E7FEBF3FE1C1AEAAE4CC3FF7E2 /* ImageCropPicker.h */, - 1BF9AB567D9E0A51CDE4ADCFDEBD269C /* ImageCropPicker.m */, - F29AB00DBAEED696072011BD73C44A43 /* UIImage+Resize.h */, - 7229F900D342839BC98BB24AA62C9250 /* UIImage+Resize.m */, - B60849DE0578C4C5CC8871BD36942CAC /* Pod */, - A8FEA426F599D31763D6AAEF31ABB87D /* QBImagePickerController */, - 7FB0CB4A606E3A3821B35F1862FAF3EA /* Support Files */, - ); - name = RNImageCropPicker; - path = "../../node_modules/react-native-image-crop-picker"; - sourceTree = ""; - }; - 4E2C1DF0F339935B99F535080324AAAA /* core */ = { - isa = PBXGroup; - children = ( - ECF2B2563BF4C84FB16738243BA115F4 /* LongLivedObject.cpp */, - E5B48D596BD7B2ACF344424B330A125A /* LongLivedObject.h */, - 23776C1B0E8657F226F01CD3497C554B /* TurboCxxModule.cpp */, - 1E0B6A044D5B728554C8DC8921B8E9A9 /* TurboCxxModule.h */, - 21EEA62AA34B1955156B48D8813CD3A5 /* TurboModule.cpp */, - 067B0383F3335B0CC6705EF1ED57726D /* TurboModule.h */, - 99C590A2A3E280556E807975D1F0E755 /* TurboModuleBinding.cpp */, - F0EF5EDFFDC6F580507F02090FDF7C7E /* TurboModuleBinding.h */, - A45C1A483A3BDBD66E508CC63B3FA1C6 /* TurboModuleUtils.cpp */, - AB2739361BCF15A40439F0B6BA615041 /* TurboModuleUtils.h */, - 3ABE37B2A5B5D1017703D01B967E2829 /* platform */, - ); - name = core; + name = jscallinvoker; sourceTree = ""; }; 4EE5506810A48BF6790471E58A60007A /* Support Files */ = { @@ -9262,146 +9335,76 @@ path = "../Target Support Files/glog"; sourceTree = ""; }; - 4F4710988D5C1A50F11451220BD7E7F9 /* Drivers */ = { + 4F75E32584B9929F55E90DA70A9362F8 /* Pod */ = { isa = PBXGroup; children = ( - FE89627E32A0863BE079C80453B79AD1 /* RCTAnimationDriver.h */, - 7218C82D3C00413556C771B6B7FC1644 /* RCTDecayAnimation.h */, - CD81524ED48B48D5EC48654321483E76 /* RCTEventAnimation.h */, - 91C2AEA3D7AFD819EF2FA9B5574EE650 /* RCTFrameAnimation.h */, - 4568836D549CEE24E5AC8669B605C0E7 /* RCTSpringAnimation.h */, - ); - name = Drivers; - path = Libraries/NativeAnimation/Drivers; - sourceTree = ""; - }; - 4F55A5C7318B9D75EF48B2C786891FDD /* React-RCTNetwork */ = { - isa = PBXGroup; - children = ( - 635F7B63DA9E22DD55626E3F9D2B3D7A /* RCTDataRequestHandler.m */, - BB335CBD7693DF5C6519E408890E5308 /* RCTFileRequestHandler.m */, - B06BEEA2CB6E5A49BC815D0CBE35533B /* RCTHTTPRequestHandler.mm */, - F8566C99EDB572BAEA82EDEE2EF22A05 /* RCTNetInfo.m */, - 589AB7CD199564697BA3559F25CB61AB /* RCTNetworking.mm */, - B7C6DEA8C3CB3A2D8972AB5C382DA40F /* RCTNetworkTask.m */, - 3C38C9167E5BE2FC87CD03CE76FEC6BF /* Pod */, - D88F85C7BE0A6DACD139F9E95F0495A9 /* Support Files */, - ); - name = "React-RCTNetwork"; - path = "../../node_modules/react-native/Libraries/Network"; - sourceTree = ""; - }; - 4FE45F240D21C60CC5F8472557255580 /* Delegate */ = { - isa = PBXGroup; - children = ( - 10B080B2C16168A95CE68EF1378B8A6F /* SRDelegateController.h */, - 8C55AA6E3DF7B37A6608F9F1CA6AD1DD /* SRDelegateController.m */, - ); - name = Delegate; - path = Delegate; - sourceTree = ""; - }; - 4FE95E7C25395B065480F016BF2291FF /* Pod */ = { - isa = PBXGroup; - children = ( - 35749A2B024B6AA94FBDED0A3B6CEF2E /* React-cxxreact.podspec */, + 40E5C5BD935039565B268D7C5D5E1D42 /* React-CoreModules.podspec */, ); name = Pod; sourceTree = ""; }; - 50B1E46FB8AA1740E0FC4F136CB6BE1E /* Support Files */ = { + 500CC1F02C46F17337B6E19DB3F1987D /* Reporting */ = { isa = PBXGroup; children = ( - E8B08D8E57E35A72C701732EBC55CF52 /* react-native-appearance.xcconfig */, - A3B99A92D54B8F7F66FE4154931AF07E /* react-native-appearance-dummy.m */, - 65D1AF76071643A304712F4F0947B6C9 /* react-native-appearance-prefix.pch */, + 68E00C33235B0611D2C90F4A302F4345 /* Filters */, + ); + name = Reporting; + path = Reporting; + sourceTree = ""; + }; + 504494839680F412E5B6FB3B81B5E38E /* RCTBlobHeaders */ = { + isa = PBXGroup; + children = ( + 7FE84E9CCD39E1BEA3AF2269A594416A /* RCTBlobManager.h */, + 278900E30B4F04A0B121A968574F5891 /* RCTFileReaderModule.h */, + ); + name = RCTBlobHeaders; + sourceTree = ""; + }; + 507520146F804B2915190E4FFB015D50 /* Support Files */ = { + isa = PBXGroup; + children = ( + 4C18A10A30D307A1C08B17C6278B4DAC /* React-RCTAnimation.xcconfig */, + FDA09634184D77992600B0F692CCDCB7 /* React-RCTAnimation-dummy.m */, + 1CD753103E6BC2594790766FF6348A88 /* React-RCTAnimation-prefix.pch */, ); name = "Support Files"; - path = "../../ios/Pods/Target Support Files/react-native-appearance"; + path = "../../../../ios/Pods/Target Support Files/React-RCTAnimation"; sourceTree = ""; }; - 50E17F20A38778D0F9C64D563B8F4610 /* notifications */ = { + 5164AA2C3DBB9EF23C028EB5F5E3CD4C /* RNScreens */ = { isa = PBXGroup; children = ( - C518105F4FA3A1C0068602376FE7C597 /* RNFirebaseNotifications.h */, - B1019DF88487C0D7B086AED9553E017B /* RNFirebaseNotifications.m */, + 0E35B60CC9EC81D190B734380F8348F6 /* RNSScreen.h */, + 95DF25C1EECA72B7CA9635F569B6B7F3 /* RNSScreen.m */, + 584EAD828707EF357D31A87E90058A71 /* RNSScreenContainer.h */, + 6730970C10E2B812DA5EFCE6F2CF1470 /* RNSScreenContainer.m */, + 52314E40541798B7B27A877E3D74169E /* RNSScreenStack.h */, + 809D7CFE1698363E3A4E0C2D465A00C2 /* RNSScreenStack.m */, + 9D8B89DC3B0341D3E79D845CE3710EF9 /* RNSScreenStackHeaderConfig.h */, + D60525102E9CF955CCD58FC6757EFB28 /* RNSScreenStackHeaderConfig.m */, + D963CB2B3B7A80D2F9D9723DE9890D4D /* Pod */, + 7DE404828B99758A89F128A99B1B9C7F /* Support Files */, ); - name = notifications; - path = RNFirebase/notifications; + name = RNScreens; + path = "../../node_modules/react-native-screens"; sourceTree = ""; }; - 50FC2DFA2CADFB1B8F1531CE777041E1 /* Singleline */ = { + 51B2E95ADCAE35DC389968FC5B212995 /* Pod */ = { isa = PBXGroup; children = ( - 608100E743082C1CA5FB2818A68155EA /* RCTSinglelineTextInputView.m */, - ECB011A0F5FA23F0C76DAD06C1CB0CBE /* RCTSinglelineTextInputViewManager.m */, - DB74B8E0E7F8AD95BC70ACFEF567A015 /* RCTUITextField.m */, - ); - name = Singleline; - path = Singleline; - sourceTree = ""; - }; - 5127552AA1F08C589C56FF965A262EF6 /* RCTTextHeaders */ = { - isa = PBXGroup; - children = ( - D95CA5A405D8A647E0023BAA9DB29152 /* RCTConvert+Text.h */, - ABA1B10914BC5CA476BF7378D667FA12 /* RCTTextAttributes.h */, - 426288AB110806D17A16FCF95DFA9E6B /* RCTTextTransform.h */, - 8B50D825A0AA999957AEF67C53D8B072 /* BaseText */, - AF50EBC1320AD951A1B926EA03ACC7DE /* RawText */, - 30C7CB72CC27EE12E34E5CCA1FA39E1A /* Text */, - 87A18F37D85A1705A10412C52AFE5F4A /* TextInput */, - E8E048F1CBEE32784C4FEC6BA67D1B1F /* VirtualText */, - ); - name = RCTTextHeaders; - sourceTree = ""; - }; - 51D4543BDE0F722060925E5104930E38 /* Pod */ = { - isa = PBXGroup; - children = ( - A9203AB661181F0B317A6E63B1A62242 /* UMCore.podspec */, + BDF4C3172110600542CCCA8F784C6CBF /* UMBarCodeScannerInterface.podspec */, ); name = Pod; sourceTree = ""; }; - 5220619B561CA6F2834712C1AE475C73 /* bugsnag-cocoa */ = { + 51EEACA25D390C4DAB1739A381CEF4E9 /* Support Files */ = { isa = PBXGroup; children = ( - 9A11A473CFC2F8F6824AE45E777C7A0A /* Source */, + E2B8D86AFA6269BDB864AD4F3BE1E4F0 /* UMPermissionsInterface.xcconfig */, ); - name = "bugsnag-cocoa"; - path = "bugsnag-cocoa"; - sourceTree = ""; - }; - 5239DFE8BFB1D8C29EFC0E44ED6310AF /* ViewManagers */ = { - isa = PBXGroup; - children = ( - B1C13BBA60C6E5F565C50268233795B4 /* ARTGroupManager.h */, - 1B7C3608604BDDF8ACD43AB2706BB219 /* ARTGroupManager.m */, - 6FF771E6C2A8C52C88A59F2DCD024103 /* ARTNodeManager.h */, - B42C05EA585F6414B0981D042D8FD78A /* ARTNodeManager.m */, - 7D440FB6D3CFF9DF0C9C7B3057F7E681 /* ARTRenderableManager.h */, - FC31EFA79C12858731900C2003838846 /* ARTRenderableManager.m */, - B07D48E7147AADC05B5BC94BED2CAE42 /* ARTShapeManager.h */, - AF36BF5322A8F1669835C50F41EBF7AF /* ARTShapeManager.m */, - 07DE8A314E976D752E59F46B935D6F02 /* ARTSurfaceViewManager.h */, - E069EEC391BFDC087401924FA4673F28 /* ARTSurfaceViewManager.m */, - 76EFAA94897818485AB8BCB45E7E7E33 /* ARTTextManager.h */, - 5ECF498737298D08C58E44A78EB27CE6 /* ARTTextManager.m */, - ); - name = ViewManagers; - path = ios/ViewManagers; - sourceTree = ""; - }; - 5289C2758001FDF2380175F8DB16648B /* internal */ = { - isa = PBXGroup; - children = ( - 705DD6F2C62BAB2F610B2260F24815BB /* experiments.cpp */, - 0DDDE6D32029298B9F3CBB96B9F4BE7B /* experiments.h */, - D068AA010E5068DD76917E39E0E3352A /* experiments-inl.h */, - ); - name = internal; - path = yoga/internal; + name = "Support Files"; + path = "../../../ios/Pods/Target Support Files/UMPermissionsInterface"; sourceTree = ""; }; 532D65DCF750E9E2E8BE97FC42B35BCC /* Crashlytics */ = { @@ -9421,6 +9424,17 @@ path = Crashlytics; sourceTree = ""; }; + 5395C3180DE161A6CE89EDBF642E163F /* Support Files */ = { + isa = PBXGroup; + children = ( + 90C33D877B66B11D59A02B19EDA0BCB9 /* react-native-keyboard-input.xcconfig */, + 4F77A11D90734F6ED70430128BF7FA56 /* react-native-keyboard-input-dummy.m */, + 924548DAFFA73CBB710AEE305AB820FD /* react-native-keyboard-input-prefix.pch */, + ); + name = "Support Files"; + path = "../../ios/Pods/Target Support Files/react-native-keyboard-input"; + sourceTree = ""; + }; 54220516EB0979A39034CFA10C3D2092 /* Fabric */ = { isa = PBXGroup; children = ( @@ -9433,17 +9447,6 @@ path = Fabric; sourceTree = ""; }; - 542DA2AF4C73BF100F57FF77C952E696 /* Support Files */ = { - isa = PBXGroup; - children = ( - 08AA6966F0622C2865934F4E61FE30C0 /* rn-fetch-blob.xcconfig */, - AA697145226558BFF883AD6BECA9D4BD /* rn-fetch-blob-dummy.m */, - E4000DACC1BDEE461A205EA6D9726987 /* rn-fetch-blob-prefix.pch */, - ); - name = "Support Files"; - path = "../../ios/Pods/Target Support Files/rn-fetch-blob"; - sourceTree = ""; - }; 54619EDD154634B16B1A2CD1E2D3F38D /* FirebaseAnalytics */ = { isa = PBXGroup; children = ( @@ -9465,50 +9468,55 @@ path = FirebaseCoreDiagnosticsInterop; sourceTree = ""; }; - 54B269DC3BACBE5A3D1CD8A4AB48FBCF /* Surface */ = { + 54E97620CA9B622A7BCCAC925C5146E0 /* RNFirebase */ = { isa = PBXGroup; children = ( - C33B7E4EEE4FDF245A3128E2528B2C43 /* RCTSurface.h */, - ED0FF59B3FE2273C8F4D471E785038AF /* RCTSurface.mm */, - 49B82A52342363D28F596DD1CC67FD30 /* RCTSurfaceDelegate.h */, - 7863585CD0E852336E86A78D380423EB /* RCTSurfaceRootShadowView.h */, - 908C907CBBED05A05EE11BE0B54565EC /* RCTSurfaceRootShadowView.m */, - A18D0A6FBFFC4082D75B81EDCFCCF6D8 /* RCTSurfaceRootShadowViewDelegate.h */, - 5155B718DF56CEFAAF1CDA6A3C230C14 /* RCTSurfaceRootView.h */, - 70B951976ED7FB041821BB7F2D799980 /* RCTSurfaceRootView.mm */, - 5B6008E05CC91A71F962829CA0E6CE90 /* RCTSurfaceStage.h */, - B21CA4A19845E0A61AB2E336377ACC3A /* RCTSurfaceStage.m */, - FC88815E2B2418744BA108539F7B153B /* RCTSurfaceView.h */, - 5716A60DCC3F0EC6EEA4C9258D69B220 /* RCTSurfaceView.mm */, - B7E0EC156A08C666D058F17A8F3E7679 /* RCTSurfaceView+Internal.h */, - EF0BC61DAB9F1CC9F9B1530BE0CBF5C1 /* SurfaceHostingView */, + D8F37DB1BAC1BA1087476BCD1EDB1F8D /* RNFirebase.h */, + A6DD518CE86681853265FCA0B58F48F3 /* RNFirebase.m */, + 46D7F38726FE55F1B1612AD5DF7F598F /* RNFirebaseEvents.h */, + AC34E5A5F3C3F1FEDD15FCEB960B5EAA /* RNFirebaseUtil.h */, + 654EEAB16ABA9FA29F41A3DCB1606F23 /* RNFirebaseUtil.m */, + 5F7DBCE99710D378D97FBEC9CD4E68D5 /* admob */, + 8493ED81BA842AAF96CB292D7646DC71 /* analytics */, + 1D8376B427A94503FFD0F902A00EA0EB /* auth */, + AA2B0069F9D143EE15378FF26B045E33 /* config */, + 68B5A95FF051D9CB6CD6028F72ADAB6D /* converters */, + B20A137BE125DEDD7753A480082C3BC6 /* database */, + 4C617795BC3A419222A1BAF96AD24A7E /* fabric */, + BFE5F9DE501E5CC5B991123E74E472DC /* firestore */, + 3F1643930A6818C985E46D2EC01A2886 /* functions */, + B2622525F52BF4BE42E38D59B1BDCB34 /* instanceid */, + B4DE46BD3075673106FB078B3A7FFE00 /* links */, + 3E7148366E324CA1B03CCE202A91296C /* messaging */, + F976868985EA65F3398F30206C528641 /* notifications */, + 360E848C852E4696A73E53CB1E2FD792 /* perf */, + 76ECCEB960C83137BA0D68ED2924857D /* Pod */, + 199196FE6609714594948931D7AE5C5C /* storage */, + 695FA16F10D9046C692B9391D115F8C5 /* Support Files */, ); - name = Surface; - path = Surface; + name = RNFirebase; + path = "../../node_modules/react-native-firebase/ios"; sourceTree = ""; }; - 54D25922B71E94BF96BB8C6159B8160C /* BugsnagReactNative */ = { + 550884D8465BE125A33608176460C5F1 /* Sentry */ = { isa = PBXGroup; children = ( - 69EB09CE2A99BC4B5CA1572AD8EC9BD4 /* BugsnagReactNative.h */, - DC3DA5DA8FE0F9BCE4503E8D5A7AC52B /* BugsnagReactNative.m */, - 99AA119C17C9D8BD533065440DA723F1 /* Core */, - 63E538A246B8819C63147BE5F20AFE16 /* Pod */, - F18435E9BE28962B7B08823A420B90CD /* Support Files */, - 8495781585251CD82D4C2CE882696453 /* vendor */, + 82B76F9EF5DEAC9B0A39E9A27F7C11DA /* BSG_KSCrashSentry.c */, + 08E84F1A9A7782074CA343CC081CE2C1 /* BSG_KSCrashSentry.h */, + A9924A02B0332BE333C931246DEDE55E /* BSG_KSCrashSentry_CPPException.h */, + 4EA6DA9EFE4E732DEB26F4811C5CCD26 /* BSG_KSCrashSentry_CPPException.mm */, + 04F8DB5B837E32C73A91A7D3076ADC08 /* BSG_KSCrashSentry_MachException.c */, + 0FF997E32FD2CA8E9A901A519160E7FF /* BSG_KSCrashSentry_MachException.h */, + A78A2E361B03399C72BAE17355644251 /* BSG_KSCrashSentry_NSException.h */, + 8618666306E69961208486374E6BBCC2 /* BSG_KSCrashSentry_NSException.m */, + 19BB86AA1190C4C8B7A0666F7AC9AC82 /* BSG_KSCrashSentry_Private.h */, + 6D1EAA12E2E5B41CA4D13AC9E480FB48 /* BSG_KSCrashSentry_Signal.c */, + A7AC34E2D1E64073AECAF87885D71208 /* BSG_KSCrashSentry_Signal.h */, + 15350290ECCC67D3F4EF5A3624B47A13 /* BSG_KSCrashSentry_User.c */, + A9D023EECEF6EF99FAB5D00FF2748EEB /* BSG_KSCrashSentry_User.h */, ); - name = BugsnagReactNative; - path = "../../node_modules/bugsnag-react-native"; - sourceTree = ""; - }; - 54F0BD9D10142F18A4372C35E2175906 /* Pod */ = { - isa = PBXGroup; - children = ( - A1B383B4949CD894FE47DF37011D8B08 /* LICENSE */, - C5217234B617BF51EA5BF669B486DE25 /* README.md */, - 0C317503EC34FB763347286A6E16DF56 /* RNScreens.podspec */, - ); - name = Pod; + name = Sentry; + path = Sentry; sourceTree = ""; }; 55B18D8D8BE5E5FB139159F9864ED8CA /* glog */ = { @@ -9532,43 +9540,29 @@ path = glog; sourceTree = ""; }; - 55F97F68B1B8B4D56812C6FADFB50E0D /* Pod */ = { + 55BFD5E2E59072006D52F5DC2087938D /* Drivers */ = { isa = PBXGroup; children = ( - BBC3B3DB6C4F93F2750D938E01017EDB /* React-CoreModules.podspec */, + D09341F2420B8B6C6306246C8261092D /* RCTAnimationDriver.h */, + 078E1A116DFEF74C56BE72D549086645 /* RCTDecayAnimation.h */, + 407F2989447A7D2DD6C3EFE0DCC1B409 /* RCTEventAnimation.h */, + A4044FF471A1F855621DA4EDC7FD0871 /* RCTFrameAnimation.h */, + 6D71BCAE7FB8CA2B29CA93BC9C79DC4E /* RCTSpringAnimation.h */, ); - name = Pod; + name = Drivers; + path = Libraries/NativeAnimation/Drivers; sourceTree = ""; }; - 56E48ADD0DD62393E70D31E266946EAA /* react-native-keyboard-tracking-view */ = { + 5634E8681093F80F562DA8F9513E9A8E /* UMPermissionsInterface */ = { isa = PBXGroup; children = ( - 9A572F79CC9FE7F5B756A0975E467AAB /* KeyboardTrackingViewManager.h */, - 9FC8A6ED4862330A88C805F77FF25F20 /* KeyboardTrackingViewManager.m */, - 2A0AA3CE52D648DE41A3571BD5E16B0B /* ObservingInputAccessoryView.h */, - F4FCB02D4E3949EF0C86B1907FBE7CC7 /* ObservingInputAccessoryView.m */, - 2C899536526DA1C73EC790E761C62BA6 /* UIResponder+FirstResponder.h */, - B4936E886594F0F86E4CB217B2D498E3 /* UIResponder+FirstResponder.m */, - EB45C0A36B3A34F325C009301FCC1CFF /* Pod */, - C69454798381A8A8166752800AAC095C /* Support Files */, + A20991E1ABDC9BC64B827B8B80EE252B /* UMPermissionsInterface.h */, + A83D8146B3DB1E98F53E543737177FCE /* UMUserNotificationCenterProxyInterface.h */, + 6D7BED1100E25D916A7B08B7B2D5FEDD /* Pod */, + 51EEACA25D390C4DAB1739A381CEF4E9 /* Support Files */, ); - name = "react-native-keyboard-tracking-view"; - path = "../../node_modules/react-native-keyboard-tracking-view"; - sourceTree = ""; - }; - 5757BC14C40FA4486E86671677CE66E6 /* React-RCTAnimation */ = { - isa = PBXGroup; - children = ( - 2292439F3AF6D1B2C4953BB6E8FB57B2 /* RCTAnimationUtils.m */, - 46AE0441B738973D3B8033C63A743535 /* RCTNativeAnimatedModule.m */, - D413490959869B9502726774F55A6D44 /* RCTNativeAnimatedNodesManager.m */, - 37305EAD4B565B9129BA299BA9516759 /* Drivers */, - 1BCB8A2CA25F8CE9EFF1DB531DD326EC /* Nodes */, - 8305C3C58F3D12D8AB59DF3D82658DA7 /* Pod */, - 94BAC2C1F5A09FE6D4902A1E547C4B5A /* Support Files */, - ); - name = "React-RCTAnimation"; - path = "../../node_modules/react-native/Libraries/NativeAnimation"; + name = UMPermissionsInterface; + path = "../../node_modules/unimodules-permissions-interface/ios"; sourceTree = ""; }; 588BB8EA70D0562BF2408368B973356B /* DoubleConversion */ = { @@ -9598,67 +9592,92 @@ path = DoubleConversion; sourceTree = ""; }; - 59629674EF3DCF1AEEFC9BEEB2F97CC0 /* IOConsumer */ = { + 59C0751592694D798DA3DB5E3C3980C5 /* Default */ = { isa = PBXGroup; children = ( - 7D1A7CE079C1DC6BB58EB51221259A9D /* SRIOConsumer.h */, - A7C033AC21B9BB174EC5BA0222B82112 /* SRIOConsumer.m */, - BDEC502F8043DAC827CF0FFF0DC005FE /* SRIOConsumerPool.h */, - 1CCBB5CA34FEE4E295C2889C97784871 /* SRIOConsumerPool.m */, + 02FD0BFD563A9EA0A0AA554E25ED9FD1 /* Base */, + BF772304BCB32F1676B25195F042B393 /* CxxBridge */, + 3DC6AA6EEC21019CBE84CA19D92DB3B9 /* CxxModule */, + 0E3C8CCEE29DBA6A366DFBEDBF4B804A /* CxxUtils */, + 10548F7F601DB24ED0033D90F1759FDC /* Modules */, + 2A047AFBEBF3DA7B42E420DB22F940B4 /* Profiler */, + E57BEF503F6D6D4058A140BF0EAEEA84 /* UIUtils */, + 883B750E51BBB53535F5C0CA4939754C /* Views */, ); - name = IOConsumer; - path = IOConsumer; + name = Default; sourceTree = ""; }; - 596B4F2FF9D8632EB352D3D99839D68B /* Support Files */ = { + 59D71556507A95112144799327115A93 /* RNImageCropPicker */ = { isa = PBXGroup; children = ( - 5BD8B4834ABC16EBB220DB0B996B48F7 /* UMPermissionsInterface.xcconfig */, + 477638BFCC42AE591C8C63F78A1DE711 /* Compression.h */, + A62D4E50FE0D898488D5ED8DA709D6CA /* Compression.m */, + 1AD931A3769962EFF7BE82AD4E7BF961 /* ImageCropPicker.h */, + A5A12E39560D995686640457604A09D5 /* ImageCropPicker.m */, + 9B1F2DF1BECF9F85C9D31E1FBBD1B43E /* UIImage+Resize.h */, + 96A92634A41C53331A90F02931E662D9 /* UIImage+Resize.m */, + 313BDB479647CCD1D56FF3751CBD7C13 /* Pod */, + 8110CC4158050D21E0154CC6F631E3F9 /* QBImagePickerController */, + CEE564C610E84D7A95A0D41934CB273C /* Support Files */, + ); + name = RNImageCropPicker; + path = "../../node_modules/react-native-image-crop-picker"; + sourceTree = ""; + }; + 59F3F1AA7C3DCAC2E93249541324E64A /* Support Files */ = { + isa = PBXGroup; + children = ( + 5C1B9061D19410501780E0625C47998E /* RNGestureHandler.xcconfig */, + F17EAB69AC122FECB5797C7A4355B56D /* RNGestureHandler-dummy.m */, + 0CA55E503F4BF95ED2EDF62A2504C205 /* RNGestureHandler-prefix.pch */, ); name = "Support Files"; - path = "../../../ios/Pods/Target Support Files/UMPermissionsInterface"; + path = "../../ios/Pods/Target Support Files/RNGestureHandler"; sourceTree = ""; }; - 59B297C571E56192EA05BBCC82DA5BCE /* Pod */ = { + 5AE26D3A5217D23F5A1B7E79A82CADBE /* Resources */ = { isa = PBXGroup; children = ( - 63A398CCE7AE87E90C3536847FABCE66 /* UMFontInterface.podspec */, + 993C4DCA49A1D0EC883E73C5248D148F /* de.lproj */, + 381F1DC347A9886BB29C50263D255BBD /* en.lproj */, + E6CA66711B954C36A010B6163B4B3200 /* es.lproj */, + A38E63BC17368EEBC2A004D84EDFE87E /* fr.lproj */, + CFF77FA29836B0D7440C94D956777A5E /* ja.lproj */, + 6941EF57B2898BB3FAC85FE115CE4F41 /* pl.lproj */, + 6DD940FCA0BB42B3DA944B21DCFB0B6E /* QBImagePicker.storyboard */, + 03DDE00F106E1098206D051ED5939082 /* zh-Hans.lproj */, ); - name = Pod; + name = Resources; sourceTree = ""; }; - 59C4084C55B311D582B8F2AB19EB4DAF /* react-native-appearance */ = { + 5C93253108DFAAC407FF5C6350209A68 /* RCTTextHeaders */ = { isa = PBXGroup; children = ( - DB7B6FD6C6EE0BC4DD555D925F90B5B2 /* RNCAppearance.h */, - 440BA5D9B166A2E2B5CEFEDB45182A2B /* RNCAppearance.m */, - FD0BB39981669D1A579DBF85AD3714DE /* RNCAppearanceProvider.h */, - 73660DB3B546183E563BF37F42573BBB /* RNCAppearanceProvider.m */, - AE02A491760D2BBEB1B5070AEE77F91D /* RNCAppearanceProviderManager.h */, - F77B932BE2DF5310379CA95A585105B4 /* RNCAppearanceProviderManager.m */, - D5CAE2B7C1AC953807F8B5A6751FA1E0 /* Pod */, - 50B1E46FB8AA1740E0FC4F136CB6BE1E /* Support Files */, + C727C9881A4A63C180CB13D3CCA55B7A /* RCTConvert+Text.h */, + FF790684A443F38C2A2A38A5EB2F4209 /* RCTTextAttributes.h */, + F3D1BC74B7F81B3373570366D060B42D /* RCTTextTransform.h */, + 37A8689E72A9C89036F89374876EC03F /* BaseText */, + 32B88E291D46F4791CC8F4F6AAD20F5F /* RawText */, + 83DA9F45D1280FBAAFCAC5A275190010 /* Text */, + DB8A1002E95DA18230E19D932F691DE5 /* TextInput */, + A04E911412823D07EE62FC0592894E87 /* VirtualText */, ); - name = "react-native-appearance"; - path = "../../node_modules/react-native-appearance"; + name = RCTTextHeaders; sourceTree = ""; }; - 5B27F731A01C6563DB114BCA70BC9A64 /* RNFastImage */ = { + 5CD9A1A022065AD47F43F2E3F381AA0D /* RCTWebSocket */ = { isa = PBXGroup; children = ( - BE6C4F2B842D7B2F900C5C9944803F21 /* FFFastImageSource.h */, - 78BAA33EEE4F30D6800E9C7F64361E60 /* FFFastImageSource.m */, - B41A28C40E3F64F2FEF71073FC098E8D /* FFFastImageView.h */, - 6810B086173C803B1AC5D3F0C6FD4076 /* FFFastImageView.m */, - 3ABC1FBB5AB1BDD5F644EB9F2017D18C /* FFFastImageViewManager.h */, - 9946A4BF5077CF64BDD518BCDA8F4ECF /* FFFastImageViewManager.m */, - D7C65E5202BD6FD5E6D85DE803491F0F /* RCTConvert+FFFastImage.h */, - 9DEE816A6D7411DCF8B13E18DFC6C8A0 /* RCTConvert+FFFastImage.m */, - B0DF129B70C81748A0DD25F7C5DD6DEB /* Pod */, - 146F78884D077069196C24BFA97D64BB /* Support Files */, + BA95F437E9AE05B0EE2703A4665CD9E9 /* RCTReconnectingWebSocket.h */, + A2692B01E0F056C61892A9B46420A99C /* RCTReconnectingWebSocket.m */, + DAB1EC0A430C852147670277947FA7CE /* RCTSRWebSocket.h */, + 0D367356E9EBF149AC388E793D2A57E5 /* RCTSRWebSocket.m */, + CA133AB547F9EAFAB10F3D5C26F169F0 /* RCTWebSocketExecutor.h */, + BD39C63457B07FD68C443B542372BCDB /* RCTWebSocketExecutor.m */, + DADC2B23E659B1845C0F16574087D8D3 /* RCTWebSocketModule.h */, + 13B6AA9C65AFBEE6EF84653AF08E8E3F /* RCTWebSocketModule.m */, ); - name = RNFastImage; - path = "../../node_modules/react-native-fast-image"; + name = RCTWebSocket; sourceTree = ""; }; 5DACF37B91672B1B16D7C6F64F5A348F /* UserDefaults */ = { @@ -9670,24 +9689,14 @@ name = UserDefaults; sourceTree = ""; }; - 5DB57917CA3B411F3C494A5072B89668 /* converters */ = { + 5E4DF3526E50BE44D0F9990A9723D2A5 /* Pod */ = { isa = PBXGroup; children = ( - F34F68802CA948F90A588B8AAAC756C9 /* RCTConvert+UIBackgroundFetchResult.h */, - 0875E1E03475959A72BC0BBB6C3BD7AF /* RCTConvert+UIBackgroundFetchResult.m */, + 28332F8538757A0B214131FAF44F74B7 /* LICENSE */, + 09CBFEAA3470958599C4870CC17588C0 /* README.md */, + D468698EF0E3423844D4EA60736389A4 /* RNReanimated.podspec */, ); - name = converters; - path = RNFirebase/converters; - sourceTree = ""; - }; - 5E5D4EA10804B56EFB8AD9FD396272C5 /* Interfaces */ = { - isa = PBXGroup; - children = ( - 43E874B0D8C56E5F4E51789D0A5B9C7A /* EXAppLoaderInterface.h */, - E0296559B0223F56ABE0BC8CA6ABCBE4 /* EXAppRecordInterface.h */, - ); - name = Interfaces; - path = EXAppLoaderProvider/Interfaces; + name = Pod; sourceTree = ""; }; 5EAB6EF45478102AC30052B27D569C04 /* Support Files */ = { @@ -9701,29 +9710,6 @@ path = "../Target Support Files/libwebp"; sourceTree = ""; }; - 5EAC90720219E2EEA89DF954A2CD9E64 /* Video */ = { - isa = PBXGroup; - children = ( - 365C56573D7F2571B09C2A845BCF13E1 /* EXVideoManager.h */, - 832FA1D1265E3E8DA09A56EA182BAAD4 /* EXVideoManager.m */, - 9642307CFE69843F8EC6FA3D05587A1A /* EXVideoPlayerViewController.h */, - BCD1F58DE01453E51B4A1E51986A28F3 /* EXVideoPlayerViewController.m */, - E45F3C3955FE5FDC3F6B247C5E980AD1 /* EXVideoPlayerViewControllerDelegate.h */, - C0AB2D2B3F9D802375A687B12E800576 /* EXVideoView.h */, - 05C3386266A82A155F4CD3421B3F06F9 /* EXVideoView.m */, - ); - name = Video; - path = EXAV/Video; - sourceTree = ""; - }; - 5EFAFAF9C1B1A6DF5CF47503FD7060A0 /* Pod */ = { - isa = PBXGroup; - children = ( - 651FE2BE449A4AD3D18E39236DCFE313 /* React-RCTText.podspec */, - ); - name = Pod; - sourceTree = ""; - }; 5F64FEC8FB4233DE20828ABBFA0CEF12 /* Firebase */ = { isa = PBXGroup; children = ( @@ -9734,238 +9720,231 @@ path = Firebase; sourceTree = ""; }; - 60D1E3A5D26CFA8343C6287B2D6CCFF7 /* Profiler */ = { + 5F7DBCE99710D378D97FBEC9CD4E68D5 /* admob */ = { isa = PBXGroup; children = ( - A2FF9E8F757B79139954AC8169CB7F1A /* RCTFPSGraph.h */, - 6DE41CADA0EFE626471B9B571B7B4216 /* RCTFPSGraph.m */, - 4D64B695E3D1A4B87496EAC258BB84A1 /* RCTMacros.h */, - FD9DD910D5C06981186BDAD63B188670 /* RCTPerfMonitor.m */, - 770686229D678BD8D17B9C3C4103774E /* RCTProfile.h */, - 8620E75DBF5B7D56827F270F2CDDD9DF /* RCTProfile.m */, - BC5E26A6F9DFFD3F9E3E2E7D4D7CB197 /* RCTProfileTrampoline-arm.S */, - 1495116E22112E9315699DD2CEEC5B15 /* RCTProfileTrampoline-arm64.S */, - 2FF7E5D0F84784985C0963A5E13C7EEA /* RCTProfileTrampoline-i386.S */, - A2C2BC4FB05DDC6EF560968C5BF8AA93 /* RCTProfileTrampoline-x86_64.S */, + 8417848A33C246DBF9F0A26374E34AF6 /* BannerComponent.h */, + B01D54E09F5250811909DBD8839F9EED /* BannerComponent.m */, + BDBD57513A31CA7A9B1EA59149A57060 /* NativeExpressComponent.h */, + 8DF7BE118B4A9C7992B9F7758F740FA3 /* NativeExpressComponent.m */, + 17887F782EE6846FEF9833CAB3F0E873 /* RNFirebaseAdMob.h */, + B20CD8A27AB4ED9991D5CE8DB676D870 /* RNFirebaseAdMob.m */, + 921669BDFA8122F90068B29D548AC083 /* RNFirebaseAdMobBannerManager.h */, + 82AADF162D49004B235303BC98C8DAB6 /* RNFirebaseAdMobBannerManager.m */, + B6229D3A231329117FB890DA64EC51E7 /* RNFirebaseAdMobInterstitial.h */, + 3D10094A371D09B28AC7855AE82E3205 /* RNFirebaseAdMobInterstitial.m */, + 2A007E613A6BE0172BA89F4F8206660B /* RNFirebaseAdMobNativeExpressManager.h */, + AAA50A9FFB210D77784EA8FB048F3054 /* RNFirebaseAdMobNativeExpressManager.m */, + FD565A43ABA2624D39BC43B81A81F325 /* RNFirebaseAdMobRewardedVideo.h */, + 7069C2C936229A00CE1EFCE2C0FEC1C9 /* RNFirebaseAdMobRewardedVideo.m */, ); - name = Profiler; - path = React/Profiler; + name = admob; + path = RNFirebase/admob; sourceTree = ""; }; - 61425E8AB58C88614EEA60467AB99F6C /* Support Files */ = { + 60007A0C39C3F399DD8B1BBBA494D8AC /* React-RCTNetwork */ = { isa = PBXGroup; children = ( - 3826DF82E9CC270392DC3031EDF5A369 /* React-jsinspector.xcconfig */, - B0021F87AF4D5BCE38D706C751D5C3BA /* React-jsinspector-dummy.m */, - 70C97587CC22DFF7A5BD633A38CBCC75 /* React-jsinspector-prefix.pch */, + FB38CFCCCB4ABF71AC7E2584E2DBC245 /* RCTDataRequestHandler.m */, + F1AEE6B592AEB3C3FC339774AB21E5EF /* RCTFileRequestHandler.m */, + 39420CC50732B5C7EF63B99B8EE64DB9 /* RCTHTTPRequestHandler.mm */, + 0FE4A35B3060C6FAFB1CEA413EF89E21 /* RCTNetInfo.m */, + 41652E9741E4642801B4A9A1A6F8C7AA /* RCTNetworking.mm */, + D168C46C2D5418F8C09978772351355F /* RCTNetworkTask.m */, + AE7F950FD1A569F637878FF7D739EB10 /* Pod */, + 3B13B90CDA2B31B9F11BF38DB54F354B /* Support Files */, ); - name = "Support Files"; - path = "../../../../ios/Pods/Target Support Files/React-jsinspector"; + name = "React-RCTNetwork"; + path = "../../node_modules/react-native/Libraries/Network"; sourceTree = ""; }; - 61D3BB202F9F2BDCAFBE155AC096884D /* Support Files */ = { + 602D08103CC53FB51F5FC81F8B09D425 /* RNFetchBlob */ = { isa = PBXGroup; children = ( - 1164FEEBF72B352C8F7618890AC63B6D /* EXAV.xcconfig */, - 6515AC64D27C87B7C5E178A661BB0A0F /* EXAV-dummy.m */, - A00C952231F8F43E9590FCAFC1C119B5 /* EXAV-prefix.pch */, + 6F3E4946951354BBAC9A7623C9A9F773 /* RNFetchBlob.h */, + 8FF0E90CBD46D14B8158DE06195E1118 /* RNFetchBlob.m */, ); - name = "Support Files"; - path = "../../../ios/Pods/Target Support Files/EXAV"; + name = RNFetchBlob; + path = ios/RNFetchBlob; sourceTree = ""; }; - 61F0530219F839A6078F64487D6A00E1 /* SafeAreaView */ = { + 605F25030AE52A409DB92791B322FDF9 /* React-RCTVibration */ = { isa = PBXGroup; children = ( - 356870037B3F43B3E9AB0BE29AD1FA6E /* RCTSafeAreaShadowView.h */, - 603458B1947B082DFA09CC52C0057886 /* RCTSafeAreaShadowView.m */, - 0A62D7489F27C8A2F94B206B6DE094B0 /* RCTSafeAreaView.h */, - 22DCF2802F9A144C12D094CD9B3648DD /* RCTSafeAreaView.m */, - 95C718E70F68126F5BBB539625221AE4 /* RCTSafeAreaViewLocalData.h */, - A6CE4513D9C9CADFCE2E8F239F5276CA /* RCTSafeAreaViewLocalData.m */, - 535232372892510EA668EA0B95D2E341 /* RCTSafeAreaViewManager.h */, - FD31D6B0CC2C718B128547ADD22A476E /* RCTSafeAreaViewManager.m */, + 89A0807D2B49673C8750B616BECF1EAB /* RCTVibration.m */, + 2C8E8215E0CDE58EAD650770CD8D424C /* Pod */, + 13B1CF27207684E58511B7E0CEE4ACFE /* Support Files */, ); - name = SafeAreaView; - path = SafeAreaView; + name = "React-RCTVibration"; + path = "../../node_modules/react-native/Libraries/Vibration"; sourceTree = ""; }; - 62438FD52A8DC00C77AD9B479ACEC87C /* crashlytics */ = { + 6081EE6755EC27992C1583907DB464F3 /* Pod */ = { isa = PBXGroup; children = ( - 9C117BD5672D5E429709D96222462AFA /* RNFirebaseCrashlytics.h */, - 35F82330B8E68C52F82F58F0989F80E2 /* RNFirebaseCrashlytics.m */, - ); - name = crashlytics; - path = crashlytics; - sourceTree = ""; - }; - 634C1E171E03CEBB3DF6BE33B14FF5D1 /* CxxModule */ = { - isa = PBXGroup; - children = ( - 65C7994B7144D7BD386DEE3187235915 /* DispatchMessageQueueThread.h */, - 387BE2328C28DC2CEFBFC95AA03064EC /* RCTCxxMethod.h */, - 202C4D6DA553B5E3EC6087AD40486531 /* RCTCxxMethod.mm */, - 9399433CF1ACF421382928B069190505 /* RCTCxxModule.h */, - 44C31CCF14610D613D6C140A14825BD7 /* RCTCxxModule.mm */, - BF37F50FC97902AD9B89249E7BD96088 /* RCTCxxUtils.h */, - 61AF358A0DA0DBA787A15264884C5C91 /* RCTCxxUtils.mm */, - FDE859A1CFE903D73EC496F2808B21A4 /* RCTNativeModule.h */, - 2F2911EE8CF76A3661108A945FBBCDA0 /* RCTNativeModule.mm */, - ); - name = CxxModule; - path = React/CxxModule; - sourceTree = ""; - }; - 63E538A246B8819C63147BE5F20AFE16 /* Pod */ = { - isa = PBXGroup; - children = ( - 633B42E5FC15E3A8F82BC89CCC2DA071 /* BugsnagReactNative.podspec */, - 963658A67F583C063C47E4961BBF9F72 /* LICENSE.txt */, - 79B0D89C8F3ADE40B1ADE99C4E53F538 /* README.md */, + 03FD0AB819F302C3EF4B3D524AB5B742 /* React-RCTActionSheet.podspec */, ); name = Pod; sourceTree = ""; }; - 64BA8F1A87E05626795C960B1687BD39 /* analytics */ = { + 60E9A3B66D463E60AE12C3161E7FD65C /* Pod */ = { isa = PBXGroup; children = ( - 6DAB1A43C38395471FDF552B91A4D720 /* RNFirebaseAnalytics.h */, - FF4CCB3FD611F83C724F764EDC90F4CE /* RNFirebaseAnalytics.m */, - ); - name = analytics; - path = RNFirebase/analytics; - sourceTree = ""; - }; - 652BA6F32200074DC2A273422E62917B /* Support Files */ = { - isa = PBXGroup; - children = ( - 83AEF50578E8BE801DC17FA2B78B7DF9 /* RNDateTimePicker.xcconfig */, - CD09EF50591FE6079F45B714CABBF042 /* RNDateTimePicker-dummy.m */, - AD7F341918A5C64065D88DD166F5C8C3 /* RNDateTimePicker-prefix.pch */, - ); - name = "Support Files"; - path = "../../../ios/Pods/Target Support Files/RNDateTimePicker"; - sourceTree = ""; - }; - 66040B7B7809BB1B15E5D023B60AE276 /* Pod */ = { - isa = PBXGroup; - children = ( - C056D0734876597FB2C2C335EC7DD03E /* LICENSE */, - 176FC245BA56A69C554B7B9790542028 /* README.md */, - F27E5EE75D59535887DFA78FD389EE3B /* RNUserDefaults.podspec */, + 6703C32082581B00621FCDD674B73ED8 /* LICENSE */, + 9618FE3ED8CEACEEDC70C22C5216DEB6 /* README.md */, + 26E5B4ECB8E3637E3E2AF67D796484D6 /* RNGestureHandler.podspec */, ); name = Pod; sourceTree = ""; }; - 665C22C86F1FB077E4DA43C47AF6C249 /* Support Files */ = { + 613C12664498E9A840AE22FC2775EA89 /* RCTNetworkHeaders */ = { isa = PBXGroup; children = ( - D9AFB91BBF49BF620AA053C9102946E4 /* RNBootSplash.xcconfig */, - 2C9C70911FE0ECFB92CA0FD3ABF17D61 /* RNBootSplash-dummy.m */, - E521E49A664088B0AC72BA342A771007 /* RNBootSplash-prefix.pch */, + 9961D634417BB323B4F4DCEF34E08B0C /* RCTDataRequestHandler.h */, + 21DBE4BBEA8FF81F7C7334E07828CD37 /* RCTFileRequestHandler.h */, + D8056D7F986C2E2EFE85E02C807F757D /* RCTHTTPRequestHandler.h */, + 87988F40F79859FAC6F8A054C52D402B /* RCTNetInfo.h */, + 9E6B32C790A21A841EDA4BC5A9401C92 /* RCTNetworking.h */, + 48CBFA9FB88CD691B3404C21A69DC044 /* RCTNetworkTask.h */, + ); + name = RCTNetworkHeaders; + sourceTree = ""; + }; + 626D6B56001E9F8189A5EF3CDDB93238 /* Support Files */ = { + isa = PBXGroup; + children = ( + 5F96269818E4FE5E931F3956EAAA776F /* UMTaskManagerInterface.xcconfig */, ); name = "Support Files"; - path = "../../ios/Pods/Target Support Files/RNBootSplash"; + path = "../../../ios/Pods/Target Support Files/UMTaskManagerInterface"; sourceTree = ""; }; - 6715845F6A74CC42E68752AAA382B708 /* UMModuleRegistryProvider */ = { + 63FD51433F7890571C1C2A7C64099E50 /* Pod */ = { isa = PBXGroup; children = ( - 082483C70AE10A5F45C50C7794177471 /* UMModuleRegistryProvider.h */, - 338CC2A9A05E26A831599E57812361DF /* UMModuleRegistryProvider.m */, + DBDD71525B618A4FC1A1B957BB3175EF /* EXWebBrowser.podspec */, ); - name = UMModuleRegistryProvider; - path = UMCore/UMModuleRegistryProvider; + name = Pod; sourceTree = ""; }; - 677A8D5680C320BADDA10014CF8402DB /* Support Files */ = { + 65601A0DBC73189E5CE5D798FAA0DFDB /* Pod */ = { isa = PBXGroup; children = ( - C7930E4CF5334470EFD51157392AB83D /* RNReanimated.xcconfig */, - A3070CBE3065FA5DEE58868B6FD0A8D3 /* RNReanimated-dummy.m */, - 9AC4E0C4B283E74D66F28360F59D51A7 /* RNReanimated-prefix.pch */, + 1195A8241BB209D7752D91E9504B61C0 /* UMTaskManagerInterface.podspec */, + ); + name = Pod; + sourceTree = ""; + }; + 662FFA26565FA81922E8861F031CF258 /* Pod */ = { + isa = PBXGroup; + children = ( + 052F0D9D272AAEFECC957E6CB8B04DF8 /* React-jsiexecutor.podspec */, + ); + name = Pod; + sourceTree = ""; + }; + 663DE72D7E9215B249E0C8ED06CED0EF /* RNAudio */ = { + isa = PBXGroup; + children = ( + 83092E59EF925F1798C306AD31A4BCCB /* AudioRecorderManager.h */, + DFEB94ECFAAC6871B13FB3FD9E83AA75 /* AudioRecorderManager.m */, + 11094D1662D92E580236C8EF33E03B81 /* Pod */, + 2CF9426B6DAEE315D3F2C222BB122847 /* Support Files */, + ); + name = RNAudio; + path = "../../node_modules/react-native-audio"; + sourceTree = ""; + }; + 686740B7E7133ABCC7E637AB4948ECCC /* event */ = { + isa = PBXGroup; + children = ( + 05478CF18D13F38BADF007E74C20948D /* event.cpp */, + C7CEABA4C850F5AE6FC6B75F7A9C44C3 /* event.h */, + ); + name = event; + path = yoga/event; + sourceTree = ""; + }; + 68984D964FC07CAB0A0BEDD9DF8D67D1 /* React-RCTBlob */ = { + isa = PBXGroup; + children = ( + 980C9AA781192DA5461ABE8735B98A92 /* RCTBlobCollector.h */, + 3546BC760EA50844B9B5EA7EE0995913 /* RCTBlobCollector.mm */, + 74DE877035EE74EB44D5D03BB75BD898 /* RCTBlobManager.mm */, + DE55E41657D4475F3CE8EA40B040D62E /* RCTFileReaderModule.m */, + 9B3025B037D1812737A7958706D42344 /* Pod */, + D482D315651F0278C54677B5AD6D565E /* Support Files */, + ); + name = "React-RCTBlob"; + path = "../../node_modules/react-native/Libraries/Blob"; + sourceTree = ""; + }; + 68B5A95FF051D9CB6CD6028F72ADAB6D /* converters */ = { + isa = PBXGroup; + children = ( + 4677195446E5488B8DE51EEE473A810E /* RCTConvert+UIBackgroundFetchResult.h */, + 02E7207020757F9A3FB2E5177DC30328 /* RCTConvert+UIBackgroundFetchResult.m */, + ); + name = converters; + path = RNFirebase/converters; + sourceTree = ""; + }; + 68E00C33235B0611D2C90F4A302F4345 /* Filters */ = { + isa = PBXGroup; + children = ( + D6239308CC1B53D9B40E09F6020AA313 /* BSG_KSCrashReportFilter.h */, + 8D5357EC0F02191720BFC09D0E1C5D6D /* BSG_KSCrashReportFilterCompletion.h */, + ); + name = Filters; + path = Filters; + sourceTree = ""; + }; + 68F636331D3A22438BFB28F06C1BC417 /* UMFontInterface */ = { + isa = PBXGroup; + children = ( + 22C8B3B5D30708E0D32DB24603161DC3 /* UMFontManagerInterface.h */, + 7BFC19D11EB971B3CD362FBC620E2945 /* UMFontProcessorInterface.h */, + 9897ED2BDCCDC32C6D76B2DD9634C6E8 /* UMFontScalerInterface.h */, + 18935E7E6A482C6121AB371499111D51 /* UMFontScalersManagerInterface.h */, + 46A53E5E86C802BFE4948E6276A666F2 /* Pod */, + C7146AD9963C380074607CA5BA6D8FB1 /* Support Files */, + ); + name = UMFontInterface; + path = "../../node_modules/unimodules-font-interface/ios"; + sourceTree = ""; + }; + 692265E3B5FFEF10A9B80BC5CC441064 /* React-Core */ = { + isa = PBXGroup; + children = ( + 1CFF082E514D434545DF73E3D3F8F410 /* CoreModulesHeaders */, + 59C0751592694D798DA3DB5E3C3980C5 /* Default */, + 0441DECD64A9819BF9C6E7CAAEEE5C3E /* DevSupport */, + E8E7CB8DE4CA0C5102A11CBB74366652 /* Pod */, + 87D4782C643244D9358EBB85FC99652E /* RCTActionSheetHeaders */, + 4939F9AF4C632D879FC6B450894928B0 /* RCTAnimationHeaders */, + 504494839680F412E5B6FB3B81B5E38E /* RCTBlobHeaders */, + 287B571F9A7F85979890C86A2B87B0A8 /* RCTImageHeaders */, + 19F083E53B104D98450A632836814C8D /* RCTLinkingHeaders */, + 613C12664498E9A840AE22FC2775EA89 /* RCTNetworkHeaders */, + D2688F48E29F7F56F60026E498F85A39 /* RCTSettingsHeaders */, + 5C93253108DFAAC407FF5C6350209A68 /* RCTTextHeaders */, + 6C72D37672A7495088AF795E95EFD4B3 /* RCTVibrationHeaders */, + 5CD9A1A022065AD47F43F2E3F381AA0D /* RCTWebSocket */, + 16E4727370582532EDB60F6A8C4D2432 /* Support Files */, + ); + name = "React-Core"; + path = "../../node_modules/react-native"; + sourceTree = ""; + }; + 695FA16F10D9046C692B9391D115F8C5 /* Support Files */ = { + isa = PBXGroup; + children = ( + C9AE48D025ED018BDD98CE52096C0000 /* RNFirebase.xcconfig */, + 6BD48EE77936769A0C95168E4AAC836E /* RNFirebase-dummy.m */, + 94E51C32E2091084A5F3CC3F2DD45A7E /* RNFirebase-prefix.pch */, ); name = "Support Files"; - path = "../../ios/Pods/Target Support Files/RNReanimated"; - sourceTree = ""; - }; - 683EC08466ADA749EB8EFA21B746702C /* React-RCTText */ = { - isa = PBXGroup; - children = ( - 7B012D0B2BC77634C8BF32EF8409BE7C /* RCTConvert+Text.m */, - CE7152566D1A33559178736F0DE3167C /* RCTTextAttributes.m */, - E76472B0D745495BEC6D0B8C9EEE9109 /* BaseText */, - 5EFAFAF9C1B1A6DF5CF47503FD7060A0 /* Pod */, - 68606CF29E40E0C974156C3456BAC2FA /* RawText */, - 7EB58023986F0E798BE001F28A81C9E5 /* Support Files */, - 3294D59FC68125048968BDB9C1B1E31C /* Text */, - 73DAFDD040CDAB97F5168DBB69E95D81 /* TextInput */, - 46D941DBF4C6CDEC54BD5EDE255B3D68 /* VirtualText */, - ); - name = "React-RCTText"; - path = "../../node_modules/react-native/Libraries/Text"; - sourceTree = ""; - }; - 68606CF29E40E0C974156C3456BAC2FA /* RawText */ = { - isa = PBXGroup; - children = ( - CA0DD05B31427097444D46ACA3633CE0 /* RCTRawTextShadowView.m */, - 45533DF14ED4EFE52189CAE13473C13F /* RCTRawTextViewManager.m */, - ); - name = RawText; - path = RawText; - sourceTree = ""; - }; - 699A7F6FEE77384A470582467BA8F8FD /* React-cxxreact */ = { - isa = PBXGroup; - children = ( - CF28EC7DE25E24BB4C0F4ED8FE012653 /* CxxModule.h */, - C8DF861B4AC631F3F65B6A339D216BE0 /* CxxNativeModule.cpp */, - 54F2E8898CC234DF4D918DE037C924AC /* CxxNativeModule.h */, - CFC46799B96695284F0D93FF2CBD9E33 /* Instance.cpp */, - B3DBE8EBCC8D7500A5EDBA1A17F5D2FA /* Instance.h */, - 068DD97BE9C269FD40A197EF8547742A /* JsArgumentHelpers.h */, - D6B6866455153F0C88C9AC425906D711 /* JsArgumentHelpers-inl.h */, - 45C8A2669B698784A22CF8108F1A3070 /* JSBigString.cpp */, - B9FC7149D94DFF084D191B1C070F6EB9 /* JSBigString.h */, - 32F2C349D59E36828E96C8963E9CDE75 /* JSBundleType.cpp */, - 78D342071E9E74C51583CF6979E97A94 /* JSBundleType.h */, - BA21698334313D792491E49E77C3B469 /* JSDeltaBundleClient.cpp */, - 6E35D717020D8896440BE519CB959D0C /* JSDeltaBundleClient.h */, - 99B418EDEB220C1A0BCD1A0A0B8156E7 /* JSExecutor.cpp */, - 62B9A522FD69793920A33C573F1E2A99 /* JSExecutor.h */, - 1AB8F4E46E2657ADD2B3E9F7B2C4C0FB /* JSIndexedRAMBundle.cpp */, - 0BA0A7093A69B8402756E016E4FEBEEB /* JSIndexedRAMBundle.h */, - B58B349B77DC5BD8E970EE9930E404C5 /* JSModulesUnbundle.h */, - 389643E2CEF07BCBF0B588BEE771B98F /* MessageQueueThread.h */, - 3C0EE17279C996567D2F074EF0414F4F /* MethodCall.cpp */, - 4E3E33C7B18343D61C3D170F017D87F0 /* MethodCall.h */, - 8A44F997D00019987B9EFD2D3A54B71A /* ModuleRegistry.cpp */, - A93914AD7BBA0852CFDE369494A246B1 /* ModuleRegistry.h */, - DAE8A2391847858777EC8ACFC83F1826 /* NativeModule.h */, - 651C1F507330EB1F461771AF1A875EB3 /* NativeToJsBridge.cpp */, - 34742A3FEAFF78BFDCA00F394852BBEE /* NativeToJsBridge.h */, - 170DF0FE02A38ECB274A62518B1AD171 /* RAMBundleRegistry.cpp */, - 79F723683ACCA77DB181F8F4D1D69975 /* RAMBundleRegistry.h */, - 091F259C74A683B82CFCA07A3599940C /* ReactMarker.cpp */, - C4D1DE2786652F59731EDEF8A0DBF47C /* ReactMarker.h */, - 9A734040A5B5A83A3725D4245DF81EA9 /* RecoverableError.h */, - 0D83EE0D42AEC98C55DE1BC5A74A8EB0 /* SharedProxyCxxModule.h */, - 7F81908E4DF9C3A9AF198B988EACDA5C /* SystraceSection.h */, - 4FE95E7C25395B065480F016BF2291FF /* Pod */, - 2C5DB899668FE96661AF4B428F6FE2B4 /* Support Files */, - ); - name = "React-cxxreact"; - path = "../../node_modules/react-native/ReactCommon/cxxreact"; - sourceTree = ""; - }; - 6A58FDEEF1143B21C1754FB4AE7BCF0F /* RCTSettingsHeaders */ = { - isa = PBXGroup; - children = ( - CC547F27AFE464620F4B58D5283952F4 /* RCTSettingsManager.h */, - ); - name = RCTSettingsHeaders; + path = "../../../ios/Pods/Target Support Files/RNFirebase"; sourceTree = ""; }; 6B316D4F61F7D349A2A4EEB4B290CEE6 /* Support Files */ = { @@ -9978,16 +9957,6 @@ path = "../Target Support Files/FirebaseInstallations"; sourceTree = ""; }; - 6B5169FEB45D8F923A9C26BD91766C4E /* Pod */ = { - isa = PBXGroup; - children = ( - 7779A9A102DBCAA3E0F0B0C8BB64547A /* LICENSE */, - 6883CD65AE78B306992DCC7BCE8D5B2E /* react-native-orientation-locker.podspec */, - 55EBE121DF0CBC202924ADF9DF7DD7DC /* README.md */, - ); - name = Pod; - sourceTree = ""; - }; 6B6C32C73706CF621C5AF986E93AFEA5 /* Support Files */ = { isa = PBXGroup; children = ( @@ -9998,75 +9967,33 @@ path = "../Target Support Files/GoogleDataTransportCCTSupport"; sourceTree = ""; }; - 6B86A18EE0FA37336C81D70D562AD3F9 /* UMConstantsInterface */ = { + 6B77C2A528FBD793FD6D664076CDE75E /* UMNativeModulesProxy */ = { isa = PBXGroup; children = ( - 73D7AE12BEA376704153BD1412CA216F /* UMConstantsInterface.h */, - E37C4370B7315DBF973929501E4DE372 /* Pod */, - ACF54CFF13E945C7972A47B081DC888F /* Support Files */, + F311E3C47D33B13DBE2776545EF45F81 /* UMNativeModulesProxy.h */, + 4026B050CA72676670724048203E67F7 /* UMNativeModulesProxy.m */, ); - name = UMConstantsInterface; - path = "../../node_modules/unimodules-constants-interface/ios"; + name = UMNativeModulesProxy; + path = UMReactNativeAdapter/UMNativeModulesProxy; sourceTree = ""; }; - 6C3EEA1A66E8B14B065D5ECA6C47B416 /* UMFontInterface */ = { + 6B9FF03F6F634214632D484842C4FD99 /* Support Files */ = { isa = PBXGroup; children = ( - BF74F2A8772696D1272263E8C7689D37 /* UMFontManagerInterface.h */, - 7D0A8175214D7223329888CFADBEB2DB /* UMFontProcessorInterface.h */, - AAC76A793B6C4D88ABB6C27AAD0ACF14 /* UMFontScalerInterface.h */, - DB4F6EC5C5800A0CCE98C47B6E8E41EC /* UMFontScalersManagerInterface.h */, - 59B297C571E56192EA05BBCC82DA5BCE /* Pod */, - 2D0234A2B74A9200BA51E2B8E7FA1D7E /* Support Files */, + CAF3C1C585BFCF952CFDF22563FD4CE4 /* RNVectorIcons.xcconfig */, + 6CEABFCA41CB42F5B3CAFFA472645E5D /* RNVectorIcons-dummy.m */, + 88B68424CB0BD6AA63E98BD8272CA630 /* RNVectorIcons-prefix.pch */, ); - name = UMFontInterface; - path = "../../node_modules/unimodules-font-interface/ios"; + name = "Support Files"; + path = "../../ios/Pods/Target Support Files/RNVectorIcons"; sourceTree = ""; }; - 6C7EA90699CDCC92C4533420BFA27CAD /* Nodes */ = { + 6C72D37672A7495088AF795E95EFD4B3 /* RCTVibrationHeaders */ = { isa = PBXGroup; children = ( - 3439A4F51CD7004E03A46A8C1CFCA866 /* REAAlwaysNode.h */, - C43AF8005A08F0890AD659CE3C91EEB9 /* REAAlwaysNode.m */, - 85108725487F7D2C6B566ECA50133065 /* REABezierNode.h */, - DF787BB1E0CEBEA2B848F9F26475F952 /* REABezierNode.m */, - 542AC4AC28EAE758F45556B15C2CC63C /* REABlockNode.h */, - 0C029F597750864869A6AF6D6C5CF9B7 /* REABlockNode.m */, - C16B0AB3BA550BAB0D12425260DD3ED0 /* REACallFuncNode.h */, - B53790AD4EBEFCDA82A9C783FEE738A6 /* REACallFuncNode.m */, - 0E241BA696C3CD7E8FC8B617D4DD2211 /* REAClockNodes.h */, - D7989AAB611C1CBC3D4BF5E88FD14802 /* REAClockNodes.m */, - 496E8AA69FEBFE25A99F6197F4132460 /* REAConcatNode.h */, - 52C7174BC9C090FFCE1A3619FF427FD8 /* REAConcatNode.m */, - E5E9E9457247CF3EAEF2A4A273069C47 /* REACondNode.h */, - 40AB3CA1E71EB7AF865C9E4A2454DEBA /* REACondNode.m */, - 5539FE619426DF1750297D0781DFF001 /* READebugNode.h */, - 538B91047017AB8B2ECBAA02464A7615 /* READebugNode.m */, - 424A17DAC007724F7D5AE614779F3E3F /* REAEventNode.h */, - 727CEE8714BE477B78EB5D7A42995117 /* REAEventNode.m */, - 0E63261E3978943F422CBC31D4AEC1FE /* REAFunctionNode.h */, - EA4E822ED24C31E61AC94B50B125E1B3 /* REAFunctionNode.m */, - DD8DF92340ECC59B2D8A0F26F76025E4 /* REAJSCallNode.h */, - 12363D8E7810F9D32978997391C718AE /* REAJSCallNode.m */, - A6A2E7C068812D9EB15ED0E55FEEE7E4 /* REANode.h */, - 27E86C2438F77089ECDB4E32C97EF052 /* REANode.m */, - 86CDD6B4B9D3FC38F3690B53AD6617B4 /* REAOperatorNode.h */, - F557B001E8C41D66E5253538B9E7A7DB /* REAOperatorNode.m */, - 19C78564C2B123AC387DF002DAC6F6A2 /* REAParamNode.h */, - 1A70BBF1266636A6BD69C601346E4E4B /* REAParamNode.m */, - F6C5D40D80D2E5283D85F6604DEFDCAA /* REAPropsNode.h */, - 8AF491B7DC94C7EBFDFD5C791D6B519A /* REAPropsNode.m */, - A32DB30A7B688DA7A3D4D627CC567A96 /* REASetNode.h */, - 6253EB5A53E273BEE1C7092D9CBDEBB0 /* REASetNode.m */, - A702D8FC4E65539EDE7AFCC50E46B0A3 /* REAStyleNode.h */, - A1B68EBB7391E8F92AAC2C0B00AF7932 /* REAStyleNode.m */, - 01DDFF5FAC484AEC4F0EABD558E7F39E /* REATransformNode.h */, - BC2280109178365BF5E8D19D3664F27C /* REATransformNode.m */, - 4E7CE0632EFA00D927BC58194B78874C /* REAValueNode.h */, - 1DDEBDE9D18E704D506A4C8AA2638468 /* REAValueNode.m */, + E314C75DC0ACC4E5077E036935E40D3E /* RCTVibration.h */, ); - name = Nodes; - path = ios/Nodes; + name = RCTVibrationHeaders; sourceTree = ""; }; 6CF7EC609CAD8174E757012DA4B177A1 /* Support Files */ = { @@ -10080,23 +10007,55 @@ path = "../Target Support Files/SDWebImageWebPCoder"; sourceTree = ""; }; - 6E6C6B7C31932F0725237A100FC9CFC2 /* Pod */ = { + 6D7BED1100E25D916A7B08B7B2D5FEDD /* Pod */ = { isa = PBXGroup; children = ( - 9FFF9F7F29AF91E06560968DC19A7AE7 /* UMBarCodeScannerInterface.podspec */, + 131F4E7FA39E272444228FDB91061F1B /* UMPermissionsInterface.podspec */, ); name = Pod; sourceTree = ""; }; - 6F3E4F31EB61E3359504A1DD721C196B /* Support Files */ = { + 6E41D3FA57F678B5CF2B23EC5D929B74 /* React-cxxreact */ = { isa = PBXGroup; children = ( - 6D2F53023440974A063B63AB9E1ABC22 /* RNUserDefaults.xcconfig */, - CD470D4A16FBB4DAAFAB1FB1DC1E378F /* RNUserDefaults-dummy.m */, - AB0D25A2375F58A112BFD4D461102F7D /* RNUserDefaults-prefix.pch */, + F650DA6B415469641D9DFBFF175D1F4F /* CxxModule.h */, + D34A1447E7A054BF22DF40BDA08A0197 /* CxxNativeModule.cpp */, + 5813747E3321148C9C628526DC88943B /* CxxNativeModule.h */, + 965CDFBB1BD166BB219A0030A7C0C9FB /* Instance.cpp */, + 535EE13156147E38DAEA77FE5AE91DB3 /* Instance.h */, + 6321263A248630E4645EA7591C0BBE5F /* JsArgumentHelpers.h */, + 25DF488B81D0E671DF23DF5FEA48695B /* JsArgumentHelpers-inl.h */, + 636B320601CBCC8B89DD6E7ABD3608A2 /* JSBigString.cpp */, + 565CD3C5BE5D4C48BB31984D19329D93 /* JSBigString.h */, + 0FEBC42AB2D87FD0C0000531A1E7CCCA /* JSBundleType.cpp */, + 22C357387594FDA4AC495365D7ECABF3 /* JSBundleType.h */, + 8DE306F01A8F8C01463E62520EBD4B79 /* JSDeltaBundleClient.cpp */, + 827690DE743685D8E5129378CA84CA1A /* JSDeltaBundleClient.h */, + 6CD1833BA2BA013CA5E2E53441796CAE /* JSExecutor.cpp */, + 986BF827521FEAD00289100D0694D7B7 /* JSExecutor.h */, + BDE91D39AAB6655D69E37B7A15E64831 /* JSIndexedRAMBundle.cpp */, + 19FF8114E311AD8501678DA2DEA3E7AD /* JSIndexedRAMBundle.h */, + B0CC66D253ACAED8D32573749AF303E8 /* JSModulesUnbundle.h */, + 49B4DEB1DAC016ECA7C46AB4A688571B /* MessageQueueThread.h */, + 56A8F506B4F91A8E13FAB50DB4FA5DC6 /* MethodCall.cpp */, + 8ADCC0F216E0F7913C3F75C7C93B7644 /* MethodCall.h */, + FE7CD5C94AFB871210535567E052DFCD /* ModuleRegistry.cpp */, + 3B4E37F98268D21A8352B832538BC8EA /* ModuleRegistry.h */, + 4E3F51F99A0E125B446201A8E4D8376F /* NativeModule.h */, + B11B86F0004D588495EC22D231AFA14A /* NativeToJsBridge.cpp */, + 8612EE252C77A44315B94C42994C2986 /* NativeToJsBridge.h */, + CD8FA610ED442EF54B7A3621701720A2 /* RAMBundleRegistry.cpp */, + 2879556DEB4A8C08C13CA52B827D1B30 /* RAMBundleRegistry.h */, + FA9DF80A8C37BBA9A162076C011D410C /* ReactMarker.cpp */, + 0BFE950C765DC0ADE9C93BF29C121691 /* ReactMarker.h */, + CD07B1E4268858E14F0544203AE43256 /* RecoverableError.h */, + CEBE1AEEEAA3894D097740711D92330E /* SharedProxyCxxModule.h */, + 6251479B660542FA4B8E650B74A21886 /* SystraceSection.h */, + A3490598379DC5FDEDBC4B20CC50F043 /* Pod */, + 3013898BA23D8032F20B25192DB1B634 /* Support Files */, ); - name = "Support Files"; - path = "../../ios/Pods/Target Support Files/RNUserDefaults"; + name = "React-cxxreact"; + path = "../../node_modules/react-native/ReactCommon/cxxreact"; sourceTree = ""; }; 6F88DEA2865A43BC2ACD1E85CDD051E9 /* AppDelegateSwizzler */ = { @@ -10114,65 +10073,50 @@ name = AppDelegateSwizzler; sourceTree = ""; }; - 70D33B37D12E9D090C9FF3FC77044E7D /* Support Files */ = { + 7309AB961739035D0D93E7B2D636539F /* react-native-notifications */ = { isa = PBXGroup; children = ( - 2337DDFDED6611BD80E32A01AB8886B3 /* react-native-orientation-locker.xcconfig */, - E34B64DC01D900F9527A6FDCA9F821B1 /* react-native-orientation-locker-dummy.m */, - D99E6A52E94F195ED249309F88CB52CA /* react-native-orientation-locker-prefix.pch */, + 5A130F9A600D0594233949331634285C /* RCTConvert+RNNotifications.h */, + 1D4E91BC2D9732B86741ECCCD21997B8 /* RCTConvert+RNNotifications.m */, + 8C1F22E76A0175009050761B53AD9665 /* RNBridgeModule.h */, + 6BE5328275FAB669B6D0040970EFA5E6 /* RNBridgeModule.m */, + B8BAA8B10007CE4D8FEB4969D40B6094 /* RNCommandsHandler.h */, + 128D961623172015FE2B685D67B6F34A /* RNCommandsHandler.m */, + CDF82BBA5F38308C657334F5B05987B0 /* RNEventEmitter.h */, + 146308BB6AE4D7FA53EC0DD812FD6017 /* RNEventEmitter.m */, + F7B4DF41D35732CC8203AE6EDC834515 /* RNNotificationCenter.h */, + F1EEA6B7720580ACCAF4F00D2F544C22 /* RNNotificationCenter.m */, + ADB7F9F46EF6A4138FCBB997F5FB5172 /* RNNotificationCenterListener.h */, + B1C94A0B03D6B56BE09722453D630261 /* RNNotificationCenterListener.m */, + 1CA8A55AAE71F7EAC4B68767CBFAAAF1 /* RNNotificationEventHandler.h */, + 7928F1A3A47C5E892B5A7935B9EA2F9D /* RNNotificationEventHandler.m */, + ACFE96085A3777879FACEAC1111C4A68 /* RNNotificationParser.h */, + FEC601D1D74D013675FE7C27FD105C6F /* RNNotificationParser.m */, + 0F61D4BF713EFC630F1A3B9525D0E4A8 /* RNNotifications.h */, + 495445908EE659AF2636C1259E847FBA /* RNNotifications.m */, + 935A072C2C83A8EBEA49BE04DE9E1AB4 /* RNNotificationsStore.h */, + E461259880A7705262D6C4D90956BC2A /* RNNotificationsStore.m */, + 2407A5C97CE083F9080094BA4E3FF07B /* RNNotificationUtils.h */, + C426163CD3D5B0FD4D4FD78018344313 /* RNNotificationUtils.m */, + 2B83A561B4411E2632F6E481392116BE /* RNPushKit.h */, + 7E7E88F03D3F3406A06D39A891E38AC9 /* RNPushKit.m */, + 6A06A5F42608234902F2795066879110 /* RNPushKitEventHandler.h */, + FBDAEFF00D4814C71A9FCFA6911A8F0D /* RNPushKitEventHandler.m */, + F9842A19ACBCF0320E3401C4FC0BFA2D /* RNPushKitEventListener.h */, + 6C376114ECCDF17400B6E3AE4766A075 /* RNPushKitEventListener.m */, + F0ADFF915531392DAEC4C135A00620CA /* Pod */, + 07F280B9F18DF4FF30E0A71CD433450C /* Support Files */, ); - name = "Support Files"; - path = "../../ios/Pods/Target Support Files/react-native-orientation-locker"; + name = "react-native-notifications"; + path = "../../node_modules/react-native-notifications"; sourceTree = ""; }; - 71121F16014A43EA9D978D860E9450AC /* Support Files */ = { + 75AF69FBFA62DB989159283C91003B63 /* Pod */ = { isa = PBXGroup; children = ( - C86689487D4AC89DAE6A1C4E3E993C72 /* Yoga.xcconfig */, - 40ECA3321A2730B374CF7A906DA4D1F9 /* Yoga-dummy.m */, - 2E580349FA744B3346458A3C2E935B86 /* Yoga-prefix.pch */, + 7EFA642ED657529977D8BECDB69C6552 /* EXPermissions.podspec */, ); - name = "Support Files"; - path = "../../../../ios/Pods/Target Support Files/Yoga"; - sourceTree = ""; - }; - 72543ADC992D5A906937813F0602FB41 /* Support Files */ = { - isa = PBXGroup; - children = ( - FECB74A76169853E789D0D17BBE5F768 /* react-native-slider.xcconfig */, - 9895EB822CA5AB1EAD8CDC90429ECE7E /* react-native-slider-dummy.m */, - 2CA5678DC8F76ECB68F2667BD6BAA658 /* react-native-slider-prefix.pch */, - ); - name = "Support Files"; - path = "../../../ios/Pods/Target Support Files/react-native-slider"; - sourceTree = ""; - }; - 73DAFDD040CDAB97F5168DBB69E95D81 /* TextInput */ = { - isa = PBXGroup; - children = ( - 3375C1D4BD7DD40F7EF70F8FB2AA0456 /* RCTBackedTextInputDelegateAdapter.m */, - 8A82857178FB6B496F5B0BCE00B320B0 /* RCTBaseTextInputShadowView.m */, - 6E887F6BE53835287D1AB305304DB272 /* RCTBaseTextInputView.m */, - 25D7037FA61065437F2E75B2CD5F046C /* RCTBaseTextInputViewManager.m */, - BD94ABB8BE4C32628F20FC265681E7A0 /* RCTInputAccessoryShadowView.m */, - 35B98F414D15769FDDBC11E001628A67 /* RCTInputAccessoryView.m */, - 7DEB2FA8CEE41968D60F7D3E00E2C27D /* RCTInputAccessoryViewContent.m */, - FBDA62D7D4CABA46A2DFC2F3A9FCC095 /* RCTInputAccessoryViewManager.m */, - 3A5201057D2833FE481A1362AEFA89DF /* RCTTextSelection.m */, - 17B0DFEBDADA98C8CE07F373D15E6854 /* Multiline */, - 50FC2DFA2CADFB1B8F1531CE777041E1 /* Singleline */, - ); - name = TextInput; - path = TextInput; - sourceTree = ""; - }; - 75420EB6BC6C86A0628380E23A954076 /* DevSupport */ = { - isa = PBXGroup; - children = ( - 9B28BAACF38A308DAE7752D89923EB59 /* DevSupport */, - C90DCC928E2583FF2AF436B3EBECEA6A /* Inspector */, - ); - name = DevSupport; + name = Pod; sourceTree = ""; }; 7608AC1BAFF9991F61A7036E8460C5F2 /* Pods-ShareRocketChatRN */ = { @@ -10189,19 +10133,12 @@ path = "Target Support Files/Pods-ShareRocketChatRN"; sourceTree = ""; }; - 7670EE7B27C0E6ED8ADCEB3BD55DAA51 /* Resources */ = { + 76ECCEB960C83137BA0D68ED2924857D /* Pod */ = { isa = PBXGroup; children = ( - 9FA90F2A19EA39D751067C60883C265D /* de.lproj */, - 4585A7A5C539B02B0BF2A53842C81F01 /* en.lproj */, - 8192956884A0037E0B68630BAE6242CE /* es.lproj */, - 1CBD08A6001612AFBD1D6C1C18C2280A /* fr.lproj */, - 2E129D35D85F70842378DAED6AEA862A /* ja.lproj */, - 4782156508E1F36CB7FD5DD62DE03DC2 /* pl.lproj */, - EE0C2B09F7F6B4B6DC98A4B999EB1057 /* QBImagePicker.storyboard */, - FA6914AAA8D92B304193F795555FEAD8 /* zh-Hans.lproj */, + ECAFE9671EA5B4D2EC7DC5CCA365B2A6 /* RNFirebase.podspec */, ); - name = Resources; + name = Pod; sourceTree = ""; }; 77E5437F2565ABF89F8E76F4530936A3 /* Support Files */ = { @@ -10214,355 +10151,486 @@ path = "../Target Support Files/FirebaseCoreDiagnostics"; sourceTree = ""; }; - 784E5E7F8F4542CBBB55C8C552589683 /* ReactCommon */ = { + 783FA5956C45433FDA7D8EA020EC58B8 /* Pod */ = { isa = PBXGroup; children = ( - F1771C3BE7C0E8597591E9711127B815 /* jscallinvoker */, - C5B234F8869A390499C25B1D38679EC0 /* Support Files */, - 36EF1310E1777548953812BCC3F578DB /* turbomodule */, - ); - name = ReactCommon; - path = "../../node_modules/react-native/ReactCommon"; - sourceTree = ""; - }; - 78AB0C0740661FA1A919507267AEA668 /* messaging */ = { - isa = PBXGroup; - children = ( - 8AE93B7BE8E4B8CC628C1257C9D40F62 /* RNFirebaseMessaging.h */, - 676F9C9E5B5CA96DADC388DB958A0316 /* RNFirebaseMessaging.m */, - ); - name = messaging; - path = RNFirebase/messaging; - sourceTree = ""; - }; - 7A5A5EA459A7ED03CFEBE7BD81E1B981 /* links */ = { - isa = PBXGroup; - children = ( - E7D5D7FCA6C6568054845D64C45FF5CC /* RNFirebaseLinks.h */, - 9B51DF7B5215F677AB26AF7126F92F77 /* RNFirebaseLinks.m */, - ); - name = links; - path = RNFirebase/links; - sourceTree = ""; - }; - 7AD541A4A44E5F5847953E7542B9A930 /* Tools */ = { - isa = PBXGroup; - children = ( - 1B433D027402666189C911F7677C68C7 /* BSG_KSArchSpecific.h */, - 239BE55162CF269E4926013B46201EB7 /* BSG_KSBacktrace.c */, - F1ABB03CDC66CD9BCCD5B21E65525FE7 /* BSG_KSBacktrace.h */, - FE86C3E184FD246EBA281044A830BA6D /* BSG_KSBacktrace_Private.h */, - 5C9F2F1343AF7A8BA895B653D840F849 /* BSG_KSCrashCallCompletion.h */, - 2A3C660C075184E8349C7E814CE48B2A /* BSG_KSCrashCallCompletion.m */, - CA523ABF6A0D9C7C2605E24CCCC7E853 /* BSG_KSDynamicLinker.c */, - D916A145C86ACF5D6B7D8B59318A684D /* BSG_KSDynamicLinker.h */, - C9F14057FF9D2198A1144BA0005C2EF7 /* BSG_KSFileUtils.c */, - 31E1FCAB5F0FDA1320E0B4D3E33C49B0 /* BSG_KSFileUtils.h */, - 4307232295CBA79E7CD2734C1D761BF4 /* BSG_KSJSONCodec.c */, - C7C013F8C1B065D53C6E7653BAB68572 /* BSG_KSJSONCodec.h */, - D10B756D6433BD53BC68C90390C45CC7 /* BSG_KSJSONCodecObjC.h */, - C3B02F019F3C05BE57654F61A3656B34 /* BSG_KSJSONCodecObjC.m */, - D0018E5273E1F3A9E33A2A60A4A239E0 /* BSG_KSLogger.h */, - 663A2F203BA900C797824FFA89D4BECE /* BSG_KSLogger.m */, - 7639B6DBE98AE5D9CBE69749C5D1778D /* BSG_KSMach.c */, - D97FE7AC856985BE11B7345F38491585 /* BSG_KSMach.h */, - F2F6F9CE92EF8885DF428F406A04E015 /* BSG_KSMach_Arm.c */, - FBA73E52609D7D1B032A5C01E116D8D6 /* BSG_KSMach_Arm64.c */, - 49497B791975A6D1FDBF5B4F8D1FB4D3 /* BSG_KSMach_x86_32.c */, - 833A2697F2C7ADB11744A5832AB31057 /* BSG_KSMach_x86_64.c */, - 0F8CDB7251C4DD0DAF59A86C804B856C /* BSG_KSMachApple.h */, - 9E5E583DDA13898683E5CA0D326778FC /* BSG_KSObjC.c */, - 827FED012D06E2542D11D73C1DAB5AEB /* BSG_KSObjC.h */, - 1510D1383CD77197A987E752485FA456 /* BSG_KSObjCApple.h */, - 4F861E509BB1D167464D241BA5DDE472 /* BSG_KSSignalInfo.c */, - D44B0D95BDFB4FC2B12FF156D34873B6 /* BSG_KSSignalInfo.h */, - B4E118CA5DB7999296F32C8A6E78548A /* BSG_KSSingleton.h */, - 0C2F777EBC4324C29F0BC5D5896D30E8 /* BSG_KSString.c */, - 7A42EA128B624DE465416479D0357F46 /* BSG_KSString.h */, - 6E45F889C3FE17736E3EF7B34177B638 /* BSG_KSSysCtl.c */, - 164B92D0063FA055AF79B570D6031EC6 /* BSG_KSSysCtl.h */, - CD47D297B233E6B1B7503E9B48C8A8B0 /* BSG_RFC3339DateTool.h */, - 0762C4F48C07AF4FCD42EBD0FCD533D0 /* BSG_RFC3339DateTool.m */, - 8BB773C29D6CE3712DA8D04B3E3F8E9F /* NSError+BSG_SimpleConstructor.h */, - EE0C9D2BC6D6081E1FD6FA2B41F8B47E /* NSError+BSG_SimpleConstructor.m */, - ); - name = Tools; - path = Tools; - sourceTree = ""; - }; - 7D31A9296C30C397C409E78CFAE80272 /* Support Files */ = { - isa = PBXGroup; - children = ( - EDF13684DFD35C1534554E78EB5E561C /* SocketRocket.xcconfig */, - BE31E7F6241CF0B138A7806E8CB36547 /* SocketRocket-dummy.m */, - 4119AF802DA7AA45913A38DB6D5B44F5 /* SocketRocket-prefix.pch */, - ); - name = "Support Files"; - path = "../../../../ios/Pods/Target Support Files/SocketRocket"; - sourceTree = ""; - }; - 7EB58023986F0E798BE001F28A81C9E5 /* Support Files */ = { - isa = PBXGroup; - children = ( - 670F19CD099E71FFF3DB849FA9EF1C2B /* React-RCTText.xcconfig */, - 6798DBC55D7C95271E0674633811C427 /* React-RCTText-dummy.m */, - 79D41FD2877BB095503E0BE5D805D440 /* React-RCTText-prefix.pch */, - ); - name = "Support Files"; - path = "../../../../ios/Pods/Target Support Files/React-RCTText"; - sourceTree = ""; - }; - 7FB0CB4A606E3A3821B35F1862FAF3EA /* Support Files */ = { - isa = PBXGroup; - children = ( - 2583B3124E98A395B0C407D847D73F19 /* ResourceBundle-QBImagePicker-RNImageCropPicker-Info.plist */, - 6054B2DD1ED3D15C8ECD803F4364A544 /* RNImageCropPicker.xcconfig */, - FF1FEBEDD561BAEF33A559766BA4CECA /* RNImageCropPicker-dummy.m */, - 5C83CDFF04D1A01B13629CF955351BD8 /* RNImageCropPicker-prefix.pch */, - ); - name = "Support Files"; - path = "../../ios/Pods/Target Support Files/RNImageCropPicker"; - sourceTree = ""; - }; - 810687E05886DEC54B9540AD6446489F /* Support Files */ = { - isa = PBXGroup; - children = ( - 329D269B4F8F72EA282F5DFAE404C963 /* react-native-document-picker.xcconfig */, - 255D0FA10027F83D8A9415C7B4456159 /* react-native-document-picker-dummy.m */, - 3C338BD60261AF2FD0C7B470F23922BB /* react-native-document-picker-prefix.pch */, - ); - name = "Support Files"; - path = "../../ios/Pods/Target Support Files/react-native-document-picker"; - sourceTree = ""; - }; - 8305C3C58F3D12D8AB59DF3D82658DA7 /* Pod */ = { - isa = PBXGroup; - children = ( - 279D2353658C49913AE86F14F5858CCB /* React-RCTAnimation.podspec */, + C24A123952AD94E3FE0404B07BA9A433 /* FBLazyVector.podspec */, ); name = Pod; sourceTree = ""; }; - 830F002DF6C8BD3A03A31B98A8BB353C /* RNFirebase */ = { + 7893943962BD5D423BF2F0FA7058827B /* React-RCTAnimation */ = { isa = PBXGroup; children = ( - 13EABF8099CB3BAAD767B05803D5839C /* RNFirebase.h */, - 5A35B117843579EEF47246C58706C5F0 /* RNFirebase.m */, - 6084DDC35E5D37C93CAF1107978E5DBD /* RNFirebaseEvents.h */, - 1F900664606405A9CBE565FDAEAE2BB7 /* RNFirebaseUtil.h */, - 1FC78CD3DF37497B74B8B2E1CA609313 /* RNFirebaseUtil.m */, - D4E63DB3782E2FFB6D1C16EF6C1CF77B /* admob */, - 64BA8F1A87E05626795C960B1687BD39 /* analytics */, - 2BB8D38B764F5FBD80E6C911DDD77F82 /* auth */, - 1F5C28C94FB734783BA92939B053570B /* config */, - 5DB57917CA3B411F3C494A5072B89668 /* converters */, - AB08AA6FE5037D6876345803174CEF9A /* database */, - 089563BEB6E33AD22D4D724B10371301 /* fabric */, - 084F18462707434E11AA191D4D544DAA /* firestore */, - 1FC23761EE26F24647D8F154DCC230DF /* functions */, - 314CEF9ADCBC246FB295FE7FA286A72E /* instanceid */, - 7A5A5EA459A7ED03CFEBE7BD81E1B981 /* links */, - 78AB0C0740661FA1A919507267AEA668 /* messaging */, - 50E17F20A38778D0F9C64D563B8F4610 /* notifications */, - BEA7193F481FCCDC54C44643E4EFC6FA /* perf */, - 95D5695FBDE3EB6FFA0250E73B2483A6 /* Pod */, - 937B16FD06C214C1623E36C1066F9935 /* storage */, - 2A52F271E022535247B4FF58795685F1 /* Support Files */, + 071AA34BD25C821E40C621307ACA926E /* RCTAnimationUtils.m */, + 4368BE8AB9CFAD4122EE9A7CB749D345 /* RCTNativeAnimatedModule.m */, + 73B37AC4B9C33052FBC9BC1B903457AF /* RCTNativeAnimatedNodesManager.m */, + 3FDBD02648068C60D6B0A15550388962 /* Drivers */, + C4A508495264F11C79FDB5DCAEE568EE /* Nodes */, + 7B3801BB7A87CDF0440EA5FE13235FF0 /* Pod */, + 507520146F804B2915190E4FFB015D50 /* Support Files */, ); - name = RNFirebase; - path = "../../node_modules/react-native-firebase/ios"; + name = "React-RCTAnimation"; + path = "../../node_modules/react-native/Libraries/NativeAnimation"; sourceTree = ""; }; - 8375383DCCA44D47CBC84715B7D9D0D3 /* Modules */ = { + 78C14DD657C785AEBED07F91E8D4687D /* Pod */ = { isa = PBXGroup; children = ( - F84D536010750904489076985DBC630B /* RCTAccessibilityManager.h */, - CA3371B5B15F7DC4CCF22BBF4078D864 /* RCTAccessibilityManager.m */, - 150FA0DA16A869AC68AF87F39880529E /* RCTAlertManager.h */, - D928D107A0205FC146B0B4D0DA6217B2 /* RCTAlertManager.m */, - 160690186E5B65B940AE74951A3E9B3B /* RCTAppState.h */, - 9FF10750196677D1DEC87898FEF4B219 /* RCTAppState.m */, - 355046293781F1CAE32BB1C4CE8258DE /* RCTAsyncLocalStorage.h */, - 1DD6E94F4BB2EB60DDEA158D8DA9E9B3 /* RCTAsyncLocalStorage.m */, - D45C637C3EFB15AF8940238347419E27 /* RCTClipboard.h */, - 1B4CE47AAEE3E338D296FF8B71DFDA84 /* RCTClipboard.m */, - 324C341C67E51980953FB2A952813183 /* RCTDeviceInfo.h */, - 7FB983A632C1D1A294AAF50E8BCD9BAD /* RCTDeviceInfo.m */, - A97135A9FF0BCD9BF02F7D39ECD79FA4 /* RCTDevSettings.h */, - 4F76D923E4F1B3560DEF7B0F66F4FF75 /* RCTDevSettings.mm */, - 98305923090289A42F8E6DE81E905800 /* RCTEventEmitter.h */, - BDE577FD28DA6C87A519E233BA0FC8D9 /* RCTEventEmitter.m */, - AC7C0F5CA672859F3E6F54731FF78567 /* RCTI18nManager.h */, - 3E24B5E9BA4E1E8734E0431140E2D485 /* RCTI18nManager.m */, - 14627FA88A737246F278536FA23AE01E /* RCTI18nUtil.h */, - 52B964F114FDAAD446D5928A05EDCA0A /* RCTI18nUtil.m */, - 770EC53C8416C142407CC52EF9EBA6EC /* RCTKeyboardObserver.h */, - 26AC45CC78CD938F00939C83FC147E78 /* RCTKeyboardObserver.m */, - B3152E50EB9AD9614CBDC9B6A5AA2639 /* RCTLayoutAnimation.h */, - 301FCE951F2D1213894FFD2A9F1C86B6 /* RCTLayoutAnimation.m */, - 7A5D6A5AB38FAF86E652DF4E0E7D838C /* RCTLayoutAnimationGroup.h */, - E3B1D7BD8244731CEE71638B9028B0E0 /* RCTLayoutAnimationGroup.m */, - 99F77BD252D247427D31DDA50F27E380 /* RCTRedBox.h */, - 4455645A7164B3DE0B1756DAEAC5C318 /* RCTRedBox.m */, - 547501DCD5BE356E8F4D1A4970D9AB13 /* RCTRedBoxExtraDataViewController.h */, - A51B066308182EAFF665F73AD486C2CB /* RCTRedBoxExtraDataViewController.m */, - 0AAB16903F6C72F5AC5A5D643B4A9E7B /* RCTSourceCode.h */, - D8D105744D89D41C51D7366D9C1F12AF /* RCTSourceCode.m */, - 3FD98BA6B8B36A3A9D2BE342D332A619 /* RCTStatusBarManager.h */, - 46AD5611B8101B3D398797EB9B7049A9 /* RCTStatusBarManager.m */, - 39A2D851FE615DF7A584C8271B878C49 /* RCTSurfacePresenterStub.h */, - 5FD85CBF9DF39FB8FA9F5165A14B4B85 /* RCTSurfacePresenterStub.m */, - F98B5C28791B31F1BD8EDCF876EE4A37 /* RCTTiming.h */, - 89898C341B98EDD11F13631BF24D54CD /* RCTTiming.m */, - CE5054CB399F9901FF193F88B8D5427D /* RCTUIManager.h */, - 64D6A0EC48B1AD4A2A516B7E6395D9C8 /* RCTUIManager.m */, - F151B276A968B757C730FB4784B496E5 /* RCTUIManagerObserverCoordinator.h */, - 672903B0E575274B044EE2771C1CAF7E /* RCTUIManagerObserverCoordinator.mm */, - BE11EEA3F6FF26A0F1D1B45140033B94 /* RCTUIManagerUtils.h */, - FA29B7E7205388792798F4B3377F3E59 /* RCTUIManagerUtils.m */, + 1DC6C31D4AE93CC9AC8592C333F974BA /* UMFaceDetectorInterface.podspec */, ); - name = Modules; - path = React/Modules; + name = Pod; sourceTree = ""; }; - 8495781585251CD82D4C2CE882696453 /* vendor */ = { + 7954050E29A1526614ADE3F5FB158A66 /* Interfaces */ = { isa = PBXGroup; children = ( - 5220619B561CA6F2834712C1AE475C73 /* bugsnag-cocoa */, + 644AB07B2AB908600728D0D3C86A669D /* EXAppLoaderInterface.h */, + 9F231E7A508F455940C09000159F5F86 /* EXAppRecordInterface.h */, ); - name = vendor; - path = cocoa/vendor; + name = Interfaces; + path = EXAppLoaderProvider/Interfaces; sourceTree = ""; }; - 84D25AA43B8CDD6E12468636FCC35D5D /* Support Files */ = { + 79F6FF5D1B4FF7FE73449F96FC0BAEB1 /* UMBarCodeScannerInterface */ = { isa = PBXGroup; children = ( - 7E561A083D82315E4BC4219566966904 /* RNGestureHandler.xcconfig */, - 2E05218823012A4B1EEF8F9DBB40D1E0 /* RNGestureHandler-dummy.m */, - 491C4D2AD815C77CA5C389D78DDDCD7F /* RNGestureHandler-prefix.pch */, + 35145DC66624F0E776BF52C0BAB5863F /* UMBarCodeScannerInterface.h */, + 07209CEE98FCE4A92F6952E84C9631E6 /* UMBarCodeScannerProviderInterface.h */, + 51B2E95ADCAE35DC389968FC5B212995 /* Pod */, + 1B6F8C0DB31142E8A7971C871F419E9F /* Support Files */, + ); + name = UMBarCodeScannerInterface; + path = "../../node_modules/unimodules-barcode-scanner-interface/ios"; + sourceTree = ""; + }; + 7A264EEB778D93C70F783B482A5CB2D2 /* Pod */ = { + isa = PBXGroup; + children = ( + 5CA6EA65B6A4DCAD7CA99970C3CE2F49 /* EXConstants.podspec */, + ); + name = Pod; + sourceTree = ""; + }; + 7A801EB42EEECD80A429DD22668A292E /* Support Files */ = { + isa = PBXGroup; + children = ( + 95139157D114FB108933DFC69FECD2EA /* React-CoreModules.xcconfig */, + 464064AA6F64B6B4C17E0FDAB271E050 /* React-CoreModules-dummy.m */, + 061E6228DDEA6938940BACBB7B79F537 /* React-CoreModules-prefix.pch */, ); name = "Support Files"; - path = "../../ios/Pods/Target Support Files/RNGestureHandler"; + path = "../../../../ios/Pods/Target Support Files/React-CoreModules"; sourceTree = ""; }; - 85DAE119CEE8017AA8DDF07E6661ED5C /* Handlers */ = { + 7B3801BB7A87CDF0440EA5FE13235FF0 /* Pod */ = { isa = PBXGroup; children = ( - AC95BCBFF2E6B35B1515A5AE39ED0FAE /* RNFlingHandler.h */, - 75DE09E0918C540F371EFBD969D982CB /* RNFlingHandler.m */, - D63692C0E7A705D9370F7BD189DAA2CF /* RNForceTouchHandler.h */, - CA7007C33B613B85F7224B8C1483A870 /* RNForceTouchHandler.m */, - D7E27CA1DCEF358279A3960D6BADB155 /* RNLongPressHandler.h */, - 931A1156880F35BD9F6F44BB9BE4A476 /* RNLongPressHandler.m */, - 6F779C63F901699AAD271415114C2F4D /* RNNativeViewHandler.h */, - 52365A8480F8EAE6885A277BFE38C27B /* RNNativeViewHandler.m */, - 7BC795C895152549297A14DC372AB624 /* RNPanHandler.h */, - 02F725A207A9E435E47C3A0729C45139 /* RNPanHandler.m */, - 9D66A331ECD318AD1EEC4BA57AABA5A8 /* RNPinchHandler.h */, - 7130E8836E6922C737FF3F3F35012540 /* RNPinchHandler.m */, - 4E2058AF25652B9765A51F7C92CDA8E2 /* RNRotationHandler.h */, - 2679C9C2E3B6F0640D6DD9B7D603BC4E /* RNRotationHandler.m */, - 30B42C0239D75D77F4F692191C449F96 /* RNTapHandler.h */, - 1B9817DDC659D19779803F9E20C6AB86 /* RNTapHandler.m */, + 94728FCA009C8D4E8032027A6D9CE7BE /* React-RCTAnimation.podspec */, ); - name = Handlers; - path = ios/Handlers; + name = Pod; sourceTree = ""; }; - 85E51D937E23530052EA6AA48FC33EC3 /* Default */ = { + 7BC41741053FC7FBD3C6803B8533E282 /* react-native-slider */ = { isa = PBXGroup; children = ( - C95FD7F7AF8B6B4A5F423947BD8C47B6 /* Base */, - 04EC42867F4051B3449799D9980981BC /* CxxBridge */, - 634C1E171E03CEBB3DF6BE33B14FF5D1 /* CxxModule */, - BF4D3783CBB5337FDCD3AD343E7744B4 /* CxxUtils */, - 8375383DCCA44D47CBC84715B7D9D0D3 /* Modules */, - 60D1E3A5D26CFA8343C6287B2D6CCFF7 /* Profiler */, - 29CFC591A83F7B70874185F261BC50A8 /* UIUtils */, - EFEE66879AE6B44AD8C608BCED8A2BA5 /* Views */, + 0C9035805E189D647067EF790B3332FC /* RNCSlider.h */, + 58E309FAA47B11B7B5D3217B55F0FDDC /* RNCSlider.m */, + 0A7D6F4043A5D4ECF4512F642C43C17A /* RNCSliderManager.h */, + 8988AE6A601B0F2DB1CF64F62CB271A5 /* RNCSliderManager.m */, + CCD0696552443ADEF7328961B7BB3785 /* Pod */, + CECDDB968B50E71CA87E7E9FA8030FBA /* Support Files */, ); - name = Default; + name = "react-native-slider"; + path = "../../node_modules/@react-native-community/slider"; sourceTree = ""; }; - 86E5B6A8F90498FD9469F13FAB3B7508 /* ScrollView */ = { + 7C457E40CC0A5AB06B90C02300B64F07 /* Source */ = { isa = PBXGroup; children = ( - BBF53F9C604AB4436239C85D4A730B20 /* RCTScrollableProtocol.h */, - 04401F754D467E27089BDCB37E19F6C3 /* RCTScrollContentShadowView.h */, - 262331116A81D1C127DD7B434199B78B /* RCTScrollContentShadowView.m */, - D3F5DEDE72F9BC9C91355919B2C12D2D /* RCTScrollContentView.h */, - 2D078396B9ADE58EE3989BC92CE12587 /* RCTScrollContentView.m */, - CD17BCF75ACA06CD42D42089C2076038 /* RCTScrollContentViewManager.h */, - 1588E29142F3C2B86991D3641C9D3BF9 /* RCTScrollContentViewManager.m */, - F94A2AD99091C9E2C768F460BDED0C37 /* RCTScrollView.h */, - 5D865DAE916128207DE24EADBF3BAE84 /* RCTScrollView.m */, - 68F688C70F7602F31121EA84CAE8C6D8 /* RCTScrollViewManager.h */, - AF5387405863629488A740A14865A803 /* RCTScrollViewManager.m */, + AAD3A3D0CC246CB2EB3994FBD1A2D75E /* KSCrash */, + ); + name = Source; + path = Source; + sourceTree = ""; + }; + 7D2B0C97DBD5BBE0943FD078F7518AAB /* Core */ = { + isa = PBXGroup; + children = ( + ); + name = Core; + sourceTree = ""; + }; + 7D3E3C443E333CF5F4E8C0A3272BB23E /* Pod */ = { + isa = PBXGroup; + children = ( + 445906CAC8934B17BE0591219143FF81 /* LICENSE */, + ACA006BA2957A14C3E181488A9D61840 /* README.md */, + B13841985C2DA28D0C3225208AFF2650 /* RNBootSplash.podspec */, + ); + name = Pod; + sourceTree = ""; + }; + 7DB980D49B81255151C87C41582D9A86 /* ScrollView */ = { + isa = PBXGroup; + children = ( + 24EB8B7CF7A55316666DD0A89214CE04 /* RCTScrollableProtocol.h */, + 5A7B0C1C76773A38052B63E278819AC5 /* RCTScrollContentShadowView.h */, + E4E583ABEBCC7E3F7B23B300229B4EC0 /* RCTScrollContentShadowView.m */, + 69D7CE7BBF3A36EA846D94B45E64B36D /* RCTScrollContentView.h */, + E41A0625572600783D5F31ED7F045ED2 /* RCTScrollContentView.m */, + 7A203F197885C11C5848610C607A893E /* RCTScrollContentViewManager.h */, + 6BBA3D75201AD135E3C4F124CBA41DC5 /* RCTScrollContentViewManager.m */, + 053E12B6FE85A8F6D4D8B0558869991B /* RCTScrollView.h */, + DE42EA30256051B7917CC764C8EE9FA0 /* RCTScrollView.m */, + DA6B5D7C25005F26EA1F762DDBBBD31A /* RCTScrollViewManager.h */, + 81E08A05E77AD5C7A1020F208DFD4033 /* RCTScrollViewManager.m */, ); name = ScrollView; path = ScrollView; sourceTree = ""; }; - 87A18F37D85A1705A10412C52AFE5F4A /* TextInput */ = { + 7DE404828B99758A89F128A99B1B9C7F /* Support Files */ = { isa = PBXGroup; children = ( - 4F10B268A6259F94F71B5D146A4FFD11 /* RCTBackedTextInputDelegate.h */, - 3D9CA88B1BD3C6055F2E952ED7561E51 /* RCTBackedTextInputDelegateAdapter.h */, - 59EC4FEB968B020E0CD690A6DB3E868B /* RCTBackedTextInputViewProtocol.h */, - EB5C192F043DD7CD066E5CB4D22CCE92 /* RCTBaseTextInputShadowView.h */, - CE69419E38094A83898713802458E7E1 /* RCTBaseTextInputView.h */, - C55E7F8ECA540C10662FB91C50C909BE /* RCTBaseTextInputViewManager.h */, - 53845A81703C1C4952A0BB23FEE64B7D /* RCTInputAccessoryShadowView.h */, - 1E2C8AAD119BED651B2BAF6C020FAD3C /* RCTInputAccessoryView.h */, - 661399D54AE297D8AE1A9DAB3725099C /* RCTInputAccessoryViewContent.h */, - 1820332532E60ECDD82A8E03893DD8E8 /* RCTInputAccessoryViewManager.h */, - 966BEA81EA3259693A21B0C8773FFFA3 /* RCTTextSelection.h */, - DC6D11F1F15456FF3936BF3B54E2941C /* Multiline */, - EB02FDD744F289342F41B6F1492403F7 /* Singleline */, - ); - name = TextInput; - path = Libraries/Text/TextInput; - sourceTree = ""; - }; - 87EBEBA8E573A9593E8DFFDAAAF07F63 /* KSCrash */ = { - isa = PBXGroup; - children = ( - F26EC004BC0F805A2D696EF304614D7F /* Source */, - ); - name = KSCrash; - path = KSCrash; - sourceTree = ""; - }; - 8B50D825A0AA999957AEF67C53D8B072 /* BaseText */ = { - isa = PBXGroup; - children = ( - E7ED923F9585210CE8597F266367124E /* RCTBaseTextShadowView.h */, - CEE74D72BD81F22BDDA2A8ECAC0EF55F /* RCTBaseTextViewManager.h */, - ); - name = BaseText; - path = Libraries/Text/BaseText; - sourceTree = ""; - }; - 8CD71A435AD246129B7C77A3E1F5ED31 /* Support Files */ = { - isa = PBXGroup; - children = ( - FD1362BA26D5112AE41ADA2C5A6F6273 /* EXHaptics.xcconfig */, - 8D8B3E5C3E4B9372369E6A593B7CCCCA /* EXHaptics-dummy.m */, - 4ACE1713CF0D67CDFB06ED354C87253E /* EXHaptics-prefix.pch */, + D045AEF9F23D6AC81AA9505593167B69 /* RNScreens.xcconfig */, + A47BC74A3642010E8BF4C76D781F4588 /* RNScreens-dummy.m */, + 38432BA34CBDF337C8E48E5858BCE7D9 /* RNScreens-prefix.pch */, ); name = "Support Files"; - path = "../../../ios/Pods/Target Support Files/EXHaptics"; + path = "../../ios/Pods/Target Support Files/RNScreens"; sourceTree = ""; }; - 8F6829245E2DAD049B8300A76FE7EFE0 /* Support Files */ = { + 7FA54B6FF91B95611FAE005C2C179FE2 /* EXFileSystem */ = { isa = PBXGroup; children = ( - EB31CC643E32D8B050EF2FC73A7982FC /* rn-extensions-share.xcconfig */, - A0A1B18683237ABED0E0AECAC13E49AA /* rn-extensions-share-dummy.m */, - B57D47AC691DAF42EDAA4D89956EC77E /* rn-extensions-share-prefix.pch */, + 017AA1EC0956C3075F84099B5F9EE844 /* EXDownloadDelegate.h */, + 9DC25696DAF43807F365F44F575C4E8A /* EXDownloadDelegate.m */, + 5802B7A0529F2862ADCC21060B02AF0D /* EXFilePermissionModule.h */, + AEB1D052D9CA6562839EFD9298E150C8 /* EXFilePermissionModule.m */, + DBBD0F8BF355B4D86CD79147196FD9C4 /* EXFileSystem.h */, + 779AAC453F8FB8A7223C104D0BE1C314 /* EXFileSystem.m */, + C66CC20831BCBEF7702213D8C3355533 /* EXFileSystemAssetLibraryHandler.h */, + 0F1D5ED9C4FD4D89EA62D27A4E52FE63 /* EXFileSystemAssetLibraryHandler.m */, + 147F0FC071C559A962350966AA459C27 /* EXFileSystemLocalFileHandler.h */, + 176196C60786A12681D53DE0574DA35E /* EXFileSystemLocalFileHandler.m */, + 1B271201FF2AF3CF009F9903A4F347D7 /* Pod */, + 245ECF5E72044EB53BE3A882B83ADDEC /* Support Files */, + ); + name = EXFileSystem; + path = "../../node_modules/expo-file-system/ios"; + sourceTree = ""; + }; + 803D0E9C717944436BD8F7A1FF8D47EB /* Support Files */ = { + isa = PBXGroup; + children = ( + 0ACADA2C0709063A90146E70C934F3EA /* RNRootView.xcconfig */, + 76C889C2773FF8E6395422F9314FE86C /* RNRootView-dummy.m */, + 41621A3395ABDCD31C0BE787B0F375AF /* RNRootView-prefix.pch */, ); name = "Support Files"; - path = "../../ios/Pods/Target Support Files/rn-extensions-share"; + path = "../../ios/Pods/Target Support Files/RNRootView"; + sourceTree = ""; + }; + 8110CC4158050D21E0154CC6F631E3F9 /* QBImagePickerController */ = { + isa = PBXGroup; + children = ( + A081C2890E864E3504B3B4552B972C53 /* QBAlbumCell.h */, + 4B8495F202AB54ED0DD218EEC127DF3C /* QBAlbumCell.m */, + 86586632FE78B03656CD3C5B2AE0AD79 /* QBAlbumsViewController.h */, + 90E20766F6B425775E572CC15A75ADBE /* QBAlbumsViewController.m */, + AC735A59116C66149F11C9C6ECA571AD /* QBAssetCell.h */, + 8933B2E3ED8C0EB07F4776D48B0272A6 /* QBAssetCell.m */, + 460A7340C0C22B2C9730067FDCB0B7A7 /* QBAssetsViewController.h */, + 98C1DBFA71052149F3EE5D9EFC687522 /* QBAssetsViewController.m */, + 13D536AFCE3AD22E3689BC5612CB06E1 /* QBCheckmarkView.h */, + C9AEAF103FBBF7D92B7B32B40FF1AB03 /* QBCheckmarkView.m */, + 277B945E2FB601EA03F50A2E8436C115 /* QBImagePickerController.h */, + DBF29F8652A0F7C37431977C2120739C /* QBImagePickerController.m */, + E36B045EFCE2734A7701EAEDDC05A232 /* QBSlomoIconView.h */, + 8135E9B831B83589E003527B4B16340D /* QBSlomoIconView.m */, + C1B4EAEDBB4470CFCF598E6FF7CC4917 /* QBVideoIconView.h */, + 0ED61C842590DBA7937D308C0B6804EA /* QBVideoIconView.m */, + B6CECEFE723256B99091772FFAA1E804 /* QBVideoIndicatorView.h */, + D3C6DEE768B5877013FC01775363AD4F /* QBVideoIndicatorView.m */, + 5AE26D3A5217D23F5A1B7E79A82CADBE /* Resources */, + ); + name = QBImagePickerController; + sourceTree = ""; + }; + 81D064B31AEC611810AB9D56020D0F2D /* core */ = { + isa = PBXGroup; + children = ( + 0324AFEAF677ABDDC5DF2C723CB58373 /* LongLivedObject.cpp */, + 38FC68E3E17EC6854982DDDAD639B419 /* LongLivedObject.h */, + D08A9161C10FA43A9478466E564BA91B /* TurboCxxModule.cpp */, + A5F448386CBE4CD578FDCAC472B044C8 /* TurboCxxModule.h */, + 20AB771AA698A314809BE121BCFE091C /* TurboModule.cpp */, + B255948DF124DF951901703DCC532B92 /* TurboModule.h */, + 9D14418A9FCD05F5C0F3B6B2BBF501B0 /* TurboModuleBinding.cpp */, + CC1A8422AE202E45008D12C095D7CFD2 /* TurboModuleBinding.h */, + 394C59DEA4E90E10EA55F0EC97A723FD /* TurboModuleUtils.cpp */, + 77BF86CD83A4F1DED5398B8BFBED3A9F /* TurboModuleUtils.h */, + 872EB31D3B13BD24F68E38A0ACBE2D1F /* platform */, + ); + name = core; + sourceTree = ""; + }; + 82D8BEDAC4F64D872D8899FA8987ACE0 /* Pod */ = { + isa = PBXGroup; + children = ( + B11418C4D1D542261F7AA14ED17A1BEA /* LICENSE */, + 09AF128C9D77084F4D4AA8E723EC123D /* react-native-appearance.podspec */, + A40588D746061F920A89898D60115F4D /* README.md */, + ); + name = Pod; + sourceTree = ""; + }; + 83DA9F45D1280FBAAFCAC5A275190010 /* Text */ = { + isa = PBXGroup; + children = ( + D8105987156AE60E1367FC56E28A19ED /* NSTextStorage+FontScaling.h */, + 5CFF31790601FBE2A0771E7E1C5AE8CA /* RCTTextShadowView.h */, + F98089A2B7C555B7C71068FC3D66F7B5 /* RCTTextView.h */, + 4B2779409AF590F9DC3A7708F12DD950 /* RCTTextViewManager.h */, + ); + name = Text; + path = Libraries/Text/Text; + sourceTree = ""; + }; + 83F7203005484490A3D78C76CC80AB3E /* bugsnag-cocoa */ = { + isa = PBXGroup; + children = ( + 4341C1CDF41F29220B34B3CC69B3B834 /* Source */, + ); + name = "bugsnag-cocoa"; + path = "bugsnag-cocoa"; + sourceTree = ""; + }; + 8493ED81BA842AAF96CB292D7646DC71 /* analytics */ = { + isa = PBXGroup; + children = ( + 6CFA067283E1A30696863332A0466C9E /* RNFirebaseAnalytics.h */, + C55D40C48BFBE3791CE4779FC1608DCB /* RNFirebaseAnalytics.m */, + ); + name = analytics; + path = RNFirebase/analytics; + sourceTree = ""; + }; + 84FFD85B4D0D6E2E945897DD62D4F072 /* react-native-keyboard-tracking-view */ = { + isa = PBXGroup; + children = ( + F63583F2D2EE601D43B0896533EAFCDF /* KeyboardTrackingViewManager.h */, + 6533AF30C7F1669E54085F1CA122D063 /* KeyboardTrackingViewManager.m */, + 4CDE34E54BC7EE0335E22FF392871BAB /* ObservingInputAccessoryView.h */, + 030BD91C556FD99E868650A4DAAB9B7B /* ObservingInputAccessoryView.m */, + 972CDC068BFD39E07DB81AD634F73258 /* UIResponder+FirstResponder.h */, + 1F2694B84B88592AC03EEAFC669C6EA5 /* UIResponder+FirstResponder.m */, + BA7A8EF96B7BC3020977CA7D030E5F7B /* Pod */, + E5B13824FB5A4949BDDB2845BB272270 /* Support Files */, + ); + name = "react-native-keyboard-tracking-view"; + path = "../../node_modules/react-native-keyboard-tracking-view"; + sourceTree = ""; + }; + 85DD2155FBBC2B13F610F1CDBB02619F /* Pod */ = { + isa = PBXGroup; + children = ( + 5C5003138522EACDDD81AF6E395C1AD3 /* KeyCommands.podspec */, + 02DE7ACDA4AB69D6585B22F198B5CEEE /* README.md */, + ); + name = Pod; + sourceTree = ""; + }; + 872459ABDAAD72C329FC1706C2291D00 /* UMCameraInterface */ = { + isa = PBXGroup; + children = ( + A11398DE77D2B7F8880A1495071FA359 /* UMCameraInterface.h */, + 991BF9DC6CBB5B08198A475AE585CB0C /* Pod */, + 1E359974B9B7B993029E10EE32A4C29F /* Support Files */, + ); + name = UMCameraInterface; + path = "../../node_modules/unimodules-camera-interface/ios"; + sourceTree = ""; + }; + 872EB31D3B13BD24F68E38A0ACBE2D1F /* platform */ = { + isa = PBXGroup; + children = ( + C02AF0E90419F8DD31FD17A9E2763809 /* ios */, + ); + name = platform; + path = turbomodule/core/platform; + sourceTree = ""; + }; + 87D4782C643244D9358EBB85FC99652E /* RCTActionSheetHeaders */ = { + isa = PBXGroup; + children = ( + EBFB993F9F9D883A19EDCB87F5F7E89E /* RCTActionSheetManager.h */, + ); + name = RCTActionSheetHeaders; + sourceTree = ""; + }; + 883B750E51BBB53535F5C0CA4939754C /* Views */ = { + isa = PBXGroup; + children = ( + 1ED903085E4EBD27C7CA11AF11A2BE1C /* RCTActivityIndicatorView.h */, + 9A70159DAD434BBBC64A38034D0D4803 /* RCTActivityIndicatorView.m */, + 98A410FC602339458820164A11F2353C /* RCTActivityIndicatorViewManager.h */, + EACD26F75DD101ACFFB7666E2D17EE40 /* RCTActivityIndicatorViewManager.m */, + 4AFD719A041151F58B9D1468AA30075D /* RCTAnimationType.h */, + 10CED3B8AA15352A41DDFB70B55B2A8D /* RCTAutoInsetsProtocol.h */, + D578A923BDF78F6E661CB528ADC2119D /* RCTBorderDrawing.h */, + CB0BB8BE8D492A55C9843AE9F33156DF /* RCTBorderDrawing.m */, + 5BE3A2681A336B566EDEA9C2612B8182 /* RCTBorderStyle.h */, + 254EB2013274F93DE25330B892490A4D /* RCTComponent.h */, + 946ABCFB770AD6764BB8B03E35B72EB8 /* RCTComponentData.h */, + 85EDB2333CBF4A1AC8C9B1392D115DC4 /* RCTComponentData.m */, + 589B9865C80918AB7F5066B06E8E11A9 /* RCTConvert+CoreLocation.h */, + 8B4C9F758CDDA9CBD51DE98A4495A10A /* RCTConvert+CoreLocation.m */, + 7D00C3CCD82FE1C5EADE820AC7100F0D /* RCTConvert+Transform.h */, + C169D321FB2D04757BCB7E11EBFA594C /* RCTConvert+Transform.m */, + C49E850BF03B507FA1CE00F3413C7922 /* RCTDatePicker.h */, + 6904432957BAB3A3C83C0A370724DE98 /* RCTDatePicker.m */, + 87B42A9BC9EA2574581724D063832874 /* RCTDatePickerManager.h */, + 800A2D79CB04CE030D338681CB99F701 /* RCTDatePickerManager.m */, + E685B71F8689B89D0EC15B716377D563 /* RCTFont.h */, + 3842FCE8B9E849B27CCA1FDAD4511762 /* RCTFont.mm */, + F7F3B05EF48A181DEA626AAAD7B63498 /* RCTLayout.h */, + 3177022A507B89ED5E2D545E92DF7054 /* RCTLayout.m */, + C65D94E71FE74B0A8F1DE09B5C1629F6 /* RCTMaskedView.h */, + BD66CCF02B3EA0A1EB7AC776F1B25294 /* RCTMaskedView.m */, + 6F2DFE5CDE79A7E8F7E1D090C440DEBB /* RCTMaskedViewManager.h */, + F55C2B04C4A9C8B86635F45E07A4C59B /* RCTMaskedViewManager.m */, + FAC219E502CB8FBE7E6D2A1E86DB0F66 /* RCTModalHostView.h */, + 5987A792C94C45A6F6CBFDDB76719589 /* RCTModalHostView.m */, + 0596D4E6DBEDA918A70DFA8B4498AF30 /* RCTModalHostViewController.h */, + 442E4964E9064855EF721A22F8638EA3 /* RCTModalHostViewController.m */, + 5BBBBB4DC4C22CE3A9520ADDFF3B3E85 /* RCTModalHostViewManager.h */, + 352EBF854A2144E7D723C8C90EFF61C1 /* RCTModalHostViewManager.m */, + D190D2321000F2D1EEE359D96EAA6622 /* RCTModalManager.h */, + 446C4C6613D2057CFB9884F9DACAF8F1 /* RCTModalManager.m */, + C93A5EA5086EA98FAB9852F64384774F /* RCTPicker.h */, + C6E4C7045D8CD305FF6C399599207835 /* RCTPicker.m */, + D40F880C10CC981DF3F05D2C1CBC71EC /* RCTPickerManager.h */, + 566F8E26BE02F41DFA100FB1E0186FE9 /* RCTPickerManager.m */, + 1E24061819610A9D72F6BA23D9759EA7 /* RCTPointerEvents.h */, + BEA4940B5D5E52997106558D83B64DB6 /* RCTProgressViewManager.h */, + 6D58BF93363CAA6D35899BE155CACB47 /* RCTProgressViewManager.m */, + C40B0C283E831817424B0AF9D4F03144 /* RCTRefreshControl.h */, + D343B59DABDDFEC2F2E11C886E30474D /* RCTRefreshControl.m */, + 92DB40F1CDFF8CB643A1ABA4AE526B60 /* RCTRefreshControlManager.h */, + 679EE75DD15CCB9C0BE232695CAFC935 /* RCTRefreshControlManager.m */, + DA11FE95A41E9CFC348E16D89E3989C3 /* RCTRootShadowView.h */, + 4EE9424A584CECAA86E9F4751BDEC443 /* RCTRootShadowView.m */, + 6E992CC08AE1065016A7F5DA77C6120E /* RCTSegmentedControl.h */, + 3111C404121894DDCFC1B6FF8A409B32 /* RCTSegmentedControl.m */, + 8E235073D947F6AE9BD52EEB39D17CA7 /* RCTSegmentedControlManager.h */, + 96D449172474B67F75AEB11C04EB8FE0 /* RCTSegmentedControlManager.m */, + FAC8ADEF9A55256F990A842716F5B09D /* RCTShadowView.h */, + F75A44300CE3493BF09D9B64ACDCA000 /* RCTShadowView.m */, + B870C42FE47EB3A8EAF297F39C532938 /* RCTShadowView+Internal.h */, + 60C6CF14C7A27A5A0F0852E9D99D738C /* RCTShadowView+Internal.m */, + 39487850C84D1F5D30871A9B1105A7A1 /* RCTShadowView+Layout.h */, + CDB556E0C6EA1C86F3268807D706B123 /* RCTShadowView+Layout.m */, + 032E268394E8AFE22A18149586AE8168 /* RCTSlider.h */, + 166A5A5D786A519E24FBAA9901A92FAB /* RCTSlider.m */, + B3852D1889FE05FE2B093D54B5F91D67 /* RCTSliderManager.h */, + 80A1D9D2947255CCB6980709B7867EA5 /* RCTSliderManager.m */, + 87B581DEA79BAEC1A5962B9B7F23D39C /* RCTSwitch.h */, + 29D1EAC7FD47DC8D48535505CD061B3F /* RCTSwitch.m */, + DBB42A880691A8555F022897569AB967 /* RCTSwitchManager.h */, + E09C33EAFB2C86899356F040D09A7395 /* RCTSwitchManager.m */, + CD41C0268DCE4A9FFBD989A394BA7C6D /* RCTTextDecorationLineType.h */, + F2FE328EE29084CE351BFDA9B0B1A84D /* RCTView.h */, + B846C87014E8DDFD31AF359908BEC0FE /* RCTView.m */, + D47D3600545703DC639CC0FC96134CD7 /* RCTViewManager.h */, + 8F342318793A3822FC62B8389824A93E /* RCTViewManager.m */, + 6106000F1195C8E92D7251F41019B12F /* RCTWrapperViewController.h */, + 4845F889D82357322C71E52FC4C73C4C /* RCTWrapperViewController.m */, + 9B5AE71365E5C1AB4687BC99014AA804 /* UIView+Private.h */, + D55F630EF710E1F4061AC7F94DEC4437 /* UIView+React.h */, + 654085B96AEB3EFDE12C2D6DF53BBE94 /* UIView+React.m */, + 2505E3CD3A9A27BDE0A70C131D0865CE /* SafeAreaView */, + 7DB980D49B81255151C87C41582D9A86 /* ScrollView */, + ); + name = Views; + path = React/Views; + sourceTree = ""; + }; + 8AC98CDFAAEDE6EB382E0A87AE41CFC8 /* Transitioning */ = { + isa = PBXGroup; + children = ( + F771AC9AB82CDB9992BBEFD479115FC9 /* RCTConvert+REATransition.h */, + E2A1F3FEA662290153D6D8026F200D52 /* RCTConvert+REATransition.m */, + 462651BBAB120CE2204EC03B2466C083 /* REAAllTransitions.h */, + 40C953DECB85B4F4B336EA6C9BA39A3E /* REAAllTransitions.m */, + 23407D404212839083FA402ED6C9CF32 /* REATransition.h */, + 08132FDEEE869B5DDF9F2BC2D1A2A924 /* REATransition.m */, + 7608F2915FB57D2BB6CBBFF2BBBF2BD2 /* REATransitionAnimation.h */, + 6C9909DE92AC43C391867844EB721B48 /* REATransitionAnimation.m */, + DDAFB974FA6663AC44446FD8DA483AC0 /* REATransitionManager.h */, + 92FAD6EE8E44F62642759199B21818D0 /* REATransitionManager.m */, + 0B3CE9A2BD0AC00010DEDB37BD7F4D1A /* REATransitionValues.h */, + 65D732F2884AB3C353026D8706FD986C /* REATransitionValues.m */, + ); + name = Transitioning; + path = ios/Transitioning; + sourceTree = ""; + }; + 8B5AD026FFCF7248B761CA14ECC96B20 /* Support Files */ = { + isa = PBXGroup; + children = ( + 667D46F6C366F61325EDE72448BABA21 /* React-RCTImage.xcconfig */, + D94EF9D8C49CFF644F0AD13580B65E5C /* React-RCTImage-dummy.m */, + 576D19E168AD6C6DB4C1A8E34718E9E4 /* React-RCTImage-prefix.pch */, + ); + name = "Support Files"; + path = "../../../../ios/Pods/Target Support Files/React-RCTImage"; + sourceTree = ""; + }; + 8BFBED1BA8C4FDED2C237AE64889C3DC /* React-RCTSettings */ = { + isa = PBXGroup; + children = ( + DCCFD093AB7EEEE3BBD485C8D8CC0CA0 /* RCTSettingsManager.m */, + B4B17178366F1BF168BB0727123F27D6 /* Pod */, + DF8A7017C39ED478F2193906292A1348 /* Support Files */, + ); + name = "React-RCTSettings"; + path = "../../node_modules/react-native/Libraries/Settings"; + sourceTree = ""; + }; + 8F409565538F0A5171A170D5C98E324F /* EXHaptics */ = { + isa = PBXGroup; + children = ( + 7AF3BD1A9F7EC671AB4355057ED5C34F /* EXHapticsModule.h */, + 7027216DD776EAA9FFAA199D0A6B3694 /* EXHapticsModule.m */, + 28BBA341D2A84CAA6A3813BE61A4DF33 /* Pod */, + 35E40B190F8EA3F189B9E10C78E61ADF /* Support Files */, + ); + name = EXHaptics; + path = "../../node_modules/expo-haptics/ios"; + sourceTree = ""; + }; + 9027464E071351CDC07B7AC63938F504 /* react-native-cameraroll */ = { + isa = PBXGroup; + children = ( + 86CDD05F30692820EDC6E071CDB9C32E /* RNCAssetsLibraryRequestHandler.h */, + 88EC3AC0FC6F15CEAF97903F8923E681 /* RNCAssetsLibraryRequestHandler.m */, + FAC109B04FC80810296772EF839D15DF /* RNCCameraRollManager.h */, + 6E81FABE2BD798CF26BA5C238122815E /* RNCCameraRollManager.m */, + CBBC81590A76546872E10F69758F64ED /* Pod */, + D67D5FCE34683250920416140C6250D4 /* Support Files */, + ); + name = "react-native-cameraroll"; + path = "../../node_modules/@react-native-community/cameraroll"; + sourceTree = ""; + }; + 906CBE7C31ACAE157CECEF57BC3213A8 /* Pod */ = { + isa = PBXGroup; + children = ( + 1A9EC077BA003513D64323D8EF9FE8FC /* EXAppLoaderProvider.podspec */, + ); + name = Pod; sourceTree = ""; }; 9160F20DFF7DC7F1CACEE969035ACE20 /* Pods */ = { @@ -10596,159 +10664,34 @@ name = Pods; sourceTree = ""; }; - 916678AD8DFF5A6E735EE8F9F424640D /* Support Files */ = { + 91D5A390A559C7A563C8012E9B427E18 /* Pod */ = { isa = PBXGroup; children = ( - 6C5FE44A31BD5CB84DE59BBAFFD9EE65 /* UMFileSystemInterface.xcconfig */, - ); - name = "Support Files"; - path = "../../../ios/Pods/Target Support Files/UMFileSystemInterface"; - sourceTree = ""; - }; - 91AEDFCA725FE890776B9621B14C20D9 /* Filters */ = { - isa = PBXGroup; - children = ( - 109E17A268FE8F02B5D35C6162B39DEE /* BSG_KSCrashReportFilter.h */, - 17A0030F1CB272C85997A3DF61901A6D /* BSG_KSCrashReportFilterCompletion.h */, - ); - name = Filters; - path = Filters; - sourceTree = ""; - }; - 9207CFB6FC9F7174A7C3AFF72A74F0F2 /* Pod */ = { - isa = PBXGroup; - children = ( - 2CE17607A2D920F7ABFE779394D23BF1 /* EXPermissions.podspec */, + 854177E1FBDBC92D734BAEC839BA9065 /* React-RCTText.podspec */, ); name = Pod; sourceTree = ""; }; - 929707A2ADADE18853C6C36E7B48C2BF /* Pod */ = { + 9528386EB5CFF3641D75CBBCC4F726A1 /* Pod */ = { isa = PBXGroup; children = ( - EF775AFE3C1E9C2E72FDF72D90DF1554 /* FBLazyVector.podspec */, + 9F3D99E9230C8D077937CA35A4A2B807 /* LICENSE */, + C6480C7B053AF37E2547A87E75B115A7 /* README.md */, + 21F584AC7028CEEC291E1B0A0CFF531C /* RNLocalize.podspec */, ); name = Pod; sourceTree = ""; }; - 9327B84E269F861BA74B50FFBDED029C /* React-CoreModules */ = { + 96DB81850B8365AFF48AC6F7DA03D660 /* Pod */ = { isa = PBXGroup; children = ( - D3FDD7D93C571A667E0831F1A88BF76E /* CoreModulesPlugins.mm */, - 63F78F223C69C1972720D9E1B452AF19 /* RCTExceptionsManager.mm */, - C3F6C8FDCD5A3058409CC47FF7967A70 /* RCTImageEditingManager.m */, - E40F20D7ABECF5897E2EEE60DDECDB11 /* RCTImageLoader.mm */, - C9BC0349EE3270CF31CAEEE2C3284E46 /* RCTImageStoreManager.m */, - 45F9B89B69155B9338A5184745240C16 /* RCTPlatform.mm */, - 55F97F68B1B8B4D56812C6FADFB50E0D /* Pod */, - 0D07F97C3B2EADD3B217201AFA9D5C32 /* Support Files */, - ); - name = "React-CoreModules"; - path = "../../node_modules/react-native/React/CoreModules"; - sourceTree = ""; - }; - 93411AE2EC9417B5926273B1F9F3C52B /* FBLazyVector */ = { - isa = PBXGroup; - children = ( - 8081042ECD3D41DE2D8C08B48D1047A9 /* FBLazyIterator.h */, - 713E263D198D4BE5838D651E97DB659E /* FBLazyVector.h */, - 929707A2ADADE18853C6C36E7B48C2BF /* Pod */, - 1823394230AE0C91DE61BADBE7F2FFF5 /* Support Files */, - ); - name = FBLazyVector; - path = "../../node_modules/react-native/Libraries/FBLazyVector"; - sourceTree = ""; - }; - 9351BF0BC5717FBAF1CE72FD61D4C28A /* jsi */ = { - isa = PBXGroup; - children = ( - 10A8C4C742967569EE3A18C53C9DDE76 /* decorator.h */, - BE9A9A0EFCA4E15B2407B5C7A7305A67 /* instrumentation.h */, - 7D62F07926EB11321F85BFCF3F01D921 /* jsi.cpp */, - 11BA50444939DB8E3A2F27F4A4E46EA4 /* jsi.h */, - 9AA5595991C741CEE6643FADA2FBC7AD /* jsi-inl.h */, - 6FC55A8B0E9B17572A9A3BF223B8133F /* JSIDynamic.cpp */, - 7B1AEBC36E945E0A48D186FC8822FD79 /* JSIDynamic.h */, - 34F300D91EF74B849CCC058CA6C04487 /* jsilib.h */, - C4D58D64FE77C98852515EA277A3C226 /* jsilib-posix.cpp */, - 4EADED15D71917222E6187CBFD5148FB /* jsilib-windows.cpp */, - 2BEC937B09574F427F2B45A82AD5CABF /* threadsafe.h */, - ); - name = jsi; - path = jsi; - sourceTree = ""; - }; - 937B16FD06C214C1623E36C1066F9935 /* storage */ = { - isa = PBXGroup; - children = ( - 4BBD9AC825086AB43BFF1C5CE068DEBE /* RNFirebaseStorage.h */, - DEC16DAC9FF4E5C4BB47F0FD1CFFAB78 /* RNFirebaseStorage.m */, - ); - name = storage; - path = RNFirebase/storage; - sourceTree = ""; - }; - 94BAC2C1F5A09FE6D4902A1E547C4B5A /* Support Files */ = { - isa = PBXGroup; - children = ( - BDEFFFFC11A828082CD1C3DB0768AEAD /* React-RCTAnimation.xcconfig */, - 161605A0E5D6571F78BE8A55365468C3 /* React-RCTAnimation-dummy.m */, - 34788C3FA39C4DF8855A9713FF986AA5 /* React-RCTAnimation-prefix.pch */, - ); - name = "Support Files"; - path = "../../../../ios/Pods/Target Support Files/React-RCTAnimation"; - sourceTree = ""; - }; - 9553BE671749F27377C1EE3D11815690 /* Pod */ = { - isa = PBXGroup; - children = ( - F0BFEDFCF6519E07F6388739EBBCDCD9 /* EXWebBrowser.podspec */, + 427FA1590F9E1333CDF3F693F752F0E3 /* LICENSE */, + F2AD7712C98662F62E4CD66E1BA00AB2 /* README.md */, + BD7F9D788D834660F3AD258022870418 /* RNVectorIcons.podspec */, ); name = Pod; sourceTree = ""; }; - 95D5695FBDE3EB6FFA0250E73B2483A6 /* Pod */ = { - isa = PBXGroup; - children = ( - D8E39B23B48773C52C45606E9C76C345 /* RNFirebase.podspec */, - ); - name = Pod; - sourceTree = ""; - }; - 95D9CAAA40A3AA924C880A356DCB7A8C /* EXHaptics */ = { - isa = PBXGroup; - children = ( - 902C612F40E547BCFA5567CA0308FA68 /* EXHapticsModule.h */, - 59A58F5FAE29F0EF4FF137EB1C05318B /* EXHapticsModule.m */, - 4D19490B6E9DC89E61DF0D9A140A95ED /* Pod */, - 8CD71A435AD246129B7C77A3E1F5ED31 /* Support Files */, - ); - name = EXHaptics; - path = "../../node_modules/expo-haptics/ios"; - sourceTree = ""; - }; - 9641CDCBB8961773310B27413994104C /* Support Files */ = { - isa = PBXGroup; - children = ( - C6D171DF4994A123133AE5FD69B7AC4D /* EXFileSystem.xcconfig */, - E4122AEA2369400F511BE1A6669A8742 /* EXFileSystem-dummy.m */, - 8C8119DC7B6E2D5AB06D4A9385DCD729 /* EXFileSystem-prefix.pch */, - ); - name = "Support Files"; - path = "../../../ios/Pods/Target Support Files/EXFileSystem"; - sourceTree = ""; - }; - 965DAFB7CECF9893CEEE164FFBD063A5 /* React-RCTActionSheet */ = { - isa = PBXGroup; - children = ( - 80BC67BC45CE1085E5D602DD7A88F813 /* RCTActionSheetManager.m */, - B7012C6CB92C943D7A84A0EFC6F06C53 /* Pod */, - 16DC7B157D97586F0D8DD337A5B56C10 /* Support Files */, - ); - name = "React-RCTActionSheet"; - path = "../../node_modules/react-native/Libraries/ActionSheetIOS"; - sourceTree = ""; - }; 98796D2B4A35C296B4C2230305F1F484 /* FirebaseInstallations */ = { isa = PBXGroup; children = ( @@ -10798,102 +10741,63 @@ path = FirebaseInstallations; sourceTree = ""; }; - 99AA119C17C9D8BD533065440DA723F1 /* Core */ = { + 991BF9DC6CBB5B08198A475AE585CB0C /* Pod */ = { isa = PBXGroup; children = ( + 398334E9BFB85EF5826D989998679C43 /* UMCameraInterface.podspec */, ); - name = Core; + name = Pod; sourceTree = ""; }; - 9A11A473CFC2F8F6824AE45E777C7A0A /* Source */ = { + 99A0835C32AF5775AB65340803DD4F48 /* UMFaceDetectorInterface */ = { isa = PBXGroup; children = ( - 0137CAA805D11FAE4912C547CDCD8305 /* BSG_KSCrashReportWriter.h */, - 0CE1ECCA6CFB5B862B175CA1BCA57CB5 /* BSGConnectivity.h */, - CBEF956B84FE37854F9C187616AB1868 /* BSGConnectivity.m */, - 7295D565E10FC4EBE263B4FC70983CB5 /* BSGOutOfMemoryWatchdog.h */, - C7FE4583922DFFEAA71F67AB537108BD /* BSGOutOfMemoryWatchdog.m */, - 7C2A80E898E0D6260EE252324C57CEDB /* BSGSerialization.h */, - A181FA94ADBBC86FBED598FD2D61AE64 /* BSGSerialization.m */, - 2881EB958F33BA11F1D2DDFEE691173F /* Bugsnag.h */, - B954713B1A7287727B5EDF5E846AC7EE /* Bugsnag.m */, - 4D7D4150174C399C428113A0E6DED6C5 /* BugsnagApiClient.h */, - 46FABD0869A33C6F694792F55276CB53 /* BugsnagApiClient.m */, - 18B8E3216FF3FD18FE1BC4FB7A158ED7 /* BugsnagBreadcrumb.h */, - 67AF74868CC0A8C3EC9D8133919D30CF /* BugsnagBreadcrumb.m */, - BBF27B43E65A8E0C33985A62B07AF014 /* BugsnagCollections.h */, - 254C75BE2B62D801A09BF11463B5C395 /* BugsnagCollections.m */, - 4F141B3510268B10F274291C41A9BBE5 /* BugsnagConfiguration.h */, - F6B519CF1AC74C2306D48D79595C43B0 /* BugsnagConfiguration.m */, - BE3F533C440D355C04FB146D5389C644 /* BugsnagCrashReport.h */, - 55E0D3E1D9A2FFEB2AB820673F800E52 /* BugsnagCrashReport.m */, - 83D24F2ED92A1A29A5CD59AA87A0BCB9 /* BugsnagCrashSentry.h */, - 2953AFEA5B472DB9615C22E8789CB2BF /* BugsnagCrashSentry.m */, - 83C62B574085B6A08F29118247EAD9D0 /* BugsnagErrorReportApiClient.h */, - 9F51578C89DD9E17BD6B471ED8C51D18 /* BugsnagErrorReportApiClient.m */, - 8D40E05A89E0419CE69ED7EE791E8FD8 /* BugsnagFileStore.h */, - 82CE3F7DAA1E57A2C16A1420E14F8EA6 /* BugsnagFileStore.m */, - 78EF57B0FD05E69C407FC6D8EC28A634 /* BugsnagHandledState.h */, - FBFF441FC84B25E7C8F3C28A549BCE2D /* BugsnagHandledState.m */, - 4149CFF25071AE480926AC938FC1DC8D /* BugsnagKeys.h */, - 2116176163B56F07C9E9B28FAF07B3CD /* BugsnagKSCrashSysInfoParser.h */, - 969494DAF2F14EBC24BD4CFD56BD41AC /* BugsnagKSCrashSysInfoParser.m */, - 6B3DCBE451998AF84A7227E28C828B6B /* BugsnagLogger.h */, - 75D12281C83ADCB38906BD4B4B0EBAE5 /* BugsnagMetaData.h */, - 029B7C4BD1C808427749DF3CBBFF33C0 /* BugsnagMetaData.m */, - 5799FA9AC8B924573C5A3E3251830CE5 /* BugsnagNotifier.h */, - E3CE71E9D6DA2DBCF9B04BD5652468CF /* BugsnagNotifier.m */, - A625FD8F2EA66347AA72D5E4FE3EFFD1 /* BugsnagSession.h */, - 900FD7401EF46D6331EB6A027BC2E24B /* BugsnagSession.m */, - B6C3400B9B43229B89FF56742C801E21 /* BugsnagSessionFileStore.h */, - A5106FDAF2638B10BBE85A9909699C37 /* BugsnagSessionFileStore.m */, - 96A951F4E62E4175EE6FF64DBCD63734 /* BugsnagSessionTracker.h */, - 3637B0A5F74D889EBE4FEC06A504731C /* BugsnagSessionTracker.m */, - 5E76FFD831CBFC180923270AAB941B90 /* BugsnagSessionTrackingApiClient.h */, - 6796460AE35395D20A5FD33B258C51E5 /* BugsnagSessionTrackingApiClient.m */, - 9A9758E88D5B4159C227D4E98B9D4B1D /* BugsnagSessionTrackingPayload.h */, - BAEC8B4D8A58E94B63E4802D8A80C726 /* BugsnagSessionTrackingPayload.m */, - B06703997BF3F70C043A9803466D5A80 /* BugsnagSink.h */, - 412C0B6839528851CB09B870A50E2F7C /* BugsnagSink.m */, - 0E3368017A0A22EC37DDEFB6F429708E /* BugsnagUser.h */, - 8F0921E721DDC0F6BE45151BDCD1ABDF /* BugsnagUser.m */, - 48DD8DB2A4735F5062B9BF0A7270FAF5 /* Private.h */, - 87EBEBA8E573A9593E8DFFDAAAF07F63 /* KSCrash */, + C6A06C0AFA61D9F6E450941713661B9D /* UMFaceDetectorManager.h */, + A97BB3DA1EFCDEABDE48E811772041A2 /* UMFaceDetectorManagerProvider.h */, + 78C14DD657C785AEBED07F91E8D4687D /* Pod */, + 3BA6BBB3172810A062FEB0EDBEA87F8B /* Support Files */, ); - name = Source; - path = Source; + name = UMFaceDetectorInterface; + path = "../../node_modules/unimodules-face-detector-interface/ios"; sourceTree = ""; }; - 9AD74CFB2E93B40F6AB4ECB02662C4C7 /* UMPermissionsInterface */ = { + 9A76809DA7D78BAE869117295B8DAD87 /* DevSupport */ = { isa = PBXGroup; children = ( - 199388DDDD589FFF779E1CE9CCC75AFB /* UMPermissionsInterface.h */, - D3ACDC17AF9A573823884B791DB047BE /* UMUserNotificationCenterProxyInterface.h */, - B3419BEFC41A2C6FFF98F5C7CF4B7752 /* Pod */, - 596B4F2FF9D8632EB352D3D99839D68B /* Support Files */, - ); - name = UMPermissionsInterface; - path = "../../node_modules/unimodules-permissions-interface/ios"; - sourceTree = ""; - }; - 9B28BAACF38A308DAE7752D89923EB59 /* DevSupport */ = { - isa = PBXGroup; - children = ( - B1C6797FB32CE3EC0972829BF2C0F857 /* RCTDevLoadingView.h */, - B73A1983217C4ED2CB9CB653AF61D2EF /* RCTDevLoadingView.m */, - 7188C8580CBA0C711AA79464E037CB04 /* RCTDevMenu.h */, - 27F8144B0940E1DC51A3C2B4A04A41F8 /* RCTDevMenu.m */, - FB5467394A36479E9AF7DCDF070BFDDE /* RCTInspectorDevServerHelper.h */, - F3D0F33067B5AF8747BCF9147A7ED29C /* RCTInspectorDevServerHelper.mm */, - 267A14EE651A30BDA05A3ACAEFA42DB3 /* RCTPackagerClient.h */, - EFB7840CB02563DF34763637561EC5A1 /* RCTPackagerClient.m */, - 20BD4FDC15FB2DE109484CD34546BF70 /* RCTPackagerConnection.h */, - 519DCCFFAE92D0CAF9F4D2D373BFF0AD /* RCTPackagerConnection.mm */, + 93183655C767EAAF164D23123FD1EB30 /* RCTDevLoadingView.h */, + F40F03D6600BB1E45B3D85ADC6AA755B /* RCTDevLoadingView.m */, + E7DBF398C76B30F22B61FAA334435515 /* RCTDevMenu.h */, + 6F30B4F4430BD17B16926BAD7E92BE0F /* RCTDevMenu.m */, + 7AB72F5B5DA6225824815B0185F60C6A /* RCTInspectorDevServerHelper.h */, + 72934FFA26AD7BB259682341C8E185F2 /* RCTInspectorDevServerHelper.mm */, + AF6CD19FBCA0258E16A1C7D632DB4266 /* RCTPackagerClient.h */, + 4BA12030263DB9815E3B8E6F29CB8AB6 /* RCTPackagerClient.m */, + 078C92FD17E4E6B9FCD402E23D22D09D /* RCTPackagerConnection.h */, + BCF63C72351343394CB1C3C17ED0D3A6 /* RCTPackagerConnection.mm */, ); name = DevSupport; path = React/DevSupport; sourceTree = ""; }; + 9B3025B037D1812737A7958706D42344 /* Pod */ = { + isa = PBXGroup; + children = ( + 7684A18650D3B2D033100F486776AFDA /* React-RCTBlob.podspec */, + ); + name = Pod; + sourceTree = ""; + }; + 9B33D86528C725FBCF7D87AD68DD2E8C /* Support Files */ = { + isa = PBXGroup; + children = ( + 1BB51D7FFE1F27312BA8DD9DEFF8487E /* RCTTypeSafety.xcconfig */, + 65484968CCFD85A1DDBC1B92EE4D30D9 /* RCTTypeSafety-dummy.m */, + 7630ACAF66A3CD79E1A14EA3B8C1AC18 /* RCTTypeSafety-prefix.pch */, + ); + name = "Support Files"; + path = "../../../../ios/Pods/Target Support Files/RCTTypeSafety"; + sourceTree = ""; + }; 9BCEFBA6F728DA1423C8D80E348E9F24 /* Support Files */ = { isa = PBXGroup; children = ( @@ -10903,31 +10807,25 @@ path = "../Target Support Files/FirebaseCoreDiagnosticsInterop"; sourceTree = ""; }; - 9C6E0689F0992E3156F7D119DC2BC048 /* Support Files */ = { + 9C71112CFA092338C76E88ECB651CEB6 /* React */ = { isa = PBXGroup; children = ( - BFEC92E06BB365368B583C644DBB0F6E /* UMTaskManagerInterface.xcconfig */, + DAD3BABBC2C354701412EA220567A961 /* Pod */, + 1AD43318690774AFF4A731D89344CAFA /* Support Files */, ); - name = "Support Files"; - path = "../../../ios/Pods/Target Support Files/UMTaskManagerInterface"; + name = React; + path = "../../node_modules/react-native"; sourceTree = ""; }; - 9CE7A0F8D922BC5DF74C9454DBED5336 /* Brushes */ = { + 9D4A1CFB863417C1560CBC14AB51CDBD /* Multiline */ = { isa = PBXGroup; children = ( - B17F14A0214F04411D0979D60852557A /* ARTBrush.h */, - 141749C671C39B3A24761C8B223476D5 /* ARTBrush.m */, - 34BA3B9513B4A637C87015392B20B03E /* ARTLinearGradient.h */, - 3B27AF07DF369B7F988916D839C0A8D1 /* ARTLinearGradient.m */, - FEE17CE6D0AD8BCA7DDD4AF1C1F76BF2 /* ARTPattern.h */, - 01C506B0E0D7455EBDDC6171B896BCDE /* ARTPattern.m */, - 5E7B1861001959FFBD718B8E8C31814E /* ARTRadialGradient.h */, - DF69FAC7AE2BB577C9855B8B5814580C /* ARTRadialGradient.m */, - EDC2DEAE669904A4916FD97CBAF27024 /* ARTSolidColor.h */, - 7BC92B6305B0F86A7B63592C0D0C2A63 /* ARTSolidColor.m */, + 5F66F1E3E71254F5A951B94C0A5FE22F /* RCTMultilineTextInputView.h */, + 2193A9C6C7D6978D5F7970B023F4A848 /* RCTMultilineTextInputViewManager.h */, + 611C1142B2D48827BD18FA78541F3CA6 /* RCTUITextView.h */, ); - name = Brushes; - path = ios/Brushes; + name = Multiline; + path = Multiline; sourceTree = ""; }; 9EA5F86655592B693DE74D95DF3A3C23 /* Frameworks */ = { @@ -10939,92 +10837,96 @@ name = Frameworks; sourceTree = ""; }; - A266CECAA579983DD2F6AA9CFC65CF47 /* RNFetchBlob */ = { + 9EF54FB8115C98286E233C02A2269F60 /* Support Files */ = { isa = PBXGroup; children = ( - 00AFBA4ABCDEA52552CE6DEE889952A8 /* RNFetchBlob.h */, - 4E9671CEB5D29D25E802B2BDF384DB3A /* RNFetchBlob.m */, - ); - name = RNFetchBlob; - path = ios/RNFetchBlob; - sourceTree = ""; - }; - A275E3529F30A3D4E1B7C0031D1584C5 /* React-RCTVibration */ = { - isa = PBXGroup; - children = ( - CB591AF5D322453F528F32259069B4C3 /* RCTVibration.m */, - 04255BE5D102E4D69D09EBF51C3A2D67 /* Pod */, - B17AA039BF5AD4622D9C45B8C4C5A653 /* Support Files */, - ); - name = "React-RCTVibration"; - path = "../../node_modules/react-native/Libraries/Vibration"; - sourceTree = ""; - }; - A357AE05C29318CE83178D29106774FE /* Support Files */ = { - isa = PBXGroup; - children = ( - DA8FD0BA2B221950A40ED181E849C297 /* RNLocalize.xcconfig */, - 3EEB0E39C75777724F60E29B18935220 /* RNLocalize-dummy.m */, - 377475B80F7E130D5D172087140371EB /* RNLocalize-prefix.pch */, + CAC67D9F86DB72ABC4AA0A05AC670B08 /* UMImageLoaderInterface.xcconfig */, ); name = "Support Files"; - path = "../../ios/Pods/Target Support Files/RNLocalize"; + path = "../../../ios/Pods/Target Support Files/UMImageLoaderInterface"; sourceTree = ""; }; - A380D1655982BC12351D2582FBF47092 /* Support Files */ = { + 9EFD162AC713166FE15BDB63627A408C /* Multiline */ = { isa = PBXGroup; children = ( - E7012DFB516AB61852B9CC8BB61D4BA4 /* KeyCommands.xcconfig */, - FFCDDE9BA567EFC215FF2D62653D8C92 /* KeyCommands-dummy.m */, - FECFF69540557376296F709EC2CA9AFD /* KeyCommands-prefix.pch */, + 79485D2A427D73525846B5A7223C5550 /* RCTMultilineTextInputView.m */, + B0A0720DC33231F000E35AF8AF43BE34 /* RCTMultilineTextInputViewManager.m */, + 8DD57D7737664ABAD0AA03D40925FD64 /* RCTUITextView.m */, + ); + name = Multiline; + path = Multiline; + sourceTree = ""; + }; + 9FE4278C387F203665CFD1F24A757BDF /* TextInput */ = { + isa = PBXGroup; + children = ( + 35042D1973059E08B00F8A8AD1B01E49 /* RCTBackedTextInputDelegateAdapter.m */, + C54EB26AA61E208704AAE9D62CA23D1F /* RCTBaseTextInputShadowView.m */, + 7DCF83BC9FCCFF58A6A62DC6C927FF6A /* RCTBaseTextInputView.m */, + 5E9B0FD9CFE103E603026ABAEF9DE9FD /* RCTBaseTextInputViewManager.m */, + 524B6107C05BA5B8BA8D4B4196CD7045 /* RCTInputAccessoryShadowView.m */, + 76B317AF8011752CEE734A75AD464778 /* RCTInputAccessoryView.m */, + 8BA996A3669B72AD5B4B7147E6BED823 /* RCTInputAccessoryViewContent.m */, + 8A00AB569D049133AE6D7ACA512DF937 /* RCTInputAccessoryViewManager.m */, + A72A7F7D98EDF07AAD86A60E4CCA3E43 /* RCTTextSelection.m */, + 9EFD162AC713166FE15BDB63627A408C /* Multiline */, + C977B5E44A520CA12CD641F400CD0139 /* Singleline */, + ); + name = TextInput; + path = TextInput; + sourceTree = ""; + }; + A04E911412823D07EE62FC0592894E87 /* VirtualText */ = { + isa = PBXGroup; + children = ( + F2A5EF842E0CBD52437A3F0B96F2B26B /* RCTVirtualTextShadowView.h */, + 34BD12EFE87BBC1715B6008AB32ED33B /* RCTVirtualTextViewManager.h */, + ); + name = VirtualText; + path = Libraries/Text/VirtualText; + sourceTree = ""; + }; + A0FFC964CBCD9375B074A52108D79429 /* Pod */ = { + isa = PBXGroup; + children = ( + EEFCC691170CE3F2190EFCBB6CCA9D92 /* LICENSE */, + 1A62DD96FAC84C70491B262C93877767 /* README.md */, + 38B93C728FB951DF046A356CDFC0E44D /* RNUserDefaults.podspec */, + ); + name = Pod; + sourceTree = ""; + }; + A16895416AA887282E2E90A7FF1DCC6F /* Support Files */ = { + isa = PBXGroup; + children = ( + DADFA29679DDDCE50802FB9F0E63891D /* react-native-webview.xcconfig */, + CDFFE655B5351851551DA661BB7ED091 /* react-native-webview-dummy.m */, + AFA32A2AF10EF4086D9739065D3A8A36 /* react-native-webview-prefix.pch */, ); name = "Support Files"; - path = "../../ios/Pods/Target Support Files/KeyCommands"; + path = "../../ios/Pods/Target Support Files/react-native-webview"; sourceTree = ""; }; - A38E82117385297C6FCF5E95A23F19C1 /* UMModuleRegistryAdapter */ = { + A2CAA1F60F574F9665B1DDC932238FA6 /* Pod */ = { isa = PBXGroup; children = ( - 7558AAEC6638C6317A6697695760FDF2 /* UMModuleRegistryAdapter.h */, - 9978C94F23479A2F0EB1600AB83103DE /* UMModuleRegistryAdapter.m */, - CAE4AE35BE9DE38DD203A86792429978 /* UMViewManagerAdapterClassesRegistry.h */, - 97D54E84787A915F4248890314F017E6 /* UMViewManagerAdapterClassesRegistry.m */, + BE8CD12DEFA577A0D368990B033EB057 /* android_date.png */, + F4870A86E6C56E9BD33415F93D5D1188 /* android_time.png */, + 49CCD4BE716047C8EABE4F6D6E296979 /* ios_date.png */, + A4227A82DCDAC44E5DAA0FAE99F28533 /* ios_time.png */, + D28613E98A46A0EE9018556951EBD668 /* LICENSE.md */, + B1B111C52C2718203D389326D88E6853 /* README.md */, + 60D49F0985161C896921D7BD7367B8FC /* RNDateTimePicker.podspec */, ); - name = UMModuleRegistryAdapter; - path = UMReactNativeAdapter/UMModuleRegistryAdapter; + name = Pod; sourceTree = ""; }; - A3AC0F283B6772CE8DBABCBAD1550559 /* UMModuleRegistry */ = { + A3490598379DC5FDEDBC4B20CC50F043 /* Pod */ = { isa = PBXGroup; children = ( - 3B4A222D583E9AD9DD60C4833772C233 /* UMModuleRegistry.h */, - 0FBA2A384AB19326CEDB1B9DFEAEE9B3 /* UMModuleRegistry.m */, - E8067365D8CBEBC87332AD5820A32242 /* UMModuleRegistryDelegate.h */, + 166518D4FB47DCC850F4FE18BF759514 /* React-cxxreact.podspec */, ); - name = UMModuleRegistry; - path = UMCore/UMModuleRegistry; - sourceTree = ""; - }; - A3F14C54E4CA29FFE87C6919C0ADECE2 /* Support Files */ = { - isa = PBXGroup; - children = ( - AF92BAEF3A761A17CE4C19BC9737DC17 /* RCTTypeSafety.xcconfig */, - 138D6641C7D6ECA256E1490D0D5FC838 /* RCTTypeSafety-dummy.m */, - 4A5768B95402EA98542FFA2B585EDB2C /* RCTTypeSafety-prefix.pch */, - ); - name = "Support Files"; - path = "../../../../ios/Pods/Target Support Files/RCTTypeSafety"; - sourceTree = ""; - }; - A575A5AB1D4D5929F5A1BB59C4947670 /* Support Files */ = { - isa = PBXGroup; - children = ( - D799D8ABEBBA30A4B950CAB36EAF36E1 /* react-native-notifications.xcconfig */, - 6EDBB32D68D52D326D16685BF00251BB /* react-native-notifications-dummy.m */, - 8A6CEFA758BED65813D2DA60C7CBA372 /* react-native-notifications-prefix.pch */, - ); - name = "Support Files"; - path = "../../ios/Pods/Target Support Files/react-native-notifications"; + name = Pod; sourceTree = ""; }; A5ADA69422B84A7580C82CAA5A9168D1 /* Targets Support Files */ = { @@ -11036,35 +10938,15 @@ name = "Targets Support Files"; sourceTree = ""; }; - A6CB6F98879D38E4BB74ECD6E5CD581E /* Reporting */ = { + A5BB1153BE3A36E44D15C4347DE558B0 /* React-RCTLinking */ = { isa = PBXGroup; children = ( - 91AEDFCA725FE890776B9621B14C20D9 /* Filters */, + B78B850171569093651CB372D73233E0 /* RCTLinkingManager.m */, + 3AC768FBC10D1232F6C2EC140821EB29 /* Pod */, + CCD210BE86EFB362AB99EF7C2BCF4E24 /* Support Files */, ); - name = Reporting; - path = Reporting; - sourceTree = ""; - }; - A7313213E85DF14B7AEF2FE6CE025A3E /* Pod */ = { - isa = PBXGroup; - children = ( - 539E86C9FAB62F0D8903B34C26E30752 /* LICENSE */, - 0D98D5A100FC20D37B5972B51F9A57C3 /* react-native-background-timer.podspec */, - 10D2A737518C498B3BC1A2397F60DD1E /* README.md */, - ); - name = Pod; - sourceTree = ""; - }; - A8B27F8989069946233DB4009E748079 /* RCTAnimationHeaders */ = { - isa = PBXGroup; - children = ( - 686234FF9B66012D4812B8BF63F5CF6F /* RCTAnimationUtils.h */, - 4C70A87489F392A1B6E5D1D0AE32FACA /* RCTNativeAnimatedModule.h */, - AF23EE3EDD8077D6AC7FE28561C9B32D /* RCTNativeAnimatedNodesManager.h */, - 4F4710988D5C1A50F11451220BD7E7F9 /* Drivers */, - 09B552789E3A51CB0EEB21648957838C /* Nodes */, - ); - name = RCTAnimationHeaders; + name = "React-RCTLinking"; + path = "../../node_modules/react-native/Libraries/LinkingIOS"; sourceTree = ""; }; A8C71C322026C911F1F90E2B03F26405 /* Frameworks */ = { @@ -11075,30 +10957,15 @@ name = Frameworks; sourceTree = ""; }; - A8FEA426F599D31763D6AAEF31ABB87D /* QBImagePickerController */ = { + A8D3BC7885ABA7D02DBB47D8F0E7365F /* Support Files */ = { isa = PBXGroup; children = ( - A157050EDC841EA67391B48FD12EDD06 /* QBAlbumCell.h */, - 454B1B3B96D01D136C3C623B65E191D9 /* QBAlbumCell.m */, - 43C033E58EE44D5D9C8CE9E7006C2354 /* QBAlbumsViewController.h */, - 494C09D9FBA204CD6AC46A8EC5B78852 /* QBAlbumsViewController.m */, - 8EDE901EC7D3DE0A41D9B041CF2453F1 /* QBAssetCell.h */, - 1CBA8EB956DAA087A5011494458EAE76 /* QBAssetCell.m */, - CFA4FD27BF4EF6BF9F31B449BD11B3A0 /* QBAssetsViewController.h */, - 3F80CA067CF0BF512E417DCE081EEC75 /* QBAssetsViewController.m */, - FF0DCB70E216342B05B65FE350A12DF7 /* QBCheckmarkView.h */, - C25EB0CA5329252665CE41EC579A206E /* QBCheckmarkView.m */, - 0178F3CC133D66F2F71B9D64FF0082E1 /* QBImagePickerController.h */, - FB565D9230FBB70EF16DA17614C71573 /* QBImagePickerController.m */, - 70E6E5EDD941810DD75AC29CC64C8F9F /* QBSlomoIconView.h */, - EC39A914D7CEFD653C607D912A27C1AD /* QBSlomoIconView.m */, - 872254C84ED3127FF36A116DEDBF725E /* QBVideoIconView.h */, - 56D1FB31E2C106F327F32C3AF706800D /* QBVideoIconView.m */, - 470678FF420AF5923D2476348B25B58A /* QBVideoIndicatorView.h */, - 363E1E9E9110F7A556772468C20C2395 /* QBVideoIndicatorView.m */, - 7670EE7B27C0E6ED8ADCEB3BD55DAA51 /* Resources */, + D6F83C5B8128560C302B2FBA53C98CCD /* ReactNativeART.xcconfig */, + F6244E40980B1C3E992119FCB7EF4F07 /* ReactNativeART-dummy.m */, + 10BAEFF1DA5AE4B114614462FF39C27B /* ReactNativeART-prefix.pch */, ); - name = QBImagePickerController; + name = "Support Files"; + path = "../../../ios/Pods/Target Support Files/ReactNativeART"; sourceTree = ""; }; A93FC5B030CC5395435DD39670F9E756 /* Support Files */ = { @@ -11110,18 +10977,25 @@ path = "../Target Support Files/Firebase"; sourceTree = ""; }; - A9AAB25083F953E39B94C4AFD2123729 /* React-jsiexecutor */ = { + AA2B0069F9D143EE15378FF26B045E33 /* config */ = { isa = PBXGroup; children = ( - 9303FD85EB1EBA0967A32B10A01B367F /* JSIExecutor.cpp */, - 6D89AF8CB73F0475A009662F3DD61F7B /* JSIExecutor.h */, - 4A1120550B2A2794884C5EEF6E3C885C /* JSINativeModules.cpp */, - DBDFD00E0D0F645440B3C52CDAF3924E /* JSINativeModules.h */, - 06FF9DB38394716ACD99B42A980EB19A /* Pod */, - AE9BF277689D6D51EA13ECBB09882E35 /* Support Files */, + 8999BFF15F3E1DC5AC79709C36F5AABF /* RNFirebaseRemoteConfig.h */, + 73217AEE8BFBF443544995432E5010DF /* RNFirebaseRemoteConfig.m */, ); - name = "React-jsiexecutor"; - path = "../../node_modules/react-native/ReactCommon/jsiexecutor"; + name = config; + path = RNFirebase/config; + sourceTree = ""; + }; + AA479E105AB9287183DC4B1A57E65CFD /* Support Files */ = { + isa = PBXGroup; + children = ( + 243EC5FDBF449542F55F85B6EB8B8AE2 /* RNDeviceInfo.xcconfig */, + 88875CCBC1ECDE2E34958A86D1012817 /* RNDeviceInfo-dummy.m */, + 4B139798AFB68A92A1429B37619900E8 /* RNDeviceInfo-prefix.pch */, + ); + name = "Support Files"; + path = "../../ios/Pods/Target Support Files/RNDeviceInfo"; sourceTree = ""; }; AA4F6AAD65B434D8E494DA264036AFDA /* Core */ = { @@ -11270,208 +11144,114 @@ name = Core; sourceTree = ""; }; - AAB3AAF1E7574A0A35F01446D38B8C41 /* RCTImageHeaders */ = { + AAD3A3D0CC246CB2EB3994FBD1A2D75E /* KSCrash */ = { isa = PBXGroup; children = ( - 1F6D70F5419A11FC7576DB263CED5243 /* RCTAnimatedImage.h */, - 9C4EEBB15D16DA2243DE8D1FEB106E0E /* RCTGIFImageDecoder.h */, - 46ABA79487D88F19D9777DD4E69C2E87 /* RCTImageBlurUtils.h */, - EA460809421F4C4809D3F28C57C93A55 /* RCTImageCache.h */, - 5774C2C05049631DE87F2C907B6A314F /* RCTImageDataDecoder.h */, - 8D7635460ED8FD643150486E9CB9D81B /* RCTImageLoaderProtocol.h */, - E2E3F51A5DF74BAC1C363A529FF5230E /* RCTImageShadowView.h */, - 96415BBAA19ADD3C96A17BF635D3D1CC /* RCTImageURLLoader.h */, - C57481EF13F88F7181813402EC4CF0B7 /* RCTImageUtils.h */, - 20F87B36C247C5A2E237B9B02B110533 /* RCTImageView.h */, - 83C653AE5E0F520CBE6FBF95F25032A4 /* RCTImageViewManager.h */, - 68C0D22D5268386F7EB78415CC43071A /* RCTLocalAssetImageLoader.h */, - 4299E32ADB6508288AAF57D0EEB0A05F /* RCTResizeMode.h */, - 0F4B3BA31DCDC79BBCB27289BAA13917 /* RCTUIImageViewAnimated.h */, + F2E53EDB930C8C9A16C32DD62EDA90DF /* Recording */, + 500CC1F02C46F17337B6E19DB3F1987D /* Reporting */, ); - name = RCTImageHeaders; + name = KSCrash; + path = KSCrash; sourceTree = ""; }; - AB08AA6FE5037D6876345803174CEF9A /* database */ = { + ABA3D06E3C773757A01F1068AC864472 /* Pod */ = { isa = PBXGroup; children = ( - E714E428578D92BDF68599F88505FD58 /* RNFirebaseDatabase.h */, - 99A3A6F2044FAC845D8EB90E53977206 /* RNFirebaseDatabase.m */, - 94B82F0760FC99EAF1D717F92381EF1D /* RNFirebaseDatabaseReference.h */, - 12525713DC65652720280D156EFDA372 /* RNFirebaseDatabaseReference.m */, + 7DCF8BDD417177D5E28DF72A21CD4051 /* LICENSE */, + E71EA74FAEEC381EEDD3C8BCB5A88CA5 /* README.md */, + 071AFD7AB7088D24B07F5F05029CC241 /* RNFastImage.podspec */, + ); + name = Pod; + sourceTree = ""; + }; + AD8AF2085A57CFCAC8275D67230A80E4 /* react-native-orientation-locker */ = { + isa = PBXGroup; + children = ( + 138D37B9AB880AE23C443E4A30FFB780 /* Orientation.h */, + E6218FFA863AB1C0B55E87F9105712AC /* Orientation.m */, + 2E02A68BC37D46325DB59A188B81A56F /* Pod */, + 04E65EE8944D658E0B9EED1DE60483F3 /* Support Files */, + ); + name = "react-native-orientation-locker"; + path = "../../node_modules/react-native-orientation-locker"; + sourceTree = ""; + }; + AE7F950FD1A569F637878FF7D739EB10 /* Pod */ = { + isa = PBXGroup; + children = ( + BE242FA97CCA31BE86E46580F018738E /* React-RCTNetwork.podspec */, + ); + name = Pod; + sourceTree = ""; + }; + AEE6BCF3029E288F9DE42C7767763BE4 /* Support Files */ = { + isa = PBXGroup; + children = ( + 24CD4E138D34122AAF3DD9F0EAE3992B /* React-RCTText.xcconfig */, + 7CB85B01F73553314133E64ACC15CF01 /* React-RCTText-dummy.m */, + 4555C24D7106A3596ECFE8B43DF540F2 /* React-RCTText-prefix.pch */, + ); + name = "Support Files"; + path = "../../../../ios/Pods/Target Support Files/React-RCTText"; + sourceTree = ""; + }; + AF3AFB00C765FBEA8736D6436F331926 /* RNReanimated */ = { + isa = PBXGroup; + children = ( + B2AF2075C759F200D6704623D761697A /* REAModule.h */, + 99E407056F1EB32758CF672845CA94C0 /* REAModule.m */, + 93CB41803BC8440C606EA147578CDE99 /* REANodesManager.h */, + B63AEE5BB5482D8E73F573C666904415 /* REANodesManager.m */, + 196D13383AC66C4AB4BDAD0F915689AB /* Nodes */, + 5E4DF3526E50BE44D0F9990A9723D2A5 /* Pod */, + AFE6351C49E26D6E3450A592B3548B6E /* Support Files */, + 8AC98CDFAAEDE6EB382E0A87AE41CFC8 /* Transitioning */, + ); + name = RNReanimated; + path = "../../node_modules/react-native-reanimated"; + sourceTree = ""; + }; + AFE6351C49E26D6E3450A592B3548B6E /* Support Files */ = { + isa = PBXGroup; + children = ( + F24E33E5B75728F9FDCB30D152EA5B28 /* RNReanimated.xcconfig */, + 8BD90BA5AFD95D998185C8E73F473888 /* RNReanimated-dummy.m */, + E7EB27ECF6B02A7A20AFC7723FA4DB1C /* RNReanimated-prefix.pch */, + ); + name = "Support Files"; + path = "../../ios/Pods/Target Support Files/RNReanimated"; + sourceTree = ""; + }; + B0EC556AA72CF08754E9A1DE821A4CCE /* Pod */ = { + isa = PBXGroup; + children = ( + 683BD839FEECD36F6910B2D2DE071EA0 /* BugsnagReactNative.podspec */, + AB814E0278F2E23C8075800C8FA068E1 /* LICENSE.txt */, + 152D8C21CB1FDF0CD9E05A110C6B9F3F /* README.md */, + ); + name = Pod; + sourceTree = ""; + }; + B20A137BE125DEDD7753A480082C3BC6 /* database */ = { + isa = PBXGroup; + children = ( + 21FC1057A335E68F2C7CA020078E42BF /* RNFirebaseDatabase.h */, + 6B4CD3C1301C2BB0C3EA2456667D0CCF /* RNFirebaseDatabase.m */, + 961828EA321B88CA49122824675BF27C /* RNFirebaseDatabaseReference.h */, + 0E7647CB0F78CB90AE2964BE8EF5E6B2 /* RNFirebaseDatabaseReference.m */, ); name = database; path = RNFirebase/database; sourceTree = ""; }; - ABB021697D25083153497018FF17DF03 /* RNLocalize */ = { + B2622525F52BF4BE42E38D59B1BDCB34 /* instanceid */ = { isa = PBXGroup; children = ( - 75BF1FF4B1F8B5EAD5AFAED5A3CE7E71 /* RNLocalize.h */, - 76ACAEE07AAD4EE346C18B5E6D45F650 /* RNLocalize.m */, - C22C066D34552123B9EE9D09822BF268 /* Pod */, - A357AE05C29318CE83178D29106774FE /* Support Files */, + BFE390E12190C0EE02F84C30EC1C7CEE /* RNFirebaseInstanceId.h */, + C7771DCDBC5853B3D98A8A8DB941AA38 /* RNFirebaseInstanceId.m */, ); - name = RNLocalize; - path = "../../node_modules/react-native-localize"; - sourceTree = ""; - }; - ACED67ED659C9BB0D357FF7AE96A4D01 /* react-native-webview */ = { - isa = PBXGroup; - children = ( - A862B67A6C938F10F5935FFD3D10F460 /* RNCWebView.h */, - 211D4B533E871CAD37B284D1EE055D6B /* RNCWebView.m */, - C8C8C58A070FA85A44A893611668E541 /* RNCWebViewManager.h */, - DF22D78107F6A51F4D5DFC8BD27C71AB /* RNCWebViewManager.m */, - 6583819C2D0075DAAE5ED707C9A9A91D /* RNCWKProcessPoolManager.h */, - F1E30E3F2A050BEF88A240650737A49C /* RNCWKProcessPoolManager.m */, - F61F023DC03A54239E971F0FA70CE738 /* Pod */, - 283606CCE0EF1B5570039029BCD10197 /* Support Files */, - ); - name = "react-native-webview"; - path = "../../node_modules/react-native-webview"; - sourceTree = ""; - }; - ACF54CFF13E945C7972A47B081DC888F /* Support Files */ = { - isa = PBXGroup; - children = ( - 6E9218532103C4522A6F7D4ECCBAC4E6 /* UMConstantsInterface.xcconfig */, - ); - name = "Support Files"; - path = "../../../ios/Pods/Target Support Files/UMConstantsInterface"; - sourceTree = ""; - }; - AD8BFA207A2B69D2B1EDFDCB59A9F03B /* Pod */ = { - isa = PBXGroup; - children = ( - CEA0CA780795D10F2739E501C7FC49AB /* EXConstants.podspec */, - ); - name = Pod; - sourceTree = ""; - }; - ADB99E5C95685628E4E0DA4588E30387 /* Pod */ = { - isa = PBXGroup; - children = ( - FAC5377C62D31AC16E930AAA687E4117 /* LICENSE */, - 4865E331EF036AC9955C5D87E59FD803 /* README.md */, - 1C67871F1DC0355FE10997027FD2BE02 /* RNAudio.podspec */, - ); - name = Pod; - sourceTree = ""; - }; - AE9BF277689D6D51EA13ECBB09882E35 /* Support Files */ = { - isa = PBXGroup; - children = ( - 30B353DEC498EA5A641CAFC6D6DB0633 /* React-jsiexecutor.xcconfig */, - AA732ACDD7AB0D8171B8342B02E96613 /* React-jsiexecutor-dummy.m */, - 8E0DCAAEC2DDFD38666AB597B28500F9 /* React-jsiexecutor-prefix.pch */, - ); - name = "Support Files"; - path = "../../../../ios/Pods/Target Support Files/React-jsiexecutor"; - sourceTree = ""; - }; - AF50EBC1320AD951A1B926EA03ACC7DE /* RawText */ = { - isa = PBXGroup; - children = ( - 675E4382C53964FF05CCAD7BAE0A9410 /* RCTRawTextShadowView.h */, - 63109D175A5FD3B40F98A65BCBDA80B6 /* RCTRawTextViewManager.h */, - ); - name = RawText; - path = Libraries/Text/RawText; - sourceTree = ""; - }; - AF84C111926104B9B81D1C08B48BBC7A /* Support Files */ = { - isa = PBXGroup; - children = ( - 53C23EEF3A231BAE4998393E9CEC6E27 /* UMBarCodeScannerInterface.xcconfig */, - ); - name = "Support Files"; - path = "../../../ios/Pods/Target Support Files/UMBarCodeScannerInterface"; - sourceTree = ""; - }; - B0DF129B70C81748A0DD25F7C5DD6DEB /* Pod */ = { - isa = PBXGroup; - children = ( - 05AFC2863FDD469C17B1DB2123F22259 /* LICENSE */, - 910E694B02BDD7EFB6194679904FF89E /* README.md */, - 57F535FC39240295DE33B9A42DC815CD /* RNFastImage.podspec */, - ); - name = Pod; - sourceTree = ""; - }; - B14A2F05EEEF97F27AD91E8FB7193FC4 /* EXPermissions */ = { - isa = PBXGroup; - children = ( - C3CAAFE28F985B36F0EBF1BA2885D07F /* EXAudioRecordingPermissionRequester.h */, - 359F229F29BACA8A332F42FCA27FD253 /* EXAudioRecordingPermissionRequester.m */, - 7547CF1649325803E5235EA43DE8F1FA /* EXCalendarRequester.h */, - E42CE5FA1A0C3DC66583A7A6E4BBC1D6 /* EXCalendarRequester.m */, - 8E693E5E6C4F6ED9A549E0D590C611C0 /* EXCameraPermissionRequester.h */, - 8459D161AD8D1A8FE026F476A904A147 /* EXCameraPermissionRequester.m */, - C7596BD887A9C3ABDC87D3F56C9C7108 /* EXCameraRollRequester.h */, - 718D59D6F078BD382B50DE82EAEB46F5 /* EXCameraRollRequester.m */, - 0BB9E3C233F176523BAAE5558371F613 /* EXContactsRequester.h */, - 95FAABA84BF67C347FE880EFCFC536D6 /* EXContactsRequester.m */, - 35AE382F030BD854463EFF0F7EC63E61 /* EXLocationRequester.h */, - 386E4CCDBF2F5ADB2DD2E02591BB47FF /* EXLocationRequester.m */, - 93BD7E697E11BB724D87C0E664A07174 /* EXPermissions.h */, - 910A105704845EF8D5DEC36EF7122E57 /* EXPermissions.m */, - 0E4FC61FDB9C2A7998C8AAA89FF843E4 /* EXReactNativeUserNotificationCenterProxy.h */, - C3B8C8A229EA73F4201D5749FB110123 /* EXReactNativeUserNotificationCenterProxy.m */, - 841FF80D5B6AA6B69EABE80C6F2B4B06 /* EXRemindersRequester.h */, - 8D0D8D530585825403547D9DC295DF5C /* EXRemindersRequester.m */, - E3EB5DAB41CAF0439260853166710052 /* EXRemoteNotificationRequester.h */, - 44D9F3CE14E625BABB5E097B30F5CB76 /* EXRemoteNotificationRequester.m */, - 2E907964A01A0EBE1F44A25EE7D8E39D /* EXSystemBrightnessRequester.h */, - DD4DBFF660B53870D6B05416FCA03E68 /* EXSystemBrightnessRequester.m */, - 39A6C2D16B6CA118EADEF15BE4AAFF5A /* EXUserNotificationRequester.h */, - CB5AC702E3C11A6992BC64217D1A82DB /* EXUserNotificationRequester.m */, - 9207CFB6FC9F7174A7C3AFF72A74F0F2 /* Pod */, - B90B69244E772D5D4BD79E8716085433 /* Support Files */, - ); - name = EXPermissions; - path = "../../node_modules/expo-permissions/ios"; - sourceTree = ""; - }; - B17AA039BF5AD4622D9C45B8C4C5A653 /* Support Files */ = { - isa = PBXGroup; - children = ( - 322F3B7909BAA7E21257160C8C1CB542 /* React-RCTVibration.xcconfig */, - D0A0CC56A64639015791B404EDC7C406 /* React-RCTVibration-dummy.m */, - 065C8F01086220491452ABD97A3093AA /* React-RCTVibration-prefix.pch */, - ); - name = "Support Files"; - path = "../../../../ios/Pods/Target Support Files/React-RCTVibration"; - sourceTree = ""; - }; - B1BB1637386FCAB1F39594A93EA1EACF /* RCTBlobHeaders */ = { - isa = PBXGroup; - children = ( - ED11AB60627D21CFAB5E2A83B8B2A744 /* RCTBlobManager.h */, - F966A458B3DFDF329C77F7E229FEE857 /* RCTFileReaderModule.h */, - ); - name = RCTBlobHeaders; - sourceTree = ""; - }; - B24D1AC6081814ABC339B9FD014420DB /* react-native-slider */ = { - isa = PBXGroup; - children = ( - F74EE16B4E75BA0487C801D730BDA2E5 /* RNCSlider.h */, - 7EB39C6BECE77FFF00736B171017BCE5 /* RNCSlider.m */, - F459CB964CE4ED8DD499B2A6BBA58043 /* RNCSliderManager.h */, - D229B2E64A6AD47DEA3FAB57A3C58F9A /* RNCSliderManager.m */, - 18E0C9511187BB2D7A59C92FF9BBC52F /* Pod */, - 72543ADC992D5A906937813F0602FB41 /* Support Files */, - ); - name = "react-native-slider"; - path = "../../node_modules/@react-native-community/slider"; - sourceTree = ""; - }; - B287B53B0FA97757F5ECDA262EE6AFE1 /* Pod */ = { - isa = PBXGroup; - children = ( - DFE043D866D20BAAE36815B9899E841C /* EXAV.podspec */, - ); - name = Pod; + name = instanceid; + path = RNFirebase/instanceid; sourceTree = ""; }; B2951A464D62F689D3C6044C7F73302B /* Frameworks */ = { @@ -11482,97 +11262,165 @@ name = Frameworks; sourceTree = ""; }; - B2A831FF7F79F01D13F49C149362C0BA /* Pod */ = { + B2A3D5807E45C645AA027796D34C1B4D /* Support Files */ = { isa = PBXGroup; children = ( - 7D86090E6D592FBECD7C393F4B28C7CE /* android_date.png */, - B8F68604311D3EF2649AA23C3501A4DA /* android_time.png */, - 76E3BEE6C45E5FC9D34998122A49EB31 /* ios_date.png */, - CC7DE6EC5643854FE9DFEB03FFBD307F /* ios_time.png */, - 4BCD4347EB8E48168D84DA9D02F394B2 /* LICENSE.md */, - 4FF48C3C581B8B6319C4CB6646E30641 /* README.md */, - 6FD384724CB3E86D404BF9A0B4D0B73C /* RNDateTimePicker.podspec */, - ); - name = Pod; - sourceTree = ""; - }; - B2C3AF8B44F42C3749EAB5B08F350F37 /* Support Files */ = { - isa = PBXGroup; - children = ( - B5CC6208EC4852AE045AC20C6DD364CE /* React-RCTSettings.xcconfig */, - 9C123303B7C794E103EC360B0D050AD3 /* React-RCTSettings-dummy.m */, - 08DF799E97B320AEED0FF5F930A34550 /* React-RCTSettings-prefix.pch */, + 57F11FB6EEE31A59C686129B33E8A98E /* FBReactNativeSpec.xcconfig */, + A30FB865B887D7CDD03F8FD5D904A4FB /* FBReactNativeSpec-dummy.m */, + 2EC7B534B525A025374BCD25858E368E /* FBReactNativeSpec-prefix.pch */, ); name = "Support Files"; - path = "../../../../ios/Pods/Target Support Files/React-RCTSettings"; + path = "../../../../ios/Pods/Target Support Files/FBReactNativeSpec"; sourceTree = ""; }; - B3419BEFC41A2C6FFF98F5C7CF4B7752 /* Pod */ = { + B355283A56B93E39EF500AEB1971B637 /* Support Files */ = { isa = PBXGroup; children = ( - A2A8038DD6AE24F536FEA2AA939F1D26 /* UMPermissionsInterface.podspec */, - ); - name = Pod; - sourceTree = ""; - }; - B4DC2D968701C47E1439AF12A7397C87 /* Support Files */ = { - isa = PBXGroup; - children = ( - D663687779FA5090927E808C13E98D01 /* EXConstants.xcconfig */, - E4037C9C747422DD6AEE7FBF85DC8CE0 /* EXConstants-dummy.m */, - 01E4D35D3B6F72A2421299BAF890CA44 /* EXConstants-prefix.pch */, + 2861A98CBEF359E1FA98BD8BA3E4CE7C /* UMFileSystemInterface.xcconfig */, ); name = "Support Files"; - path = "../../../ios/Pods/Target Support Files/EXConstants"; + path = "../../../ios/Pods/Target Support Files/UMFileSystemInterface"; sourceTree = ""; }; - B5963312520C3EC66794AF099B7161C4 /* Pod */ = { + B4AD15DC7E962959F7085EDD00472074 /* VirtualText */ = { isa = PBXGroup; children = ( - 7E67FB467D3A4BA89B6579844BDB8F80 /* LICENSE.md */, - 120DA196AB8A472D4EA1D7C5BA055D17 /* react-native-document-picker.podspec */, - 2358B61A26F92B31E2B0DAF55348F3C5 /* README.md */, + 1657C2EB12A144FA1A909AB1F7F8829B /* RCTVirtualTextShadowView.m */, + 29B12B1677700ED9FF44C3DAC8D0D196 /* RCTVirtualTextViewManager.m */, + ); + name = VirtualText; + path = VirtualText; + sourceTree = ""; + }; + B4B17178366F1BF168BB0727123F27D6 /* Pod */ = { + isa = PBXGroup; + children = ( + FF8B11D5618879616A9C0F0B92CF0381 /* React-RCTSettings.podspec */, ); name = Pod; sourceTree = ""; }; - B60849DE0578C4C5CC8871BD36942CAC /* Pod */ = { + B4B26E11E40FBF99BA472CE1460D8123 /* Services */ = { isa = PBXGroup; children = ( - 4DCBD6A4476F6EDD8DCC23AA02CFE0A7 /* LICENSE */, - B6D99B67D367D34DBC278AE5E858A3D5 /* README.md */, - 8F56DF5F1A4E519857ECC4A6A206A951 /* RNImageCropPicker.podspec */, + ABD943DFCB5827F150F3FB3EDDCB0F9F /* UMLogManager.h */, + F78BAA9318BC3B9495CEC57CE05A095A /* UMLogManager.m */, + ); + name = Services; + path = UMCore/Services; + sourceTree = ""; + }; + B4DE46BD3075673106FB078B3A7FFE00 /* links */ = { + isa = PBXGroup; + children = ( + 0B85A31F3F82AEF91625230E7A5F0BEC /* RNFirebaseLinks.h */, + B9FCABC0CCB401DD3C7C26B92D2303E8 /* RNFirebaseLinks.m */, + ); + name = links; + path = RNFirebase/links; + sourceTree = ""; + }; + B668812193A521141A3FA48E50BC4DA7 /* Pod */ = { + isa = PBXGroup; + children = ( + 221328CEBF3B74494BF816A8C0D0816B /* LICENSE */, + 52D948002EB1AD3DF1564A20CC99DB97 /* react-native-background-timer.podspec */, + 8A8B168311FE0AF90E27A757F57589CA /* README.md */, ); name = Pod; sourceTree = ""; }; - B7012C6CB92C943D7A84A0EFC6F06C53 /* Pod */ = { + B6C23BA9B5A9F6C28A64824403D544CE /* Pod */ = { isa = PBXGroup; children = ( - 525703D8A43EB8FCA48E004E7130FB34 /* React-RCTActionSheet.podspec */, + 5BFF93BEDB1C10111B46484D46EC3C01 /* LICENSE */, + BEF06095E0B10F0023E9C1C533B8F92A /* README.md */, + 5C0036B22D788F059AD795BBBC44656E /* RNDeviceInfo.podspec */, ); name = Pod; sourceTree = ""; }; - B833FC6E17C159D47458920660466940 /* Sentry */ = { + B6C3B08EBB521846550F2B06E7519924 /* Support Files */ = { isa = PBXGroup; children = ( - 224ED1BA761A9EB2A8535AA51EE6B5B0 /* BSG_KSCrashSentry.c */, - 409399A211C9BBCADADFC7BBEA9D1598 /* BSG_KSCrashSentry.h */, - 620DB600098BB7C3DDAEBFF151CB985D /* BSG_KSCrashSentry_CPPException.h */, - 799A090E58929BD48D329F145571CE6F /* BSG_KSCrashSentry_CPPException.mm */, - 2936785F59C5322B88D81B1FAA01D28F /* BSG_KSCrashSentry_MachException.c */, - 6834B38E97B0877135ACC8436548C363 /* BSG_KSCrashSentry_MachException.h */, - B008DCBA1F86445C58EA17A32051D55D /* BSG_KSCrashSentry_NSException.h */, - 0DF7B600EDB384BB868F44CE0125575D /* BSG_KSCrashSentry_NSException.m */, - CD05057504EA0D047D1368ED39C03962 /* BSG_KSCrashSentry_Private.h */, - 896F851511E62E3117AEFD973203BF31 /* BSG_KSCrashSentry_Signal.c */, - F9AD7000918BAE9322E40B187BECD7A0 /* BSG_KSCrashSentry_Signal.h */, - B3E046E29E17EE7F1D0F97E3EF9A1405 /* BSG_KSCrashSentry_User.c */, - 8690B5D6CABB906A84F7F9E27C302E2D /* BSG_KSCrashSentry_User.h */, + 830B2C23F2B1D9BCE8A596BA3FBB8559 /* RNDateTimePicker.xcconfig */, + 8F0137794D60F31FCD06798B5707FBEF /* RNDateTimePicker-dummy.m */, + C207E80E3497C69A291B670A4D766466 /* RNDateTimePicker-prefix.pch */, ); - name = Sentry; - path = Sentry; + name = "Support Files"; + path = "../../../ios/Pods/Target Support Files/RNDateTimePicker"; + sourceTree = ""; + }; + B6CD825F3C741626668932BC3958290D /* Support Files */ = { + isa = PBXGroup; + children = ( + 9A61E6E4B2351E3A08F9D5CC8D16E8DE /* React-jsi.xcconfig */, + 7920E4EE1AF2799AAAF18E57AA42039D /* React-jsi-dummy.m */, + D815097C52BD12BD83A7E666EB86A118 /* React-jsi-prefix.pch */, + ); + name = "Support Files"; + path = "../../../../ios/Pods/Target Support Files/React-jsi"; + sourceTree = ""; + }; + B734DA4B29DF05882698BCAB7BA1E644 /* Pod */ = { + isa = PBXGroup; + children = ( + E84145132DD86C87690242E8593EF1E5 /* UMSensorsInterface.podspec */, + ); + name = Pod; + sourceTree = ""; + }; + B7F52215B52EC37D66BE6B2D3456A717 /* Yoga */ = { + isa = PBXGroup; + children = ( + 099817EC62B1164C873CB1AEB203D7E1 /* Bitfield.h */, + 13344BE3EB2DBA8011D66765692F0C39 /* CompactValue.h */, + B9BC0B5783E6838E59FA0DDDFA4C7E7B /* log.cpp */, + 37BB7DDC3451BEFC99E1D9F94D744450 /* log.h */, + 1B027AE931A8EFEE85CE5F1CE684D726 /* Utils.cpp */, + 61E1CC05B0D6981933244DE1C07901B3 /* Utils.h */, + 4C8D022D5E0F5AF8E2B947CDD37B655B /* YGConfig.cpp */, + 83721110039CFE42056BFEDFC27ECD7A /* YGConfig.h */, + 3A8C581D9EF1B77EF6DCBDF21CE6A214 /* YGEnums.cpp */, + C2AB2C6DF577517B46C6AFDA1CA56AA9 /* YGEnums.h */, + 7649EAE55724A02D5F081AB53C472E2B /* YGFloatOptional.h */, + 7C957AEEBE8732084F3E9060381BF81B /* YGLayout.cpp */, + 8E90CC927E40D20F68CBF9A0F8F978F2 /* YGLayout.h */, + A5214F5196D7E17C1062B99B2BB0E766 /* YGMacros.h */, + 4C2D59DF8B0247ABF490F7F8CE07A609 /* YGNode.cpp */, + DA58948875C4402E1D271A01A5D3D543 /* YGNode.h */, + A1307B3A72BF7EEAE8A6CCCC08D63FF3 /* YGNodePrint.cpp */, + 0A1CE5EF7C7C82D6099B3F2F67BE2668 /* YGNodePrint.h */, + C11D5B7318C6A6E072A3BE503C089B9F /* YGStyle.cpp */, + AC3BF52795F302CF04D568959A0EB08B /* YGStyle.h */, + F8BF55577E9CB50B9C96920DEBDC8284 /* YGValue.cpp */, + 21BAB5042DDC0532E64D1E0AE5FC2844 /* YGValue.h */, + 4B7602D499F00AD5406A3D24D333C82A /* Yoga.cpp */, + 3227282E2EF72045F2D73E9B1891162B /* Yoga.h */, + FF96CBA8BB9D8D9B314D33058260968C /* Yoga-internal.h */, + 686740B7E7133ABCC7E637AB4948ECCC /* event */, + 300D8F9DD5DF0661A5212DB05E29B004 /* internal */, + 3448624F7CE383C33F272BC6752E99F9 /* Pod */, + 16BD15A4F2889B2E309F3B5C8A52139A /* Support Files */, + ); + name = Yoga; + path = "../../node_modules/react-native/ReactCommon/yoga"; + sourceTree = ""; + }; + B86CA7611AE41BFB57D1EE46299C9A65 /* react-native-appearance */ = { + isa = PBXGroup; + children = ( + 90C3DF9E7E4D01932B8AD30654D97DC9 /* RNCAppearance.h */, + 26FA9CC84711849B24882F0E489476B5 /* RNCAppearance.m */, + C26A133F4DC22A4CD5C1A721D09806FE /* RNCAppearanceProvider.h */, + F7682ECCD906776D42EED1F55077A15F /* RNCAppearanceProvider.m */, + 6067480709BD2FEE874AE26E59989BA0 /* RNCAppearanceProviderManager.h */, + 2194C9BDF97586E8F49B5408FEF50FAF /* RNCAppearanceProviderManager.m */, + 82D8BEDAC4F64D872D8899FA8987ACE0 /* Pod */, + CF1423445EB57749FA7E57160626314B /* Support Files */, + ); + name = "react-native-appearance"; + path = "../../node_modules/react-native-appearance"; sourceTree = ""; }; B8FD7B66934E4234AD5AB2D5EE791A85 /* Support Files */ = { @@ -11586,68 +11434,51 @@ path = "../Target Support Files/Folly"; sourceTree = ""; }; - B90B69244E772D5D4BD79E8716085433 /* Support Files */ = { + B92DEB98DD09508CBC6E998144165465 /* RNGestureHandler */ = { isa = PBXGroup; children = ( - 9801F115F537316FFFC074DD1EE6D720 /* EXPermissions.xcconfig */, - 0CC552347E616F6D1ABDFAEFDF898E95 /* EXPermissions-dummy.m */, - 54091FF4F82F312CC86C4D42CED02D5A /* EXPermissions-prefix.pch */, + 4918B1E9B839873F273906356093EEB7 /* RNGestureHandler.h */, + 4AEFBC381C301E07576A537B59494F93 /* RNGestureHandler.m */, + 959E02EDFE2FC16928D069CD4618BC12 /* RNGestureHandlerButton.h */, + CAB55A63AB325CA5E2B5DC7191E60462 /* RNGestureHandlerButton.m */, + A02D2DAD961AAC601903EB6B6D658838 /* RNGestureHandlerDirection.h */, + 2F975753960B42CEAF0D6CB4682433F2 /* RNGestureHandlerEvents.h */, + F67EE4F4190BEAE253397EF0E41D65D0 /* RNGestureHandlerEvents.m */, + 05A178309018FA80769AE521310F22DB /* RNGestureHandlerManager.h */, + 9B8036D6004AA4DC9A6690B2DF2AAC63 /* RNGestureHandlerManager.m */, + FA6FF7113372AF721AEA989C93C9BD9F /* RNGestureHandlerModule.h */, + EE5486881ED621DC4839E7EA1FF6B8D5 /* RNGestureHandlerModule.m */, + BB5C3F269B8C5ACC0C2871F4F0C42D50 /* RNGestureHandlerRegistry.h */, + 2E7B00BF6FF630502AC09E09DD7EEF10 /* RNGestureHandlerRegistry.m */, + D3038B691CBB8D31F26D901D94F774E6 /* RNGestureHandlerState.h */, + 3CD6E6E4E40B7A43AB1DF37E35105062 /* RNRootViewGestureRecognizer.h */, + FE10DB9AA63D351C0285E36C0807C4CC /* RNRootViewGestureRecognizer.m */, + 46BB31868FBCFF1EBDD34B6157537B7C /* Handlers */, + 60E9A3B66D463E60AE12C3161E7FD65C /* Pod */, + 59F3F1AA7C3DCAC2E93249541324E64A /* Support Files */, ); - name = "Support Files"; - path = "../../../ios/Pods/Target Support Files/EXPermissions"; + name = RNGestureHandler; + path = "../../node_modules/react-native-gesture-handler"; sourceTree = ""; }; - BA4AA12767D03B5AFA6A95BD89FE0497 /* RCTLinkingHeaders */ = { + BA7A8EF96B7BC3020977CA7D030E5F7B /* Pod */ = { isa = PBXGroup; children = ( - 415B7BF98846838D581516D927421F9B /* RCTLinkingManager.h */, + 56FEAC0D99FD583AF71021360CBAF80E /* react-native-keyboard-tracking-view.podspec */, ); - name = RCTLinkingHeaders; + name = Pod; sourceTree = ""; }; - BAD2486EFF7C66291C5F656417EB1438 /* Support Files */ = { + BC57759B7AECDC25086DF4CA9CE25D46 /* EXKeepAwake */ = { isa = PBXGroup; children = ( - 4982C28DA8AB92708C12DF174B860C00 /* RNDeviceInfo.xcconfig */, - 17FD6938434448E24EC5E7C3DF584BD1 /* RNDeviceInfo-dummy.m */, - 014DC72B8494508C63AE4AF36F3FB746 /* RNDeviceInfo-prefix.pch */, + C9681AA2558043F6935F3827D5E1190A /* EXKeepAwake.h */, + FEC6081AC23CEB436CA6F056DAB0E1A8 /* EXKeepAwake.m */, + DA2924BEDFCA9D96340275529C3FB553 /* Pod */, + FF84888FA8C99EB6BCE91F80889A90C6 /* Support Files */, ); - name = "Support Files"; - path = "../../ios/Pods/Target Support Files/RNDeviceInfo"; - sourceTree = ""; - }; - BCD4F09CB8541EFA2299F46C73159285 /* React-RCTBlob */ = { - isa = PBXGroup; - children = ( - FF9D71C72F2D96E98171895C7B078301 /* RCTBlobCollector.h */, - F0D636B30B31C8B1301BEC81573A12A4 /* RCTBlobCollector.mm */, - 1D55286078DE9B0E3DC2A02630ED8D2C /* RCTBlobManager.mm */, - 073C093FE8E2A5C5508B85D1287049D7 /* RCTFileReaderModule.m */, - DF52398502D456DDCD98DE184B56D10F /* Pod */, - D48CCB1AB00D0861285110C6E363F08E /* Support Files */, - ); - name = "React-RCTBlob"; - path = "../../node_modules/react-native/Libraries/Blob"; - sourceTree = ""; - }; - BD1A9F7DD3CA77064723D3B0C3DAF17E /* Transitioning */ = { - isa = PBXGroup; - children = ( - 8D13C7520AA20108E14471D603A404CA /* RCTConvert+REATransition.h */, - E4A59BDB5B64B943AC27F5E5B6B160B2 /* RCTConvert+REATransition.m */, - 6635661FE90F9C0B843EC5459944A09E /* REAAllTransitions.h */, - E205C9A84B269CC452C83BFA5AFBE10D /* REAAllTransitions.m */, - C22F1A78A1843F70163F5A77E0EB9521 /* REATransition.h */, - 994B165874A7AC63236C23D219FD4272 /* REATransition.m */, - 25E99870CA1226A989378F2CCE057DC8 /* REATransitionAnimation.h */, - 7BA7673B877BA34B973FC61A6164F329 /* REATransitionAnimation.m */, - FF0F7BE5B8A1BA9C72D90CB9BC6B2509 /* REATransitionManager.h */, - 94DF1CFB849E81DE83353A7DED6D5BC8 /* REATransitionManager.m */, - 6E642E8C45F4DDCA17F861D8A17C467A /* REATransitionValues.h */, - 816E8087D0B4D4448E5E58682E2671EF /* REATransitionValues.m */, - ); - name = Transitioning; - path = ios/Transitioning; + name = EXKeepAwake; + path = "../../node_modules/expo-keep-awake/ios"; sourceTree = ""; }; BD2D1D74DC7B94DF4049B5D3BE7A4B0E /* Support Files */ = { @@ -11659,6 +11490,17 @@ path = "../Target Support Files/JitsiMeetSDK"; sourceTree = ""; }; + BD6DC41F71E6CFD88381DD40FDFC450D /* Support Files */ = { + isa = PBXGroup; + children = ( + CCCD2C94BD30D3B521CD399597DFA1BA /* ReactCommon.xcconfig */, + B7A3682421142A23D4ABB6E7CD245A96 /* ReactCommon-dummy.m */, + 874D587D590CB2FD1B564F8A1FF8C4F5 /* ReactCommon-prefix.pch */, + ); + name = "Support Files"; + path = "../../../ios/Pods/Target Support Files/ReactCommon"; + sourceTree = ""; + }; BDECE5E2D91F907FA4086723A3CD134E /* Support Files */ = { isa = PBXGroup; children = ( @@ -11682,6 +11524,17 @@ path = libwebp; sourceTree = ""; }; + BE1477E76A9CF17AD3F4575CFD479D26 /* Support Files */ = { + isa = PBXGroup; + children = ( + 462B49F70DCEE6909C2EA1401BF8034C /* KeyCommands.xcconfig */, + E404671492B87C5400D64B192C24DE4D /* KeyCommands-dummy.m */, + C401506569A2F353B6F07852D0FC9C10 /* KeyCommands-prefix.pch */, + ); + name = "Support Files"; + path = "../../ios/Pods/Target Support Files/KeyCommands"; + sourceTree = ""; + }; BE81D7E783097ABE8C9B3F942F42FC1F /* Folly */ = { isa = PBXGroup; children = ( @@ -11706,16 +11559,6 @@ path = Folly; sourceTree = ""; }; - BEA7193F481FCCDC54C44643E4EFC6FA /* perf */ = { - isa = PBXGroup; - children = ( - BF28D6411819551A0C3F513B2FB176F2 /* RNFirebasePerformance.h */, - 48A8CFB74C512578B3160D2865303A65 /* RNFirebasePerformance.m */, - ); - name = perf; - path = RNFirebase/perf; - sourceTree = ""; - }; BEBA91E83D1604502A927D103DA78889 /* JitsiMeetSDK */ = { isa = PBXGroup; children = ( @@ -11726,16 +11569,6 @@ path = JitsiMeetSDK; sourceTree = ""; }; - BED256A74D387AB2DF4222B8A6626445 /* Pod */ = { - isa = PBXGroup; - children = ( - 9A7EFE22C7A1D800D93010278E35C114 /* LICENSE */, - DD4A65CBBCE93AF0594F619A3B4CED52 /* README.md */, - 4FDF56ADFCE5837FA2FE682BB2D2B171 /* RNGestureHandler.podspec */, - ); - name = Pod; - sourceTree = ""; - }; BEFB2B9B5280E10F649378C9E3C14871 /* decode */ = { isa = PBXGroup; children = ( @@ -11743,102 +11576,124 @@ name = decode; sourceTree = ""; }; - BF15F1AF394461F42C2FBEBC430246C6 /* React-RCTImage */ = { + BF772304BCB32F1676B25195F042B393 /* CxxBridge */ = { isa = PBXGroup; children = ( - 242CC982C2F9E674F8E4082508B29A0F /* RCTAnimatedImage.m */, - 2E47084E6E1000C6B0F23A4BE56D55B8 /* RCTGIFImageDecoder.m */, - E8A5AB4D865A155C0D11F4883FCC7203 /* RCTImageBlurUtils.m */, - 91BFEBD63CAA5403876ECB4D96B94FC9 /* RCTImageCache.m */, - 75EFBF9D5923028C61D053781FC48840 /* RCTImageShadowView.m */, - 0CFE82396A6955ACDCA2721F798678F0 /* RCTImageUtils.m */, - ABBB5ECF6510D755EC3C81E8F6EA2531 /* RCTImageView.m */, - 7337293FD1684C954BC628530DC505DC /* RCTImageViewManager.m */, - E6F066E8170EC345A2AF8CAF9B5AE544 /* RCTLocalAssetImageLoader.m */, - 54F5E1A4C627EC65AC00277DD62B4496 /* RCTResizeMode.m */, - E67498550846721E93E271F1B0D0935E /* RCTUIImageViewAnimated.m */, - CB82E34361B66A18B6A79E69464B51DF /* Pod */, - 029BE94D56996AD5E8C0C683AB4A683D /* Support Files */, + 4395DDE9E7CC08760D1991A26F6B1F60 /* JSCExecutorFactory.h */, + 9583EC8BD5CEB3AF7B3F5B83709C7A44 /* JSCExecutorFactory.mm */, + 171C898D33D93EE03DDF4838D058E0A1 /* NSDataBigString.h */, + 232C03DC2BE946443283361738300A2B /* NSDataBigString.mm */, + B23588F9DAD527223E2F6A2624C1D8EE /* RCTCxxBridge.mm */, + 4A06BB9A317330A368C6C8D5623CEC4A /* RCTCxxBridgeDelegate.h */, + 48FEBAC372020C751DE77B3F172BC8A2 /* RCTMessageThread.h */, + 2BEE581066BA4F123FBFD23B18ADC150 /* RCTMessageThread.mm */, + 23A6A5C3CC9632CBACB8F3B227D88AA1 /* RCTObjcExecutor.h */, + C87908D36F26EDCC8A8BD3A8C8A92377 /* RCTObjcExecutor.mm */, ); - name = "React-RCTImage"; - path = "../../node_modules/react-native/Libraries/Image"; + name = CxxBridge; + path = React/CxxBridge; sourceTree = ""; }; - BF232C9737BB466F444BB762B850BA10 /* Pod */ = { + BFE5F9DE501E5CC5B991123E74E472DC /* firestore */ = { isa = PBXGroup; children = ( - 10FF2B32A6B1C7C5562295785C219026 /* LICENSE */, - F968E803F74865AF58100405D2A73207 /* react-native-keyboard-input.podspec */, - F736DCABD4EDB4DBD28ACDE90AA20351 /* README.md */, + B582EC8B9AA16C7601BDDB4328D99F55 /* RNFirebaseFirestore.h */, + FFAFB3A0477AA9E5B891B8F8F157096E /* RNFirebaseFirestore.m */, + 10208D64F55D2D410966A16D3ADDD4E6 /* RNFirebaseFirestoreCollectionReference.h */, + D22B8726A0B75B8B3970CCE1DDEB7166 /* RNFirebaseFirestoreCollectionReference.m */, + 53F14BDD5F4FC4AF0FEA5519BD548562 /* RNFirebaseFirestoreDocumentReference.h */, + C638D8A1B319F7317803730057DA782F /* RNFirebaseFirestoreDocumentReference.m */, + ); + name = firestore; + path = RNFirebase/firestore; + sourceTree = ""; + }; + C02AF0E90419F8DD31FD17A9E2763809 /* ios */ = { + isa = PBXGroup; + children = ( + 02A52C18AFAA01DCA83FB5093702078F /* RCTTurboModule.h */, + E72F6D88A4D54F927AB028187927124D /* RCTTurboModule.mm */, + 1BD56A20AEB3E37F98C3B9820C95DDCA /* RCTTurboModuleManager.h */, + E8C83DAA599C68EE0E103DBBF8CE7BE3 /* RCTTurboModuleManager.mm */, + ); + name = ios; + path = ios; + sourceTree = ""; + }; + C096F5A1B3C9EEDB3750CB156E1F3D55 /* FBReactNativeSpec */ = { + isa = PBXGroup; + children = ( + 838F080F431E7065A2947FAA1E85053E /* FBReactNativeSpec.h */, + B68AA15C4F4F0A45F5AFD6068B2217C6 /* FBReactNativeSpec-generated.mm */, + DDB23FDB2062711B29F631FA55F0593A /* Pod */, + B2A3D5807E45C645AA027796D34C1B4D /* Support Files */, + ); + name = FBReactNativeSpec; + path = "../../node_modules/react-native/Libraries/FBReactNativeSpec"; + sourceTree = ""; + }; + C1DD8391F53850A91B8C02C42E06C2C1 /* Surface */ = { + isa = PBXGroup; + children = ( + B5F705E47FB22AF244B0CE93D1183E6A /* RCTSurface.h */, + 4A20331AEFE584D7B6CBACB9EE3B6C06 /* RCTSurface.mm */, + A5EEB97B307AF3C4767B6FE824F4AC39 /* RCTSurfaceDelegate.h */, + D4C5F5D791B6F526FB95ADB58BB237B6 /* RCTSurfaceRootShadowView.h */, + 2A4E7108199FFDAEBEBF093950081874 /* RCTSurfaceRootShadowView.m */, + 9BA143200912C794A9C68A492EF45BBE /* RCTSurfaceRootShadowViewDelegate.h */, + 6CB50D0B506E5976EB566742A2B84590 /* RCTSurfaceRootView.h */, + C6974E631DAFDFEC150F6548B10353B7 /* RCTSurfaceRootView.mm */, + 80BDEA72FADCDD09F7EA4DB54EA2D491 /* RCTSurfaceStage.h */, + 12D4CADAD278F7AFB72F216C771AD8F3 /* RCTSurfaceStage.m */, + F0D532B62233DEE22887CF7F717120F1 /* RCTSurfaceView.h */, + 50225539BC3970508A5311FA54C90244 /* RCTSurfaceView.mm */, + 98B81BC7A3053A89F53945DECFB56375 /* RCTSurfaceView+Internal.h */, + FDD07CB7882D30242134F87AC056E9E5 /* SurfaceHostingView */, + ); + name = Surface; + path = Surface; + sourceTree = ""; + }; + C258DBB975DF066325DBA57DC707EBEC /* Pod */ = { + isa = PBXGroup; + children = ( + CFE8E27B65B95F6ECC427DDB4D0567D5 /* LICENSE */, + 1310988E8851BFF67E3D509CFAE33B43 /* react-native-keyboard-input.podspec */, + F9784E8E0B396952D3CC2448FD0F40A8 /* README.md */, ); name = Pod; sourceTree = ""; }; - BF4D3783CBB5337FDCD3AD343E7744B4 /* CxxUtils */ = { + C3C76E2FED5D41B98A79429EC3F392F2 /* Support Files */ = { isa = PBXGroup; children = ( - 2F800695D27FA1FC622EE957138F69CB /* RCTFollyConvert.h */, - C40461EF02CA744E700FA23B4CC04E99 /* RCTFollyConvert.mm */, - ); - name = CxxUtils; - path = React/CxxUtils; - sourceTree = ""; - }; - C22C066D34552123B9EE9D09822BF268 /* Pod */ = { - isa = PBXGroup; - children = ( - 203F48A56246ADAA1C00DA87F90BC8C4 /* LICENSE */, - C8E8C6D9E69992742B3E73AD89D5E426 /* README.md */, - DDC3AD68B6C01CF82549839974F67A26 /* RNLocalize.podspec */, - ); - name = Pod; - sourceTree = ""; - }; - C2FAA3BD5084B2838693FB54C6B68759 /* Support Files */ = { - isa = PBXGroup; - children = ( - 41380E07D12C9C4B5596EAD3227A6258 /* UMCore.xcconfig */, - E287BA502DB96DE50A778991BA5A01BF /* UMCore-dummy.m */, - B05EF8E009A097B6D36E5A1BE5D273FB /* UMCore-prefix.pch */, + A3C1409A99321AC9D3AFDE8F8B4606FF /* UMCore.xcconfig */, + 432DB2A7AD085C3F73F4627E1619060E /* UMCore-dummy.m */, + 6C0C3747E397A2707BF9B1EF64956559 /* UMCore-prefix.pch */, ); name = "Support Files"; path = "../../../../ios/Pods/Target Support Files/UMCore"; sourceTree = ""; }; - C308EDD1EF5495B8E02799DF28688E82 /* RNUserDefaults */ = { + C4A508495264F11C79FDB5DCAEE568EE /* Nodes */ = { isa = PBXGroup; children = ( - FD0522A77323863222F799279CD2584A /* RNUserDefaults.h */, - 390EB75A812143B1A811F566F22BEC7B /* RNUserDefaults.m */, - 66040B7B7809BB1B15E5D023B60AE276 /* Pod */, - 6F3E4F31EB61E3359504A1DD721C196B /* Support Files */, + A323E8D7320BDFBB0D244635AD624EAA /* RCTAdditionAnimatedNode.m */, + 7413A1DC52576787DEA98E670555F79C /* RCTAnimatedNode.m */, + 07FBA55D74E173238E33A16C344F642F /* RCTDiffClampAnimatedNode.m */, + 583C78D06D85B0F0870949F7687750AB /* RCTDivisionAnimatedNode.m */, + E8AA33D37BF6D7F06BFE5711824D596C /* RCTInterpolationAnimatedNode.m */, + 7E6DF9E6EA157EE86994776DB213ED2B /* RCTModuloAnimatedNode.m */, + DA0A914F95EC0D3983D7B4C4AC1BD9CB /* RCTMultiplicationAnimatedNode.m */, + B6B43552880DE27E989CB279A0D604C8 /* RCTPropsAnimatedNode.m */, + B246D2F2CABF0035A46CDD1FA46AA472 /* RCTStyleAnimatedNode.m */, + 119FFB3F848631A057B879B37004A1D9 /* RCTSubtractionAnimatedNode.m */, + 0241DD171AA09A9F252F7880C4B31025 /* RCTTrackingAnimatedNode.m */, + 95EA7F97D487D4E28EA607752A53D9A5 /* RCTTransformAnimatedNode.m */, + 7ED3AF06321ED85BB28A9F1F6A54E2D9 /* RCTValueAnimatedNode.m */, ); - name = RNUserDefaults; - path = "../../node_modules/rn-user-defaults"; - sourceTree = ""; - }; - C3EC3C917383E407DFB6ADD943102508 /* UMSensorsInterface */ = { - isa = PBXGroup; - children = ( - 1CF6D980954E8CA254E4CB92954057C7 /* UMAccelerometerInterface.h */, - 47DDC51FE3E3ED4B99A0EA0FCF2E177D /* UMBarometerInterface.h */, - 2F9ADA297A62FAD8A41BDA8437479CD7 /* UMDeviceMotionInterface.h */, - E14DA641C232C6F3E8E6CF211DC08160 /* UMGyroscopeInterface.h */, - B71B0B7C53F63837EA8CA137AA591173 /* UMMagnetometerInterface.h */, - 2B1E44F7BDC8B7848079D7AACD2613F3 /* UMMagnetometerUncalibratedInterface.h */, - 44016CE76BA6BEE2E0236E69AA94BAD0 /* Pod */, - DD79D79E992CE0E81AE2CB4FF4F1AA2F /* Support Files */, - ); - name = UMSensorsInterface; - path = "../../node_modules/unimodules-sensors-interface/ios"; - sourceTree = ""; - }; - C59C939570963FB3D5E87D683EAB78BB /* Pod */ = { - isa = PBXGroup; - children = ( - C6CC5F08AAE5268A991BB3982B3573AA /* React-RCTSettings.podspec */, - ); - name = Pod; + name = Nodes; + path = Nodes; sourceTree = ""; }; C5AC19D7A9D457167D564B1E75C41A57 /* encode */ = { @@ -11848,94 +11703,13 @@ name = encode; sourceTree = ""; }; - C5B234F8869A390499C25B1D38679EC0 /* Support Files */ = { + C7146AD9963C380074607CA5BA6D8FB1 /* Support Files */ = { isa = PBXGroup; children = ( - B6C9DD78E0C948983075BD3C9EA833AE /* ReactCommon.xcconfig */, - 9E0FF4ADBE373E8B88BEEB975D4CC769 /* ReactCommon-dummy.m */, - 78226B90A8A085985631BF6A9FF9FB77 /* ReactCommon-prefix.pch */, + 45BE059D32CDFFC69A1E8781C3EAD863 /* UMFontInterface.xcconfig */, ); name = "Support Files"; - path = "../../../ios/Pods/Target Support Files/ReactCommon"; - sourceTree = ""; - }; - C5BD07B39DD44DCB625D542B1BB62DE3 /* React */ = { - isa = PBXGroup; - children = ( - F8F04E23CD8541CE4C7630B617924844 /* Pod */, - C5F9BA53BCB0A2A193C5BBAA326C2DDA /* Support Files */, - ); - name = React; - path = "../../node_modules/react-native"; - sourceTree = ""; - }; - C5F9BA53BCB0A2A193C5BBAA326C2DDA /* Support Files */ = { - isa = PBXGroup; - children = ( - 96867B9D40020D69A2C4C29126C0524C /* React.xcconfig */, - ); - name = "Support Files"; - path = "../../ios/Pods/Target Support Files/React"; - sourceTree = ""; - }; - C604059DBBBC3FF382B1B8F0BD2E44F9 /* UMFileSystemInterface */ = { - isa = PBXGroup; - children = ( - 75380D94FBDE690CE5653BE9793E3C9F /* UMFilePermissionModuleInterface.h */, - 84CE69D12921D635B2AC77BE0BBECFB8 /* UMFileSystemInterface.h */, - 1E68F6CC018EAD03946333FDE65B011E /* Pod */, - 916678AD8DFF5A6E735EE8F9F424640D /* Support Files */, - ); - name = UMFileSystemInterface; - path = "../../node_modules/unimodules-file-system-interface/ios"; - sourceTree = ""; - }; - C69454798381A8A8166752800AAC095C /* Support Files */ = { - isa = PBXGroup; - children = ( - 744F74F47B727F2059D95906EDD0C441 /* react-native-keyboard-tracking-view.xcconfig */, - FF76018294EE0F747D82693B03DEB377 /* react-native-keyboard-tracking-view-dummy.m */, - 121BE1C25A0E21A9864EA9A6EEDBB710 /* react-native-keyboard-tracking-view-prefix.pch */, - ); - name = "Support Files"; - path = "../../ios/Pods/Target Support Files/react-native-keyboard-tracking-view"; - sourceTree = ""; - }; - C6B8E05DFA9E10EE3E91BB788A82AB18 /* React-Core */ = { - isa = PBXGroup; - children = ( - 4CB6D053181513F0FB616CE38FEFC0C7 /* CoreModulesHeaders */, - 85E51D937E23530052EA6AA48FC33EC3 /* Default */, - 75420EB6BC6C86A0628380E23A954076 /* DevSupport */, - E9CCBDF083449AB22C43DADEC8B25A9E /* Pod */, - CAEEF0D8472DCCE5062AE4D7EF6D1F52 /* RCTActionSheetHeaders */, - A8B27F8989069946233DB4009E748079 /* RCTAnimationHeaders */, - B1BB1637386FCAB1F39594A93EA1EACF /* RCTBlobHeaders */, - AAB3AAF1E7574A0A35F01446D38B8C41 /* RCTImageHeaders */, - BA4AA12767D03B5AFA6A95BD89FE0497 /* RCTLinkingHeaders */, - 14DDF94A2093E12C2BB0F21C396367B7 /* RCTNetworkHeaders */, - 6A58FDEEF1143B21C1754FB4AE7BCF0F /* RCTSettingsHeaders */, - 5127552AA1F08C589C56FF965A262EF6 /* RCTTextHeaders */, - 0D6816E51740ADE85638C67D7979D64F /* RCTVibrationHeaders */, - F8C018DD31FC106BBDBA6F7E29F95532 /* RCTWebSocket */, - E06A54860237C41B68FB169E537DCC4E /* Support Files */, - ); - name = "React-Core"; - path = "../../node_modules/react-native"; - sourceTree = ""; - }; - C7967BFFF3A338D429F40E394E17EADD /* EXConstants */ = { - isa = PBXGroup; - children = ( - E932BA62AE7F53A3DD21C0EF7018D4E7 /* EXConstants.h */, - A3E5C4CE53F7B66631A1299DFC538DFC /* EXConstants.m */, - F0C3FAE0D517C3332AFCC417BC1D4DC6 /* EXConstantsService.h */, - 7CC02974A6FF92936716DE35746FEAF6 /* EXConstantsService.m */, - AD8BFA207A2B69D2B1EDFDCB59A9F03B /* Pod */, - B4DC2D968701C47E1439AF12A7397C87 /* Support Files */, - ); - name = EXConstants; - path = "../../node_modules/expo-constants/ios"; + path = "../../../ios/Pods/Target Support Files/UMFontInterface"; sourceTree = ""; }; C7D050BE37BEB97CCFF3C328E1D81D8A /* Logger */ = { @@ -11948,118 +11722,27 @@ name = Logger; sourceTree = ""; }; - C84C35B1B73531C817AA1E6C0468C16D /* UMNativeModulesProxy */ = { + C8CCDD793D63DBD831D6994C1A6CBDD2 /* vendor */ = { isa = PBXGroup; children = ( - 3B61A9482BC3A9BEDDDE88B257AB21F1 /* UMNativeModulesProxy.h */, - 139C8D9238725DAE7FCBF01C2CB3061B /* UMNativeModulesProxy.m */, + 83F7203005484490A3D78C76CC80AB3E /* bugsnag-cocoa */, ); - name = UMNativeModulesProxy; - path = UMReactNativeAdapter/UMNativeModulesProxy; + name = vendor; + path = cocoa/vendor; sourceTree = ""; }; - C90DCC928E2583FF2AF436B3EBECEA6A /* Inspector */ = { + C905470813674F65E67743D11CDE7B21 /* RCTTypeSafety */ = { isa = PBXGroup; children = ( - DC4EE86ED57A5C244D92B6AADEF47DA6 /* RCTInspector.h */, - 9E74C17E7160312F910F44D6B6B8340A /* RCTInspector.mm */, - C84311A37E28EA5AD000E7CD1838C64F /* RCTInspectorPackagerConnection.h */, - 878457F5B4DA61353A80FEB0FEB9FA2A /* RCTInspectorPackagerConnection.m */, + 365041740810955DB1449E165C1D4204 /* RCTConvertHelpers.h */, + F013381882F6989372AA77C67D3EFAD8 /* RCTConvertHelpers.mm */, + 8F5899B6499FEC85F4D4AB9B0F168FE0 /* RCTTypedModuleConstants.h */, + 29A3D23975AEB6C01C3F1C00D62CFCA8 /* RCTTypedModuleConstants.mm */, + 3300A1BF1ABF83CA0152D302535C08B8 /* Pod */, + 9B33D86528C725FBCF7D87AD68DD2E8C /* Support Files */, ); - name = Inspector; - path = React/Inspector; - sourceTree = ""; - }; - C95FD7F7AF8B6B4A5F423947BD8C47B6 /* Base */ = { - isa = PBXGroup; - children = ( - ABBCF9F2DE522F1DA8F22D2A452F7D62 /* RCTAssert.h */, - AF36EF623726F10B874489B4D806967A /* RCTAssert.m */, - 42B8DFDAE0F63AB98C3BF5F0C106A8C4 /* RCTBridge.h */, - EA8888C441895FDD237829660C8F7D8B /* RCTBridge.m */, - 02C59C4B6554A3680218B0041D625C73 /* RCTBridge+Private.h */, - 5E3596E809929F56D6C013739C427DBB /* RCTBridgeDelegate.h */, - 57D4207BB861E02AAF2D49C30A6E9E64 /* RCTBridgeMethod.h */, - 5E5B66EAB3095DBCF2163E18F25534DB /* RCTBridgeModule.h */, - 2720FB96DDE513B6CD1FCA3998287D7D /* RCTBundleURLProvider.h */, - 5A980A6EEE137896F876DCE1BFFCE89E /* RCTBundleURLProvider.m */, - 5AE6C4FAC04274A0DF959A5312014DB3 /* RCTComponentEvent.h */, - 3F79091C9F4C4912E37D52021A7C2936 /* RCTComponentEvent.m */, - AC187AB10FB11B8FC0724A0C54F25A6D /* RCTConvert.h */, - 135A662BDD56FDB59F2034096947DC8B /* RCTConvert.m */, - 176C3F50309045AEA58CA738F9B1F5CB /* RCTCxxConvert.h */, - AA1C1618390AB5F98AF7B16B1E54B315 /* RCTCxxConvert.m */, - 80A3D7CCF7C837F1775EE8CAD9A12200 /* RCTDefines.h */, - D5BB8C4A5B89B93A54210020B52760AD /* RCTDisplayLink.h */, - 1A9CF061A5E12F9A85E5EB4A235969E3 /* RCTDisplayLink.m */, - B92470A218086B50E25F897D11673DB9 /* RCTErrorCustomizer.h */, - 3BE921D7BECDF796EFC4AD40C6D8797A /* RCTErrorInfo.h */, - F35C2A72FA7101F637DF67235E6483D2 /* RCTErrorInfo.m */, - 6FF5CBC39AD3F139106C225552621DBB /* RCTEventDispatcher.h */, - 9E05F77B6AF44F418C6E077CED2FBB93 /* RCTEventDispatcher.m */, - B326B2109C0685C03903F37A807BE28B /* RCTFrameUpdate.h */, - D5A8E89DA9929CB6D34C2B3DCC16CB76 /* RCTFrameUpdate.m */, - DF606D47A4DF17A77D07CF1F8071D83B /* RCTImageSource.h */, - 34AB7353157698E0185BF1E0F8704B0F /* RCTImageSource.m */, - E5132055C5DA8F723A506EA067ACE48A /* RCTInvalidating.h */, - F34AAF4EB156179DBB98C9E541819A40 /* RCTJavaScriptExecutor.h */, - 401ADA1FB17407FDE15E4ED94C4B07EA /* RCTJavaScriptLoader.h */, - 00CCFE3233440987FB59571F1101034A /* RCTJavaScriptLoader.mm */, - C57B5817AE6D14ECAB1C0CE5B413A293 /* RCTJSStackFrame.h */, - E413B2340A7D3E06704D4234340540B4 /* RCTJSStackFrame.m */, - 5C910818B6524C8841009D36914A5180 /* RCTKeyCommands.h */, - 8229C7B94874242389AA622F7750EF2E /* RCTKeyCommands.m */, - 4E4E070C3341B38A3C50BD22E628846D /* RCTLog.h */, - 8AB310BFF5D7A85FB6C9AD1A44D622CF /* RCTLog.mm */, - B03FAEA89B6C72A886E243887CD6C1C4 /* RCTManagedPointer.h */, - F98980B4FD732EF519F258893B34B29D /* RCTManagedPointer.mm */, - D65E68B93FB3217B03B69F5FC4A4196F /* RCTModuleData.h */, - 06AC030B2EA1E86AE0CDA3C4CD57B831 /* RCTModuleData.mm */, - EC5C2996BB897C23E1C5EE5447775887 /* RCTModuleMethod.h */, - 72D4F5F1BEF3C9DB9A518DCD538F01B7 /* RCTModuleMethod.mm */, - 124203A71CC0672033E57E46124AF729 /* RCTMultipartDataTask.h */, - D7CD301DE8C33AFC31FBB707FA097453 /* RCTMultipartDataTask.m */, - D2043CF5152C825C890550BD1356BFBD /* RCTMultipartStreamReader.h */, - AFDB750BF6A083142D44FC5889D60117 /* RCTMultipartStreamReader.m */, - 6BCA70E3C7BD3F877DC1FDC829C001A9 /* RCTNullability.h */, - 32A92903CC9F58C188FC431919F6F5FF /* RCTParserUtils.h */, - EFB47B5D814F2C6B8453AE856D6E5A4B /* RCTParserUtils.m */, - 2F648E0E3E84654009319A9A0EC7A4C9 /* RCTPerformanceLogger.h */, - 03C2AD1FC34E990747B1A8212A73590A /* RCTPerformanceLogger.m */, - 3E2C1CEB3D196D4E4917BDD83DFDC203 /* RCTReloadCommand.h */, - A93F01BDE5BE564697AA6E77797E4897 /* RCTReloadCommand.m */, - 10C97D20E86E939D1862FE86B3C6050C /* RCTRootContentView.h */, - 9F9747D57C6D15CD10C373F1E196CDB5 /* RCTRootContentView.m */, - 9F8338440D9AC78C37FECEB66F768F69 /* RCTRootView.h */, - 97652E20DB8DBBE8592A74E75E289BCF /* RCTRootView.m */, - EBD0A2E61F70501CC7DA06E88451493F /* RCTRootViewDelegate.h */, - 686869BC8067E9C4F6766CE8AD1062A9 /* RCTRootViewInternal.h */, - B950F2AD89310ADE0AD499648B2F95A0 /* RCTTouchEvent.h */, - BEC71C8DCAB3D40932F29632B7B083FB /* RCTTouchEvent.m */, - 6CD213CBF8225CEDC688993BA1A8346A /* RCTTouchHandler.h */, - E522C571C9FA1AB0EC653F2405CE1CFB /* RCTTouchHandler.m */, - D49FBB4BAF0905B91E5A130C7D85CC9B /* RCTURLRequestDelegate.h */, - 146E954310E57FF845846D12DBA3658F /* RCTURLRequestHandler.h */, - 6F590C8C8F2CDC014E2AEA8B6412375D /* RCTUtils.h */, - 4CF67E6DFF68BF36E29D90A416235194 /* RCTUtils.m */, - B055AFA473FC3220999341B10F56F810 /* RCTVersion.h */, - 6C931CF72C07DEFC287AEA959CE943E2 /* RCTVersion.m */, - C2F3961FF92C2244C5F6A55A90ADB792 /* RCTWeakProxy.h */, - 177F27791F1F5AB2C725EAF000624C2C /* RCTWeakProxy.m */, - 54B269DC3BACBE5A3D1CD8A4AB48FBCF /* Surface */, - ); - name = Base; - path = React/Base; - sourceTree = ""; - }; - C973A7C0B69253E4BCF2A3C49F86C7DF /* Pod */ = { - isa = PBXGroup; - children = ( - 888A4D48FA55F32314E99958205EA5A5 /* LICENSE */, - 998EEDC93302BD3DF1B6DCB89EAB86B1 /* react-native-jitsi-meet.podspec */, - DD7406BA1E86D911AC4E38B1D68E5816 /* README.md */, - ); - name = Pod; + name = RCTTypeSafety; + path = "../../node_modules/react-native/Libraries/TypeSafety"; sourceTree = ""; }; C9762B9B989E3D2E0734F2D20257BA15 /* Support Files */ = { @@ -12071,26 +11754,34 @@ path = "../Target Support Files/GoogleAppMeasurement"; sourceTree = ""; }; - CA27C9F47AA75330157DD0F1FD703E16 /* Pod */ = { + C977B5E44A520CA12CD641F400CD0139 /* Singleline */ = { isa = PBXGroup; children = ( - 522850CA85F97F9087EE45F06E60C698 /* UMFaceDetectorInterface.podspec */, + 5CF4ACDFB96383F590C01F0004DB1A1A /* RCTSinglelineTextInputView.m */, + A723F44FAE5881611020AE90C27E625A /* RCTSinglelineTextInputViewManager.m */, + 11C60A0BF45054568DDE7E37CB86A806 /* RCTUITextField.m */, ); - name = Pod; + name = Singleline; + path = Singleline; sourceTree = ""; }; - CAEEF0D8472DCCE5062AE4D7EF6D1F52 /* RCTActionSheetHeaders */ = { + CACC23EFB3E258D0EFBE337DA010337F /* Singleline */ = { isa = PBXGroup; children = ( - A724CB86DBDDC1034E5423677B33B545 /* RCTActionSheetManager.h */, + 7DE782C2BD00BB7546E6EC40C41AFC0C /* RCTSinglelineTextInputView.h */, + B004EA3AE960755FB007C1BCE53D1990 /* RCTSinglelineTextInputViewManager.h */, + 8ED5FFEC37DF77FD9DF7501A5F681826 /* RCTUITextField.h */, ); - name = RCTActionSheetHeaders; + name = Singleline; + path = Singleline; sourceTree = ""; }; - CB82E34361B66A18B6A79E69464B51DF /* Pod */ = { + CBBC81590A76546872E10F69758F64ED /* Pod */ = { isa = PBXGroup; children = ( - 5AA230DB04272787B0BE5CE99CA36B95 /* React-RCTImage.podspec */, + CD397F08DCC61B47D7A7E89F8A6B503F /* LICENCE */, + ED6814A73FA33DB129FB8A35EE3385D7 /* react-native-cameraroll.podspec */, + 7599B6818B2DFB53AA2DF81D2AD102BF /* README.md */, ); name = Pod; sourceTree = ""; @@ -12104,61 +11795,269 @@ path = "../Target Support Files/boost-for-react-native"; sourceTree = ""; }; - CC2B7C8C7C4C425D896330B3A6409B5D /* EXWebBrowser */ = { + CC61C886B667388B268C3E80052BE3E5 /* RCTCustomInputController */ = { isa = PBXGroup; children = ( - F6E32E206DAF749BA6BF9A9A917D0C4F /* EXWebBrowser.h */, - 2DF2C146D066E5391A35C0AABECF830B /* EXWebBrowser.m */, - 9553BE671749F27377C1EE3D11815690 /* Pod */, - 0DAEAA6DCEA5F91B196B35744BCFCF4A /* Support Files */, + 7DC5EB572EABEA087CB3C84B616E80E6 /* RCTCustomInputController.h */, + B1B06373B19E6718FE5623A38632E961 /* RCTCustomInputController.m */, + DD4AC19853E3153E2B2A37659CA1C199 /* RCTCustomKeyboardViewController.h */, + BCFF8DBCFA53E8201EA4B50E97598095 /* RCTCustomKeyboardViewController.m */, ); - name = EXWebBrowser; - path = "../../node_modules/expo-web-browser/ios"; + name = RCTCustomInputController; + path = lib/ios/RCTCustomInputController; sourceTree = ""; }; - CC8FB1C7DC5BDEB15103B1C3BA57F2F8 /* FBReactNativeSpec */ = { + CC89B27C29F07E23EF4559519F76D470 /* UMModuleRegistryProvider */ = { isa = PBXGroup; children = ( - A58343B7048068BA0537B274CBCBE64F /* FBReactNativeSpec.h */, - 9EC42C12870C913DC0C019147B261D28 /* FBReactNativeSpec-generated.mm */, - F64A5963796376181E4257F9C822C301 /* Pod */, - E5CB174EBBCDD0E3F0A48C71E7F60EE0 /* Support Files */, + 56AC17775CF9BD254E41F497EF8E7C82 /* UMModuleRegistryProvider.h */, + 350AD172999370ABF4BACFB3589A46E0 /* UMModuleRegistryProvider.m */, ); - name = FBReactNativeSpec; - path = "../../node_modules/react-native/Libraries/FBReactNativeSpec"; + name = UMModuleRegistryProvider; + path = UMCore/UMModuleRegistryProvider; + sourceTree = ""; + }; + CCD0696552443ADEF7328961B7BB3785 /* Pod */ = { + isa = PBXGroup; + children = ( + 4E835AC053C9D36CDE90E241374CF252 /* react-native-slider.podspec */, + ); + name = Pod; + sourceTree = ""; + }; + CCD210BE86EFB362AB99EF7C2BCF4E24 /* Support Files */ = { + isa = PBXGroup; + children = ( + 25F931BA0A4073AE54F40800E8F6EDA0 /* React-RCTLinking.xcconfig */, + 4CB1FE8465337B521E6D9A0CDD6F8A99 /* React-RCTLinking-dummy.m */, + D4174C80D73CF2A07F03D41AFD17478B /* React-RCTLinking-prefix.pch */, + ); + name = "Support Files"; + path = "../../../../ios/Pods/Target Support Files/React-RCTLinking"; + sourceTree = ""; + }; + CECDDB968B50E71CA87E7E9FA8030FBA /* Support Files */ = { + isa = PBXGroup; + children = ( + 5B83B3722402B2A7D21156D06CFA5326 /* react-native-slider.xcconfig */, + C61A9F8D5C26666E41D69DCEBF3BFA66 /* react-native-slider-dummy.m */, + 5DD508AB0D346DE34BA31FE277C21433 /* react-native-slider-prefix.pch */, + ); + name = "Support Files"; + path = "../../../ios/Pods/Target Support Files/react-native-slider"; + sourceTree = ""; + }; + CECEFDAE21BF1266FF7DE08934DE610D /* jsi */ = { + isa = PBXGroup; + children = ( + 5990CEFE9A2CA85B49282CAB546FA1A3 /* decorator.h */, + C70A2F6A9FEA88B026D72808AAFBA232 /* instrumentation.h */, + 817FAA1AAEAE43A6556BF57418ED4259 /* jsi.cpp */, + DE8B7BF569CBA6D1DF75687E3F300B24 /* jsi.h */, + 1D0B7A74AA89880E51C1C602661BE0D0 /* jsi-inl.h */, + 459CB01901100E5C0B8096B30A4A88EF /* JSIDynamic.cpp */, + 410974AD76C46979A85DD8829197DFE4 /* JSIDynamic.h */, + 12181BAC60EBF53F4BE9F37D9827C6C3 /* jsilib.h */, + 260AF1B2F4B5C6D69475585F8DEBFD5E /* jsilib-posix.cpp */, + 1B6582127616A80FE1ECF318DA264FF0 /* jsilib-windows.cpp */, + D416471368066B2302F1B793CB4E24D7 /* threadsafe.h */, + ); + name = jsi; + path = jsi; + sourceTree = ""; + }; + CEE3868CC003CE265669C2AB66689B82 /* Tools */ = { + isa = PBXGroup; + children = ( + 8A0CC5644DE47283BD6FF0D0160FCD6F /* BSG_KSArchSpecific.h */, + 1CB0894A4004AF4CFE6CE31924DA0937 /* BSG_KSBacktrace.c */, + D4A6B6B426B31D5630CDBA836D2FF9D8 /* BSG_KSBacktrace.h */, + A06A8A3595975643253C9A50DAD2043A /* BSG_KSBacktrace_Private.h */, + 3B16C6CC030E54F9A3BDE536225E6528 /* BSG_KSCrashCallCompletion.h */, + EE377C18BCA52E7E223E49BA61376BB3 /* BSG_KSCrashCallCompletion.m */, + CA70B73C709B2798A72267B68CBE436D /* BSG_KSDynamicLinker.c */, + F09C49B0D59C738FF539A84C334C675C /* BSG_KSDynamicLinker.h */, + 64539EC7E7E67AFB2A7B3DAD832D6747 /* BSG_KSFileUtils.c */, + A765350840F28DF7C2FED40DB55E60B3 /* BSG_KSFileUtils.h */, + A0F59E137E728AEF7C5C6AB9578CFADE /* BSG_KSJSONCodec.c */, + DB1396294BD397C47DFE2E77940D40C5 /* BSG_KSJSONCodec.h */, + 9479F4BA67F6F3E15B163805C0BA0C3D /* BSG_KSJSONCodecObjC.h */, + EE916842094A1E66A118A3EF09B92D96 /* BSG_KSJSONCodecObjC.m */, + 969E94DB080007C79EE1C6770135A2D5 /* BSG_KSLogger.h */, + D6CD053C18B431A14A30D28DF52545FB /* BSG_KSLogger.m */, + 2D359E03F9FE1F077A3D82FAB52F7E5A /* BSG_KSMach.c */, + 77D68116CBB0F3E14F0F7342A3EECFEE /* BSG_KSMach.h */, + 158F562EBC638DDC814F6070A24423D7 /* BSG_KSMach_Arm.c */, + 44B73E94CC09F67018EAD36DAE72D999 /* BSG_KSMach_Arm64.c */, + ABFEE1EC32DE79776E007287732E5698 /* BSG_KSMach_x86_32.c */, + 7307278DBE57A51CD085E513C3C64E1D /* BSG_KSMach_x86_64.c */, + E2BC113BD72124EA4EFE639E545A9FA7 /* BSG_KSMachApple.h */, + 95B6921F2E0D5D99F5CC1A7BC8746CB8 /* BSG_KSObjC.c */, + E122F8B915F5A0C02F11E96CB83F567B /* BSG_KSObjC.h */, + EAB200056DE1EAEA1022EF5448F1C300 /* BSG_KSObjCApple.h */, + B0B98A696251E4EF51DCEE25CDF2FB22 /* BSG_KSSignalInfo.c */, + D6D1FF00459282BB2FDCD94695E9A5C9 /* BSG_KSSignalInfo.h */, + 625333C80B2EAAB76B341DE8740C086C /* BSG_KSSingleton.h */, + 343B172F0660C823EE8078AA60242870 /* BSG_KSString.c */, + 1C30029B5D1961DB498768F7F5B3539B /* BSG_KSString.h */, + 328E43D019FF2742D785C617C3826662 /* BSG_KSSysCtl.c */, + 1F578ED8A1F9A83D7D64AC029D06366D /* BSG_KSSysCtl.h */, + B8B6AD8CAC97607C30EF72CAAAC0D0E3 /* BSG_RFC3339DateTool.h */, + A489C8A991980938256086593ABFAD32 /* BSG_RFC3339DateTool.m */, + 4D898441F49FDE4DD4697706429C466A /* NSError+BSG_SimpleConstructor.h */, + B346361ACF4080E6B4D9A5ADF5C59F3D /* NSError+BSG_SimpleConstructor.m */, + ); + name = Tools; + path = Tools; + sourceTree = ""; + }; + CEE564C610E84D7A95A0D41934CB273C /* Support Files */ = { + isa = PBXGroup; + children = ( + 52B0FB1E36AA72F83EB68413FD14370A /* ResourceBundle-QBImagePicker-RNImageCropPicker-Info.plist */, + 2671FA8596FC4724FB94806291A5C98A /* RNImageCropPicker.xcconfig */, + FFC48B878AD4545C44646AB56BD282C3 /* RNImageCropPicker-dummy.m */, + B413D55FD51104471FC2C4FDD468580D /* RNImageCropPicker-prefix.pch */, + ); + name = "Support Files"; + path = "../../ios/Pods/Target Support Files/RNImageCropPicker"; sourceTree = ""; }; CF1408CF629C7361332E53B88F7BD30C = { isa = PBXGroup; children = ( 9D940727FF8FB9C785EB98E56350EF41 /* Podfile */, - 3B8E3B8310A9761D97B036B664AB6642 /* Development Pods */, + CF77C19B281CD6DDED15118459563BE9 /* Development Pods */, D89477F20FB1DE18A04690586D7808C4 /* Frameworks */, 9160F20DFF7DC7F1CACEE969035ACE20 /* Pods */, - 0467E9D4903E106DE7556288C53A4B54 /* Products */, + EA3C131100967BDC7F9E2967AF93B4EC /* Products */, A5ADA69422B84A7580C82CAA5A9168D1 /* Targets Support Files */, ); sourceTree = ""; }; - D024DDCFD9ADDB8CCC418C8B52A03FED /* Support Files */ = { + CF1423445EB57749FA7E57160626314B /* Support Files */ = { isa = PBXGroup; children = ( - B7D1B79909003012A055C68887F1391E /* UMCameraInterface.xcconfig */, + 02EFE8D80FE7265F2A7983DF4324BDE5 /* react-native-appearance.xcconfig */, + DE431B97E37833EC7D1BC16F7A59326F /* react-native-appearance-dummy.m */, + C5351E6F9CEC551F47CEB516149B6942 /* react-native-appearance-prefix.pch */, ); name = "Support Files"; - path = "../../../ios/Pods/Target Support Files/UMCameraInterface"; + path = "../../ios/Pods/Target Support Files/react-native-appearance"; sourceTree = ""; }; - D07820F9EB8A59D04FB04118D35F629E /* UMBarCodeScannerInterface */ = { + CF77C19B281CD6DDED15118459563BE9 /* Development Pods */ = { isa = PBXGroup; children = ( - 798A174BEBFBCEDE4CCADAB3BEE72722 /* UMBarCodeScannerInterface.h */, - 533674A52F32C7F4ABFF2B1DFD95A254 /* UMBarCodeScannerProviderInterface.h */, - 6E6C6B7C31932F0725237A100FC9CFC2 /* Pod */, - AF84C111926104B9B81D1C08B48BBC7A /* Support Files */, + D3F8ED5F60E2B187F281E0AEC0BF0AEC /* BugsnagReactNative */, + 011B6E5FFAE4D120B13A8339628E61A0 /* EXAppLoaderProvider */, + D01E2A92FD3E44D5D84325A8922DB700 /* EXAV */, + DD087A1E745BA213134424AF6C5D398D /* EXConstants */, + 7FA54B6FF91B95611FAE005C2C179FE2 /* EXFileSystem */, + 8F409565538F0A5171A170D5C98E324F /* EXHaptics */, + BC57759B7AECDC25086DF4CA9CE25D46 /* EXKeepAwake */, + 22F5E3229FF241B0EEE4990DB6A9B4FD /* EXPermissions */, + 3369894A4431BE986BAC1FF1E2A58C10 /* EXWebBrowser */, + 1CB8D29BCB5F51FCA370C691C119A43A /* FBLazyVector */, + C096F5A1B3C9EEDB3750CB156E1F3D55 /* FBReactNativeSpec */, + 0CA2CF31901B8EC4195872D775F0D2DF /* KeyCommands */, + ED96B500ECA40B68C6B7D0DBAA5C0797 /* RCTRequired */, + C905470813674F65E67743D11CDE7B21 /* RCTTypeSafety */, + 9C71112CFA092338C76E88ECB651CEB6 /* React */, + 692265E3B5FFEF10A9B80BC5CC441064 /* React-Core */, + FAB897168EDC14E0216611BFF80DB86C /* React-CoreModules */, + 6E41D3FA57F678B5CF2B23EC5D929B74 /* React-cxxreact */, + 0041CF366E2D507B74A32A3A4EBA62D1 /* React-jsi */, + 2151C20C6311F4CE04E20D487067A97E /* React-jsiexecutor */, + FC60BC397B4A38524B5398954D24543B /* React-jsinspector */, + B86CA7611AE41BFB57D1EE46299C9A65 /* react-native-appearance */, + F961F8FFF7F99556F3C376C7AACE446A /* react-native-background-timer */, + 9027464E071351CDC07B7AC63938F504 /* react-native-cameraroll */, + F4B69C8D75B1347C0EDE91219C841E6B /* react-native-document-picker */, + ED6E97EF6ECB124621723D02F20BE108 /* react-native-jitsi-meet */, + 031D609AEF4A771E942D98DA0731ED92 /* react-native-keyboard-input */, + 84FFD85B4D0D6E2E945897DD62D4F072 /* react-native-keyboard-tracking-view */, + 7309AB961739035D0D93E7B2D636539F /* react-native-notifications */, + AD8AF2085A57CFCAC8275D67230A80E4 /* react-native-orientation-locker */, + 7BC41741053FC7FBD3C6803B8533E282 /* react-native-slider */, + 163F853125B01AD9520016DA75EE07FB /* react-native-webview */, + E12C6A3267471F1F911F51D1CAC7AC6F /* React-RCTActionSheet */, + 7893943962BD5D423BF2F0FA7058827B /* React-RCTAnimation */, + 68984D964FC07CAB0A0BEDD9DF8D67D1 /* React-RCTBlob */, + 38EE548F1F92912DC268DA0AFBD66D3E /* React-RCTImage */, + A5BB1153BE3A36E44D15C4347DE558B0 /* React-RCTLinking */, + 60007A0C39C3F399DD8B1BBBA494D8AC /* React-RCTNetwork */, + 8BFBED1BA8C4FDED2C237AE64889C3DC /* React-RCTSettings */, + 389517D3430D88AB692DE5B6C6139C0C /* React-RCTText */, + 605F25030AE52A409DB92791B322FDF9 /* React-RCTVibration */, + 0A6BD3C9856260FA74354F2F56B9423B /* ReactCommon */, + 1DAE238D6F059459F5D37B1120454A50 /* ReactNativeART */, + 1458150F395F35F31A0A64CBF73E9952 /* rn-extensions-share */, + 4B035280643B9E4771C8981DAE9C2166 /* rn-fetch-blob */, + 663DE72D7E9215B249E0C8ED06CED0EF /* RNAudio */, + EA5C9E1366F7872C686C24585ED251BC /* RNBootSplash */, + 47AFBC15116C721A415D77C25D6D6BE8 /* RNDateTimePicker */, + FF517E5BA2CDE07317551F389A06666A /* RNDeviceInfo */, + 4A91CC127CFB356AD0F442D777FCA9B2 /* RNFastImage */, + 54E97620CA9B622A7BCCAC925C5146E0 /* RNFirebase */, + B92DEB98DD09508CBC6E998144165465 /* RNGestureHandler */, + 59D71556507A95112144799327115A93 /* RNImageCropPicker */, + 15EEFDE7526576565A8D73DE40F6C79C /* RNLocalize */, + AF3AFB00C765FBEA8736D6436F331926 /* RNReanimated */, + 3E771404822C50D76A3F1D65A99950A4 /* RNRootView */, + 5164AA2C3DBB9EF23C028EB5F5E3CD4C /* RNScreens */, + E5D481190CBC8CD2161E1BBF8A34CEEB /* RNUserDefaults */, + F7C3CCDED21BC79FAB9999C5D7357018 /* RNVectorIcons */, + 79F6FF5D1B4FF7FE73449F96FC0BAEB1 /* UMBarCodeScannerInterface */, + 872459ABDAAD72C329FC1706C2291D00 /* UMCameraInterface */, + EE2452EFC650815587347721BC006E13 /* UMConstantsInterface */, + 2804C359F2B3A71A409FB4C51BFA8408 /* UMCore */, + 99A0835C32AF5775AB65340803DD4F48 /* UMFaceDetectorInterface */, + 32B003E72110A27E9782B4668772AF2E /* UMFileSystemInterface */, + 68F636331D3A22438BFB28F06C1BC417 /* UMFontInterface */, + E26814F8FEF6D03D505E8EEDCC2749A0 /* UMImageLoaderInterface */, + 5634E8681093F80F562DA8F9513E9A8E /* UMPermissionsInterface */, + F7F663D30A362D3C3FAACB03C39FC966 /* UMReactNativeAdapter */, + 3B823CBB21B5CED31FABC5AF18C0FB78 /* UMSensorsInterface */, + 47C36CCBC6F6817AACCC64A49C5BD52F /* UMTaskManagerInterface */, + B7F52215B52EC37D66BE6B2D3456A717 /* Yoga */, ); - name = UMBarCodeScannerInterface; - path = "../../node_modules/unimodules-barcode-scanner-interface/ios"; + name = "Development Pods"; + sourceTree = ""; + }; + D01E2A92FD3E44D5D84325A8922DB700 /* EXAV */ = { + isa = PBXGroup; + children = ( + C99CAF6908373D2AA383AFD70081BEEE /* EXAudioSessionManager.h */, + 0F1C297A0F73DDF5436BBCA26B8442AC /* EXAudioSessionManager.m */, + 0C2A9D413C80FCDF3EB55CA1716BD4E5 /* EXAV.h */, + B2E4F4CDECA5C51A7A1BB9752146FE6D /* EXAV.m */, + B595F90DB6439247AE7D4AD78CEDB249 /* EXAVObject.h */, + 5ACF58911FE63DD19FD16C8DFAFABC88 /* EXAVPlayerData.h */, + 9E58D9CA714675ECC7520AD8614504E1 /* EXAVPlayerData.m */, + 0C95A1F5DB83E0E52D64A8A2D9C1B513 /* Pod */, + 1EDA6A204F0803FEB51A4B026DB402FE /* Support Files */, + 47A7BFF21301506BD596DB9257454EFE /* Video */, + ); + name = EXAV; + path = "../../node_modules/expo-av/ios"; + sourceTree = ""; + }; + D0CC8308286443EC0A2ECDA1E9380D0B /* Pod */ = { + isa = PBXGroup; + children = ( + 1E35A0529B8C85486D5AC2121974CD45 /* UMImageLoaderInterface.podspec */, + ); + name = Pod; + sourceTree = ""; + }; + D16064228FB866B47AEC5E7A91793ED7 /* Pod */ = { + isa = PBXGroup; + children = ( + 846D7765D01BE164A295A8CA556D3AF9 /* README.md */, + 9C53F60F154B44CD7B7D8F3BDBE35516 /* RNRootView.podspec */, + ); + name = Pod; sourceTree = ""; }; D19DE6C0AE63B7A962E6D09484F125DB /* Reachability */ = { @@ -12172,55 +12071,59 @@ name = Reachability; sourceTree = ""; }; - D48CCB1AB00D0861285110C6E363F08E /* Support Files */ = { + D2688F48E29F7F56F60026E498F85A39 /* RCTSettingsHeaders */ = { isa = PBXGroup; children = ( - C00F22328D14F065FA9850E5D07BFA13 /* React-RCTBlob.xcconfig */, - 5AC8F2B86FD9669CCC8F075040C642CD /* React-RCTBlob-dummy.m */, - 1AC474F85069CA1640D99F940CA853D0 /* React-RCTBlob-prefix.pch */, + 98A4E931EB603C1D5C3BE5D6D5BAB84C /* RCTSettingsManager.h */, + ); + name = RCTSettingsHeaders; + sourceTree = ""; + }; + D2BD9522EC939BFB44EF457A40DE350D /* Pod */ = { + isa = PBXGroup; + children = ( + 74C7C7995009FC19E1BAABE1ADEDF07D /* LICENSE.md */, + 9852B50C5269E9DD077E852495902588 /* react-native-document-picker.podspec */, + 72F03E034D294C2CF30D399AB335A031 /* README.md */, + ); + name = Pod; + sourceTree = ""; + }; + D33FF43B6696D3616F648A39CF7674D4 /* UMViewManagerAdapter */ = { + isa = PBXGroup; + children = ( + 5B27647BCAB7E9E56AF1C1B7224AA22A /* UMViewManagerAdapter.h */, + C5212E4A5F592D1AC2FE95732DE152F1 /* UMViewManagerAdapter.m */, + ); + name = UMViewManagerAdapter; + path = UMReactNativeAdapter/UMViewManagerAdapter; + sourceTree = ""; + }; + D3F8ED5F60E2B187F281E0AEC0BF0AEC /* BugsnagReactNative */ = { + isa = PBXGroup; + children = ( + 773F03AC502D02B75772D11C2745FDC5 /* BugsnagReactNative.h */, + 9264962D918434D599141B849812E45B /* BugsnagReactNative.m */, + 7D2B0C97DBD5BBE0943FD078F7518AAB /* Core */, + B0EC556AA72CF08754E9A1DE821A4CCE /* Pod */, + 0EF067A6AEA5F0B058794B5E798E9C97 /* Support Files */, + C8CCDD793D63DBD831D6994C1A6CBDD2 /* vendor */, + ); + name = BugsnagReactNative; + path = "../../node_modules/bugsnag-react-native"; + sourceTree = ""; + }; + D482D315651F0278C54677B5AD6D565E /* Support Files */ = { + isa = PBXGroup; + children = ( + 3B7C37914C89D8E242AA293908C90A94 /* React-RCTBlob.xcconfig */, + 18E0A638F487F3A88013825A439B91D0 /* React-RCTBlob-dummy.m */, + BB82523CE0A8E7434C6A5440F254E204 /* React-RCTBlob-prefix.pch */, ); name = "Support Files"; path = "../../../../ios/Pods/Target Support Files/React-RCTBlob"; sourceTree = ""; }; - D4E63DB3782E2FFB6D1C16EF6C1CF77B /* admob */ = { - isa = PBXGroup; - children = ( - 37FFBD965979814BCBD0ABC597560358 /* BannerComponent.h */, - 2A4286B118C0A4F278E88C5D7372FF87 /* BannerComponent.m */, - EFFDB666E904439396EF4F7C7F90B397 /* NativeExpressComponent.h */, - F0545D9065FF930613431B950003896C /* NativeExpressComponent.m */, - D59EEE985E14494A1BDB3E0E21F79E05 /* RNFirebaseAdMob.h */, - 3659FB904660BFDA326C370058C63522 /* RNFirebaseAdMob.m */, - 98C1316FCB22EDA6317DCA981F721C04 /* RNFirebaseAdMobBannerManager.h */, - 57BB5857333B5A5C1BECBE34C6FA2C7B /* RNFirebaseAdMobBannerManager.m */, - 3386361BCF1253328BFC0FEE0AB8FC2B /* RNFirebaseAdMobInterstitial.h */, - E7F168C25561640F06C74537DDA821EF /* RNFirebaseAdMobInterstitial.m */, - E18CFF8A50FA62A91B20657462853C52 /* RNFirebaseAdMobNativeExpressManager.h */, - F46016DF4AF8D71E29B31E6FB0A02B2D /* RNFirebaseAdMobNativeExpressManager.m */, - 5137C30F03EB416AF5837B43D82A53DA /* RNFirebaseAdMobRewardedVideo.h */, - 12AFEB92B4444D9FDEBA96AC02F82E66 /* RNFirebaseAdMobRewardedVideo.m */, - ); - name = admob; - path = RNFirebase/admob; - sourceTree = ""; - }; - D5204386F21F6A1D5961BFC81393D35E /* RNReanimated */ = { - isa = PBXGroup; - children = ( - 65B41CF167FF6DCF3FEDAD73573AF2EE /* REAModule.h */, - 0BCE7BF2A3D165BDF17546EC20DB92AE /* REAModule.m */, - 1227A2435239622BC767BD3D73E2FB17 /* REANodesManager.h */, - BA4DF455B5B36AFA5445D5D08FE28E45 /* REANodesManager.m */, - 6C7EA90699CDCC92C4533420BFA27CAD /* Nodes */, - F4A871F812BF70CA3DEB362F47173166 /* Pod */, - 677A8D5680C320BADDA10014CF8402DB /* Support Files */, - BD1A9F7DD3CA77064723D3B0C3DAF17E /* Transitioning */, - ); - name = RNReanimated; - path = "../../node_modules/react-native-reanimated"; - sourceTree = ""; - }; D55310A3D7A33E73CB444A32C1FF022B /* boost-for-react-native */ = { isa = PBXGroup; children = ( @@ -12230,25 +12133,25 @@ path = "boost-for-react-native"; sourceTree = ""; }; - D57B794B29AAA4C4672E8E770FAD803B /* Support Files */ = { + D670BDEF6E2F3CF45F6FB41A8DF9B218 /* BaseText */ = { isa = PBXGroup; children = ( - CF9F15FD5960E55BD2D1A59F9F4F379C /* ReactNativeART.xcconfig */, - 63EAF27516C829F79D1EF78AD154BB37 /* ReactNativeART-dummy.m */, - 1B5DED35BFD48166AA47F9A19BDCB1A2 /* ReactNativeART-prefix.pch */, + 8246BE2CF1F863DE03327C201770AA97 /* RCTBaseTextShadowView.m */, + 43C2A33DA2CC4C747712007294B2198B /* RCTBaseTextViewManager.m */, ); - name = "Support Files"; - path = "../../../ios/Pods/Target Support Files/ReactNativeART"; + name = BaseText; + path = BaseText; sourceTree = ""; }; - D5CAE2B7C1AC953807F8B5A6751FA1E0 /* Pod */ = { + D67D5FCE34683250920416140C6250D4 /* Support Files */ = { isa = PBXGroup; children = ( - C1F334D25444866BB5C2B37591173B34 /* LICENSE */, - B2D7BF90C313DE7C73C7925F48AFE8DF /* react-native-appearance.podspec */, - F89C08AE3E9F60C786AA1AC556E2964C /* README.md */, + CBE8A3D3C11CB110388CDDBEC3FDAD2B /* react-native-cameraroll.xcconfig */, + 71BFB63846D90EC9F35997A234EA80E1 /* react-native-cameraroll-dummy.m */, + E8EFA14BBAB4FD0C8A55B5A3DB747BF3 /* react-native-cameraroll-prefix.pch */, ); - name = Pod; + name = "Support Files"; + path = "../../../ios/Pods/Target Support Files/react-native-cameraroll"; sourceTree = ""; }; D6F490C034FF3884052422C414FFF53A /* SDWebImage */ = { @@ -12261,26 +12164,14 @@ path = SDWebImage; sourceTree = ""; }; - D7A5EFE146F19CC7A04C5062998153E0 /* UMCameraInterface */ = { + D87317C6632F8B5F8211F133FACF77B8 /* Pod */ = { isa = PBXGroup; children = ( - CAD04E08245F96BB432821FCBEAD57B8 /* UMCameraInterface.h */, - 1AFE0C16CD67DDC00A29935F6B0F6A0E /* Pod */, - D024DDCFD9ADDB8CCC418C8B52A03FED /* Support Files */, + 3B1C66F45EEF55D24FA354EF02182F86 /* LICENSE */, + F3A7C91B10EA7922451F90D51A48A55D /* react-native-jitsi-meet.podspec */, + 06248AFAA54B8CE7BFFFE1EA6FA9E152 /* README.md */, ); - name = UMCameraInterface; - path = "../../node_modules/unimodules-camera-interface/ios"; - sourceTree = ""; - }; - D88F85C7BE0A6DACD139F9E95F0495A9 /* Support Files */ = { - isa = PBXGroup; - children = ( - 2EAF303A49C1930A526AA27B3D484A4D /* React-RCTNetwork.xcconfig */, - C804F5D566B2CBBA0333E924A4FD5386 /* React-RCTNetwork-dummy.m */, - 89D905FA644344704AF27B2A0C9AEEF9 /* React-RCTNetwork-prefix.pch */, - ); - name = "Support Files"; - path = "../../../../ios/Pods/Target Support Files/React-RCTNetwork"; + name = Pod; sourceTree = ""; }; D89477F20FB1DE18A04690586D7808C4 /* Frameworks */ = { @@ -12290,21 +12181,28 @@ name = Frameworks; sourceTree = ""; }; - DA7D5D245B62AC751772D1EAAA65E401 /* Support Files */ = { + D963CB2B3B7A80D2F9D9723DE9890D4D /* Pod */ = { isa = PBXGroup; children = ( - FE87F7446D77FCE118FD9535031AC421 /* React-jsi.xcconfig */, - A5F18E83AD7B95E2A2B5DE16AB228D3A /* React-jsi-dummy.m */, - 818E434C2169AD217DFDDF0A582869A2 /* React-jsi-prefix.pch */, + 02F089C12B3B670F8597FF9EDB6EE0EF /* LICENSE */, + 363F567F983EFF93ABD0E998D6CE055C /* README.md */, + F937CEE2C4F912A509CCE770FF61A806 /* RNScreens.podspec */, ); - name = "Support Files"; - path = "../../../../ios/Pods/Target Support Files/React-jsi"; + name = Pod; sourceTree = ""; }; - DAA5C731969A00F8B0F42DD4BF35E553 /* Pod */ = { + DA2924BEDFCA9D96340275529C3FB553 /* Pod */ = { isa = PBXGroup; children = ( - 293453996B788C70D633FA86055F6290 /* React-jsinspector.podspec */, + 773C4737DCF8345231C8970E43584802 /* EXKeepAwake.podspec */, + ); + name = Pod; + sourceTree = ""; + }; + DAD3BABBC2C354701412EA220567A961 /* Pod */ = { + isa = PBXGroup; + children = ( + FCE6DCB3CC931BC4D607C25ACD24B242 /* React.podspec */, ); name = Pod; sourceTree = ""; @@ -12317,37 +12215,65 @@ name = CoreOnly; sourceTree = ""; }; - DC4B1400BB7BD86E7E7B2D8BB9457AB6 /* Support Files */ = { + DB8A1002E95DA18230E19D932F691DE5 /* TextInput */ = { isa = PBXGroup; children = ( - F87BC579EA5CA2A5B6B6F5FF355208F1 /* RNRootView.xcconfig */, - AC8B79264BEAFFF8CAF35EEA50E38615 /* RNRootView-dummy.m */, - A643C3CC2044D5E317BC3FCF2DA65F85 /* RNRootView-prefix.pch */, + 4914796E64F630A6E2F7EC8093650BFE /* RCTBackedTextInputDelegate.h */, + 4B2638AE3C498C6F849896DFB3E9373D /* RCTBackedTextInputDelegateAdapter.h */, + 53A2AE7C23FC2740216BDCD227CBFA4E /* RCTBackedTextInputViewProtocol.h */, + 042F8046425845024B7B158054E637AC /* RCTBaseTextInputShadowView.h */, + 9F018843E2DC370532D916D1C32DFF36 /* RCTBaseTextInputView.h */, + 656BF0C11A2DDDA0C766C3761D7E88B7 /* RCTBaseTextInputViewManager.h */, + 8A8B6EA1E5AD764ECC191164749FC3D9 /* RCTInputAccessoryShadowView.h */, + 4E9E1910C00EB122C812A55E77E3CE8D /* RCTInputAccessoryView.h */, + 75E916C11B117641ADC4295D0929A1F3 /* RCTInputAccessoryViewContent.h */, + EED0D043C8985ED9108620BE8CD2C34C /* RCTInputAccessoryViewManager.h */, + E75D2BEE2A822BC31AE3602BAA2E95B5 /* RCTTextSelection.h */, + 9D4A1CFB863417C1560CBC14AB51CDBD /* Multiline */, + CACC23EFB3E258D0EFBE337DA010337F /* Singleline */, ); - name = "Support Files"; - path = "../../ios/Pods/Target Support Files/RNRootView"; + name = TextInput; + path = Libraries/Text/TextInput; sourceTree = ""; }; - DC6D11F1F15456FF3936BF3B54E2941C /* Multiline */ = { + DBA8EE08C4CE7B4447EBCB00B156166C /* Pod */ = { isa = PBXGroup; children = ( - 63D00D396E1DDAB0E268E279D996EAA1 /* RCTMultilineTextInputView.h */, - 402D285E9F45B171CBAC43E39897E804 /* RCTMultilineTextInputViewManager.h */, - F1675751654128D660F7174171BF4AA5 /* RCTUITextView.h */, + EDA10E80D75DC3F538CEF777F1A49B3B /* React-RCTImage.podspec */, ); - name = Multiline; - path = Multiline; + name = Pod; sourceTree = ""; }; - DC80A64456791F9C360BF21D01B048EC /* Support Files */ = { + DC673A379434D884098265E2B23090C6 /* Brushes */ = { isa = PBXGroup; children = ( - 077917B1D3903CB3C07616C204CE5396 /* React-RCTLinking.xcconfig */, - CECB83613519345964F31D322F7F18A9 /* React-RCTLinking-dummy.m */, - 9C7874D6708620C50D14C4410799AEFD /* React-RCTLinking-prefix.pch */, + 752BD0A5AB53CE88B7070B52814F58A9 /* ARTBrush.h */, + 9161A4E4D577B1906F2C9AE3CDC4AD37 /* ARTBrush.m */, + 9D8E2C2C622582DECC25843C7689124A /* ARTLinearGradient.h */, + 9FED12192B0942108CD3EC565594B9ED /* ARTLinearGradient.m */, + 7A162754FC5CA1F3447684BE99181C94 /* ARTPattern.h */, + 876C8D7091AA8A63FBB4DB53510FC72A /* ARTPattern.m */, + 51C377E66CEC117793ABD7B709341B91 /* ARTRadialGradient.h */, + 0623F5CE520BFB95831739B983C72876 /* ARTRadialGradient.m */, + 5B8B3E648A51A11C0B8B859ED10DCE1A /* ARTSolidColor.h */, + 29C15F0C9AAE37BA7318B35D4D917AFC /* ARTSolidColor.m */, ); - name = "Support Files"; - path = "../../../../ios/Pods/Target Support Files/React-RCTLinking"; + name = Brushes; + path = ios/Brushes; + sourceTree = ""; + }; + DD087A1E745BA213134424AF6C5D398D /* EXConstants */ = { + isa = PBXGroup; + children = ( + 7EBCF5304126BB498ED1BF731DEC4263 /* EXConstants.h */, + 1BDBD74AE31C2B29BEBFF92A6E24A65E /* EXConstants.m */, + FF5EE12DFAFEDE916B6E17165DB0CEBD /* EXConstantsService.h */, + 1DC0F40D3EC7137C9F56AE3B0EB2E4BD /* EXConstantsService.m */, + 7A264EEB778D93C70F783B482A5CB2D2 /* Pod */, + 09C78E45DD2DE14269159E424E18690B /* Support Files */, + ); + name = EXConstants; + path = "../../node_modules/expo-constants/ios"; sourceTree = ""; }; DD3EA029EC7383CA893EF3CB97B68F59 /* Pods-RocketChatRN */ = { @@ -12365,13 +12291,12 @@ path = "Target Support Files/Pods-RocketChatRN"; sourceTree = ""; }; - DD79D79E992CE0E81AE2CB4FF4F1AA2F /* Support Files */ = { + DDB23FDB2062711B29F631FA55F0593A /* Pod */ = { isa = PBXGroup; children = ( - 3D5B15F0426BA99C850F32275888F3A8 /* UMSensorsInterface.xcconfig */, + 5DAEB7AFD20524FE9695A7D2D1D535A9 /* FBReactNativeSpec.podspec */, ); - name = "Support Files"; - path = "../../../ios/Pods/Target Support Files/UMSensorsInterface"; + name = Pod; sourceTree = ""; }; DDCB62EC2967968D87E1AA9AE1D0355A /* Support Files */ = { @@ -12385,58 +12310,53 @@ path = "../Target Support Files/SDWebImage"; sourceTree = ""; }; - DEBA927A4DBBE6ED86E0E947A58BE43E /* Support Files */ = { + DE53E6B5C45B90CAB92AE2F0A125247B /* Services */ = { isa = PBXGroup; children = ( - F45A73E641BDE1BD18CFC8E867D5E10B /* RCTRequired.xcconfig */, + 63E02F31641BA64A05570A91167B7DFF /* UMReactFontManager.h */, + 90449CFD20AC9ECF90C0D33DF2D396CA /* UMReactFontManager.m */, + C345CBAC3B5E7DB8AFC906BBDAC2CBF0 /* UMReactLogHandler.h */, + F3F813412D9D5E175BB6FC37186DA34B /* UMReactLogHandler.m */, + B64158B9BBC03FE61CC62C98E97988A0 /* UMReactNativeAdapter.h */, + CA8C378488901E5D9DB369379F4D75B4 /* UMReactNativeAdapter.m */, + BCE46127F21C3989418839D395900BB1 /* UMReactNativeEventEmitter.h */, + 82E80EAD8DC94D17BFB56E68EA5F0676 /* UMReactNativeEventEmitter.m */, + ); + name = Services; + path = UMReactNativeAdapter/Services; + sourceTree = ""; + }; + DE9335ABBE9EC872EC4DD5F93AB14941 /* Support Files */ = { + isa = PBXGroup; + children = ( + CB554346B45BEA1433A35DAC20A6302D /* rn-extensions-share.xcconfig */, + DDD7D632A4B00C25C2E623FB991C7407 /* rn-extensions-share-dummy.m */, + 8287C3AE4898ABF0931C1FE37270421B /* rn-extensions-share-prefix.pch */, ); name = "Support Files"; - path = "../../../../ios/Pods/Target Support Files/RCTRequired"; + path = "../../ios/Pods/Target Support Files/rn-extensions-share"; sourceTree = ""; }; - DF52398502D456DDCD98DE184B56D10F /* Pod */ = { + DF8A7017C39ED478F2193906292A1348 /* Support Files */ = { isa = PBXGroup; children = ( - 000D1EE6AF522BF6084E80F1E613279E /* React-RCTBlob.podspec */, - ); - name = Pod; - sourceTree = ""; - }; - E00C892DDDDD795E68DEBDF5D75B62BD /* Proxy */ = { - isa = PBXGroup; - children = ( - F13C090843416CDD37AC9ACD3E2A329D /* SRProxyConnect.h */, - 617BC987A88508B41B4A29B28B77001B /* SRProxyConnect.m */, - ); - name = Proxy; - path = Proxy; - sourceTree = ""; - }; - E06A54860237C41B68FB169E537DCC4E /* Support Files */ = { - isa = PBXGroup; - children = ( - 7EF317EA9A04BCA70761C1DBF2C695B1 /* React-Core.xcconfig */, - 6124E4C51D9177A23B8FEE1F3BCBA0AB /* React-Core-dummy.m */, - D52A63F75807F3148470F4CD4B5DBC70 /* React-Core-prefix.pch */, + 4E7B41938C6CAE89D204F91EBF12C890 /* React-RCTSettings.xcconfig */, + 6D296FCDD2DBB71E85283EA9421D7052 /* React-RCTSettings-dummy.m */, + E6CDB01595D226A72FEA5027D3BADDB7 /* React-RCTSettings-prefix.pch */, ); name = "Support Files"; - path = "../../ios/Pods/Target Support Files/React-Core"; + path = "../../../../ios/Pods/Target Support Files/React-RCTSettings"; sourceTree = ""; }; - E100B897C3B164E2E940553E931EDBF6 /* LNInterpolation */ = { + E12C6A3267471F1F911F51D1CAC7AC6F /* React-RCTActionSheet */ = { isa = PBXGroup; children = ( - 5FCBECCE8C153134A71B63AA69A2029A /* Color+Interpolation.h */, - 16DD327792446E00B2FCA87EDB058042 /* Color+Interpolation.m */, - 4DCD054A86F1437985DF8B641BD91042 /* LNAnimator.h */, - 16F122EFC1B43D7DFD70217ECFE9F0B4 /* LNAnimator.m */, - 0988705FB2C65721AEF74736449A7A2B /* LNInterpolable.h */, - 90AF60B0F6683B65398FE51232962194 /* LNInterpolable.m */, - D4C71B8344FFCEFC6D32F754AFED7707 /* LNInterpolation.h */, - 812335310C7F9686CE3F564B7FA88E6F /* NSValue+Interpolation.h */, + 9F5DA438A0B5146F8AA8B653B1C9DE05 /* RCTActionSheetManager.m */, + 6081EE6755EC27992C1583907DB464F3 /* Pod */, + F0B8B963CA4EE15DBA010B75D79CA8B3 /* Support Files */, ); - name = LNInterpolation; - path = lib/ios/LNInterpolation; + name = "React-RCTActionSheet"; + path = "../../node_modules/react-native/Libraries/ActionSheetIOS"; sourceTree = ""; }; E16AA748B8479800EC9221A9DE4E360E /* Support Files */ = { @@ -12450,164 +12370,89 @@ path = "../Target Support Files/GoogleUtilities"; sourceTree = ""; }; - E1E5FDF77007B39BC42A45419E99B1EC /* RNVectorIcons */ = { + E26814F8FEF6D03D505E8EEDCC2749A0 /* UMImageLoaderInterface */ = { isa = PBXGroup; children = ( - 80089B9FD3693DFD1248F9C0449EC162 /* RNVectorIconsManager.h */, - 61E87445627B4C5F78DF1D88E468050C /* RNVectorIconsManager.m */, - 30394A8442923BE02C34230D90B8CA76 /* Pod */, - 067DEF7CA2F60DB31878809251A125CA /* Resources */, - 0A703E82B23E2D9CA00808ED678F6129 /* Support Files */, + 82792A209B9AF3CD82B0E4D90A8284B8 /* UMImageLoaderInterface.h */, + D0CC8308286443EC0A2ECDA1E9380D0B /* Pod */, + 9EF54FB8115C98286E233C02A2269F60 /* Support Files */, ); - name = RNVectorIcons; - path = "../../node_modules/react-native-vector-icons"; + name = UMImageLoaderInterface; + path = "../../node_modules/unimodules-image-loader-interface/ios"; sourceTree = ""; }; - E1FF334D3267351D8C527A09A547241C /* Support Files */ = { + E3FB41BF719BF7E3FBFEB9011F4108D1 /* Text */ = { isa = PBXGroup; children = ( - 177B20649747AEBF05DB3D10A1CB15B7 /* react-native-jitsi-meet.xcconfig */, - D2343C88DB7EFD216839F145E2680F52 /* react-native-jitsi-meet-dummy.m */, - 9C8EA2D9F970036EE5F61BE816166DBF /* react-native-jitsi-meet-prefix.pch */, + 3A8D32B9400E3291CDE2A19563EED735 /* NSTextStorage+FontScaling.m */, + 75555A22B90D962584B057CB428246BF /* RCTTextShadowView.m */, + 08E75F1EC103C1D76F0F2963A1A34459 /* RCTTextView.m */, + 57BEABE77D7E5A632DCA9DF7662E5BB6 /* RCTTextViewManager.m */, ); - name = "Support Files"; - path = "../../ios/Pods/Target Support Files/react-native-jitsi-meet"; + name = Text; + path = Text; sourceTree = ""; }; - E20DAFBFE7A16C34AE533994497E1F0D /* RNGestureHandler */ = { + E44ECBA01F1488F287A7D152AA710DB2 /* Pod */ = { isa = PBXGroup; children = ( - 4E1E7E53AA00DBF6A019D48CE87F06EA /* RNGestureHandler.h */, - 1FB6E330BF595D986F3D0623B760C94F /* RNGestureHandler.m */, - C256E2664723AD4002E40A3892EE439B /* RNGestureHandlerButton.h */, - EECD89054FF8B92031E88750AC9BF5B3 /* RNGestureHandlerButton.m */, - BA2347A832724E32FEB50A98EBF28C69 /* RNGestureHandlerDirection.h */, - 445111053B115FD7E770DE4180CE51A3 /* RNGestureHandlerEvents.h */, - 9844F24E14A23FC4D4193BCFDBE1D3EF /* RNGestureHandlerEvents.m */, - DD440291E24C6A32F4E323F06C4B62F7 /* RNGestureHandlerManager.h */, - 93783A9755F74D6B0279A1DC456F6FF9 /* RNGestureHandlerManager.m */, - DDC00BE7307F2C8A3E08D04DCD505136 /* RNGestureHandlerModule.h */, - 5A0249D5BF713C4646877B4DF25EDCEB /* RNGestureHandlerModule.m */, - EE2C369542B8B6F491AA1BFE1C5865D0 /* RNGestureHandlerRegistry.h */, - F6B6FD643CFD4E6D22C223E39F676CD5 /* RNGestureHandlerRegistry.m */, - D73E9F5256FAFC6F64368F34D6438D49 /* RNGestureHandlerState.h */, - 694FD9E92513288848243F87AB52D9A6 /* RNRootViewGestureRecognizer.h */, - EFFD1C1E446CA4D07FF398A6CDD1B7C3 /* RNRootViewGestureRecognizer.m */, - 85DAE119CEE8017AA8DDF07E6661ED5C /* Handlers */, - BED256A74D387AB2DF4222B8A6626445 /* Pod */, - 84D25AA43B8CDD6E12468636FCC35D5D /* Support Files */, - ); - name = RNGestureHandler; - path = "../../node_modules/react-native-gesture-handler"; - sourceTree = ""; - }; - E37C4370B7315DBF973929501E4DE372 /* Pod */ = { - isa = PBXGroup; - children = ( - 1DE553C7BC7B4430A86B1538FD50FA6D /* UMConstantsInterface.podspec */, + 0491756833ED7A5A5B6358687356636D /* React-jsinspector.podspec */, ); name = Pod; sourceTree = ""; }; - E3B764813ABD1DEBCE86A12320267C37 /* rn-fetch-blob */ = { + E57BEF503F6D6D4058A140BF0EAEEA84 /* UIUtils */ = { isa = PBXGroup; children = ( - 5C61352E8B56BA1D22F8AC723E7C510A /* IOS7Polyfill.h */, - 772F6B311F16BD718B2669568126CA43 /* RNFetchBlobConst.h */, - 7BF3632D791F4A5F714352EEA5B8D876 /* RNFetchBlobConst.m */, - C4C97EB33BAAD82406A582703949A3F7 /* RNFetchBlobFS.h */, - 093E6F234B317B935BCACAEDA5398B30 /* RNFetchBlobFS.m */, - 12861D83F34D4F2AF899BC41682F2AB2 /* RNFetchBlobNetwork.h */, - 959FE6EF0FD19BB30B1224F7C20003B8 /* RNFetchBlobNetwork.m */, - 43B496F8A354B24C48A31986B214345F /* RNFetchBlobProgress.h */, - 12B654D906725B5E6232AC9FA3EE2762 /* RNFetchBlobProgress.m */, - A731D7BD800AFFE50212974FAEF71DD9 /* RNFetchBlobReqBuilder.h */, - 86182666DE84512205B57EB10223FB24 /* RNFetchBlobReqBuilder.m */, - 590BC99D468B137EC35CDA917EBF0708 /* RNFetchBlobRequest.h */, - 8C7C1F3044E71AF9B64E733B5BFA47E7 /* RNFetchBlobRequest.m */, - FAE5E4C4A1F804B9D68BD2BE5812D99C /* Pod */, - A266CECAA579983DD2F6AA9CFC65CF47 /* RNFetchBlob */, - 542DA2AF4C73BF100F57FF77C952E696 /* Support Files */, + 652BE57AEB7940AE99C9158D45AC829B /* RCTUIUtils.h */, + F975DCABFFD0BA6A6A1A25438D6405F6 /* RCTUIUtils.m */, ); - name = "rn-fetch-blob"; - path = "../../node_modules/rn-fetch-blob"; + name = UIUtils; + path = React/UIUtils; sourceTree = ""; }; - E4499302A2BA270163DAFCDA0F3A46A6 /* Support Files */ = { + E5B13824FB5A4949BDDB2845BB272270 /* Support Files */ = { isa = PBXGroup; children = ( - 4FFEF2A042B8994E50F48637F199F48B /* react-native-keyboard-input.xcconfig */, - 084B3672643797BE497CAD11608075C3 /* react-native-keyboard-input-dummy.m */, - 5F97B05C028C8606E8431975E5B9B4E3 /* react-native-keyboard-input-prefix.pch */, + 84D516CE8D1A2B0D2D412A017EEC4464 /* react-native-keyboard-tracking-view.xcconfig */, + 69DBAD1F4358CBE1911C5CCDC4C91D9C /* react-native-keyboard-tracking-view-dummy.m */, + 954B6E7D061ACE40440D17E3F80885F6 /* react-native-keyboard-tracking-view-prefix.pch */, ); name = "Support Files"; - path = "../../ios/Pods/Target Support Files/react-native-keyboard-input"; + path = "../../ios/Pods/Target Support Files/react-native-keyboard-tracking-view"; sourceTree = ""; }; - E4E5ABFD7A1075FEBD58511A6508D97B /* Support Files */ = { + E5D481190CBC8CD2161E1BBF8A34CEEB /* RNUserDefaults */ = { isa = PBXGroup; children = ( - 93DCFAEDF7520474568C3D08B41D4B70 /* UMReactNativeAdapter.xcconfig */, - 058D84BCAA61F6630D0509EF179C31FD /* UMReactNativeAdapter-dummy.m */, - 2D25B416996629B1B6EA7BB84C2A4FD5 /* UMReactNativeAdapter-prefix.pch */, + 373838D62F21752766117049326DD9A8 /* RNUserDefaults.h */, + 7A3DF1388CCFE08E5E3B3581FE47323C /* RNUserDefaults.m */, + A0FFC964CBCD9375B074A52108D79429 /* Pod */, + 28F20382130A3F9D24849491B76A1399 /* Support Files */, ); - name = "Support Files"; - path = "../../../../ios/Pods/Target Support Files/UMReactNativeAdapter"; + name = RNUserDefaults; + path = "../../node_modules/rn-user-defaults"; sourceTree = ""; }; - E54E1206FDAD0776884A330C004E9D4D /* KeyCommands */ = { + E72FAA0E838113FC576A55B705A4022A /* Pod */ = { isa = PBXGroup; children = ( - B5E6032FEAC635340844207134541077 /* RCTKeyCommandConstants.h */, - 5404E1BB112AB1AD2E66596014FB52E7 /* RCTKeyCommandConstants.m */, - 5A9A27F54134F1A5DB297C535B527E2E /* RCTKeyCommandsManager.h */, - 785DDA99E0152C2C12DBC98A5280D09B /* RCTKeyCommandsManager.m */, - FAD0B7CF2BC29D51D2913C70835A229E /* Pod */, - A380D1655982BC12351D2582FBF47092 /* Support Files */, - ); - name = KeyCommands; - path = "../../node_modules/react-native-keycommands"; - sourceTree = ""; - }; - E5CB174EBBCDD0E3F0A48C71E7F60EE0 /* Support Files */ = { - isa = PBXGroup; - children = ( - 5ECBF7B20C1C9FF645678F85CFD5F4BE /* FBReactNativeSpec.xcconfig */, - CE6CA023CC9E78434E79E308BBF2CFD5 /* FBReactNativeSpec-dummy.m */, - A85C0A3454094BB98E5B9B15030C4AE2 /* FBReactNativeSpec-prefix.pch */, - ); - name = "Support Files"; - path = "../../../../ios/Pods/Target Support Files/FBReactNativeSpec"; - sourceTree = ""; - }; - E5F2E6986532B0181C72F48E3753A9A4 /* Pod */ = { - isa = PBXGroup; - children = ( - ABF0C932DEF8909B6ECFB16147F5E2EE /* RCTRequired.podspec */, + 0F1EAFD9D9BF3E2258F2B5D3E4FB0EAF /* LICENSE */, + 27BC6A0DCE103E2BEDD6175E79ACC77D /* README.md */, + 529809D206CC06EBA7EF646831069BB4 /* rn-fetch-blob.podspec */, ); name = Pod; sourceTree = ""; }; - E68BCF80D42D7A14E844E1AD0F7F7038 /* rn-extensions-share */ = { + E7DBD9CBF4E85D5EEFC9B6A0C9E10C02 /* Support Files */ = { isa = PBXGroup; children = ( - 69D48149BD7E426D4552A4467DA18E7F /* ReactNativeShareExtension.h */, - DC4D661EDA49D5AAE00EBD5945C9B927 /* ReactNativeShareExtension.m */, - 3E53E61BF9CA6766D93810B52513883B /* Pod */, - 8F6829245E2DAD049B8300A76FE7EFE0 /* Support Files */, + D50D6B679FC38A0B85069A2DF33BFAB1 /* RNLocalize.xcconfig */, + 64E12C3096FAC70863A1A19A220C0A5F /* RNLocalize-dummy.m */, + 73C308790036FB49D5ADCBBC8E8C973C /* RNLocalize-prefix.pch */, ); - name = "rn-extensions-share"; - path = "../../node_modules/rn-extensions-share"; - sourceTree = ""; - }; - E76472B0D745495BEC6D0B8C9EEE9109 /* BaseText */ = { - isa = PBXGroup; - children = ( - F01EACB61AD2CAF89F50D7F08FF6DA17 /* RCTBaseTextShadowView.m */, - F64C9572C53A98CF5C52103A9001C290 /* RCTBaseTextViewManager.m */, - ); - name = BaseText; - path = BaseText; + name = "Support Files"; + path = "../../ios/Pods/Target Support Files/RNLocalize"; sourceTree = ""; }; E8B6A85956573B9F30CD1427074D8E31 /* mux */ = { @@ -12624,277 +12469,269 @@ name = mux; sourceTree = ""; }; - E8E048F1CBEE32784C4FEC6BA67D1B1F /* VirtualText */ = { + E8E7CB8DE4CA0C5102A11CBB74366652 /* Pod */ = { isa = PBXGroup; children = ( - F4A30F180984D8AC5055F3ED4A3C9B20 /* RCTVirtualTextShadowView.h */, - 30BA22A2D2F4FAFF76942172910C1E45 /* RCTVirtualTextViewManager.h */, - ); - name = VirtualText; - path = Libraries/Text/VirtualText; - sourceTree = ""; - }; - E9CCBDF083449AB22C43DADEC8B25A9E /* Pod */ = { - isa = PBXGroup; - children = ( - 2EF9ECF63D5D2FCB6E536A7D85E8BC04 /* React-Core.podspec */, + B885A84BF1B79007E652005E923B21B2 /* React-Core.podspec */, ); name = Pod; sourceTree = ""; }; - EAEE8735FE4481247AC3C7B8924BF130 /* Pod */ = { + E9B4345374ED65D9D98B2648CC69C83B /* Resources */ = { isa = PBXGroup; children = ( - 3CABEB31333183206F44D7B44F9521ED /* React-jsi.podspec */, + 2617AF47F3E94033E3755B4EFFF22D5E /* AntDesign.ttf */, + 46BAF87F1B656C184D7E9A83E1511FF9 /* Entypo.ttf */, + 5D6B7C40686D239FE69F6420F1BA90E3 /* EvilIcons.ttf */, + 5A0A6C1586C666190D9BB40ECFF3C50F /* Feather.ttf */, + 7A90C571E8724574D71484C0877FFDC1 /* FontAwesome.ttf */, + 0766E85126F49BB645BDB3C0CE05B4EF /* FontAwesome5_Brands.ttf */, + 4B65E2F6E7BEC6C45ED76B879F168832 /* FontAwesome5_Regular.ttf */, + D3480B0E19980EC835584D10A01FFD2D /* FontAwesome5_Solid.ttf */, + 476409B12C5A51E11C7895FCDDE361A7 /* Fontisto.ttf */, + 1097A5B451F9E63CC3C2F2455BA500D7 /* Foundation.ttf */, + AF7310E172DAEB5E0D0F1E93C36ABC3C /* Ionicons.ttf */, + F01E2898423DF6E7D733820FD09F8BFE /* MaterialCommunityIcons.ttf */, + 82E223E2EC34137B964DFA17E046F88E /* MaterialIcons.ttf */, + 59B7F70D11E021F08A31998EE1A86179 /* Octicons.ttf */, + 20F07523138EDB707EEA15859A780DF0 /* SimpleLineIcons.ttf */, + F7FA5E401ABCC1F3D111FB35DF032F48 /* Zocial.ttf */, + ); + name = Resources; + sourceTree = ""; + }; + EA3C131100967BDC7F9E2967AF93B4EC /* Products */ = { + isa = PBXGroup; + children = ( + 3EEAA606F6866DA20E6601B9655B1027 /* libBugsnagReactNative.a */, + 6FFB7B2992BB53405E6B771A5BA1E97D /* libDoubleConversion.a */, + A225ED83E33DC48D25B9FF35BA50CCD0 /* libEXAppLoaderProvider.a */, + AD40A94AE1ADFA1CDF9602BA3B04C90E /* libEXAV.a */, + 220361FF3B2778F8F38C2C4DCC5B49FD /* libEXConstants.a */, + ED1E3FC0DC90F4A787472917BFB6B235 /* libEXFileSystem.a */, + 80A51B61FECFED8D1A0D95AAD32A2938 /* libEXHaptics.a */, + 09B5856105EF7C6447B9EC57E7E36B34 /* libEXKeepAwake.a */, + 72E494917AC5EC2582197F07061A28B0 /* libEXPermissions.a */, + 574E8A849B86DCF8EE5726418D974721 /* libEXWebBrowser.a */, + ABFEEA82A6C346B22843FBE0B0582182 /* libFBReactNativeSpec.a */, + E2B63D462DB7F827C4B11FD51E4F8E2D /* libFirebaseCore.a */, + 8CC9178C366942FD6FF6A115604EAD58 /* libFirebaseCoreDiagnostics.a */, + 13C8C8B254851998F9289F71229B28A2 /* libFirebaseInstallations.a */, + 2DA0D814DFCB860D31D7BCD63D795858 /* libFirebaseInstanceID.a */, + 06489499588BFA8FD5E63DD6375CD533 /* libFolly.a */, + 3CA7A9404CCDD6BA22C97F8348CE3209 /* libglog.a */, + 856B5CD56F194FAD26EA91620B66D614 /* libGoogleDataTransport.a */, + 6942351307BC1F54575D9853307EAE0E /* libGoogleDataTransportCCTSupport.a */, + B43874C6CBB50E7134FBEC24BABFE14F /* libGoogleUtilities.a */, + 279390C893577F74DD2049383E1EDD1A /* libKeyCommands.a */, + 5E4674603A5D5B9215FFA0F8E69F8B71 /* liblibwebp.a */, + 06FC5C9CF96D60C50FCD47D339C91951 /* libnanopb.a */, + 586602EDE69E2D273945D156ECB89853 /* libPods-RocketChatRN.a */, + ABCA9F4CD6EE0D4686EBA505F526A436 /* libPods-ShareRocketChatRN.a */, + 3347A1AB6546F0A3977529B8F199DC41 /* libPromisesObjC.a */, + F958876A082BF810B342435CE3FB5AF6 /* libRCTTypeSafety.a */, + BD71E2539823621820F84384064C253A /* libReact-Core.a */, + 6771D231F4C8C5976470A369C474B32E /* libReact-CoreModules.a */, + 37592FDAD45752511010F4B06AC57355 /* libReact-cxxreact.a */, + D9F334F2E90E3EE462FC4192AF5C03BD /* libReact-jsi.a */, + F2E7C88DFCD460A4B46B913ADEB8A641 /* libReact-jsiexecutor.a */, + 2577F299FCB0A19824FE989BE77B8E8F /* libReact-jsinspector.a */, + 242758B9EDFF146ABE411909CAC8F130 /* libreact-native-appearance.a */, + B75A261FE3CE62D5A559B997074E70FC /* libreact-native-background-timer.a */, + 8C3E2A6E6F93E60E397F6C0BBA710BF5 /* libreact-native-cameraroll.a */, + 08D1FFC2980C1ED72AE9A4C44A0544C3 /* libreact-native-document-picker.a */, + 8074129DF318155B29544548E1CAF4A3 /* libreact-native-jitsi-meet.a */, + 5CA8F1A20B87DBB263F925DD7FE29947 /* libreact-native-keyboard-input.a */, + 686FA236B3A0EDC2B7D10C6CB83450C8 /* libreact-native-keyboard-tracking-view.a */, + 012242E4480B29DF1D5791EC61C27FEE /* libreact-native-notifications.a */, + 48425DA2F01D82A20786D5E55E264A29 /* libreact-native-orientation-locker.a */, + 2B17A71888AA28CEFEC37B72F2A68A91 /* libreact-native-slider.a */, + 8DF63376066E2275FF26820B3A512A9B /* libreact-native-webview.a */, + 73F8A95B79671F501F31EA4F1D04AA8B /* libReact-RCTActionSheet.a */, + FE7B9294FF05AAFD1653E2104E10844A /* libReact-RCTAnimation.a */, + F71EBF73F354B475D465FF6DE9A66707 /* libReact-RCTBlob.a */, + EEDBF403E8E0B3885E65C2741B536BC5 /* libReact-RCTImage.a */, + 802121F5B756ACBFDD6D08C36246DADD /* libReact-RCTLinking.a */, + A68E5A9B69A3BA0FD52CAF7A354EC93B /* libReact-RCTNetwork.a */, + 269BE773C9482484B70949A40F4EA525 /* libReact-RCTSettings.a */, + E6A16705C69FC7DE11C2469A4A0F8358 /* libReact-RCTText.a */, + C1A919103EAC9813D236486C34FC0A21 /* libReact-RCTVibration.a */, + D5C775614AC76D44CECB6BE08B022F1F /* libReactCommon.a */, + 51B50F20C76CF72E2BEF8D4764235306 /* libReactNativeART.a */, + 858AFA83985937825473045CF6808B15 /* librn-extensions-share.a */, + 4FDA96879D96070EB1983E98E655CBDC /* librn-fetch-blob.a */, + 3B65CB9B6DCD893501BDCF1DE7BA926C /* libRNAudio.a */, + 202722AA0D229A11350F6DC0F267A0BA /* libRNBootSplash.a */, + 72DE4BF3FB9CE0858E90F96FEF8A53AE /* libRNDateTimePicker.a */, + E0FE6533198104C97DB047DD5CD8AC67 /* libRNDeviceInfo.a */, + E55EA3C6F285F6FA8067C5C8A428FA64 /* libRNFastImage.a */, + 4EAF7225D8D498E7D232AE1520E6CBD3 /* libRNFirebase.a */, + 8F65F9361F2069CF9E9D751272968DE4 /* libRNGestureHandler.a */, + 3AEA4A114C08533A2C0F8E039A4C5EB9 /* libRNImageCropPicker.a */, + 15912309AA610251329D74FA111DE5CA /* libRNLocalize.a */, + C777CF2FB1E39A45CBBDB54E8693F471 /* libRNReanimated.a */, + E496A53A92B4E464B5C30DC5B1E4E257 /* libRNRootView.a */, + 50B5347C9A6E93B7D4CFC3673BA6FB7E /* libRNScreens.a */, + BFCE4058442BFB8DEB89BA3F261A76BA /* libRNUserDefaults.a */, + 8998273719FDD789E6F9C7541AFD0B33 /* libRNVectorIcons.a */, + 580712ADE0DDE9601ED35B000EC802D6 /* libRSKImageCropper.a */, + B0B214D775196BA7CA8E17E53048A493 /* libSDWebImage.a */, + FCF61D9B2B75054A9A3185DDC609B7FF /* libSDWebImageWebPCoder.a */, + AF72FD600DE7E2D330BA50F877993E05 /* libUMCore.a */, + 3B640835BAA914DD267B5E780D8CFEC7 /* libUMReactNativeAdapter.a */, + 65D0A19C165FA1126B1360680FE6DB12 /* libYoga.a */, + 3DCCC9C42EB3E07CFD81800EC8A2515D /* QBImagePicker.bundle */, + ); + name = Products; + sourceTree = ""; + }; + EA5C9E1366F7872C686C24585ED251BC /* RNBootSplash */ = { + isa = PBXGroup; + children = ( + 330966B3711E07FB73BDF539582957A3 /* RNBootSplash.h */, + 1A22417369B201D083B5C56FD0131E12 /* RNBootSplash.m */, + 7D3E3C443E333CF5F4E8C0A3272BB23E /* Pod */, + 0FECB755C23003677B90A8568401F563 /* Support Files */, + ); + name = RNBootSplash; + path = "../../node_modules/react-native-bootsplash"; + sourceTree = ""; + }; + ED6E97EF6ECB124621723D02F20BE108 /* react-native-jitsi-meet */ = { + isa = PBXGroup; + children = ( + B24F3AEDF693897FF98C79C14EC875D5 /* RNJitsiMeetView.h */, + E1818C9F66275E9185FC781EDBC356D6 /* RNJitsiMeetView.m */, + 445803957C1CAB12D47CFBBA58447056 /* RNJitsiMeetViewManager.h */, + 0A89C6896D4F08E8248CFC2F9506CBDD /* RNJitsiMeetViewManager.m */, + D87317C6632F8B5F8211F133FACF77B8 /* Pod */, + 3F8AFBE5C7B6593ABCCCF85C3591EFD2 /* Support Files */, + ); + name = "react-native-jitsi-meet"; + path = "../../node_modules/react-native-jitsi-meet"; + sourceTree = ""; + }; + ED78AEF1AA32F48F5783E608B1DE45F9 /* Pod */ = { + isa = PBXGroup; + children = ( + EC4143E4BC127C78E4225AC123B9BC2A /* UMCore.podspec */, ); name = Pod; sourceTree = ""; }; - EB02FDD744F289342F41B6F1492403F7 /* Singleline */ = { + ED96B500ECA40B68C6B7D0DBAA5C0797 /* RCTRequired */ = { isa = PBXGroup; children = ( - C8B94668C2766AEEB3B887E70C7A39ED /* RCTSinglelineTextInputView.h */, - 39FCB92FEFA582E1264D20B8974C25D7 /* RCTSinglelineTextInputViewManager.h */, - F7140A66BCEA0E2374D90337A4DAD6B1 /* RCTUITextField.h */, + 3019868D5639647EF28AF7FD7FFB8551 /* RCTRequired.h */, + 0A63D52BC0C61DC2BE1D8F03265B5446 /* Pod */, + 0B0622395864D6F3809BD4ADA33F75AB /* Support Files */, ); - name = Singleline; - path = Singleline; + name = RCTRequired; + path = "../../node_modules/react-native/Libraries/RCTRequired"; sourceTree = ""; }; - EB09648639C62D24CD03AE79FAB0992D /* SocketRocket */ = { + EE2452EFC650815587347721BC006E13 /* UMConstantsInterface */ = { isa = PBXGroup; children = ( - FF7AD6A205354D1D4B3820E531CF8FF7 /* NSRunLoop+SRWebSocket.h */, - 67EA32B6DADAEC348B9E350D1AEC56DB /* NSRunLoop+SRWebSocket.m */, - A7C060C8CB3CFCACD29DBD22252B3D73 /* NSURLRequest+SRWebSocket.h */, - 311469F132A4E4FCE7A2BF8C5C518FA8 /* NSURLRequest+SRWebSocket.m */, - 56E7BF46F866F04E47CAF898C2DFCB9C /* SocketRocket.h */, - 3BEAB31533E97E2BAC87330EA35D04DA /* SRSecurityPolicy.h */, - B7EFC596C03B6ED88161E433283CCC12 /* SRSecurityPolicy.m */, - 9852E028331B964DD6FA5438D714650C /* SRWebSocket.h */, - 222E8B3C272CDC1AC42C40A5AFDB24C4 /* SRWebSocket.m */, - 3FCCB5A1F0FC1CC1FE66170869C28098 /* Internal */, - 14392E3387BDD792B61207058704762F /* Pod */, - 7D31A9296C30C397C409E78CFAE80272 /* Support Files */, + 6C1428EB227F10BE3CB287FD00E83FD5 /* UMConstantsInterface.h */, + EEE03C551BDD460FBC2D61B1D02FD96D /* Pod */, + 1F6AA7E826C0341573A860F34856BCCF /* Support Files */, ); - name = SocketRocket; - path = ../../node_modules/detox/ios_src/SocketRocket; + name = UMConstantsInterface; + path = "../../node_modules/unimodules-constants-interface/ios"; sourceTree = ""; }; - EB45C0A36B3A34F325C009301FCC1CFF /* Pod */ = { + EEE03C551BDD460FBC2D61B1D02FD96D /* Pod */ = { isa = PBXGroup; children = ( - 534E598D280AE46AEED481FC0D7094A5 /* react-native-keyboard-tracking-view.podspec */, + B0A4DC3C36195417A86F9EA7EC209E25 /* UMConstantsInterface.podspec */, ); name = Pod; sourceTree = ""; }; - EE4D1E5430CCCCB0BDFA7286CFDB10AE /* Pod */ = { + EF28B30C632EABC048274B5F9A1D9A69 /* Support Files */ = { isa = PBXGroup; children = ( - F291ACAABE82CC1AC217EADA7A1EFDDF /* RCTTypeSafety.podspec */, - ); - name = Pod; - sourceTree = ""; - }; - EEDA288E30CD4D92182E34D7630D2AFB /* EXFileSystem */ = { - isa = PBXGroup; - children = ( - EF10823405FF27A7C92DCDE82B8353A4 /* EXDownloadDelegate.h */, - 7A9ED89D8D773020586E954726458DC3 /* EXDownloadDelegate.m */, - 354A9BE84DB39B99B7E5602F4ECDB776 /* EXFilePermissionModule.h */, - 82D1F08709A71593209C4D6E2EF80918 /* EXFilePermissionModule.m */, - 9D8CE8D79AD7CD91A6019AF9DB1A1495 /* EXFileSystem.h */, - A8961D4F92001ADD417D49A3AF4DC252 /* EXFileSystem.m */, - 37A99D280F571F59625B44925CDC9211 /* EXFileSystemAssetLibraryHandler.h */, - 24BC7983C5C77662F1B1E1ECB47E0261 /* EXFileSystemAssetLibraryHandler.m */, - DB7B7DED5BC12B45C227911BACA693AD /* EXFileSystemLocalFileHandler.h */, - C00F34ABBF4138E80C776A8D4EBAB47F /* EXFileSystemLocalFileHandler.m */, - 2F922BAF3D4A574D27A4D9E130CEA65F /* Pod */, - 9641CDCBB8961773310B27413994104C /* Support Files */, - ); - name = EXFileSystem; - path = "../../node_modules/expo-file-system/ios"; - sourceTree = ""; - }; - EF0BC61DAB9F1CC9F9B1530BE0CBF5C1 /* SurfaceHostingView */ = { - isa = PBXGroup; - children = ( - 6AA7C13C0FC11542577D8E0982809738 /* RCTSurfaceHostingProxyRootView.h */, - 4949477EDE0B58D8E10B1D1E56C035BC /* RCTSurfaceHostingProxyRootView.mm */, - F86A8838F13F8946E284661B2EB8E5A1 /* RCTSurfaceHostingView.h */, - F2280EC094C3D1BB3D518D72F737B8D9 /* RCTSurfaceHostingView.mm */, - DC26A9C488BB8A6A184B6388AFB81552 /* RCTSurfaceSizeMeasureMode.h */, - 4687FB5E5B9A9C75426247410B9CE5A4 /* RCTSurfaceSizeMeasureMode.mm */, - ); - name = SurfaceHostingView; - path = SurfaceHostingView; - sourceTree = ""; - }; - EF945DBC7C44F31C01F5FE9AE804302B /* Yoga */ = { - isa = PBXGroup; - children = ( - 2B57AE722B7D0ACB1489C007CBC791C4 /* Bitfield.h */, - 7CA46703A00BA4A9EF0DD355AEF5DD90 /* CompactValue.h */, - 9498A7B70892C9D9BD847BC0A62FFC19 /* log.cpp */, - A337EC126CBDE81BFB5B1489BD2C0646 /* log.h */, - 4ECEC10A3DC3CDCA5B92F4E88D2416F4 /* Utils.cpp */, - A8A7770A070C393FBFF98FEC154A152E /* Utils.h */, - E07638896351CBE331FFEDB245FB7647 /* YGConfig.cpp */, - 6DB473DE49C64A907CF7780073D75D5C /* YGConfig.h */, - 38BC8B60FD8088AEA1252FFD7701D678 /* YGEnums.cpp */, - F9FC30BA0F6F380628A8C1D348539FCD /* YGEnums.h */, - C97D7BB8E6D81FF9EA727CE67095F11D /* YGFloatOptional.h */, - 6C7AD7AA57B41A571BB9B7279D8BC0C7 /* YGLayout.cpp */, - 20A869A3834D59EFE78BCB05AF9E7C29 /* YGLayout.h */, - D82E58C035AE88E8480F07CC8AEAEEF1 /* YGMacros.h */, - 540F853F7561FDFE3EE67E3312865FD5 /* YGNode.cpp */, - EEA0A206B0128EAE08558F7DCDB1AC85 /* YGNode.h */, - D3B448C982D7EBD948B4234A6E44C763 /* YGNodePrint.cpp */, - F6FE3146B3E310E68DDB82B95E27D28F /* YGNodePrint.h */, - 9A06BAE3BDFDC52A4DCD355E7C178A53 /* YGStyle.cpp */, - 01C7D09FC34435AADB05B98A7299757D /* YGStyle.h */, - 8257A2AAD95D3DA2B906646CB70FC9E5 /* YGValue.cpp */, - CF6DD5E7D0621F9E885AF5BBF5C4AB43 /* YGValue.h */, - 556A19703E8622926CDBB14F212EA6AA /* Yoga.cpp */, - 7110E2F65494A326F44479E0E02B9EA6 /* Yoga.h */, - A2B875E2EB4BD61AC13118FFD9A943D5 /* Yoga-internal.h */, - F986F5B7C8195AA4F735E89D40BA1473 /* event */, - 5289C2758001FDF2380175F8DB16648B /* internal */, - FE2325CBEFBA017B09C4A857A1DFCFEE /* Pod */, - 71121F16014A43EA9D978D860E9450AC /* Support Files */, - ); - name = Yoga; - path = "../../node_modules/react-native/ReactCommon/yoga"; - sourceTree = ""; - }; - EFEE66879AE6B44AD8C608BCED8A2BA5 /* Views */ = { - isa = PBXGroup; - children = ( - AA725589A71618077853D75819628D5A /* RCTActivityIndicatorView.h */, - E3A39234BB93357507F4239CCC4F5737 /* RCTActivityIndicatorView.m */, - F9F2C789EF9C7BECA5CF70F65FEB2FD8 /* RCTActivityIndicatorViewManager.h */, - 8DD1027A6B8EDA7C9D7BDB4F481DC280 /* RCTActivityIndicatorViewManager.m */, - 3C3813F10C00C6606FEA8943AF75045E /* RCTAnimationType.h */, - 78275978BD2BABAC8C587CE4FAB3E31E /* RCTAutoInsetsProtocol.h */, - C6E7AEA26FF5A4C5C52F488D021F6CB1 /* RCTBorderDrawing.h */, - 575B7072D0BC2FCD47EE0DDBC9A18796 /* RCTBorderDrawing.m */, - E2ABE02A530914E3F0722FAAA0A7AF7D /* RCTBorderStyle.h */, - F096D09F19E86E6A0EE21999B3DE82C6 /* RCTComponent.h */, - 77D1EFFC13571D9E286934ED8C679C69 /* RCTComponentData.h */, - 3C8D153CA2E140138F6C5CC994BFCB17 /* RCTComponentData.m */, - FCEDE834382246446F485AB070F9B9CB /* RCTConvert+CoreLocation.h */, - F8E555558800C5B1844648D07AAE2A72 /* RCTConvert+CoreLocation.m */, - FC787765505DB033B1A703A169EA30DB /* RCTConvert+Transform.h */, - 3E9C901B01228322B8B094E3E52AE7EF /* RCTConvert+Transform.m */, - 9564001A129DE20B1126AA1C8B62BDA8 /* RCTDatePicker.h */, - D9978EFD225317CD8079BD001D10843B /* RCTDatePicker.m */, - 22316581D00EF39F8C035146857EE459 /* RCTDatePickerManager.h */, - E2716AB3377FB4251AFC0731479663FB /* RCTDatePickerManager.m */, - 7061F23193E7B4E0C91B0D98949730ED /* RCTFont.h */, - 9AF4A45F8B7BBB13BDF8B609AFF309DC /* RCTFont.mm */, - B38A182AC24D99272525C56833F805E0 /* RCTLayout.h */, - CADD613CA408969380D9E7AB864DB134 /* RCTLayout.m */, - 7B85F7D90C71261D80F72379FBA1F2A0 /* RCTMaskedView.h */, - 9F0BE9354B21DB8B50783D86FACC9768 /* RCTMaskedView.m */, - D51EE29F11A5F83DABF1D865890EBC0F /* RCTMaskedViewManager.h */, - C0B98FF58C3CA160B626311D16BFD673 /* RCTMaskedViewManager.m */, - 49ED2B1FA5F6D32683D4F13B8BE58004 /* RCTModalHostView.h */, - 88E180936C1EF9C11A746618CD130AE8 /* RCTModalHostView.m */, - 201DFBC98BC09F90B42FAFD3AACA725C /* RCTModalHostViewController.h */, - C1B895501B807DB5044A955FE28FD5F4 /* RCTModalHostViewController.m */, - 81F5EC703D7AA5A043BFC5A89F77E5DC /* RCTModalHostViewManager.h */, - D5210DBD5CEE5BD5EF9DFA8AF49492EC /* RCTModalHostViewManager.m */, - 423F8EF8FFDCF87B4F6AD491C47B7CE8 /* RCTModalManager.h */, - 82AC5601A7CC44065D1DAA3A7C61CB60 /* RCTModalManager.m */, - 4E7FA7C3ED395718A44170C8755F17FB /* RCTPicker.h */, - 4633365250C40A30F42C01736FDC7B6E /* RCTPicker.m */, - 9C85407951B41F33062F9DFCC058306C /* RCTPickerManager.h */, - 284296C3D41B4831607BAE923581DF35 /* RCTPickerManager.m */, - 6951354FB7E0B0A22B73913FA8424442 /* RCTPointerEvents.h */, - 7013E12ADB40FFBABED4D9A87E97E663 /* RCTProgressViewManager.h */, - D20773A3ABE321E7E66ED677F6D96CBC /* RCTProgressViewManager.m */, - 7FF5C0A072427E893DB4DACA1CDD0F75 /* RCTRefreshControl.h */, - D5F0D6A6E5DCD8D75DD39C3D32A148FA /* RCTRefreshControl.m */, - 33CA4AF62A3D638383E51FFAD00B3B23 /* RCTRefreshControlManager.h */, - 39DC53D4A85213E664AAA0FC642E0690 /* RCTRefreshControlManager.m */, - DCD07C4900A296C51CC77B4A94FB2133 /* RCTRootShadowView.h */, - 1107E9928ACA566771642BF6777A8CCC /* RCTRootShadowView.m */, - 3C537E8220F54370D5B5FAEED6470734 /* RCTSegmentedControl.h */, - 1F8A2E1F39B0FA2B48D874E8DA74681B /* RCTSegmentedControl.m */, - A64A892C9BB5809DD7F08D9DE14A1A28 /* RCTSegmentedControlManager.h */, - AEF198231F8DA88E3C88A5CF95040E4F /* RCTSegmentedControlManager.m */, - 6B57EFAEC94E64832C57A8D942E538B5 /* RCTShadowView.h */, - 521A0A629210511FCD3E3ABB5D71A74A /* RCTShadowView.m */, - 4C34EA46220E67405BD96475B2FA73A8 /* RCTShadowView+Internal.h */, - 9F6875CF19B5DBBF63F716646E5ADDDC /* RCTShadowView+Internal.m */, - A3FCF6738E7CCD3B68EE06C013A821C3 /* RCTShadowView+Layout.h */, - D6C1F29D38A015CD434F043ADAE0C80F /* RCTShadowView+Layout.m */, - D328FE948889A058CE8AE8506C08089C /* RCTSlider.h */, - BE39B8616244665A9D7D7E1723302142 /* RCTSlider.m */, - 212B3673436F3EA140F0E188CC72942B /* RCTSliderManager.h */, - E9209902141BB566F44E44779CD31FCF /* RCTSliderManager.m */, - 7C00DDC862FBDCD3A594A7007F4DFE82 /* RCTSwitch.h */, - 850FD2FA4D46C449A47827877A4B9249 /* RCTSwitch.m */, - 552B1897F67DC6773C54CAF6C57C4E61 /* RCTSwitchManager.h */, - 1CFC539F4AA6744CCCC5DA15DE242897 /* RCTSwitchManager.m */, - 1325822DFA0CEBD5F2B9C376FAFC52B0 /* RCTTextDecorationLineType.h */, - BE564D08050A1E2CC31F087FC0A866B6 /* RCTView.h */, - 695BA1753BFCE794E1936B121510714E /* RCTView.m */, - 6453C16E95756708559EADDB0E549140 /* RCTViewManager.h */, - 54F9073EBF7C4E026B1A0B65EA673223 /* RCTViewManager.m */, - CFC83A96B783E6971A1EEEA7708B461F /* RCTWrapperViewController.h */, - B42C876ABD86D4A05BDE2E8BB12A504A /* RCTWrapperViewController.m */, - 510D92EDEE5E30E76903020689184FA9 /* UIView+Private.h */, - 59CCC6AC00485DAEF9D9C5C18DA7611E /* UIView+React.h */, - 3E629C1FAC371353C91F47301E2A52FB /* UIView+React.m */, - 61F0530219F839A6078F64487D6A00E1 /* SafeAreaView */, - 86E5B6A8F90498FD9469F13FAB3B7508 /* ScrollView */, - ); - name = Views; - path = React/Views; - sourceTree = ""; - }; - F1771C3BE7C0E8597591E9711127B815 /* jscallinvoker */ = { - isa = PBXGroup; - children = ( - 95D9AD26F26CB7EAA4982F0FAED803CF /* BridgeJSCallInvoker.cpp */, - 760E084FF9253B90AE10648B74D95FC4 /* BridgeJSCallInvoker.h */, - 060D1E09824A6BDCFA363B597162E89F /* JSCallInvoker.h */, - ); - name = jscallinvoker; - sourceTree = ""; - }; - F18435E9BE28962B7B08823A420B90CD /* Support Files */ = { - isa = PBXGroup; - children = ( - 9CFEF4B2F71FFC3B4CECF95138A92078 /* BugsnagReactNative.xcconfig */, - 3F382A40AE236F54486DDA821B9F6254 /* BugsnagReactNative-dummy.m */, - C04B3E607F247314964F07370F362467 /* BugsnagReactNative-prefix.pch */, + 3DB88B5D0C1D4D29C963C5FB5F477C3B /* react-native-background-timer.xcconfig */, + A304D665E5550C42813C192A9DD81A9A /* react-native-background-timer-dummy.m */, + CCCDDF994AB905DE9C260944E7A71F89 /* react-native-background-timer-prefix.pch */, ); name = "Support Files"; - path = "../../ios/Pods/Target Support Files/BugsnagReactNative"; + path = "../../ios/Pods/Target Support Files/react-native-background-timer"; sourceTree = ""; }; - F26EC004BC0F805A2D696EF304614D7F /* Source */ = { + F0ADFF915531392DAEC4C135A00620CA /* Pod */ = { isa = PBXGroup; children = ( - 40041380B1E152C858179BCBFF04F6B1 /* KSCrash */, - ); - name = Source; - path = Source; - sourceTree = ""; - }; - F4A871F812BF70CA3DEB362F47173166 /* Pod */ = { - isa = PBXGroup; - children = ( - F9A75C1E17AB778DBB20511F689B9909 /* LICENSE */, - 4BF44C6499F2BAA0FE3BD9E58D054237 /* README.md */, - 2E6024EDA1E8A791BC82A9049DD72D86 /* RNReanimated.podspec */, + D896773D29755E1615A12B08A89BB3AA /* advancedIos.md */, + 95E3FF9E4237671F1324CEA5E5D3DBE8 /* installation.md */, + EC6D902F7BA06596A12AC85965D28243 /* LICENSE */, + 8BFB59944C660864F8F99BA6631A44DA /* localNotifications.md */, + 8256DA6869ACF3E3397CCBD8BEC522C9 /* notificationsEvents.md */, + 2389E7712E74122E76AE062C1E1D4618 /* react-native-notifications.podspec */, + F816E429C189AC7FF0CDD8C05386E4A2 /* README.md */, + B4F3D461D7527502D46B835A4356458C /* subscription.md */, ); name = Pod; sourceTree = ""; }; + F0B8B963CA4EE15DBA010B75D79CA8B3 /* Support Files */ = { + isa = PBXGroup; + children = ( + A765B6A46819F2A5761417E17C78ACC6 /* React-RCTActionSheet.xcconfig */, + 306BACE18FC2849B86A1322FA34E4E19 /* React-RCTActionSheet-dummy.m */, + 0907B55ACD583D9BD4842D7018B00535 /* React-RCTActionSheet-prefix.pch */, + ); + name = "Support Files"; + path = "../../../../ios/Pods/Target Support Files/React-RCTActionSheet"; + sourceTree = ""; + }; + F2E53EDB930C8C9A16C32DD62EDA90DF /* Recording */ = { + isa = PBXGroup; + children = ( + A854F5D9C3D977362678288E58D20C84 /* BSG_KSCrash.h */, + 2B98A8F9F7623B90F4B72BAF5548029A /* BSG_KSCrash.m */, + 5992071390E2CBCF78CC2FBF807ED268 /* BSG_KSCrashAdvanced.h */, + 32B872F24CAC2DF9B15DDEDECDB1C82A /* BSG_KSCrashC.c */, + 5ADC01D0B2DF21C8E2B7C9AF31CEA266 /* BSG_KSCrashC.h */, + 0523512581D72F0977D54C1E21C22E7B /* BSG_KSCrashContext.h */, + E980C56DE08EAF9CF485E3EE118D881F /* BSG_KSCrashDoctor.h */, + FA5F7F2BAA4C5C8F1FDBB5390AEC096D /* BSG_KSCrashDoctor.m */, + 04492B680609A54B99BF01D684667ED7 /* BSG_KSCrashIdentifier.h */, + D378B19DB71DE15E6D101071559E2414 /* BSG_KSCrashIdentifier.m */, + F263AE99A545514DD632E73E0F628846 /* BSG_KSCrashReport.c */, + 59A1EB5759C3D1C6D71C074D9FDE298D /* BSG_KSCrashReport.h */, + 8D236EF97878BA3F898BD938036D1520 /* BSG_KSCrashReportFields.h */, + 75FF3E83DCCF979DB9AFA4E36A6E0F5A /* BSG_KSCrashReportStore.h */, + 19BB8FA40C891F4D51BEB41ABE33EC1A /* BSG_KSCrashReportStore.m */, + C47B57CFB6FB02C32E14D4973EEDB19E /* BSG_KSCrashReportVersion.h */, + B0BA1896A9685A2D8B9372F886B345DA /* BSG_KSCrashState.h */, + 260284E320C55DC1F401EF3613313217 /* BSG_KSCrashState.m */, + 5E350B5C123863569EC380ABC2DF1A1B /* BSG_KSCrashType.c */, + 8A5E00C94BF4E62031F5735FA0C2CFB9 /* BSG_KSCrashType.h */, + 2D95F855C66A73E8B8AF4EDF5C8496B2 /* BSG_KSSystemCapabilities.h */, + 32DE5F05C8013901EA4EBF72E868DE3D /* BSG_KSSystemInfo.h */, + 4BEF442C14EB1725D989617D98AC0663 /* BSG_KSSystemInfo.m */, + E0BFCEECC0723F338C167E5CC8F38542 /* BSG_KSSystemInfoC.h */, + 550884D8465BE125A33608176460C5F1 /* Sentry */, + CEE3868CC003CE265669C2AB66689B82 /* Tools */, + ); + name = Recording; + path = Recording; + sourceTree = ""; + }; + F4B69C8D75B1347C0EDE91219C841E6B /* react-native-document-picker */ = { + isa = PBXGroup; + children = ( + B77809A2F9FA6C47221E339E3A77864C /* RNDocumentPicker.h */, + B26E3150918CB4B6EFEBBCEE4ED286E7 /* RNDocumentPicker.m */, + D2BD9522EC939BFB44EF457A40DE350D /* Pod */, + 02709255A48D61E6388EA06CEFCB198F /* Support Files */, + ); + name = "react-native-document-picker"; + path = "../../node_modules/react-native-document-picker"; + sourceTree = ""; + }; F4E8C74AE7E1C7626C68E1FBF69F4B75 /* GoogleAppMeasurement */ = { isa = PBXGroup; children = ( @@ -12905,33 +12742,15 @@ path = GoogleAppMeasurement; sourceTree = ""; }; - F4FA8A34E9B6AB0416DBE41356FAEF6F /* RCTRequired */ = { + F4E9BF952D4708AF794B194961179D3D /* Support Files */ = { isa = PBXGroup; children = ( - 7F2CF506F50A4850AF8B6B170ECDB2AD /* RCTRequired.h */, - E5F2E6986532B0181C72F48E3753A9A4 /* Pod */, - DEBA927A4DBBE6ED86E0E947A58BE43E /* Support Files */, + 0CA79E2932EBB980CBD13F423FAF20CB /* React-jsinspector.xcconfig */, + 974CF72F019FFD15DF14B08971B6587C /* React-jsinspector-dummy.m */, + A9280A7138A590BA6D4E847CCE7F406A /* React-jsinspector-prefix.pch */, ); - name = RCTRequired; - path = "../../node_modules/react-native/Libraries/RCTRequired"; - sourceTree = ""; - }; - F61F023DC03A54239E971F0FA70CE738 /* Pod */ = { - isa = PBXGroup; - children = ( - 8755CAEB41C6BF69F755A5D32FEDFE00 /* LICENSE */, - 837F9381A0B501653A6253A2DDB75349 /* react-native-webview.podspec */, - ED8283B1F52BABAE32AE0790A0DB35F4 /* README.md */, - ); - name = Pod; - sourceTree = ""; - }; - F64A5963796376181E4257F9C822C301 /* Pod */ = { - isa = PBXGroup; - children = ( - 10FFBF48D3E94CA67AB4FEA6086D0FF9 /* FBReactNativeSpec.podspec */, - ); - name = Pod; + name = "Support Files"; + path = "../../../../ios/Pods/Target Support Files/React-jsinspector"; sourceTree = ""; }; F6908B7F3DAA9157C0C6086537CC4F7A /* demux */ = { @@ -12944,6 +12763,53 @@ name = demux; sourceTree = ""; }; + F7477D63FAB664FDF818AD0633DB51A0 /* turbomodule */ = { + isa = PBXGroup; + children = ( + 81D064B31AEC611810AB9D56020D0F2D /* core */, + ); + name = turbomodule; + sourceTree = ""; + }; + F783D98CD3FA591CC6106207219CE8F1 /* Support Files */ = { + isa = PBXGroup; + children = ( + EBF03A09F4BA3CE37ED37F5E03DCAE85 /* React-jsiexecutor.xcconfig */, + 585CF1C45B8DDF6F28ABF8416F7794ED /* React-jsiexecutor-dummy.m */, + 00AAB01200B5833E4E94C35D688A3105 /* React-jsiexecutor-prefix.pch */, + ); + name = "Support Files"; + path = "../../../../ios/Pods/Target Support Files/React-jsiexecutor"; + sourceTree = ""; + }; + F7C3CCDED21BC79FAB9999C5D7357018 /* RNVectorIcons */ = { + isa = PBXGroup; + children = ( + A547E58DF1C01BD35292D94C470A2ED3 /* RNVectorIconsManager.h */, + DA969159AFFB2BC5EF84D1109CA9F7B2 /* RNVectorIconsManager.m */, + 96DB81850B8365AFF48AC6F7DA03D660 /* Pod */, + E9B4345374ED65D9D98B2648CC69C83B /* Resources */, + 6B9FF03F6F634214632D484842C4FD99 /* Support Files */, + ); + name = RNVectorIcons; + path = "../../node_modules/react-native-vector-icons"; + sourceTree = ""; + }; + F7F663D30A362D3C3FAACB03C39FC966 /* UMReactNativeAdapter */ = { + isa = PBXGroup; + children = ( + 4DA0100AFFCA32F963754E69A13D1B27 /* UMBridgeModule.h */, + 18910C637E49F6B65F4242C967E49450 /* Pod */, + DE53E6B5C45B90CAB92AE2F0A125247B /* Services */, + 4412ECB02B7AFF844362743F2D423906 /* Support Files */, + 4480DAA97B20ADDE76D3DC8FF178A421 /* UMModuleRegistryAdapter */, + 6B77C2A528FBD793FD6D664076CDE75E /* UMNativeModulesProxy */, + D33FF43B6696D3616F648A39CF7674D4 /* UMViewManagerAdapter */, + ); + name = UMReactNativeAdapter; + path = "../../node_modules/@unimodules/react-native-adapter/ios"; + sourceTree = ""; + }; F81EBDFF90F8EF7E9C7FD80A121F087B /* RSKImageCropper */ = { isa = PBXGroup; children = ( @@ -12970,115 +12836,68 @@ path = RSKImageCropper; sourceTree = ""; }; - F8C018DD31FC106BBDBA6F7E29F95532 /* RCTWebSocket */ = { + F961F8FFF7F99556F3C376C7AACE446A /* react-native-background-timer */ = { isa = PBXGroup; children = ( - EC83A980D73202F5AFD1C0054F848EA2 /* RCTReconnectingWebSocket.h */, - 247FFC6F2A28AE96DFD1F1E89C952983 /* RCTReconnectingWebSocket.m */, - 7844F48521E98E1AE880D2D82021135B /* RCTSRWebSocket.h */, - 22B6FD695D5599BD03A6A20D19B48690 /* RCTSRWebSocket.m */, - 6D0868376A35A8D3AC4D814FDC6147A4 /* RCTWebSocketExecutor.h */, - ED5BF08CC94055925E1E64E23F73C1F1 /* RCTWebSocketExecutor.m */, - CB5456F379D19780324568286FC790F0 /* RCTWebSocketModule.h */, - 911B61ED93F3F7368413853F322BD53A /* RCTWebSocketModule.m */, + 55EC6646EA0F58C998F8997231399B54 /* RNBackgroundTimer.h */, + 3B9F645165AC155363E87BF3E30F5887 /* RNBackgroundTimer.m */, + B668812193A521141A3FA48E50BC4DA7 /* Pod */, + EF28B30C632EABC048274B5F9A1D9A69 /* Support Files */, ); - name = RCTWebSocket; + name = "react-native-background-timer"; + path = "../../node_modules/react-native-background-timer"; sourceTree = ""; }; - F8F04E23CD8541CE4C7630B617924844 /* Pod */ = { + F976868985EA65F3398F30206C528641 /* notifications */ = { isa = PBXGroup; children = ( - 7306C3037928E2C16AEB0951B479DE3D /* React.podspec */, + C7D466F2D7512F509D09D9ACDF98A8D4 /* RNFirebaseNotifications.h */, + 12B9E8EAEEFC054A0CC6389AB00B2F89 /* RNFirebaseNotifications.m */, ); - name = Pod; + name = notifications; + path = RNFirebase/notifications; sourceTree = ""; }; - F986F5B7C8195AA4F735E89D40BA1473 /* event */ = { + FAB897168EDC14E0216611BFF80DB86C /* React-CoreModules */ = { isa = PBXGroup; children = ( - 7BA456D90B2D1CBE37FDB4C1E430C2CE /* event.cpp */, - 590994D6B41920C6BFD44BE95824900F /* event.h */, + 502A95436A12BB1AF9E01165BB945574 /* CoreModulesPlugins.mm */, + 8D2C5A8F831E892581AC87353D324085 /* RCTExceptionsManager.mm */, + 2831EE20313C3202F55D3651E49DEE21 /* RCTImageEditingManager.m */, + 07443A38AA394574B8222DBCEF0AB663 /* RCTImageLoader.mm */, + F44265BEFCCA79CAFCEF970F6D0765DA /* RCTImageStoreManager.m */, + 200BFF93E03089A04D00BDE1CF43492D /* RCTPlatform.mm */, + 4F75E32584B9929F55E90DA70A9362F8 /* Pod */, + 7A801EB42EEECD80A429DD22668A292E /* Support Files */, ); - name = event; - path = yoga/event; + name = "React-CoreModules"; + path = "../../node_modules/react-native/React/CoreModules"; sourceTree = ""; }; - F9CB62431E58EFF664229016701E7D6E /* Support Files */ = { + FC60BC397B4A38524B5398954D24543B /* React-jsinspector */ = { isa = PBXGroup; children = ( - 9667D6891677A0AAA9920C5B89D717E3 /* UMImageLoaderInterface.xcconfig */, + 3070F569D77C934F5B7C297593D5B5A6 /* InspectorInterfaces.cpp */, + 4A0317821D03033EF9B41F8CE7797C29 /* InspectorInterfaces.h */, + E44ECBA01F1488F287A7D152AA710DB2 /* Pod */, + F4E9BF952D4708AF794B194961179D3D /* Support Files */, ); - name = "Support Files"; - path = "../../../ios/Pods/Target Support Files/UMImageLoaderInterface"; + name = "React-jsinspector"; + path = "../../node_modules/react-native/ReactCommon/jsinspector"; sourceTree = ""; }; - FAD0B7CF2BC29D51D2913C70835A229E /* Pod */ = { + FDD07CB7882D30242134F87AC056E9E5 /* SurfaceHostingView */ = { isa = PBXGroup; children = ( - 7244EC3F0088EEE398FD38601A9F75B3 /* KeyCommands.podspec */, - 7DF887CBF4D13A271DF1EE41E5FC6A63 /* README.md */, + FE1ED1EC8BF18BAD0FAC29332E9C304E /* RCTSurfaceHostingProxyRootView.h */, + A765AE10C0799D6B63E133F1DDE1DADA /* RCTSurfaceHostingProxyRootView.mm */, + 5BCF8DE26741DDA2059FE0122EE66E12 /* RCTSurfaceHostingView.h */, + EF439CD54E295D06B5EF4DE77D60D6A5 /* RCTSurfaceHostingView.mm */, + FD0B80D0EC31363E9234C55879B93F2A /* RCTSurfaceSizeMeasureMode.h */, + BC3FAFDE025D65B8999582A662376F97 /* RCTSurfaceSizeMeasureMode.mm */, ); - name = Pod; - sourceTree = ""; - }; - FAE5E4C4A1F804B9D68BD2BE5812D99C /* Pod */ = { - isa = PBXGroup; - children = ( - 732F4DE0B320FE0CFE1BE269D83906DF /* LICENSE */, - 78A4BBFBE5C6E1EBCCE0514E27C2969A /* README.md */, - 6E6A672E9A3FA7D268468391B2D726AE /* rn-fetch-blob.podspec */, - ); - name = Pod; - sourceTree = ""; - }; - FC9B056BA7A6774D596805220406B0FC /* RNDeviceInfo */ = { - isa = PBXGroup; - children = ( - E8C566F372C6D5B7D607F9E7D11F6E6A /* DeviceUID.h */, - 122B0814270FDC762B712CB84C9F5635 /* DeviceUID.m */, - 987D5C4E77696336363C3474CD98C269 /* RNDeviceInfo.h */, - 035B11053E82BAF8EC1FA090128DF97C /* RNDeviceInfo.m */, - 34B3DAEEBE6D6B20D6E4A0618652AAC5 /* Pod */, - BAD2486EFF7C66291C5F656417EB1438 /* Support Files */, - ); - name = RNDeviceInfo; - path = "../../node_modules/react-native-device-info"; - sourceTree = ""; - }; - FCD1A18E20E95E3B95C4D591C469B19D /* UMReactNativeAdapter */ = { - isa = PBXGroup; - children = ( - E5E35A700DF640881A10CFAA884F2546 /* UMBridgeModule.h */, - 22BA093B64E042E9E2C2FE1C356C4075 /* Pod */, - 09BF169B7821BAD1EB7F238CDC0749BD /* Services */, - E4E5ABFD7A1075FEBD58511A6508D97B /* Support Files */, - A38E82117385297C6FCF5E95A23F19C1 /* UMModuleRegistryAdapter */, - C84C35B1B73531C817AA1E6C0468C16D /* UMNativeModulesProxy */, - 3C8A08BEBCD5BE1F63B0ACBBCBE2CC84 /* UMViewManagerAdapter */, - ); - name = UMReactNativeAdapter; - path = "../../node_modules/@unimodules/react-native-adapter/ios"; - sourceTree = ""; - }; - FDBE91367089EBA0DD35C404019AD304 /* React-jsi */ = { - isa = PBXGroup; - children = ( - 515DBA763B7D28FBE19F6EEE19E8195B /* JSCRuntime.cpp */, - 3CBA8541EA1AAE2E10B8010FFD897204 /* JSCRuntime.h */, - 9351BF0BC5717FBAF1CE72FD61D4C28A /* jsi */, - EAEE8735FE4481247AC3C7B8924BF130 /* Pod */, - DA7D5D245B62AC751772D1EAAA65E401 /* Support Files */, - ); - name = "React-jsi"; - path = "../../node_modules/react-native/ReactCommon/jsi"; - sourceTree = ""; - }; - FE2325CBEFBA017B09C4A857A1DFCFEE /* Pod */ = { - isa = PBXGroup; - children = ( - ABF3B2ED55A9EBC6C8EF9959140D4B39 /* Yoga.podspec */, - ); - name = Pod; + name = SurfaceHostingView; + path = SurfaceHostingView; sourceTree = ""; }; FE43C14EE339FF31B74ECE47E1D075CD /* Support Files */ = { @@ -13090,32 +12909,29 @@ path = "../Target Support Files/Fabric"; sourceTree = ""; }; - FEBDA8775B07827D5F8047F8DA05F7C5 /* Pod */ = { + FF517E5BA2CDE07317551F389A06666A /* RNDeviceInfo */ = { isa = PBXGroup; children = ( - 58AD4AD2148C58A9CC8BB6B97D4216BF /* EXAppLoaderProvider.podspec */, + A403286D4D96B05EFAD45095F78C0221 /* DeviceUID.h */, + 03BE05ED68AA7E760BCA2C1DCCA745F4 /* DeviceUID.m */, + 7AE12C2C3A51F89888D41C6DB6D5CD05 /* RNDeviceInfo.h */, + 0E26F64CB9F929CC0F3579A71B693C15 /* RNDeviceInfo.m */, + B6C23BA9B5A9F6C28A64824403D544CE /* Pod */, + AA479E105AB9287183DC4B1A57E65CFD /* Support Files */, ); - name = Pod; + name = RNDeviceInfo; + path = "../../node_modules/react-native-device-info"; sourceTree = ""; }; - FF00F900ADCB5D1223C8AF77E9B7F1CE /* Pod */ = { + FF84888FA8C99EB6BCE91F80889A90C6 /* Support Files */ = { isa = PBXGroup; children = ( - 64ED3293AF89363B6DA19DC034FE5148 /* LICENCE */, - 20DE93B1F9E4AF2638BA4F40BCE379FC /* react-native-cameraroll.podspec */, - 7FD575470A0B7D1917095D2248010239 /* README.md */, + 2BF1BF656EC3B47BD4F59A5E5A51D844 /* EXKeepAwake.xcconfig */, + B734674085C56A240B8386BEDBC9568C /* EXKeepAwake-dummy.m */, + 91F95847CE0D9E2EE18BF7D35ABDA330 /* EXKeepAwake-prefix.pch */, ); - name = Pod; - sourceTree = ""; - }; - FF6393C7FEBCF6C83957ED4FFD82F8DB /* RunLoop */ = { - isa = PBXGroup; - children = ( - AF74C4A9752B4DCA4C7BFB9D7A1C4156 /* SRRunLoopThread.h */, - 660E8E2E8BA57B6EE99682B94753A01B /* SRRunLoopThread.m */, - ); - name = RunLoop; - path = RunLoop; + name = "Support Files"; + path = "../../../ios/Pods/Target Support Files/EXKeepAwake"; sourceTree = ""; }; FFB3455A3E37A9225E29597AD5CD25E2 /* Support Files */ = { @@ -13368,13 +13184,6 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 2CD2B797715FB6405B895580A9E5C446 /* Headers */ = { - isa = PBXHeadersBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; 3050A17B887B11E8E378C04CCD56FEB3 /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; @@ -14307,36 +14116,7 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - ADA7004476C6CBC2C3A8C063658366A3 /* Headers */ = { - isa = PBXHeadersBuildPhase; - buildActionMask = 2147483647; - files = ( - D6D619B6B23618240CB1C0175EB7B862 /* NSRunLoop+SRWebSocket.h in Headers */, - 6EE7100067645C0D982A472BD190B36F /* NSRunLoop+SRWebSocketPrivate.h in Headers */, - 396E93EBA34EF467BC94F446C88C0349 /* NSURLRequest+SRWebSocket.h in Headers */, - EA9D2196B9FA41E54B88391038F499A8 /* NSURLRequest+SRWebSocketPrivate.h in Headers */, - 77868A2F1BD29A7EF7EBD9BA253DE3A9 /* SocketRocket.h in Headers */, - 425BD2391D1D2FEBFC1CB70A38B08961 /* SRConstants.h in Headers */, - C12B918C4C10BB7E3D71B5DB2D822599 /* SRDelegateController.h in Headers */, - 7E28955E3BA8C7436886C59D6805E446 /* SRError.h in Headers */, - 3750C40D2865AD541179EC543FBC694D /* SRHash.h in Headers */, - DF44018DA4FCE008712268758F27B85D /* SRHTTPConnectMessage.h in Headers */, - 689449C04D77072010E4112781E8EDDC /* SRIOConsumer.h in Headers */, - 4421F45C72AA58B59CFFE20E555856FB /* SRIOConsumerPool.h in Headers */, - 763B9FCB94339F26135F8A52C7463AB1 /* SRLog.h in Headers */, - C23FFBEA39C9543EFABCF7A5FEA5A9B7 /* SRMutex.h in Headers */, - A7D31712AE0D5CAF424772A87D9F71CB /* SRPinningSecurityPolicy.h in Headers */, - BC78C56227D8A57660E82B212A39D116 /* SRProxyConnect.h in Headers */, - 771BDC0E0D0199F0D822FFACEE14F210 /* SRRandom.h in Headers */, - AAE1BEAAC4E9DC2F0106F98A3DFFBFF8 /* SRRunLoopThread.h in Headers */, - B66D063C7CAF55D47A55F5452FAA9366 /* SRSecurityPolicy.h in Headers */, - D7E45F7C2949E7B606B820A5EB3966CE /* SRSIMDHelpers.h in Headers */, - 3653059F926A9CD42F79EE7DC538DB6B /* SRURLUtilities.h in Headers */, - 04C24F4AAF9F4FDE509A34A0C902C967 /* SRWebSocket.h in Headers */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - B6B024C39B4CAED8226D97F6E0458731 /* Headers */ = { + B70FA37DB500C4FB49EBB1046A68A009 /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; files = ( @@ -14376,6 +14156,13 @@ ); runOnlyForDeploymentPostprocessing = 0; }; + C101EFA90A58A28C6BFB0F0815EFEF43 /* Headers */ = { + isa = PBXHeadersBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + runOnlyForDeploymentPostprocessing = 0; + }; C21F70E6BA51D689E2C52DB04E1E09E0 /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; @@ -14539,6 +14326,14 @@ ); runOnlyForDeploymentPostprocessing = 0; }; + E3EAEAE71215C6DEF4B327FCDC0FFF48 /* Headers */ = { + isa = PBXHeadersBuildPhase; + buildActionMask = 2147483647; + files = ( + 6DB135CE25243C7A87B72013CF246917 /* EXKeepAwake.h in Headers */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; E4D17E96D903B293E993863B6F717145 /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; @@ -14693,6 +14488,24 @@ productReference = E55EA3C6F285F6FA8067C5C8A428FA64 /* libRNFastImage.a */; productType = "com.apple.product-type.library.static"; }; + 0CF4D9052577C85B6B8C4E957332626B /* EXKeepAwake */ = { + isa = PBXNativeTarget; + buildConfigurationList = F1776E52FEA103CF28C3992DC4DD90F2 /* Build configuration list for PBXNativeTarget "EXKeepAwake" */; + buildPhases = ( + E3EAEAE71215C6DEF4B327FCDC0FFF48 /* Headers */, + 0657C5F9594D9B1A08090F90241E18DB /* Sources */, + 9E1A42CE3F9C0739F32F60BE706C22A1 /* Frameworks */, + ); + buildRules = ( + ); + dependencies = ( + 49AC31079F8A8A1CB4A6E1E09B034C7F /* PBXTargetDependency */, + ); + name = EXKeepAwake; + productName = EXKeepAwake; + productReference = 09B5856105EF7C6447B9EC57E7E36B34 /* libEXKeepAwake.a */; + productType = "com.apple.product-type.library.static"; + }; 0D82774D2A533D3FFAE27CAB4A6E9CB2 /* RNImageCropPicker */ = { isa = PBXNativeTarget; buildConfigurationList = E32D9346C6C7CBA6E34D51B610E62070 /* Build configuration list for PBXNativeTarget "RNImageCropPicker" */; @@ -14787,23 +14600,6 @@ productReference = E496A53A92B4E464B5C30DC5B1E4E257 /* libRNRootView.a */; productType = "com.apple.product-type.library.static"; }; - 1948D0B63D2CF6A48E18B0B292BC6091 /* SocketRocket */ = { - isa = PBXNativeTarget; - buildConfigurationList = 8A342587C503250D8D3C41BE04FB11ED /* Build configuration list for PBXNativeTarget "SocketRocket" */; - buildPhases = ( - ADA7004476C6CBC2C3A8C063658366A3 /* Headers */, - 67BC8870FD97F0354ACE96CFEE8AB459 /* Sources */, - C972A634AA8E0D8DE49C3095C4BBA1E0 /* Frameworks */, - ); - buildRules = ( - ); - dependencies = ( - ); - name = SocketRocket; - productName = SocketRocket; - productReference = 85A01882ED06DFEA2E0CE78BCDB204A7 /* libSocketRocket.a */; - productType = "com.apple.product-type.library.static"; - }; 1953860EA9853AA2BC8022B242F08512 /* SDWebImageWebPCoder */ = { isa = PBXNativeTarget; buildConfigurationList = 5E98D8293EDA176C4FBDC33F8E28B4EC /* Build configuration list for PBXNativeTarget "SDWebImageWebPCoder" */; @@ -15524,92 +15320,91 @@ }; 9C801345ED2C78BD1674053E7BE5D6ED /* Pods-ShareRocketChatRN */ = { isa = PBXNativeTarget; - buildConfigurationList = DD378334D536B64B0EDCEFA095609E8E /* Build configuration list for PBXNativeTarget "Pods-ShareRocketChatRN" */; + buildConfigurationList = A8C0632CFB7EB3662129CABC205B7FF5 /* Build configuration list for PBXNativeTarget "Pods-ShareRocketChatRN" */; buildPhases = ( - 2CD2B797715FB6405B895580A9E5C446 /* Headers */, - DCF09E83F234CBD8F648E80A809A5C5A /* Sources */, - B08CFEA9363D15A9AB6B90BB264D3162 /* Frameworks */, + C101EFA90A58A28C6BFB0F0815EFEF43 /* Headers */, + 35AD62FD707FA301DF2D8D32B763802B /* Sources */, + 04171A6E8EB7C9EF7081B018D2FDFEF9 /* Frameworks */, ); buildRules = ( ); dependencies = ( - DC713769C2AA5C2D189617BECD32C480 /* PBXTargetDependency */, - D04D25D261274B475B78CA9FBE710222 /* PBXTargetDependency */, - 9AD4EEAEEC186D0D529A1026E9A063F0 /* PBXTargetDependency */, - FD22F084DCFF1013A07E0DE9BFCCC4F9 /* PBXTargetDependency */, - 8FBF838E31D6A137D7B1EAA17DDAE496 /* PBXTargetDependency */, - C8D3872CD67EA427CAE9ABFF228D7B0A /* PBXTargetDependency */, - 39815BCD96CCE74D07E8857DE373F481 /* PBXTargetDependency */, - 9AF00E5817DB096BF01357206B645726 /* PBXTargetDependency */, - 9E681EA814BFAEB1972134F14574DACF /* PBXTargetDependency */, - 49090A4CDF6C2403D414AC16D4F7AD4A /* PBXTargetDependency */, - B0846E3CD63C54785BA2DA9C23F3852C /* PBXTargetDependency */, - 22A6115BBBEB45C4CB3142D1DAF4D11C /* PBXTargetDependency */, - 0BBD73D56FA14698E02CA66A39B3DBDD /* PBXTargetDependency */, - 621C611D9C189C56D7BA131BE24F2020 /* PBXTargetDependency */, - E7E2BF456781B8B42E2D322453F40E50 /* PBXTargetDependency */, - 7C279F5638CBF03253223DBFB4C87147 /* PBXTargetDependency */, - F80BC0EE1D1BE7271CC4882E43816040 /* PBXTargetDependency */, - A3F9855C63192CF6AC34654300B983A9 /* PBXTargetDependency */, - FD4B27CBFBDF3EB7B7657A74C24667E4 /* PBXTargetDependency */, - 5113A3CF8D004278D4883CC53F176614 /* PBXTargetDependency */, - C43D6D36FCF4584D2986AB86A11B1F07 /* PBXTargetDependency */, - 9F5512EDD42D59B410F5FC161C16C4CE /* PBXTargetDependency */, - 6B1260630E75A28D106BE0EEFCF43BD3 /* PBXTargetDependency */, - E13F4C230127229987A9CCB35D9F27A1 /* PBXTargetDependency */, - 8CF8355378A8E26197BBA9D4273E07D6 /* PBXTargetDependency */, - 25951338F328493B7F460FCE7338581A /* PBXTargetDependency */, - E096FDCD038B77A2435FB22690D9BA19 /* PBXTargetDependency */, - 53BDADAC7FA634F458156E97DC93675C /* PBXTargetDependency */, - D88905130CC911795816CF30A7D3B223 /* PBXTargetDependency */, - B38BDA13203DDA39D295FE5355B0F155 /* PBXTargetDependency */, - B48F166787EAAB654C6040E71BF58BA2 /* PBXTargetDependency */, - 52013CCA37EC9C629F00C4650DB38964 /* PBXTargetDependency */, - 4D2905734193D72FA173D8103F505D5B /* PBXTargetDependency */, - E870BB02117982B1CBA3C23E687531C0 /* PBXTargetDependency */, - F94A0CAC6ACA8E3BBAF866269CFC63E0 /* PBXTargetDependency */, - 8F883B045F91FED21DBFCCBBF9F7693D /* PBXTargetDependency */, - 6CC5C75B492FF6A143065224AB4D2AEA /* PBXTargetDependency */, - 59B1994AAF70D47625DEF9A46412E8B8 /* PBXTargetDependency */, - E0441DF15F346AABD94C70D55A778862 /* PBXTargetDependency */, - 32E09814A4045687C901875C552560CC /* PBXTargetDependency */, - 3CA4BE2930752D771BDBDB6D7C63F6B5 /* PBXTargetDependency */, - E9305B8C41C4E8FB7E3B4D13F9D3C5FE /* PBXTargetDependency */, - 94344D3255DF519B408E5358B30FBD8D /* PBXTargetDependency */, - 5FDF35C6F9DA076A60D2DF859272EB36 /* PBXTargetDependency */, - 583A70685D5DD8BDD4DE6EF4FEB4F51B /* PBXTargetDependency */, - 23754CBF28092822B4B6CC13C757ED04 /* PBXTargetDependency */, - 471B2231E4315463BE141C78CFC154FD /* PBXTargetDependency */, - F321D4CC68F8B292718A97AC7D6991AA /* PBXTargetDependency */, - 13AAF98C295C081ABF10E8CF7AF07720 /* PBXTargetDependency */, - 062DF6946283CFC984D6C5257B65C8E0 /* PBXTargetDependency */, - 056157FB41377A51B0DACE7C117ED1A0 /* PBXTargetDependency */, - BE5E5B07A8FFCEFDFF1AE93A259573E6 /* PBXTargetDependency */, - 29B636613C2DA928F4AB997F20CD3FF4 /* PBXTargetDependency */, - B6CFE57A91DDE5C0C2722FEBD829CEF0 /* PBXTargetDependency */, - A5B0F3719A1F314C31D89D27F12B2DEC /* PBXTargetDependency */, - 6D33C914B8067BB289E5DF1BAD8E63CC /* PBXTargetDependency */, - E9E3E5A42DB64359D74AF43702BA48E4 /* PBXTargetDependency */, - F4AC398922A5D9DD320AEE1AEB0A7F21 /* PBXTargetDependency */, - 4C4E52F2A5DB188C435C5E1D69D984C1 /* PBXTargetDependency */, - 0863F0500523DD7362FD5931C6ED1B9D /* PBXTargetDependency */, - BA9EA6AF1855060F66347DA394B21539 /* PBXTargetDependency */, - 07854B9025E62B36C2C671AE3AF1CEBF /* PBXTargetDependency */, - 25597C4515BBCB7BBEF2D86CD5D82EE1 /* PBXTargetDependency */, - FC471249D895DB2BF7ABC4A454CC7A54 /* PBXTargetDependency */, - 758A23828876EC25D52DA6FB5BA9103C /* PBXTargetDependency */, - 713D2B9FCBD81F986022EC416C331359 /* PBXTargetDependency */, - 598AE4C3758343D375BF1A0663853F50 /* PBXTargetDependency */, - 02FF724E5E60A61866412D1E7740A367 /* PBXTargetDependency */, - A74AB11D9346D462DCCE08F70DCB8A2B /* PBXTargetDependency */, - F7F025EA80FD03E71128C3E29F44BE0A /* PBXTargetDependency */, - 39394EA064FE9B66978C278F8E1BCF9C /* PBXTargetDependency */, - B25C2B9883789EEACDC481AF2188681B /* PBXTargetDependency */, - 9F65097BA3ADC94C431AAF50966A7F6B /* PBXTargetDependency */, - BEBCDC03D4BD0586055AEFAA519829C4 /* PBXTargetDependency */, - 4874DEA074BEFBAB641CF49186945583 /* PBXTargetDependency */, - BC320AEB0A619482F987FF8F12F78522 /* PBXTargetDependency */, - 64F9D361115E034736BD7138F7A63289 /* PBXTargetDependency */, + 2B27C9F90D27075C2943DECE68F139A9 /* PBXTargetDependency */, + B7277701FE931038EF402AE583E41439 /* PBXTargetDependency */, + C68052104BDE6619A09EE6D897B8E2D8 /* PBXTargetDependency */, + 4B98B900F360FF09004D41BEA3276EC0 /* PBXTargetDependency */, + 817C6B4B93632A4CCBF70D8E71E2DCE1 /* PBXTargetDependency */, + DDDE136CE343200BE18FDF53877F173B /* PBXTargetDependency */, + 207DF48FDAF75957BE2EFEA66AD6AB86 /* PBXTargetDependency */, + 4696C8575AECE3CFD8D58864CD875DE7 /* PBXTargetDependency */, + 061C403ACA725304B1415AB1A250A9CE /* PBXTargetDependency */, + B5BA89CD92F68C94BB293042FDD11389 /* PBXTargetDependency */, + 4FB7C133757462BC700455530E83769E /* PBXTargetDependency */, + 24E01A328BED0CC06DDD2AFE2468CD03 /* PBXTargetDependency */, + E5DD2F50813A1B179ED309035B8AD60C /* PBXTargetDependency */, + 44CFE0EC6114F0BC36A73A8D6160B60C /* PBXTargetDependency */, + C01F3611BCF0797212BE091AFBE9ADA2 /* PBXTargetDependency */, + FBC333C2805FE683CE88DC1E5C2ACACF /* PBXTargetDependency */, + EDCAFFECCE4B51A96D7CD7D4B110C71C /* PBXTargetDependency */, + E2E5C144DEACB1A0B1192C0691EE618E /* PBXTargetDependency */, + 402DF9F4F3B659E97156BD10D7B96A5F /* PBXTargetDependency */, + BB52FE426FCB2B9B4976E23104332EC9 /* PBXTargetDependency */, + F34C466875A62259DBF661F6571B27CA /* PBXTargetDependency */, + 1CED298031909B4A2228C8C5604E6EB4 /* PBXTargetDependency */, + 50F9C996729DF3F93CEBE36FDDD8AF90 /* PBXTargetDependency */, + 7008C9C8BCDF9DDFAF0CD6A3F04F1335 /* PBXTargetDependency */, + 725AE71C3A2B13362A23D5749EF7255D /* PBXTargetDependency */, + FBF4BE57DD18DC9ED5B10D283C3CDDA1 /* PBXTargetDependency */, + 8FFE51FB78D6816F0CADFF38D7ECA778 /* PBXTargetDependency */, + 34A1669AA5AF64C055371396C4F202C0 /* PBXTargetDependency */, + B5EF6422E8E3AB66152D9A61EC864311 /* PBXTargetDependency */, + 1E03BDDAC31DA25C8698063042FAF049 /* PBXTargetDependency */, + 8877D5E0EEE1DD78A1014C64028D4D62 /* PBXTargetDependency */, + A0FE5D115DEBE10AA1CA7FC3BA6439B2 /* PBXTargetDependency */, + 224FE2A9E8E094FC78F47ACEB76E3D3B /* PBXTargetDependency */, + BB1364AB7D0447A322BCB1DF1AF29045 /* PBXTargetDependency */, + 1E24B1D52C012DE316BCDF7C5190BC3C /* PBXTargetDependency */, + C4DAB8943E3E9855D00F52950A4CACE3 /* PBXTargetDependency */, + A40256367D87914D96EA5A3D09884E1B /* PBXTargetDependency */, + 2E48F8DE50AF5F31D0091D58A87E9875 /* PBXTargetDependency */, + 807F333BF23905B1E9AF2BD58BE33546 /* PBXTargetDependency */, + 8038FBBF7E223092EFC42218782D0712 /* PBXTargetDependency */, + E9D08F25FCC9729707315C5F7BC9B634 /* PBXTargetDependency */, + D9D759995AEAF03A6113A7C7172B1425 /* PBXTargetDependency */, + AE3C910BE4CB8B0E4506866BFEE78BBD /* PBXTargetDependency */, + 46105C7D9839E7863E9E909AF517E08B /* PBXTargetDependency */, + 414EF157A38A9B494612BD00C65BE7E8 /* PBXTargetDependency */, + 44444A2443D16047FD855E45433F9245 /* PBXTargetDependency */, + 6AF0282E2DB2A77BEBAD52E6EF76638A /* PBXTargetDependency */, + 97391BCB5EA6BAFD35611AC633F21360 /* PBXTargetDependency */, + 7166CDF698AC64CE406A4DB0D0BC4FA9 /* PBXTargetDependency */, + B5BA93E387F0C267CB201791E4A0BED9 /* PBXTargetDependency */, + 8221B1738AF9192E9DD50A8393FA1859 /* PBXTargetDependency */, + 9F08BE7023F38CDDEAE7CE2A93402350 /* PBXTargetDependency */, + 8C82E67852D70D12B52772C4B511AE8F /* PBXTargetDependency */, + CC7DC8F4DE765A10056957A4E1539B16 /* PBXTargetDependency */, + 8999125113F44786583067BFC21019A2 /* PBXTargetDependency */, + B2C90F7BD11F5D0E4D8CF0B52A416B1E /* PBXTargetDependency */, + A54AA3D8AECBDB2F47473FF0456CF9DC /* PBXTargetDependency */, + 3206332EC297C2CB789FFA852235F355 /* PBXTargetDependency */, + 6225C545DC2C274D64BE6F415560DB64 /* PBXTargetDependency */, + 7AFE74154789F59A8DEA5546B4460942 /* PBXTargetDependency */, + C765F5013609942EF99B6CB27CA28752 /* PBXTargetDependency */, + DA28417A14A760ED0C6B7E4145948279 /* PBXTargetDependency */, + A76E62824034988F7BDC9703FBE8FBF5 /* PBXTargetDependency */, + 0441872748307B0EAD456FA49F9BDB1B /* PBXTargetDependency */, + F3E0E8B2ED11D3F8587D4AFD37F42605 /* PBXTargetDependency */, + 6963EE38CEB3EB43B0DEA6BCFC84287C /* PBXTargetDependency */, + D6CC9A3C23E29BADD500160663B0238F /* PBXTargetDependency */, + 454EE88A0BEAFB303B7BD36D40C28DC9 /* PBXTargetDependency */, + 6B007094177FF27B7638BB9F050B8301 /* PBXTargetDependency */, + A3974F41B7177DB268521D4FA2DC53EE /* PBXTargetDependency */, + 662A38D6996F34121F7AC867D6CB89CA /* PBXTargetDependency */, + 451E0489D9AB5FD954C4A2A0829901DA /* PBXTargetDependency */, + 1030E3ED59C0BA707461444765DDB210 /* PBXTargetDependency */, + 94D354973347F40059819DF81DB5138C /* PBXTargetDependency */, + 58F9765CDF3BBC3DCF8315628FFE2BED /* PBXTargetDependency */, + CFD8197E95D79870C91A9B2515DBCD42 /* PBXTargetDependency */, ); name = "Pods-ShareRocketChatRN"; productName = "Pods-ShareRocketChatRN"; @@ -15750,111 +15545,111 @@ }; B37ECF22F1589E28F59BC9990B4DC476 /* Pods-RocketChatRN */ = { isa = PBXNativeTarget; - buildConfigurationList = 132C9EBB4B8C9557FAE86DA2CB5B8D86 /* Build configuration list for PBXNativeTarget "Pods-RocketChatRN" */; + buildConfigurationList = 22C63FCC2CA78513B982BE9861348DAC /* Build configuration list for PBXNativeTarget "Pods-RocketChatRN" */; buildPhases = ( - B6B024C39B4CAED8226D97F6E0458731 /* Headers */, - 831C96A808EC23A707E6630AB2D3B83A /* Sources */, - 0DECAD13919150B7757AE9FB2B83BA0B /* Frameworks */, + B70FA37DB500C4FB49EBB1046A68A009 /* Headers */, + FDFBB166C9CCE7301473AAA7CB3BD84E /* Sources */, + AB9273482365358EF6EA8927DDDE56FD /* Frameworks */, ); buildRules = ( ); dependencies = ( - 7C42540693DADBD9040D4B81CB1D2A99 /* PBXTargetDependency */, - DD7684F9D5200245557E279911983C90 /* PBXTargetDependency */, - F8C6F9D055E835F3BC4D29564755279D /* PBXTargetDependency */, - F1BF5BF7BE7863B68DEB1A018FFA20A0 /* PBXTargetDependency */, - 3BB3977B43FB5F787D54E2631F7318DE /* PBXTargetDependency */, - D9AE557073C28D230E3358B06C2903F4 /* PBXTargetDependency */, - 2EFF65E94D3FF1669A0BCC0AA13BEB5B /* PBXTargetDependency */, - A05C62A134335EE47EE2999668AC9DF4 /* PBXTargetDependency */, - A9E45F5187F56D8FC9EAC9B0B2D89FFB /* PBXTargetDependency */, - 6B6865786999DF64ADBE545E2CC1B864 /* PBXTargetDependency */, - 2A861EE2E0A0500C6B0D1E31695DAA0D /* PBXTargetDependency */, - F02C569A7B7446500A3F66571866137A /* PBXTargetDependency */, - 42C885B6E70F9D03CEDC0392E6DE9A72 /* PBXTargetDependency */, - 48098A54FF753CECE0ACD31A6C7B7BAD /* PBXTargetDependency */, - 8703D83B4E147BAAA3F2D9E7B2F5BFEE /* PBXTargetDependency */, - CDD5DE433F5C69FE672EFD98067D362E /* PBXTargetDependency */, - C08280818B7F286CB910BAA1977F3D1C /* PBXTargetDependency */, - AE9745E09746AEB30D7029E015929D96 /* PBXTargetDependency */, - D1410D6B7EC5C971719299370BEF8B1C /* PBXTargetDependency */, - 6227AF8CEEABE7DB32211D777DAA8674 /* PBXTargetDependency */, - 279F20C00C00E05A8D8F83E4D8B016ED /* PBXTargetDependency */, - 4444B83908E40CE755D6DF1285AD8B15 /* PBXTargetDependency */, - DC5A8D742DDE0FA60A311CB8628A71BC /* PBXTargetDependency */, - BAC8C0AEA84B1943247C572AB514BF95 /* PBXTargetDependency */, - 69FF5033CA629F4E9A7C38672D68416C /* PBXTargetDependency */, - FC45D24E4937D74AA904E5EB0148A9F3 /* PBXTargetDependency */, - 1C54974F3471E2C519E44CDFC9FB1565 /* PBXTargetDependency */, - 1A7D75764674691942750057ED15BA1F /* PBXTargetDependency */, - 0338FFEA11AAEF51DB5F1B55714FCDE3 /* PBXTargetDependency */, - BB656295EC18A48BB8EA7B7E6551ACCD /* PBXTargetDependency */, - 0B23DF1B71032095556AC59FB3D50C39 /* PBXTargetDependency */, - E07849D3ACFDCA6068FF36FDAFDFB577 /* PBXTargetDependency */, - E6E3F5356566FC42623507F9C6786E1C /* PBXTargetDependency */, - D610246BAC1CCC282488D93F4A2C245D /* PBXTargetDependency */, - 4C877A9A6CC94B99CF5683237890C838 /* PBXTargetDependency */, - 55BDCA0919E00588B6FCB8E08623D1A4 /* PBXTargetDependency */, - 6E1FB484B0BE5DE8F670DC8104A4A1EB /* PBXTargetDependency */, - 7243B40A4ED8F3F670F344F6BD62070F /* PBXTargetDependency */, - 778D6E2EC9FD44ACD19683562E13ACB8 /* PBXTargetDependency */, - 827B7A7CC0C9CBB709BB519009A5E11E /* PBXTargetDependency */, - 932924B52C6E302F7F44F729BCC7450A /* PBXTargetDependency */, - 64D006973428FF145832DE55B4ADD105 /* PBXTargetDependency */, - C4DDBCF45BF07E13AB8984E67C804F3F /* PBXTargetDependency */, - 51682440EE4ECA163163299619696F6E /* PBXTargetDependency */, - 4C5048332490FA1454293F9662EBC9A0 /* PBXTargetDependency */, - D093AF8EB63158AA48C29BC73607E481 /* PBXTargetDependency */, - A2642DF45AD30CF57E96BB8AE496D3B9 /* PBXTargetDependency */, - 29397A9008BEC3610D473F5B336F0097 /* PBXTargetDependency */, - 4ABB6D34EBE1A5EF29978772FDFE2546 /* PBXTargetDependency */, - 6455BDF5470EA31F9D511AB74FF71205 /* PBXTargetDependency */, - 2346BC570DB607C37C907B377DB077DF /* PBXTargetDependency */, - A0B57DFE2C888F12F1BAB90F946A7636 /* PBXTargetDependency */, - 7CB2A713B2AA45D231C0013CA87BB137 /* PBXTargetDependency */, - 4AB8DC1925CA3F626BD7116C62093525 /* PBXTargetDependency */, - 4C365C314CA12C435EB24E7CBE7E7152 /* PBXTargetDependency */, - 64F778B9B3AE1A4039B5250F0781F314 /* PBXTargetDependency */, - 173C277DD6C924C9E7D380223409A597 /* PBXTargetDependency */, - 9EE5C973D52C030CAD611456CFE8734F /* PBXTargetDependency */, - 9FA0444169D3235A04170719DA809062 /* PBXTargetDependency */, - 3A2D372F137B3B7E454A0B545DBA0950 /* PBXTargetDependency */, - DA1460FFFC35999F8EBC4251C3D3FD32 /* PBXTargetDependency */, - CF0B61233EA5E61E8B9A6966FF96C81E /* PBXTargetDependency */, - 2FF05EAE65EF764E51DB38FC595D5E8D /* PBXTargetDependency */, - 767EAFEDEF3D890F6C9E212123AF56B2 /* PBXTargetDependency */, - F641EEBAE87B4B6344CE0C79C21B0AED /* PBXTargetDependency */, - 6C44374FFAE8C8A22C92975656B63ECE /* PBXTargetDependency */, - E731D45305F190E856481E90D4CEE15D /* PBXTargetDependency */, - 620E923E5D440AEF93D314A1A2E73D7B /* PBXTargetDependency */, - 49B1B9608FCB7122E5D2DB8757F14041 /* PBXTargetDependency */, - 7050B04A9375CF1E28E0D30769B0BA69 /* PBXTargetDependency */, - 1CE78B4DC2E3F7D37C4E640D635F2CFF /* PBXTargetDependency */, - 5F58BA1E7714DF81C92ACFC88D2C187F /* PBXTargetDependency */, - F857CEF1D9C0C54A524B7365559EDF6B /* PBXTargetDependency */, - EACB93C4CD3A1E7156F7CEB6E10C9E9B /* PBXTargetDependency */, - 689CCA13EB63FBD13F3113743EE94085 /* PBXTargetDependency */, - AD8E44B5ADDED7B490DCE36886AE266F /* PBXTargetDependency */, - 8E25D2E5E8AC395104D68D5A1ACF17B5 /* PBXTargetDependency */, - A733B4BD2361231F988535F906D20DA5 /* PBXTargetDependency */, - FA9FD220DFCEDAA5D7F06C365FDC531A /* PBXTargetDependency */, - 5A4DFD8408DA6461FA236C0D6339E524 /* PBXTargetDependency */, - 55F6BA7B11F482A5F138F48C97694A21 /* PBXTargetDependency */, - 3FEFF916887BED55289DA9AD05D7D881 /* PBXTargetDependency */, - EF4577BDE3C12BF4C09BD9C95E339254 /* PBXTargetDependency */, - 1020EC95801017CE2527496B3B98316C /* PBXTargetDependency */, - 52E740573D08819F93B98063BD6A4EA9 /* PBXTargetDependency */, - 4A15CF691985A892E37145989A63382A /* PBXTargetDependency */, - 03DB02F3677C899325BFAE87E7EEF3BD /* PBXTargetDependency */, - 77271291B53633A6F41F85E4B915B2CB /* PBXTargetDependency */, - 1DC1995EEFE198F6A21A31E93B9D04F8 /* PBXTargetDependency */, - 9200A540FE253FE1992B22D971F59132 /* PBXTargetDependency */, - 1C891A674343CD49E004B8B34F3104FC /* PBXTargetDependency */, - C814E071323D7A85787CE8E1606EE163 /* PBXTargetDependency */, - 9389A51EDBB809A0243016D9BE7A65EE /* PBXTargetDependency */, - 96ED2DE6F7E45D767F291B3EA2540AD3 /* PBXTargetDependency */, - B319D35B1FBB7276B63C94AA5B99F194 /* PBXTargetDependency */, - 570E4D0C92EDCAA937805660337E301F /* PBXTargetDependency */, + 7A84AC0B850C2ACA8823E006151A914A /* PBXTargetDependency */, + AFF7D3DA6966EDEF38FC7DF4AC786C1F /* PBXTargetDependency */, + 88F48CDF52A5E4B47A52BBFE1B73E37F /* PBXTargetDependency */, + C80EA0A59E336449575D913BABD77202 /* PBXTargetDependency */, + A287782EF4E8D5739B860B752CD73607 /* PBXTargetDependency */, + A9AC068B98EAE9C99F64F5066AC0E029 /* PBXTargetDependency */, + 39A2F54520ED61ACDE176909D7118A22 /* PBXTargetDependency */, + 62EECBDDE3AB5DBC50BE2D0169F5142F /* PBXTargetDependency */, + 6D4D6C3687262B2402501E8377CF20C1 /* PBXTargetDependency */, + 1E055C66471A257F410D42736619F1C7 /* PBXTargetDependency */, + 4289F05EC6EF8FD4813972374E19ECE1 /* PBXTargetDependency */, + BAFBA54243912A9C54BF2BBA0CE2AD38 /* PBXTargetDependency */, + 9FE5EC675F524CE34CDB2C2B4567B302 /* PBXTargetDependency */, + 1F265EF8B74E8399F0E11D8D6251019E /* PBXTargetDependency */, + D4FF568CC9B323AEEFF152582DFC1D23 /* PBXTargetDependency */, + 72F591E99CC9DA2D7048DB3BCBCF79ED /* PBXTargetDependency */, + E40D9786F064CA342C1AAF1EE2A77CA0 /* PBXTargetDependency */, + C2F4206BB7EFC40BADA156B6D2F31372 /* PBXTargetDependency */, + 95BF1D972B60A83719CE6033C008EC95 /* PBXTargetDependency */, + 97FACCEA5DC5AD5E9E929FD4A700F746 /* PBXTargetDependency */, + E5AB078597B0E79A663BF613369E8F66 /* PBXTargetDependency */, + 51A84BEBF79E28465F94645E302253FF /* PBXTargetDependency */, + D1BE63AD4CFA1C520D25CEEAE6E9F069 /* PBXTargetDependency */, + 3D0996AC19364139830B3C755A10BBD9 /* PBXTargetDependency */, + 989A79EAC361D202181FD2A3BCB7A9BA /* PBXTargetDependency */, + 726C47D62A6DCB5B100674D748AA2936 /* PBXTargetDependency */, + 9280EC0896D2E4C9291DBA20AC1E3EBA /* PBXTargetDependency */, + AEEC5027DBAE9BF5071E64934C278BC1 /* PBXTargetDependency */, + 2EE54AEAE6B649DEE1E1D5E8DE94C399 /* PBXTargetDependency */, + 8C338A8BA51353556AF762DAA99865D7 /* PBXTargetDependency */, + 08379DED7946D517AEFFFB1C495BAD0D /* PBXTargetDependency */, + A4698F5EF2C9D44C71E5451F8D7F4EF9 /* PBXTargetDependency */, + ABFA780C21817FEAC332DC01DAEFDA17 /* PBXTargetDependency */, + DAADD6F8FD9A805E023B14571859AB54 /* PBXTargetDependency */, + 500B7650027C8A2B9D022699D35F9019 /* PBXTargetDependency */, + 906102FDAAF023E00C17FC8AC5DD53D8 /* PBXTargetDependency */, + CFFA0CC94DD2CB29D5AACFA984995F6E /* PBXTargetDependency */, + EFA76C3B5FD60FA26195B71E0996A5AC /* PBXTargetDependency */, + B78928CE49714789A7B477806BC4B45F /* PBXTargetDependency */, + B5FF97FB2922D162AB6224AF92602BE3 /* PBXTargetDependency */, + E5289B48EC1C468E8419390D69537783 /* PBXTargetDependency */, + 238EC6F1405C00346734336B96867426 /* PBXTargetDependency */, + B0DDB00D57EB0705C2248E6EFD0BD656 /* PBXTargetDependency */, + 41D14E3F6504ADCFE0EDB9B2D47C3266 /* PBXTargetDependency */, + 3BEE80EB39EB36AF8C122E3287C12773 /* PBXTargetDependency */, + 5EBD626D919CF032767C1CEB5D75B47B /* PBXTargetDependency */, + 1C47AEBA0E81E96429649FCE342DC7CB /* PBXTargetDependency */, + A87107B96D54E569013C38212A90946F /* PBXTargetDependency */, + AAFE21BF0F15FD348E58081A5CCA6B8E /* PBXTargetDependency */, + 33980857A233F0ADA4E4ACC89AEA906D /* PBXTargetDependency */, + 77AF736F8DB7A6BAFA013A2393510763 /* PBXTargetDependency */, + 7559C9A368A8ADD19755952A412D10BB /* PBXTargetDependency */, + 8530F97274B108307134FC8511B46202 /* PBXTargetDependency */, + 9163DED1C603F3AB259539496EF7AF5D /* PBXTargetDependency */, + D1177B4FEED11D1FD9D239D61600CE3C /* PBXTargetDependency */, + D997F0460FA1B2D28A60B858803B0998 /* PBXTargetDependency */, + 4DB262C02AC2EFAD730ACEF2CFEBB75A /* PBXTargetDependency */, + 7949610E6575E9A0360B5FC604F78906 /* PBXTargetDependency */, + 4499E36CCF66D01C60CD280867FF4317 /* PBXTargetDependency */, + B6F4895E38BC6EE9EA9477D2F14C83BE /* PBXTargetDependency */, + 67FD0531B202FDB699738477FB5EB281 /* PBXTargetDependency */, + 58B116F0E92D0D36B5D94D3735BDDDFF /* PBXTargetDependency */, + EB545AB8C877379B18F236E3D7B95990 /* PBXTargetDependency */, + F7BD806638859434B412E59759C603FC /* PBXTargetDependency */, + B97D0A4429E977CF13B9BCC37691107F /* PBXTargetDependency */, + 0EBF0AB6D2ABA2BA271272E8DF9F2336 /* PBXTargetDependency */, + 29F403BDC9DF80FDC33D71A18979D152 /* PBXTargetDependency */, + 0224D8FFA7770EAAD3E29A8943E37743 /* PBXTargetDependency */, + 8069E1974A7ADEB458932407B9C058CC /* PBXTargetDependency */, + F03C6F559C35EAA0BD70B89830A7BBD4 /* PBXTargetDependency */, + 3E39107C1BFE697DDD4C8A710B780D90 /* PBXTargetDependency */, + F4C295549391B4D06DB9195BC833860D /* PBXTargetDependency */, + 134EE37611604C0AD984DB135684E552 /* PBXTargetDependency */, + 1CC5A7CAF9D55879F32F19E3AB78A29C /* PBXTargetDependency */, + E5DF40349A9FA58BAFE8E372593E16DA /* PBXTargetDependency */, + 9C49333071826364DB9879C02F46D33F /* PBXTargetDependency */, + 070928AC68191503C88D13472A42443C /* PBXTargetDependency */, + FF966287318C3F5FF889D3F508A312DB /* PBXTargetDependency */, + EED47877F8BC899F5DB0C3FCA7C861CC /* PBXTargetDependency */, + 84A3FBE5991121E7C1D10861DC129891 /* PBXTargetDependency */, + 1E06FE9F7562683923D2809D919BE7ED /* PBXTargetDependency */, + 89D7826BCE8D27ADE3A676F808A643D9 /* PBXTargetDependency */, + DD1256B343396DFD1A9D9EBDBFF29AE7 /* PBXTargetDependency */, + 72A60D74C29658A69B3CDB3A91792866 /* PBXTargetDependency */, + BCF94BEABD6498522E46D28CE7A6961E /* PBXTargetDependency */, + 017BFD997B9A640049115528280BBB89 /* PBXTargetDependency */, + 77403B266F207262F83E07E3F766414B /* PBXTargetDependency */, + 57EB97C8643DEB575144A8F2BD2B4A9F /* PBXTargetDependency */, + 094E10648C49DA899E10C05F15B00576 /* PBXTargetDependency */, + F6B45066897BD96CDE06CB2B0EBB86D4 /* PBXTargetDependency */, + E19391BE35EFE72641E74D271D21D255 /* PBXTargetDependency */, + 01220C9B16D9C61BB5F65F1CE06029A2 /* PBXTargetDependency */, + F3C089854C6EF22BCEBB398203DF7DEB /* PBXTargetDependency */, + AA1AA036B855A3C9BFDA265CC1EB7009 /* PBXTargetDependency */, + 10CA4BF47A0D6EFFF07F7A4BB96F50CE /* PBXTargetDependency */, + 921206C99F7282EBF8234B61E640FF52 /* PBXTargetDependency */, ); name = "Pods-RocketChatRN"; productName = "Pods-RocketChatRN"; @@ -16280,7 +16075,7 @@ Base, ); mainGroup = CF1408CF629C7361332E53B88F7BD30C; - productRefGroup = 0467E9D4903E106DE7556288C53A4B54 /* Products */; + productRefGroup = EA3C131100967BDC7F9E2967AF93B4EC /* Products */; projectDirPath = ""; projectRoot = ""; targets = ( @@ -16293,6 +16088,7 @@ 6C1893932A69822CBE3502F2E0BCFB6D /* EXConstants */, 868B90C74770285449C60DBA82181479 /* EXFileSystem */, 409F3A0DB395F53FFB6AB30E5CD8ACD1 /* EXHaptics */, + 0CF4D9052577C85B6B8C4E957332626B /* EXKeepAwake */, 0A72FB88825FDC7D301C9DD1F8F96824 /* EXPermissions */, 9EB556EE511D43F3D5D7AAF51D8D0397 /* EXWebBrowser */, ABB048B191245233986A7CD75FE412A5 /* Fabric */, @@ -16369,7 +16165,6 @@ A30157FD17984D82FB7B26EE61267BE2 /* RSKImageCropper */, 3847153A6E5EEFB86565BA840768F429 /* SDWebImage */, 1953860EA9853AA2BC8022B242F08512 /* SDWebImageWebPCoder */, - 1948D0B63D2CF6A48E18B0B292BC6091 /* SocketRocket */, 49821C2B9E764AEDF2B35DFE9AA7022F /* UMBarCodeScannerInterface */, 0A915EE9D35CA5636731F8763E774951 /* UMCameraInterface */, 9668C19AA6D8EA320F83875FA286855A /* UMConstantsInterface */, @@ -16418,6 +16213,15 @@ ); runOnlyForDeploymentPostprocessing = 0; }; + 0657C5F9594D9B1A08090F90241E18DB /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + 8A6AB74E5D979D543445E1AC15D30957 /* EXKeepAwake-dummy.m in Sources */, + EBA878971E9F0642C4A9BB01CC1CF5CF /* EXKeepAwake.m in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; 0F4F8578468E69A8701D946920E5C85B /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; @@ -16670,6 +16474,14 @@ ); runOnlyForDeploymentPostprocessing = 0; }; + 35AD62FD707FA301DF2D8D32B763802B /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + 68536012826BEDB1F105F3F5B5EF1C75 /* Pods-ShareRocketChatRN-dummy.m in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; 35CBB4594575EC2965E4BD8A8C2F47E0 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; @@ -17215,33 +17027,6 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 67BC8870FD97F0354ACE96CFEE8AB459 /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - 7F2016911D6079D7131255B0EC732124 /* NSRunLoop+SRWebSocket.m in Sources */, - 0D360F835FCBC1D6F7449ECAC5B1F8CC /* NSURLRequest+SRWebSocket.m in Sources */, - DE5718473E4FB5F963AF5CBDE9FFC7C9 /* SocketRocket-dummy.m in Sources */, - 53313D8E22994AEED5AF4C7B9C0480D4 /* SRConstants.m in Sources */, - 09FC4C35964C8A008D2885289A771E30 /* SRDelegateController.m in Sources */, - E540203DB6826ED6957CD9E24F8C4B3C /* SRError.m in Sources */, - 7DB9D917AAE03D151EA0C36E9F807A2F /* SRHash.m in Sources */, - 55032C2C2E41A93524DB8CD689D59182 /* SRHTTPConnectMessage.m in Sources */, - B0A2F385F24E23104EBE064D2E9F96F6 /* SRIOConsumer.m in Sources */, - D974AEEACF5ADB911F4AA3C853D47D85 /* SRIOConsumerPool.m in Sources */, - EACE68BBD4942597E5ADE9391E6A38D5 /* SRLog.m in Sources */, - CD91D2C366431EB9D88F23EE6B168274 /* SRMutex.m in Sources */, - C139E6A4DFA2EE38110230A5CAE784EC /* SRPinningSecurityPolicy.m in Sources */, - 2B297C7AA7AD6BA70D00DABC76D754E0 /* SRProxyConnect.m in Sources */, - BBC80520412E1AB6BF6F4A6FB1183715 /* SRRandom.m in Sources */, - 471514FEDB233B1338BF401C9BAA6330 /* SRRunLoopThread.m in Sources */, - BFFEE86F251CF7A686CA79F52D64A7DB /* SRSecurityPolicy.m in Sources */, - 6CB6D8CE84AA287C4DF317E4277E65EA /* SRSIMDHelpers.m in Sources */, - D769A9D8FA743C94E0855AA477F775D7 /* SRURLUtilities.m in Sources */, - 5993BBBF2D1345B06D4408D775C0B02A /* SRWebSocket.m in Sources */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; 67E9F6969AB2358E8DE16FEA91209509 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; @@ -17383,14 +17168,6 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 831C96A808EC23A707E6630AB2D3B83A /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - 46CB0FC7F039CAE460BCF9F04A2784A6 /* Pods-RocketChatRN-dummy.m in Sources */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; 8554764A2D1C1901709057D3B8ABEBB9 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; @@ -17709,14 +17486,6 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - DCF09E83F234CBD8F648E80A809A5C5A /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - 85FDCD87A5A459571369B5DD771AD69E /* Pods-ShareRocketChatRN-dummy.m in Sources */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; E52752F659F5427D67E7BC18DCD04B86 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; @@ -17894,6 +17663,14 @@ ); runOnlyForDeploymentPostprocessing = 0; }; + FDFBB166C9CCE7301473AAA7CB3BD84E /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + 2DB6EA0A95D099F4D025EFA6B3B918C7 /* Pods-RocketChatRN-dummy.m in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; FDFC94B87985729A9A67E6C7B03D41FC /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; @@ -17908,23 +17685,29 @@ /* End PBXSourcesBuildPhase section */ /* Begin PBXTargetDependency section */ + 01220C9B16D9C61BB5F65F1CE06029A2 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "react-native-orientation-locker"; + target = 1092C13E1E1172209537C28D0C8D4D3C /* react-native-orientation-locker */; + targetProxy = A55B3FFF4BCC0F71872E6689F2D1DFCF /* PBXContainerItemProxy */; + }; + 017BFD997B9A640049115528280BBB89 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "react-native-cameraroll"; + target = BA3F5E5AA483B263B69601DE2FA269CB /* react-native-cameraroll */; + targetProxy = 16EE8CD1FF8341FC05401B1FFB50FAAE /* PBXContainerItemProxy */; + }; 01C4775EBB1ADD0B79CC48B319789E79 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "React-jsi"; target = FA877ADC442CB19CF61793D234C8B131 /* React-jsi */; targetProxy = 97B757EDAC3A7488ACC8A43E74C8388E /* PBXContainerItemProxy */; }; - 02FF724E5E60A61866412D1E7740A367 /* PBXTargetDependency */ = { + 0224D8FFA7770EAAD3E29A8943E37743 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "react-native-document-picker"; - target = D11E74324175FE5B0E78DB046527F233 /* react-native-document-picker */; - targetProxy = F1BA40FD4AD440AE493BF2B47C1766D3 /* PBXContainerItemProxy */; - }; - 0338FFEA11AAEF51DB5F1B55714FCDE3 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = RCTRequired; - target = E7E7CE52C8C68B17224FF8C262D80ABF /* RCTRequired */; - targetProxy = 61D253BF4BF3B335C16FC14020867A2F /* PBXContainerItemProxy */; + name = UMCameraInterface; + target = 0A915EE9D35CA5636731F8763E774951 /* UMCameraInterface */; + targetProxy = D1F0A8A4C0C3F2C03A3D7FBC2575582D /* PBXContainerItemProxy */; }; 03C5D1361123B1B19A913F4F89661FDB /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -17932,17 +17715,11 @@ target = 8D7F5D5DD528D21A72DC87ADA5B12E2D /* GoogleUtilities */; targetProxy = 46123FA0B5C451A00D38BB12B40AD23A /* PBXContainerItemProxy */; }; - 03DB02F3677C899325BFAE87E7EEF3BD /* PBXTargetDependency */ = { + 0441872748307B0EAD456FA49F9BDB1B /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "react-native-document-picker"; - target = D11E74324175FE5B0E78DB046527F233 /* react-native-document-picker */; - targetProxy = B9997011EB2CDC3E3C987C6F2B090B93 /* PBXContainerItemProxy */; - }; - 056157FB41377A51B0DACE7C117ED1A0 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "React-cxxreact"; - target = 463F41A7E8B252F8AC5024DA1F4AF6DA /* React-cxxreact */; - targetProxy = 683625EFAA3568932482E5F07807A601 /* PBXContainerItemProxy */; + name = "react-native-appearance"; + target = 3FF2E78BB54ED67CA7FAD8DA2590DBEE /* react-native-appearance */; + targetProxy = 1803D02D6EBBEDD9C5C815D52B61832B /* PBXContainerItemProxy */; }; 0601407CEF1C58A062803387CCDB2AF4 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -17950,11 +17727,17 @@ target = A4F685BE3CAC127BDCE4E0DBBD88D191 /* Folly */; targetProxy = D1DD6F0528614F3F6A959C01AB7F7DCB /* PBXContainerItemProxy */; }; - 062DF6946283CFC984D6C5257B65C8E0 /* PBXTargetDependency */ = { + 061C403ACA725304B1415AB1A250A9CE /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "React-RCTVibration"; - target = 53D121F9F9BB0F8AC1C94A12C5A8572F /* React-RCTVibration */; - targetProxy = 77A78C56EF51EAEB9705D71E532AED69 /* PBXContainerItemProxy */; + name = FirebaseCore; + target = 4402AFF83DBDC4DD07E198685FDC2DF2 /* FirebaseCore */; + targetProxy = E535117EE9B58CCE58841E18F68A2FCA /* PBXContainerItemProxy */; + }; + 070928AC68191503C88D13472A42443C /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = UMSensorsInterface; + target = 2038C6F97563AAD6162C284B3EDD5B3B /* UMSensorsInterface */; + targetProxy = B76BAC39C44294E0D043F09AC513FE5A /* PBXContainerItemProxy */; }; 073CD2E5F0971C9A28E591F6289C48BA /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -17968,23 +17751,17 @@ target = 87803597EB3F20FC46472B85392EC4FD /* FirebaseInstallations */; targetProxy = B7EE9B1370B572054C651D54BC4B9907 /* PBXContainerItemProxy */; }; - 07854B9025E62B36C2C671AE3AF1CEBF /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = glog; - target = D0EFEFB685D97280256C559792236873 /* glog */; - targetProxy = B9453E4CD6DF1903209912291CF96009 /* PBXContainerItemProxy */; - }; 0819D4E8DCB748F652F6C3216F88A453 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = React; target = 1BEE828C124E6416179B904A9F66D794 /* React */; targetProxy = 449D79087AC8EFD285D3D6948D363A86 /* PBXContainerItemProxy */; }; - 0863F0500523DD7362FD5931C6ED1B9D /* PBXTargetDependency */ = { + 08379DED7946D517AEFFFB1C495BAD0D /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = Yoga; - target = 2B25F90D819B9ADF2AF2D8733A890333 /* Yoga */; - targetProxy = C2D580F0A58F3C8626ABC259778C7A88 /* PBXContainerItemProxy */; + name = RCTTypeSafety; + target = D20469A9A1E5CFB26045EAEBE3F88E5E /* RCTTypeSafety */; + targetProxy = 8A87188C05899B247B1FF00CB90AB751 /* PBXContainerItemProxy */; }; 08834986FB3887AACF94417FB2063810 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -17992,17 +17769,11 @@ target = 7ACAA9BE580DD31A5CB9D97C45D9492D /* React-Core */; targetProxy = A9D92F68FAFAEBBE26C78B0172ED347C /* PBXContainerItemProxy */; }; - 0B23DF1B71032095556AC59FB3D50C39 /* PBXTargetDependency */ = { + 094E10648C49DA899E10C05F15B00576 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = RNAudio; - target = 449C1066B8C16DEDB966DCB632828E44 /* RNAudio */; - targetProxy = B955208A95BD7691909D8749F71CA61D /* PBXContainerItemProxy */; - }; - 0BBD73D56FA14698E02CA66A39B3DBDD /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = FirebaseInstanceID; - target = 9E25537BF40D1A3B30CF43FD3E6ACD94 /* FirebaseInstanceID */; - targetProxy = B41D19483817690C78B591E40505B64F /* PBXContainerItemProxy */; + name = "react-native-keyboard-input"; + target = 7573B71C21FB5F78D28A1F4A184A6057 /* react-native-keyboard-input */; + targetProxy = D84750D5A401283763418104EB515415 /* PBXContainerItemProxy */; }; 0BDC71A280A13EDA3BACEEA9FFA4057C /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -18022,11 +17793,23 @@ target = D0EFEFB685D97280256C559792236873 /* glog */; targetProxy = B7CA8E5E6048734280447632DB142C89 /* PBXContainerItemProxy */; }; - 1020EC95801017CE2527496B3B98316C /* PBXTargetDependency */ = { + 0EBF0AB6D2ABA2BA271272E8DF9F2336 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "react-native-appearance"; - target = 3FF2E78BB54ED67CA7FAD8DA2590DBEE /* react-native-appearance */; - targetProxy = 23AE9A60EED8C7BF431D3BB2632650DE /* PBXContainerItemProxy */; + name = SDWebImageWebPCoder; + target = 1953860EA9853AA2BC8022B242F08512 /* SDWebImageWebPCoder */; + targetProxy = 9AD8983FA0475B257AAD1540B914672A /* PBXContainerItemProxy */; + }; + 1030E3ED59C0BA707461444765DDB210 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "react-native-slider"; + target = A4EF87F5681665EAE943D9B06BBB17DF /* react-native-slider */; + targetProxy = 305431159BAB7B60191FF052302F59D8 /* PBXContainerItemProxy */; + }; + 10CA4BF47A0D6EFFF07F7A4BB96F50CE /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "rn-extensions-share"; + target = A238B7CE3865946D1F214E1FE0023AAE /* rn-extensions-share */; + targetProxy = 3C759463B713BD74C849374062706D5D /* PBXContainerItemProxy */; }; 111B42C5DC57FD6481F10A216C2A2A54 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -18040,11 +17823,11 @@ target = 4402AFF83DBDC4DD07E198685FDC2DF2 /* FirebaseCore */; targetProxy = 0ECB4C54EED84F5258E41AFD4657F11F /* PBXContainerItemProxy */; }; - 13AAF98C295C081ABF10E8CF7AF07720 /* PBXTargetDependency */ = { + 134EE37611604C0AD984DB135684E552 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "React-RCTText"; - target = DBD2D83E10F8B7D3F4E0E34E6A9FCFA6 /* React-RCTText */; - targetProxy = 400AEFF7CC3769169694205080D94A04 /* PBXContainerItemProxy */; + name = UMFontInterface; + target = 014495932E402CA67C37681988047CA2 /* UMFontInterface */; + targetProxy = 88528BF8606945FE72D1A8C493CF7B1A /* PBXContainerItemProxy */; }; 16D9EDA83A5EAC350AAADE42DC833185 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -18052,12 +17835,6 @@ target = ED2506AE7DE35D654F61254441EA7155 /* boost-for-react-native */; targetProxy = E7713748923D5218C5086559D4632CF6 /* PBXContainerItemProxy */; }; - 173C277DD6C924C9E7D380223409A597 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "React-RCTVibration"; - target = 53D121F9F9BB0F8AC1C94A12C5A8572F /* React-RCTVibration */; - targetProxy = BE51C7EC9187109049FF16B6AB3A0972 /* PBXContainerItemProxy */; - }; 17B0305E08C7EF9ED292AA9014450AF0 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = UMCore; @@ -18070,35 +17847,53 @@ target = 1BEE828C124E6416179B904A9F66D794 /* React */; targetProxy = A2714C3F770F38D4074DD0F61DA9CF45 /* PBXContainerItemProxy */; }; - 1A7D75764674691942750057ED15BA1F /* PBXTargetDependency */ = { + 1C47AEBA0E81E96429649FCE342DC7CB /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = PromisesObjC; - target = 2BBF7206D7FAC92C82A042A99C4A98F8 /* PromisesObjC */; - targetProxy = 4E78C68BD0F4CB4E52D456D47E48B724 /* PBXContainerItemProxy */; + name = React; + target = 1BEE828C124E6416179B904A9F66D794 /* React */; + targetProxy = 16B387DEA9478600F928A4B9F8602EA2 /* PBXContainerItemProxy */; }; - 1C54974F3471E2C519E44CDFC9FB1565 /* PBXTargetDependency */ = { + 1CC5A7CAF9D55879F32F19E3AB78A29C /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = KeyCommands; - target = 7F591BD8674041AAAA4F37DC699B5518 /* KeyCommands */; - targetProxy = C1FE7BC7432FEAE7B6C40C396A29F634 /* PBXContainerItemProxy */; + name = UMImageLoaderInterface; + target = 97C4DE84FA3CC4EC06AA6D8C249949B7 /* UMImageLoaderInterface */; + targetProxy = 06F79E3A6119EFF6D5E7608EDD992E77 /* PBXContainerItemProxy */; }; - 1C891A674343CD49E004B8B34F3104FC /* PBXTargetDependency */ = { + 1CED298031909B4A2228C8C5604E6EB4 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "react-native-notifications"; - target = CA400829100F0628EC209FBB08347D42 /* react-native-notifications */; - targetProxy = 51C3FDE17BEACFAFC18943003EA618B1 /* PBXContainerItemProxy */; + name = RCTRequired; + target = E7E7CE52C8C68B17224FF8C262D80ABF /* RCTRequired */; + targetProxy = CEE0D3B5AD154153D69A261E9E50C1AF /* PBXContainerItemProxy */; }; - 1CE78B4DC2E3F7D37C4E640D635F2CFF /* PBXTargetDependency */ = { + 1E03BDDAC31DA25C8698063042FAF049 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = UMFaceDetectorInterface; - target = 2AD4F40E67E1874A0816F6B34289EB41 /* UMFaceDetectorInterface */; - targetProxy = 247594DBB227582E86B1E2CE0BE79240 /* PBXContainerItemProxy */; + name = RNGestureHandler; + target = B9E8F4CA2A4A8599389FEB665A9B96FF /* RNGestureHandler */; + targetProxy = 5CA512BE0D688362AF710417F076B79B /* PBXContainerItemProxy */; }; - 1DC1995EEFE198F6A21A31E93B9D04F8 /* PBXTargetDependency */ = { + 1E055C66471A257F410D42736619F1C7 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "react-native-keyboard-input"; - target = 7573B71C21FB5F78D28A1F4A184A6057 /* react-native-keyboard-input */; - targetProxy = 4F9399A98DDD0AC91A95E0B284EDAE36 /* PBXContainerItemProxy */; + name = EXPermissions; + target = 0A72FB88825FDC7D301C9DD1F8F96824 /* EXPermissions */; + targetProxy = BCC017EE5846D87DA159B13C9FAC70FD /* PBXContainerItemProxy */; + }; + 1E06FE9F7562683923D2809D919BE7ED /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = glog; + target = D0EFEFB685D97280256C559792236873 /* glog */; + targetProxy = 62665CA44E29F72877F05D536E7C52C5 /* PBXContainerItemProxy */; + }; + 1E24B1D52C012DE316BCDF7C5190BC3C /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = RNScreens; + target = 214E42634D1E187D876346D36184B655 /* RNScreens */; + targetProxy = C07D9F67B38F64CF29C5A91E7432F800 /* PBXContainerItemProxy */; + }; + 1F265EF8B74E8399F0E11D8D6251019E /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = Fabric; + target = ABB048B191245233986A7CD75FE412A5 /* Fabric */; + targetProxy = 72A140C61CF149B20345E339D5B1BC6F /* PBXContainerItemProxy */; }; 1F7F74A9D27293B2CD3A13D6A29E8DCF /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -18106,23 +17901,23 @@ target = A4F685BE3CAC127BDCE4E0DBBD88D191 /* Folly */; targetProxy = 65685AEAE3C8051C0DE124A6E5ACB197 /* PBXContainerItemProxy */; }; - 22A6115BBBEB45C4CB3142D1DAF4D11C /* PBXTargetDependency */ = { + 207DF48FDAF75957BE2EFEA66AD6AB86 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = FirebaseInstallations; - target = 87803597EB3F20FC46472B85392EC4FD /* FirebaseInstallations */; - targetProxy = 9287D9482C58AF704D7E18F82059F705 /* PBXContainerItemProxy */; + name = Firebase; + target = 072CEA044D2EF26F03496D5996BBF59F /* Firebase */; + targetProxy = 4A1C276163ACEDD5B8E98A79C18CD431 /* PBXContainerItemProxy */; }; - 2346BC570DB607C37C907B377DB077DF /* PBXTargetDependency */ = { + 224FE2A9E8E094FC78F47ACEB76E3D3B /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "React-RCTBlob"; - target = 95D98F901D07557EF7CA38D3F03832C5 /* React-RCTBlob */; - targetProxy = 094D78337A237D8AFA1C929DF4C4AD4C /* PBXContainerItemProxy */; + name = RNReanimated; + target = FF879E718031128A75E7DE54046E6219 /* RNReanimated */; + targetProxy = 483075C3A4B41C49AA4CF0CF475B7FB3 /* PBXContainerItemProxy */; }; - 23754CBF28092822B4B6CC13C757ED04 /* PBXTargetDependency */ = { + 238EC6F1405C00346734336B96867426 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "React-RCTLinking"; - target = 6FE9147F8AAA4DE676C190F680F47AE2 /* React-RCTLinking */; - targetProxy = A22EB8C8B8CAEF4A5121518FA49B5801 /* PBXContainerItemProxy */; + name = RNRootView; + target = 18B56DB36E1F066C927E49DBAE590128 /* RNRootView */; + targetProxy = E8394011886ADB95EBD25562B3DC3E44 /* PBXContainerItemProxy */; }; 247FEEC1E501C4839C5EE406D74A3A13 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -18136,11 +17931,11 @@ target = 620E05868772C10B4920DC7E324F2C87 /* FirebaseCoreDiagnostics */; targetProxy = 040622B4EF3FFAC25FCB8BED372F45F5 /* PBXContainerItemProxy */; }; - 25597C4515BBCB7BBEF2D86CD5D82EE1 /* PBXTargetDependency */ = { + 24E01A328BED0CC06DDD2AFE2468CD03 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = libwebp; - target = 47D2E85A78C25869BB13521D8561A638 /* libwebp */; - targetProxy = 3C85AF1948DC17C947AD64D2C9289CE3 /* PBXContainerItemProxy */; + name = FirebaseInstallations; + target = 87803597EB3F20FC46472B85392EC4FD /* FirebaseInstallations */; + targetProxy = 8AD813A9A89271BD5C7B96FA93C44FA8 /* PBXContainerItemProxy */; }; 2559A81BC7753CC57D5A6C1E7CF8D5D9 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -18148,12 +17943,6 @@ target = FA877ADC442CB19CF61793D234C8B131 /* React-jsi */; targetProxy = E3DCB3D8F0A533B7BB46EB61E99CA3EE /* PBXContainerItemProxy */; }; - 25951338F328493B7F460FCE7338581A /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = RNDateTimePicker; - target = D760AF58E12ABBB51F84160FB02B5F39 /* RNDateTimePicker */; - targetProxy = 1FCA946B27B6E929F7CE70DEBEAA4451 /* PBXContainerItemProxy */; - }; 25FF94CB1F0E40824E1E6AF9F1F0421A /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = UMCore; @@ -18166,35 +17955,17 @@ target = F7D033C4C128EECAA020990641FA985F /* React-jsinspector */; targetProxy = 9AC1F06D86A0940CBEDC84127390E31D /* PBXContainerItemProxy */; }; - 279F20C00C00E05A8D8F83E4D8B016ED /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = Folly; - target = A4F685BE3CAC127BDCE4E0DBBD88D191 /* Folly */; - targetProxy = 95807B567604AB47A8F40EA66C9CB7D5 /* PBXContainerItemProxy */; - }; 27C702A0CD5B9CAB6ADF12761D4592D2 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = UMPermissionsInterface; target = F7845084F0CF03F54107EEF7411760AD /* UMPermissionsInterface */; targetProxy = F84AAAA2C19F25EDD3EC2AACB0E9E389 /* PBXContainerItemProxy */; }; - 29397A9008BEC3610D473F5B336F0097 /* PBXTargetDependency */ = { + 29F403BDC9DF80FDC33D71A18979D152 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "React-CoreModules"; - target = E16E206437995280D349D4B67695C894 /* React-CoreModules */; - targetProxy = 27A2D8CCFE0F04007A9D8C5DB62DE74E /* PBXContainerItemProxy */; - }; - 29B636613C2DA928F4AB997F20CD3FF4 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "React-jsiexecutor"; - target = DA0709CAAD589C6E7963495210438021 /* React-jsiexecutor */; - targetProxy = D45DA1DE1F4AF0ADE4B211C2B1AA7E28 /* PBXContainerItemProxy */; - }; - 2A861EE2E0A0500C6B0D1E31695DAA0D /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = FBLazyVector; - target = 8CC4EAA817AA86310D1900F1DAB3580F /* FBLazyVector */; - targetProxy = 93D89D15F31C64FA2E698BC296BC474F /* PBXContainerItemProxy */; + name = UMBarCodeScannerInterface; + target = 49821C2B9E764AEDF2B35DFE9AA7022F /* UMBarCodeScannerInterface */; + targetProxy = 385AB22B2660A8C57109D17805288DE6 /* PBXContainerItemProxy */; }; 2AA010E3221FCB666E0D6123C66594C6 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -18202,6 +17973,12 @@ target = D0EFEFB685D97280256C559792236873 /* glog */; targetProxy = 7C53CB5C717DF2F107152E0C7B720455 /* PBXContainerItemProxy */; }; + 2B27C9F90D27075C2943DECE68F139A9 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = BugsnagReactNative; + target = 0745200E60DC80C9A0A48B7E6C1518D7 /* BugsnagReactNative */; + targetProxy = 9E9FC1AE37C7C48F7BF35084C725F4C1 /* PBXContainerItemProxy */; + }; 2C093D825CD5837807DDB5B0FBABE56F /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "React-RCTBlob"; @@ -18226,23 +18003,23 @@ target = 7ACAA9BE580DD31A5CB9D97C45D9492D /* React-Core */; targetProxy = 4F47ACA22456ABDDC1033CCE85E508AC /* PBXContainerItemProxy */; }; + 2E48F8DE50AF5F31D0091D58A87E9875 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = RSKImageCropper; + target = A30157FD17984D82FB7B26EE61267BE2 /* RSKImageCropper */; + targetProxy = F299E4C1FDEBD7EC03E9057CB0C9FDF1 /* PBXContainerItemProxy */; + }; 2E5A8B52DC4EB0A2B4F078A2DEBADCF6 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "React-Core"; target = 7ACAA9BE580DD31A5CB9D97C45D9492D /* React-Core */; targetProxy = CAAEE7A21CB80F6BF942643AE53B944E /* PBXContainerItemProxy */; }; - 2EFF65E94D3FF1669A0BCC0AA13BEB5B /* PBXTargetDependency */ = { + 2EE54AEAE6B649DEE1E1D5E8DE94C399 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = EXFileSystem; - target = 868B90C74770285449C60DBA82181479 /* EXFileSystem */; - targetProxy = AC0F63AA236B3D5059FD4C871AFE4903 /* PBXContainerItemProxy */; - }; - 2FF05EAE65EF764E51DB38FC595D5E8D /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = ReactNativeART; - target = 90148E8FD1C445D7A019D504FA8CBC53 /* ReactNativeART */; - targetProxy = D7723178548CB2B7C9B71B9717038944 /* PBXContainerItemProxy */; + name = PromisesObjC; + target = 2BBF7206D7FAC92C82A042A99C4A98F8 /* PromisesObjC */; + targetProxy = FF8F256ECBA36E9E4991B29CF9AED8A5 /* PBXContainerItemProxy */; }; 303A329EFE63F98C76E1F88C1909DC69 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -18250,11 +18027,11 @@ target = 7ACAA9BE580DD31A5CB9D97C45D9492D /* React-Core */; targetProxy = F56EBC18CB64EE0482444624DFEC06A2 /* PBXContainerItemProxy */; }; - 32E09814A4045687C901875C552560CC /* PBXTargetDependency */ = { + 3206332EC297C2CB789FFA852235F355 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "React-Core"; - target = 7ACAA9BE580DD31A5CB9D97C45D9492D /* React-Core */; - targetProxy = 3F693DF68EAA8052EF6B2969ED7005EF /* PBXContainerItemProxy */; + name = SDWebImageWebPCoder; + target = 1953860EA9853AA2BC8022B242F08512 /* SDWebImageWebPCoder */; + targetProxy = A11626882602317CA7B5A9A3B4B45003 /* PBXContainerItemProxy */; }; 330F77DFE2073004CAEAE6D131E54D67 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -18262,12 +18039,24 @@ target = 7ACAA9BE580DD31A5CB9D97C45D9492D /* React-Core */; targetProxy = 1C84D35F43BF9C71C2EEE3812CDC5C8D /* PBXContainerItemProxy */; }; + 33980857A233F0ADA4E4ACC89AEA906D /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "React-RCTActionSheet"; + target = 11989A5E568B3B69655EE0C13DCDA3F9 /* React-RCTActionSheet */; + targetProxy = 122F99F5F9F915D49E41B1A033018831 /* PBXContainerItemProxy */; + }; 33F5B6A58855F2016450517E03B74C4E /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = SDWebImageWebPCoder; target = 1953860EA9853AA2BC8022B242F08512 /* SDWebImageWebPCoder */; targetProxy = D466E30F6A7C6BA97286EAE8358F3B63 /* PBXContainerItemProxy */; }; + 34A1669AA5AF64C055371396C4F202C0 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = RNFastImage; + target = 0BB7745637E0758DEA373456197090C6 /* RNFastImage */; + targetProxy = 9B2A8E3CFE3598C5FE2FCA24A3977539 /* PBXContainerItemProxy */; + }; 35D5269AD31979BA1B767BBD3ED53885 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = DoubleConversion; @@ -18280,29 +18069,11 @@ target = A30157FD17984D82FB7B26EE61267BE2 /* RSKImageCropper */; targetProxy = AEC8DF6D4B91F6B6CAA5DFE9C52B76F8 /* PBXContainerItemProxy */; }; - 39394EA064FE9B66978C278F8E1BCF9C /* PBXTargetDependency */ = { + 39A2F54520ED61ACDE176909D7118A22 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "react-native-keyboard-tracking-view"; - target = EAB05A8BED2CAC923712E1C584AEB299 /* react-native-keyboard-tracking-view */; - targetProxy = 762C406158B057998B102DB622E77496 /* PBXContainerItemProxy */; - }; - 39815BCD96CCE74D07E8857DE373F481 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = Firebase; - target = 072CEA044D2EF26F03496D5996BBF59F /* Firebase */; - targetProxy = 4D57D6A672AC1B1C664BBB8F43093B10 /* PBXContainerItemProxy */; - }; - 3A2D372F137B3B7E454A0B545DBA0950 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "React-jsiexecutor"; - target = DA0709CAAD589C6E7963495210438021 /* React-jsiexecutor */; - targetProxy = 28345E2B9D5AE6182C187C36BFCD43D2 /* PBXContainerItemProxy */; - }; - 3BB3977B43FB5F787D54E2631F7318DE /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = EXAppLoaderProvider; - target = 2B8C13513C1F6D610976B0C8F4402EC1 /* EXAppLoaderProvider */; - targetProxy = D971FCFD393345CBFAA757E31B2F7ED4 /* PBXContainerItemProxy */; + name = EXFileSystem; + target = 868B90C74770285449C60DBA82181479 /* EXFileSystem */; + targetProxy = 7D53FE095A68E88855D206BD273A8A22 /* PBXContainerItemProxy */; }; 3BDD26DF1C76A2717767412BFEFD633E /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -18310,11 +18081,23 @@ target = D2B5E7DCCBBFB32341D857D01211A1A3 /* nanopb */; targetProxy = C6318E60C9E68C5F678F7ADDF357AED8 /* PBXContainerItemProxy */; }; - 3CA4BE2930752D771BDBDB6D7C63F6B5 /* PBXTargetDependency */ = { + 3BEE80EB39EB36AF8C122E3287C12773 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "React-CoreModules"; - target = E16E206437995280D349D4B67695C894 /* React-CoreModules */; - targetProxy = 7DE0BDC36E94E17147774A9141DFD753 /* PBXContainerItemProxy */; + name = RNVectorIcons; + target = 96150F524B245896B800F84F369A9A5A /* RNVectorIcons */; + targetProxy = FF10D968B59D41EF86B95694406263F2 /* PBXContainerItemProxy */; + }; + 3D0996AC19364139830B3C755A10BBD9 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = GoogleDataTransport; + target = 5C0371EE948D0357B8EE0E34ABB44BF0 /* GoogleDataTransport */; + targetProxy = 7B3A1B0FE9581B038E8A5CA6E6274AB4 /* PBXContainerItemProxy */; + }; + 3E39107C1BFE697DDD4C8A710B780D90 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = UMFaceDetectorInterface; + target = 2AD4F40E67E1874A0816F6B34289EB41 /* UMFaceDetectorInterface */; + targetProxy = AC7CFC6D3FD9D88C0BE3EFA7768B32DD /* PBXContainerItemProxy */; }; 3EC9C41467F00AB41E8790F4AABEC57D /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -18328,11 +18111,11 @@ target = 014495932E402CA67C37681988047CA2 /* UMFontInterface */; targetProxy = 86FBD5BA95718ED6238A8919F42616C5 /* PBXContainerItemProxy */; }; - 3FEFF916887BED55289DA9AD05D7D881 /* PBXTargetDependency */ = { + 402DF9F4F3B659E97156BD10D7B96A5F /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = libwebp; - target = 47D2E85A78C25869BB13521D8561A638 /* libwebp */; - targetProxy = 379604DAC14B637EFC1DBC4B42FE5D16 /* PBXContainerItemProxy */; + name = JitsiMeetSDK; + target = 5B40FBDAD0AB75D17C4760F4054BFF71 /* JitsiMeetSDK */; + targetProxy = 2B204F3091E2412E593809249842E7B6 /* PBXContainerItemProxy */; }; 41013E96A559735139B429989B2F3644 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -18340,23 +18123,53 @@ target = 7ACAA9BE580DD31A5CB9D97C45D9492D /* React-Core */; targetProxy = 3567AD7E2B44760020C17476D70D0A0F /* PBXContainerItemProxy */; }; + 414EF157A38A9B494612BD00C65BE7E8 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "React-RCTImage"; + target = 4F265533AAB7C8985856EC78A33164BB /* React-RCTImage */; + targetProxy = C8C1461411783AA01837C9F1AF8D61A0 /* PBXContainerItemProxy */; + }; + 41D14E3F6504ADCFE0EDB9B2D47C3266 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = RNUserDefaults; + target = 4D67CFB913D9C3BE37252D50364CD990 /* RNUserDefaults */; + targetProxy = 589BFA7FF2E6811253E9E173562DB25F /* PBXContainerItemProxy */; + }; 41FF68034D509FCE39317463A46EE39D /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = React; target = 1BEE828C124E6416179B904A9F66D794 /* React */; targetProxy = B40AA08577F30A00FD2A25A08341964A /* PBXContainerItemProxy */; }; - 42C885B6E70F9D03CEDC0392E6DE9A72 /* PBXTargetDependency */ = { + 4289F05EC6EF8FD4813972374E19ECE1 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = Fabric; - target = ABB048B191245233986A7CD75FE412A5 /* Fabric */; - targetProxy = 133D594A22DDEB1E27602AD28E0968FA /* PBXContainerItemProxy */; + name = EXWebBrowser; + target = 9EB556EE511D43F3D5D7AAF51D8D0397 /* EXWebBrowser */; + targetProxy = 1822F9898C730B3B094F19ECDEFD7E16 /* PBXContainerItemProxy */; }; - 4444B83908E40CE755D6DF1285AD8B15 /* PBXTargetDependency */ = { + 44444A2443D16047FD855E45433F9245 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = GoogleAppMeasurement; - target = B53D977A951AFC38B21751B706C1DF83 /* GoogleAppMeasurement */; - targetProxy = E442D539FEAEE1540CB5FB7F0D01D5C0 /* PBXContainerItemProxy */; + name = "React-RCTLinking"; + target = 6FE9147F8AAA4DE676C190F680F47AE2 /* React-RCTLinking */; + targetProxy = 7C4F90EE8AE20E88C7ED5E7EC6B89419 /* PBXContainerItemProxy */; + }; + 4499E36CCF66D01C60CD280867FF4317 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "React-cxxreact"; + target = 463F41A7E8B252F8AC5024DA1F4AF6DA /* React-cxxreact */; + targetProxy = 4A5D6CDC1239A565D3018496156ECCE3 /* PBXContainerItemProxy */; + }; + 44CFE0EC6114F0BC36A73A8D6160B60C /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = Folly; + target = A4F685BE3CAC127BDCE4E0DBBD88D191 /* Folly */; + targetProxy = 35EB43115C83721CAA5AEBF7BE2666C0 /* PBXContainerItemProxy */; + }; + 451E0489D9AB5FD954C4A2A0829901DA /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "react-native-orientation-locker"; + target = 1092C13E1E1172209537C28D0C8D4D3C /* react-native-orientation-locker */; + targetProxy = 01B77193206C04C06857999BA4407A7D /* PBXContainerItemProxy */; }; 4525B78AB9B05D2433479A9579FE333F /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -18364,11 +18177,23 @@ target = B6D5DD49633DFF0657B8C3F08EB3ABA9 /* ReactCommon */; targetProxy = 557407361285FA301951204E241F9CDB /* PBXContainerItemProxy */; }; - 471B2231E4315463BE141C78CFC154FD /* PBXTargetDependency */ = { + 454EE88A0BEAFB303B7BD36D40C28DC9 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "React-RCTNetwork"; - target = 651511D7DA7F07F9FC9AA40A2E86270D /* React-RCTNetwork */; - targetProxy = DF2DB374B3A85D99ED950B5A961F912B /* PBXContainerItemProxy */; + name = "react-native-jitsi-meet"; + target = D39AB631E8050865DE01F6D5678797D2 /* react-native-jitsi-meet */; + targetProxy = CB370270F808F1CB3064348AE9E9DE1A /* PBXContainerItemProxy */; + }; + 46105C7D9839E7863E9E909AF517E08B /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "React-RCTBlob"; + target = 95D98F901D07557EF7CA38D3F03832C5 /* React-RCTBlob */; + targetProxy = 83AC49250DE87C5365441FB7995CB888 /* PBXContainerItemProxy */; + }; + 4696C8575AECE3CFD8D58864CD875DE7 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = FirebaseAnalytics; + target = C49E7A4D59E5C8BE8DE9FB1EFB150185 /* FirebaseAnalytics */; + targetProxy = A9300153B0F6F57C1390DC9AE1DE78D9 /* PBXContainerItemProxy */; }; 48076A1E02117E39C56513D1F085E022 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -18376,29 +18201,11 @@ target = 5EB4B0B6DA6D5C0C3365733BEAA1C485 /* FirebaseCoreDiagnosticsInterop */; targetProxy = BFD1349A73D002FF8BADA635DB23EA34 /* PBXContainerItemProxy */; }; - 48098A54FF753CECE0ACD31A6C7B7BAD /* PBXTargetDependency */ = { + 49AC31079F8A8A1CB4A6E1E09B034C7F /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = Firebase; - target = 072CEA044D2EF26F03496D5996BBF59F /* Firebase */; - targetProxy = AEF0D5EAD49A8992DA70EFA3DECBF5F2 /* PBXContainerItemProxy */; - }; - 4874DEA074BEFBAB641CF49186945583 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "react-native-webview"; - target = 8D18C49071FC5370C25F5758A85BA5F6 /* react-native-webview */; - targetProxy = FCD52B5338048D41345321CB3118509F /* PBXContainerItemProxy */; - }; - 49090A4CDF6C2403D414AC16D4F7AD4A /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = FirebaseCoreDiagnostics; - target = 620E05868772C10B4920DC7E324F2C87 /* FirebaseCoreDiagnostics */; - targetProxy = 8600238B69B2A157BCDA43B6428C374A /* PBXContainerItemProxy */; - }; - 49B1B9608FCB7122E5D2DB8757F14041 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = UMConstantsInterface; - target = 9668C19AA6D8EA320F83875FA286855A /* UMConstantsInterface */; - targetProxy = A11C5AA18C11C96A7B4C12F0674870FA /* PBXContainerItemProxy */; + name = UMCore; + target = DBCB1B4965863DDD3B9DED9A0918A526 /* UMCore */; + targetProxy = ECADD9C57FC2C24C9729ACF2EB4520A8 /* PBXContainerItemProxy */; }; 49B84289A3B9871A10A133360307483A /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -18418,59 +18225,23 @@ target = A4F685BE3CAC127BDCE4E0DBBD88D191 /* Folly */; targetProxy = BB43E3440C83F8BC24E141BE6C01D507 /* PBXContainerItemProxy */; }; - 4A15CF691985A892E37145989A63382A /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "react-native-cameraroll"; - target = BA3F5E5AA483B263B69601DE2FA269CB /* react-native-cameraroll */; - targetProxy = A395D037368F0EB9AC2E7C15AFDE02A4 /* PBXContainerItemProxy */; - }; - 4AB8DC1925CA3F626BD7116C62093525 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "React-RCTNetwork"; - target = 651511D7DA7F07F9FC9AA40A2E86270D /* React-RCTNetwork */; - targetProxy = 002F11152DAC54A5AB546642A6306B05 /* PBXContainerItemProxy */; - }; - 4ABB6D34EBE1A5EF29978772FDFE2546 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "React-RCTActionSheet"; - target = 11989A5E568B3B69655EE0C13DCDA3F9 /* React-RCTActionSheet */; - targetProxy = D30C9932FA170B1BBC715D097E37A3DF /* PBXContainerItemProxy */; - }; 4B7CF4BCE880915A07A1011FB01F4A55 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "React-jsi"; target = FA877ADC442CB19CF61793D234C8B131 /* React-jsi */; targetProxy = D59A73644A58ECC04E1987DB3C8A1BC6 /* PBXContainerItemProxy */; }; - 4C365C314CA12C435EB24E7CBE7E7152 /* PBXTargetDependency */ = { + 4B98B900F360FF09004D41BEA3276EC0 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "React-RCTSettings"; - target = 680299219D3A48D42A648AF6706275A9 /* React-RCTSettings */; - targetProxy = 4CA905E2D8171E3417C15C218D084B7C /* PBXContainerItemProxy */; + name = FBLazyVector; + target = 8CC4EAA817AA86310D1900F1DAB3580F /* FBLazyVector */; + targetProxy = 617D1ACDDF92F704A4EC34059E5D6D82 /* PBXContainerItemProxy */; }; - 4C4E52F2A5DB188C435C5E1D69D984C1 /* PBXTargetDependency */ = { + 4DB262C02AC2EFAD730ACEF2CFEBB75A /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = SocketRocket; - target = 1948D0B63D2CF6A48E18B0B292BC6091 /* SocketRocket */; - targetProxy = 4A8EB71B13847902D63F7AFC8513B42B /* PBXContainerItemProxy */; - }; - 4C5048332490FA1454293F9662EBC9A0 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = RSKImageCropper; - target = A30157FD17984D82FB7B26EE61267BE2 /* RSKImageCropper */; - targetProxy = 3A8F4451E50D33AACFC9F89F68FF16DE /* PBXContainerItemProxy */; - }; - 4C877A9A6CC94B99CF5683237890C838 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = RNFastImage; - target = 0BB7745637E0758DEA373456197090C6 /* RNFastImage */; - targetProxy = 003C6072B32816DF856D49A2918126D0 /* PBXContainerItemProxy */; - }; - 4D2905734193D72FA173D8103F505D5B /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = RNReanimated; - target = FF879E718031128A75E7DE54046E6219 /* RNReanimated */; - targetProxy = 1597FDBD207880AD319B0170A0DF9223 /* PBXContainerItemProxy */; + name = "React-RCTText"; + target = DBD2D83E10F8B7D3F4E0E34E6A9FCFA6 /* React-RCTText */; + targetProxy = ED4FFDF03A7F791ECE325CEF58927A89 /* PBXContainerItemProxy */; }; 4E7A54EBDEED5E1498EB0028BFC71740 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -18490,17 +18261,23 @@ target = 2644525CCE081E967809A8163D893A93 /* UMFileSystemInterface */; targetProxy = 013C8C712E31279FB89EBADB1C1A4BC4 /* PBXContainerItemProxy */; }; - 5113A3CF8D004278D4883CC53F176614 /* PBXTargetDependency */ = { + 4FB7C133757462BC700455530E83769E /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = KeyCommands; - target = 7F591BD8674041AAAA4F37DC699B5518 /* KeyCommands */; - targetProxy = D615922E01038169487D18AEAF3B38C9 /* PBXContainerItemProxy */; + name = FirebaseCoreDiagnosticsInterop; + target = 5EB4B0B6DA6D5C0C3365733BEAA1C485 /* FirebaseCoreDiagnosticsInterop */; + targetProxy = 255AD7ED8EAC20EAB447FE3D60AA59E8 /* PBXContainerItemProxy */; }; - 51682440EE4ECA163163299619696F6E /* PBXTargetDependency */ = { + 500B7650027C8A2B9D022699D35F9019 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = RNVectorIcons; - target = 96150F524B245896B800F84F369A9A5A /* RNVectorIcons */; - targetProxy = 4B62F8CC8DB011B9542B2F55F83160A2 /* PBXContainerItemProxy */; + name = RNDeviceInfo; + target = 807428FE76D80865C9F59F3502600E89 /* RNDeviceInfo */; + targetProxy = 143D2B1BBF6BA4C8CC56964A5D346D77 /* PBXContainerItemProxy */; + }; + 50F9C996729DF3F93CEBE36FDDD8AF90 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = RCTTypeSafety; + target = D20469A9A1E5CFB26045EAEBE3F88E5E /* RCTTypeSafety */; + targetProxy = D60A84C162621AE07DA38744864428FC /* PBXContainerItemProxy */; }; 5195D675E015DEB9B99885FE0B15AAFF /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -18508,11 +18285,11 @@ target = D0EFEFB685D97280256C559792236873 /* glog */; targetProxy = A33043B018A8D3B28DA9124A1579E13A /* PBXContainerItemProxy */; }; - 52013CCA37EC9C629F00C4650DB38964 /* PBXTargetDependency */ = { + 51A84BEBF79E28465F94645E302253FF /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = RNLocalize; - target = B51433D546A38C51AA781F192E8836F8 /* RNLocalize */; - targetProxy = DCADF942A17B0426522FD13C276B0584 /* PBXContainerItemProxy */; + name = Folly; + target = A4F685BE3CAC127BDCE4E0DBBD88D191 /* Folly */; + targetProxy = 803C567877015513B996C1397CFD0BA4 /* PBXContainerItemProxy */; }; 524F27D0B33EF1FDFD74DCB96846B7A9 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -18520,12 +18297,6 @@ target = 4402AFF83DBDC4DD07E198685FDC2DF2 /* FirebaseCore */; targetProxy = D88726238C500FF73BA8C26C24D566C2 /* PBXContainerItemProxy */; }; - 52E740573D08819F93B98063BD6A4EA9 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "react-native-background-timer"; - target = 6514D69CB93B41626AE1A05581F97B07 /* react-native-background-timer */; - targetProxy = 8210DD76CCCA49C0A38A7CD8F457E619 /* PBXContainerItemProxy */; - }; 52ED0D1D4CE538BBA93169D2D44FFFF0 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "React-RCTImage"; @@ -18538,35 +18309,23 @@ target = 7ACAA9BE580DD31A5CB9D97C45D9492D /* React-Core */; targetProxy = 8F8D97FDA93DF806279F1C90D2E34F62 /* PBXContainerItemProxy */; }; - 53BDADAC7FA634F458156E97DC93675C /* PBXTargetDependency */ = { + 57EB97C8643DEB575144A8F2BD2B4A9F /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = RNFastImage; - target = 0BB7745637E0758DEA373456197090C6 /* RNFastImage */; - targetProxy = 989A798045B10252B485D52D83CCB0DF /* PBXContainerItemProxy */; + name = "react-native-jitsi-meet"; + target = D39AB631E8050865DE01F6D5678797D2 /* react-native-jitsi-meet */; + targetProxy = 6D1B6B5C1D59528D21E4481213824F44 /* PBXContainerItemProxy */; }; - 55BDCA0919E00588B6FCB8E08623D1A4 /* PBXTargetDependency */ = { + 58B116F0E92D0D36B5D94D3735BDDDFF /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = RNFirebase; - target = A83ECDA5673771FA0BA282EBF729692B /* RNFirebase */; - targetProxy = 69E690DC689858810FF65F2D04EEA46C /* PBXContainerItemProxy */; + name = "React-jsinspector"; + target = F7D033C4C128EECAA020990641FA985F /* React-jsinspector */; + targetProxy = 6DB2464A2F49196A49869E6B9FA0E651 /* PBXContainerItemProxy */; }; - 55F6BA7B11F482A5F138F48C97694A21 /* PBXTargetDependency */ = { + 58F9765CDF3BBC3DCF8315628FFE2BED /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = glog; - target = D0EFEFB685D97280256C559792236873 /* glog */; - targetProxy = 9C4325AC33E674BFEDB239D7ACE65E25 /* PBXContainerItemProxy */; - }; - 570E4D0C92EDCAA937805660337E301F /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "rn-fetch-blob"; - target = 64F427905796B33B78A704063422979D /* rn-fetch-blob */; - targetProxy = 493D3B1EC2D9BF29FB1E3E78C1834192 /* PBXContainerItemProxy */; - }; - 583A70685D5DD8BDD4DE6EF4FEB4F51B /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "React-RCTImage"; - target = 4F265533AAB7C8985856EC78A33164BB /* React-RCTImage */; - targetProxy = C65A9C37B9A7819C85F7A40F05F999C7 /* PBXContainerItemProxy */; + name = "rn-extensions-share"; + target = A238B7CE3865946D1F214E1FE0023AAE /* rn-extensions-share */; + targetProxy = B5373A5EE0A1B7607417C55418549466 /* PBXContainerItemProxy */; }; 593EED89BEA0A6FAB5FB78DAF42A92C3 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -18574,35 +18333,11 @@ target = 1BEE828C124E6416179B904A9F66D794 /* React */; targetProxy = 592671C6C3F74111AF89BE688E45B730 /* PBXContainerItemProxy */; }; - 598AE4C3758343D375BF1A0663853F50 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "react-native-cameraroll"; - target = BA3F5E5AA483B263B69601DE2FA269CB /* react-native-cameraroll */; - targetProxy = 7749CC73783347FC0C047B39B8F4B8ED /* PBXContainerItemProxy */; - }; - 59B1994AAF70D47625DEF9A46412E8B8 /* PBXTargetDependency */ = { + 5EBD626D919CF032767C1CEB5D75B47B /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = RSKImageCropper; target = A30157FD17984D82FB7B26EE61267BE2 /* RSKImageCropper */; - targetProxy = B1E89063DD071A1DCFE7A6A0BE52A78B /* PBXContainerItemProxy */; - }; - 5A4DFD8408DA6461FA236C0D6339E524 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "boost-for-react-native"; - target = ED2506AE7DE35D654F61254441EA7155 /* boost-for-react-native */; - targetProxy = E79D925ED38A19AE09A3F403086AFAD0 /* PBXContainerItemProxy */; - }; - 5F58BA1E7714DF81C92ACFC88D2C187F /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = UMFileSystemInterface; - target = 2644525CCE081E967809A8163D893A93 /* UMFileSystemInterface */; - targetProxy = 62FFAF06D313BB3C8A418F80F9DF8864 /* PBXContainerItemProxy */; - }; - 5FDF35C6F9DA076A60D2DF859272EB36 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "React-RCTBlob"; - target = 95D98F901D07557EF7CA38D3F03832C5 /* React-RCTBlob */; - targetProxy = 2D5BB50AD0409BEF8A6E1541678A2447 /* PBXContainerItemProxy */; + targetProxy = D032C49D98300976352FEF0E07880F29 /* PBXContainerItemProxy */; }; 6142C90C7067738802070DBD12BAA802 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -18610,23 +18345,17 @@ target = A4F685BE3CAC127BDCE4E0DBBD88D191 /* Folly */; targetProxy = 34B556DF76EB14506DA19B1213547A54 /* PBXContainerItemProxy */; }; - 620E923E5D440AEF93D314A1A2E73D7B /* PBXTargetDependency */ = { + 6225C545DC2C274D64BE6F415560DB64 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = UMCameraInterface; - target = 0A915EE9D35CA5636731F8763E774951 /* UMCameraInterface */; - targetProxy = 3F1E48561A4328E86D01758700125806 /* PBXContainerItemProxy */; + name = Yoga; + target = 2B25F90D819B9ADF2AF2D8733A890333 /* Yoga */; + targetProxy = 57CFA4A4A7437EF2B0DBBD81512E9B41 /* PBXContainerItemProxy */; }; - 621C611D9C189C56D7BA131BE24F2020 /* PBXTargetDependency */ = { + 62EECBDDE3AB5DBC50BE2D0169F5142F /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = Folly; - target = A4F685BE3CAC127BDCE4E0DBBD88D191 /* Folly */; - targetProxy = 89CD7DEA25099212E12CD7ED29FE7198 /* PBXContainerItemProxy */; - }; - 6227AF8CEEABE7DB32211D777DAA8674 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = FirebaseInstanceID; - target = 9E25537BF40D1A3B30CF43FD3E6ACD94 /* FirebaseInstanceID */; - targetProxy = 2DE1D45682141FAE11D6CBCBB6B1905E /* PBXContainerItemProxy */; + name = EXHaptics; + target = 409F3A0DB395F53FFB6AB30E5CD8ACD1 /* EXHaptics */; + targetProxy = 591FC543B0A3D434B70064440D8EC94E /* PBXContainerItemProxy */; }; 6395E3254FF15C5334B441B2D03EFBCE /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -18634,71 +18363,53 @@ target = 651511D7DA7F07F9FC9AA40A2E86270D /* React-RCTNetwork */; targetProxy = 9999A457A3E364808C9E122EC64D955D /* PBXContainerItemProxy */; }; - 6455BDF5470EA31F9D511AB74FF71205 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "React-RCTAnimation"; - target = 938CCE22F6C4094B3FB6CF1478579E4B /* React-RCTAnimation */; - targetProxy = FF39E49B545FB42B5BF77196BEF69CA6 /* PBXContainerItemProxy */; - }; 648641E197156F9497402698E7616999 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = React; target = 1BEE828C124E6416179B904A9F66D794 /* React */; targetProxy = EF797B6066E1025B5FD8590A476CD8DC /* PBXContainerItemProxy */; }; - 64D006973428FF145832DE55B4ADD105 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = RNScreens; - target = 214E42634D1E187D876346D36184B655 /* RNScreens */; - targetProxy = 78C323FAE1236AB030F9102778E10DE7 /* PBXContainerItemProxy */; - }; - 64F778B9B3AE1A4039B5250F0781F314 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "React-RCTText"; - target = DBD2D83E10F8B7D3F4E0E34E6A9FCFA6 /* React-RCTText */; - targetProxy = 662272B9ED09BDD5411DD7740A4D0F96 /* PBXContainerItemProxy */; - }; - 64F9D361115E034736BD7138F7A63289 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "rn-fetch-blob"; - target = 64F427905796B33B78A704063422979D /* rn-fetch-blob */; - targetProxy = 7A681F88F3A6D86E3091ACA9FC73F0B1 /* PBXContainerItemProxy */; - }; 659CE20F5F8A4FDAFAC33456B26AD2CC /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = SDWebImage; target = 3847153A6E5EEFB86565BA840768F429 /* SDWebImage */; targetProxy = 925B94B36D67D27AF51664D1645EC2F7 /* PBXContainerItemProxy */; }; + 662A38D6996F34121F7AC867D6CB89CA /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "react-native-notifications"; + target = CA400829100F0628EC209FBB08347D42 /* react-native-notifications */; + targetProxy = 461AB7AC28950C89B0EFCE67E8720645 /* PBXContainerItemProxy */; + }; 66F08441F9F016CA320259F5EC30225B /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = Folly; target = A4F685BE3CAC127BDCE4E0DBBD88D191 /* Folly */; targetProxy = E8FD7532463B0528F9CE61138294EC2E /* PBXContainerItemProxy */; }; + 67FD0531B202FDB699738477FB5EB281 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "React-jsiexecutor"; + target = DA0709CAAD589C6E7963495210438021 /* React-jsiexecutor */; + targetProxy = E89CAEE0C1D45FCAEEA0355FC8749C4E /* PBXContainerItemProxy */; + }; 687C7745B0C9D33906DF6031B3231B04 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = React; target = 1BEE828C124E6416179B904A9F66D794 /* React */; targetProxy = CAD9ABFE1D8247DFCA7C5B5DC70C1C94 /* PBXContainerItemProxy */; }; - 689CCA13EB63FBD13F3113743EE94085 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = UMPermissionsInterface; - target = F7845084F0CF03F54107EEF7411760AD /* UMPermissionsInterface */; - targetProxy = FA02DC1DD0C9F82A246AB74FF55D0A7E /* PBXContainerItemProxy */; - }; 68FB2B8F06277465B5375A45215CC9BB /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = libwebp; target = 47D2E85A78C25869BB13521D8561A638 /* libwebp */; targetProxy = A7E5D397C11338DEED5E896EF959836C /* PBXContainerItemProxy */; }; - 69FF5033CA629F4E9A7C38672D68416C /* PBXTargetDependency */ = { + 6963EE38CEB3EB43B0DEA6BCFC84287C /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = GoogleUtilities; - target = 8D7F5D5DD528D21A72DC87ADA5B12E2D /* GoogleUtilities */; - targetProxy = 9186C3A8C0128A70FADDD508B72A11D2 /* PBXContainerItemProxy */; + name = "react-native-cameraroll"; + target = BA3F5E5AA483B263B69601DE2FA269CB /* react-native-cameraroll */; + targetProxy = D8C4AEF39B9D5A18F26A32D4A59F14CA /* PBXContainerItemProxy */; }; 6AC6BE62F45C5A349953D87D6DB3C545 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -18706,35 +18417,23 @@ target = 2BBF7206D7FAC92C82A042A99C4A98F8 /* PromisesObjC */; targetProxy = DA72BD0D2ED3CB12079CDD61E7D8396D /* PBXContainerItemProxy */; }; - 6B1260630E75A28D106BE0EEFCF43BD3 /* PBXTargetDependency */ = { + 6AF0282E2DB2A77BEBAD52E6EF76638A /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = RCTTypeSafety; - target = D20469A9A1E5CFB26045EAEBE3F88E5E /* RCTTypeSafety */; - targetProxy = F72B235F97EAAE3DB0744CDCCA33D871 /* PBXContainerItemProxy */; + name = "React-RCTNetwork"; + target = 651511D7DA7F07F9FC9AA40A2E86270D /* React-RCTNetwork */; + targetProxy = 5FC9C97C5B77DB8C5B7789325C7F49D0 /* PBXContainerItemProxy */; }; - 6B6865786999DF64ADBE545E2CC1B864 /* PBXTargetDependency */ = { + 6B007094177FF27B7638BB9F050B8301 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = EXWebBrowser; - target = 9EB556EE511D43F3D5D7AAF51D8D0397 /* EXWebBrowser */; - targetProxy = 4E6A273AB8C4351C5B9C510AB0AB8208 /* PBXContainerItemProxy */; + name = "react-native-keyboard-input"; + target = 7573B71C21FB5F78D28A1F4A184A6057 /* react-native-keyboard-input */; + targetProxy = 68330CBD9E2C8B40CBF4D2DBB59B1BF1 /* PBXContainerItemProxy */; }; - 6C44374FFAE8C8A22C92975656B63ECE /* PBXTargetDependency */ = { + 6D4D6C3687262B2402501E8377CF20C1 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = SocketRocket; - target = 1948D0B63D2CF6A48E18B0B292BC6091 /* SocketRocket */; - targetProxy = 5C614698289D860013A0A63112AD7866 /* PBXContainerItemProxy */; - }; - 6CC5C75B492FF6A143065224AB4D2AEA /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = RNVectorIcons; - target = 96150F524B245896B800F84F369A9A5A /* RNVectorIcons */; - targetProxy = C826A623A05885A805E59EDC5C06AC19 /* PBXContainerItemProxy */; - }; - 6D33C914B8067BB289E5DF1BAD8E63CC /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = ReactNativeART; - target = 90148E8FD1C445D7A019D504FA8CBC53 /* ReactNativeART */; - targetProxy = F4855142B382ACD05A59DF0CF46C3818 /* PBXContainerItemProxy */; + name = EXKeepAwake; + target = 0CF4D9052577C85B6B8C4E957332626B /* EXKeepAwake */; + targetProxy = 4A0C67285DC69C7C94C63AB1FDECE967 /* PBXContainerItemProxy */; }; 6D8C00952B65F5BD4F322D959F307D80 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -18742,29 +18441,17 @@ target = 1BEE828C124E6416179B904A9F66D794 /* React */; targetProxy = D9E3EDC835FCF7086651DEA02BD80CC6 /* PBXContainerItemProxy */; }; - 6E1FB484B0BE5DE8F670DC8104A4A1EB /* PBXTargetDependency */ = { + 7008C9C8BCDF9DDFAF0CD6A3F04F1335 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = RNGestureHandler; - target = B9E8F4CA2A4A8599389FEB665A9B96FF /* RNGestureHandler */; - targetProxy = 376FF43DDA2912575237AD96F7F659ED /* PBXContainerItemProxy */; + name = RNAudio; + target = 449C1066B8C16DEDB966DCB632828E44 /* RNAudio */; + targetProxy = C55EBD90CE0151037FA09EA650386349 /* PBXContainerItemProxy */; }; - 7050B04A9375CF1E28E0D30769B0BA69 /* PBXTargetDependency */ = { + 7166CDF698AC64CE406A4DB0D0BC4FA9 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = UMCore; - target = DBCB1B4965863DDD3B9DED9A0918A526 /* UMCore */; - targetProxy = C81D7BF44378C388AF5AA4477D0CA23E /* PBXContainerItemProxy */; - }; - 713D2B9FCBD81F986022EC416C331359 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "react-native-background-timer"; - target = 6514D69CB93B41626AE1A05581F97B07 /* react-native-background-timer */; - targetProxy = 61EE4B5921627BE861B69E21A109BC08 /* PBXContainerItemProxy */; - }; - 7243B40A4ED8F3F670F344F6BD62070F /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = RNImageCropPicker; - target = 0D82774D2A533D3FFAE27CAB4A6E9CB2 /* RNImageCropPicker */; - targetProxy = 2E991DF87377D5C61D56880E5E37FDCF /* PBXContainerItemProxy */; + name = "React-RCTText"; + target = DBD2D83E10F8B7D3F4E0E34E6A9FCFA6 /* React-RCTText */; + targetProxy = 8642587C304B2273F475278DB97AA327 /* PBXContainerItemProxy */; }; 7256F46E80FAF060C9B45570D9CDD063 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -18772,41 +18459,59 @@ target = 7ACAA9BE580DD31A5CB9D97C45D9492D /* React-Core */; targetProxy = 9EEE23D6519FCEE6884F6DF117317D7A /* PBXContainerItemProxy */; }; + 725AE71C3A2B13362A23D5749EF7255D /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = RNBootSplash; + target = 6677891AC2F7AB93E04BFF30B293A46B /* RNBootSplash */; + targetProxy = B65D6097588ADA9B1ADF692511729C2F /* PBXContainerItemProxy */; + }; + 726C47D62A6DCB5B100674D748AA2936 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = GoogleUtilities; + target = 8D7F5D5DD528D21A72DC87ADA5B12E2D /* GoogleUtilities */; + targetProxy = 483AAE9AA1F172F72A315580CDC5EF26 /* PBXContainerItemProxy */; + }; + 72A60D74C29658A69B3CDB3A91792866 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "react-native-appearance"; + target = 3FF2E78BB54ED67CA7FAD8DA2590DBEE /* react-native-appearance */; + targetProxy = F35D79B1129607F270B1836576CC42B6 /* PBXContainerItemProxy */; + }; 72B059030824F625CF2C5364414F81B4 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = React; target = 1BEE828C124E6416179B904A9F66D794 /* React */; targetProxy = 914920FE125E08820136442E6C40FF7E /* PBXContainerItemProxy */; }; + 72F591E99CC9DA2D7048DB3BCBCF79ED /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = FirebaseAnalytics; + target = C49E7A4D59E5C8BE8DE9FB1EFB150185 /* FirebaseAnalytics */; + targetProxy = 0C6A7A4CE6E0D9523A36E766937BFD3E /* PBXContainerItemProxy */; + }; 7461A63F993AB39EB67CB5B64395C17B /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "React-Core"; target = 7ACAA9BE580DD31A5CB9D97C45D9492D /* React-Core */; targetProxy = FC21EA40C24BBDB20C2BE4568BC0017C /* PBXContainerItemProxy */; }; - 758A23828876EC25D52DA6FB5BA9103C /* PBXTargetDependency */ = { + 7559C9A368A8ADD19755952A412D10BB /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "react-native-appearance"; - target = 3FF2E78BB54ED67CA7FAD8DA2590DBEE /* react-native-appearance */; - targetProxy = 62B94E6711B30C94BCDDD225DA99EE86 /* PBXContainerItemProxy */; + name = "React-RCTBlob"; + target = 95D98F901D07557EF7CA38D3F03832C5 /* React-RCTBlob */; + targetProxy = C36714608FDE33DB14A99D2FF662A73E /* PBXContainerItemProxy */; }; - 767EAFEDEF3D890F6C9E212123AF56B2 /* PBXTargetDependency */ = { + 77403B266F207262F83E07E3F766414B /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = SDWebImage; - target = 3847153A6E5EEFB86565BA840768F429 /* SDWebImage */; - targetProxy = 75C4E5240C974F655EDE75245F453F6A /* PBXContainerItemProxy */; + name = "react-native-document-picker"; + target = D11E74324175FE5B0E78DB046527F233 /* react-native-document-picker */; + targetProxy = 5A9A24E7FD1B3F0830A8EB9E7BBFF648 /* PBXContainerItemProxy */; }; - 77271291B53633A6F41F85E4B915B2CB /* PBXTargetDependency */ = { + 77AF736F8DB7A6BAFA013A2393510763 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "react-native-jitsi-meet"; - target = D39AB631E8050865DE01F6D5678797D2 /* react-native-jitsi-meet */; - targetProxy = 0E1C16F4E3A137D14E1F89BD02C57C60 /* PBXContainerItemProxy */; - }; - 778D6E2EC9FD44ACD19683562E13ACB8 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = RNLocalize; - target = B51433D546A38C51AA781F192E8836F8 /* RNLocalize */; - targetProxy = 55084E0914E6303027262ABBAE6CDF7A /* PBXContainerItemProxy */; + name = "React-RCTAnimation"; + target = 938CCE22F6C4094B3FB6CF1478579E4B /* React-RCTAnimation */; + targetProxy = 979791362B25D3C5AE459F62A6D1264A /* PBXContainerItemProxy */; }; 7818A97BE9882F05F0EE52CA3FB7ABEA /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -18820,6 +18525,18 @@ target = D20469A9A1E5CFB26045EAEBE3F88E5E /* RCTTypeSafety */; targetProxy = 386C0EB352726BA92F7F015C2FB264EF /* PBXContainerItemProxy */; }; + 7949610E6575E9A0360B5FC604F78906 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "React-RCTVibration"; + target = 53D121F9F9BB0F8AC1C94A12C5A8572F /* React-RCTVibration */; + targetProxy = CDE6797A8491FE4BDAE2DBF8CDC222E7 /* PBXContainerItemProxy */; + }; + 7A84AC0B850C2ACA8823E006151A914A /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = BugsnagReactNative; + target = 0745200E60DC80C9A0A48B7E6C1518D7 /* BugsnagReactNative */; + targetProxy = C2A259ACF676661EFB1C0CF8BAD25770 /* PBXContainerItemProxy */; + }; 7AEC0D15EF11C1415A94D769184AD812 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = FirebaseAnalytics; @@ -18832,23 +18549,11 @@ target = 8D7F5D5DD528D21A72DC87ADA5B12E2D /* GoogleUtilities */; targetProxy = 53E2A1BD19729C2293AB46582C686251 /* PBXContainerItemProxy */; }; - 7C279F5638CBF03253223DBFB4C87147 /* PBXTargetDependency */ = { + 7AFE74154789F59A8DEA5546B4460942 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = GoogleDataTransport; - target = 5C0371EE948D0357B8EE0E34ABB44BF0 /* GoogleDataTransport */; - targetProxy = 6A8A0FA190FEB744EDFFB9FAF5742028 /* PBXContainerItemProxy */; - }; - 7C42540693DADBD9040D4B81CB1D2A99 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = BugsnagReactNative; - target = 0745200E60DC80C9A0A48B7E6C1518D7 /* BugsnagReactNative */; - targetProxy = 51935C7EB5365CD1B13D7D31A5DEDCBF /* PBXContainerItemProxy */; - }; - 7CB2A713B2AA45D231C0013CA87BB137 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "React-RCTLinking"; - target = 6FE9147F8AAA4DE676C190F680F47AE2 /* React-RCTLinking */; - targetProxy = C9C999A14C6E370F424BB07117724AC4 /* PBXContainerItemProxy */; + name = "boost-for-react-native"; + target = ED2506AE7DE35D654F61254441EA7155 /* boost-for-react-native */; + targetProxy = CE49C41BD3E5F46B7337E9FB1703F254 /* PBXContainerItemProxy */; }; 7DCE32D473F4F7CC77F17725D7C937C1 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -18856,11 +18561,35 @@ target = 1BEE828C124E6416179B904A9F66D794 /* React */; targetProxy = 882BEE9E8FCF0A6BD665F01DFBEF822B /* PBXContainerItemProxy */; }; - 827B7A7CC0C9CBB709BB519009A5E11E /* PBXTargetDependency */ = { + 8038FBBF7E223092EFC42218782D0712 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = RNReanimated; - target = FF879E718031128A75E7DE54046E6219 /* RNReanimated */; - targetProxy = 22DC114D00B745F5827339582B6BD554 /* PBXContainerItemProxy */; + name = "React-Core"; + target = 7ACAA9BE580DD31A5CB9D97C45D9492D /* React-Core */; + targetProxy = 9DD541885A9980C98C3ADDE50F7FF908 /* PBXContainerItemProxy */; + }; + 8069E1974A7ADEB458932407B9C058CC /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = UMConstantsInterface; + target = 9668C19AA6D8EA320F83875FA286855A /* UMConstantsInterface */; + targetProxy = 295B622A4FB54D9844C4CB3BE1EAD43B /* PBXContainerItemProxy */; + }; + 807F333BF23905B1E9AF2BD58BE33546 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = React; + target = 1BEE828C124E6416179B904A9F66D794 /* React */; + targetProxy = 62C4C28EA3F73091DAF50C3453C713D6 /* PBXContainerItemProxy */; + }; + 817C6B4B93632A4CCBF70D8E71E2DCE1 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = FBReactNativeSpec; + target = C3496D0495E700CF08A90C41EA8FA4BB /* FBReactNativeSpec */; + targetProxy = CFD97ADB04FAA8EB9D569DB8351AF3F8 /* PBXContainerItemProxy */; + }; + 8221B1738AF9192E9DD50A8393FA1859 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "React-cxxreact"; + target = 463F41A7E8B252F8AC5024DA1F4AF6DA /* React-cxxreact */; + targetProxy = 3709AEA1B6C6E37DF103DFC5E71C0FCB /* PBXContainerItemProxy */; }; 82DE4A10C611155EAA73BA712DF1D258 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -18874,6 +18603,12 @@ target = D0EFEFB685D97280256C559792236873 /* glog */; targetProxy = B8E5BD7E0904D95225F1C6CC70ADE8CA /* PBXContainerItemProxy */; }; + 84A3FBE5991121E7C1D10861DC129891 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "boost-for-react-native"; + target = ED2506AE7DE35D654F61254441EA7155 /* boost-for-react-native */; + targetProxy = 61E3F98957C69504C587E74A73042818 /* PBXContainerItemProxy */; + }; 84C564CB9F9513DE23A47461E9EFBC6E /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "React-RCTNetwork"; @@ -18886,11 +18621,11 @@ target = F7D033C4C128EECAA020990641FA985F /* React-jsinspector */; targetProxy = F11BC96676F5675A20A8EEF5971E90CC /* PBXContainerItemProxy */; }; - 8703D83B4E147BAAA3F2D9E7B2F5BFEE /* PBXTargetDependency */ = { + 8530F97274B108307134FC8511B46202 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = FirebaseAnalytics; - target = C49E7A4D59E5C8BE8DE9FB1EFB150185 /* FirebaseAnalytics */; - targetProxy = 24ECD6530E1065994B33CD8D26C923A8 /* PBXContainerItemProxy */; + name = "React-RCTImage"; + target = 4F265533AAB7C8985856EC78A33164BB /* React-RCTImage */; + targetProxy = 1CC7546D5B1DC852B4126024429C7F04 /* PBXContainerItemProxy */; }; 87AEF2C8DFA51306ED9C9AB1DE0F546C /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -18910,65 +18645,83 @@ target = 2B25F90D819B9ADF2AF2D8733A890333 /* Yoga */; targetProxy = A3B47DA7FB5AF667B2756DAC549D2642 /* PBXContainerItemProxy */; }; + 8877D5E0EEE1DD78A1014C64028D4D62 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = RNImageCropPicker; + target = 0D82774D2A533D3FFAE27CAB4A6E9CB2 /* RNImageCropPicker */; + targetProxy = 1C2886056CB8EA5481514A05AF6A1714 /* PBXContainerItemProxy */; + }; + 88F48CDF52A5E4B47A52BBFE1B73E37F /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = DoubleConversion; + target = 2AB2EF542954AB1C999E03BFEF8DE806 /* DoubleConversion */; + targetProxy = 1741E0D43C15D60725F6E05F11459200 /* PBXContainerItemProxy */; + }; + 8999125113F44786583067BFC21019A2 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = ReactCommon; + target = B6D5DD49633DFF0657B8C3F08EB3ABA9 /* ReactCommon */; + targetProxy = 62C704ABA476FBAD552E68B3FC2FBFE9 /* PBXContainerItemProxy */; + }; + 89D7826BCE8D27ADE3A676F808A643D9 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = libwebp; + target = 47D2E85A78C25869BB13521D8561A638 /* libwebp */; + targetProxy = 076D83F8FA8D4840C59BD7FFC4A63D3F /* PBXContainerItemProxy */; + }; 8B45BA9683C0AE1D7149D313D4FDC461 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = React; target = 1BEE828C124E6416179B904A9F66D794 /* React */; targetProxy = 8D04B36B23A984DDD45F643F1C461D61 /* PBXContainerItemProxy */; }; + 8C338A8BA51353556AF762DAA99865D7 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = RCTRequired; + target = E7E7CE52C8C68B17224FF8C262D80ABF /* RCTRequired */; + targetProxy = FB6F4B71AB74690D0E4AFAE2A65709AC /* PBXContainerItemProxy */; + }; 8C496C378AF5C2C390ABB9ACAD262DA8 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = React; target = 1BEE828C124E6416179B904A9F66D794 /* React */; targetProxy = DE8F7B6EA7B1B017A43DEDEAA9020A16 /* PBXContainerItemProxy */; }; - 8CF8355378A8E26197BBA9D4273E07D6 /* PBXTargetDependency */ = { + 8C82E67852D70D12B52772C4B511AE8F /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = RNBootSplash; - target = 6677891AC2F7AB93E04BFF30B293A46B /* RNBootSplash */; - targetProxy = 994412B6B5949D6AC582A8A22B3163AA /* PBXContainerItemProxy */; + name = "React-jsiexecutor"; + target = DA0709CAAD589C6E7963495210438021 /* React-jsiexecutor */; + targetProxy = 2C6A851A2CF208C2ACCB512D7F669BC5 /* PBXContainerItemProxy */; }; - 8E25D2E5E8AC395104D68D5A1ACF17B5 /* PBXTargetDependency */ = { + 8FFE51FB78D6816F0CADFF38D7ECA778 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = UMSensorsInterface; - target = 2038C6F97563AAD6162C284B3EDD5B3B /* UMSensorsInterface */; - targetProxy = 7E37824FA852732D8A855EC3F4648925 /* PBXContainerItemProxy */; + name = RNDeviceInfo; + target = 807428FE76D80865C9F59F3502600E89 /* RNDeviceInfo */; + targetProxy = D4A70A294D81E5B611ADE015A2C11569 /* PBXContainerItemProxy */; }; - 8F883B045F91FED21DBFCCBBF9F7693D /* PBXTargetDependency */ = { + 906102FDAAF023E00C17FC8AC5DD53D8 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = RNUserDefaults; - target = 4D67CFB913D9C3BE37252D50364CD990 /* RNUserDefaults */; - targetProxy = D57B9BD5F47E73E6FCBF5D6906B7ECBD /* PBXContainerItemProxy */; + name = RNFastImage; + target = 0BB7745637E0758DEA373456197090C6 /* RNFastImage */; + targetProxy = 0988A2E1610BEFDB9DC86C4B8A24ABFC /* PBXContainerItemProxy */; }; - 8FBF838E31D6A137D7B1EAA17DDAE496 /* PBXTargetDependency */ = { + 9163DED1C603F3AB259539496EF7AF5D /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = FBReactNativeSpec; - target = C3496D0495E700CF08A90C41EA8FA4BB /* FBReactNativeSpec */; - targetProxy = 1B400C8AABADEBA8DB6AC808CA45959D /* PBXContainerItemProxy */; + name = "React-RCTLinking"; + target = 6FE9147F8AAA4DE676C190F680F47AE2 /* React-RCTLinking */; + targetProxy = 553363BAB18119CF978864648C71AA82 /* PBXContainerItemProxy */; }; - 9200A540FE253FE1992B22D971F59132 /* PBXTargetDependency */ = { + 921206C99F7282EBF8234B61E640FF52 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "react-native-keyboard-tracking-view"; - target = EAB05A8BED2CAC923712E1C584AEB299 /* react-native-keyboard-tracking-view */; - targetProxy = CC9DD5A71683480DC302027FE35F2FBB /* PBXContainerItemProxy */; + name = "rn-fetch-blob"; + target = 64F427905796B33B78A704063422979D /* rn-fetch-blob */; + targetProxy = ED340E067FF13DD631C5BDEEF990BD4D /* PBXContainerItemProxy */; }; - 932924B52C6E302F7F44F729BCC7450A /* PBXTargetDependency */ = { + 9280EC0896D2E4C9291DBA20AC1E3EBA /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = RNRootView; - target = 18B56DB36E1F066C927E49DBAE590128 /* RNRootView */; - targetProxy = 0D72DA10AB0ED381A9812B74F170AE20 /* PBXContainerItemProxy */; - }; - 9389A51EDBB809A0243016D9BE7A65EE /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "react-native-slider"; - target = A4EF87F5681665EAE943D9B06BBB17DF /* react-native-slider */; - targetProxy = 71A45A370A69C0BE4C9F9C165259E67C /* PBXContainerItemProxy */; - }; - 94344D3255DF519B408E5358B30FBD8D /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "React-RCTAnimation"; - target = 938CCE22F6C4094B3FB6CF1478579E4B /* React-RCTAnimation */; - targetProxy = D10630FBB6986395FB3A724B065C99D6 /* PBXContainerItemProxy */; + name = JitsiMeetSDK; + target = 5B40FBDAD0AB75D17C4760F4054BFF71 /* JitsiMeetSDK */; + targetProxy = 068353C1562714EBA50264C3B2FF4D0F /* PBXContainerItemProxy */; }; 943D3BD4A6984BC783E7677F30722A02 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -18982,6 +18735,18 @@ target = 938CCE22F6C4094B3FB6CF1478579E4B /* React-RCTAnimation */; targetProxy = 4081F7E82AA90518127218043568BD4D /* PBXContainerItemProxy */; }; + 94D354973347F40059819DF81DB5138C /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "react-native-webview"; + target = 8D18C49071FC5370C25F5758A85BA5F6 /* react-native-webview */; + targetProxy = 594CC60FF038941A04F66A1EE080C2F4 /* PBXContainerItemProxy */; + }; + 95BF1D972B60A83719CE6033C008EC95 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = FirebaseCoreDiagnosticsInterop; + target = 5EB4B0B6DA6D5C0C3365733BEAA1C485 /* FirebaseCoreDiagnosticsInterop */; + targetProxy = DA54FC964BD555F958837AE41C6B1981 /* PBXContainerItemProxy */; + }; 966429256B271DD0F30E2FA25D97B79D /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "React-RCTSettings"; @@ -18994,11 +18759,23 @@ target = DBCB1B4965863DDD3B9DED9A0918A526 /* UMCore */; targetProxy = 8075D3C81C368FF63B92A7E7DC84BF6B /* PBXContainerItemProxy */; }; - 96ED2DE6F7E45D767F291B3EA2540AD3 /* PBXTargetDependency */ = { + 97391BCB5EA6BAFD35611AC633F21360 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "react-native-webview"; - target = 8D18C49071FC5370C25F5758A85BA5F6 /* react-native-webview */; - targetProxy = 810B343423BD256BF0DC3C61D69A8740 /* PBXContainerItemProxy */; + name = "React-RCTSettings"; + target = 680299219D3A48D42A648AF6706275A9 /* React-RCTSettings */; + targetProxy = FB2D287059141D0A6D7D700C9FB26FFC /* PBXContainerItemProxy */; + }; + 97FACCEA5DC5AD5E9E929FD4A700F746 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = FirebaseInstallations; + target = 87803597EB3F20FC46472B85392EC4FD /* FirebaseInstallations */; + targetProxy = 8F19DAE8B947D14BA1E3D4ECCF89E6A6 /* PBXContainerItemProxy */; + }; + 989A79EAC361D202181FD2A3BCB7A9BA /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = GoogleDataTransportCCTSupport; + target = F4F25FCAC51B51FD5F986EB939BF1F87 /* GoogleDataTransportCCTSupport */; + targetProxy = 1DD6CB440881D577B587931B24422A18 /* PBXContainerItemProxy */; }; 994ADAEEEA94855F19638FBB96D0D629 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -19006,41 +18783,29 @@ target = A4F685BE3CAC127BDCE4E0DBBD88D191 /* Folly */; targetProxy = 201C6A1323C6921817533893269BBE9D /* PBXContainerItemProxy */; }; - 9AD4EEAEEC186D0D529A1026E9A063F0 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = DoubleConversion; - target = 2AB2EF542954AB1C999E03BFEF8DE806 /* DoubleConversion */; - targetProxy = C98A168A640356B43A92CC1967097739 /* PBXContainerItemProxy */; - }; 9AE14FA1F306013F286ABA20DD87B69C /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = glog; target = D0EFEFB685D97280256C559792236873 /* glog */; targetProxy = 69B6897572B545367799A5E51AFE075D /* PBXContainerItemProxy */; }; - 9AF00E5817DB096BF01357206B645726 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = FirebaseAnalytics; - target = C49E7A4D59E5C8BE8DE9FB1EFB150185 /* FirebaseAnalytics */; - targetProxy = 35AAEBE395B90DFF12802A4066FF19DD /* PBXContainerItemProxy */; - }; 9C390500C3C568F59A8589C455BFF4D5 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = FirebaseInstanceID; target = 9E25537BF40D1A3B30CF43FD3E6ACD94 /* FirebaseInstanceID */; targetProxy = C6C35C61164D4136265E61ECEB28D38A /* PBXContainerItemProxy */; }; - 9E681EA814BFAEB1972134F14574DACF /* PBXTargetDependency */ = { + 9C49333071826364DB9879C02F46D33F /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = FirebaseCore; - target = 4402AFF83DBDC4DD07E198685FDC2DF2 /* FirebaseCore */; - targetProxy = 40861F1E1970652EF4B4905026CA058A /* PBXContainerItemProxy */; + name = UMReactNativeAdapter; + target = 897EF6A99176326E24F51E2F2103828C /* UMReactNativeAdapter */; + targetProxy = 5B9FBDAFFB236B6FE38827979AC5CF2B /* PBXContainerItemProxy */; }; - 9EE5C973D52C030CAD611456CFE8734F /* PBXTargetDependency */ = { + 9F08BE7023F38CDDEAE7CE2A93402350 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "React-cxxreact"; - target = 463F41A7E8B252F8AC5024DA1F4AF6DA /* React-cxxreact */; - targetProxy = 8D06CD97B0C15E663D1D46445EE838CB /* PBXContainerItemProxy */; + name = "React-jsi"; + target = FA877ADC442CB19CF61793D234C8B131 /* React-jsi */; + targetProxy = 2B7CDA5783879A5CEC4D7E8C647BE89E /* PBXContainerItemProxy */; }; 9F4B49F01A597EA4F18DDCEBB1AF2B2E /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -19048,47 +18813,35 @@ target = DBD2D83E10F8B7D3F4E0E34E6A9FCFA6 /* React-RCTText */; targetProxy = DDC3038F75F2A9519773ABAA55479EB1 /* PBXContainerItemProxy */; }; - 9F5512EDD42D59B410F5FC161C16C4CE /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = RCTRequired; - target = E7E7CE52C8C68B17224FF8C262D80ABF /* RCTRequired */; - targetProxy = F58E9C0CD557DA809C2396644AF8AC4D /* PBXContainerItemProxy */; - }; - 9F65097BA3ADC94C431AAF50966A7F6B /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "react-native-orientation-locker"; - target = 1092C13E1E1172209537C28D0C8D4D3C /* react-native-orientation-locker */; - targetProxy = 20B92A88F1B116DBFBCDF2455FA06536 /* PBXContainerItemProxy */; - }; 9F65DE6BF013C35BE1F4C9234232B8C1 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "React-jsiexecutor"; target = DA0709CAAD589C6E7963495210438021 /* React-jsiexecutor */; targetProxy = A93E606DCB9E6493FE4333269FB7DB4D /* PBXContainerItemProxy */; }; - 9FA0444169D3235A04170719DA809062 /* PBXTargetDependency */ = { + 9FE5EC675F524CE34CDB2C2B4567B302 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "React-jsi"; - target = FA877ADC442CB19CF61793D234C8B131 /* React-jsi */; - targetProxy = 9AD32BCF76D471812399F5E95F9AEDD6 /* PBXContainerItemProxy */; + name = FBReactNativeSpec; + target = C3496D0495E700CF08A90C41EA8FA4BB /* FBReactNativeSpec */; + targetProxy = 20BFBCC22895EDD0B30D7159E3E8D0AE /* PBXContainerItemProxy */; }; - A05C62A134335EE47EE2999668AC9DF4 /* PBXTargetDependency */ = { + A0FE5D115DEBE10AA1CA7FC3BA6439B2 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = EXHaptics; - target = 409F3A0DB395F53FFB6AB30E5CD8ACD1 /* EXHaptics */; - targetProxy = 9643ACC7C6CBC9BCEFB7674F21F33C71 /* PBXContainerItemProxy */; + name = RNLocalize; + target = B51433D546A38C51AA781F192E8836F8 /* RNLocalize */; + targetProxy = B9BB122EFFD28FE7CBE1F75A4E926231 /* PBXContainerItemProxy */; }; - A0B57DFE2C888F12F1BAB90F946A7636 /* PBXTargetDependency */ = { + A287782EF4E8D5739B860B752CD73607 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "React-RCTImage"; - target = 4F265533AAB7C8985856EC78A33164BB /* React-RCTImage */; - targetProxy = B36F895A6D17AAB1ADBC48098A783286 /* PBXContainerItemProxy */; + name = EXAppLoaderProvider; + target = 2B8C13513C1F6D610976B0C8F4402EC1 /* EXAppLoaderProvider */; + targetProxy = 97BC630E158DE829234BCFEFD0E1A447 /* PBXContainerItemProxy */; }; - A2642DF45AD30CF57E96BB8AE496D3B9 /* PBXTargetDependency */ = { + A3974F41B7177DB268521D4FA2DC53EE /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "React-Core"; - target = 7ACAA9BE580DD31A5CB9D97C45D9492D /* React-Core */; - targetProxy = AB66F99978634DA7F52143301730BBA8 /* PBXContainerItemProxy */; + name = "react-native-keyboard-tracking-view"; + target = EAB05A8BED2CAC923712E1C584AEB299 /* react-native-keyboard-tracking-view */; + targetProxy = 84263176CD7DF3EA14F59661AB98171F /* PBXContainerItemProxy */; }; A3F4258D4EA27D6C88C15BCDA4CDEDA4 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -19096,11 +18849,17 @@ target = 1BEE828C124E6416179B904A9F66D794 /* React */; targetProxy = DDFCA674E1FE8DC1DB86D5A0C0A1FB6A /* PBXContainerItemProxy */; }; - A3F9855C63192CF6AC34654300B983A9 /* PBXTargetDependency */ = { + A40256367D87914D96EA5A3D09884E1B /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = GoogleUtilities; - target = 8D7F5D5DD528D21A72DC87ADA5B12E2D /* GoogleUtilities */; - targetProxy = 39CACD7C0AD392C208D7E34FBE870692 /* PBXContainerItemProxy */; + name = RNVectorIcons; + target = 96150F524B245896B800F84F369A9A5A /* RNVectorIcons */; + targetProxy = 3BB741D68534B4089F2241BAA84C0934 /* PBXContainerItemProxy */; + }; + A4698F5EF2C9D44C71E5451F8D7F4EF9 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = RNAudio; + target = 449C1066B8C16DEDB966DCB632828E44 /* RNAudio */; + targetProxy = 871308EB53E5650A29BAABBF8AA4C16C /* PBXContainerItemProxy */; }; A5351590EF2D946171B0ECC1142DED94 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -19114,29 +18873,35 @@ target = D2B5E7DCCBBFB32341D857D01211A1A3 /* nanopb */; targetProxy = DF12C5D7BB68C2724D2F39A531F2A52A /* PBXContainerItemProxy */; }; - A5B0F3719A1F314C31D89D27F12B2DEC /* PBXTargetDependency */ = { + A54AA3D8AECBDB2F47473FF0456CF9DC /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = ReactCommon; - target = B6D5DD49633DFF0657B8C3F08EB3ABA9 /* ReactCommon */; - targetProxy = 739889194786BD11288E1090E9FCCCB2 /* PBXContainerItemProxy */; + name = SDWebImage; + target = 3847153A6E5EEFB86565BA840768F429 /* SDWebImage */; + targetProxy = 1DBBD57E2DC2173DE990C511170E7A1F /* PBXContainerItemProxy */; }; - A733B4BD2361231F988535F906D20DA5 /* PBXTargetDependency */ = { + A76E62824034988F7BDC9703FBE8FBF5 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = UMTaskManagerInterface; - target = 50188AAB5FAECCA9583327DBA2B0AF2B /* UMTaskManagerInterface */; - targetProxy = 0E3C3BC78F840ADF4CEC4B7189DC52A8 /* PBXContainerItemProxy */; + name = nanopb; + target = D2B5E7DCCBBFB32341D857D01211A1A3 /* nanopb */; + targetProxy = DB8975158A59C1FD256A5DEFE793CF7E /* PBXContainerItemProxy */; }; - A74AB11D9346D462DCCE08F70DCB8A2B /* PBXTargetDependency */ = { + A87107B96D54E569013C38212A90946F /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "react-native-jitsi-meet"; - target = D39AB631E8050865DE01F6D5678797D2 /* react-native-jitsi-meet */; - targetProxy = F5D0260C013F2B3488021156DA80579F /* PBXContainerItemProxy */; + name = "React-Core"; + target = 7ACAA9BE580DD31A5CB9D97C45D9492D /* React-Core */; + targetProxy = 925EB51EC1657F06A696E4FC34839DE9 /* PBXContainerItemProxy */; }; - A9E45F5187F56D8FC9EAC9B0B2D89FFB /* PBXTargetDependency */ = { + A9AC068B98EAE9C99F64F5066AC0E029 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = EXPermissions; - target = 0A72FB88825FDC7D301C9DD1F8F96824 /* EXPermissions */; - targetProxy = 4294DC8BB95AA4C4100A31C75184AD44 /* PBXContainerItemProxy */; + name = EXConstants; + target = 6C1893932A69822CBE3502F2E0BCFB6D /* EXConstants */; + targetProxy = 6B2641DEAC5E4CAFC146B03DB2CDB226 /* PBXContainerItemProxy */; + }; + AA1AA036B855A3C9BFDA265CC1EB7009 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "react-native-webview"; + target = 8D18C49071FC5370C25F5758A85BA5F6 /* react-native-webview */; + targetProxy = 008FB5B36DC74273BD3314D7C7E79488 /* PBXContainerItemProxy */; }; AA55BD4562CF0DDCA3C38F5ABA08AF89 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -19150,6 +18915,18 @@ target = B53D977A951AFC38B21751B706C1DF83 /* GoogleAppMeasurement */; targetProxy = BBDC7C661CA5567D3925BC0747CAAEC5 /* PBXContainerItemProxy */; }; + AAFE21BF0F15FD348E58081A5CCA6B8E /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "React-CoreModules"; + target = E16E206437995280D349D4B67695C894 /* React-CoreModules */; + targetProxy = FB409462FFCCDF773439CC82A13814BA /* PBXContainerItemProxy */; + }; + ABFA780C21817FEAC332DC01DAEFDA17 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = RNBootSplash; + target = 6677891AC2F7AB93E04BFF30B293A46B /* RNBootSplash */; + targetProxy = 31E03A2751BE2E61792C4FBB242A49BF /* PBXContainerItemProxy */; + }; ACDFD30135AB57A1F062637C78FB2E81 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "React-RCTNetwork"; @@ -19162,29 +18939,35 @@ target = B6D5DD49633DFF0657B8C3F08EB3ABA9 /* ReactCommon */; targetProxy = 13EF1229647EEDD20E086226A26C9EA6 /* PBXContainerItemProxy */; }; - AD8E44B5ADDED7B490DCE36886AE266F /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = UMReactNativeAdapter; - target = 897EF6A99176326E24F51E2F2103828C /* UMReactNativeAdapter */; - targetProxy = C3730CDE82B8A10BC14B3927723E205A /* PBXContainerItemProxy */; - }; AE2135E39D7AC4E181788F79286CC4E9 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = GoogleUtilities; target = 8D7F5D5DD528D21A72DC87ADA5B12E2D /* GoogleUtilities */; targetProxy = 5BE488B88EB1D7B8BFE4A63D278D4B18 /* PBXContainerItemProxy */; }; - AE9745E09746AEB30D7029E015929D96 /* PBXTargetDependency */ = { + AE3C910BE4CB8B0E4506866BFEE78BBD /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = FirebaseCoreDiagnosticsInterop; - target = 5EB4B0B6DA6D5C0C3365733BEAA1C485 /* FirebaseCoreDiagnosticsInterop */; - targetProxy = F496F6DEB262E38D8CC5991FDCF452B3 /* PBXContainerItemProxy */; + name = "React-RCTAnimation"; + target = 938CCE22F6C4094B3FB6CF1478579E4B /* React-RCTAnimation */; + targetProxy = F2DAE8BE998CBB5A1F389AE99C3E344E /* PBXContainerItemProxy */; }; - B0846E3CD63C54785BA2DA9C23F3852C /* PBXTargetDependency */ = { + AEEC5027DBAE9BF5071E64934C278BC1 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = FirebaseCoreDiagnosticsInterop; - target = 5EB4B0B6DA6D5C0C3365733BEAA1C485 /* FirebaseCoreDiagnosticsInterop */; - targetProxy = EF392EA522E0E67AB8C19F252FED4CB0 /* PBXContainerItemProxy */; + name = KeyCommands; + target = 7F591BD8674041AAAA4F37DC699B5518 /* KeyCommands */; + targetProxy = 6E21582A484CC8C3138F244CA9399F28 /* PBXContainerItemProxy */; + }; + AFF7D3DA6966EDEF38FC7DF4AC786C1F /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = Crashlytics; + target = C0E41540D6862472ED7F2FA11669BE1F /* Crashlytics */; + targetProxy = F605EBE5F57AE02F229D0315FCB29262 /* PBXContainerItemProxy */; + }; + B0DDB00D57EB0705C2248E6EFD0BD656 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = RNScreens; + target = 214E42634D1E187D876346D36184B655 /* RNScreens */; + targetProxy = 655317A40811E8F9E406458DA3DC2199 /* PBXContainerItemProxy */; }; B12997E3D5BE4F39EC03469A5CD99829 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -19192,29 +18975,11 @@ target = F7845084F0CF03F54107EEF7411760AD /* UMPermissionsInterface */; targetProxy = 17299B3B10FACA862736181ECC44D9A8 /* PBXContainerItemProxy */; }; - B25C2B9883789EEACDC481AF2188681B /* PBXTargetDependency */ = { + B2C90F7BD11F5D0E4D8CF0B52A416B1E /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "react-native-notifications"; - target = CA400829100F0628EC209FBB08347D42 /* react-native-notifications */; - targetProxy = 6D4C2A356235290149A1829A9F2564BD /* PBXContainerItemProxy */; - }; - B319D35B1FBB7276B63C94AA5B99F194 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "rn-extensions-share"; - target = A238B7CE3865946D1F214E1FE0023AAE /* rn-extensions-share */; - targetProxy = 63B9165A2F9D5F33626DCE22F01CEF71 /* PBXContainerItemProxy */; - }; - B38BDA13203DDA39D295FE5355B0F155 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = RNGestureHandler; - target = B9E8F4CA2A4A8599389FEB665A9B96FF /* RNGestureHandler */; - targetProxy = 1C6DC1C1058EF640FC40212D68BE0824 /* PBXContainerItemProxy */; - }; - B48F166787EAAB654C6040E71BF58BA2 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = RNImageCropPicker; - target = 0D82774D2A533D3FFAE27CAB4A6E9CB2 /* RNImageCropPicker */; - targetProxy = 1AEB4411A9035D6ED84E905B7D1597C8 /* PBXContainerItemProxy */; + name = ReactNativeART; + target = 90148E8FD1C445D7A019D504FA8CBC53 /* ReactNativeART */; + targetProxy = EB25963328224D2F995EBC0B59A98B67 /* PBXContainerItemProxy */; }; B522C45997E90058E7BACAB65C97DDE3 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -19222,17 +18987,53 @@ target = 072CEA044D2EF26F03496D5996BBF59F /* Firebase */; targetProxy = D07A2073C8416FD3ABDA2FC695482B1F /* PBXContainerItemProxy */; }; + B5BA89CD92F68C94BB293042FDD11389 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = FirebaseCoreDiagnostics; + target = 620E05868772C10B4920DC7E324F2C87 /* FirebaseCoreDiagnostics */; + targetProxy = E05C02F5156051158B4F3FFE95B6F44F /* PBXContainerItemProxy */; + }; + B5BA93E387F0C267CB201791E4A0BED9 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "React-RCTVibration"; + target = 53D121F9F9BB0F8AC1C94A12C5A8572F /* React-RCTVibration */; + targetProxy = 47BA64DF2ED76D95D64D84D8DBBA2910 /* PBXContainerItemProxy */; + }; + B5EF6422E8E3AB66152D9A61EC864311 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = RNFirebase; + target = A83ECDA5673771FA0BA282EBF729692B /* RNFirebase */; + targetProxy = A11CEDFB97DF2979574EA403010A9267 /* PBXContainerItemProxy */; + }; + B5FF97FB2922D162AB6224AF92602BE3 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = RNLocalize; + target = B51433D546A38C51AA781F192E8836F8 /* RNLocalize */; + targetProxy = 9EF2111FDA8CB6E7775E6D5CF187A418 /* PBXContainerItemProxy */; + }; B6179D636B4AB55FAF69B12DDDBEA250 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "React-Core"; target = 7ACAA9BE580DD31A5CB9D97C45D9492D /* React-Core */; targetProxy = 81C7B5355049BCCDEE79296B202D9398 /* PBXContainerItemProxy */; }; - B6CFE57A91DDE5C0C2722FEBD829CEF0 /* PBXTargetDependency */ = { + B6F4895E38BC6EE9EA9477D2F14C83BE /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "React-jsinspector"; - target = F7D033C4C128EECAA020990641FA985F /* React-jsinspector */; - targetProxy = 57E0804FBD995A4E0E04E9D053E5DB54 /* PBXContainerItemProxy */; + name = "React-jsi"; + target = FA877ADC442CB19CF61793D234C8B131 /* React-jsi */; + targetProxy = 46F50803F1B817A061EE2AE1745D1B92 /* PBXContainerItemProxy */; + }; + B7277701FE931038EF402AE583E41439 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = Crashlytics; + target = C0E41540D6862472ED7F2FA11669BE1F /* Crashlytics */; + targetProxy = A7E06CB7058A7DB4F33BB49B2B5C8C80 /* PBXContainerItemProxy */; + }; + B78928CE49714789A7B477806BC4B45F /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = RNImageCropPicker; + target = 0D82774D2A533D3FFAE27CAB4A6E9CB2 /* RNImageCropPicker */; + targetProxy = C3FEDCC3093569B6B1D7FD3EC697B040 /* PBXContainerItemProxy */; }; B7CA987A1545E9E4D990C621C4B0D48F /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -19258,23 +19059,23 @@ target = 1BEE828C124E6416179B904A9F66D794 /* React */; targetProxy = AA5B8F43EAD114EE3717346D55C72BE5 /* PBXContainerItemProxy */; }; + B97D0A4429E977CF13B9BCC37691107F /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = SDWebImage; + target = 3847153A6E5EEFB86565BA840768F429 /* SDWebImage */; + targetProxy = 152B979403916FE8BD98A65D59176B67 /* PBXContainerItemProxy */; + }; BA241D5679EFEE167EE2F6CED9B54AF4 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = React; target = 1BEE828C124E6416179B904A9F66D794 /* React */; targetProxy = 77650DB9BCD15D3DBD659DF4437F2533 /* PBXContainerItemProxy */; }; - BA9EA6AF1855060F66347DA394B21539 /* PBXTargetDependency */ = { + BAFBA54243912A9C54BF2BBA0CE2AD38 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "boost-for-react-native"; - target = ED2506AE7DE35D654F61254441EA7155 /* boost-for-react-native */; - targetProxy = ACE8EFCFA295C1FE57B388534CE104EB /* PBXContainerItemProxy */; - }; - BAC8C0AEA84B1943247C572AB514BF95 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = GoogleDataTransportCCTSupport; - target = F4F25FCAC51B51FD5F986EB939BF1F87 /* GoogleDataTransportCCTSupport */; - targetProxy = FB5E89643D68A7E72BE8122FBA5ABCA0 /* PBXContainerItemProxy */; + name = FBLazyVector; + target = 8CC4EAA817AA86310D1900F1DAB3580F /* FBLazyVector */; + targetProxy = 6ADEBE41132888244CD8989523AE55F9 /* PBXContainerItemProxy */; }; BB0C888F9800A9CBBD7F9AB387D65080 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -19282,17 +19083,23 @@ target = 2AB2EF542954AB1C999E03BFEF8DE806 /* DoubleConversion */; targetProxy = 95BD7607104E910918F88DD81F19B1C1 /* PBXContainerItemProxy */; }; - BB656295EC18A48BB8EA7B7E6551ACCD /* PBXTargetDependency */ = { + BB1364AB7D0447A322BCB1DF1AF29045 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = RCTTypeSafety; - target = D20469A9A1E5CFB26045EAEBE3F88E5E /* RCTTypeSafety */; - targetProxy = 39EC6541C141F032566FBBE491AD5C0D /* PBXContainerItemProxy */; + name = RNRootView; + target = 18B56DB36E1F066C927E49DBAE590128 /* RNRootView */; + targetProxy = 474A26086959FDDA3CE4511FA6CC4E0E /* PBXContainerItemProxy */; }; - BC320AEB0A619482F987FF8F12F78522 /* PBXTargetDependency */ = { + BB52FE426FCB2B9B4976E23104332EC9 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "rn-extensions-share"; - target = A238B7CE3865946D1F214E1FE0023AAE /* rn-extensions-share */; - targetProxy = 58A5C5AC957CC8CD6CFE66E789C766F0 /* PBXContainerItemProxy */; + name = KeyCommands; + target = 7F591BD8674041AAAA4F37DC699B5518 /* KeyCommands */; + targetProxy = C38CFF395D7F9DA1C5AFE09B7BF5109F /* PBXContainerItemProxy */; + }; + BCF94BEABD6498522E46D28CE7A6961E /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "react-native-background-timer"; + target = 6514D69CB93B41626AE1A05581F97B07 /* react-native-background-timer */; + targetProxy = D60BB4A6F82585D1FFC4DF8BBC1A93EE /* PBXContainerItemProxy */; }; BD1C2D29B9FAFAFEC379903BBA7FB010 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -19306,18 +19113,6 @@ target = A4F685BE3CAC127BDCE4E0DBBD88D191 /* Folly */; targetProxy = EF35D916FEB5C7D4563D576974DC8374 /* PBXContainerItemProxy */; }; - BE5E5B07A8FFCEFDFF1AE93A259573E6 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "React-jsi"; - target = FA877ADC442CB19CF61793D234C8B131 /* React-jsi */; - targetProxy = 01C138DAE9308D4C8DFAFB9B5120FC68 /* PBXContainerItemProxy */; - }; - BEBCDC03D4BD0586055AEFAA519829C4 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "react-native-slider"; - target = A4EF87F5681665EAE943D9B06BBB17DF /* react-native-slider */; - targetProxy = 20D8BADF87D65B80F0D5F73214DA5CE0 /* PBXContainerItemProxy */; - }; BF23376B1A7E5DFDD5B71433E58CDDA1 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = UMCore; @@ -19330,11 +19125,11 @@ target = E7E7CE52C8C68B17224FF8C262D80ABF /* RCTRequired */; targetProxy = 2C95DFFCB2EC326C56D43774DED19805 /* PBXContainerItemProxy */; }; - C08280818B7F286CB910BAA1977F3D1C /* PBXTargetDependency */ = { + C01F3611BCF0797212BE091AFBE9ADA2 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = FirebaseCoreDiagnostics; - target = 620E05868772C10B4920DC7E324F2C87 /* FirebaseCoreDiagnostics */; - targetProxy = B65CB740D1EC333B180E629D8444637B /* PBXContainerItemProxy */; + name = GoogleAppMeasurement; + target = B53D977A951AFC38B21751B706C1DF83 /* GoogleAppMeasurement */; + targetProxy = 9C75A0D332F3E258A2249F54C0C3122F /* PBXContainerItemProxy */; }; C0B06A5C5229F7876D8CF13D76EADE7F /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -19348,17 +19143,17 @@ target = D2B5E7DCCBBFB32341D857D01211A1A3 /* nanopb */; targetProxy = F2E57867E76DED400D1A4035EF3D8735 /* PBXContainerItemProxy */; }; - C43D6D36FCF4584D2986AB86A11B1F07 /* PBXTargetDependency */ = { + C2F4206BB7EFC40BADA156B6D2F31372 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = PromisesObjC; - target = 2BBF7206D7FAC92C82A042A99C4A98F8 /* PromisesObjC */; - targetProxy = 9137870248AEEC1261ACEE6C1F66CD10 /* PBXContainerItemProxy */; + name = FirebaseCoreDiagnostics; + target = 620E05868772C10B4920DC7E324F2C87 /* FirebaseCoreDiagnostics */; + targetProxy = 223C6322CACF04F2A895A726EB898C0D /* PBXContainerItemProxy */; }; - C4DDBCF45BF07E13AB8984E67C804F3F /* PBXTargetDependency */ = { + C4DAB8943E3E9855D00F52950A4CACE3 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = RNUserDefaults; target = 4D67CFB913D9C3BE37252D50364CD990 /* RNUserDefaults */; - targetProxy = 8695C8E77F27C46C494E7A233D245FAA /* PBXContainerItemProxy */; + targetProxy = 0FA64369FA900DF12872EED9406B852D /* PBXContainerItemProxy */; }; C5AE41D857959DAFF5E75B0995A21A95 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -19366,17 +19161,29 @@ target = D0EFEFB685D97280256C559792236873 /* glog */; targetProxy = 983AD1895C24585DEA95A1E14A0A74C6 /* PBXContainerItemProxy */; }; + C68052104BDE6619A09EE6D897B8E2D8 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = DoubleConversion; + target = 2AB2EF542954AB1C999E03BFEF8DE806 /* DoubleConversion */; + targetProxy = 13C470343FF45FA58CCDC6362F1CCC54 /* PBXContainerItemProxy */; + }; + C765F5013609942EF99B6CB27CA28752 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = glog; + target = D0EFEFB685D97280256C559792236873 /* glog */; + targetProxy = DBD0BCFECE46535ED23286752479EAB2 /* PBXContainerItemProxy */; + }; C76A0EE6871933CE34033765BE030A22 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "boost-for-react-native"; target = ED2506AE7DE35D654F61254441EA7155 /* boost-for-react-native */; targetProxy = 48FF23C1BE2FC883261B458A2FEFC1BB /* PBXContainerItemProxy */; }; - C814E071323D7A85787CE8E1606EE163 /* PBXTargetDependency */ = { + C80EA0A59E336449575D913BABD77202 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "react-native-orientation-locker"; - target = 1092C13E1E1172209537C28D0C8D4D3C /* react-native-orientation-locker */; - targetProxy = 5B5DF83249A3327F79B5F3057B98FE57 /* PBXContainerItemProxy */; + name = EXAV; + target = 13D7009C3736FB694854D88BAD4742B6 /* EXAV */; + targetProxy = AC8A4D71B42037F08B5AA81F683D6AA1 /* PBXContainerItemProxy */; }; C85153279823DD6D83526F6B511CE44D /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -19390,12 +19197,6 @@ target = DBCB1B4965863DDD3B9DED9A0918A526 /* UMCore */; targetProxy = 3DA6710AAE682E070695F228266936B7 /* PBXContainerItemProxy */; }; - C8D3872CD67EA427CAE9ABFF228D7B0A /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = Fabric; - target = ABB048B191245233986A7CD75FE412A5 /* Fabric */; - targetProxy = 5601EACB18659539D9591C8BAA48F8F3 /* PBXContainerItemProxy */; - }; C9CEFEFAAAEDB8CD947737FA56C849D4 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = Fabric; @@ -19420,29 +19221,23 @@ target = 4402AFF83DBDC4DD07E198685FDC2DF2 /* FirebaseCore */; targetProxy = F6A14184DE3C02C257A7298719E4FD9B /* PBXContainerItemProxy */; }; - CDD5DE433F5C69FE672EFD98067D362E /* PBXTargetDependency */ = { + CC7DC8F4DE765A10056957A4E1539B16 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = FirebaseCore; - target = 4402AFF83DBDC4DD07E198685FDC2DF2 /* FirebaseCore */; - targetProxy = 4ABAB786AE94A4DBC3D6B2DD9A464AAD /* PBXContainerItemProxy */; + name = "React-jsinspector"; + target = F7D033C4C128EECAA020990641FA985F /* React-jsinspector */; + targetProxy = FFD6AF73DCAC73B5A2FCCC22B7F2E4D0 /* PBXContainerItemProxy */; }; - CF0B61233EA5E61E8B9A6966FF96C81E /* PBXTargetDependency */ = { + CFD8197E95D79870C91A9B2515DBCD42 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = ReactCommon; - target = B6D5DD49633DFF0657B8C3F08EB3ABA9 /* ReactCommon */; - targetProxy = FFDB5E89FEF5669E55EB262808E55E3C /* PBXContainerItemProxy */; + name = "rn-fetch-blob"; + target = 64F427905796B33B78A704063422979D /* rn-fetch-blob */; + targetProxy = B877D34E63A547C40C29E8CA3A24FE53 /* PBXContainerItemProxy */; }; - D04D25D261274B475B78CA9FBE710222 /* PBXTargetDependency */ = { + CFFA0CC94DD2CB29D5AACFA984995F6E /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = Crashlytics; - target = C0E41540D6862472ED7F2FA11669BE1F /* Crashlytics */; - targetProxy = 988DFC34626989FA9956F35F15D47BE6 /* PBXContainerItemProxy */; - }; - D093AF8EB63158AA48C29BC73607E481 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = React; - target = 1BEE828C124E6416179B904A9F66D794 /* React */; - targetProxy = F6223F598A76240BEDAFB92BA95E0A1F /* PBXContainerItemProxy */; + name = RNFirebase; + target = A83ECDA5673771FA0BA282EBF729692B /* RNFirebase */; + targetProxy = A3F8598D021CCC7DEBAC0C180F9AA3AB /* PBXContainerItemProxy */; }; D0E424AA51C6766027686207E235EA45 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -19450,11 +19245,17 @@ target = 4F265533AAB7C8985856EC78A33164BB /* React-RCTImage */; targetProxy = CD13E8227960B07BA93BD3A6A40F0B23 /* PBXContainerItemProxy */; }; - D1410D6B7EC5C971719299370BEF8B1C /* PBXTargetDependency */ = { + D1177B4FEED11D1FD9D239D61600CE3C /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = FirebaseInstallations; - target = 87803597EB3F20FC46472B85392EC4FD /* FirebaseInstallations */; - targetProxy = 9986F04057066A4EC751293EB7235140 /* PBXContainerItemProxy */; + name = "React-RCTNetwork"; + target = 651511D7DA7F07F9FC9AA40A2E86270D /* React-RCTNetwork */; + targetProxy = 6D665A76789A8D00054D333854783DB4 /* PBXContainerItemProxy */; + }; + D1BE63AD4CFA1C520D25CEEAE6E9F069 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = GoogleAppMeasurement; + target = B53D977A951AFC38B21751B706C1DF83 /* GoogleAppMeasurement */; + targetProxy = 0FADFFDF5CAB5F0BEBBFA811B89A6292 /* PBXContainerItemProxy */; }; D1F1057A65FDD43412DCD824E1BE5E0A /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -19474,35 +19275,41 @@ target = 7ACAA9BE580DD31A5CB9D97C45D9492D /* React-Core */; targetProxy = 0FBA34E2E29F880F6473E91F3C51B883 /* PBXContainerItemProxy */; }; + D4FF568CC9B323AEEFF152582DFC1D23 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = Firebase; + target = 072CEA044D2EF26F03496D5996BBF59F /* Firebase */; + targetProxy = 4975E9328E78605A0D7659765CD3346B /* PBXContainerItemProxy */; + }; D5F43FE63F1F6C96E0D9F953258FAE9D /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = React; target = 1BEE828C124E6416179B904A9F66D794 /* React */; targetProxy = E79050B7B79BB88D74178F90A19D9ECF /* PBXContainerItemProxy */; }; - D610246BAC1CCC282488D93F4A2C245D /* PBXTargetDependency */ = { + D6CC9A3C23E29BADD500160663B0238F /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = RNDeviceInfo; - target = 807428FE76D80865C9F59F3502600E89 /* RNDeviceInfo */; - targetProxy = A276E78B8BCF8F62BA7D5D9D31976193 /* PBXContainerItemProxy */; + name = "react-native-document-picker"; + target = D11E74324175FE5B0E78DB046527F233 /* react-native-document-picker */; + targetProxy = 40CD50452D92CD4307AAD2AF44EA56F6 /* PBXContainerItemProxy */; }; - D88905130CC911795816CF30A7D3B223 /* PBXTargetDependency */ = { + D997F0460FA1B2D28A60B858803B0998 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = RNFirebase; - target = A83ECDA5673771FA0BA282EBF729692B /* RNFirebase */; - targetProxy = 3D0EE335789546BA52BFFF2627462647 /* PBXContainerItemProxy */; + name = "React-RCTSettings"; + target = 680299219D3A48D42A648AF6706275A9 /* React-RCTSettings */; + targetProxy = 55A7FB5DC9D55BD3F40045DCC7E38032 /* PBXContainerItemProxy */; }; - D9AE557073C28D230E3358B06C2903F4 /* PBXTargetDependency */ = { + D9D759995AEAF03A6113A7C7172B1425 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = EXConstants; - target = 6C1893932A69822CBE3502F2E0BCFB6D /* EXConstants */; - targetProxy = CD53B528E594BC14F2CC5010535021C8 /* PBXContainerItemProxy */; + name = "React-RCTActionSheet"; + target = 11989A5E568B3B69655EE0C13DCDA3F9 /* React-RCTActionSheet */; + targetProxy = 015B2F6C78A5F0D66618D332D5DA1DF2 /* PBXContainerItemProxy */; }; - DA1460FFFC35999F8EBC4251C3D3FD32 /* PBXTargetDependency */ = { + DA28417A14A760ED0C6B7E4145948279 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "React-jsinspector"; - target = F7D033C4C128EECAA020990641FA985F /* React-jsinspector */; - targetProxy = DFF3BF08208CEDD6949335E6B14FF9AE /* PBXContainerItemProxy */; + name = libwebp; + target = 47D2E85A78C25869BB13521D8561A638 /* libwebp */; + targetProxy = D4B08E1D2CB85B75FE2BE5F5DEDA8CFB /* PBXContainerItemProxy */; }; DA7A7B33C9919FB0F7AAF95AD29445CB /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -19510,41 +19317,41 @@ target = 7ACAA9BE580DD31A5CB9D97C45D9492D /* React-Core */; targetProxy = B45BFCA094BB2306A256FB04420598F1 /* PBXContainerItemProxy */; }; + DAADD6F8FD9A805E023B14571859AB54 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = RNDateTimePicker; + target = D760AF58E12ABBB51F84160FB02B5F39 /* RNDateTimePicker */; + targetProxy = C5F349293436946DFB8925C6BCDEC5A2 /* PBXContainerItemProxy */; + }; DC365AF9AFF0EED32BE0CC92E8B78C42 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = DoubleConversion; target = 2AB2EF542954AB1C999E03BFEF8DE806 /* DoubleConversion */; targetProxy = 7DFBE4295EB2D14288E99BCD22619405 /* PBXContainerItemProxy */; }; - DC5A8D742DDE0FA60A311CB8628A71BC /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = GoogleDataTransport; - target = 5C0371EE948D0357B8EE0E34ABB44BF0 /* GoogleDataTransport */; - targetProxy = 630EDCDA672B3942B2CE8848EA95FCDE /* PBXContainerItemProxy */; - }; - DC713769C2AA5C2D189617BECD32C480 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = BugsnagReactNative; - target = 0745200E60DC80C9A0A48B7E6C1518D7 /* BugsnagReactNative */; - targetProxy = A5EC8DBEE101A2982D82A2D0E9C2FC8B /* PBXContainerItemProxy */; - }; DC7881C26EA469ACDBBF85DA037F15E0 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = SDWebImage; target = 3847153A6E5EEFB86565BA840768F429 /* SDWebImage */; targetProxy = 59A6F7E541C545C99CA82678B8F26212 /* PBXContainerItemProxy */; }; + DD1256B343396DFD1A9D9EBDBFF29AE7 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = nanopb; + target = D2B5E7DCCBBFB32341D857D01211A1A3 /* nanopb */; + targetProxy = A483F2C7AA25955DD0926A8CBEFEBD01 /* PBXContainerItemProxy */; + }; DD42749A0327BDFDE691A4721767F0F3 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = React; target = 1BEE828C124E6416179B904A9F66D794 /* React */; targetProxy = 6423924A022902547DBE5FC8EF93BD4D /* PBXContainerItemProxy */; }; - DD7684F9D5200245557E279911983C90 /* PBXTargetDependency */ = { + DDDE136CE343200BE18FDF53877F173B /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = Crashlytics; - target = C0E41540D6862472ED7F2FA11669BE1F /* Crashlytics */; - targetProxy = C343222D8738754CFDEDC123D70056EA /* PBXContainerItemProxy */; + name = Fabric; + target = ABB048B191245233986A7CD75FE412A5 /* Fabric */; + targetProxy = 9715C541390DFACB38930F601A4646EB /* PBXContainerItemProxy */; }; DE716E784C9BE88B8C21494C695AA318 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -19558,29 +19365,17 @@ target = 1BEE828C124E6416179B904A9F66D794 /* React */; targetProxy = 21B7FFD1A14C9DCA797642821E09A7B1 /* PBXContainerItemProxy */; }; - E0441DF15F346AABD94C70D55A778862 /* PBXTargetDependency */ = { + E19391BE35EFE72641E74D271D21D255 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = React; - target = 1BEE828C124E6416179B904A9F66D794 /* React */; - targetProxy = 568B51091ED359306661751792E9BB69 /* PBXContainerItemProxy */; + name = "react-native-notifications"; + target = CA400829100F0628EC209FBB08347D42 /* react-native-notifications */; + targetProxy = CC9D3E76D2D8DB82BE8D2447A3259AB0 /* PBXContainerItemProxy */; }; - E07849D3ACFDCA6068FF36FDAFDFB577 /* PBXTargetDependency */ = { + E2E5C144DEACB1A0B1192C0691EE618E /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = RNBootSplash; - target = 6677891AC2F7AB93E04BFF30B293A46B /* RNBootSplash */; - targetProxy = 6D1426E9DF0BC37F3981FFF13E332C77 /* PBXContainerItemProxy */; - }; - E096FDCD038B77A2435FB22690D9BA19 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = RNDeviceInfo; - target = 807428FE76D80865C9F59F3502600E89 /* RNDeviceInfo */; - targetProxy = 61F6172F2A15CCDE403383C253AFA9D1 /* PBXContainerItemProxy */; - }; - E13F4C230127229987A9CCB35D9F27A1 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = RNAudio; - target = 449C1066B8C16DEDB966DCB632828E44 /* RNAudio */; - targetProxy = 75E0DBD33B8CA12475AE0636BD673C64 /* PBXContainerItemProxy */; + name = GoogleUtilities; + target = 8D7F5D5DD528D21A72DC87ADA5B12E2D /* GoogleUtilities */; + targetProxy = 2EEFD87B9202F26E10FB94B68B5BCD46 /* PBXContainerItemProxy */; }; E33A6948181332F36C1B948AB5E3D4F1 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -19600,59 +19395,59 @@ target = 8D7F5D5DD528D21A72DC87ADA5B12E2D /* GoogleUtilities */; targetProxy = F142B4DF83D0AEA677D3ABE7D7E5BA0C /* PBXContainerItemProxy */; }; + E40D9786F064CA342C1AAF1EE2A77CA0 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = FirebaseCore; + target = 4402AFF83DBDC4DD07E198685FDC2DF2 /* FirebaseCore */; + targetProxy = 5DEBCAE5160E5037A0074F25979B5EA7 /* PBXContainerItemProxy */; + }; + E5289B48EC1C468E8419390D69537783 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = RNReanimated; + target = FF879E718031128A75E7DE54046E6219 /* RNReanimated */; + targetProxy = D5DEF8BAAFC25886A3E1ED2A75629C02 /* PBXContainerItemProxy */; + }; + E5AB078597B0E79A663BF613369E8F66 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = FirebaseInstanceID; + target = 9E25537BF40D1A3B30CF43FD3E6ACD94 /* FirebaseInstanceID */; + targetProxy = 03FCB8C1251A9D7511F30C8F4A79548E /* PBXContainerItemProxy */; + }; + E5DD2F50813A1B179ED309035B8AD60C /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = FirebaseInstanceID; + target = 9E25537BF40D1A3B30CF43FD3E6ACD94 /* FirebaseInstanceID */; + targetProxy = 92ECBD88F423045656F3AC62F2BFB972 /* PBXContainerItemProxy */; + }; + E5DF40349A9FA58BAFE8E372593E16DA /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = UMPermissionsInterface; + target = F7845084F0CF03F54107EEF7411760AD /* UMPermissionsInterface */; + targetProxy = DCA93862F87E7F516E1742A92CD203CC /* PBXContainerItemProxy */; + }; E6C446C9931D7EE8FED9B58FE9C9ADB3 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "React-jsi"; target = FA877ADC442CB19CF61793D234C8B131 /* React-jsi */; targetProxy = 418E15E77F7E215AA9622C72DC826707 /* PBXContainerItemProxy */; }; - E6E3F5356566FC42623507F9C6786E1C /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = RNDateTimePicker; - target = D760AF58E12ABBB51F84160FB02B5F39 /* RNDateTimePicker */; - targetProxy = 14C1050B6E10B730B1E3CDC42355E70B /* PBXContainerItemProxy */; - }; - E731D45305F190E856481E90D4CEE15D /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = UMBarCodeScannerInterface; - target = 49821C2B9E764AEDF2B35DFE9AA7022F /* UMBarCodeScannerInterface */; - targetProxy = 4E51F64E0758FCFED4CB13C51AE81700 /* PBXContainerItemProxy */; - }; - E7E2BF456781B8B42E2D322453F40E50 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = GoogleAppMeasurement; - target = B53D977A951AFC38B21751B706C1DF83 /* GoogleAppMeasurement */; - targetProxy = F605FEAA7FF91685D4CBEB26A930DE0F /* PBXContainerItemProxy */; - }; E81B9D94D6D9DDB9A947C7FB8749DA9C /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "React-Core"; target = 7ACAA9BE580DD31A5CB9D97C45D9492D /* React-Core */; targetProxy = 4FF10556B9B41D07EFAC6AA420559421 /* PBXContainerItemProxy */; }; - E870BB02117982B1CBA3C23E687531C0 /* PBXTargetDependency */ = { + E9D08F25FCC9729707315C5F7BC9B634 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = RNRootView; - target = 18B56DB36E1F066C927E49DBAE590128 /* RNRootView */; - targetProxy = DF237B1C14FC60450B74F1F01A486ACC /* PBXContainerItemProxy */; + name = "React-CoreModules"; + target = E16E206437995280D349D4B67695C894 /* React-CoreModules */; + targetProxy = 6E6CA0A8F8960AACECF2B14225EFA272 /* PBXContainerItemProxy */; }; - E9305B8C41C4E8FB7E3B4D13F9D3C5FE /* PBXTargetDependency */ = { + EB545AB8C877379B18F236E3D7B95990 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "React-RCTActionSheet"; - target = 11989A5E568B3B69655EE0C13DCDA3F9 /* React-RCTActionSheet */; - targetProxy = 34F9E91BB517EA0D7FE3A54F599B2B35 /* PBXContainerItemProxy */; - }; - E9E3E5A42DB64359D74AF43702BA48E4 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = SDWebImage; - target = 3847153A6E5EEFB86565BA840768F429 /* SDWebImage */; - targetProxy = 3108F816E5140BEC1D04D8180925BC9A /* PBXContainerItemProxy */; - }; - EACB93C4CD3A1E7156F7CEB6E10C9E9B /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = UMImageLoaderInterface; - target = 97C4DE84FA3CC4EC06AA6D8C249949B7 /* UMImageLoaderInterface */; - targetProxy = 416368CBD785B2CF1E312D05349A7041 /* PBXContainerItemProxy */; + name = ReactCommon; + target = B6D5DD49633DFF0657B8C3F08EB3ABA9 /* ReactCommon */; + targetProxy = 705012752414AE48EFADC791F79CA6CC /* PBXContainerItemProxy */; }; EC566DF9BFE7FD959CB2819808630F73 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -19660,6 +19455,12 @@ target = A4F685BE3CAC127BDCE4E0DBBD88D191 /* Folly */; targetProxy = 973587FD3243D488ACC2A2CBA4B833BD /* PBXContainerItemProxy */; }; + EDCAFFECCE4B51A96D7CD7D4B110C71C /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = GoogleDataTransportCCTSupport; + target = F4F25FCAC51B51FD5F986EB939BF1F87 /* GoogleDataTransportCCTSupport */; + targetProxy = A4025DAC5CB5041906BB3BB2D295B050 /* PBXContainerItemProxy */; + }; EDE4622A231D7E4C637C51459B075FDC /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = React; @@ -19672,17 +19473,23 @@ target = DBCB1B4965863DDD3B9DED9A0918A526 /* UMCore */; targetProxy = 5FDD7E408B08AF566972547CAF4A8B67 /* PBXContainerItemProxy */; }; - EF4577BDE3C12BF4C09BD9C95E339254 /* PBXTargetDependency */ = { + EED47877F8BC899F5DB0C3FCA7C861CC /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = nanopb; - target = D2B5E7DCCBBFB32341D857D01211A1A3 /* nanopb */; - targetProxy = C6FA4380CC5BF0862952CEF3A9355494 /* PBXContainerItemProxy */; + name = Yoga; + target = 2B25F90D819B9ADF2AF2D8733A890333 /* Yoga */; + targetProxy = F8A30A3F9D5957049C28AA63A15A8EE0 /* PBXContainerItemProxy */; }; - F02C569A7B7446500A3F66571866137A /* PBXTargetDependency */ = { + EFA76C3B5FD60FA26195B71E0996A5AC /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = FBReactNativeSpec; - target = C3496D0495E700CF08A90C41EA8FA4BB /* FBReactNativeSpec */; - targetProxy = 2BA214B3E71E1548F7973E8FB6A3F7EF /* PBXContainerItemProxy */; + name = RNGestureHandler; + target = B9E8F4CA2A4A8599389FEB665A9B96FF /* RNGestureHandler */; + targetProxy = 23217AC10C3312C10CBE1EC9408D5D35 /* PBXContainerItemProxy */; + }; + F03C6F559C35EAA0BD70B89830A7BBD4 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = UMCore; + target = DBCB1B4965863DDD3B9DED9A0918A526 /* UMCore */; + targetProxy = 594A1FDEC196B11604791BCC803813D3 /* PBXContainerItemProxy */; }; F13EA7DAE7A846C572332EFD93580166 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -19696,23 +19503,29 @@ target = 463F41A7E8B252F8AC5024DA1F4AF6DA /* React-cxxreact */; targetProxy = 3E2073FF56543FDA76EFCC77A1820700 /* PBXContainerItemProxy */; }; - F1BF5BF7BE7863B68DEB1A018FFA20A0 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = EXAV; - target = 13D7009C3736FB694854D88BAD4742B6 /* EXAV */; - targetProxy = A65A6D677E610F2518B62772B9C032BF /* PBXContainerItemProxy */; - }; F25EE5C729FC3245E37C095E9683A3AD /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = React; target = 1BEE828C124E6416179B904A9F66D794 /* React */; targetProxy = C737ED823B86A2EB5AE9F688BEE3FDCE /* PBXContainerItemProxy */; }; - F321D4CC68F8B292718A97AC7D6991AA /* PBXTargetDependency */ = { + F34C466875A62259DBF661F6571B27CA /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "React-RCTSettings"; - target = 680299219D3A48D42A648AF6706275A9 /* React-RCTSettings */; - targetProxy = F982974C418EF2993CCA54CD8CEC6127 /* PBXContainerItemProxy */; + name = PromisesObjC; + target = 2BBF7206D7FAC92C82A042A99C4A98F8 /* PromisesObjC */; + targetProxy = C1F6160261C041B6F2356459AEBDDDCA /* PBXContainerItemProxy */; + }; + F3C089854C6EF22BCEBB398203DF7DEB /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "react-native-slider"; + target = A4EF87F5681665EAE943D9B06BBB17DF /* react-native-slider */; + targetProxy = 052FEAFAFEF4D9A1432CA87180811898 /* PBXContainerItemProxy */; + }; + F3E0E8B2ED11D3F8587D4AFD37F42605 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "react-native-background-timer"; + target = 6514D69CB93B41626AE1A05581F97B07 /* react-native-background-timer */; + targetProxy = 7EC6E864E01896A4F8B70289BE27B949 /* PBXContainerItemProxy */; }; F40AEEAA637FAD62AA68E398038D3782 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -19720,11 +19533,11 @@ target = 5C0371EE948D0357B8EE0E34ABB44BF0 /* GoogleDataTransport */; targetProxy = 8CD598B3122E1B5D5E0411E9F8DFF385 /* PBXContainerItemProxy */; }; - F4AC398922A5D9DD320AEE1AEB0A7F21 /* PBXTargetDependency */ = { + F4C295549391B4D06DB9195BC833860D /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = SDWebImageWebPCoder; - target = 1953860EA9853AA2BC8022B242F08512 /* SDWebImageWebPCoder */; - targetProxy = 94C228224463B2E1D17A2DE3F23F0265 /* PBXContainerItemProxy */; + name = UMFileSystemInterface; + target = 2644525CCE081E967809A8163D893A93 /* UMFileSystemInterface */; + targetProxy = AD7507CC6D18A5ECC6C57FD59FBB9797 /* PBXContainerItemProxy */; }; F6258EC7EA780DA17A9BB7DEC0186247 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -19732,59 +19545,29 @@ target = 1BEE828C124E6416179B904A9F66D794 /* React */; targetProxy = 7376C532C4FB647A107D7FD9698C24E8 /* PBXContainerItemProxy */; }; - F641EEBAE87B4B6344CE0C79C21B0AED /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = SDWebImageWebPCoder; - target = 1953860EA9853AA2BC8022B242F08512 /* SDWebImageWebPCoder */; - targetProxy = B2ACFFD89C29C4A3399154C473FB7370 /* PBXContainerItemProxy */; - }; F6479A4C276556C2A703A39E011FE39A /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = React; target = 1BEE828C124E6416179B904A9F66D794 /* React */; targetProxy = 69C4D7766C312F032D5267A5354EEDFE /* PBXContainerItemProxy */; }; + F6B45066897BD96CDE06CB2B0EBB86D4 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "react-native-keyboard-tracking-view"; + target = EAB05A8BED2CAC923712E1C584AEB299 /* react-native-keyboard-tracking-view */; + targetProxy = 4CD151798CBD76568CD4F48F3DFE9E9F /* PBXContainerItemProxy */; + }; F77917FB7C27A937C4A222233103AEBF /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = React; target = 1BEE828C124E6416179B904A9F66D794 /* React */; targetProxy = 5EED9A44D7E37951C7239080722062AE /* PBXContainerItemProxy */; }; - F7F025EA80FD03E71128C3E29F44BE0A /* PBXTargetDependency */ = { + F7BD806638859434B412E59759C603FC /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "react-native-keyboard-input"; - target = 7573B71C21FB5F78D28A1F4A184A6057 /* react-native-keyboard-input */; - targetProxy = 4C8F4050E51C7119FE07282497C351D5 /* PBXContainerItemProxy */; - }; - F80BC0EE1D1BE7271CC4882E43816040 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = GoogleDataTransportCCTSupport; - target = F4F25FCAC51B51FD5F986EB939BF1F87 /* GoogleDataTransportCCTSupport */; - targetProxy = 7E4A63DA1746BCA529C64F56095DED49 /* PBXContainerItemProxy */; - }; - F857CEF1D9C0C54A524B7365559EDF6B /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = UMFontInterface; - target = 014495932E402CA67C37681988047CA2 /* UMFontInterface */; - targetProxy = E9E2B76F491C0B8AAEE93591C2AAB0C7 /* PBXContainerItemProxy */; - }; - F8C6F9D055E835F3BC4D29564755279D /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = DoubleConversion; - target = 2AB2EF542954AB1C999E03BFEF8DE806 /* DoubleConversion */; - targetProxy = 883F499200BB3CA87D8EB96C2C05DB4E /* PBXContainerItemProxy */; - }; - F94A0CAC6ACA8E3BBAF866269CFC63E0 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = RNScreens; - target = 214E42634D1E187D876346D36184B655 /* RNScreens */; - targetProxy = 28F9804E6897EFF716A616D1A3A12B57 /* PBXContainerItemProxy */; - }; - FA9FD220DFCEDAA5D7F06C365FDC531A /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = Yoga; - target = 2B25F90D819B9ADF2AF2D8733A890333 /* Yoga */; - targetProxy = 1213E1079041D724D145944B5C97C2C9 /* PBXContainerItemProxy */; + name = ReactNativeART; + target = 90148E8FD1C445D7A019D504FA8CBC53 /* ReactNativeART */; + targetProxy = 98D3AA01A003CB65ACFC6B147CE6F6FA /* PBXContainerItemProxy */; }; FAC411C23D2CEEC99A061A1A4B22D07D /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -19792,29 +19575,17 @@ target = E7E7CE52C8C68B17224FF8C262D80ABF /* RCTRequired */; targetProxy = 6A307E7AA187B3493D468319584B81F0 /* PBXContainerItemProxy */; }; - FC45D24E4937D74AA904E5EB0148A9F3 /* PBXTargetDependency */ = { + FBC333C2805FE683CE88DC1E5C2ACACF /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = JitsiMeetSDK; - target = 5B40FBDAD0AB75D17C4760F4054BFF71 /* JitsiMeetSDK */; - targetProxy = 159655B6633E7BFA5BBA16EFFBF485E6 /* PBXContainerItemProxy */; + name = GoogleDataTransport; + target = 5C0371EE948D0357B8EE0E34ABB44BF0 /* GoogleDataTransport */; + targetProxy = 16C42A06E1046107B4F43257B6F33149 /* PBXContainerItemProxy */; }; - FC471249D895DB2BF7ABC4A454CC7A54 /* PBXTargetDependency */ = { + FBF4BE57DD18DC9ED5B10D283C3CDDA1 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = nanopb; - target = D2B5E7DCCBBFB32341D857D01211A1A3 /* nanopb */; - targetProxy = AE2CDE7E5CE3EBA82730AEDF456BFDA3 /* PBXContainerItemProxy */; - }; - FD22F084DCFF1013A07E0DE9BFCCC4F9 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = FBLazyVector; - target = 8CC4EAA817AA86310D1900F1DAB3580F /* FBLazyVector */; - targetProxy = D4D6AC85B65C115CFB2B300260397CE9 /* PBXContainerItemProxy */; - }; - FD4B27CBFBDF3EB7B7657A74C24667E4 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = JitsiMeetSDK; - target = 5B40FBDAD0AB75D17C4760F4054BFF71 /* JitsiMeetSDK */; - targetProxy = 5A11A42DC766F452C7E9B89AB4DD7A40 /* PBXContainerItemProxy */; + name = RNDateTimePicker; + target = D760AF58E12ABBB51F84160FB02B5F39 /* RNDateTimePicker */; + targetProxy = DC3B0E5ACCB1F1714177CC5C0899FE25 /* PBXContainerItemProxy */; }; FD7FFC18DDE8D049C817E5F819EF924E /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -19828,12 +19599,18 @@ target = 2AB2EF542954AB1C999E03BFEF8DE806 /* DoubleConversion */; targetProxy = 273EEB006344CBC3B742234147B60471 /* PBXContainerItemProxy */; }; + FF966287318C3F5FF889D3F508A312DB /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = UMTaskManagerInterface; + target = 50188AAB5FAECCA9583327DBA2B0AF2B /* UMTaskManagerInterface */; + targetProxy = 589D1BA7C609330C276BA5786BC36286 /* PBXContainerItemProxy */; + }; /* End PBXTargetDependency section */ /* Begin XCBuildConfiguration section */ 00718DA2EF2C79DDC75597E5CCB5F43B /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 329D269B4F8F72EA282F5DFAE404C963 /* react-native-document-picker.xcconfig */; + baseConfigurationReference = 0BD33B0D74A9CC26A84EB1DE14A555F3 /* react-native-document-picker.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -19883,7 +19660,7 @@ }; 0099D41EC358F8EDE289C7A138DD58E3 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 41380E07D12C9C4B5596EAD3227A6258 /* UMCore.xcconfig */; + baseConfigurationReference = A3C1409A99321AC9D3AFDE8F8B4606FF /* UMCore.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CLANG_ENABLE_OBJC_WEAK = NO; @@ -19936,7 +19713,7 @@ }; 024274BA705D432C4A7E56971B76D5C2 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = E7012DFB516AB61852B9CC8BB61D4BA4 /* KeyCommands.xcconfig */; + baseConfigurationReference = 462B49F70DCEE6909C2EA1401BF8034C /* KeyCommands.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -19962,7 +19739,7 @@ }; 02590A2E54E292E4B163CC19E59F2F78 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = E8B08D8E57E35A72C701732EBC55CF52 /* react-native-appearance.xcconfig */; + baseConfigurationReference = 02EFE8D80FE7265F2A7983DF4324BDE5 /* react-native-appearance.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -20002,7 +19779,7 @@ }; 04B503C5ABE2C215E884B32B4647C2FF /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 5BD8B4834ABC16EBB220DB0B996B48F7 /* UMPermissionsInterface.xcconfig */; + baseConfigurationReference = E2B8D86AFA6269BDB864AD4F3BE1E4F0 /* UMPermissionsInterface.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; @@ -20032,7 +19809,7 @@ }; 06BC0A8E01BE9D8AA3FB15051DD205D6 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 96867B9D40020D69A2C4C29126C0524C /* React.xcconfig */; + baseConfigurationReference = 0942DF135A2CFF8F154CEDA322F03A50 /* React.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; @@ -20046,7 +19823,7 @@ }; 07503BE4DBA728321A66841DFD7B509C /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = E8B08D8E57E35A72C701732EBC55CF52 /* react-native-appearance.xcconfig */; + baseConfigurationReference = 02EFE8D80FE7265F2A7983DF4324BDE5 /* react-native-appearance.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -20072,7 +19849,7 @@ }; 0A5C3272020B713D7C5769D443274095 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 2EAF303A49C1930A526AA27B3D484A4D /* React-RCTNetwork.xcconfig */; + baseConfigurationReference = 8597914A0A94EB4606CDBF793C5CBF47 /* React-RCTNetwork.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -20098,7 +19875,7 @@ }; 0B4C266D7201BE42578B00130B939087 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 329D269B4F8F72EA282F5DFAE404C963 /* react-native-document-picker.xcconfig */; + baseConfigurationReference = 0BD33B0D74A9CC26A84EB1DE14A555F3 /* react-native-document-picker.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -20149,7 +19926,7 @@ }; 0D109765BE2DFCFF45B839D6331198AC /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 1164FEEBF72B352C8F7618890AC63B6D /* EXAV.xcconfig */; + baseConfigurationReference = 2AB430F2D01D646B93638CA23E08BF4F /* EXAV.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CLANG_ENABLE_OBJC_WEAK = NO; @@ -20198,9 +19975,35 @@ }; name = Release; }; + 0E9A514BC0BB755801F8F494F3D9A668 /* Debug */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 2BF1BF656EC3B47BD4F59A5E5A51D844 /* EXKeepAwake.xcconfig */; + buildSettings = { + APPLICATION_EXTENSION_API_ONLY = NO; + CLANG_ENABLE_OBJC_WEAK = NO; + CODE_SIGN_IDENTITY = "iPhone Developer"; + "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; + GCC_PREFIX_HEADER = "Target Support Files/EXKeepAwake/EXKeepAwake-prefix.pch"; + IPHONEOS_DEPLOYMENT_TARGET = 10.0; + OTHER_LDFLAGS = ""; + OTHER_LIBTOOLFLAGS = ""; + PRIVATE_HEADERS_FOLDER_PATH = ""; + PRODUCT_MODULE_NAME = EXKeepAwake; + PRODUCT_NAME = EXKeepAwake; + PUBLIC_HEADERS_FOLDER_PATH = ""; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; + SWIFT_VERSION = 5.0; + TARGETED_DEVICE_FAMILY = "1,2"; + }; + name = Debug; + }; 0EC3A23A31F25E370EFBA1F1586B2011 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = DC982BA645E4501054C92207D63A8DEE /* FBLazyVector.xcconfig */; + baseConfigurationReference = B04662DD8F156C1AE56B5303BFE1AF0E /* FBLazyVector.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; @@ -20239,7 +20042,7 @@ }; 0FFE4A7E6463DF8D2BF607C001EF26C2 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 744F74F47B727F2059D95906EDD0C441 /* react-native-keyboard-tracking-view.xcconfig */; + baseConfigurationReference = 84D516CE8D1A2B0D2D412A017EEC4464 /* react-native-keyboard-tracking-view.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -20265,7 +20068,7 @@ }; 107A38331BA622EFD23AA607C2765C98 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 9801F115F537316FFFC074DD1EE6D720 /* EXPermissions.xcconfig */; + baseConfigurationReference = 586E1AE368A958D493CB28470CD8DAA8 /* EXPermissions.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CLANG_ENABLE_OBJC_WEAK = NO; @@ -20315,7 +20118,7 @@ }; 12FAC84E34D27F50918DC68E37434C4A /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = BBD1F216127024D2D5EC07E43AD1785B /* EXWebBrowser.xcconfig */; + baseConfigurationReference = BDDE3BFBD40A3A7AECBFB703CED4B961 /* EXWebBrowser.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CLANG_ENABLE_OBJC_WEAK = NO; @@ -20342,7 +20145,7 @@ }; 15D0C18A330E8C97064F66C89AE92075 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 1164FEEBF72B352C8F7618890AC63B6D /* EXAV.xcconfig */; + baseConfigurationReference = 2AB430F2D01D646B93638CA23E08BF4F /* EXAV.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CLANG_ENABLE_OBJC_WEAK = NO; @@ -20432,7 +20235,7 @@ }; 17ADCC17D6FBAC88D3849258BEE3E4D7 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 83AEF50578E8BE801DC17FA2B78B7DF9 /* RNDateTimePicker.xcconfig */; + baseConfigurationReference = 830B2C23F2B1D9BCE8A596BA3FBB8559 /* RNDateTimePicker.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -20522,7 +20325,7 @@ }; 1A149D092E2CFC6DDCD8E48A2155676C /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 04ADE75A9E0641EB8D97A1CF7AC4079C /* React-cxxreact.xcconfig */; + baseConfigurationReference = FF1FBD259367ECDB38F0E731A0E0D4CC /* React-cxxreact.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -20573,7 +20376,7 @@ }; 1BBF1FC67203BE8FFEF02CD562A0ABB0 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = B5CC6208EC4852AE045AC20C6DD364CE /* React-RCTSettings.xcconfig */; + baseConfigurationReference = 4E7B41938C6CAE89D204F91EBF12C890 /* React-RCTSettings.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -20613,7 +20416,7 @@ }; 21B20C7A656B8B26606666450F233202 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 30B353DEC498EA5A641CAFC6D6DB0633 /* React-jsiexecutor.xcconfig */; + baseConfigurationReference = EBF03A09F4BA3CE37ED37F5E03DCAE85 /* React-jsiexecutor.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -20638,7 +20441,7 @@ }; 23C6C4DC319C746B0FB2B500A5F11865 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = D799D8ABEBBA30A4B950CAB36EAF36E1 /* react-native-notifications.xcconfig */; + baseConfigurationReference = A988EFB2A8550B357201230846EBC292 /* react-native-notifications.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -20678,7 +20481,7 @@ }; 244CAA427CEE1963C66E8F160A2D7C44 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = B5CC6208EC4852AE045AC20C6DD364CE /* React-RCTSettings.xcconfig */; + baseConfigurationReference = 4E7B41938C6CAE89D204F91EBF12C890 /* React-RCTSettings.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -20704,7 +20507,7 @@ }; 26551564308AC8D658D695032AA5AE58 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 5ECBF7B20C1C9FF645678F85CFD5F4BE /* FBReactNativeSpec.xcconfig */; + baseConfigurationReference = 57F11FB6EEE31A59C686129B33E8A98E /* FBReactNativeSpec.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -20730,7 +20533,7 @@ }; 2703B7272D54F6883D4FB415677DB5D4 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = C00F22328D14F065FA9850E5D07BFA13 /* React-RCTBlob.xcconfig */; + baseConfigurationReference = 3B7C37914C89D8E242AA293908C90A94 /* React-RCTBlob.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -20755,7 +20558,7 @@ }; 27BCC9CA860F306C015533FEE3107CCD /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = F87BC579EA5CA2A5B6B6F5FF355208F1 /* RNRootView.xcconfig */; + baseConfigurationReference = 0ACADA2C0709063A90146E70C934F3EA /* RNRootView.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -20781,7 +20584,7 @@ }; 28D56E215E53845903676C02E9E657A4 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 96867B9D40020D69A2C4C29126C0524C /* React.xcconfig */; + baseConfigurationReference = 0942DF135A2CFF8F154CEDA322F03A50 /* React.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; @@ -20796,7 +20599,7 @@ }; 2953790EFB1BD8A9E78C65D8FCEEACFB /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = D663687779FA5090927E808C13E98D01 /* EXConstants.xcconfig */; + baseConfigurationReference = A6B61E11092D997709ECB60B44D7DBB8 /* EXConstants.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CLANG_ENABLE_OBJC_WEAK = NO; @@ -20823,7 +20626,7 @@ }; 2A5E7696D7993201DAD047C1A0D2C4E3 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = D9AFB91BBF49BF620AA053C9102946E4 /* RNBootSplash.xcconfig */; + baseConfigurationReference = 6A9C542B51663967CB6AE75E477BEEC0 /* RNBootSplash.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -20848,7 +20651,7 @@ }; 2AF938D92353FFD31BE3DB678B15377C /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = F61149C7CB39C9ACF3BF0270530309EA /* react-native-cameraroll.xcconfig */; + baseConfigurationReference = CBE8A3D3C11CB110388CDDBEC3FDAD2B /* react-native-cameraroll.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -20873,7 +20676,7 @@ }; 2B272C4CE6BEAA0B9E0AA72279542905 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 7EF317EA9A04BCA70761C1DBF2C695B1 /* React-Core.xcconfig */; + baseConfigurationReference = 4D56494F44DFE819271A6C0586D48903 /* React-Core.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -20898,7 +20701,7 @@ }; 2BE44409CF53F7716718039FCCF13617 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 87147EA3924490E7FE3B10CF6A434585 /* react-native-webview.xcconfig */; + baseConfigurationReference = DADFA29679DDDCE50802FB9F0E63891D /* react-native-webview.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -20992,7 +20795,7 @@ }; 34F3BB3A9EA6790A534F9E5EF2254D12 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 6054B2DD1ED3D15C8ECD803F4364A544 /* RNImageCropPicker.xcconfig */; + baseConfigurationReference = 2671FA8596FC4724FB94806291A5C98A /* RNImageCropPicker.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -21015,9 +20818,33 @@ }; name = Debug; }; + 3688CA988BE0187B688891D1B5C5EFD9 /* Release */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = A9916A69A97251C8AA9535F6F70AE9DB /* Pods-RocketChatRN.release.xcconfig */; + buildSettings = { + ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO; + APPLICATION_EXTENSION_API_ONLY = NO; + CLANG_ENABLE_OBJC_WEAK = NO; + CODE_SIGN_IDENTITY = "iPhone Developer"; + "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; + IPHONEOS_DEPLOYMENT_TARGET = 10.0; + MACH_O_TYPE = staticlib; + OTHER_LDFLAGS = ""; + OTHER_LIBTOOLFLAGS = ""; + PODS_ROOT = "$(SRCROOT)"; + PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.${PRODUCT_NAME:rfc1034identifier}"; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + TARGETED_DEVICE_FAMILY = "1,2"; + VALIDATE_PRODUCT = YES; + }; + name = Release; + }; 371989D182BF95DFA0EC5239D0C21ADD /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = C7930E4CF5334470EFD51157392AB83D /* RNReanimated.xcconfig */; + baseConfigurationReference = F24E33E5B75728F9FDCB30D152EA5B28 /* RNReanimated.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -21042,7 +20869,7 @@ }; 37E163221C1422D15853A75EC40F1ADE /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = DA8FD0BA2B221950A40ED181E849C297 /* RNLocalize.xcconfig */; + baseConfigurationReference = D50D6B679FC38A0B85069A2DF33BFAB1 /* RNLocalize.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -21067,7 +20894,7 @@ }; 39788C2E5025D81B1F56F4F62015EC56 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 93DCFAEDF7520474568C3D08B41D4B70 /* UMReactNativeAdapter.xcconfig */; + baseConfigurationReference = E5DF08856F124A8FCBDECC52ADE5D7C6 /* UMReactNativeAdapter.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CLANG_ENABLE_OBJC_WEAK = NO; @@ -21120,7 +20947,7 @@ }; 3C2209A72B905CEDAC16D43E4DA43012 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 9801F115F537316FFFC074DD1EE6D720 /* EXPermissions.xcconfig */; + baseConfigurationReference = 586E1AE368A958D493CB28470CD8DAA8 /* EXPermissions.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CLANG_ENABLE_OBJC_WEAK = NO; @@ -21147,7 +20974,7 @@ }; 412737804873ADD8C2E2F340ABFF6718 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = BDEFFFFC11A828082CD1C3DB0768AEAD /* React-RCTAnimation.xcconfig */; + baseConfigurationReference = 4C18A10A30D307A1C08B17C6278B4DAC /* React-RCTAnimation.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -21172,7 +20999,7 @@ }; 42944898C766E1F58CF1D114D908DF7F /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 6054B2DD1ED3D15C8ECD803F4364A544 /* RNImageCropPicker.xcconfig */; + baseConfigurationReference = 2671FA8596FC4724FB94806291A5C98A /* RNImageCropPicker.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -21190,7 +21017,7 @@ }; 455A8CE12E5E915C83AB73A3C62F3F68 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = D799D8ABEBBA30A4B950CAB36EAF36E1 /* react-native-notifications.xcconfig */; + baseConfigurationReference = A988EFB2A8550B357201230846EBC292 /* react-native-notifications.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -21241,7 +21068,7 @@ }; 499E8F90EC6439418D63F128B5D6DCD1 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = B6C9DD78E0C948983075BD3C9EA833AE /* ReactCommon.xcconfig */; + baseConfigurationReference = CCCD2C94BD30D3B521CD399597DFA1BA /* ReactCommon.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -21267,7 +21094,7 @@ }; 4C88F3DB03A9D5244D6399F2531E7EFA /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = BA96A4294166CCA0210FED1496ABF3E6 /* RNFirebase.xcconfig */; + baseConfigurationReference = C9AE48D025ED018BDD98CE52096C0000 /* RNFirebase.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -21292,7 +21119,7 @@ }; 4EF961C835B566D4EFB3AFE039C623B9 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 9667D6891677A0AAA9920C5B89D717E3 /* UMImageLoaderInterface.xcconfig */; + baseConfigurationReference = CAC67D9F86DB72ABC4AA0A05AC670B08 /* UMImageLoaderInterface.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; @@ -21306,32 +21133,9 @@ }; name = Release; }; - 4F57FEB7A592CAFDB96DB160F451F174 /* Debug */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = B5D32CE02F68EE345F9101FFAF7E3476 /* Pods-RocketChatRN.debug.xcconfig */; - buildSettings = { - ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO; - APPLICATION_EXTENSION_API_ONLY = NO; - CLANG_ENABLE_OBJC_WEAK = NO; - CODE_SIGN_IDENTITY = "iPhone Developer"; - "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - IPHONEOS_DEPLOYMENT_TARGET = 10.0; - MACH_O_TYPE = staticlib; - OTHER_LDFLAGS = ""; - OTHER_LIBTOOLFLAGS = ""; - PODS_ROOT = "$(SRCROOT)"; - PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.${PRODUCT_NAME:rfc1034identifier}"; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - TARGETED_DEVICE_FAMILY = "1,2"; - }; - name = Debug; - }; 5021E076026902F8042B602ED2AB1FDD /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 83AEF50578E8BE801DC17FA2B78B7DF9 /* RNDateTimePicker.xcconfig */; + baseConfigurationReference = 830B2C23F2B1D9BCE8A596BA3FBB8559 /* RNDateTimePicker.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -21354,9 +21158,36 @@ }; name = Debug; }; + 50249922A303BF655E9EEF9873D67098 /* Release */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 2BF1BF656EC3B47BD4F59A5E5A51D844 /* EXKeepAwake.xcconfig */; + buildSettings = { + APPLICATION_EXTENSION_API_ONLY = NO; + CLANG_ENABLE_OBJC_WEAK = NO; + CODE_SIGN_IDENTITY = "iPhone Developer"; + "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; + GCC_PREFIX_HEADER = "Target Support Files/EXKeepAwake/EXKeepAwake-prefix.pch"; + IPHONEOS_DEPLOYMENT_TARGET = 10.0; + OTHER_LDFLAGS = ""; + OTHER_LIBTOOLFLAGS = ""; + PRIVATE_HEADERS_FOLDER_PATH = ""; + PRODUCT_MODULE_NAME = EXKeepAwake; + PRODUCT_NAME = EXKeepAwake; + PUBLIC_HEADERS_FOLDER_PATH = ""; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; + SWIFT_VERSION = 5.0; + TARGETED_DEVICE_FAMILY = "1,2"; + VALIDATE_PRODUCT = YES; + }; + name = Release; + }; 521E903B734D3E2B9720D043ACC4F421 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = E662B7D9CF1686E91D2F91409470E2B1 /* RNAudio.xcconfig */; + baseConfigurationReference = EE0698383F0AAFAD6AF6103B1B442D36 /* RNAudio.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -21381,7 +21212,7 @@ }; 531DF162FE7827B65B86953D3626930F /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 6054B2DD1ED3D15C8ECD803F4364A544 /* RNImageCropPicker.xcconfig */; + baseConfigurationReference = 2671FA8596FC4724FB94806291A5C98A /* RNImageCropPicker.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -21421,32 +21252,9 @@ }; name = Debug; }; - 584E5AE2D0ED90B92C7DAF30DAB485D8 /* Debug */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 49A51F5FBBCFD3F02638D5838DF22338 /* Pods-ShareRocketChatRN.debug.xcconfig */; - buildSettings = { - ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO; - APPLICATION_EXTENSION_API_ONLY = NO; - CLANG_ENABLE_OBJC_WEAK = NO; - CODE_SIGN_IDENTITY = "iPhone Developer"; - "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - IPHONEOS_DEPLOYMENT_TARGET = 10.0; - MACH_O_TYPE = staticlib; - OTHER_LDFLAGS = ""; - OTHER_LIBTOOLFLAGS = ""; - PODS_ROOT = "$(SRCROOT)"; - PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.${PRODUCT_NAME:rfc1034identifier}"; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - TARGETED_DEVICE_FAMILY = "1,2"; - }; - name = Debug; - }; 5869D54D3A851396E2E6C856D06E7E60 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 7E561A083D82315E4BC4219566966904 /* RNGestureHandler.xcconfig */; + baseConfigurationReference = 5C1B9061D19410501780E0625C47998E /* RNGestureHandler.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -21486,7 +21294,7 @@ }; 596CD7959D539F7F649544D11CD4713F /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 79A5C32FF86A7E02BD42FA055AFDB39B /* React-RCTActionSheet.xcconfig */; + baseConfigurationReference = A765B6A46819F2A5761417E17C78ACC6 /* React-RCTActionSheet.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -21512,7 +21320,7 @@ }; 5A8324EA210DF55F87E0DF91047C3A4A /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 6054B2DD1ED3D15C8ECD803F4364A544 /* RNImageCropPicker.xcconfig */; + baseConfigurationReference = 2671FA8596FC4724FB94806291A5C98A /* RNImageCropPicker.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -21538,7 +21346,7 @@ }; 5C0B9265CAB0D9CD227A92F72C06CC20 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 322F3B7909BAA7E21257160C8C1CB542 /* React-RCTVibration.xcconfig */; + baseConfigurationReference = 23699EF9ED482A234477FD3CC00DAFAA /* React-RCTVibration.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -21564,7 +21372,7 @@ }; 5DC883AB0B0414AD48BB3AB4F3269D66 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 6E9218532103C4522A6F7D4ECCBAC4E6 /* UMConstantsInterface.xcconfig */; + baseConfigurationReference = 070429B06A32B526D719C22C0ED95B89 /* UMConstantsInterface.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; @@ -21580,7 +21388,7 @@ }; 5DDAA8C3F7FCC062776754B1F3B95D1E /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 2EAF303A49C1930A526AA27B3D484A4D /* React-RCTNetwork.xcconfig */; + baseConfigurationReference = 8597914A0A94EB4606CDBF793C5CBF47 /* React-RCTNetwork.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -21646,7 +21454,7 @@ }; 5E7869770EA6F89BE71AB5A82A8747EE /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 04ADE75A9E0641EB8D97A1CF7AC4079C /* React-cxxreact.xcconfig */; + baseConfigurationReference = FF1FBD259367ECDB38F0E731A0E0D4CC /* React-cxxreact.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -21671,7 +21479,7 @@ }; 60EC64E5B79C5F949116BD34130957D4 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 9CFEF4B2F71FFC3B4CECF95138A92078 /* BugsnagReactNative.xcconfig */; + baseConfigurationReference = 99AF4DFDE2ABD62C27EAF18027F31333 /* BugsnagReactNative.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -21697,7 +21505,7 @@ }; 6513D57E09C36B05CF916F7E8A662077 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = C6D171DF4994A123133AE5FD69B7AC4D /* EXFileSystem.xcconfig */; + baseConfigurationReference = 02CDFF93B047B472A8624B224BCE7384 /* EXFileSystem.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CLANG_ENABLE_OBJC_WEAK = NO; @@ -21724,7 +21532,7 @@ }; 65177BF401CF3D4E9EAACC190BD37AC3 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = BA96A4294166CCA0210FED1496ABF3E6 /* RNFirebase.xcconfig */; + baseConfigurationReference = C9AE48D025ED018BDD98CE52096C0000 /* RNFirebase.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -21750,7 +21558,7 @@ }; 65EB1A7A5D1465B289935D8C2F1BBD30 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 5C7B5BE4CD05BC18AAF33DE7CB9B56F1 /* UMFaceDetectorInterface.xcconfig */; + baseConfigurationReference = 431B63A00C1A747B8D7A0B78E519D23B /* UMFaceDetectorInterface.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; @@ -21766,7 +21574,7 @@ }; 664E5CB9279DF965C75A308E4C19DE1C /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 87147EA3924490E7FE3B10CF6A434585 /* react-native-webview.xcconfig */; + baseConfigurationReference = DADFA29679DDDCE50802FB9F0E63891D /* react-native-webview.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -21791,7 +21599,7 @@ }; 66B5F5845EEB10E57A3A46D451238559 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 670F19CD099E71FFF3DB849FA9EF1C2B /* React-RCTText.xcconfig */; + baseConfigurationReference = 24CD4E138D34122AAF3DD9F0EAE3992B /* React-RCTText.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -21816,7 +21624,7 @@ }; 677C55C5482A68F862361238F7F8E2D0 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 177B20649747AEBF05DB3D10A1CB15B7 /* react-native-jitsi-meet.xcconfig */; + baseConfigurationReference = DC70E3B215AAF282FC476C5BD4A9CCFF /* react-native-jitsi-meet.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -21841,7 +21649,7 @@ }; 68862420C9D14D6D543E26A3029DA27D /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 670F19CD099E71FFF3DB849FA9EF1C2B /* React-RCTText.xcconfig */; + baseConfigurationReference = 24CD4E138D34122AAF3DD9F0EAE3992B /* React-RCTText.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -21893,7 +21701,7 @@ }; 69C2BA4F9009FED344405012652F51CA /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 177B20649747AEBF05DB3D10A1CB15B7 /* react-native-jitsi-meet.xcconfig */; + baseConfigurationReference = DC70E3B215AAF282FC476C5BD4A9CCFF /* react-native-jitsi-meet.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -21919,7 +21727,7 @@ }; 6A441642FC3FFE19200089E9B23E8FF7 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = C7930E4CF5334470EFD51157392AB83D /* RNReanimated.xcconfig */; + baseConfigurationReference = F24E33E5B75728F9FDCB30D152EA5B28 /* RNReanimated.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -21945,7 +21753,7 @@ }; 6BCF1CCFC9C90ED9DE69A10FDE40B529 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 48F55A96F4B39F4EAC7C991A98C77C75 /* UMFontInterface.xcconfig */; + baseConfigurationReference = 45BE059D32CDFFC69A1E8781C3EAD863 /* UMFontInterface.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; @@ -21960,7 +21768,7 @@ }; 6DB18DF4D7CB92ACF500AA4CB91574EE /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = EC868B423877FDBD1EDFB7F7D37849F7 /* React-CoreModules.xcconfig */; + baseConfigurationReference = 95139157D114FB108933DFC69FECD2EA /* React-CoreModules.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -21985,7 +21793,7 @@ }; 6DD833DF82AD945EAC590428925265F6 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = EB31CC643E32D8B050EF2FC73A7982FC /* rn-extensions-share.xcconfig */; + baseConfigurationReference = CB554346B45BEA1433A35DAC20A6302D /* rn-extensions-share.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -22035,7 +21843,7 @@ }; 71909F570922582EB29779D954A7655F /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 2337DDFDED6611BD80E32A01AB8886B3 /* react-native-orientation-locker.xcconfig */; + baseConfigurationReference = 69FA7C8169224D40DAA35E1DAC8FAF5B /* react-native-orientation-locker.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -22059,9 +21867,32 @@ }; name = Release; }; + 72BA3C239531B419A9A45174627204FC /* Debug */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 49A51F5FBBCFD3F02638D5838DF22338 /* Pods-ShareRocketChatRN.debug.xcconfig */; + buildSettings = { + ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO; + APPLICATION_EXTENSION_API_ONLY = NO; + CLANG_ENABLE_OBJC_WEAK = NO; + CODE_SIGN_IDENTITY = "iPhone Developer"; + "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; + IPHONEOS_DEPLOYMENT_TARGET = 10.0; + MACH_O_TYPE = staticlib; + OTHER_LDFLAGS = ""; + OTHER_LIBTOOLFLAGS = ""; + PODS_ROOT = "$(SRCROOT)"; + PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.${PRODUCT_NAME:rfc1034identifier}"; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + TARGETED_DEVICE_FAMILY = "1,2"; + }; + name = Debug; + }; 72C0F38FC6842701424DB20D290EE53C /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = E662B7D9CF1686E91D2F91409470E2B1 /* RNAudio.xcconfig */; + baseConfigurationReference = EE0698383F0AAFAD6AF6103B1B442D36 /* RNAudio.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -22111,7 +21942,7 @@ }; 737D073839062785B358E9BE4DD325CA /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 93DCFAEDF7520474568C3D08B41D4B70 /* UMReactNativeAdapter.xcconfig */; + baseConfigurationReference = E5DF08856F124A8FCBDECC52ADE5D7C6 /* UMReactNativeAdapter.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CLANG_ENABLE_OBJC_WEAK = NO; @@ -22161,7 +21992,7 @@ }; 7452D595EDF76721ACCD09888C4300EB /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 2337DDFDED6611BD80E32A01AB8886B3 /* react-native-orientation-locker.xcconfig */; + baseConfigurationReference = 69FA7C8169224D40DAA35E1DAC8FAF5B /* react-native-orientation-locker.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -22186,7 +22017,7 @@ }; 745584283E329E8703A11278C5FD98AA /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 6D2F53023440974A063B63AB9E1ABC22 /* RNUserDefaults.xcconfig */; + baseConfigurationReference = 7B1A1C31EB9ECCADE2E4A1F54B864E52 /* RNUserDefaults.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -22211,7 +22042,7 @@ }; 76100320E21D42374BB0F0BD2DD157C1 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = B7D1B79909003012A055C68887F1391E /* UMCameraInterface.xcconfig */; + baseConfigurationReference = 2B18181095B13DDFFBC3A6F7559C3D7E /* UMCameraInterface.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; @@ -22226,7 +22057,7 @@ }; 76BE7F8726B152972329F09707F0ACD9 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 41380E07D12C9C4B5596EAD3227A6258 /* UMCore.xcconfig */; + baseConfigurationReference = A3C1409A99321AC9D3AFDE8F8B4606FF /* UMCore.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CLANG_ENABLE_OBJC_WEAK = NO; @@ -22252,7 +22083,7 @@ }; 779B1B52B5C8BD4D67CE2B7E314D68A7 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 744F74F47B727F2059D95906EDD0C441 /* react-native-keyboard-tracking-view.xcconfig */; + baseConfigurationReference = 84D516CE8D1A2B0D2D412A017EEC4464 /* react-native-keyboard-tracking-view.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -22277,7 +22108,7 @@ }; 79A0890C0FF0EE7CE7DDB7CF814436E7 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = EB31CC643E32D8B050EF2FC73A7982FC /* rn-extensions-share.xcconfig */; + baseConfigurationReference = CB554346B45BEA1433A35DAC20A6302D /* rn-extensions-share.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -22303,7 +22134,7 @@ }; 79B3E0F885BF8B866097919EC7654A4B /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 9667D6891677A0AAA9920C5B89D717E3 /* UMImageLoaderInterface.xcconfig */; + baseConfigurationReference = CAC67D9F86DB72ABC4AA0A05AC670B08 /* UMImageLoaderInterface.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; @@ -22332,7 +22163,7 @@ }; 7BC8ECF42B51502BDEC0C678012395A9 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = D59853E1F7C76D1F53A4AF7E12C099FC /* React-RCTImage.xcconfig */; + baseConfigurationReference = 667D46F6C366F61325EDE72448BABA21 /* React-RCTImage.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -22358,7 +22189,7 @@ }; 7ED2663CADBE5D8B55630D2A2DBE74FD /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 3D5B15F0426BA99C850F32275888F3A8 /* UMSensorsInterface.xcconfig */; + baseConfigurationReference = A7E28B85C59EC325E693064F02F09EA9 /* UMSensorsInterface.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; @@ -22372,33 +22203,9 @@ }; name = Release; }; - 7F9B0EAE45D5D01297DD31F03A1E49AC /* Release */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 527CD81DF520880893DE8021CD41E619 /* Pods-ShareRocketChatRN.release.xcconfig */; - buildSettings = { - ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO; - APPLICATION_EXTENSION_API_ONLY = NO; - CLANG_ENABLE_OBJC_WEAK = NO; - CODE_SIGN_IDENTITY = "iPhone Developer"; - "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - IPHONEOS_DEPLOYMENT_TARGET = 10.0; - MACH_O_TYPE = staticlib; - OTHER_LDFLAGS = ""; - OTHER_LIBTOOLFLAGS = ""; - PODS_ROOT = "$(SRCROOT)"; - PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.${PRODUCT_NAME:rfc1034identifier}"; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - TARGETED_DEVICE_FAMILY = "1,2"; - VALIDATE_PRODUCT = YES; - }; - name = Release; - }; 82E853AAD06F4C932AAEAEA9A8AE1EB4 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = AF92BAEF3A761A17CE4C19BC9737DC17 /* RCTTypeSafety.xcconfig */; + baseConfigurationReference = 1BB51D7FFE1F27312BA8DD9DEFF8487E /* RCTTypeSafety.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -22423,7 +22230,7 @@ }; 83397D6AC147BB15D1360B863354BE6E /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 39668E5BE34343D5B35086F2764604FB /* EXAppLoaderProvider.xcconfig */; + baseConfigurationReference = A6026F4325389EE05BF49376F2C6AC1F /* EXAppLoaderProvider.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CLANG_ENABLE_OBJC_WEAK = NO; @@ -22449,7 +22256,7 @@ }; 83B8667023CCABE7930FECF4308F42C1 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = D9AFB91BBF49BF620AA053C9102946E4 /* RNBootSplash.xcconfig */; + baseConfigurationReference = 6A9C542B51663967CB6AE75E477BEEC0 /* RNBootSplash.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -22475,7 +22282,7 @@ }; 83D51B373BC655474060B7059374A055 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 53C23EEF3A231BAE4998393E9CEC6E27 /* UMBarCodeScannerInterface.xcconfig */; + baseConfigurationReference = 63E4FDA869FAD60878F385D1A9589C6D /* UMBarCodeScannerInterface.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; @@ -22491,7 +22298,7 @@ }; 85F758BB2896EF75F72B6F2A77364175 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = FD1362BA26D5112AE41ADA2C5A6F6273 /* EXHaptics.xcconfig */; + baseConfigurationReference = 934F0CB2BDAF35D7A5F97101FF54BDC0 /* EXHaptics.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CLANG_ENABLE_OBJC_WEAK = NO; @@ -22543,7 +22350,7 @@ }; 88FCAFE7B06BCEC0AC4CA29D98C90803 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 9CFEF4B2F71FFC3B4CECF95138A92078 /* BugsnagReactNative.xcconfig */; + baseConfigurationReference = 99AF4DFDE2ABD62C27EAF18027F31333 /* BugsnagReactNative.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -22593,7 +22400,7 @@ }; 911D20316B507B8E73EBD2ADE090E8EA /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = AB39927EBB85CB037E90FA21E4258141 /* react-native-background-timer.xcconfig */; + baseConfigurationReference = 3DB88B5D0C1D4D29C963C5FB5F477C3B /* react-native-background-timer.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -22618,7 +22425,7 @@ }; 917A20C7C8D878581AC4A8285097017A /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = C86689487D4AC89DAE6A1C4E3E993C72 /* Yoga.xcconfig */; + baseConfigurationReference = 54280E8022DD29F21AA03BFAAE564270 /* Yoga.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -22644,7 +22451,7 @@ }; 921CB93956632503338319DD71FF15A5 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = E6CE01C14A3CBB783965DD126287D8D8 /* RNFastImage.xcconfig */; + baseConfigurationReference = D8769C70C86B65DF6E21276A1A22C134 /* RNFastImage.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -22669,7 +22476,7 @@ }; 932715893B5D8A998947BDF948EDEA0F /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 53C23EEF3A231BAE4998393E9CEC6E27 /* UMBarCodeScannerInterface.xcconfig */; + baseConfigurationReference = 63E4FDA869FAD60878F385D1A9589C6D /* UMBarCodeScannerInterface.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; @@ -22684,7 +22491,7 @@ }; 9379E6366D9E11C636D1E54575E216EE /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = AF92BAEF3A761A17CE4C19BC9737DC17 /* RCTTypeSafety.xcconfig */; + baseConfigurationReference = 1BB51D7FFE1F27312BA8DD9DEFF8487E /* RCTTypeSafety.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -22710,7 +22517,7 @@ }; 94E3653223086209F995373532C8F7EB /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = FE87F7446D77FCE118FD9535031AC421 /* React-jsi.xcconfig */; + baseConfigurationReference = 9A61E6E4B2351E3A08F9D5CC8D16E8DE /* React-jsi.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -22733,9 +22540,32 @@ }; name = Debug; }; + 9746E56F32855E0FC0D6B9D203F1D19F /* Debug */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = B5D32CE02F68EE345F9101FFAF7E3476 /* Pods-RocketChatRN.debug.xcconfig */; + buildSettings = { + ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO; + APPLICATION_EXTENSION_API_ONLY = NO; + CLANG_ENABLE_OBJC_WEAK = NO; + CODE_SIGN_IDENTITY = "iPhone Developer"; + "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; + IPHONEOS_DEPLOYMENT_TARGET = 10.0; + MACH_O_TYPE = staticlib; + OTHER_LDFLAGS = ""; + OTHER_LIBTOOLFLAGS = ""; + PODS_ROOT = "$(SRCROOT)"; + PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.${PRODUCT_NAME:rfc1034identifier}"; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + TARGETED_DEVICE_FAMILY = "1,2"; + }; + name = Debug; + }; 9798DF63F7267FE1AD56F263EADD5B6A /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = F3E173A7456214290C4B559AFC03ED23 /* RNScreens.xcconfig */; + baseConfigurationReference = D045AEF9F23D6AC81AA9505593167B69 /* RNScreens.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -22760,7 +22590,7 @@ }; 98D1BE1C631327534141623ED69DFAB0 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = C6D171DF4994A123133AE5FD69B7AC4D /* EXFileSystem.xcconfig */; + baseConfigurationReference = 02CDFF93B047B472A8624B224BCE7384 /* EXFileSystem.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CLANG_ENABLE_OBJC_WEAK = NO; @@ -22786,7 +22616,7 @@ }; 9A3174FDB1F4445ADEA8F35751AD8207 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 3826DF82E9CC270392DC3031EDF5A369 /* React-jsinspector.xcconfig */; + baseConfigurationReference = 0CA79E2932EBB980CBD13F423FAF20CB /* React-jsinspector.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -22811,7 +22641,7 @@ }; 9B80322166315DE06CF92ECB3BE31E88 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 4FFEF2A042B8994E50F48637F199F48B /* react-native-keyboard-input.xcconfig */; + baseConfigurationReference = 90C33D877B66B11D59A02B19EDA0BCB9 /* react-native-keyboard-input.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -22837,7 +22667,7 @@ }; 9CAE17F3AEAA92514573A6AFC28F58F8 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 5C7B5BE4CD05BC18AAF33DE7CB9B56F1 /* UMFaceDetectorInterface.xcconfig */; + baseConfigurationReference = 431B63A00C1A747B8D7A0B78E519D23B /* UMFaceDetectorInterface.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; @@ -22852,7 +22682,7 @@ }; 9D25004EDED3EA338107FA6F993E40BC /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = C00F22328D14F065FA9850E5D07BFA13 /* React-RCTBlob.xcconfig */; + baseConfigurationReference = 3B7C37914C89D8E242AA293908C90A94 /* React-RCTBlob.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -22893,7 +22723,7 @@ }; 9D7C7C3A1425C18171275C2A383FA8CE /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 4982C28DA8AB92708C12DF174B860C00 /* RNDeviceInfo.xcconfig */; + baseConfigurationReference = 243EC5FDBF449542F55F85B6EB8B8AE2 /* RNDeviceInfo.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -22918,7 +22748,7 @@ }; 9EACAE2DF1FB29D6CD5849750D0E945D /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = E6CE01C14A3CBB783965DD126287D8D8 /* RNFastImage.xcconfig */; + baseConfigurationReference = D8769C70C86B65DF6E21276A1A22C134 /* RNFastImage.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -22944,7 +22774,7 @@ }; 9F252DECF660AD99C57FE172DC3377CE /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = E7012DFB516AB61852B9CC8BB61D4BA4 /* KeyCommands.xcconfig */; + baseConfigurationReference = 462B49F70DCEE6909C2EA1401BF8034C /* KeyCommands.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -22969,7 +22799,7 @@ }; 9FF84870B7F6FDF9150FDD60E6D57C4F /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = BDEFFFFC11A828082CD1C3DB0768AEAD /* React-RCTAnimation.xcconfig */; + baseConfigurationReference = 4C18A10A30D307A1C08B17C6278B4DAC /* React-RCTAnimation.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -22995,7 +22825,7 @@ }; A071A0C7DF65F1D9E326DD3CE2DE8C9E /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = B6C9DD78E0C948983075BD3C9EA833AE /* ReactCommon.xcconfig */; + baseConfigurationReference = CCCD2C94BD30D3B521CD399597DFA1BA /* ReactCommon.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -23020,7 +22850,7 @@ }; A0CE7427B29B950D5C3D9D14D5F0956F /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 6E9218532103C4522A6F7D4ECCBAC4E6 /* UMConstantsInterface.xcconfig */; + baseConfigurationReference = 070429B06A32B526D719C22C0ED95B89 /* UMConstantsInterface.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; @@ -23035,7 +22865,7 @@ }; A2194A79914B5CC215FA2FF1CF8CFCF8 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = AB39927EBB85CB037E90FA21E4258141 /* react-native-background-timer.xcconfig */; + baseConfigurationReference = 3DB88B5D0C1D4D29C963C5FB5F477C3B /* react-native-background-timer.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -23061,7 +22891,7 @@ }; AA08A4CFB27E8D0764FB1F3E7659D277 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 30B353DEC498EA5A641CAFC6D6DB0633 /* React-jsiexecutor.xcconfig */; + baseConfigurationReference = EBF03A09F4BA3CE37ED37F5E03DCAE85 /* React-jsiexecutor.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -23087,7 +22917,7 @@ }; AA3C608C1EFBFF6195298DABF3846DE1 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 3D5B15F0426BA99C850F32275888F3A8 /* UMSensorsInterface.xcconfig */; + baseConfigurationReference = A7E28B85C59EC325E693064F02F09EA9 /* UMSensorsInterface.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; @@ -23102,7 +22932,7 @@ }; AC7D788F43301FFAEDED241C7A7099A7 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = D59853E1F7C76D1F53A4AF7E12C099FC /* React-RCTImage.xcconfig */; + baseConfigurationReference = 667D46F6C366F61325EDE72448BABA21 /* React-RCTImage.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -23127,7 +22957,7 @@ }; AEE4C1B4604FAAC1DEA8D5FF30CD56C3 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 5ECBF7B20C1C9FF645678F85CFD5F4BE /* FBReactNativeSpec.xcconfig */; + baseConfigurationReference = 57F11FB6EEE31A59C686129B33E8A98E /* FBReactNativeSpec.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -23152,7 +22982,7 @@ }; B006F308D2A947732D25BF32E328BD7C /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = BFEC92E06BB365368B583C644DBB0F6E /* UMTaskManagerInterface.xcconfig */; + baseConfigurationReference = 5F96269818E4FE5E931F3956EAAA776F /* UMTaskManagerInterface.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; @@ -23242,7 +23072,7 @@ }; B1B7713286195D091EC5BC6F27BD5581 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = CF9F15FD5960E55BD2D1A59F9F4F379C /* ReactNativeART.xcconfig */; + baseConfigurationReference = D6F83C5B8128560C302B2FBA53C98CCD /* ReactNativeART.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -23267,7 +23097,7 @@ }; B4E87D0668029199CD617DB2DDE97D86 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = FECB74A76169853E789D0D17BBE5F768 /* react-native-slider.xcconfig */; + baseConfigurationReference = 5B83B3722402B2A7D21156D06CFA5326 /* react-native-slider.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -23318,7 +23148,7 @@ }; B74A66D1B4DB325F337289BC6923B612 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = F45A73E641BDE1BD18CFC8E867D5E10B /* RCTRequired.xcconfig */; + baseConfigurationReference = 0C8759B3CC9AE7915986FEE88C9DB0B9 /* RCTRequired.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; @@ -23407,7 +23237,7 @@ }; B93AD636A7701AACBF5C0DEB8249D15D /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 077917B1D3903CB3C07616C204CE5396 /* React-RCTLinking.xcconfig */; + baseConfigurationReference = 25F931BA0A4073AE54F40800E8F6EDA0 /* React-RCTLinking.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -23431,33 +23261,9 @@ }; name = Release; }; - BCFE097AA62A013AB9216B7FC06E8491 /* Release */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = A9916A69A97251C8AA9535F6F70AE9DB /* Pods-RocketChatRN.release.xcconfig */; - buildSettings = { - ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO; - APPLICATION_EXTENSION_API_ONLY = NO; - CLANG_ENABLE_OBJC_WEAK = NO; - CODE_SIGN_IDENTITY = "iPhone Developer"; - "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - IPHONEOS_DEPLOYMENT_TARGET = 10.0; - MACH_O_TYPE = staticlib; - OTHER_LDFLAGS = ""; - OTHER_LIBTOOLFLAGS = ""; - PODS_ROOT = "$(SRCROOT)"; - PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.${PRODUCT_NAME:rfc1034identifier}"; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - TARGETED_DEVICE_FAMILY = "1,2"; - VALIDATE_PRODUCT = YES; - }; - name = Release; - }; BD044681D243E0E09FBA04ACF21FA123 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = F3E173A7456214290C4B559AFC03ED23 /* RNScreens.xcconfig */; + baseConfigurationReference = D045AEF9F23D6AC81AA9505593167B69 /* RNScreens.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -23483,7 +23289,7 @@ }; BE5AE6E1F2B58CFF3217A86780F6336C /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = B7D1B79909003012A055C68887F1391E /* UMCameraInterface.xcconfig */; + baseConfigurationReference = 2B18181095B13DDFFBC3A6F7559C3D7E /* UMCameraInterface.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; @@ -23499,7 +23305,7 @@ }; BF89345BE7A481AA4055FF310B7F3956 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = DA8FD0BA2B221950A40ED181E849C297 /* RNLocalize.xcconfig */; + baseConfigurationReference = D50D6B679FC38A0B85069A2DF33BFAB1 /* RNLocalize.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -23525,7 +23331,7 @@ }; BFB2316A669B0D479BA6634A0904B083 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 08AA6966F0622C2865934F4E61FE30C0 /* rn-fetch-blob.xcconfig */; + baseConfigurationReference = 25546CFF0549B75468718408D326CECE /* rn-fetch-blob.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -23551,7 +23357,7 @@ }; C128C18739AA9067D388429C13824733 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = DC982BA645E4501054C92207D63A8DEE /* FBLazyVector.xcconfig */; + baseConfigurationReference = B04662DD8F156C1AE56B5303BFE1AF0E /* FBLazyVector.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; @@ -23566,7 +23372,7 @@ }; C1413F798E37FBF0F0B0CBF49398107C /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = D663687779FA5090927E808C13E98D01 /* EXConstants.xcconfig */; + baseConfigurationReference = A6B61E11092D997709ECB60B44D7DBB8 /* EXConstants.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CLANG_ENABLE_OBJC_WEAK = NO; @@ -23592,7 +23398,7 @@ }; C675F1101EC56FF48D0EAAF987511073 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 79A5C32FF86A7E02BD42FA055AFDB39B /* React-RCTActionSheet.xcconfig */; + baseConfigurationReference = A765B6A46819F2A5761417E17C78ACC6 /* React-RCTActionSheet.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -23617,7 +23423,7 @@ }; C68F8BE3073459D980E297CA1951C3DB /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 08AA6966F0622C2865934F4E61FE30C0 /* rn-fetch-blob.xcconfig */; + baseConfigurationReference = 25546CFF0549B75468718408D326CECE /* rn-fetch-blob.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -23640,35 +23446,9 @@ }; name = Debug; }; - C7EA46022C2352B4DD68FE75977528DD /* Release */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = EDF13684DFD35C1534554E78EB5E561C /* SocketRocket.xcconfig */; - buildSettings = { - APPLICATION_EXTENSION_API_ONLY = NO; - CODE_SIGN_IDENTITY = "iPhone Developer"; - "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - GCC_PREFIX_HEADER = "Target Support Files/SocketRocket/SocketRocket-prefix.pch"; - IPHONEOS_DEPLOYMENT_TARGET = 6.0; - OTHER_LDFLAGS = ""; - OTHER_LIBTOOLFLAGS = ""; - PRIVATE_HEADERS_FOLDER_PATH = ""; - PRODUCT_MODULE_NAME = SocketRocket; - PRODUCT_NAME = SocketRocket; - PUBLIC_HEADERS_FOLDER_PATH = ""; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; - SWIFT_VERSION = 5.0; - TARGETED_DEVICE_FAMILY = "1,2"; - VALIDATE_PRODUCT = YES; - }; - name = Release; - }; C9AD4422D1F772604AC286D0A6DF4189 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = E4617DB69DFADFBDA0782817F33AAF2A /* RNVectorIcons.xcconfig */; + baseConfigurationReference = CAF3C1C585BFCF952CFDF22563FD4CE4 /* RNVectorIcons.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -23694,7 +23474,7 @@ }; C9E113D47DEE6500FA656727AD637A71 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = F87BC579EA5CA2A5B6B6F5FF355208F1 /* RNRootView.xcconfig */; + baseConfigurationReference = 0ACADA2C0709063A90146E70C934F3EA /* RNRootView.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -23719,7 +23499,7 @@ }; CBAC48129BCC71255BE1413BD06DFB43 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 6D2F53023440974A063B63AB9E1ABC22 /* RNUserDefaults.xcconfig */; + baseConfigurationReference = 7B1A1C31EB9ECCADE2E4A1F54B864E52 /* RNUserDefaults.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -23745,7 +23525,7 @@ }; CD26F4BEB83F26811BF1081A76FAA47F /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = E4617DB69DFADFBDA0782817F33AAF2A /* RNVectorIcons.xcconfig */; + baseConfigurationReference = CAF3C1C585BFCF952CFDF22563FD4CE4 /* RNVectorIcons.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -23770,7 +23550,7 @@ }; D04F94085B40D8D4779EBFD0F4383CA8 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 7EF317EA9A04BCA70761C1DBF2C695B1 /* React-Core.xcconfig */; + baseConfigurationReference = 4D56494F44DFE819271A6C0586D48903 /* React-Core.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -23796,7 +23576,7 @@ }; D17FDDE9E8075FCA5001DB700CFDC7EE /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = EC868B423877FDBD1EDFB7F7D37849F7 /* React-CoreModules.xcconfig */; + baseConfigurationReference = 95139157D114FB108933DFC69FECD2EA /* React-CoreModules.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -23822,7 +23602,7 @@ }; D2A71B68B86874314BDCFFB39ACE9B3B /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 5BD8B4834ABC16EBB220DB0B996B48F7 /* UMPermissionsInterface.xcconfig */; + baseConfigurationReference = E2B8D86AFA6269BDB864AD4F3BE1E4F0 /* UMPermissionsInterface.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; @@ -23838,7 +23618,7 @@ }; D338DBE12EAEC66131F53EE4259FD4E3 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 6C5FE44A31BD5CB84DE59BBAFFD9EE65 /* UMFileSystemInterface.xcconfig */; + baseConfigurationReference = 2861A98CBEF359E1FA98BD8BA3E4CE7C /* UMFileSystemInterface.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; @@ -23906,34 +23686,9 @@ }; name = Debug; }; - D5341DABBCE6769B2CF4CF9CC37EFFF8 /* Debug */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = EDF13684DFD35C1534554E78EB5E561C /* SocketRocket.xcconfig */; - buildSettings = { - APPLICATION_EXTENSION_API_ONLY = NO; - CODE_SIGN_IDENTITY = "iPhone Developer"; - "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - GCC_PREFIX_HEADER = "Target Support Files/SocketRocket/SocketRocket-prefix.pch"; - IPHONEOS_DEPLOYMENT_TARGET = 6.0; - OTHER_LDFLAGS = ""; - OTHER_LIBTOOLFLAGS = ""; - PRIVATE_HEADERS_FOLDER_PATH = ""; - PRODUCT_MODULE_NAME = SocketRocket; - PRODUCT_NAME = SocketRocket; - PUBLIC_HEADERS_FOLDER_PATH = ""; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; - SWIFT_VERSION = 5.0; - TARGETED_DEVICE_FAMILY = "1,2"; - }; - name = Debug; - }; D59C3B7BE5D98BD3A70A5E5B073C631B /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = BFEC92E06BB365368B583C644DBB0F6E /* UMTaskManagerInterface.xcconfig */; + baseConfigurationReference = 5F96269818E4FE5E931F3956EAAA776F /* UMTaskManagerInterface.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; @@ -24001,7 +23756,7 @@ }; DB3E7A155C245721FC07D01632F0CFAB /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = FD1362BA26D5112AE41ADA2C5A6F6273 /* EXHaptics.xcconfig */; + baseConfigurationReference = 934F0CB2BDAF35D7A5F97101FF54BDC0 /* EXHaptics.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CLANG_ENABLE_OBJC_WEAK = NO; @@ -24054,7 +23809,7 @@ }; DB9E714E74F88B6DD317822487883DBA /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 4982C28DA8AB92708C12DF174B860C00 /* RNDeviceInfo.xcconfig */; + baseConfigurationReference = 243EC5FDBF449542F55F85B6EB8B8AE2 /* RNDeviceInfo.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -24080,7 +23835,7 @@ }; DE4E0DAFF0236084703632955B393B89 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = F45A73E641BDE1BD18CFC8E867D5E10B /* RCTRequired.xcconfig */; + baseConfigurationReference = 0C8759B3CC9AE7915986FEE88C9DB0B9 /* RCTRequired.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; @@ -24095,7 +23850,7 @@ }; DE8CEC7E031F3505797998B9F3C37A92 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = FE87F7446D77FCE118FD9535031AC421 /* React-jsi.xcconfig */; + baseConfigurationReference = 9A61E6E4B2351E3A08F9D5CC8D16E8DE /* React-jsi.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -24121,7 +23876,7 @@ }; DF099D9819C5D304192EBE7A7475E55A /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 4FFEF2A042B8994E50F48637F199F48B /* react-native-keyboard-input.xcconfig */; + baseConfigurationReference = 90C33D877B66B11D59A02B19EDA0BCB9 /* react-native-keyboard-input.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -24146,7 +23901,7 @@ }; E38047BBE4979D9C53D6D7FEA4422373 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 48F55A96F4B39F4EAC7C991A98C77C75 /* UMFontInterface.xcconfig */; + baseConfigurationReference = 45BE059D32CDFFC69A1E8781C3EAD863 /* UMFontInterface.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; @@ -24187,7 +23942,7 @@ }; E651B8F553C5C42CD9C5F0480D01A3A2 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = FECB74A76169853E789D0D17BBE5F768 /* react-native-slider.xcconfig */; + baseConfigurationReference = 5B83B3722402B2A7D21156D06CFA5326 /* react-native-slider.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -24212,7 +23967,7 @@ }; E7C01DC159749822F32A915919D90ECF /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = F61149C7CB39C9ACF3BF0270530309EA /* react-native-cameraroll.xcconfig */; + baseConfigurationReference = CBE8A3D3C11CB110388CDDBEC3FDAD2B /* react-native-cameraroll.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -24238,7 +23993,7 @@ }; EAD69AF5DEF01031F1B45B5E1FB65899 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 322F3B7909BAA7E21257160C8C1CB542 /* React-RCTVibration.xcconfig */; + baseConfigurationReference = 23699EF9ED482A234477FD3CC00DAFAA /* React-RCTVibration.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -24263,7 +24018,7 @@ }; EF0788D08C339FE1FB8A20A21A46A640 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 077917B1D3903CB3C07616C204CE5396 /* React-RCTLinking.xcconfig */; + baseConfigurationReference = 25F931BA0A4073AE54F40800E8F6EDA0 /* React-RCTLinking.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -24288,7 +24043,7 @@ }; EFF46113088B01826DDB9EE5A92D5CDF /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 3826DF82E9CC270392DC3031EDF5A369 /* React-jsinspector.xcconfig */; + baseConfigurationReference = 0CA79E2932EBB980CBD13F423FAF20CB /* React-jsinspector.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -24312,6 +24067,30 @@ }; name = Release; }; + F234CAAC3DA3A433ED34734791F17053 /* Release */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 527CD81DF520880893DE8021CD41E619 /* Pods-ShareRocketChatRN.release.xcconfig */; + buildSettings = { + ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO; + APPLICATION_EXTENSION_API_ONLY = NO; + CLANG_ENABLE_OBJC_WEAK = NO; + CODE_SIGN_IDENTITY = "iPhone Developer"; + "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; + IPHONEOS_DEPLOYMENT_TARGET = 10.0; + MACH_O_TYPE = staticlib; + OTHER_LDFLAGS = ""; + OTHER_LIBTOOLFLAGS = ""; + PODS_ROOT = "$(SRCROOT)"; + PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.${PRODUCT_NAME:rfc1034identifier}"; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + TARGETED_DEVICE_FAMILY = "1,2"; + VALIDATE_PRODUCT = YES; + }; + name = Release; + }; F2A8031420095C1651D74005E0E31E8B /* Release */ = { isa = XCBuildConfiguration; baseConfigurationReference = 2F9FF75DBA3C633DA045206F6C039C91 /* FirebaseInstanceID.xcconfig */; @@ -24339,7 +24118,7 @@ }; F4BB0B9A68137AA0D4D3ED480DBFFA5A /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 7E561A083D82315E4BC4219566966904 /* RNGestureHandler.xcconfig */; + baseConfigurationReference = 5C1B9061D19410501780E0625C47998E /* RNGestureHandler.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -24364,7 +24143,7 @@ }; F5413AE83955B591D3DA4DC3663AFCB5 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = CF9F15FD5960E55BD2D1A59F9F4F379C /* ReactNativeART.xcconfig */; + baseConfigurationReference = D6F83C5B8128560C302B2FBA53C98CCD /* ReactNativeART.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -24415,7 +24194,7 @@ }; F8897D51ADA116A31D6C4B3CABB435E1 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 6C5FE44A31BD5CB84DE59BBAFFD9EE65 /* UMFileSystemInterface.xcconfig */; + baseConfigurationReference = 2861A98CBEF359E1FA98BD8BA3E4CE7C /* UMFileSystemInterface.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; @@ -24430,7 +24209,7 @@ }; FA402AD52FB31D9F7215703DB1B44B09 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 39668E5BE34343D5B35086F2764604FB /* EXAppLoaderProvider.xcconfig */; + baseConfigurationReference = A6026F4325389EE05BF49376F2C6AC1F /* EXAppLoaderProvider.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CLANG_ENABLE_OBJC_WEAK = NO; @@ -24472,7 +24251,7 @@ }; FC71C31E2668416B9072953D27DC64CE /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = BBD1F216127024D2D5EC07E43AD1785B /* EXWebBrowser.xcconfig */; + baseConfigurationReference = BDDE3BFBD40A3A7AECBFB703CED4B961 /* EXWebBrowser.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CLANG_ENABLE_OBJC_WEAK = NO; @@ -24524,7 +24303,7 @@ }; FF9F97A496BA9B674F13E18785C6F22B /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = C86689487D4AC89DAE6A1C4E3E993C72 /* Yoga.xcconfig */; + baseConfigurationReference = 54280E8022DD29F21AA03BFAAE564270 /* Yoga.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -24622,15 +24401,6 @@ defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 132C9EBB4B8C9557FAE86DA2CB5B8D86 /* Build configuration list for PBXNativeTarget "Pods-RocketChatRN" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - 4F57FEB7A592CAFDB96DB160F451F174 /* Debug */, - BCFE097AA62A013AB9216B7FC06E8491 /* Release */, - ); - defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; - }; 13B185864087F75D556AC109B2D70BF7 /* Build configuration list for PBXAggregateTarget "Fabric" */ = { isa = XCConfigurationList; buildConfigurations = ( @@ -24712,6 +24482,15 @@ defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; + 22C63FCC2CA78513B982BE9861348DAC /* Build configuration list for PBXNativeTarget "Pods-RocketChatRN" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + 9746E56F32855E0FC0D6B9D203F1D19F /* Debug */, + 3688CA988BE0187B688891D1B5C5EFD9 /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; 272C318C3C138518DD0B0FB5BF575E70 /* Build configuration list for PBXNativeTarget "FirebaseCore" */ = { isa = XCConfigurationList; buildConfigurations = ( @@ -25036,15 +24815,6 @@ defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 8A342587C503250D8D3C41BE04FB11ED /* Build configuration list for PBXNativeTarget "SocketRocket" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - D5341DABBCE6769B2CF4CF9CC37EFFF8 /* Debug */, - C7EA46022C2352B4DD68FE75977528DD /* Release */, - ); - defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; - }; 913138D43225773C4430483BA181BA0E /* Build configuration list for PBXNativeTarget "RNGestureHandler" */ = { isa = XCConfigurationList; buildConfigurations = ( @@ -25135,6 +24905,15 @@ defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; + A8C0632CFB7EB3662129CABC205B7FF5 /* Build configuration list for PBXNativeTarget "Pods-ShareRocketChatRN" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + 72BA3C239531B419A9A45174627204FC /* Debug */, + F234CAAC3DA3A433ED34734791F17053 /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; A904F29603EB782010D92E7149DB3585 /* Build configuration list for PBXNativeTarget "React-RCTSettings" */ = { isa = XCConfigurationList; buildConfigurations = ( @@ -25315,15 +25094,6 @@ defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - DD378334D536B64B0EDCEFA095609E8E /* Build configuration list for PBXNativeTarget "Pods-ShareRocketChatRN" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - 584E5AE2D0ED90B92C7DAF30DAB485D8 /* Debug */, - 7F9B0EAE45D5D01297DD31F03A1E49AC /* Release */, - ); - defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; - }; DDC2F1F99075686EF74ABC88BB07C1A1 /* Build configuration list for PBXAggregateTarget "UMCameraInterface" */ = { isa = XCConfigurationList; buildConfigurations = ( @@ -25387,6 +25157,15 @@ defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; + F1776E52FEA103CF28C3992DC4DD90F2 /* Build configuration list for PBXNativeTarget "EXKeepAwake" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + 0E9A514BC0BB755801F8F494F3D9A668 /* Debug */, + 50249922A303BF655E9EEF9873D67098 /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; F3B5D9DA1E40073F034CC27A3F9CD632 /* Build configuration list for PBXNativeTarget "FBReactNativeSpec" */ = { isa = XCConfigurationList; buildConfigurations = ( diff --git a/ios/Pods/Target Support Files/EXKeepAwake/EXKeepAwake-dummy.m b/ios/Pods/Target Support Files/EXKeepAwake/EXKeepAwake-dummy.m new file mode 100644 index 000000000..39aad026a --- /dev/null +++ b/ios/Pods/Target Support Files/EXKeepAwake/EXKeepAwake-dummy.m @@ -0,0 +1,5 @@ +#import +@interface PodsDummy_EXKeepAwake : NSObject +@end +@implementation PodsDummy_EXKeepAwake +@end diff --git a/ios/Pods/Target Support Files/SocketRocket/SocketRocket-prefix.pch b/ios/Pods/Target Support Files/EXKeepAwake/EXKeepAwake-prefix.pch similarity index 100% rename from ios/Pods/Target Support Files/SocketRocket/SocketRocket-prefix.pch rename to ios/Pods/Target Support Files/EXKeepAwake/EXKeepAwake-prefix.pch diff --git a/ios/Pods/Target Support Files/SocketRocket/SocketRocket.xcconfig b/ios/Pods/Target Support Files/EXKeepAwake/EXKeepAwake.xcconfig similarity index 57% rename from ios/Pods/Target Support Files/SocketRocket/SocketRocket.xcconfig rename to ios/Pods/Target Support Files/EXKeepAwake/EXKeepAwake.xcconfig index 696ce1d55..465a4e17c 100644 --- a/ios/Pods/Target Support Files/SocketRocket/SocketRocket.xcconfig +++ b/ios/Pods/Target Support Files/EXKeepAwake/EXKeepAwake.xcconfig @@ -1,11 +1,10 @@ -APPLICATION_EXTENSION_API_ONLY = YES -CONFIGURATION_BUILD_DIR = ${PODS_CONFIGURATION_BUILD_DIR}/SocketRocket +CONFIGURATION_BUILD_DIR = ${PODS_CONFIGURATION_BUILD_DIR}/EXKeepAwake GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 -HEADER_SEARCH_PATHS = $(inherited) "${PODS_ROOT}/Headers/Private" "${PODS_ROOT}/Headers/Private/SocketRocket" "${PODS_ROOT}/Headers/Public" "${PODS_ROOT}/Headers/Public/SocketRocket" +HEADER_SEARCH_PATHS = $(inherited) "${PODS_ROOT}/Headers/Private" "${PODS_ROOT}/Headers/Private/EXKeepAwake" "${PODS_ROOT}/Headers/Public" "${PODS_ROOT}/Headers/Public/EXKeepAwake" "${PODS_ROOT}/Headers/Public/UMCore" 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/detox/ios_src/SocketRocket +PODS_TARGET_SRCROOT = ${PODS_ROOT}/../../node_modules/expo-keep-awake/ios PRODUCT_BUNDLE_IDENTIFIER = org.cocoapods.${PRODUCT_NAME:rfc1034identifier} SKIP_INSTALL = YES USE_RECURSIVE_SCRIPT_INPUTS_IN_SCRIPT_PHASES = YES diff --git a/ios/Pods/Target Support Files/Pods-RocketChatRN/Pods-RocketChatRN-acknowledgements.markdown b/ios/Pods/Target Support Files/Pods-RocketChatRN/Pods-RocketChatRN-acknowledgements.markdown index e6d8536eb..dcab9f804 100644 --- a/ios/Pods/Target Support Files/Pods-RocketChatRN/Pods-RocketChatRN-acknowledgements.markdown +++ b/ios/Pods/Target Support Files/Pods-RocketChatRN/Pods-RocketChatRN-acknowledgements.markdown @@ -2819,39 +2819,6 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. -## SocketRocket - -BSD License - -For SocketRocket software - -Copyright (c) 2016-present, Facebook, Inc. All rights reserved. - -Redistribution and use in source and binary forms, with or without modification, -are permitted provided that the following conditions are met: - - * Redistributions of source code must retain the above copyright notice, this - list of conditions and the following disclaimer. - - * Redistributions in binary form must reproduce the above copyright notice, - this list of conditions and the following disclaimer in the documentation - and/or other materials provided with the distribution. - - * Neither the name Facebook nor the names of its contributors may be used to - endorse or promote products derived from this software without specific - prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND -ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED -WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE -DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR -ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES -(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; -LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON -ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS -SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - ## boost-for-react-native Boost Software License - Version 1.0 - August 17th, 2003 diff --git a/ios/Pods/Target Support Files/Pods-RocketChatRN/Pods-RocketChatRN-acknowledgements.plist b/ios/Pods/Target Support Files/Pods-RocketChatRN/Pods-RocketChatRN-acknowledgements.plist index 93decd472..cd3207ba2 100644 --- a/ios/Pods/Target Support Files/Pods-RocketChatRN/Pods-RocketChatRN-acknowledgements.plist +++ b/ios/Pods/Target Support Files/Pods-RocketChatRN/Pods-RocketChatRN-acknowledgements.plist @@ -3046,45 +3046,6 @@ THE SOFTWARE. Type PSGroupSpecifier - - FooterText - BSD License - -For SocketRocket software - -Copyright (c) 2016-present, Facebook, Inc. All rights reserved. - -Redistribution and use in source and binary forms, with or without modification, -are permitted provided that the following conditions are met: - - * Redistributions of source code must retain the above copyright notice, this - list of conditions and the following disclaimer. - - * Redistributions in binary form must reproduce the above copyright notice, - this list of conditions and the following disclaimer in the documentation - and/or other materials provided with the distribution. - - * Neither the name Facebook nor the names of its contributors may be used to - endorse or promote products derived from this software without specific - prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND -ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED -WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE -DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR -ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES -(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; -LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON -ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS -SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - License - BSD - Title - SocketRocket - Type - PSGroupSpecifier - FooterText Boost Software License - Version 1.0 - August 17th, 2003 diff --git a/ios/Pods/Target Support Files/Pods-RocketChatRN/Pods-RocketChatRN.debug.xcconfig b/ios/Pods/Target Support Files/Pods-RocketChatRN/Pods-RocketChatRN.debug.xcconfig index 4f4c8e00a..4077b56cf 100644 --- a/ios/Pods/Target Support Files/Pods-RocketChatRN/Pods-RocketChatRN.debug.xcconfig +++ b/ios/Pods/Target Support Files/Pods-RocketChatRN/Pods-RocketChatRN.debug.xcconfig @@ -1,9 +1,9 @@ FRAMEWORK_SEARCH_PATHS = $(inherited) "${PODS_ROOT}/Crashlytics/iOS" "${PODS_ROOT}/Fabric/iOS" "${PODS_ROOT}/FirebaseAnalytics/Frameworks" "${PODS_ROOT}/GoogleAppMeasurement/Frameworks" "${PODS_ROOT}/JitsiMeetSDK/Frameworks" GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 $(inherited) SD_WEBP=1 $(inherited) PB_FIELD_32BIT=1 PB_NO_PACKED_STRUCTS=1 PB_ENABLE_MALLOC=1 -HEADER_SEARCH_PATHS = $(inherited) "${PODS_ROOT}/Headers/Public" "${PODS_ROOT}/Headers/Public/BugsnagReactNative" "${PODS_ROOT}/Headers/Public/DoubleConversion" "${PODS_ROOT}/Headers/Public/EXAV" "${PODS_ROOT}/Headers/Public/EXAppLoaderProvider" "${PODS_ROOT}/Headers/Public/EXConstants" "${PODS_ROOT}/Headers/Public/EXFileSystem" "${PODS_ROOT}/Headers/Public/EXHaptics" "${PODS_ROOT}/Headers/Public/EXPermissions" "${PODS_ROOT}/Headers/Public/EXWebBrowser" "${PODS_ROOT}/Headers/Public/FBLazyVector" "${PODS_ROOT}/Headers/Public/FBReactNativeSpec" "${PODS_ROOT}/Headers/Public/Firebase" "${PODS_ROOT}/Headers/Public/FirebaseCore" "${PODS_ROOT}/Headers/Public/FirebaseCoreDiagnostics" "${PODS_ROOT}/Headers/Public/FirebaseCoreDiagnosticsInterop" "${PODS_ROOT}/Headers/Public/FirebaseInstallations" "${PODS_ROOT}/Headers/Public/FirebaseInstanceID" "${PODS_ROOT}/Headers/Public/GoogleDataTransport" "${PODS_ROOT}/Headers/Public/GoogleDataTransportCCTSupport" "${PODS_ROOT}/Headers/Public/GoogleUtilities" "${PODS_ROOT}/Headers/Public/KeyCommands" "${PODS_ROOT}/Headers/Public/PromisesObjC" "${PODS_ROOT}/Headers/Public/RCTRequired" "${PODS_ROOT}/Headers/Public/RCTTypeSafety" "${PODS_ROOT}/Headers/Public/RNAudio" "${PODS_ROOT}/Headers/Public/RNBootSplash" "${PODS_ROOT}/Headers/Public/RNDateTimePicker" "${PODS_ROOT}/Headers/Public/RNDeviceInfo" "${PODS_ROOT}/Headers/Public/RNFastImage" "${PODS_ROOT}/Headers/Public/RNFirebase" "${PODS_ROOT}/Headers/Public/RNGestureHandler" "${PODS_ROOT}/Headers/Public/RNImageCropPicker" "${PODS_ROOT}/Headers/Public/RNLocalize" "${PODS_ROOT}/Headers/Public/RNReanimated" "${PODS_ROOT}/Headers/Public/RNRootView" "${PODS_ROOT}/Headers/Public/RNScreens" "${PODS_ROOT}/Headers/Public/RNUserDefaults" "${PODS_ROOT}/Headers/Public/RNVectorIcons" "${PODS_ROOT}/Headers/Public/RSKImageCropper" "${PODS_ROOT}/Headers/Public/React-Core" "${PODS_ROOT}/Headers/Public/React-RCTBlob" "${PODS_ROOT}/Headers/Public/React-RCTText" "${PODS_ROOT}/Headers/Public/React-cxxreact" "${PODS_ROOT}/Headers/Public/React-jsi" "${PODS_ROOT}/Headers/Public/React-jsiexecutor" "${PODS_ROOT}/Headers/Public/React-jsinspector" "${PODS_ROOT}/Headers/Public/ReactCommon" "${PODS_ROOT}/Headers/Public/ReactNativeART" "${PODS_ROOT}/Headers/Public/SDWebImage" "${PODS_ROOT}/Headers/Public/SDWebImageWebPCoder" "${PODS_ROOT}/Headers/Public/SocketRocket" "${PODS_ROOT}/Headers/Public/UMBarCodeScannerInterface" "${PODS_ROOT}/Headers/Public/UMCameraInterface" "${PODS_ROOT}/Headers/Public/UMConstantsInterface" "${PODS_ROOT}/Headers/Public/UMCore" "${PODS_ROOT}/Headers/Public/UMFaceDetectorInterface" "${PODS_ROOT}/Headers/Public/UMFileSystemInterface" "${PODS_ROOT}/Headers/Public/UMFontInterface" "${PODS_ROOT}/Headers/Public/UMImageLoaderInterface" "${PODS_ROOT}/Headers/Public/UMPermissionsInterface" "${PODS_ROOT}/Headers/Public/UMReactNativeAdapter" "${PODS_ROOT}/Headers/Public/UMSensorsInterface" "${PODS_ROOT}/Headers/Public/UMTaskManagerInterface" "${PODS_ROOT}/Headers/Public/Yoga" "${PODS_ROOT}/Headers/Public/glog" "${PODS_ROOT}/Headers/Public/libwebp" "${PODS_ROOT}/Headers/Public/nanopb" "${PODS_ROOT}/Headers/Public/react-native-appearance" "${PODS_ROOT}/Headers/Public/react-native-background-timer" "${PODS_ROOT}/Headers/Public/react-native-cameraroll" "${PODS_ROOT}/Headers/Public/react-native-document-picker" "${PODS_ROOT}/Headers/Public/react-native-jitsi-meet" "${PODS_ROOT}/Headers/Public/react-native-keyboard-input" "${PODS_ROOT}/Headers/Public/react-native-keyboard-tracking-view" "${PODS_ROOT}/Headers/Public/react-native-notifications" "${PODS_ROOT}/Headers/Public/react-native-orientation-locker" "${PODS_ROOT}/Headers/Public/react-native-slider" "${PODS_ROOT}/Headers/Public/react-native-webview" "${PODS_ROOT}/Headers/Public/rn-extensions-share" "${PODS_ROOT}/Headers/Public/rn-fetch-blob" $(inherited) ${PODS_ROOT}/Firebase/CoreOnly/Sources "${PODS_TARGET_SRCROOT}/Sources/FBLPromises/include" "$(PODS_ROOT)/Headers/Private/React-Core" +HEADER_SEARCH_PATHS = $(inherited) "${PODS_ROOT}/Headers/Public" "${PODS_ROOT}/Headers/Public/BugsnagReactNative" "${PODS_ROOT}/Headers/Public/DoubleConversion" "${PODS_ROOT}/Headers/Public/EXAV" "${PODS_ROOT}/Headers/Public/EXAppLoaderProvider" "${PODS_ROOT}/Headers/Public/EXConstants" "${PODS_ROOT}/Headers/Public/EXFileSystem" "${PODS_ROOT}/Headers/Public/EXHaptics" "${PODS_ROOT}/Headers/Public/EXKeepAwake" "${PODS_ROOT}/Headers/Public/EXPermissions" "${PODS_ROOT}/Headers/Public/EXWebBrowser" "${PODS_ROOT}/Headers/Public/FBLazyVector" "${PODS_ROOT}/Headers/Public/FBReactNativeSpec" "${PODS_ROOT}/Headers/Public/Firebase" "${PODS_ROOT}/Headers/Public/FirebaseCore" "${PODS_ROOT}/Headers/Public/FirebaseCoreDiagnostics" "${PODS_ROOT}/Headers/Public/FirebaseCoreDiagnosticsInterop" "${PODS_ROOT}/Headers/Public/FirebaseInstallations" "${PODS_ROOT}/Headers/Public/FirebaseInstanceID" "${PODS_ROOT}/Headers/Public/GoogleDataTransport" "${PODS_ROOT}/Headers/Public/GoogleDataTransportCCTSupport" "${PODS_ROOT}/Headers/Public/GoogleUtilities" "${PODS_ROOT}/Headers/Public/KeyCommands" "${PODS_ROOT}/Headers/Public/PromisesObjC" "${PODS_ROOT}/Headers/Public/RCTRequired" "${PODS_ROOT}/Headers/Public/RCTTypeSafety" "${PODS_ROOT}/Headers/Public/RNAudio" "${PODS_ROOT}/Headers/Public/RNBootSplash" "${PODS_ROOT}/Headers/Public/RNDateTimePicker" "${PODS_ROOT}/Headers/Public/RNDeviceInfo" "${PODS_ROOT}/Headers/Public/RNFastImage" "${PODS_ROOT}/Headers/Public/RNFirebase" "${PODS_ROOT}/Headers/Public/RNGestureHandler" "${PODS_ROOT}/Headers/Public/RNImageCropPicker" "${PODS_ROOT}/Headers/Public/RNLocalize" "${PODS_ROOT}/Headers/Public/RNReanimated" "${PODS_ROOT}/Headers/Public/RNRootView" "${PODS_ROOT}/Headers/Public/RNScreens" "${PODS_ROOT}/Headers/Public/RNUserDefaults" "${PODS_ROOT}/Headers/Public/RNVectorIcons" "${PODS_ROOT}/Headers/Public/RSKImageCropper" "${PODS_ROOT}/Headers/Public/React-Core" "${PODS_ROOT}/Headers/Public/React-RCTBlob" "${PODS_ROOT}/Headers/Public/React-RCTText" "${PODS_ROOT}/Headers/Public/React-cxxreact" "${PODS_ROOT}/Headers/Public/React-jsi" "${PODS_ROOT}/Headers/Public/React-jsiexecutor" "${PODS_ROOT}/Headers/Public/React-jsinspector" "${PODS_ROOT}/Headers/Public/ReactCommon" "${PODS_ROOT}/Headers/Public/ReactNativeART" "${PODS_ROOT}/Headers/Public/SDWebImage" "${PODS_ROOT}/Headers/Public/SDWebImageWebPCoder" "${PODS_ROOT}/Headers/Public/UMBarCodeScannerInterface" "${PODS_ROOT}/Headers/Public/UMCameraInterface" "${PODS_ROOT}/Headers/Public/UMConstantsInterface" "${PODS_ROOT}/Headers/Public/UMCore" "${PODS_ROOT}/Headers/Public/UMFaceDetectorInterface" "${PODS_ROOT}/Headers/Public/UMFileSystemInterface" "${PODS_ROOT}/Headers/Public/UMFontInterface" "${PODS_ROOT}/Headers/Public/UMImageLoaderInterface" "${PODS_ROOT}/Headers/Public/UMPermissionsInterface" "${PODS_ROOT}/Headers/Public/UMReactNativeAdapter" "${PODS_ROOT}/Headers/Public/UMSensorsInterface" "${PODS_ROOT}/Headers/Public/UMTaskManagerInterface" "${PODS_ROOT}/Headers/Public/Yoga" "${PODS_ROOT}/Headers/Public/glog" "${PODS_ROOT}/Headers/Public/libwebp" "${PODS_ROOT}/Headers/Public/nanopb" "${PODS_ROOT}/Headers/Public/react-native-appearance" "${PODS_ROOT}/Headers/Public/react-native-background-timer" "${PODS_ROOT}/Headers/Public/react-native-cameraroll" "${PODS_ROOT}/Headers/Public/react-native-document-picker" "${PODS_ROOT}/Headers/Public/react-native-jitsi-meet" "${PODS_ROOT}/Headers/Public/react-native-keyboard-input" "${PODS_ROOT}/Headers/Public/react-native-keyboard-tracking-view" "${PODS_ROOT}/Headers/Public/react-native-notifications" "${PODS_ROOT}/Headers/Public/react-native-orientation-locker" "${PODS_ROOT}/Headers/Public/react-native-slider" "${PODS_ROOT}/Headers/Public/react-native-webview" "${PODS_ROOT}/Headers/Public/rn-extensions-share" "${PODS_ROOT}/Headers/Public/rn-fetch-blob" $(inherited) ${PODS_ROOT}/Firebase/CoreOnly/Sources "${PODS_TARGET_SRCROOT}/Sources/FBLPromises/include" "$(PODS_ROOT)/Headers/Private/React-Core" LD_RUNPATH_SEARCH_PATHS = $(inherited) '@executable_path/Frameworks' '@loader_path/Frameworks' -LIBRARY_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/BugsnagReactNative" "${PODS_CONFIGURATION_BUILD_DIR}/DoubleConversion" "${PODS_CONFIGURATION_BUILD_DIR}/EXAV" "${PODS_CONFIGURATION_BUILD_DIR}/EXAppLoaderProvider" "${PODS_CONFIGURATION_BUILD_DIR}/EXConstants" "${PODS_CONFIGURATION_BUILD_DIR}/EXFileSystem" "${PODS_CONFIGURATION_BUILD_DIR}/EXHaptics" "${PODS_CONFIGURATION_BUILD_DIR}/EXPermissions" "${PODS_CONFIGURATION_BUILD_DIR}/EXWebBrowser" "${PODS_CONFIGURATION_BUILD_DIR}/FBReactNativeSpec" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseCore" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseCoreDiagnostics" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseInstallations" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseInstanceID" "${PODS_CONFIGURATION_BUILD_DIR}/Folly" "${PODS_CONFIGURATION_BUILD_DIR}/GoogleDataTransport" "${PODS_CONFIGURATION_BUILD_DIR}/GoogleDataTransportCCTSupport" "${PODS_CONFIGURATION_BUILD_DIR}/GoogleUtilities" "${PODS_CONFIGURATION_BUILD_DIR}/KeyCommands" "${PODS_CONFIGURATION_BUILD_DIR}/PromisesObjC" "${PODS_CONFIGURATION_BUILD_DIR}/RCTTypeSafety" "${PODS_CONFIGURATION_BUILD_DIR}/RNAudio" "${PODS_CONFIGURATION_BUILD_DIR}/RNBootSplash" "${PODS_CONFIGURATION_BUILD_DIR}/RNDateTimePicker" "${PODS_CONFIGURATION_BUILD_DIR}/RNDeviceInfo" "${PODS_CONFIGURATION_BUILD_DIR}/RNFastImage" "${PODS_CONFIGURATION_BUILD_DIR}/RNFirebase" "${PODS_CONFIGURATION_BUILD_DIR}/RNGestureHandler" "${PODS_CONFIGURATION_BUILD_DIR}/RNImageCropPicker" "${PODS_CONFIGURATION_BUILD_DIR}/RNLocalize" "${PODS_CONFIGURATION_BUILD_DIR}/RNReanimated" "${PODS_CONFIGURATION_BUILD_DIR}/RNRootView" "${PODS_CONFIGURATION_BUILD_DIR}/RNScreens" "${PODS_CONFIGURATION_BUILD_DIR}/RNUserDefaults" "${PODS_CONFIGURATION_BUILD_DIR}/RNVectorIcons" "${PODS_CONFIGURATION_BUILD_DIR}/RSKImageCropper" "${PODS_CONFIGURATION_BUILD_DIR}/React-Core" "${PODS_CONFIGURATION_BUILD_DIR}/React-CoreModules" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTActionSheet" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTAnimation" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTBlob" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTImage" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTLinking" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTNetwork" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTSettings" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTText" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTVibration" "${PODS_CONFIGURATION_BUILD_DIR}/React-cxxreact" "${PODS_CONFIGURATION_BUILD_DIR}/React-jsi" "${PODS_CONFIGURATION_BUILD_DIR}/React-jsiexecutor" "${PODS_CONFIGURATION_BUILD_DIR}/React-jsinspector" "${PODS_CONFIGURATION_BUILD_DIR}/ReactCommon" "${PODS_CONFIGURATION_BUILD_DIR}/ReactNativeART" "${PODS_CONFIGURATION_BUILD_DIR}/SDWebImage" "${PODS_CONFIGURATION_BUILD_DIR}/SDWebImageWebPCoder" "${PODS_CONFIGURATION_BUILD_DIR}/SocketRocket" "${PODS_CONFIGURATION_BUILD_DIR}/UMCore" "${PODS_CONFIGURATION_BUILD_DIR}/UMReactNativeAdapter" "${PODS_CONFIGURATION_BUILD_DIR}/Yoga" "${PODS_CONFIGURATION_BUILD_DIR}/glog" "${PODS_CONFIGURATION_BUILD_DIR}/libwebp" "${PODS_CONFIGURATION_BUILD_DIR}/nanopb" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-appearance" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-background-timer" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-cameraroll" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-document-picker" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-jitsi-meet" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-keyboard-input" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-keyboard-tracking-view" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-notifications" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-orientation-locker" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-slider" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-webview" "${PODS_CONFIGURATION_BUILD_DIR}/rn-extensions-share" "${PODS_CONFIGURATION_BUILD_DIR}/rn-fetch-blob" -OTHER_LDFLAGS = $(inherited) -ObjC -l"BugsnagReactNative" -l"DoubleConversion" -l"EXAV" -l"EXAppLoaderProvider" -l"EXConstants" -l"EXFileSystem" -l"EXHaptics" -l"EXPermissions" -l"EXWebBrowser" -l"FBReactNativeSpec" -l"FirebaseCore" -l"FirebaseCoreDiagnostics" -l"FirebaseInstallations" -l"FirebaseInstanceID" -l"Folly" -l"GoogleDataTransport" -l"GoogleDataTransportCCTSupport" -l"GoogleUtilities" -l"KeyCommands" -l"PromisesObjC" -l"RCTTypeSafety" -l"RNAudio" -l"RNBootSplash" -l"RNDateTimePicker" -l"RNDeviceInfo" -l"RNFastImage" -l"RNFirebase" -l"RNGestureHandler" -l"RNImageCropPicker" -l"RNLocalize" -l"RNReanimated" -l"RNRootView" -l"RNScreens" -l"RNUserDefaults" -l"RNVectorIcons" -l"RSKImageCropper" -l"React-Core" -l"React-CoreModules" -l"React-RCTActionSheet" -l"React-RCTAnimation" -l"React-RCTBlob" -l"React-RCTImage" -l"React-RCTLinking" -l"React-RCTNetwork" -l"React-RCTSettings" -l"React-RCTText" -l"React-RCTVibration" -l"React-cxxreact" -l"React-jsi" -l"React-jsiexecutor" -l"React-jsinspector" -l"ReactCommon" -l"ReactNativeART" -l"SDWebImage" -l"SDWebImageWebPCoder" -l"SocketRocket" -l"UMCore" -l"UMReactNativeAdapter" -l"Yoga" -l"c++" -l"glog" -l"icucore" -l"libwebp" -l"nanopb" -l"react-native-appearance" -l"react-native-background-timer" -l"react-native-cameraroll" -l"react-native-document-picker" -l"react-native-jitsi-meet" -l"react-native-keyboard-input" -l"react-native-keyboard-tracking-view" -l"react-native-notifications" -l"react-native-orientation-locker" -l"react-native-slider" -l"react-native-webview" -l"rn-extensions-share" -l"rn-fetch-blob" -l"sqlite3" -l"stdc++" -l"z" -framework "AVFoundation" -framework "CFNetwork" -framework "Crashlytics" -framework "FIRAnalyticsConnector" -framework "Fabric" -framework "FirebaseAnalytics" -framework "Foundation" -framework "GoogleAppMeasurement" -framework "ImageIO" -framework "JavaScriptCore" -framework "JitsiMeet" -framework "MessageUI" -framework "Photos" -framework "QuartzCore" -framework "Security" -framework "StoreKit" -framework "SystemConfiguration" -framework "UIKit" -framework "WebRTC" +LIBRARY_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/BugsnagReactNative" "${PODS_CONFIGURATION_BUILD_DIR}/DoubleConversion" "${PODS_CONFIGURATION_BUILD_DIR}/EXAV" "${PODS_CONFIGURATION_BUILD_DIR}/EXAppLoaderProvider" "${PODS_CONFIGURATION_BUILD_DIR}/EXConstants" "${PODS_CONFIGURATION_BUILD_DIR}/EXFileSystem" "${PODS_CONFIGURATION_BUILD_DIR}/EXHaptics" "${PODS_CONFIGURATION_BUILD_DIR}/EXKeepAwake" "${PODS_CONFIGURATION_BUILD_DIR}/EXPermissions" "${PODS_CONFIGURATION_BUILD_DIR}/EXWebBrowser" "${PODS_CONFIGURATION_BUILD_DIR}/FBReactNativeSpec" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseCore" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseCoreDiagnostics" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseInstallations" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseInstanceID" "${PODS_CONFIGURATION_BUILD_DIR}/Folly" "${PODS_CONFIGURATION_BUILD_DIR}/GoogleDataTransport" "${PODS_CONFIGURATION_BUILD_DIR}/GoogleDataTransportCCTSupport" "${PODS_CONFIGURATION_BUILD_DIR}/GoogleUtilities" "${PODS_CONFIGURATION_BUILD_DIR}/KeyCommands" "${PODS_CONFIGURATION_BUILD_DIR}/PromisesObjC" "${PODS_CONFIGURATION_BUILD_DIR}/RCTTypeSafety" "${PODS_CONFIGURATION_BUILD_DIR}/RNAudio" "${PODS_CONFIGURATION_BUILD_DIR}/RNBootSplash" "${PODS_CONFIGURATION_BUILD_DIR}/RNDateTimePicker" "${PODS_CONFIGURATION_BUILD_DIR}/RNDeviceInfo" "${PODS_CONFIGURATION_BUILD_DIR}/RNFastImage" "${PODS_CONFIGURATION_BUILD_DIR}/RNFirebase" "${PODS_CONFIGURATION_BUILD_DIR}/RNGestureHandler" "${PODS_CONFIGURATION_BUILD_DIR}/RNImageCropPicker" "${PODS_CONFIGURATION_BUILD_DIR}/RNLocalize" "${PODS_CONFIGURATION_BUILD_DIR}/RNReanimated" "${PODS_CONFIGURATION_BUILD_DIR}/RNRootView" "${PODS_CONFIGURATION_BUILD_DIR}/RNScreens" "${PODS_CONFIGURATION_BUILD_DIR}/RNUserDefaults" "${PODS_CONFIGURATION_BUILD_DIR}/RNVectorIcons" "${PODS_CONFIGURATION_BUILD_DIR}/RSKImageCropper" "${PODS_CONFIGURATION_BUILD_DIR}/React-Core" "${PODS_CONFIGURATION_BUILD_DIR}/React-CoreModules" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTActionSheet" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTAnimation" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTBlob" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTImage" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTLinking" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTNetwork" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTSettings" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTText" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTVibration" "${PODS_CONFIGURATION_BUILD_DIR}/React-cxxreact" "${PODS_CONFIGURATION_BUILD_DIR}/React-jsi" "${PODS_CONFIGURATION_BUILD_DIR}/React-jsiexecutor" "${PODS_CONFIGURATION_BUILD_DIR}/React-jsinspector" "${PODS_CONFIGURATION_BUILD_DIR}/ReactCommon" "${PODS_CONFIGURATION_BUILD_DIR}/ReactNativeART" "${PODS_CONFIGURATION_BUILD_DIR}/SDWebImage" "${PODS_CONFIGURATION_BUILD_DIR}/SDWebImageWebPCoder" "${PODS_CONFIGURATION_BUILD_DIR}/UMCore" "${PODS_CONFIGURATION_BUILD_DIR}/UMReactNativeAdapter" "${PODS_CONFIGURATION_BUILD_DIR}/Yoga" "${PODS_CONFIGURATION_BUILD_DIR}/glog" "${PODS_CONFIGURATION_BUILD_DIR}/libwebp" "${PODS_CONFIGURATION_BUILD_DIR}/nanopb" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-appearance" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-background-timer" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-cameraroll" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-document-picker" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-jitsi-meet" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-keyboard-input" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-keyboard-tracking-view" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-notifications" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-orientation-locker" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-slider" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-webview" "${PODS_CONFIGURATION_BUILD_DIR}/rn-extensions-share" "${PODS_CONFIGURATION_BUILD_DIR}/rn-fetch-blob" +OTHER_LDFLAGS = $(inherited) -ObjC -l"BugsnagReactNative" -l"DoubleConversion" -l"EXAV" -l"EXAppLoaderProvider" -l"EXConstants" -l"EXFileSystem" -l"EXHaptics" -l"EXKeepAwake" -l"EXPermissions" -l"EXWebBrowser" -l"FBReactNativeSpec" -l"FirebaseCore" -l"FirebaseCoreDiagnostics" -l"FirebaseInstallations" -l"FirebaseInstanceID" -l"Folly" -l"GoogleDataTransport" -l"GoogleDataTransportCCTSupport" -l"GoogleUtilities" -l"KeyCommands" -l"PromisesObjC" -l"RCTTypeSafety" -l"RNAudio" -l"RNBootSplash" -l"RNDateTimePicker" -l"RNDeviceInfo" -l"RNFastImage" -l"RNFirebase" -l"RNGestureHandler" -l"RNImageCropPicker" -l"RNLocalize" -l"RNReanimated" -l"RNRootView" -l"RNScreens" -l"RNUserDefaults" -l"RNVectorIcons" -l"RSKImageCropper" -l"React-Core" -l"React-CoreModules" -l"React-RCTActionSheet" -l"React-RCTAnimation" -l"React-RCTBlob" -l"React-RCTImage" -l"React-RCTLinking" -l"React-RCTNetwork" -l"React-RCTSettings" -l"React-RCTText" -l"React-RCTVibration" -l"React-cxxreact" -l"React-jsi" -l"React-jsiexecutor" -l"React-jsinspector" -l"ReactCommon" -l"ReactNativeART" -l"SDWebImage" -l"SDWebImageWebPCoder" -l"UMCore" -l"UMReactNativeAdapter" -l"Yoga" -l"c++" -l"glog" -l"libwebp" -l"nanopb" -l"react-native-appearance" -l"react-native-background-timer" -l"react-native-cameraroll" -l"react-native-document-picker" -l"react-native-jitsi-meet" -l"react-native-keyboard-input" -l"react-native-keyboard-tracking-view" -l"react-native-notifications" -l"react-native-orientation-locker" -l"react-native-slider" -l"react-native-webview" -l"rn-extensions-share" -l"rn-fetch-blob" -l"sqlite3" -l"stdc++" -l"z" -framework "AVFoundation" -framework "Crashlytics" -framework "FIRAnalyticsConnector" -framework "Fabric" -framework "FirebaseAnalytics" -framework "Foundation" -framework "GoogleAppMeasurement" -framework "ImageIO" -framework "JavaScriptCore" -framework "JitsiMeet" -framework "MessageUI" -framework "Photos" -framework "QuartzCore" -framework "Security" -framework "StoreKit" -framework "SystemConfiguration" -framework "UIKit" -framework "WebRTC" PODS_BUILD_DIR = ${BUILD_DIR} PODS_CONFIGURATION_BUILD_DIR = ${PODS_BUILD_DIR}/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) PODS_PODFILE_DIR_PATH = ${SRCROOT}/. diff --git a/ios/Pods/Target Support Files/Pods-RocketChatRN/Pods-RocketChatRN.release.xcconfig b/ios/Pods/Target Support Files/Pods-RocketChatRN/Pods-RocketChatRN.release.xcconfig index 4f4c8e00a..4077b56cf 100644 --- a/ios/Pods/Target Support Files/Pods-RocketChatRN/Pods-RocketChatRN.release.xcconfig +++ b/ios/Pods/Target Support Files/Pods-RocketChatRN/Pods-RocketChatRN.release.xcconfig @@ -1,9 +1,9 @@ FRAMEWORK_SEARCH_PATHS = $(inherited) "${PODS_ROOT}/Crashlytics/iOS" "${PODS_ROOT}/Fabric/iOS" "${PODS_ROOT}/FirebaseAnalytics/Frameworks" "${PODS_ROOT}/GoogleAppMeasurement/Frameworks" "${PODS_ROOT}/JitsiMeetSDK/Frameworks" GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 $(inherited) SD_WEBP=1 $(inherited) PB_FIELD_32BIT=1 PB_NO_PACKED_STRUCTS=1 PB_ENABLE_MALLOC=1 -HEADER_SEARCH_PATHS = $(inherited) "${PODS_ROOT}/Headers/Public" "${PODS_ROOT}/Headers/Public/BugsnagReactNative" "${PODS_ROOT}/Headers/Public/DoubleConversion" "${PODS_ROOT}/Headers/Public/EXAV" "${PODS_ROOT}/Headers/Public/EXAppLoaderProvider" "${PODS_ROOT}/Headers/Public/EXConstants" "${PODS_ROOT}/Headers/Public/EXFileSystem" "${PODS_ROOT}/Headers/Public/EXHaptics" "${PODS_ROOT}/Headers/Public/EXPermissions" "${PODS_ROOT}/Headers/Public/EXWebBrowser" "${PODS_ROOT}/Headers/Public/FBLazyVector" "${PODS_ROOT}/Headers/Public/FBReactNativeSpec" "${PODS_ROOT}/Headers/Public/Firebase" "${PODS_ROOT}/Headers/Public/FirebaseCore" "${PODS_ROOT}/Headers/Public/FirebaseCoreDiagnostics" "${PODS_ROOT}/Headers/Public/FirebaseCoreDiagnosticsInterop" "${PODS_ROOT}/Headers/Public/FirebaseInstallations" "${PODS_ROOT}/Headers/Public/FirebaseInstanceID" "${PODS_ROOT}/Headers/Public/GoogleDataTransport" "${PODS_ROOT}/Headers/Public/GoogleDataTransportCCTSupport" "${PODS_ROOT}/Headers/Public/GoogleUtilities" "${PODS_ROOT}/Headers/Public/KeyCommands" "${PODS_ROOT}/Headers/Public/PromisesObjC" "${PODS_ROOT}/Headers/Public/RCTRequired" "${PODS_ROOT}/Headers/Public/RCTTypeSafety" "${PODS_ROOT}/Headers/Public/RNAudio" "${PODS_ROOT}/Headers/Public/RNBootSplash" "${PODS_ROOT}/Headers/Public/RNDateTimePicker" "${PODS_ROOT}/Headers/Public/RNDeviceInfo" "${PODS_ROOT}/Headers/Public/RNFastImage" "${PODS_ROOT}/Headers/Public/RNFirebase" "${PODS_ROOT}/Headers/Public/RNGestureHandler" "${PODS_ROOT}/Headers/Public/RNImageCropPicker" "${PODS_ROOT}/Headers/Public/RNLocalize" "${PODS_ROOT}/Headers/Public/RNReanimated" "${PODS_ROOT}/Headers/Public/RNRootView" "${PODS_ROOT}/Headers/Public/RNScreens" "${PODS_ROOT}/Headers/Public/RNUserDefaults" "${PODS_ROOT}/Headers/Public/RNVectorIcons" "${PODS_ROOT}/Headers/Public/RSKImageCropper" "${PODS_ROOT}/Headers/Public/React-Core" "${PODS_ROOT}/Headers/Public/React-RCTBlob" "${PODS_ROOT}/Headers/Public/React-RCTText" "${PODS_ROOT}/Headers/Public/React-cxxreact" "${PODS_ROOT}/Headers/Public/React-jsi" "${PODS_ROOT}/Headers/Public/React-jsiexecutor" "${PODS_ROOT}/Headers/Public/React-jsinspector" "${PODS_ROOT}/Headers/Public/ReactCommon" "${PODS_ROOT}/Headers/Public/ReactNativeART" "${PODS_ROOT}/Headers/Public/SDWebImage" "${PODS_ROOT}/Headers/Public/SDWebImageWebPCoder" "${PODS_ROOT}/Headers/Public/SocketRocket" "${PODS_ROOT}/Headers/Public/UMBarCodeScannerInterface" "${PODS_ROOT}/Headers/Public/UMCameraInterface" "${PODS_ROOT}/Headers/Public/UMConstantsInterface" "${PODS_ROOT}/Headers/Public/UMCore" "${PODS_ROOT}/Headers/Public/UMFaceDetectorInterface" "${PODS_ROOT}/Headers/Public/UMFileSystemInterface" "${PODS_ROOT}/Headers/Public/UMFontInterface" "${PODS_ROOT}/Headers/Public/UMImageLoaderInterface" "${PODS_ROOT}/Headers/Public/UMPermissionsInterface" "${PODS_ROOT}/Headers/Public/UMReactNativeAdapter" "${PODS_ROOT}/Headers/Public/UMSensorsInterface" "${PODS_ROOT}/Headers/Public/UMTaskManagerInterface" "${PODS_ROOT}/Headers/Public/Yoga" "${PODS_ROOT}/Headers/Public/glog" "${PODS_ROOT}/Headers/Public/libwebp" "${PODS_ROOT}/Headers/Public/nanopb" "${PODS_ROOT}/Headers/Public/react-native-appearance" "${PODS_ROOT}/Headers/Public/react-native-background-timer" "${PODS_ROOT}/Headers/Public/react-native-cameraroll" "${PODS_ROOT}/Headers/Public/react-native-document-picker" "${PODS_ROOT}/Headers/Public/react-native-jitsi-meet" "${PODS_ROOT}/Headers/Public/react-native-keyboard-input" "${PODS_ROOT}/Headers/Public/react-native-keyboard-tracking-view" "${PODS_ROOT}/Headers/Public/react-native-notifications" "${PODS_ROOT}/Headers/Public/react-native-orientation-locker" "${PODS_ROOT}/Headers/Public/react-native-slider" "${PODS_ROOT}/Headers/Public/react-native-webview" "${PODS_ROOT}/Headers/Public/rn-extensions-share" "${PODS_ROOT}/Headers/Public/rn-fetch-blob" $(inherited) ${PODS_ROOT}/Firebase/CoreOnly/Sources "${PODS_TARGET_SRCROOT}/Sources/FBLPromises/include" "$(PODS_ROOT)/Headers/Private/React-Core" +HEADER_SEARCH_PATHS = $(inherited) "${PODS_ROOT}/Headers/Public" "${PODS_ROOT}/Headers/Public/BugsnagReactNative" "${PODS_ROOT}/Headers/Public/DoubleConversion" "${PODS_ROOT}/Headers/Public/EXAV" "${PODS_ROOT}/Headers/Public/EXAppLoaderProvider" "${PODS_ROOT}/Headers/Public/EXConstants" "${PODS_ROOT}/Headers/Public/EXFileSystem" "${PODS_ROOT}/Headers/Public/EXHaptics" "${PODS_ROOT}/Headers/Public/EXKeepAwake" "${PODS_ROOT}/Headers/Public/EXPermissions" "${PODS_ROOT}/Headers/Public/EXWebBrowser" "${PODS_ROOT}/Headers/Public/FBLazyVector" "${PODS_ROOT}/Headers/Public/FBReactNativeSpec" "${PODS_ROOT}/Headers/Public/Firebase" "${PODS_ROOT}/Headers/Public/FirebaseCore" "${PODS_ROOT}/Headers/Public/FirebaseCoreDiagnostics" "${PODS_ROOT}/Headers/Public/FirebaseCoreDiagnosticsInterop" "${PODS_ROOT}/Headers/Public/FirebaseInstallations" "${PODS_ROOT}/Headers/Public/FirebaseInstanceID" "${PODS_ROOT}/Headers/Public/GoogleDataTransport" "${PODS_ROOT}/Headers/Public/GoogleDataTransportCCTSupport" "${PODS_ROOT}/Headers/Public/GoogleUtilities" "${PODS_ROOT}/Headers/Public/KeyCommands" "${PODS_ROOT}/Headers/Public/PromisesObjC" "${PODS_ROOT}/Headers/Public/RCTRequired" "${PODS_ROOT}/Headers/Public/RCTTypeSafety" "${PODS_ROOT}/Headers/Public/RNAudio" "${PODS_ROOT}/Headers/Public/RNBootSplash" "${PODS_ROOT}/Headers/Public/RNDateTimePicker" "${PODS_ROOT}/Headers/Public/RNDeviceInfo" "${PODS_ROOT}/Headers/Public/RNFastImage" "${PODS_ROOT}/Headers/Public/RNFirebase" "${PODS_ROOT}/Headers/Public/RNGestureHandler" "${PODS_ROOT}/Headers/Public/RNImageCropPicker" "${PODS_ROOT}/Headers/Public/RNLocalize" "${PODS_ROOT}/Headers/Public/RNReanimated" "${PODS_ROOT}/Headers/Public/RNRootView" "${PODS_ROOT}/Headers/Public/RNScreens" "${PODS_ROOT}/Headers/Public/RNUserDefaults" "${PODS_ROOT}/Headers/Public/RNVectorIcons" "${PODS_ROOT}/Headers/Public/RSKImageCropper" "${PODS_ROOT}/Headers/Public/React-Core" "${PODS_ROOT}/Headers/Public/React-RCTBlob" "${PODS_ROOT}/Headers/Public/React-RCTText" "${PODS_ROOT}/Headers/Public/React-cxxreact" "${PODS_ROOT}/Headers/Public/React-jsi" "${PODS_ROOT}/Headers/Public/React-jsiexecutor" "${PODS_ROOT}/Headers/Public/React-jsinspector" "${PODS_ROOT}/Headers/Public/ReactCommon" "${PODS_ROOT}/Headers/Public/ReactNativeART" "${PODS_ROOT}/Headers/Public/SDWebImage" "${PODS_ROOT}/Headers/Public/SDWebImageWebPCoder" "${PODS_ROOT}/Headers/Public/UMBarCodeScannerInterface" "${PODS_ROOT}/Headers/Public/UMCameraInterface" "${PODS_ROOT}/Headers/Public/UMConstantsInterface" "${PODS_ROOT}/Headers/Public/UMCore" "${PODS_ROOT}/Headers/Public/UMFaceDetectorInterface" "${PODS_ROOT}/Headers/Public/UMFileSystemInterface" "${PODS_ROOT}/Headers/Public/UMFontInterface" "${PODS_ROOT}/Headers/Public/UMImageLoaderInterface" "${PODS_ROOT}/Headers/Public/UMPermissionsInterface" "${PODS_ROOT}/Headers/Public/UMReactNativeAdapter" "${PODS_ROOT}/Headers/Public/UMSensorsInterface" "${PODS_ROOT}/Headers/Public/UMTaskManagerInterface" "${PODS_ROOT}/Headers/Public/Yoga" "${PODS_ROOT}/Headers/Public/glog" "${PODS_ROOT}/Headers/Public/libwebp" "${PODS_ROOT}/Headers/Public/nanopb" "${PODS_ROOT}/Headers/Public/react-native-appearance" "${PODS_ROOT}/Headers/Public/react-native-background-timer" "${PODS_ROOT}/Headers/Public/react-native-cameraroll" "${PODS_ROOT}/Headers/Public/react-native-document-picker" "${PODS_ROOT}/Headers/Public/react-native-jitsi-meet" "${PODS_ROOT}/Headers/Public/react-native-keyboard-input" "${PODS_ROOT}/Headers/Public/react-native-keyboard-tracking-view" "${PODS_ROOT}/Headers/Public/react-native-notifications" "${PODS_ROOT}/Headers/Public/react-native-orientation-locker" "${PODS_ROOT}/Headers/Public/react-native-slider" "${PODS_ROOT}/Headers/Public/react-native-webview" "${PODS_ROOT}/Headers/Public/rn-extensions-share" "${PODS_ROOT}/Headers/Public/rn-fetch-blob" $(inherited) ${PODS_ROOT}/Firebase/CoreOnly/Sources "${PODS_TARGET_SRCROOT}/Sources/FBLPromises/include" "$(PODS_ROOT)/Headers/Private/React-Core" LD_RUNPATH_SEARCH_PATHS = $(inherited) '@executable_path/Frameworks' '@loader_path/Frameworks' -LIBRARY_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/BugsnagReactNative" "${PODS_CONFIGURATION_BUILD_DIR}/DoubleConversion" "${PODS_CONFIGURATION_BUILD_DIR}/EXAV" "${PODS_CONFIGURATION_BUILD_DIR}/EXAppLoaderProvider" "${PODS_CONFIGURATION_BUILD_DIR}/EXConstants" "${PODS_CONFIGURATION_BUILD_DIR}/EXFileSystem" "${PODS_CONFIGURATION_BUILD_DIR}/EXHaptics" "${PODS_CONFIGURATION_BUILD_DIR}/EXPermissions" "${PODS_CONFIGURATION_BUILD_DIR}/EXWebBrowser" "${PODS_CONFIGURATION_BUILD_DIR}/FBReactNativeSpec" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseCore" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseCoreDiagnostics" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseInstallations" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseInstanceID" "${PODS_CONFIGURATION_BUILD_DIR}/Folly" "${PODS_CONFIGURATION_BUILD_DIR}/GoogleDataTransport" "${PODS_CONFIGURATION_BUILD_DIR}/GoogleDataTransportCCTSupport" "${PODS_CONFIGURATION_BUILD_DIR}/GoogleUtilities" "${PODS_CONFIGURATION_BUILD_DIR}/KeyCommands" "${PODS_CONFIGURATION_BUILD_DIR}/PromisesObjC" "${PODS_CONFIGURATION_BUILD_DIR}/RCTTypeSafety" "${PODS_CONFIGURATION_BUILD_DIR}/RNAudio" "${PODS_CONFIGURATION_BUILD_DIR}/RNBootSplash" "${PODS_CONFIGURATION_BUILD_DIR}/RNDateTimePicker" "${PODS_CONFIGURATION_BUILD_DIR}/RNDeviceInfo" "${PODS_CONFIGURATION_BUILD_DIR}/RNFastImage" "${PODS_CONFIGURATION_BUILD_DIR}/RNFirebase" "${PODS_CONFIGURATION_BUILD_DIR}/RNGestureHandler" "${PODS_CONFIGURATION_BUILD_DIR}/RNImageCropPicker" "${PODS_CONFIGURATION_BUILD_DIR}/RNLocalize" "${PODS_CONFIGURATION_BUILD_DIR}/RNReanimated" "${PODS_CONFIGURATION_BUILD_DIR}/RNRootView" "${PODS_CONFIGURATION_BUILD_DIR}/RNScreens" "${PODS_CONFIGURATION_BUILD_DIR}/RNUserDefaults" "${PODS_CONFIGURATION_BUILD_DIR}/RNVectorIcons" "${PODS_CONFIGURATION_BUILD_DIR}/RSKImageCropper" "${PODS_CONFIGURATION_BUILD_DIR}/React-Core" "${PODS_CONFIGURATION_BUILD_DIR}/React-CoreModules" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTActionSheet" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTAnimation" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTBlob" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTImage" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTLinking" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTNetwork" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTSettings" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTText" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTVibration" "${PODS_CONFIGURATION_BUILD_DIR}/React-cxxreact" "${PODS_CONFIGURATION_BUILD_DIR}/React-jsi" "${PODS_CONFIGURATION_BUILD_DIR}/React-jsiexecutor" "${PODS_CONFIGURATION_BUILD_DIR}/React-jsinspector" "${PODS_CONFIGURATION_BUILD_DIR}/ReactCommon" "${PODS_CONFIGURATION_BUILD_DIR}/ReactNativeART" "${PODS_CONFIGURATION_BUILD_DIR}/SDWebImage" "${PODS_CONFIGURATION_BUILD_DIR}/SDWebImageWebPCoder" "${PODS_CONFIGURATION_BUILD_DIR}/SocketRocket" "${PODS_CONFIGURATION_BUILD_DIR}/UMCore" "${PODS_CONFIGURATION_BUILD_DIR}/UMReactNativeAdapter" "${PODS_CONFIGURATION_BUILD_DIR}/Yoga" "${PODS_CONFIGURATION_BUILD_DIR}/glog" "${PODS_CONFIGURATION_BUILD_DIR}/libwebp" "${PODS_CONFIGURATION_BUILD_DIR}/nanopb" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-appearance" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-background-timer" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-cameraroll" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-document-picker" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-jitsi-meet" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-keyboard-input" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-keyboard-tracking-view" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-notifications" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-orientation-locker" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-slider" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-webview" "${PODS_CONFIGURATION_BUILD_DIR}/rn-extensions-share" "${PODS_CONFIGURATION_BUILD_DIR}/rn-fetch-blob" -OTHER_LDFLAGS = $(inherited) -ObjC -l"BugsnagReactNative" -l"DoubleConversion" -l"EXAV" -l"EXAppLoaderProvider" -l"EXConstants" -l"EXFileSystem" -l"EXHaptics" -l"EXPermissions" -l"EXWebBrowser" -l"FBReactNativeSpec" -l"FirebaseCore" -l"FirebaseCoreDiagnostics" -l"FirebaseInstallations" -l"FirebaseInstanceID" -l"Folly" -l"GoogleDataTransport" -l"GoogleDataTransportCCTSupport" -l"GoogleUtilities" -l"KeyCommands" -l"PromisesObjC" -l"RCTTypeSafety" -l"RNAudio" -l"RNBootSplash" -l"RNDateTimePicker" -l"RNDeviceInfo" -l"RNFastImage" -l"RNFirebase" -l"RNGestureHandler" -l"RNImageCropPicker" -l"RNLocalize" -l"RNReanimated" -l"RNRootView" -l"RNScreens" -l"RNUserDefaults" -l"RNVectorIcons" -l"RSKImageCropper" -l"React-Core" -l"React-CoreModules" -l"React-RCTActionSheet" -l"React-RCTAnimation" -l"React-RCTBlob" -l"React-RCTImage" -l"React-RCTLinking" -l"React-RCTNetwork" -l"React-RCTSettings" -l"React-RCTText" -l"React-RCTVibration" -l"React-cxxreact" -l"React-jsi" -l"React-jsiexecutor" -l"React-jsinspector" -l"ReactCommon" -l"ReactNativeART" -l"SDWebImage" -l"SDWebImageWebPCoder" -l"SocketRocket" -l"UMCore" -l"UMReactNativeAdapter" -l"Yoga" -l"c++" -l"glog" -l"icucore" -l"libwebp" -l"nanopb" -l"react-native-appearance" -l"react-native-background-timer" -l"react-native-cameraroll" -l"react-native-document-picker" -l"react-native-jitsi-meet" -l"react-native-keyboard-input" -l"react-native-keyboard-tracking-view" -l"react-native-notifications" -l"react-native-orientation-locker" -l"react-native-slider" -l"react-native-webview" -l"rn-extensions-share" -l"rn-fetch-blob" -l"sqlite3" -l"stdc++" -l"z" -framework "AVFoundation" -framework "CFNetwork" -framework "Crashlytics" -framework "FIRAnalyticsConnector" -framework "Fabric" -framework "FirebaseAnalytics" -framework "Foundation" -framework "GoogleAppMeasurement" -framework "ImageIO" -framework "JavaScriptCore" -framework "JitsiMeet" -framework "MessageUI" -framework "Photos" -framework "QuartzCore" -framework "Security" -framework "StoreKit" -framework "SystemConfiguration" -framework "UIKit" -framework "WebRTC" +LIBRARY_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/BugsnagReactNative" "${PODS_CONFIGURATION_BUILD_DIR}/DoubleConversion" "${PODS_CONFIGURATION_BUILD_DIR}/EXAV" "${PODS_CONFIGURATION_BUILD_DIR}/EXAppLoaderProvider" "${PODS_CONFIGURATION_BUILD_DIR}/EXConstants" "${PODS_CONFIGURATION_BUILD_DIR}/EXFileSystem" "${PODS_CONFIGURATION_BUILD_DIR}/EXHaptics" "${PODS_CONFIGURATION_BUILD_DIR}/EXKeepAwake" "${PODS_CONFIGURATION_BUILD_DIR}/EXPermissions" "${PODS_CONFIGURATION_BUILD_DIR}/EXWebBrowser" "${PODS_CONFIGURATION_BUILD_DIR}/FBReactNativeSpec" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseCore" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseCoreDiagnostics" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseInstallations" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseInstanceID" "${PODS_CONFIGURATION_BUILD_DIR}/Folly" "${PODS_CONFIGURATION_BUILD_DIR}/GoogleDataTransport" "${PODS_CONFIGURATION_BUILD_DIR}/GoogleDataTransportCCTSupport" "${PODS_CONFIGURATION_BUILD_DIR}/GoogleUtilities" "${PODS_CONFIGURATION_BUILD_DIR}/KeyCommands" "${PODS_CONFIGURATION_BUILD_DIR}/PromisesObjC" "${PODS_CONFIGURATION_BUILD_DIR}/RCTTypeSafety" "${PODS_CONFIGURATION_BUILD_DIR}/RNAudio" "${PODS_CONFIGURATION_BUILD_DIR}/RNBootSplash" "${PODS_CONFIGURATION_BUILD_DIR}/RNDateTimePicker" "${PODS_CONFIGURATION_BUILD_DIR}/RNDeviceInfo" "${PODS_CONFIGURATION_BUILD_DIR}/RNFastImage" "${PODS_CONFIGURATION_BUILD_DIR}/RNFirebase" "${PODS_CONFIGURATION_BUILD_DIR}/RNGestureHandler" "${PODS_CONFIGURATION_BUILD_DIR}/RNImageCropPicker" "${PODS_CONFIGURATION_BUILD_DIR}/RNLocalize" "${PODS_CONFIGURATION_BUILD_DIR}/RNReanimated" "${PODS_CONFIGURATION_BUILD_DIR}/RNRootView" "${PODS_CONFIGURATION_BUILD_DIR}/RNScreens" "${PODS_CONFIGURATION_BUILD_DIR}/RNUserDefaults" "${PODS_CONFIGURATION_BUILD_DIR}/RNVectorIcons" "${PODS_CONFIGURATION_BUILD_DIR}/RSKImageCropper" "${PODS_CONFIGURATION_BUILD_DIR}/React-Core" "${PODS_CONFIGURATION_BUILD_DIR}/React-CoreModules" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTActionSheet" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTAnimation" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTBlob" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTImage" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTLinking" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTNetwork" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTSettings" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTText" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTVibration" "${PODS_CONFIGURATION_BUILD_DIR}/React-cxxreact" "${PODS_CONFIGURATION_BUILD_DIR}/React-jsi" "${PODS_CONFIGURATION_BUILD_DIR}/React-jsiexecutor" "${PODS_CONFIGURATION_BUILD_DIR}/React-jsinspector" "${PODS_CONFIGURATION_BUILD_DIR}/ReactCommon" "${PODS_CONFIGURATION_BUILD_DIR}/ReactNativeART" "${PODS_CONFIGURATION_BUILD_DIR}/SDWebImage" "${PODS_CONFIGURATION_BUILD_DIR}/SDWebImageWebPCoder" "${PODS_CONFIGURATION_BUILD_DIR}/UMCore" "${PODS_CONFIGURATION_BUILD_DIR}/UMReactNativeAdapter" "${PODS_CONFIGURATION_BUILD_DIR}/Yoga" "${PODS_CONFIGURATION_BUILD_DIR}/glog" "${PODS_CONFIGURATION_BUILD_DIR}/libwebp" "${PODS_CONFIGURATION_BUILD_DIR}/nanopb" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-appearance" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-background-timer" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-cameraroll" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-document-picker" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-jitsi-meet" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-keyboard-input" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-keyboard-tracking-view" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-notifications" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-orientation-locker" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-slider" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-webview" "${PODS_CONFIGURATION_BUILD_DIR}/rn-extensions-share" "${PODS_CONFIGURATION_BUILD_DIR}/rn-fetch-blob" +OTHER_LDFLAGS = $(inherited) -ObjC -l"BugsnagReactNative" -l"DoubleConversion" -l"EXAV" -l"EXAppLoaderProvider" -l"EXConstants" -l"EXFileSystem" -l"EXHaptics" -l"EXKeepAwake" -l"EXPermissions" -l"EXWebBrowser" -l"FBReactNativeSpec" -l"FirebaseCore" -l"FirebaseCoreDiagnostics" -l"FirebaseInstallations" -l"FirebaseInstanceID" -l"Folly" -l"GoogleDataTransport" -l"GoogleDataTransportCCTSupport" -l"GoogleUtilities" -l"KeyCommands" -l"PromisesObjC" -l"RCTTypeSafety" -l"RNAudio" -l"RNBootSplash" -l"RNDateTimePicker" -l"RNDeviceInfo" -l"RNFastImage" -l"RNFirebase" -l"RNGestureHandler" -l"RNImageCropPicker" -l"RNLocalize" -l"RNReanimated" -l"RNRootView" -l"RNScreens" -l"RNUserDefaults" -l"RNVectorIcons" -l"RSKImageCropper" -l"React-Core" -l"React-CoreModules" -l"React-RCTActionSheet" -l"React-RCTAnimation" -l"React-RCTBlob" -l"React-RCTImage" -l"React-RCTLinking" -l"React-RCTNetwork" -l"React-RCTSettings" -l"React-RCTText" -l"React-RCTVibration" -l"React-cxxreact" -l"React-jsi" -l"React-jsiexecutor" -l"React-jsinspector" -l"ReactCommon" -l"ReactNativeART" -l"SDWebImage" -l"SDWebImageWebPCoder" -l"UMCore" -l"UMReactNativeAdapter" -l"Yoga" -l"c++" -l"glog" -l"libwebp" -l"nanopb" -l"react-native-appearance" -l"react-native-background-timer" -l"react-native-cameraroll" -l"react-native-document-picker" -l"react-native-jitsi-meet" -l"react-native-keyboard-input" -l"react-native-keyboard-tracking-view" -l"react-native-notifications" -l"react-native-orientation-locker" -l"react-native-slider" -l"react-native-webview" -l"rn-extensions-share" -l"rn-fetch-blob" -l"sqlite3" -l"stdc++" -l"z" -framework "AVFoundation" -framework "Crashlytics" -framework "FIRAnalyticsConnector" -framework "Fabric" -framework "FirebaseAnalytics" -framework "Foundation" -framework "GoogleAppMeasurement" -framework "ImageIO" -framework "JavaScriptCore" -framework "JitsiMeet" -framework "MessageUI" -framework "Photos" -framework "QuartzCore" -framework "Security" -framework "StoreKit" -framework "SystemConfiguration" -framework "UIKit" -framework "WebRTC" PODS_BUILD_DIR = ${BUILD_DIR} PODS_CONFIGURATION_BUILD_DIR = ${PODS_BUILD_DIR}/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) PODS_PODFILE_DIR_PATH = ${SRCROOT}/. diff --git a/ios/Pods/Target Support Files/Pods-ShareRocketChatRN/Pods-ShareRocketChatRN-acknowledgements.markdown b/ios/Pods/Target Support Files/Pods-ShareRocketChatRN/Pods-ShareRocketChatRN-acknowledgements.markdown index e6d8536eb..dcab9f804 100644 --- a/ios/Pods/Target Support Files/Pods-ShareRocketChatRN/Pods-ShareRocketChatRN-acknowledgements.markdown +++ b/ios/Pods/Target Support Files/Pods-ShareRocketChatRN/Pods-ShareRocketChatRN-acknowledgements.markdown @@ -2819,39 +2819,6 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. -## SocketRocket - -BSD License - -For SocketRocket software - -Copyright (c) 2016-present, Facebook, Inc. All rights reserved. - -Redistribution and use in source and binary forms, with or without modification, -are permitted provided that the following conditions are met: - - * Redistributions of source code must retain the above copyright notice, this - list of conditions and the following disclaimer. - - * Redistributions in binary form must reproduce the above copyright notice, - this list of conditions and the following disclaimer in the documentation - and/or other materials provided with the distribution. - - * Neither the name Facebook nor the names of its contributors may be used to - endorse or promote products derived from this software without specific - prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND -ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED -WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE -DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR -ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES -(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; -LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON -ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS -SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - ## boost-for-react-native Boost Software License - Version 1.0 - August 17th, 2003 diff --git a/ios/Pods/Target Support Files/Pods-ShareRocketChatRN/Pods-ShareRocketChatRN-acknowledgements.plist b/ios/Pods/Target Support Files/Pods-ShareRocketChatRN/Pods-ShareRocketChatRN-acknowledgements.plist index 93decd472..cd3207ba2 100644 --- a/ios/Pods/Target Support Files/Pods-ShareRocketChatRN/Pods-ShareRocketChatRN-acknowledgements.plist +++ b/ios/Pods/Target Support Files/Pods-ShareRocketChatRN/Pods-ShareRocketChatRN-acknowledgements.plist @@ -3046,45 +3046,6 @@ THE SOFTWARE. Type PSGroupSpecifier - - FooterText - BSD License - -For SocketRocket software - -Copyright (c) 2016-present, Facebook, Inc. All rights reserved. - -Redistribution and use in source and binary forms, with or without modification, -are permitted provided that the following conditions are met: - - * Redistributions of source code must retain the above copyright notice, this - list of conditions and the following disclaimer. - - * Redistributions in binary form must reproduce the above copyright notice, - this list of conditions and the following disclaimer in the documentation - and/or other materials provided with the distribution. - - * Neither the name Facebook nor the names of its contributors may be used to - endorse or promote products derived from this software without specific - prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND -ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED -WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE -DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR -ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES -(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; -LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON -ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS -SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - License - BSD - Title - SocketRocket - Type - PSGroupSpecifier - FooterText Boost Software License - Version 1.0 - August 17th, 2003 diff --git a/ios/Pods/Target Support Files/Pods-ShareRocketChatRN/Pods-ShareRocketChatRN.debug.xcconfig b/ios/Pods/Target Support Files/Pods-ShareRocketChatRN/Pods-ShareRocketChatRN.debug.xcconfig index e5ad5c86f..f69d664cb 100644 --- a/ios/Pods/Target Support Files/Pods-ShareRocketChatRN/Pods-ShareRocketChatRN.debug.xcconfig +++ b/ios/Pods/Target Support Files/Pods-ShareRocketChatRN/Pods-ShareRocketChatRN.debug.xcconfig @@ -1,9 +1,9 @@ FRAMEWORK_SEARCH_PATHS = $(inherited) "${PODS_ROOT}/Crashlytics/iOS" "${PODS_ROOT}/Fabric/iOS" "${PODS_ROOT}/FirebaseAnalytics/Frameworks" "${PODS_ROOT}/GoogleAppMeasurement/Frameworks" "${PODS_ROOT}/JitsiMeetSDK/Frameworks" GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 $(inherited) SD_WEBP=1 $(inherited) PB_FIELD_32BIT=1 PB_NO_PACKED_STRUCTS=1 PB_ENABLE_MALLOC=1 -HEADER_SEARCH_PATHS = $(inherited) "${PODS_ROOT}/Headers/Public" "${PODS_ROOT}/Headers/Public/BugsnagReactNative" "${PODS_ROOT}/Headers/Public/DoubleConversion" "${PODS_ROOT}/Headers/Public/EXAV" "${PODS_ROOT}/Headers/Public/EXAppLoaderProvider" "${PODS_ROOT}/Headers/Public/EXConstants" "${PODS_ROOT}/Headers/Public/EXFileSystem" "${PODS_ROOT}/Headers/Public/EXHaptics" "${PODS_ROOT}/Headers/Public/EXPermissions" "${PODS_ROOT}/Headers/Public/EXWebBrowser" "${PODS_ROOT}/Headers/Public/FBLazyVector" "${PODS_ROOT}/Headers/Public/FBReactNativeSpec" "${PODS_ROOT}/Headers/Public/Firebase" "${PODS_ROOT}/Headers/Public/FirebaseCore" "${PODS_ROOT}/Headers/Public/FirebaseCoreDiagnostics" "${PODS_ROOT}/Headers/Public/FirebaseCoreDiagnosticsInterop" "${PODS_ROOT}/Headers/Public/FirebaseInstallations" "${PODS_ROOT}/Headers/Public/FirebaseInstanceID" "${PODS_ROOT}/Headers/Public/GoogleDataTransport" "${PODS_ROOT}/Headers/Public/GoogleDataTransportCCTSupport" "${PODS_ROOT}/Headers/Public/GoogleUtilities" "${PODS_ROOT}/Headers/Public/KeyCommands" "${PODS_ROOT}/Headers/Public/PromisesObjC" "${PODS_ROOT}/Headers/Public/RCTRequired" "${PODS_ROOT}/Headers/Public/RCTTypeSafety" "${PODS_ROOT}/Headers/Public/RNAudio" "${PODS_ROOT}/Headers/Public/RNBootSplash" "${PODS_ROOT}/Headers/Public/RNDateTimePicker" "${PODS_ROOT}/Headers/Public/RNDeviceInfo" "${PODS_ROOT}/Headers/Public/RNFastImage" "${PODS_ROOT}/Headers/Public/RNFirebase" "${PODS_ROOT}/Headers/Public/RNGestureHandler" "${PODS_ROOT}/Headers/Public/RNImageCropPicker" "${PODS_ROOT}/Headers/Public/RNLocalize" "${PODS_ROOT}/Headers/Public/RNReanimated" "${PODS_ROOT}/Headers/Public/RNRootView" "${PODS_ROOT}/Headers/Public/RNScreens" "${PODS_ROOT}/Headers/Public/RNUserDefaults" "${PODS_ROOT}/Headers/Public/RNVectorIcons" "${PODS_ROOT}/Headers/Public/RSKImageCropper" "${PODS_ROOT}/Headers/Public/React-Core" "${PODS_ROOT}/Headers/Public/React-RCTBlob" "${PODS_ROOT}/Headers/Public/React-RCTText" "${PODS_ROOT}/Headers/Public/React-cxxreact" "${PODS_ROOT}/Headers/Public/React-jsi" "${PODS_ROOT}/Headers/Public/React-jsiexecutor" "${PODS_ROOT}/Headers/Public/React-jsinspector" "${PODS_ROOT}/Headers/Public/ReactCommon" "${PODS_ROOT}/Headers/Public/ReactNativeART" "${PODS_ROOT}/Headers/Public/SDWebImage" "${PODS_ROOT}/Headers/Public/SDWebImageWebPCoder" "${PODS_ROOT}/Headers/Public/SocketRocket" "${PODS_ROOT}/Headers/Public/UMBarCodeScannerInterface" "${PODS_ROOT}/Headers/Public/UMCameraInterface" "${PODS_ROOT}/Headers/Public/UMConstantsInterface" "${PODS_ROOT}/Headers/Public/UMCore" "${PODS_ROOT}/Headers/Public/UMFaceDetectorInterface" "${PODS_ROOT}/Headers/Public/UMFileSystemInterface" "${PODS_ROOT}/Headers/Public/UMFontInterface" "${PODS_ROOT}/Headers/Public/UMImageLoaderInterface" "${PODS_ROOT}/Headers/Public/UMPermissionsInterface" "${PODS_ROOT}/Headers/Public/UMReactNativeAdapter" "${PODS_ROOT}/Headers/Public/UMSensorsInterface" "${PODS_ROOT}/Headers/Public/UMTaskManagerInterface" "${PODS_ROOT}/Headers/Public/Yoga" "${PODS_ROOT}/Headers/Public/glog" "${PODS_ROOT}/Headers/Public/libwebp" "${PODS_ROOT}/Headers/Public/nanopb" "${PODS_ROOT}/Headers/Public/react-native-appearance" "${PODS_ROOT}/Headers/Public/react-native-background-timer" "${PODS_ROOT}/Headers/Public/react-native-cameraroll" "${PODS_ROOT}/Headers/Public/react-native-document-picker" "${PODS_ROOT}/Headers/Public/react-native-jitsi-meet" "${PODS_ROOT}/Headers/Public/react-native-keyboard-input" "${PODS_ROOT}/Headers/Public/react-native-keyboard-tracking-view" "${PODS_ROOT}/Headers/Public/react-native-notifications" "${PODS_ROOT}/Headers/Public/react-native-orientation-locker" "${PODS_ROOT}/Headers/Public/react-native-slider" "${PODS_ROOT}/Headers/Public/react-native-webview" "${PODS_ROOT}/Headers/Public/rn-extensions-share" "${PODS_ROOT}/Headers/Public/rn-fetch-blob" $(inherited) ${PODS_ROOT}/Firebase/CoreOnly/Sources "${PODS_TARGET_SRCROOT}/Sources/FBLPromises/include" "$(PODS_ROOT)/Headers/Private/React-Core" +HEADER_SEARCH_PATHS = $(inherited) "${PODS_ROOT}/Headers/Public" "${PODS_ROOT}/Headers/Public/BugsnagReactNative" "${PODS_ROOT}/Headers/Public/DoubleConversion" "${PODS_ROOT}/Headers/Public/EXAV" "${PODS_ROOT}/Headers/Public/EXAppLoaderProvider" "${PODS_ROOT}/Headers/Public/EXConstants" "${PODS_ROOT}/Headers/Public/EXFileSystem" "${PODS_ROOT}/Headers/Public/EXHaptics" "${PODS_ROOT}/Headers/Public/EXKeepAwake" "${PODS_ROOT}/Headers/Public/EXPermissions" "${PODS_ROOT}/Headers/Public/EXWebBrowser" "${PODS_ROOT}/Headers/Public/FBLazyVector" "${PODS_ROOT}/Headers/Public/FBReactNativeSpec" "${PODS_ROOT}/Headers/Public/Firebase" "${PODS_ROOT}/Headers/Public/FirebaseCore" "${PODS_ROOT}/Headers/Public/FirebaseCoreDiagnostics" "${PODS_ROOT}/Headers/Public/FirebaseCoreDiagnosticsInterop" "${PODS_ROOT}/Headers/Public/FirebaseInstallations" "${PODS_ROOT}/Headers/Public/FirebaseInstanceID" "${PODS_ROOT}/Headers/Public/GoogleDataTransport" "${PODS_ROOT}/Headers/Public/GoogleDataTransportCCTSupport" "${PODS_ROOT}/Headers/Public/GoogleUtilities" "${PODS_ROOT}/Headers/Public/KeyCommands" "${PODS_ROOT}/Headers/Public/PromisesObjC" "${PODS_ROOT}/Headers/Public/RCTRequired" "${PODS_ROOT}/Headers/Public/RCTTypeSafety" "${PODS_ROOT}/Headers/Public/RNAudio" "${PODS_ROOT}/Headers/Public/RNBootSplash" "${PODS_ROOT}/Headers/Public/RNDateTimePicker" "${PODS_ROOT}/Headers/Public/RNDeviceInfo" "${PODS_ROOT}/Headers/Public/RNFastImage" "${PODS_ROOT}/Headers/Public/RNFirebase" "${PODS_ROOT}/Headers/Public/RNGestureHandler" "${PODS_ROOT}/Headers/Public/RNImageCropPicker" "${PODS_ROOT}/Headers/Public/RNLocalize" "${PODS_ROOT}/Headers/Public/RNReanimated" "${PODS_ROOT}/Headers/Public/RNRootView" "${PODS_ROOT}/Headers/Public/RNScreens" "${PODS_ROOT}/Headers/Public/RNUserDefaults" "${PODS_ROOT}/Headers/Public/RNVectorIcons" "${PODS_ROOT}/Headers/Public/RSKImageCropper" "${PODS_ROOT}/Headers/Public/React-Core" "${PODS_ROOT}/Headers/Public/React-RCTBlob" "${PODS_ROOT}/Headers/Public/React-RCTText" "${PODS_ROOT}/Headers/Public/React-cxxreact" "${PODS_ROOT}/Headers/Public/React-jsi" "${PODS_ROOT}/Headers/Public/React-jsiexecutor" "${PODS_ROOT}/Headers/Public/React-jsinspector" "${PODS_ROOT}/Headers/Public/ReactCommon" "${PODS_ROOT}/Headers/Public/ReactNativeART" "${PODS_ROOT}/Headers/Public/SDWebImage" "${PODS_ROOT}/Headers/Public/SDWebImageWebPCoder" "${PODS_ROOT}/Headers/Public/UMBarCodeScannerInterface" "${PODS_ROOT}/Headers/Public/UMCameraInterface" "${PODS_ROOT}/Headers/Public/UMConstantsInterface" "${PODS_ROOT}/Headers/Public/UMCore" "${PODS_ROOT}/Headers/Public/UMFaceDetectorInterface" "${PODS_ROOT}/Headers/Public/UMFileSystemInterface" "${PODS_ROOT}/Headers/Public/UMFontInterface" "${PODS_ROOT}/Headers/Public/UMImageLoaderInterface" "${PODS_ROOT}/Headers/Public/UMPermissionsInterface" "${PODS_ROOT}/Headers/Public/UMReactNativeAdapter" "${PODS_ROOT}/Headers/Public/UMSensorsInterface" "${PODS_ROOT}/Headers/Public/UMTaskManagerInterface" "${PODS_ROOT}/Headers/Public/Yoga" "${PODS_ROOT}/Headers/Public/glog" "${PODS_ROOT}/Headers/Public/libwebp" "${PODS_ROOT}/Headers/Public/nanopb" "${PODS_ROOT}/Headers/Public/react-native-appearance" "${PODS_ROOT}/Headers/Public/react-native-background-timer" "${PODS_ROOT}/Headers/Public/react-native-cameraroll" "${PODS_ROOT}/Headers/Public/react-native-document-picker" "${PODS_ROOT}/Headers/Public/react-native-jitsi-meet" "${PODS_ROOT}/Headers/Public/react-native-keyboard-input" "${PODS_ROOT}/Headers/Public/react-native-keyboard-tracking-view" "${PODS_ROOT}/Headers/Public/react-native-notifications" "${PODS_ROOT}/Headers/Public/react-native-orientation-locker" "${PODS_ROOT}/Headers/Public/react-native-slider" "${PODS_ROOT}/Headers/Public/react-native-webview" "${PODS_ROOT}/Headers/Public/rn-extensions-share" "${PODS_ROOT}/Headers/Public/rn-fetch-blob" $(inherited) ${PODS_ROOT}/Firebase/CoreOnly/Sources "${PODS_TARGET_SRCROOT}/Sources/FBLPromises/include" "$(PODS_ROOT)/Headers/Private/React-Core" LD_RUNPATH_SEARCH_PATHS = $(inherited) '@executable_path/Frameworks' '@loader_path/Frameworks' '@executable_path/../../Frameworks' -LIBRARY_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/BugsnagReactNative" "${PODS_CONFIGURATION_BUILD_DIR}/DoubleConversion" "${PODS_CONFIGURATION_BUILD_DIR}/FBReactNativeSpec" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseCore" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseCoreDiagnostics" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseInstallations" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseInstanceID" "${PODS_CONFIGURATION_BUILD_DIR}/Folly" "${PODS_CONFIGURATION_BUILD_DIR}/GoogleDataTransport" "${PODS_CONFIGURATION_BUILD_DIR}/GoogleDataTransportCCTSupport" "${PODS_CONFIGURATION_BUILD_DIR}/GoogleUtilities" "${PODS_CONFIGURATION_BUILD_DIR}/KeyCommands" "${PODS_CONFIGURATION_BUILD_DIR}/PromisesObjC" "${PODS_CONFIGURATION_BUILD_DIR}/RCTTypeSafety" "${PODS_CONFIGURATION_BUILD_DIR}/RNAudio" "${PODS_CONFIGURATION_BUILD_DIR}/RNBootSplash" "${PODS_CONFIGURATION_BUILD_DIR}/RNDateTimePicker" "${PODS_CONFIGURATION_BUILD_DIR}/RNDeviceInfo" "${PODS_CONFIGURATION_BUILD_DIR}/RNFastImage" "${PODS_CONFIGURATION_BUILD_DIR}/RNFirebase" "${PODS_CONFIGURATION_BUILD_DIR}/RNGestureHandler" "${PODS_CONFIGURATION_BUILD_DIR}/RNImageCropPicker" "${PODS_CONFIGURATION_BUILD_DIR}/RNLocalize" "${PODS_CONFIGURATION_BUILD_DIR}/RNReanimated" "${PODS_CONFIGURATION_BUILD_DIR}/RNRootView" "${PODS_CONFIGURATION_BUILD_DIR}/RNScreens" "${PODS_CONFIGURATION_BUILD_DIR}/RNUserDefaults" "${PODS_CONFIGURATION_BUILD_DIR}/RNVectorIcons" "${PODS_CONFIGURATION_BUILD_DIR}/RSKImageCropper" "${PODS_CONFIGURATION_BUILD_DIR}/React-Core" "${PODS_CONFIGURATION_BUILD_DIR}/React-CoreModules" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTActionSheet" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTAnimation" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTBlob" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTImage" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTLinking" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTNetwork" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTSettings" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTText" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTVibration" "${PODS_CONFIGURATION_BUILD_DIR}/React-cxxreact" "${PODS_CONFIGURATION_BUILD_DIR}/React-jsi" "${PODS_CONFIGURATION_BUILD_DIR}/React-jsiexecutor" "${PODS_CONFIGURATION_BUILD_DIR}/React-jsinspector" "${PODS_CONFIGURATION_BUILD_DIR}/ReactCommon" "${PODS_CONFIGURATION_BUILD_DIR}/ReactNativeART" "${PODS_CONFIGURATION_BUILD_DIR}/SDWebImage" "${PODS_CONFIGURATION_BUILD_DIR}/SDWebImageWebPCoder" "${PODS_CONFIGURATION_BUILD_DIR}/SocketRocket" "${PODS_CONFIGURATION_BUILD_DIR}/Yoga" "${PODS_CONFIGURATION_BUILD_DIR}/glog" "${PODS_CONFIGURATION_BUILD_DIR}/libwebp" "${PODS_CONFIGURATION_BUILD_DIR}/nanopb" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-appearance" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-background-timer" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-cameraroll" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-document-picker" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-jitsi-meet" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-keyboard-input" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-keyboard-tracking-view" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-notifications" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-orientation-locker" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-slider" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-webview" "${PODS_CONFIGURATION_BUILD_DIR}/rn-extensions-share" "${PODS_CONFIGURATION_BUILD_DIR}/rn-fetch-blob" -OTHER_LDFLAGS = $(inherited) -ObjC -l"BugsnagReactNative" -l"DoubleConversion" -l"FBReactNativeSpec" -l"FirebaseCore" -l"FirebaseCoreDiagnostics" -l"FirebaseInstallations" -l"FirebaseInstanceID" -l"Folly" -l"GoogleDataTransport" -l"GoogleDataTransportCCTSupport" -l"GoogleUtilities" -l"KeyCommands" -l"PromisesObjC" -l"RCTTypeSafety" -l"RNAudio" -l"RNBootSplash" -l"RNDateTimePicker" -l"RNDeviceInfo" -l"RNFastImage" -l"RNFirebase" -l"RNGestureHandler" -l"RNImageCropPicker" -l"RNLocalize" -l"RNReanimated" -l"RNRootView" -l"RNScreens" -l"RNUserDefaults" -l"RNVectorIcons" -l"RSKImageCropper" -l"React-Core" -l"React-CoreModules" -l"React-RCTActionSheet" -l"React-RCTAnimation" -l"React-RCTBlob" -l"React-RCTImage" -l"React-RCTLinking" -l"React-RCTNetwork" -l"React-RCTSettings" -l"React-RCTText" -l"React-RCTVibration" -l"React-cxxreact" -l"React-jsi" -l"React-jsiexecutor" -l"React-jsinspector" -l"ReactCommon" -l"ReactNativeART" -l"SDWebImage" -l"SDWebImageWebPCoder" -l"SocketRocket" -l"Yoga" -l"c++" -l"glog" -l"icucore" -l"libwebp" -l"nanopb" -l"react-native-appearance" -l"react-native-background-timer" -l"react-native-cameraroll" -l"react-native-document-picker" -l"react-native-jitsi-meet" -l"react-native-keyboard-input" -l"react-native-keyboard-tracking-view" -l"react-native-notifications" -l"react-native-orientation-locker" -l"react-native-slider" -l"react-native-webview" -l"rn-extensions-share" -l"rn-fetch-blob" -l"sqlite3" -l"stdc++" -l"z" -framework "AVFoundation" -framework "CFNetwork" -framework "Crashlytics" -framework "FIRAnalyticsConnector" -framework "Fabric" -framework "FirebaseAnalytics" -framework "Foundation" -framework "GoogleAppMeasurement" -framework "ImageIO" -framework "JavaScriptCore" -framework "JitsiMeet" -framework "MessageUI" -framework "Photos" -framework "QuartzCore" -framework "Security" -framework "StoreKit" -framework "SystemConfiguration" -framework "UIKit" -framework "WebRTC" +LIBRARY_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/BugsnagReactNative" "${PODS_CONFIGURATION_BUILD_DIR}/DoubleConversion" "${PODS_CONFIGURATION_BUILD_DIR}/FBReactNativeSpec" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseCore" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseCoreDiagnostics" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseInstallations" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseInstanceID" "${PODS_CONFIGURATION_BUILD_DIR}/Folly" "${PODS_CONFIGURATION_BUILD_DIR}/GoogleDataTransport" "${PODS_CONFIGURATION_BUILD_DIR}/GoogleDataTransportCCTSupport" "${PODS_CONFIGURATION_BUILD_DIR}/GoogleUtilities" "${PODS_CONFIGURATION_BUILD_DIR}/KeyCommands" "${PODS_CONFIGURATION_BUILD_DIR}/PromisesObjC" "${PODS_CONFIGURATION_BUILD_DIR}/RCTTypeSafety" "${PODS_CONFIGURATION_BUILD_DIR}/RNAudio" "${PODS_CONFIGURATION_BUILD_DIR}/RNBootSplash" "${PODS_CONFIGURATION_BUILD_DIR}/RNDateTimePicker" "${PODS_CONFIGURATION_BUILD_DIR}/RNDeviceInfo" "${PODS_CONFIGURATION_BUILD_DIR}/RNFastImage" "${PODS_CONFIGURATION_BUILD_DIR}/RNFirebase" "${PODS_CONFIGURATION_BUILD_DIR}/RNGestureHandler" "${PODS_CONFIGURATION_BUILD_DIR}/RNImageCropPicker" "${PODS_CONFIGURATION_BUILD_DIR}/RNLocalize" "${PODS_CONFIGURATION_BUILD_DIR}/RNReanimated" "${PODS_CONFIGURATION_BUILD_DIR}/RNRootView" "${PODS_CONFIGURATION_BUILD_DIR}/RNScreens" "${PODS_CONFIGURATION_BUILD_DIR}/RNUserDefaults" "${PODS_CONFIGURATION_BUILD_DIR}/RNVectorIcons" "${PODS_CONFIGURATION_BUILD_DIR}/RSKImageCropper" "${PODS_CONFIGURATION_BUILD_DIR}/React-Core" "${PODS_CONFIGURATION_BUILD_DIR}/React-CoreModules" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTActionSheet" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTAnimation" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTBlob" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTImage" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTLinking" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTNetwork" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTSettings" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTText" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTVibration" "${PODS_CONFIGURATION_BUILD_DIR}/React-cxxreact" "${PODS_CONFIGURATION_BUILD_DIR}/React-jsi" "${PODS_CONFIGURATION_BUILD_DIR}/React-jsiexecutor" "${PODS_CONFIGURATION_BUILD_DIR}/React-jsinspector" "${PODS_CONFIGURATION_BUILD_DIR}/ReactCommon" "${PODS_CONFIGURATION_BUILD_DIR}/ReactNativeART" "${PODS_CONFIGURATION_BUILD_DIR}/SDWebImage" "${PODS_CONFIGURATION_BUILD_DIR}/SDWebImageWebPCoder" "${PODS_CONFIGURATION_BUILD_DIR}/Yoga" "${PODS_CONFIGURATION_BUILD_DIR}/glog" "${PODS_CONFIGURATION_BUILD_DIR}/libwebp" "${PODS_CONFIGURATION_BUILD_DIR}/nanopb" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-appearance" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-background-timer" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-cameraroll" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-document-picker" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-jitsi-meet" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-keyboard-input" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-keyboard-tracking-view" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-notifications" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-orientation-locker" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-slider" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-webview" "${PODS_CONFIGURATION_BUILD_DIR}/rn-extensions-share" "${PODS_CONFIGURATION_BUILD_DIR}/rn-fetch-blob" +OTHER_LDFLAGS = $(inherited) -ObjC -l"BugsnagReactNative" -l"DoubleConversion" -l"FBReactNativeSpec" -l"FirebaseCore" -l"FirebaseCoreDiagnostics" -l"FirebaseInstallations" -l"FirebaseInstanceID" -l"Folly" -l"GoogleDataTransport" -l"GoogleDataTransportCCTSupport" -l"GoogleUtilities" -l"KeyCommands" -l"PromisesObjC" -l"RCTTypeSafety" -l"RNAudio" -l"RNBootSplash" -l"RNDateTimePicker" -l"RNDeviceInfo" -l"RNFastImage" -l"RNFirebase" -l"RNGestureHandler" -l"RNImageCropPicker" -l"RNLocalize" -l"RNReanimated" -l"RNRootView" -l"RNScreens" -l"RNUserDefaults" -l"RNVectorIcons" -l"RSKImageCropper" -l"React-Core" -l"React-CoreModules" -l"React-RCTActionSheet" -l"React-RCTAnimation" -l"React-RCTBlob" -l"React-RCTImage" -l"React-RCTLinking" -l"React-RCTNetwork" -l"React-RCTSettings" -l"React-RCTText" -l"React-RCTVibration" -l"React-cxxreact" -l"React-jsi" -l"React-jsiexecutor" -l"React-jsinspector" -l"ReactCommon" -l"ReactNativeART" -l"SDWebImage" -l"SDWebImageWebPCoder" -l"Yoga" -l"c++" -l"glog" -l"libwebp" -l"nanopb" -l"react-native-appearance" -l"react-native-background-timer" -l"react-native-cameraroll" -l"react-native-document-picker" -l"react-native-jitsi-meet" -l"react-native-keyboard-input" -l"react-native-keyboard-tracking-view" -l"react-native-notifications" -l"react-native-orientation-locker" -l"react-native-slider" -l"react-native-webview" -l"rn-extensions-share" -l"rn-fetch-blob" -l"sqlite3" -l"stdc++" -l"z" -framework "AVFoundation" -framework "Crashlytics" -framework "FIRAnalyticsConnector" -framework "Fabric" -framework "FirebaseAnalytics" -framework "Foundation" -framework "GoogleAppMeasurement" -framework "ImageIO" -framework "JavaScriptCore" -framework "JitsiMeet" -framework "MessageUI" -framework "Photos" -framework "QuartzCore" -framework "Security" -framework "StoreKit" -framework "SystemConfiguration" -framework "UIKit" -framework "WebRTC" PODS_BUILD_DIR = ${BUILD_DIR} PODS_CONFIGURATION_BUILD_DIR = ${PODS_BUILD_DIR}/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) PODS_PODFILE_DIR_PATH = ${SRCROOT}/. diff --git a/ios/Pods/Target Support Files/Pods-ShareRocketChatRN/Pods-ShareRocketChatRN.release.xcconfig b/ios/Pods/Target Support Files/Pods-ShareRocketChatRN/Pods-ShareRocketChatRN.release.xcconfig index e5ad5c86f..f69d664cb 100644 --- a/ios/Pods/Target Support Files/Pods-ShareRocketChatRN/Pods-ShareRocketChatRN.release.xcconfig +++ b/ios/Pods/Target Support Files/Pods-ShareRocketChatRN/Pods-ShareRocketChatRN.release.xcconfig @@ -1,9 +1,9 @@ FRAMEWORK_SEARCH_PATHS = $(inherited) "${PODS_ROOT}/Crashlytics/iOS" "${PODS_ROOT}/Fabric/iOS" "${PODS_ROOT}/FirebaseAnalytics/Frameworks" "${PODS_ROOT}/GoogleAppMeasurement/Frameworks" "${PODS_ROOT}/JitsiMeetSDK/Frameworks" GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 $(inherited) SD_WEBP=1 $(inherited) PB_FIELD_32BIT=1 PB_NO_PACKED_STRUCTS=1 PB_ENABLE_MALLOC=1 -HEADER_SEARCH_PATHS = $(inherited) "${PODS_ROOT}/Headers/Public" "${PODS_ROOT}/Headers/Public/BugsnagReactNative" "${PODS_ROOT}/Headers/Public/DoubleConversion" "${PODS_ROOT}/Headers/Public/EXAV" "${PODS_ROOT}/Headers/Public/EXAppLoaderProvider" "${PODS_ROOT}/Headers/Public/EXConstants" "${PODS_ROOT}/Headers/Public/EXFileSystem" "${PODS_ROOT}/Headers/Public/EXHaptics" "${PODS_ROOT}/Headers/Public/EXPermissions" "${PODS_ROOT}/Headers/Public/EXWebBrowser" "${PODS_ROOT}/Headers/Public/FBLazyVector" "${PODS_ROOT}/Headers/Public/FBReactNativeSpec" "${PODS_ROOT}/Headers/Public/Firebase" "${PODS_ROOT}/Headers/Public/FirebaseCore" "${PODS_ROOT}/Headers/Public/FirebaseCoreDiagnostics" "${PODS_ROOT}/Headers/Public/FirebaseCoreDiagnosticsInterop" "${PODS_ROOT}/Headers/Public/FirebaseInstallations" "${PODS_ROOT}/Headers/Public/FirebaseInstanceID" "${PODS_ROOT}/Headers/Public/GoogleDataTransport" "${PODS_ROOT}/Headers/Public/GoogleDataTransportCCTSupport" "${PODS_ROOT}/Headers/Public/GoogleUtilities" "${PODS_ROOT}/Headers/Public/KeyCommands" "${PODS_ROOT}/Headers/Public/PromisesObjC" "${PODS_ROOT}/Headers/Public/RCTRequired" "${PODS_ROOT}/Headers/Public/RCTTypeSafety" "${PODS_ROOT}/Headers/Public/RNAudio" "${PODS_ROOT}/Headers/Public/RNBootSplash" "${PODS_ROOT}/Headers/Public/RNDateTimePicker" "${PODS_ROOT}/Headers/Public/RNDeviceInfo" "${PODS_ROOT}/Headers/Public/RNFastImage" "${PODS_ROOT}/Headers/Public/RNFirebase" "${PODS_ROOT}/Headers/Public/RNGestureHandler" "${PODS_ROOT}/Headers/Public/RNImageCropPicker" "${PODS_ROOT}/Headers/Public/RNLocalize" "${PODS_ROOT}/Headers/Public/RNReanimated" "${PODS_ROOT}/Headers/Public/RNRootView" "${PODS_ROOT}/Headers/Public/RNScreens" "${PODS_ROOT}/Headers/Public/RNUserDefaults" "${PODS_ROOT}/Headers/Public/RNVectorIcons" "${PODS_ROOT}/Headers/Public/RSKImageCropper" "${PODS_ROOT}/Headers/Public/React-Core" "${PODS_ROOT}/Headers/Public/React-RCTBlob" "${PODS_ROOT}/Headers/Public/React-RCTText" "${PODS_ROOT}/Headers/Public/React-cxxreact" "${PODS_ROOT}/Headers/Public/React-jsi" "${PODS_ROOT}/Headers/Public/React-jsiexecutor" "${PODS_ROOT}/Headers/Public/React-jsinspector" "${PODS_ROOT}/Headers/Public/ReactCommon" "${PODS_ROOT}/Headers/Public/ReactNativeART" "${PODS_ROOT}/Headers/Public/SDWebImage" "${PODS_ROOT}/Headers/Public/SDWebImageWebPCoder" "${PODS_ROOT}/Headers/Public/SocketRocket" "${PODS_ROOT}/Headers/Public/UMBarCodeScannerInterface" "${PODS_ROOT}/Headers/Public/UMCameraInterface" "${PODS_ROOT}/Headers/Public/UMConstantsInterface" "${PODS_ROOT}/Headers/Public/UMCore" "${PODS_ROOT}/Headers/Public/UMFaceDetectorInterface" "${PODS_ROOT}/Headers/Public/UMFileSystemInterface" "${PODS_ROOT}/Headers/Public/UMFontInterface" "${PODS_ROOT}/Headers/Public/UMImageLoaderInterface" "${PODS_ROOT}/Headers/Public/UMPermissionsInterface" "${PODS_ROOT}/Headers/Public/UMReactNativeAdapter" "${PODS_ROOT}/Headers/Public/UMSensorsInterface" "${PODS_ROOT}/Headers/Public/UMTaskManagerInterface" "${PODS_ROOT}/Headers/Public/Yoga" "${PODS_ROOT}/Headers/Public/glog" "${PODS_ROOT}/Headers/Public/libwebp" "${PODS_ROOT}/Headers/Public/nanopb" "${PODS_ROOT}/Headers/Public/react-native-appearance" "${PODS_ROOT}/Headers/Public/react-native-background-timer" "${PODS_ROOT}/Headers/Public/react-native-cameraroll" "${PODS_ROOT}/Headers/Public/react-native-document-picker" "${PODS_ROOT}/Headers/Public/react-native-jitsi-meet" "${PODS_ROOT}/Headers/Public/react-native-keyboard-input" "${PODS_ROOT}/Headers/Public/react-native-keyboard-tracking-view" "${PODS_ROOT}/Headers/Public/react-native-notifications" "${PODS_ROOT}/Headers/Public/react-native-orientation-locker" "${PODS_ROOT}/Headers/Public/react-native-slider" "${PODS_ROOT}/Headers/Public/react-native-webview" "${PODS_ROOT}/Headers/Public/rn-extensions-share" "${PODS_ROOT}/Headers/Public/rn-fetch-blob" $(inherited) ${PODS_ROOT}/Firebase/CoreOnly/Sources "${PODS_TARGET_SRCROOT}/Sources/FBLPromises/include" "$(PODS_ROOT)/Headers/Private/React-Core" +HEADER_SEARCH_PATHS = $(inherited) "${PODS_ROOT}/Headers/Public" "${PODS_ROOT}/Headers/Public/BugsnagReactNative" "${PODS_ROOT}/Headers/Public/DoubleConversion" "${PODS_ROOT}/Headers/Public/EXAV" "${PODS_ROOT}/Headers/Public/EXAppLoaderProvider" "${PODS_ROOT}/Headers/Public/EXConstants" "${PODS_ROOT}/Headers/Public/EXFileSystem" "${PODS_ROOT}/Headers/Public/EXHaptics" "${PODS_ROOT}/Headers/Public/EXKeepAwake" "${PODS_ROOT}/Headers/Public/EXPermissions" "${PODS_ROOT}/Headers/Public/EXWebBrowser" "${PODS_ROOT}/Headers/Public/FBLazyVector" "${PODS_ROOT}/Headers/Public/FBReactNativeSpec" "${PODS_ROOT}/Headers/Public/Firebase" "${PODS_ROOT}/Headers/Public/FirebaseCore" "${PODS_ROOT}/Headers/Public/FirebaseCoreDiagnostics" "${PODS_ROOT}/Headers/Public/FirebaseCoreDiagnosticsInterop" "${PODS_ROOT}/Headers/Public/FirebaseInstallations" "${PODS_ROOT}/Headers/Public/FirebaseInstanceID" "${PODS_ROOT}/Headers/Public/GoogleDataTransport" "${PODS_ROOT}/Headers/Public/GoogleDataTransportCCTSupport" "${PODS_ROOT}/Headers/Public/GoogleUtilities" "${PODS_ROOT}/Headers/Public/KeyCommands" "${PODS_ROOT}/Headers/Public/PromisesObjC" "${PODS_ROOT}/Headers/Public/RCTRequired" "${PODS_ROOT}/Headers/Public/RCTTypeSafety" "${PODS_ROOT}/Headers/Public/RNAudio" "${PODS_ROOT}/Headers/Public/RNBootSplash" "${PODS_ROOT}/Headers/Public/RNDateTimePicker" "${PODS_ROOT}/Headers/Public/RNDeviceInfo" "${PODS_ROOT}/Headers/Public/RNFastImage" "${PODS_ROOT}/Headers/Public/RNFirebase" "${PODS_ROOT}/Headers/Public/RNGestureHandler" "${PODS_ROOT}/Headers/Public/RNImageCropPicker" "${PODS_ROOT}/Headers/Public/RNLocalize" "${PODS_ROOT}/Headers/Public/RNReanimated" "${PODS_ROOT}/Headers/Public/RNRootView" "${PODS_ROOT}/Headers/Public/RNScreens" "${PODS_ROOT}/Headers/Public/RNUserDefaults" "${PODS_ROOT}/Headers/Public/RNVectorIcons" "${PODS_ROOT}/Headers/Public/RSKImageCropper" "${PODS_ROOT}/Headers/Public/React-Core" "${PODS_ROOT}/Headers/Public/React-RCTBlob" "${PODS_ROOT}/Headers/Public/React-RCTText" "${PODS_ROOT}/Headers/Public/React-cxxreact" "${PODS_ROOT}/Headers/Public/React-jsi" "${PODS_ROOT}/Headers/Public/React-jsiexecutor" "${PODS_ROOT}/Headers/Public/React-jsinspector" "${PODS_ROOT}/Headers/Public/ReactCommon" "${PODS_ROOT}/Headers/Public/ReactNativeART" "${PODS_ROOT}/Headers/Public/SDWebImage" "${PODS_ROOT}/Headers/Public/SDWebImageWebPCoder" "${PODS_ROOT}/Headers/Public/UMBarCodeScannerInterface" "${PODS_ROOT}/Headers/Public/UMCameraInterface" "${PODS_ROOT}/Headers/Public/UMConstantsInterface" "${PODS_ROOT}/Headers/Public/UMCore" "${PODS_ROOT}/Headers/Public/UMFaceDetectorInterface" "${PODS_ROOT}/Headers/Public/UMFileSystemInterface" "${PODS_ROOT}/Headers/Public/UMFontInterface" "${PODS_ROOT}/Headers/Public/UMImageLoaderInterface" "${PODS_ROOT}/Headers/Public/UMPermissionsInterface" "${PODS_ROOT}/Headers/Public/UMReactNativeAdapter" "${PODS_ROOT}/Headers/Public/UMSensorsInterface" "${PODS_ROOT}/Headers/Public/UMTaskManagerInterface" "${PODS_ROOT}/Headers/Public/Yoga" "${PODS_ROOT}/Headers/Public/glog" "${PODS_ROOT}/Headers/Public/libwebp" "${PODS_ROOT}/Headers/Public/nanopb" "${PODS_ROOT}/Headers/Public/react-native-appearance" "${PODS_ROOT}/Headers/Public/react-native-background-timer" "${PODS_ROOT}/Headers/Public/react-native-cameraroll" "${PODS_ROOT}/Headers/Public/react-native-document-picker" "${PODS_ROOT}/Headers/Public/react-native-jitsi-meet" "${PODS_ROOT}/Headers/Public/react-native-keyboard-input" "${PODS_ROOT}/Headers/Public/react-native-keyboard-tracking-view" "${PODS_ROOT}/Headers/Public/react-native-notifications" "${PODS_ROOT}/Headers/Public/react-native-orientation-locker" "${PODS_ROOT}/Headers/Public/react-native-slider" "${PODS_ROOT}/Headers/Public/react-native-webview" "${PODS_ROOT}/Headers/Public/rn-extensions-share" "${PODS_ROOT}/Headers/Public/rn-fetch-blob" $(inherited) ${PODS_ROOT}/Firebase/CoreOnly/Sources "${PODS_TARGET_SRCROOT}/Sources/FBLPromises/include" "$(PODS_ROOT)/Headers/Private/React-Core" LD_RUNPATH_SEARCH_PATHS = $(inherited) '@executable_path/Frameworks' '@loader_path/Frameworks' '@executable_path/../../Frameworks' -LIBRARY_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/BugsnagReactNative" "${PODS_CONFIGURATION_BUILD_DIR}/DoubleConversion" "${PODS_CONFIGURATION_BUILD_DIR}/FBReactNativeSpec" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseCore" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseCoreDiagnostics" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseInstallations" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseInstanceID" "${PODS_CONFIGURATION_BUILD_DIR}/Folly" "${PODS_CONFIGURATION_BUILD_DIR}/GoogleDataTransport" "${PODS_CONFIGURATION_BUILD_DIR}/GoogleDataTransportCCTSupport" "${PODS_CONFIGURATION_BUILD_DIR}/GoogleUtilities" "${PODS_CONFIGURATION_BUILD_DIR}/KeyCommands" "${PODS_CONFIGURATION_BUILD_DIR}/PromisesObjC" "${PODS_CONFIGURATION_BUILD_DIR}/RCTTypeSafety" "${PODS_CONFIGURATION_BUILD_DIR}/RNAudio" "${PODS_CONFIGURATION_BUILD_DIR}/RNBootSplash" "${PODS_CONFIGURATION_BUILD_DIR}/RNDateTimePicker" "${PODS_CONFIGURATION_BUILD_DIR}/RNDeviceInfo" "${PODS_CONFIGURATION_BUILD_DIR}/RNFastImage" "${PODS_CONFIGURATION_BUILD_DIR}/RNFirebase" "${PODS_CONFIGURATION_BUILD_DIR}/RNGestureHandler" "${PODS_CONFIGURATION_BUILD_DIR}/RNImageCropPicker" "${PODS_CONFIGURATION_BUILD_DIR}/RNLocalize" "${PODS_CONFIGURATION_BUILD_DIR}/RNReanimated" "${PODS_CONFIGURATION_BUILD_DIR}/RNRootView" "${PODS_CONFIGURATION_BUILD_DIR}/RNScreens" "${PODS_CONFIGURATION_BUILD_DIR}/RNUserDefaults" "${PODS_CONFIGURATION_BUILD_DIR}/RNVectorIcons" "${PODS_CONFIGURATION_BUILD_DIR}/RSKImageCropper" "${PODS_CONFIGURATION_BUILD_DIR}/React-Core" "${PODS_CONFIGURATION_BUILD_DIR}/React-CoreModules" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTActionSheet" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTAnimation" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTBlob" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTImage" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTLinking" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTNetwork" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTSettings" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTText" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTVibration" "${PODS_CONFIGURATION_BUILD_DIR}/React-cxxreact" "${PODS_CONFIGURATION_BUILD_DIR}/React-jsi" "${PODS_CONFIGURATION_BUILD_DIR}/React-jsiexecutor" "${PODS_CONFIGURATION_BUILD_DIR}/React-jsinspector" "${PODS_CONFIGURATION_BUILD_DIR}/ReactCommon" "${PODS_CONFIGURATION_BUILD_DIR}/ReactNativeART" "${PODS_CONFIGURATION_BUILD_DIR}/SDWebImage" "${PODS_CONFIGURATION_BUILD_DIR}/SDWebImageWebPCoder" "${PODS_CONFIGURATION_BUILD_DIR}/SocketRocket" "${PODS_CONFIGURATION_BUILD_DIR}/Yoga" "${PODS_CONFIGURATION_BUILD_DIR}/glog" "${PODS_CONFIGURATION_BUILD_DIR}/libwebp" "${PODS_CONFIGURATION_BUILD_DIR}/nanopb" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-appearance" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-background-timer" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-cameraroll" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-document-picker" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-jitsi-meet" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-keyboard-input" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-keyboard-tracking-view" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-notifications" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-orientation-locker" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-slider" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-webview" "${PODS_CONFIGURATION_BUILD_DIR}/rn-extensions-share" "${PODS_CONFIGURATION_BUILD_DIR}/rn-fetch-blob" -OTHER_LDFLAGS = $(inherited) -ObjC -l"BugsnagReactNative" -l"DoubleConversion" -l"FBReactNativeSpec" -l"FirebaseCore" -l"FirebaseCoreDiagnostics" -l"FirebaseInstallations" -l"FirebaseInstanceID" -l"Folly" -l"GoogleDataTransport" -l"GoogleDataTransportCCTSupport" -l"GoogleUtilities" -l"KeyCommands" -l"PromisesObjC" -l"RCTTypeSafety" -l"RNAudio" -l"RNBootSplash" -l"RNDateTimePicker" -l"RNDeviceInfo" -l"RNFastImage" -l"RNFirebase" -l"RNGestureHandler" -l"RNImageCropPicker" -l"RNLocalize" -l"RNReanimated" -l"RNRootView" -l"RNScreens" -l"RNUserDefaults" -l"RNVectorIcons" -l"RSKImageCropper" -l"React-Core" -l"React-CoreModules" -l"React-RCTActionSheet" -l"React-RCTAnimation" -l"React-RCTBlob" -l"React-RCTImage" -l"React-RCTLinking" -l"React-RCTNetwork" -l"React-RCTSettings" -l"React-RCTText" -l"React-RCTVibration" -l"React-cxxreact" -l"React-jsi" -l"React-jsiexecutor" -l"React-jsinspector" -l"ReactCommon" -l"ReactNativeART" -l"SDWebImage" -l"SDWebImageWebPCoder" -l"SocketRocket" -l"Yoga" -l"c++" -l"glog" -l"icucore" -l"libwebp" -l"nanopb" -l"react-native-appearance" -l"react-native-background-timer" -l"react-native-cameraroll" -l"react-native-document-picker" -l"react-native-jitsi-meet" -l"react-native-keyboard-input" -l"react-native-keyboard-tracking-view" -l"react-native-notifications" -l"react-native-orientation-locker" -l"react-native-slider" -l"react-native-webview" -l"rn-extensions-share" -l"rn-fetch-blob" -l"sqlite3" -l"stdc++" -l"z" -framework "AVFoundation" -framework "CFNetwork" -framework "Crashlytics" -framework "FIRAnalyticsConnector" -framework "Fabric" -framework "FirebaseAnalytics" -framework "Foundation" -framework "GoogleAppMeasurement" -framework "ImageIO" -framework "JavaScriptCore" -framework "JitsiMeet" -framework "MessageUI" -framework "Photos" -framework "QuartzCore" -framework "Security" -framework "StoreKit" -framework "SystemConfiguration" -framework "UIKit" -framework "WebRTC" +LIBRARY_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/BugsnagReactNative" "${PODS_CONFIGURATION_BUILD_DIR}/DoubleConversion" "${PODS_CONFIGURATION_BUILD_DIR}/FBReactNativeSpec" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseCore" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseCoreDiagnostics" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseInstallations" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseInstanceID" "${PODS_CONFIGURATION_BUILD_DIR}/Folly" "${PODS_CONFIGURATION_BUILD_DIR}/GoogleDataTransport" "${PODS_CONFIGURATION_BUILD_DIR}/GoogleDataTransportCCTSupport" "${PODS_CONFIGURATION_BUILD_DIR}/GoogleUtilities" "${PODS_CONFIGURATION_BUILD_DIR}/KeyCommands" "${PODS_CONFIGURATION_BUILD_DIR}/PromisesObjC" "${PODS_CONFIGURATION_BUILD_DIR}/RCTTypeSafety" "${PODS_CONFIGURATION_BUILD_DIR}/RNAudio" "${PODS_CONFIGURATION_BUILD_DIR}/RNBootSplash" "${PODS_CONFIGURATION_BUILD_DIR}/RNDateTimePicker" "${PODS_CONFIGURATION_BUILD_DIR}/RNDeviceInfo" "${PODS_CONFIGURATION_BUILD_DIR}/RNFastImage" "${PODS_CONFIGURATION_BUILD_DIR}/RNFirebase" "${PODS_CONFIGURATION_BUILD_DIR}/RNGestureHandler" "${PODS_CONFIGURATION_BUILD_DIR}/RNImageCropPicker" "${PODS_CONFIGURATION_BUILD_DIR}/RNLocalize" "${PODS_CONFIGURATION_BUILD_DIR}/RNReanimated" "${PODS_CONFIGURATION_BUILD_DIR}/RNRootView" "${PODS_CONFIGURATION_BUILD_DIR}/RNScreens" "${PODS_CONFIGURATION_BUILD_DIR}/RNUserDefaults" "${PODS_CONFIGURATION_BUILD_DIR}/RNVectorIcons" "${PODS_CONFIGURATION_BUILD_DIR}/RSKImageCropper" "${PODS_CONFIGURATION_BUILD_DIR}/React-Core" "${PODS_CONFIGURATION_BUILD_DIR}/React-CoreModules" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTActionSheet" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTAnimation" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTBlob" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTImage" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTLinking" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTNetwork" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTSettings" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTText" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTVibration" "${PODS_CONFIGURATION_BUILD_DIR}/React-cxxreact" "${PODS_CONFIGURATION_BUILD_DIR}/React-jsi" "${PODS_CONFIGURATION_BUILD_DIR}/React-jsiexecutor" "${PODS_CONFIGURATION_BUILD_DIR}/React-jsinspector" "${PODS_CONFIGURATION_BUILD_DIR}/ReactCommon" "${PODS_CONFIGURATION_BUILD_DIR}/ReactNativeART" "${PODS_CONFIGURATION_BUILD_DIR}/SDWebImage" "${PODS_CONFIGURATION_BUILD_DIR}/SDWebImageWebPCoder" "${PODS_CONFIGURATION_BUILD_DIR}/Yoga" "${PODS_CONFIGURATION_BUILD_DIR}/glog" "${PODS_CONFIGURATION_BUILD_DIR}/libwebp" "${PODS_CONFIGURATION_BUILD_DIR}/nanopb" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-appearance" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-background-timer" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-cameraroll" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-document-picker" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-jitsi-meet" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-keyboard-input" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-keyboard-tracking-view" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-notifications" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-orientation-locker" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-slider" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-webview" "${PODS_CONFIGURATION_BUILD_DIR}/rn-extensions-share" "${PODS_CONFIGURATION_BUILD_DIR}/rn-fetch-blob" +OTHER_LDFLAGS = $(inherited) -ObjC -l"BugsnagReactNative" -l"DoubleConversion" -l"FBReactNativeSpec" -l"FirebaseCore" -l"FirebaseCoreDiagnostics" -l"FirebaseInstallations" -l"FirebaseInstanceID" -l"Folly" -l"GoogleDataTransport" -l"GoogleDataTransportCCTSupport" -l"GoogleUtilities" -l"KeyCommands" -l"PromisesObjC" -l"RCTTypeSafety" -l"RNAudio" -l"RNBootSplash" -l"RNDateTimePicker" -l"RNDeviceInfo" -l"RNFastImage" -l"RNFirebase" -l"RNGestureHandler" -l"RNImageCropPicker" -l"RNLocalize" -l"RNReanimated" -l"RNRootView" -l"RNScreens" -l"RNUserDefaults" -l"RNVectorIcons" -l"RSKImageCropper" -l"React-Core" -l"React-CoreModules" -l"React-RCTActionSheet" -l"React-RCTAnimation" -l"React-RCTBlob" -l"React-RCTImage" -l"React-RCTLinking" -l"React-RCTNetwork" -l"React-RCTSettings" -l"React-RCTText" -l"React-RCTVibration" -l"React-cxxreact" -l"React-jsi" -l"React-jsiexecutor" -l"React-jsinspector" -l"ReactCommon" -l"ReactNativeART" -l"SDWebImage" -l"SDWebImageWebPCoder" -l"Yoga" -l"c++" -l"glog" -l"libwebp" -l"nanopb" -l"react-native-appearance" -l"react-native-background-timer" -l"react-native-cameraroll" -l"react-native-document-picker" -l"react-native-jitsi-meet" -l"react-native-keyboard-input" -l"react-native-keyboard-tracking-view" -l"react-native-notifications" -l"react-native-orientation-locker" -l"react-native-slider" -l"react-native-webview" -l"rn-extensions-share" -l"rn-fetch-blob" -l"sqlite3" -l"stdc++" -l"z" -framework "AVFoundation" -framework "Crashlytics" -framework "FIRAnalyticsConnector" -framework "Fabric" -framework "FirebaseAnalytics" -framework "Foundation" -framework "GoogleAppMeasurement" -framework "ImageIO" -framework "JavaScriptCore" -framework "JitsiMeet" -framework "MessageUI" -framework "Photos" -framework "QuartzCore" -framework "Security" -framework "StoreKit" -framework "SystemConfiguration" -framework "UIKit" -framework "WebRTC" PODS_BUILD_DIR = ${BUILD_DIR} PODS_CONFIGURATION_BUILD_DIR = ${PODS_BUILD_DIR}/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) PODS_PODFILE_DIR_PATH = ${SRCROOT}/. diff --git a/ios/Pods/Target Support Files/SocketRocket/SocketRocket-dummy.m b/ios/Pods/Target Support Files/SocketRocket/SocketRocket-dummy.m deleted file mode 100644 index 1e9d2c9d8..000000000 --- a/ios/Pods/Target Support Files/SocketRocket/SocketRocket-dummy.m +++ /dev/null @@ -1,5 +0,0 @@ -#import -@interface PodsDummy_SocketRocket : NSObject -@end -@implementation PodsDummy_SocketRocket -@end diff --git a/package.json b/package.json index d1719e296..c227899f2 100644 --- a/package.json +++ b/package.json @@ -39,6 +39,7 @@ "expo-av": "^6.0.0", "expo-file-system": "^6.0.2", "expo-haptics": "6.0.0", + "expo-keep-awake": "^8.1.0", "expo-web-browser": "^6.0.0", "hoist-non-react-statics": "^3.3.0", "i18n-js": "3.5.0", diff --git a/yarn.lock b/yarn.lock index deea80c0f..09d6a652e 100644 --- a/yarn.lock +++ b/yarn.lock @@ -4806,6 +4806,11 @@ expo-haptics@6.0.0: resolved "https://registry.yarnpkg.com/expo-haptics/-/expo-haptics-6.0.0.tgz#dd0b8390564b3ba398a3f6d726ce5ad99a892ddc" integrity sha512-Xn+u5Gqp0/aLipKUMhPgZrccTO9uSV5FSM9u6bkMhV/zfjZqQMWpm0NqL24OBBXy5wPmF3g6Hev5YyDUd0Jj9Q== +expo-keep-awake@^8.1.0: + version "8.1.0" + resolved "https://registry.yarnpkg.com/expo-keep-awake/-/expo-keep-awake-8.1.0.tgz#3a1d8aa5a8395d40c7d79e1c93020ae5f848e664" + integrity sha512-RNPwWvpwsJwJS8ZI1yklKyVQ6l2NNZBCN2aSgQMRza2SABnpFFzDLHQwMo7DC+nbmrOueMvCIDr0VI3xrzGfEg== + expo-permissions@~6.0.0: version "6.0.0" resolved "https://registry.yarnpkg.com/expo-permissions/-/expo-permissions-6.0.0.tgz#2943f1aa98de833b88cea73cf03d18d08957cb68"