From 91a2e9b181075f0e68586e987f9ed8dce7b3e30d Mon Sep 17 00:00:00 2001 From: Djorkaeff Alexandre Date: Mon, 31 Aug 2020 17:29:44 -0300 Subject: [PATCH] [CHORE] App Group path as a iOS constant (#2439) * [FIX] Chrome debugging * Remove rn-fetch-blob --- app/lib/database/index.js | 4 +- app/utils/appGroup.js | 11 + ios/AppGroup/AppGroup.m | 11 + ios/AppGroup/AppGroup.swift | 26 + ios/Podfile.lock | 6 - .../Private/rn-fetch-blob/IOS7Polyfill.h | 1 - .../Private/rn-fetch-blob/RNFetchBlob.h | 1 - .../Private/rn-fetch-blob/RNFetchBlobConst.h | 1 - .../Private/rn-fetch-blob/RNFetchBlobFS.h | 1 - .../rn-fetch-blob/RNFetchBlobNetwork.h | 1 - .../rn-fetch-blob/RNFetchBlobProgress.h | 1 - .../rn-fetch-blob/RNFetchBlobReqBuilder.h | 1 - .../rn-fetch-blob/RNFetchBlobRequest.h | 1 - .../Public/rn-fetch-blob/IOS7Polyfill.h | 1 - .../Public/rn-fetch-blob/RNFetchBlob.h | 1 - .../Public/rn-fetch-blob/RNFetchBlobConst.h | 1 - .../Public/rn-fetch-blob/RNFetchBlobFS.h | 1 - .../Public/rn-fetch-blob/RNFetchBlobNetwork.h | 1 - .../rn-fetch-blob/RNFetchBlobProgress.h | 1 - .../rn-fetch-blob/RNFetchBlobReqBuilder.h | 1 - .../Public/rn-fetch-blob/RNFetchBlobRequest.h | 1 - .../Local Podspecs/rn-fetch-blob.podspec.json | 21 - ios/Pods/Manifest.lock | 6 - ios/Pods/Pods.xcodeproj/project.pbxproj | 19128 ++++++++-------- .../Pods-NotificationService-resources.sh | 129 - .../Pods-NotificationService.debug.xcconfig | 2 +- .../Pods-NotificationService.release.xcconfig | 2 +- ...ods-RocketChatRN-acknowledgements.markdown | 25 - .../Pods-RocketChatRN-acknowledgements.plist | 31 - .../Pods-RocketChatRN.debug.xcconfig | 6 +- .../Pods-RocketChatRN.release.xcconfig | 6 +- ...hareRocketChatRN-acknowledgements.markdown | 25 - ...s-ShareRocketChatRN-acknowledgements.plist | 31 - .../Pods-ShareRocketChatRN.debug.xcconfig | 6 +- .../Pods-ShareRocketChatRN.release.xcconfig | 6 +- .../rn-fetch-blob/rn-fetch-blob-dummy.m | 5 - .../rn-fetch-blob/rn-fetch-blob-prefix.pch | 12 - .../rn-fetch-blob.debug.xcconfig | 12 - .../rn-fetch-blob.release.xcconfig | 12 - ios/RocketChatRN.xcodeproj/project.pbxproj | 20 + package.json | 3 +- yarn.lock | 27 +- 42 files changed, 9522 insertions(+), 10067 deletions(-) create mode 100644 app/utils/appGroup.js create mode 100644 ios/AppGroup/AppGroup.m create mode 100644 ios/AppGroup/AppGroup.swift delete mode 120000 ios/Pods/Headers/Private/rn-fetch-blob/IOS7Polyfill.h delete mode 120000 ios/Pods/Headers/Private/rn-fetch-blob/RNFetchBlob.h delete mode 120000 ios/Pods/Headers/Private/rn-fetch-blob/RNFetchBlobConst.h delete mode 120000 ios/Pods/Headers/Private/rn-fetch-blob/RNFetchBlobFS.h delete mode 120000 ios/Pods/Headers/Private/rn-fetch-blob/RNFetchBlobNetwork.h delete mode 120000 ios/Pods/Headers/Private/rn-fetch-blob/RNFetchBlobProgress.h delete mode 120000 ios/Pods/Headers/Private/rn-fetch-blob/RNFetchBlobReqBuilder.h delete mode 120000 ios/Pods/Headers/Private/rn-fetch-blob/RNFetchBlobRequest.h delete mode 120000 ios/Pods/Headers/Public/rn-fetch-blob/IOS7Polyfill.h delete mode 120000 ios/Pods/Headers/Public/rn-fetch-blob/RNFetchBlob.h delete mode 120000 ios/Pods/Headers/Public/rn-fetch-blob/RNFetchBlobConst.h delete mode 120000 ios/Pods/Headers/Public/rn-fetch-blob/RNFetchBlobFS.h delete mode 120000 ios/Pods/Headers/Public/rn-fetch-blob/RNFetchBlobNetwork.h delete mode 120000 ios/Pods/Headers/Public/rn-fetch-blob/RNFetchBlobProgress.h delete mode 120000 ios/Pods/Headers/Public/rn-fetch-blob/RNFetchBlobReqBuilder.h delete mode 120000 ios/Pods/Headers/Public/rn-fetch-blob/RNFetchBlobRequest.h delete mode 100644 ios/Pods/Local Podspecs/rn-fetch-blob.podspec.json delete mode 100755 ios/Pods/Target Support Files/Pods-NotificationService/Pods-NotificationService-resources.sh delete mode 100644 ios/Pods/Target Support Files/rn-fetch-blob/rn-fetch-blob-dummy.m delete mode 100644 ios/Pods/Target Support Files/rn-fetch-blob/rn-fetch-blob-prefix.pch delete mode 100644 ios/Pods/Target Support Files/rn-fetch-blob/rn-fetch-blob.debug.xcconfig delete mode 100644 ios/Pods/Target Support Files/rn-fetch-blob/rn-fetch-blob.release.xcconfig diff --git a/app/lib/database/index.js b/app/lib/database/index.js index 37a17a3c..bf5a164b 100644 --- a/app/lib/database/index.js +++ b/app/lib/database/index.js @@ -1,7 +1,6 @@ import { Database } from '@nozbe/watermelondb'; import SQLiteAdapter from '@nozbe/watermelondb/adapters/sqlite'; import logger from '@nozbe/watermelondb/utils/common/logger'; -import RNFetchBlob from 'rn-fetch-blob'; import Subscription from './model/Subscription'; import Room from './model/Room'; @@ -26,8 +25,9 @@ import migrations from './model/migrations'; import serversMigrations from './model/serversMigrations'; import { isIOS } from '../../utils/deviceInfo'; +import appGroup from '../../utils/appGroup'; -const appGroupPath = isIOS ? `${ RNFetchBlob.fs.syncPathAppGroup('group.ios.chat.rocket') }/` : ''; +const appGroupPath = isIOS ? appGroup.path : ''; if (__DEV__ && isIOS) { console.log(appGroupPath); diff --git a/app/utils/appGroup.js b/app/utils/appGroup.js new file mode 100644 index 00000000..63fb428a --- /dev/null +++ b/app/utils/appGroup.js @@ -0,0 +1,11 @@ +import { NativeModules } from 'react-native'; + +import { isIOS } from './deviceInfo'; + +const { AppGroup } = NativeModules; + +const appGroup = { + path: isIOS ? AppGroup.path : '' +}; + +export default appGroup; diff --git a/ios/AppGroup/AppGroup.m b/ios/AppGroup/AppGroup.m new file mode 100644 index 00000000..137c3edd --- /dev/null +++ b/ios/AppGroup/AppGroup.m @@ -0,0 +1,11 @@ +// +// AppGroup.m +// RocketChatRN +// +// Created by Djorkaeff Alexandre Vilela Pereira on 8/31/20. +// Copyright © 2020 Facebook. All rights reserved. +// + +#import "React/RCTBridgeModule.h" +@interface RCT_EXTERN_MODULE(AppGroup, NSObject) +@end diff --git a/ios/AppGroup/AppGroup.swift b/ios/AppGroup/AppGroup.swift new file mode 100644 index 00000000..278e9be5 --- /dev/null +++ b/ios/AppGroup/AppGroup.swift @@ -0,0 +1,26 @@ +// +// AppGroup.swift +// RocketChatRN +// +// Created by Djorkaeff Alexandre Vilela Pereira on 8/31/20. +// Copyright © 2020 Facebook. All rights reserved. +// + +import Foundation + +@objc(AppGroup) +class AppGroup: NSObject { + + @objc + func constantsToExport() -> [AnyHashable : Any]! { + // Get App Group directory + var path = "" + if let suiteName = Bundle.main.object(forInfoDictionaryKey: "AppGroup") as? String { + if let directory = FileManager.default.containerURL(forSecurityApplicationGroupIdentifier: suiteName) { + path = directory.path + } + } + + return ["path": "\(path)/"] + } +} diff --git a/ios/Podfile.lock b/ios/Podfile.lock index 396f8179..9f9e6917 100644 --- a/ios/Podfile.lock +++ b/ios/Podfile.lock @@ -458,8 +458,6 @@ PODS: - React - rn-extensions-share (2.4.0): - React - - rn-fetch-blob (0.12.0): - - React-Core - RNBootSplash (2.2.5): - React - RNCAsyncStorage (1.11.0): @@ -614,7 +612,6 @@ DEPENDENCIES: - ReactNativeKeyboardInput (from `../node_modules/react-native-keyboard-input`) - ReactNativeKeyboardTrackingView (from `../node_modules/react-native-keyboard-tracking-view`) - rn-extensions-share (from `../node_modules/rn-extensions-share`) - - rn-fetch-blob (from `../node_modules/rn-fetch-blob`) - RNBootSplash (from `../node_modules/react-native-bootsplash`) - "RNCAsyncStorage (from `../node_modules/@react-native-community/async-storage`)" - "RNCMaskedView (from `../node_modules/@react-native-community/masked-view`)" @@ -791,8 +788,6 @@ EXTERNAL SOURCES: :path: "../node_modules/react-native-keyboard-tracking-view" rn-extensions-share: :path: "../node_modules/rn-extensions-share" - rn-fetch-blob: - :path: "../node_modules/rn-fetch-blob" RNBootSplash: :path: "../node_modules/react-native-bootsplash" RNCAsyncStorage: @@ -939,7 +934,6 @@ SPEC CHECKSUMS: ReactNativeKeyboardInput: c37e26821519869993b3b61844350feb9177ff37 ReactNativeKeyboardTrackingView: 02137fac3b2ebd330d74fa54ead48b14750a2306 rn-extensions-share: 8db79372089567cbc5aefe8444869bbc808578d3 - rn-fetch-blob: f065bb7ab7fb48dd002629f8bdcb0336602d3cba RNBootSplash: b3836aa90c5bec690c6cd3c9ab355fcf98d0fe1d RNCAsyncStorage: d059c3ee71738c39834a627476322a5a8cd5bf36 RNCMaskedView: 5a8ec07677aa885546a0d98da336457e2bea557f diff --git a/ios/Pods/Headers/Private/rn-fetch-blob/IOS7Polyfill.h b/ios/Pods/Headers/Private/rn-fetch-blob/IOS7Polyfill.h deleted file mode 120000 index 040400a0..00000000 --- a/ios/Pods/Headers/Private/rn-fetch-blob/IOS7Polyfill.h +++ /dev/null @@ -1 +0,0 @@ -../../../../../node_modules/rn-fetch-blob/ios/IOS7Polyfill.h \ No newline at end of file diff --git a/ios/Pods/Headers/Private/rn-fetch-blob/RNFetchBlob.h b/ios/Pods/Headers/Private/rn-fetch-blob/RNFetchBlob.h deleted file mode 120000 index 3c6bee9b..00000000 --- a/ios/Pods/Headers/Private/rn-fetch-blob/RNFetchBlob.h +++ /dev/null @@ -1 +0,0 @@ -../../../../../node_modules/rn-fetch-blob/ios/RNFetchBlob/RNFetchBlob.h \ No newline at end of file diff --git a/ios/Pods/Headers/Private/rn-fetch-blob/RNFetchBlobConst.h b/ios/Pods/Headers/Private/rn-fetch-blob/RNFetchBlobConst.h deleted file mode 120000 index 0f8eea36..00000000 --- a/ios/Pods/Headers/Private/rn-fetch-blob/RNFetchBlobConst.h +++ /dev/null @@ -1 +0,0 @@ -../../../../../node_modules/rn-fetch-blob/ios/RNFetchBlobConst.h \ No newline at end of file diff --git a/ios/Pods/Headers/Private/rn-fetch-blob/RNFetchBlobFS.h b/ios/Pods/Headers/Private/rn-fetch-blob/RNFetchBlobFS.h deleted file mode 120000 index d391ce61..00000000 --- a/ios/Pods/Headers/Private/rn-fetch-blob/RNFetchBlobFS.h +++ /dev/null @@ -1 +0,0 @@ -../../../../../node_modules/rn-fetch-blob/ios/RNFetchBlobFS.h \ No newline at end of file diff --git a/ios/Pods/Headers/Private/rn-fetch-blob/RNFetchBlobNetwork.h b/ios/Pods/Headers/Private/rn-fetch-blob/RNFetchBlobNetwork.h deleted file mode 120000 index b06b75de..00000000 --- a/ios/Pods/Headers/Private/rn-fetch-blob/RNFetchBlobNetwork.h +++ /dev/null @@ -1 +0,0 @@ -../../../../../node_modules/rn-fetch-blob/ios/RNFetchBlobNetwork.h \ No newline at end of file diff --git a/ios/Pods/Headers/Private/rn-fetch-blob/RNFetchBlobProgress.h b/ios/Pods/Headers/Private/rn-fetch-blob/RNFetchBlobProgress.h deleted file mode 120000 index 5c510727..00000000 --- a/ios/Pods/Headers/Private/rn-fetch-blob/RNFetchBlobProgress.h +++ /dev/null @@ -1 +0,0 @@ -../../../../../node_modules/rn-fetch-blob/ios/RNFetchBlobProgress.h \ No newline at end of file diff --git a/ios/Pods/Headers/Private/rn-fetch-blob/RNFetchBlobReqBuilder.h b/ios/Pods/Headers/Private/rn-fetch-blob/RNFetchBlobReqBuilder.h deleted file mode 120000 index 8e516381..00000000 --- a/ios/Pods/Headers/Private/rn-fetch-blob/RNFetchBlobReqBuilder.h +++ /dev/null @@ -1 +0,0 @@ -../../../../../node_modules/rn-fetch-blob/ios/RNFetchBlobReqBuilder.h \ No newline at end of file diff --git a/ios/Pods/Headers/Private/rn-fetch-blob/RNFetchBlobRequest.h b/ios/Pods/Headers/Private/rn-fetch-blob/RNFetchBlobRequest.h deleted file mode 120000 index 00b7e576..00000000 --- a/ios/Pods/Headers/Private/rn-fetch-blob/RNFetchBlobRequest.h +++ /dev/null @@ -1 +0,0 @@ -../../../../../node_modules/rn-fetch-blob/ios/RNFetchBlobRequest.h \ No newline at end of file diff --git a/ios/Pods/Headers/Public/rn-fetch-blob/IOS7Polyfill.h b/ios/Pods/Headers/Public/rn-fetch-blob/IOS7Polyfill.h deleted file mode 120000 index 040400a0..00000000 --- a/ios/Pods/Headers/Public/rn-fetch-blob/IOS7Polyfill.h +++ /dev/null @@ -1 +0,0 @@ -../../../../../node_modules/rn-fetch-blob/ios/IOS7Polyfill.h \ No newline at end of file diff --git a/ios/Pods/Headers/Public/rn-fetch-blob/RNFetchBlob.h b/ios/Pods/Headers/Public/rn-fetch-blob/RNFetchBlob.h deleted file mode 120000 index 3c6bee9b..00000000 --- a/ios/Pods/Headers/Public/rn-fetch-blob/RNFetchBlob.h +++ /dev/null @@ -1 +0,0 @@ -../../../../../node_modules/rn-fetch-blob/ios/RNFetchBlob/RNFetchBlob.h \ No newline at end of file diff --git a/ios/Pods/Headers/Public/rn-fetch-blob/RNFetchBlobConst.h b/ios/Pods/Headers/Public/rn-fetch-blob/RNFetchBlobConst.h deleted file mode 120000 index 0f8eea36..00000000 --- a/ios/Pods/Headers/Public/rn-fetch-blob/RNFetchBlobConst.h +++ /dev/null @@ -1 +0,0 @@ -../../../../../node_modules/rn-fetch-blob/ios/RNFetchBlobConst.h \ No newline at end of file diff --git a/ios/Pods/Headers/Public/rn-fetch-blob/RNFetchBlobFS.h b/ios/Pods/Headers/Public/rn-fetch-blob/RNFetchBlobFS.h deleted file mode 120000 index d391ce61..00000000 --- a/ios/Pods/Headers/Public/rn-fetch-blob/RNFetchBlobFS.h +++ /dev/null @@ -1 +0,0 @@ -../../../../../node_modules/rn-fetch-blob/ios/RNFetchBlobFS.h \ No newline at end of file diff --git a/ios/Pods/Headers/Public/rn-fetch-blob/RNFetchBlobNetwork.h b/ios/Pods/Headers/Public/rn-fetch-blob/RNFetchBlobNetwork.h deleted file mode 120000 index b06b75de..00000000 --- a/ios/Pods/Headers/Public/rn-fetch-blob/RNFetchBlobNetwork.h +++ /dev/null @@ -1 +0,0 @@ -../../../../../node_modules/rn-fetch-blob/ios/RNFetchBlobNetwork.h \ No newline at end of file diff --git a/ios/Pods/Headers/Public/rn-fetch-blob/RNFetchBlobProgress.h b/ios/Pods/Headers/Public/rn-fetch-blob/RNFetchBlobProgress.h deleted file mode 120000 index 5c510727..00000000 --- a/ios/Pods/Headers/Public/rn-fetch-blob/RNFetchBlobProgress.h +++ /dev/null @@ -1 +0,0 @@ -../../../../../node_modules/rn-fetch-blob/ios/RNFetchBlobProgress.h \ No newline at end of file diff --git a/ios/Pods/Headers/Public/rn-fetch-blob/RNFetchBlobReqBuilder.h b/ios/Pods/Headers/Public/rn-fetch-blob/RNFetchBlobReqBuilder.h deleted file mode 120000 index 8e516381..00000000 --- a/ios/Pods/Headers/Public/rn-fetch-blob/RNFetchBlobReqBuilder.h +++ /dev/null @@ -1 +0,0 @@ -../../../../../node_modules/rn-fetch-blob/ios/RNFetchBlobReqBuilder.h \ No newline at end of file diff --git a/ios/Pods/Headers/Public/rn-fetch-blob/RNFetchBlobRequest.h b/ios/Pods/Headers/Public/rn-fetch-blob/RNFetchBlobRequest.h deleted file mode 120000 index 00b7e576..00000000 --- a/ios/Pods/Headers/Public/rn-fetch-blob/RNFetchBlobRequest.h +++ /dev/null @@ -1 +0,0 @@ -../../../../../node_modules/rn-fetch-blob/ios/RNFetchBlobRequest.h \ No newline at end of file diff --git a/ios/Pods/Local Podspecs/rn-fetch-blob.podspec.json b/ios/Pods/Local Podspecs/rn-fetch-blob.podspec.json deleted file mode 100644 index 934cc6d1..00000000 --- a/ios/Pods/Local Podspecs/rn-fetch-blob.podspec.json +++ /dev/null @@ -1,21 +0,0 @@ -{ - "name": "rn-fetch-blob", - "version": "0.12.0", - "summary": "A module provides upload, download, and files access API. Supports file stream read/write for process large files.", - "requires_arc": true, - "license": "MIT", - "homepage": "n/a", - "source": { - "git": "https://github.com/joltup/rn-fetch-blob" - }, - "authors": "Joltup", - "source_files": "ios/**/*.{h,m}", - "platforms": { - "ios": "8.0" - }, - "dependencies": { - "React-Core": [ - - ] - } -} diff --git a/ios/Pods/Manifest.lock b/ios/Pods/Manifest.lock index 396f8179..9f9e6917 100644 --- a/ios/Pods/Manifest.lock +++ b/ios/Pods/Manifest.lock @@ -458,8 +458,6 @@ PODS: - React - rn-extensions-share (2.4.0): - React - - rn-fetch-blob (0.12.0): - - React-Core - RNBootSplash (2.2.5): - React - RNCAsyncStorage (1.11.0): @@ -614,7 +612,6 @@ DEPENDENCIES: - ReactNativeKeyboardInput (from `../node_modules/react-native-keyboard-input`) - ReactNativeKeyboardTrackingView (from `../node_modules/react-native-keyboard-tracking-view`) - rn-extensions-share (from `../node_modules/rn-extensions-share`) - - rn-fetch-blob (from `../node_modules/rn-fetch-blob`) - RNBootSplash (from `../node_modules/react-native-bootsplash`) - "RNCAsyncStorage (from `../node_modules/@react-native-community/async-storage`)" - "RNCMaskedView (from `../node_modules/@react-native-community/masked-view`)" @@ -791,8 +788,6 @@ EXTERNAL SOURCES: :path: "../node_modules/react-native-keyboard-tracking-view" rn-extensions-share: :path: "../node_modules/rn-extensions-share" - rn-fetch-blob: - :path: "../node_modules/rn-fetch-blob" RNBootSplash: :path: "../node_modules/react-native-bootsplash" RNCAsyncStorage: @@ -939,7 +934,6 @@ SPEC CHECKSUMS: ReactNativeKeyboardInput: c37e26821519869993b3b61844350feb9177ff37 ReactNativeKeyboardTrackingView: 02137fac3b2ebd330d74fa54ead48b14750a2306 rn-extensions-share: 8db79372089567cbc5aefe8444869bbc808578d3 - rn-fetch-blob: f065bb7ab7fb48dd002629f8bdcb0336602d3cba RNBootSplash: b3836aa90c5bec690c6cd3c9ab355fcf98d0fe1d RNCAsyncStorage: d059c3ee71738c39834a627476322a5a8cd5bf36 RNCMaskedView: 5a8ec07677aa885546a0d98da336457e2bea557f diff --git a/ios/Pods/Pods.xcodeproj/project.pbxproj b/ios/Pods/Pods.xcodeproj/project.pbxproj index 07b30765..0d39f243 100644 --- a/ios/Pods/Pods.xcodeproj/project.pbxproj +++ b/ios/Pods/Pods.xcodeproj/project.pbxproj @@ -220,98 +220,95 @@ /* End PBXAggregateTarget section */ /* Begin PBXBuildFile section */ - 000F50E0CF2A97F28B1403D1775EDC99 /* UMBridgeModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 6E4008EF45A0D71DCFBA6F91F3D00EA8 /* UMBridgeModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 000F50E0CF2A97F28B1403D1775EDC99 /* UMBridgeModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 8EBB277779041E089174E8AA450A4FF7 /* UMBridgeModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; 001AF458ED907C2245E6C1309CFADDB3 /* JemallocHugePageAllocator.h in Headers */ = {isa = PBXBuildFile; fileRef = 20953006648FCA7D3E6AB8BFB0E02E4A /* JemallocHugePageAllocator.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0037C44133F11280075F402AAB720DD9 /* BugsnagCrashReport.m in Sources */ = {isa = PBXBuildFile; fileRef = 9786B1A5600381B6C52DD3A9F2D05699 /* BugsnagCrashReport.m */; }; - 00594B2F713792545D808EABD2ABC9CC /* RCTBackedTextInputViewProtocol.h in Headers */ = {isa = PBXBuildFile; fileRef = 3EE1742852808EF29B7A46B5EBE710C7 /* RCTBackedTextInputViewProtocol.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0060810FB3851F5761DD7524A5AD905E /* RNGestureHandlerEvents.h in Headers */ = {isa = PBXBuildFile; fileRef = 66C22CE3936F8C9398388D144661EEBC /* RNGestureHandlerEvents.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 00A894F22AA7BAC1B6AA77349D399622 /* REATransitionManager.h in Headers */ = {isa = PBXBuildFile; fileRef = DC115E45AE9B773DFA80950444513408 /* REATransitionManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 00AAC400E3418EF5114C52242349B8D9 /* UMNativeModulesProxy.m in Sources */ = {isa = PBXBuildFile; fileRef = 62AD1E3F452D600843E69C770EB37596 /* UMNativeModulesProxy.m */; }; + 0037C44133F11280075F402AAB720DD9 /* BugsnagCrashReport.m in Sources */ = {isa = PBXBuildFile; fileRef = 8EEA6FF4DAB07349163475C36A98AEF4 /* BugsnagCrashReport.m */; }; + 00594B2F713792545D808EABD2ABC9CC /* RCTBackedTextInputViewProtocol.h in Headers */ = {isa = PBXBuildFile; fileRef = 85278DCA2F11944F4D9AC9DDEA02A077 /* RCTBackedTextInputViewProtocol.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0060810FB3851F5761DD7524A5AD905E /* RNGestureHandlerEvents.h in Headers */ = {isa = PBXBuildFile; fileRef = 9410A1266643F02DA74B202C9B383204 /* RNGestureHandlerEvents.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 00A894F22AA7BAC1B6AA77349D399622 /* REATransitionManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 1BAAEFED317DFDF0BEC292644471A471 /* REATransitionManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 00AAC400E3418EF5114C52242349B8D9 /* UMNativeModulesProxy.m in Sources */ = {isa = PBXBuildFile; fileRef = 7971EEE9F2F21E240A4651153DC5FF8F /* UMNativeModulesProxy.m */; }; 00C91D63CC716D2460BD2A730560A58E /* ThreadId.h in Headers */ = {isa = PBXBuildFile; fileRef = 284D0BD80F7C7263935C9B333C8C7128 /* ThreadId.h */; settings = {ATTRIBUTES = (Project, ); }; }; 00D2A54A8823A11E61F579504E81E987 /* Flipper-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 0CEDFF0CE53E9D577F3D7A453DD6D566 /* Flipper-dummy.m */; }; - 00E175270DC9686B1C908C3528E72BFB /* BugsnagMetaData.m in Sources */ = {isa = PBXBuildFile; fileRef = E026F0C7B34CD06C6AFF8206FED40798 /* BugsnagMetaData.m */; }; + 00E175270DC9686B1C908C3528E72BFB /* BugsnagMetaData.m in Sources */ = {isa = PBXBuildFile; fileRef = 650599829DAAE76693395E94846CDC35 /* BugsnagMetaData.m */; }; 00F922693F608FAEB7DF4C02CE61C369 /* OpenSSLHash.h in Headers */ = {isa = PBXBuildFile; fileRef = 77DF6DD654C7B0A5974A812BDF1651F8 /* OpenSSLHash.h */; settings = {ATTRIBUTES = (Project, ); }; }; 00FA3E1586775F0FB5DA9F5F99EC17CC /* AtomicUnorderedMap.h in Headers */ = {isa = PBXBuildFile; fileRef = C8CCEED996EDD1C840C18ABDB43B3FE2 /* AtomicUnorderedMap.h */; settings = {ATTRIBUTES = (Project, ); }; }; 0109658EA8CF256D8B289ADCDC7FA70A /* SDImageIOCoder.m in Sources */ = {isa = PBXBuildFile; fileRef = C6915F0E2EB304BA1935966DC0A4CC28 /* SDImageIOCoder.m */; }; - 0109A3A759F7D4639629377AC27DB234 /* RNImageCropPicker-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 0347C0A851766107F39596C3D2D1F806 /* RNImageCropPicker-dummy.m */; }; + 0109A3A759F7D4639629377AC27DB234 /* RNImageCropPicker-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 1E8F60E9F04E72F87227CA2A8BEED97C /* RNImageCropPicker-dummy.m */; }; 011466BD1564B2DC5CE448FEA5B29B85 /* README.md in Sources */ = {isa = PBXBuildFile; fileRef = 21F3594DFCA45CA204AC184CC6A1914B /* README.md */; }; - 0118C5FFF9C4B20E2E19C5D4B1658617 /* RCTImageStoreManager.mm in Sources */ = {isa = PBXBuildFile; fileRef = B455F16556CE02B2F5750E8366B40690 /* RCTImageStoreManager.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + 0118C5FFF9C4B20E2E19C5D4B1658617 /* RCTImageStoreManager.mm in Sources */ = {isa = PBXBuildFile; fileRef = E39EB946FB3EF2E4FE9476750C85F936 /* RCTImageStoreManager.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; 01448BDA59FEB517720540384ACA3EB5 /* UniqueInstance.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 0E61516147E350A335181DADF7D69B54 /* UniqueInstance.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; 015407F52047D4BB0CD74C289D230C37 /* pb_common.h in Headers */ = {isa = PBXBuildFile; fileRef = 084E16E8ADA877574CEFCADB0A2E393C /* pb_common.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 016DEDB4BCC1C09A27E1C0CA9EE522AB /* ReactMarker.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 27C50D36969AF24EB251E6592A7A1BFE /* ReactMarker.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 01859E4946383F52809C7A5E95C94853 /* YGNodePrint.h in Headers */ = {isa = PBXBuildFile; fileRef = 8F611C971DC6C25C30C08F61592DF945 /* YGNodePrint.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0198283A6245A364C263FECB875E1C76 /* ARTRenderable.h in Headers */ = {isa = PBXBuildFile; fileRef = 2726389FEBA35766473DE059CB0C6DF5 /* ARTRenderable.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 016DEDB4BCC1C09A27E1C0CA9EE522AB /* ReactMarker.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3E65EE62F274902F911EBC8F7DABC14B /* ReactMarker.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 01859E4946383F52809C7A5E95C94853 /* YGNodePrint.h in Headers */ = {isa = PBXBuildFile; fileRef = 3DE2034E122154A0BBED46729EF813C2 /* YGNodePrint.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0198283A6245A364C263FECB875E1C76 /* ARTRenderable.h in Headers */ = {isa = PBXBuildFile; fileRef = C39D2B867CBC3756105C32FAA2BE9820 /* ARTRenderable.h */; settings = {ATTRIBUTES = (Project, ); }; }; 01CD4E5B223049012C390E0A9D903D47 /* FIRCLSURLSessionDataTask.h in Headers */ = {isa = PBXBuildFile; fileRef = F6E30BCF4DA423CAEDE6ED4073EF2A63 /* FIRCLSURLSessionDataTask.h */; settings = {ATTRIBUTES = (Project, ); }; }; 01D4A5DDBBEE67AA18A16D4C689B53DA /* ErrorCode.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 106165C45E0317EB7ABC82DD367CB99A /* ErrorCode.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0 -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - 01EDE288363CC3CB55DAD85AABD887A1 /* BugsnagCollections.m in Sources */ = {isa = PBXBuildFile; fileRef = 8A3E5125DA6A297B2980C256D1443CF2 /* BugsnagCollections.m */; }; - 01F3F5575EDE7E28E2E794442E3E58F3 /* RCTConvertHelpers.mm in Sources */ = {isa = PBXBuildFile; fileRef = BC6A56B2103C7FBB3A585B52A0D04257 /* RCTConvertHelpers.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32"; }; }; + 01EDE288363CC3CB55DAD85AABD887A1 /* BugsnagCollections.m in Sources */ = {isa = PBXBuildFile; fileRef = BE8D2C69D34441AEB65CB385B541B417 /* BugsnagCollections.m */; }; + 01F3F5575EDE7E28E2E794442E3E58F3 /* RCTConvertHelpers.mm in Sources */ = {isa = PBXBuildFile; fileRef = 885B4CAE3B0C6CD790D6726DC43601CF /* RCTConvertHelpers.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32"; }; }; 01FA56AC1F7EF75E75EBBCA0945A18E1 /* SSLContext.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F31F3B4D718BB4FFF5B66BD7227845CE /* SSLContext.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; 02218BCD8452C372E4ACC4A4C8325932 /* rescaler.c in Sources */ = {isa = PBXBuildFile; fileRef = 4C8C64BF31A681D4543C73482131964B /* rescaler.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; 0226A47450E4759F2CAEFA6307E1F0AA /* vlog_is_on.cc in Sources */ = {isa = PBXBuildFile; fileRef = 60AE6989A5796CB59E49FB60BA6975D2 /* vlog_is_on.cc */; settings = {COMPILER_FLAGS = "-Wno-shorten-64-to-32"; }; }; 023FF4811870371C17AB936C0370C28D /* WTCallback.h in Headers */ = {isa = PBXBuildFile; fileRef = 591D5CE70F0224E56390E436F0C0F733 /* WTCallback.h */; settings = {ATTRIBUTES = (Project, ); }; }; 024FFB764B39A899C61D25A259530FAF /* WriteChainAsyncTransportWrapper.h in Headers */ = {isa = PBXBuildFile; fileRef = 812A96082CF253DD45C204A145030104 /* WriteChainAsyncTransportWrapper.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 02714038DA8ECE88D2A8ACB1DE49882A /* RNFBUtilsModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 078BB89A64C2CB0B267C97A9A63E54C2 /* RNFBUtilsModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 02714038DA8ECE88D2A8ACB1DE49882A /* RNFBUtilsModule.h in Headers */ = {isa = PBXBuildFile; fileRef = BF284EB59B526B332F6F42408804630B /* RNFBUtilsModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; 0299350CB081F499B3F68F98995EB87B /* FBLPromise+Always.h in Headers */ = {isa = PBXBuildFile; fileRef = 0CADD08B73E2965179229D42D64F18DB /* FBLPromise+Always.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 029AE0FE15F02795DA6C243E86CA7995 /* RCTConvert+CoreLocation.m in Sources */ = {isa = PBXBuildFile; fileRef = BBD988D67BB23F05086B6AE2FA5B32E9 /* RCTConvert+CoreLocation.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 02A040AA87D6FF98C4A159A382F8CA35 /* REAEventNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 797BE538447BD0E37CDA2854A9B8E5CB /* REAEventNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 029AE0FE15F02795DA6C243E86CA7995 /* RCTConvert+CoreLocation.m in Sources */ = {isa = PBXBuildFile; fileRef = E9CE77DDA1A7F84B3C10ADC5FAFBA481 /* RCTConvert+CoreLocation.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 02A040AA87D6FF98C4A159A382F8CA35 /* REAEventNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 2B1707F6B00B819F5C1CDFBCFE481E89 /* REAEventNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; 02CF5ED1CEA40B42508C26E0FC2A66E1 /* ChecksumDetail.h in Headers */ = {isa = PBXBuildFile; fileRef = AC5B1C9755B9FD9C7BB41BFEE70F6DAC /* ChecksumDetail.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 03034265ED7F0D31CD3DB155BFE2AFCB /* RCTAnimatedNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 8B8B99BA10EB6FEB7DE47188B6497DC4 /* RCTAnimatedNode.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; - 03151B04A94B5B1FAD67FF45DD06B7F5 /* RCTSurfaceDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = F1B0E77ACAB737FA392EF5592503B822 /* RCTSurfaceDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 03034265ED7F0D31CD3DB155BFE2AFCB /* RCTAnimatedNode.m in Sources */ = {isa = PBXBuildFile; fileRef = CBFAB93087C5B978FEF6DC2DE1E3EAB3 /* RCTAnimatedNode.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + 03151B04A94B5B1FAD67FF45DD06B7F5 /* RCTSurfaceDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = 4028F623E36DBC1D2074617120AB1570 /* RCTSurfaceDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; }; 032C7CDB032114BDCC7DC441021A7DA5 /* IOObjectCache.h in Headers */ = {isa = PBXBuildFile; fileRef = 6219D0009BCF31A711488F8CDC5076D0 /* IOObjectCache.h */; settings = {ATTRIBUTES = (Project, ); }; }; 033521D8D361BD79929F1C97CF0F357F /* SDImageFrame.h in Headers */ = {isa = PBXBuildFile; fileRef = 9D211109B139C4F112758357ACA1723A /* SDImageFrame.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 034989576FB180820CE1012B0B8ADD12 /* BugsnagReactNative-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 56D1AC6199D6D9BCA7F42097A4D29D47 /* BugsnagReactNative-dummy.m */; }; + 034989576FB180820CE1012B0B8ADD12 /* BugsnagReactNative-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 2C142AB8070F9269433A87A09A93B5F7 /* BugsnagReactNative-dummy.m */; }; 0357B1DBA4393494C24B5458C5294109 /* UncaughtExceptions.h in Headers */ = {isa = PBXBuildFile; fileRef = 97CC0FF8649FB8EAD461676E8C9E66EA /* UncaughtExceptions.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 037A597C46854C7EAE1349B3B682C044 /* FFFastImageViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 69A93D2AAF46119E429ED7D204E69723 /* FFFastImageViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 037A597C46854C7EAE1349B3B682C044 /* FFFastImageViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = AE86DB11D359622B361796B10E334477 /* FFFastImageViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; 0388C19C118898765F8121AC641BA4B4 /* SDDiskCache.m in Sources */ = {isa = PBXBuildFile; fileRef = E764AFAAF641A4FE37695C79504E5759 /* SDDiskCache.m */; }; - 03A091EF0A44A9313367BD851F9685DB /* RNFetchBlobConst.h in Headers */ = {isa = PBXBuildFile; fileRef = 33ADF32D45491F36ACC04AA21786D9FC /* RNFetchBlobConst.h */; settings = {ATTRIBUTES = (Project, ); }; }; 03B0991E9C8213684BA88B4BB3746653 /* FlipperConnectionManagerImpl.h in Headers */ = {isa = PBXBuildFile; fileRef = 48700365D910E7342D98964C607737A0 /* FlipperConnectionManagerImpl.h */; settings = {ATTRIBUTES = (Project, ); }; }; 03CE75A0F998C6AD1A8A56EC32048441 /* Indestructible.h in Headers */ = {isa = PBXBuildFile; fileRef = 637D8D1046415EBB7A82B18D024458D0 /* Indestructible.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 03D2F02C2F40E330E75DD3522D810830 /* RCTUIManagerUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = C7A8F0D8246B43A01F5A1819685A307A /* RCTUIManagerUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 03D2F02C2F40E330E75DD3522D810830 /* RCTUIManagerUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = 9E33E8382AA04A7442BA30501C24922A /* RCTUIManagerUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; 03DE9082132C5F30F717BA20344693C9 /* Hazptr.h in Headers */ = {isa = PBXBuildFile; fileRef = CE1B1D122BC33C2979EF3AD8FF9B2C6E /* Hazptr.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 03EDC32E5EB4E49C758B0E1AC1B83F1B /* RCTCxxUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = 286281A976AB56971B58CBCAD49A3A0B /* RCTCxxUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 040C7726D830C67BC677757275DE6725 /* JSDeltaBundleClient.h in Headers */ = {isa = PBXBuildFile; fileRef = F5F6523DD6356BDA04307C782B8DF005 /* JSDeltaBundleClient.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 041DBA280D01DEFCA66268DC7D4DE683 /* REAAllTransitions.m in Sources */ = {isa = PBXBuildFile; fileRef = C7B5D7F22EC6694C63DC6FDDB44512CF /* REAAllTransitions.m */; }; - 0460C7FECB81F811BEB1818BA224D99A /* Pods-ShareRocketChatRN-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = FE03B59F2B5A0D48DBC11F41525B18BF /* Pods-ShareRocketChatRN-umbrella.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 03EDC32E5EB4E49C758B0E1AC1B83F1B /* RCTCxxUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = F15ACCC49EE82C62FB9B1233BA69702A /* RCTCxxUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 040C7726D830C67BC677757275DE6725 /* JSDeltaBundleClient.h in Headers */ = {isa = PBXBuildFile; fileRef = 7A1DD621194889730DD99839004FCAA5 /* JSDeltaBundleClient.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 041DBA280D01DEFCA66268DC7D4DE683 /* REAAllTransitions.m in Sources */ = {isa = PBXBuildFile; fileRef = DB0288B59401C2B79E8784E8508EBD53 /* REAAllTransitions.m */; }; 04719857696529B56B628EEB24832846 /* FIRCLSURLSessionAvailability.h in Headers */ = {isa = PBXBuildFile; fileRef = 0CC456DA880CCB4C69A228EC88B34D5E /* FIRCLSURLSessionAvailability.h */; settings = {ATTRIBUTES = (Project, ); }; }; 0494039227D103B7AAC3831F672658FA /* FIRCLSHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = CDB1783AAD2EB476B425C7E30DCF5B5C /* FIRCLSHandler.m */; }; 0496E1728E220AEBEDAD5CBF91E7B74C /* FlipperState.h in Headers */ = {isa = PBXBuildFile; fileRef = 992F321CB4568B26B5C1CF22009BF270 /* FlipperState.h */; settings = {ATTRIBUTES = (Project, ); }; }; 049AAF4CC8018611586F09D6C80F8257 /* FIRCLSReportUploader.m in Sources */ = {isa = PBXBuildFile; fileRef = 56A05E6E745281FC8E38CEF381D72BA5 /* FIRCLSReportUploader.m */; }; - 04A4CB56F6A8163CAF3A464DD0B79CA7 /* React-RCTBlob-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 09E934C0432AD032CB0B45BCB48CE5BB /* React-RCTBlob-dummy.m */; }; + 04A4CB56F6A8163CAF3A464DD0B79CA7 /* React-RCTBlob-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 9668D6F640B397BA9765B303A819F2BD /* React-RCTBlob-dummy.m */; }; 04A740155830EC1680E2A670DA44A6DB /* FIRCLSDataCollectionArbiter.h in Headers */ = {isa = PBXBuildFile; fileRef = A29F8028A89602700407D094ED630714 /* FIRCLSDataCollectionArbiter.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 04B0CD8E8DCD51E6A54EAB4AC3E41AC6 /* JSCExecutorFactory.mm in Sources */ = {isa = PBXBuildFile; fileRef = 1E098669008D834D746C72C165990C67 /* JSCExecutorFactory.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 04BF68827516098FF4CE40F6D65087E0 /* JSExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = 8AF4EAEE524F746D622FE1C1AA19BC79 /* JSExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 04EE13D18B0F6D782FFDE298038D927E /* RCTTrackingAnimatedNode.h in Headers */ = {isa = PBXBuildFile; fileRef = CCE82C3857C8B7741E52A38455E8F3D9 /* RCTTrackingAnimatedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 04FF0B028D980FAA3D1E553389C97CBD /* RCTInspectorDevServerHelper.h in Headers */ = {isa = PBXBuildFile; fileRef = 96FF522E85734C284A19EAC6F444B151 /* RCTInspectorDevServerHelper.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 04B0CD8E8DCD51E6A54EAB4AC3E41AC6 /* JSCExecutorFactory.mm in Sources */ = {isa = PBXBuildFile; fileRef = 1BE24326339EA5D793FFC93396F5A933 /* JSCExecutorFactory.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 04BF68827516098FF4CE40F6D65087E0 /* JSExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = 7E0A11B0DE343DB0606DEDCC142C32AE /* JSExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 04EE13D18B0F6D782FFDE298038D927E /* RCTTrackingAnimatedNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 5F561CFE55AC904721C7055F48E88A06 /* RCTTrackingAnimatedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 04FF0B028D980FAA3D1E553389C97CBD /* RCTInspectorDevServerHelper.h in Headers */ = {isa = PBXBuildFile; fileRef = 49A248D983C45A39C2271CFD250FCC4F /* RCTInspectorDevServerHelper.h */; settings = {ATTRIBUTES = (Project, ); }; }; 050764AE053E95388DBBFB293FDBF2BC /* PicoSpinLock.h in Headers */ = {isa = PBXBuildFile; fileRef = A21FADACE1F2797514A803DA0320BD79 /* PicoSpinLock.h */; settings = {ATTRIBUTES = (Project, ); }; }; 0523D1360C55FFDE017637629B3FCAF9 /* String.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 7E5492EE69D6815A8CC646ED50CC3904 /* String.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 052731026452AD40E65E87DCF5BF37D2 /* UMModuleRegistryProvider.h in Headers */ = {isa = PBXBuildFile; fileRef = 61BC2AAF56B32AC91A977CEB42F66695 /* UMModuleRegistryProvider.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 052731026452AD40E65E87DCF5BF37D2 /* UMModuleRegistryProvider.h in Headers */ = {isa = PBXBuildFile; fileRef = 87A270C2B7CC46E7814AF398A0408F56 /* UMModuleRegistryProvider.h */; settings = {ATTRIBUTES = (Project, ); }; }; 053BA4F3C75D35BCBAA8F8891D611B84 /* animi.h in Headers */ = {isa = PBXBuildFile; fileRef = 12797FC69B985D90312EDCE7ECAB876E /* animi.h */; settings = {ATTRIBUTES = (Project, ); }; }; 055E3CCCC565B32662B62AEB2687DFD6 /* dec_clip_tables.c in Sources */ = {isa = PBXBuildFile; fileRef = B13463CE34BBCB8B266C1D76A2696ADC /* dec_clip_tables.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; 057FDA20D3830D25C8F9230D8460A02D /* ThreadWheelTimekeeper.h in Headers */ = {isa = PBXBuildFile; fileRef = 9147902687EC685DC7A0853698C3F430 /* ThreadWheelTimekeeper.h */; settings = {ATTRIBUTES = (Project, ); }; }; 058A0E6FB778E47AC2ACEED1729900C5 /* enc_mips_dsp_r2.c in Sources */ = {isa = PBXBuildFile; fileRef = B9AC738BFCE6F9FB9C927423AC662D8B /* enc_mips_dsp_r2.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; 05994EDE667F3671AAEA30F159E2DECC /* FirebaseInstallationsInternal.h in Headers */ = {isa = PBXBuildFile; fileRef = A27549C6E0EC15515609E01AFCE7938C /* FirebaseInstallationsInternal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 05A2B9B9324B8490FA58DF43126B9707 /* NSData+EXFileSystem.h in Headers */ = {isa = PBXBuildFile; fileRef = A8AA7514868494473202C83930F07E68 /* NSData+EXFileSystem.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 05A2C829317533C074C228C63D55CDC0 /* ARTRadialGradient.m in Sources */ = {isa = PBXBuildFile; fileRef = 61BE0F021008ED1E6899CEFEB32176A7 /* ARTRadialGradient.m */; }; + 05A2B9B9324B8490FA58DF43126B9707 /* NSData+EXFileSystem.h in Headers */ = {isa = PBXBuildFile; fileRef = A8FEA63B4D5325E053E800E242E9B271 /* NSData+EXFileSystem.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 05A2C829317533C074C228C63D55CDC0 /* ARTRadialGradient.m in Sources */ = {isa = PBXBuildFile; fileRef = 3C684B70EB0AB1F720D07F47EFD1B30A /* ARTRadialGradient.m */; }; 05A88A58C1245A9C537494AB00CBD729 /* Expected.h in Headers */ = {isa = PBXBuildFile; fileRef = 9FE7DEE152750D82905E5832F1204F44 /* Expected.h */; settings = {ATTRIBUTES = (Project, ); }; }; 05B0D839ADEDCA18BCB0342D8850023C /* decode.h in Headers */ = {isa = PBXBuildFile; fileRef = A830A63EB2E8514AC5D3C09FE3CCDCB7 /* decode.h */; settings = {ATTRIBUTES = (Project, ); }; }; 05D67239AA89DCABE66BC206A4A20DDA /* HazptrUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = 1FEEE13E5F6B5E2C02CD4F4BA783D628 /* HazptrUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; 05E51EA514016A3A30F517E11AFB5DE0 /* AsyncTrace.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2B2893702A7AE0EE6CE82C97E8B04B27 /* AsyncTrace.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; 05EEE113DA8195D1A8446E6E0223F87B /* quant.h in Headers */ = {isa = PBXBuildFile; fileRef = 1A966C2CDD7579B225F47BC2239EB02F /* quant.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0621741F7608DA93B0199D74FB0187A0 /* RCTValueAnimatedNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 27CACEA45457F24C054262D1715A08E3 /* RCTValueAnimatedNode.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; - 06290A0DBEBB396363D9CB31FC2FFA27 /* RNFetchBlobReqBuilder.m in Sources */ = {isa = PBXBuildFile; fileRef = 997AB438C329A5D35A6336ED9765FC02 /* RNFetchBlobReqBuilder.m */; }; - 062F8BE5952FAF7F5CF3E6966A337F28 /* RNBootSplash.h in Headers */ = {isa = PBXBuildFile; fileRef = A4B6C3E48C92E521F8502DED35235D2D /* RNBootSplash.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0621741F7608DA93B0199D74FB0187A0 /* RCTValueAnimatedNode.m in Sources */ = {isa = PBXBuildFile; fileRef = B4A71E98BE17523C8EB3E47255062FF9 /* RCTValueAnimatedNode.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + 062F8BE5952FAF7F5CF3E6966A337F28 /* RNBootSplash.h in Headers */ = {isa = PBXBuildFile; fileRef = 51F507B8FC55018207BC94B50E557268 /* RNBootSplash.h */; settings = {ATTRIBUTES = (Project, ); }; }; 0647B334661340B8A9F52EABF062C3EB /* SDWebImageTransition.h in Headers */ = {isa = PBXBuildFile; fileRef = 029CD850ACBBD3E4731687B582DC3129 /* SDWebImageTransition.h */; settings = {ATTRIBUTES = (Project, ); }; }; 06514FD84CC576BCCE44F89EE61A7F68 /* GCDAsyncSocket.h in Headers */ = {isa = PBXBuildFile; fileRef = 0ADD6EEC74318B8FC73905C199941380 /* GCDAsyncSocket.h */; settings = {ATTRIBUTES = (Project, ); }; }; 0671A194118212DB483A5FD27359EB7F /* FIRCLSFeatures.h in Headers */ = {isa = PBXBuildFile; fileRef = 3D7EF236CE7D5CE2A1C72FF683F2061C /* FIRCLSFeatures.h */; settings = {ATTRIBUTES = (Project, ); }; }; 068627D6351492A400D81DA04B4AAEE1 /* histogram_enc.h in Headers */ = {isa = PBXBuildFile; fileRef = EA7240003015AD6D0B4C11205B6C845F /* histogram_enc.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 068DE1D20291759B65D1F6BEDA58AF9D /* RCTLinkingManager.h in Headers */ = {isa = PBXBuildFile; fileRef = D7F643DA9519CE1ABCB28C7304A02A6A /* RCTLinkingManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 068DE1D20291759B65D1F6BEDA58AF9D /* RCTLinkingManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 016F354F6F47AD212F113D6388C9F138 /* RCTLinkingManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; 06965620DA927215DD8A8F4C9F95EA1F /* Sched.h in Headers */ = {isa = PBXBuildFile; fileRef = 4A82CDB88107436DD2D192B9F33EB9FB /* Sched.h */; settings = {ATTRIBUTES = (Project, ); }; }; 06A772C7BFB80B6E55DF65040D74E8A4 /* FIRStackFrame.m in Sources */ = {isa = PBXBuildFile; fileRef = 1DDBFA43E5FEA69E2EE892A2AE4B33AF /* FIRStackFrame.m */; }; 06C78FC8169996E806BE536269C185CD /* yuv_sse41.c in Sources */ = {isa = PBXBuildFile; fileRef = 1937A7452A3C0AC9EDC3543CCD8F6484 /* yuv_sse41.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 06DF5876917022BB1943DA78C98F5C18 /* ARTTextFrame.h in Headers */ = {isa = PBXBuildFile; fileRef = 684CCB669022FF86D7717FF48A76B382 /* ARTTextFrame.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 06E27BA59BD0058F5FF158F405A1ACCE /* de.lproj in Resources */ = {isa = PBXBuildFile; fileRef = 42817937F1E875A7A8871155D62D0947 /* de.lproj */; }; + 06DF5876917022BB1943DA78C98F5C18 /* ARTTextFrame.h in Headers */ = {isa = PBXBuildFile; fileRef = 83A789A52783C1479959F0F145EA704F /* ARTTextFrame.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 06E27BA59BD0058F5FF158F405A1ACCE /* de.lproj in Resources */ = {isa = PBXBuildFile; fileRef = FCA5668178EC3E3E47664DECB208150F /* de.lproj */; }; 0720A634389F76C008A98F1F46D26EF9 /* openssl_opensslconf.h in Headers */ = {isa = PBXBuildFile; fileRef = FF958E28492C2570BC0408228DC7BC00 /* openssl_opensslconf.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 07343EFDFF914FD150E59AEAE87BE5E1 /* BSG_KSCrashReportFields.h in Headers */ = {isa = PBXBuildFile; fileRef = 75BA41CB0845024FD2D6158FD1366BAD /* BSG_KSCrashReportFields.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 07343EFDFF914FD150E59AEAE87BE5E1 /* BSG_KSCrashReportFields.h in Headers */ = {isa = PBXBuildFile; fileRef = 6438611008682BE9B87E901625A6CB57 /* BSG_KSCrashReportFields.h */; settings = {ATTRIBUTES = (Project, ); }; }; 074CC255A80214F8215DBF480553FE83 /* RSocketParameters.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2284E5DA42D24A8ABC297F049439F808 /* RSocketParameters.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0 -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; 075E4EEBCB43B2419651CE229A433CF2 /* FileUtil.h in Headers */ = {isa = PBXBuildFile; fileRef = 5AC8611EA20C4E9E9125A4EB162777B5 /* FileUtil.h */; settings = {ATTRIBUTES = (Project, ); }; }; 075F9805B68154AF1104DF613BE6F9D9 /* SDImageCachesManagerOperation.h in Headers */ = {isa = PBXBuildFile; fileRef = A4062230649EB3CAC5B2271CDFEFD865 /* SDImageCachesManagerOperation.h */; settings = {ATTRIBUTES = (Project, ); }; }; @@ -319,61 +316,61 @@ 07982ED2F3B097036FF5459A678C428E /* FormatArg.h in Headers */ = {isa = PBXBuildFile; fileRef = 8C41ED7C5AC74BCF1865059403971088 /* FormatArg.h */; settings = {ATTRIBUTES = (Project, ); }; }; 07B051735A7659BBD10772A28B34D65D /* bignum-dtoa.cc in Sources */ = {isa = PBXBuildFile; fileRef = FBEEEEE744AD9DCD6162B1C52F82FDB2 /* bignum-dtoa.cc */; settings = {COMPILER_FLAGS = "-Wno-unreachable-code"; }; }; 08140CF5CCD3BFD03E8A3EB7AF95ED56 /* FlipperCppBridgingResponder.mm in Sources */ = {isa = PBXBuildFile; fileRef = 18A13DCC135781C94C0CF101CD05E3F3 /* FlipperCppBridgingResponder.mm */; settings = {COMPILER_FLAGS = "-DDEBUG=1 -DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0"; }; }; - 081560A0159D441DC9C8AF7CAA6B970E /* ARTGroup.m in Sources */ = {isa = PBXBuildFile; fileRef = 9003E57E05EE3384CF26A33747B1CED5 /* ARTGroup.m */; }; + 081560A0159D441DC9C8AF7CAA6B970E /* ARTGroup.m in Sources */ = {isa = PBXBuildFile; fileRef = 7355B7E3D3DF2F556D0D164F096FBAE7 /* ARTGroup.m */; }; 081E6B601B49FE4F98631AE9F6594C9F /* dec_mips32.c in Sources */ = {isa = PBXBuildFile; fileRef = FEDD1BC76F5318F87A8A9A5E3782606E /* dec_mips32.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 081FADB2FE7BDAA1AFBBC6E3E85F830D /* RCTSliderManager.h in Headers */ = {isa = PBXBuildFile; fileRef = E045995218388251BBAB8A673DAC95B5 /* RCTSliderManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 08219D32E74C8630B7462E545B5023E9 /* RNPushKitEventListener.h in Headers */ = {isa = PBXBuildFile; fileRef = 54FF2D11BA429E0F948085B94423EDB5 /* RNPushKitEventListener.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 081FADB2FE7BDAA1AFBBC6E3E85F830D /* RCTSliderManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 9D9426143F78D6A00BBA6C6748C66DDB /* RCTSliderManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 08219D32E74C8630B7462E545B5023E9 /* RNPushKitEventListener.h in Headers */ = {isa = PBXBuildFile; fileRef = 7489B16EF5CAA94B955C1B567E9D6648 /* RNPushKitEventListener.h */; settings = {ATTRIBUTES = (Project, ); }; }; 082EEA3652F0C7F65F3D9ADC676C1853 /* AtomicIntrusiveLinkedList.h in Headers */ = {isa = PBXBuildFile; fileRef = EADD707806ED13D6903BA0F5D24DBCD2 /* AtomicIntrusiveLinkedList.h */; settings = {ATTRIBUTES = (Project, ); }; }; 0836D50C23B6C79A014622260B9EFA1C /* GDTCORTransport_Private.h in Headers */ = {isa = PBXBuildFile; fileRef = AA3DD2346D2A8EC698CFE0B7382E1E3C /* GDTCORTransport_Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; 083CA8F0059844F316B348C516DC0312 /* SDWebImageCacheSerializer.m in Sources */ = {isa = PBXBuildFile; fileRef = 267CB5D5CC6EEB55D13D01B7E6864A1B /* SDWebImageCacheSerializer.m */; }; - 0858C5DD7E4F683BFFDC33673FE75258 /* React-CoreModules-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 42947D7AAB454BC900125EFBFE4C2750 /* React-CoreModules-dummy.m */; }; + 0858C5DD7E4F683BFFDC33673FE75258 /* React-CoreModules-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 51096531E43B6447C0D9B1D945A4D005 /* React-CoreModules-dummy.m */; }; 088071E10BC7E0F7D2AEC4C95E916D41 /* CoreCachedSharedPtr.h in Headers */ = {isa = PBXBuildFile; fileRef = B8F67AB790E6701A850EF3960C5E1CDD /* CoreCachedSharedPtr.h */; settings = {ATTRIBUTES = (Project, ); }; }; 08910E25B56F73BA1E7C9B35051828EF /* F14Table.cpp in Sources */ = {isa = PBXBuildFile; fileRef = DCF3267DF92F2D0C054BF37F2705566C /* F14Table.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; 0894285A268123E4663539350F7BECCE /* cached-powers.h in Headers */ = {isa = PBXBuildFile; fileRef = 722EBAC60CB81A25403068B5AA96488F /* cached-powers.h */; settings = {ATTRIBUTES = (Project, ); }; }; 08B0382FA655BC8A478519E647F57BC9 /* FIRCoreDiagnosticsInterop.h in Headers */ = {isa = PBXBuildFile; fileRef = B6B97EA2F8977F3CEAF07603545096EF /* FIRCoreDiagnosticsInterop.h */; settings = {ATTRIBUTES = (Project, ); }; }; 0926794C451A43301E518150BBCFF89C /* MPMCPipeline.h in Headers */ = {isa = PBXBuildFile; fileRef = 2A8BFAABE911D0257D142DF57EFBB406 /* MPMCPipeline.h */; settings = {ATTRIBUTES = (Project, ); }; }; 092C950C1019A899132F1EC1C1973824 /* GDTCORConsoleLogger.h in Headers */ = {isa = PBXBuildFile; fileRef = EB0CC6987EC71C4BA637274C9ECABE2A /* GDTCORConsoleLogger.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 09393C7EFB15B6830B1E24008140B06E /* es.lproj in Resources */ = {isa = PBXBuildFile; fileRef = BDF605201112541ED81426885684670B /* es.lproj */; }; - 095F243E283FACA2F1B0A12BC5B75D11 /* contents.xcworkspacedata in Sources */ = {isa = PBXBuildFile; fileRef = 6849721AB8101FAE453B68A42AB5F27C /* contents.xcworkspacedata */; }; - 09649C563EEF42E21B70090C39834199 /* RCTDecayAnimation.h in Headers */ = {isa = PBXBuildFile; fileRef = 8586A69714C338D48AB4CA7B190F3900 /* RCTDecayAnimation.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 09393C7EFB15B6830B1E24008140B06E /* es.lproj in Resources */ = {isa = PBXBuildFile; fileRef = 60713CD73673CF9D2884A92187EC3409 /* es.lproj */; }; + 095F243E283FACA2F1B0A12BC5B75D11 /* contents.xcworkspacedata in Sources */ = {isa = PBXBuildFile; fileRef = 2FEE374725A51DAC67D32BEDE90A543B /* contents.xcworkspacedata */; }; + 09649C563EEF42E21B70090C39834199 /* RCTDecayAnimation.h in Headers */ = {isa = PBXBuildFile; fileRef = BD60E6D8B57D52B2ECCCFCFBE32C456F /* RCTDecayAnimation.h */; settings = {ATTRIBUTES = (Project, ); }; }; 09BC7875E6D801E8C3A5D78A944B7127 /* neon.h in Headers */ = {isa = PBXBuildFile; fileRef = 8FDD40201F0C41EE6AEFC14203F65DE8 /* neon.h */; settings = {ATTRIBUTES = (Project, ); }; }; 09D23E33AA77BDB3310ED71C6842CE9D /* InlineFunctionRef.h in Headers */ = {isa = PBXBuildFile; fileRef = BBF4D481885ECC4328D5D6CEB1D010E6 /* InlineFunctionRef.h */; settings = {ATTRIBUTES = (Project, ); }; }; 09EE5698E226034FE9300AE9751FB97B /* MallctlHelper.h in Headers */ = {isa = PBXBuildFile; fileRef = 4FFC77F4A5A209D32104BFFA64ECA5D1 /* MallctlHelper.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 09F8EE9A887212FC0B2154E979B8E097 /* UMAppDelegateWrapper.m in Sources */ = {isa = PBXBuildFile; fileRef = C8FB16ABFD15DF4BFC613EC66108EADA /* UMAppDelegateWrapper.m */; }; + 09F8EE9A887212FC0B2154E979B8E097 /* UMAppDelegateWrapper.m in Sources */ = {isa = PBXBuildFile; fileRef = 01DD8651408BF0EF21DCC30536D473C6 /* UMAppDelegateWrapper.m */; }; 0A1085D42174CDFD3E5A123DA9241DF7 /* Barrier.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 52B0111728A81A7F015E84FA28C08909 /* Barrier.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; 0A109664C716840070D6862DC4ED5845 /* glog-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 12CDF115C8E984969B1745E1B99C5D5E /* glog-dummy.m */; }; - 0A116EBE1D4A4E64BD686A7187757AAE /* ARTTextManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 49CB22390E5D62971366462E93DB7C3B /* ARTTextManager.m */; }; + 0A116EBE1D4A4E64BD686A7187757AAE /* ARTTextManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 1A6DB46779E29DB2464654BA3618F2D8 /* ARTTextManager.m */; }; 0A2BB595766F80BB96DA17C3497BF549 /* FramedDuplexConnection.h in Headers */ = {isa = PBXBuildFile; fileRef = 04D54CD2B7E9D3D2968B6808528891D0 /* FramedDuplexConnection.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0A35E2DC84A2D8C042981E057024C85C /* RCTSurfaceRootShadowViewDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = A66E40BD8338E6F6E155FE47C58E1277 /* RCTSurfaceRootShadowViewDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0A35E2DC84A2D8C042981E057024C85C /* RCTSurfaceRootShadowViewDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = 11339A94BDAF9D0A20F50A3489FE5BCB /* RCTSurfaceRootShadowViewDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; }; 0A454CAB13E4FEC1DF54BE5ABE8D173A /* CodedInputData.h in Headers */ = {isa = PBXBuildFile; fileRef = 8982A7DC531ADA3AEE86AC93C775649D /* CodedInputData.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0A6BAC8A932A7A0AE62DDBCCCA70702D /* BugsnagSessionTrackingPayload.m in Sources */ = {isa = PBXBuildFile; fileRef = CCFC773E624BE63830644BBD94C2C08F /* BugsnagSessionTrackingPayload.m */; }; - 0A7FF47E30F61AFB6AD9CA895EE1A4F9 /* RNDateTimePickerManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 83389C6F43CBDE1A2A950EF6219A46C8 /* RNDateTimePickerManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0A8B587E3A95FE20D3CFC98F8FFCAB03 /* RCTScrollViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = CBE6C2B5713C7453835DB639E7FB9C83 /* RCTScrollViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0A6BAC8A932A7A0AE62DDBCCCA70702D /* BugsnagSessionTrackingPayload.m in Sources */ = {isa = PBXBuildFile; fileRef = 4F8B93F03BF0E888249779E7300BEBBB /* BugsnagSessionTrackingPayload.m */; }; + 0A7FF47E30F61AFB6AD9CA895EE1A4F9 /* RNDateTimePickerManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 3FEDBA1E9385ABCDE5AEFCA1E59ECAEB /* RNDateTimePickerManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0A8B587E3A95FE20D3CFC98F8FFCAB03 /* RCTScrollViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 561F8C652888B481FAA6AB4EE4FD77CC /* RCTScrollViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; 0A92A4EB11AC3149D6C51E87E22A1A5B /* cost_mips_dsp_r2.c in Sources */ = {isa = PBXBuildFile; fileRef = E97F53C6598883B1C6699D8D00924794 /* cost_mips_dsp_r2.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; 0AAB1B87F449356F2FFC7DA7EE5D381F /* da-DK.lproj in Resources */ = {isa = PBXBuildFile; fileRef = 22543CFC8553BDC4AC26E293C01A5569 /* da-DK.lproj */; }; - 0ACF9654E330F3E4FF25D38913B61A9F /* ARTPattern.h in Headers */ = {isa = PBXBuildFile; fileRef = A262C6A417653B56D513C7CBED8DC4A9 /* ARTPattern.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0ACF9654E330F3E4FF25D38913B61A9F /* ARTPattern.h in Headers */ = {isa = PBXBuildFile; fileRef = 11BBD474529D9A2A7A5EBE5B6E9249F0 /* ARTPattern.h */; settings = {ATTRIBUTES = (Project, ); }; }; 0AD1DA52CE1FEB97B05BA9D8CB63C1B6 /* GDTCORClock.m in Sources */ = {isa = PBXBuildFile; fileRef = E904FB44E0F60263FFEEF3F0CAABEB07 /* GDTCORClock.m */; }; 0AE130EB96D4454903ADE0BA1969A6CF /* signalhandler.cc in Sources */ = {isa = PBXBuildFile; fileRef = 797B76318FBB9F8DCF996160D4C79A6C /* signalhandler.cc */; settings = {COMPILER_FLAGS = "-Wno-shorten-64-to-32"; }; }; 0B28BAE0A1B8550D2DE2D68527158680 /* FIRCLSCrashedMarkerFile.c in Sources */ = {isa = PBXBuildFile; fileRef = 3A3D1A76F4A5CF45A49B858F6A0DF324 /* FIRCLSCrashedMarkerFile.c */; }; 0B2CFC4DD49E848F4351E1AD5EFAFABB /* DynamicParser.h in Headers */ = {isa = PBXBuildFile; fileRef = 0BA876504656FABC90F13B3308000FC0 /* DynamicParser.h */; settings = {ATTRIBUTES = (Project, ); }; }; 0B3B883A30022727522781E6FFE17758 /* fi.lproj in Resources */ = {isa = PBXBuildFile; fileRef = 8EC24129B4FA709297C0376D4F3DB49C /* fi.lproj */; }; - 0B61BABF587EBD0E31C3904A9C82ED22 /* RCTDevLoadingViewSetEnabled.m in Sources */ = {isa = PBXBuildFile; fileRef = 2188A85B4A309F414FC01E664E37F683 /* RCTDevLoadingViewSetEnabled.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 0B61BABF587EBD0E31C3904A9C82ED22 /* RCTDevLoadingViewSetEnabled.m in Sources */ = {isa = PBXBuildFile; fileRef = 38DE84983C96F3CEF7C835E037BA8B09 /* RCTDevLoadingViewSetEnabled.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; 0B761B070D881FC68C5737332C9D8036 /* HazptrHolder.h in Headers */ = {isa = PBXBuildFile; fileRef = 696159D6CC4669CD010CD022345B21F8 /* HazptrHolder.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0B7681A7555B94ACBB78D9E0D0162039 /* BSG_KSCrashSentry_MachException.c in Sources */ = {isa = PBXBuildFile; fileRef = 79910263DF25CA8B511ED96F6446BCF6 /* BSG_KSCrashSentry_MachException.c */; }; + 0B7681A7555B94ACBB78D9E0D0162039 /* BSG_KSCrashSentry_MachException.c in Sources */ = {isa = PBXBuildFile; fileRef = 0B46F02D35C6E887BE14C61F272C0792 /* BSG_KSCrashSentry_MachException.c */; }; 0B7C39C00D2B040C27544584D750D5AD /* FLEXNetworkTransaction.m in Sources */ = {isa = PBXBuildFile; fileRef = DE8D6BF68006D1D9BE7E063B4872D84B /* FLEXNetworkTransaction.m */; settings = {COMPILER_FLAGS = "-DDEBUG=1 -DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0"; }; }; 0B9E2306C3BE47E02155DE8E960D6B32 /* GlobalShutdownSocketSet.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 50E99880D429EB1D95CA9C9481A7723A /* GlobalShutdownSocketSet.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - 0BA06FDA567BBD9F7B5CB941588C52BC /* RCTImageLoaderProtocol.h in Headers */ = {isa = PBXBuildFile; fileRef = 2C212828F45BD3FAD79DE375E3F12874 /* RCTImageLoaderProtocol.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0BA06FDA567BBD9F7B5CB941588C52BC /* RCTImageLoaderProtocol.h in Headers */ = {isa = PBXBuildFile; fileRef = 2F97963337E937189EA9C8BF0BD95C63 /* RCTImageLoaderProtocol.h */; settings = {ATTRIBUTES = (Project, ); }; }; 0BA4F97CB6DECFE49F6A541777FF8519 /* FIRCLSMachException.h in Headers */ = {isa = PBXBuildFile; fileRef = 774A3866A31D76FF0046D1135E862EED /* FIRCLSMachException.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0C2C18E15224239E99EFA26C3E1489F5 /* EXAppleAuthentication.m in Sources */ = {isa = PBXBuildFile; fileRef = 24B943E24D1352DDB5ADA65A72D201B9 /* EXAppleAuthentication.m */; }; + 0C2C18E15224239E99EFA26C3E1489F5 /* EXAppleAuthentication.m in Sources */ = {isa = PBXBuildFile; fileRef = AF530C3C866EBAA8BF35D40DC22A0A0E /* EXAppleAuthentication.m */; }; 0C422C71ADB99EA5FF5E5CA56F042C62 /* MMKV.h in Headers */ = {isa = PBXBuildFile; fileRef = D5DE6DCB5CB77FF2318201E0DF4BA34F /* MMKV.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0C551985E8686CC886A539921C3EE668 /* RootView.h in Headers */ = {isa = PBXBuildFile; fileRef = 709A9F43290D17C7D62D477D719B2C35 /* RootView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0C551985E8686CC886A539921C3EE668 /* RootView.h in Headers */ = {isa = PBXBuildFile; fileRef = BD8981BD078FBDA3508665CC82823418 /* RootView.h */; settings = {ATTRIBUTES = (Project, ); }; }; 0C5F5CE1AA1ADA700992ACE372336053 /* GDTCORUploadCoordinator.h in Headers */ = {isa = PBXBuildFile; fileRef = EC658CB13F117CB132ED545C56448294 /* GDTCORUploadCoordinator.h */; settings = {ATTRIBUTES = (Project, ); }; }; 0CC9A6A17727216556B0AEF0E6F9FD71 /* FIRCrashlytics.h in Headers */ = {isa = PBXBuildFile; fileRef = 206620D07945C79E7CC4286575682243 /* FIRCrashlytics.h */; settings = {ATTRIBUTES = (Project, ); }; }; 0CF17F9266055A1FD1CFF6F2C328C2AE /* Uri-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = C3338AD03FDE32FDBEF73D073DD11DEF /* Uri-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; 0D3C93CF0F9F2583678EB02BE49EB077 /* SDImageCoderHelper.m in Sources */ = {isa = PBXBuildFile; fileRef = F410FF0BB5E0374104F6E01F589707E1 /* SDImageCoderHelper.m */; }; - 0D58E16C6814991908886D21A86477D3 /* READebugNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 81766F98093BA351E98CB69984609C69 /* READebugNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0D58E16C6814991908886D21A86477D3 /* READebugNode.h in Headers */ = {isa = PBXBuildFile; fileRef = F7C026615F683DD5D47F4F6AEDE5710E /* READebugNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; 0D73DDAB5065DADE674ED5E85CC65AC1 /* GroupVarint.h in Headers */ = {isa = PBXBuildFile; fileRef = B08F408CCA7E09F164029244AF013E1F /* GroupVarint.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0D78BA278756E2D822E89C836AC3A7E2 /* RNFBSharedUtils.m in Sources */ = {isa = PBXBuildFile; fileRef = 2CE8F089F68FD8BFECA4B8721154937C /* RNFBSharedUtils.m */; }; + 0D78BA278756E2D822E89C836AC3A7E2 /* RNFBSharedUtils.m in Sources */ = {isa = PBXBuildFile; fileRef = 1E343992E1FAC98C935CAFF46CCCCF32 /* RNFBSharedUtils.m */; }; 0DC96FDEBC06F1C8DCE2EC4A1B158A2D /* Arena.h in Headers */ = {isa = PBXBuildFile; fileRef = 465882AA71039061DF7EAF94045B05B5 /* Arena.h */; settings = {ATTRIBUTES = (Project, ); }; }; 0DCD335B1EC7E097FA1E6D89B16A4A24 /* double-conversion.cc in Sources */ = {isa = PBXBuildFile; fileRef = E685501A18B691A78AE63802778A8DC4 /* double-conversion.cc */; settings = {COMPILER_FLAGS = "-Wno-unreachable-code"; }; }; 0DDEA131FBC532835F8E259FD7654AD2 /* en.lproj in Resources */ = {isa = PBXBuildFile; fileRef = A3E8E3FFC84CC4831A5883942616F125 /* en.lproj */; }; @@ -381,10 +378,10 @@ 0E0611504CD5D881E5FCB9B5E278D6E7 /* MicroLock.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 37EC3FDE845C5437D57F971031211C33 /* MicroLock.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; 0E103FDA6751439951C099EB863C4E9C /* Preprocessor.h in Headers */ = {isa = PBXBuildFile; fileRef = 5765AAB98C6396F70703386F034304A8 /* Preprocessor.h */; settings = {ATTRIBUTES = (Project, ); }; }; 0E1B3276561F7EB341FA907EB1A86F04 /* upsampling.c in Sources */ = {isa = PBXBuildFile; fileRef = A64B9EBCFC5B834095183ABF0C4B1D6E /* upsampling.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 0E1E58EAA62AD31323C41A2EE1F285A6 /* RNNotificationUtils.m in Sources */ = {isa = PBXBuildFile; fileRef = CB1C48C95BE211F92168DA1DDF4298C7 /* RNNotificationUtils.m */; }; + 0E1E58EAA62AD31323C41A2EE1F285A6 /* RNNotificationUtils.m in Sources */ = {isa = PBXBuildFile; fileRef = E89C421F1F61AF286055F0A870203BEF /* RNNotificationUtils.m */; }; 0E2055CD03A9F6FE1EF61816FD390A1B /* AsyncUDPSocket.h in Headers */ = {isa = PBXBuildFile; fileRef = 76A6D710792A77CDAA54EC7C75C1668B /* AsyncUDPSocket.h */; settings = {ATTRIBUTES = (Project, ); }; }; 0E218A685D54E67E63B15EE57AF9B96C /* TOCropViewControllerTransitioning.h in Headers */ = {isa = PBXBuildFile; fileRef = A5F9643D2F853CD41A855F0FDCB49280 /* TOCropViewControllerTransitioning.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0E2C683FBE5E9C1901110775A04916CB /* RCTDisplayLink.h in Headers */ = {isa = PBXBuildFile; fileRef = 901F6C3CC60644CE3995BF7CFBAD085E /* RCTDisplayLink.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0E2C683FBE5E9C1901110775A04916CB /* RCTDisplayLink.h in Headers */ = {isa = PBXBuildFile; fileRef = 96FC6DC0FB470B4764455E508828D276 /* RCTDisplayLink.h */; settings = {ATTRIBUTES = (Project, ); }; }; 0E44162EAE5447439FEBD9619932914D /* FIRInstallationsHTTPError.h in Headers */ = {isa = PBXBuildFile; fileRef = AB5B0DC5A3DB374E8AECD4DEE739D781 /* FIRInstallationsHTTPError.h */; settings = {ATTRIBUTES = (Project, ); }; }; 0E490E89EDF3A16691A550F3B3D8577C /* RSocketParameters.h in Headers */ = {isa = PBXBuildFile; fileRef = 74B2D0E582086F68A8B110AE777A2DE5 /* RSocketParameters.h */; settings = {ATTRIBUTES = (Project, ); }; }; 0E5B539F7CFE7C18605CA862F87C9FB2 /* AtomicHashArray.h in Headers */ = {isa = PBXBuildFile; fileRef = 97DF756AD67125EB16F06106BF5E7483 /* AtomicHashArray.h */; settings = {ATTRIBUTES = (Project, ); }; }; @@ -392,81 +389,79 @@ 0EA0900779E7C8425C830DB6CAAD784A /* TOActivityCroppedImageProvider.h in Headers */ = {isa = PBXBuildFile; fileRef = 94FC7CB00AEB28FEBFD5D8AFC620F9F0 /* TOActivityCroppedImageProvider.h */; settings = {ATTRIBUTES = (Project, ); }; }; 0EA52076C94A2F4EBDAE61FF2D24E451 /* FIRAppAssociationRegistration.h in Headers */ = {isa = PBXBuildFile; fileRef = 5E8F9DFC3E9F233FD5B82DA468FFE387 /* FIRAppAssociationRegistration.h */; settings = {ATTRIBUTES = (Project, ); }; }; 0EAE708844B871B5D9FCE1F1F5243BDF /* FIRCLSFCRAnalytics.h in Headers */ = {isa = PBXBuildFile; fileRef = BB69159A9E7534B5DC700DC21108F8F8 /* FIRCLSFCRAnalytics.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0EFCA31C89CB2815C262F61063472180 /* QBAlbumsViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 97111BCA615D199C20E6289EC41F916F /* QBAlbumsViewController.m */; }; + 0EFCA31C89CB2815C262F61063472180 /* QBAlbumsViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 5A28B748E256BC23CEBC3D8B3C85F8A7 /* QBAlbumsViewController.m */; }; 0F04757773EB94AFA230379602288218 /* File.h in Headers */ = {isa = PBXBuildFile; fileRef = 0EE831D13D49F2CD1A4D84E28E855FCA /* File.h */; settings = {ATTRIBUTES = (Project, ); }; }; 0F0C10FF1C8CA51216269475E4076D75 /* Framer.h in Headers */ = {isa = PBXBuildFile; fileRef = B2DD73F23E8E47F3810615C46B94DF58 /* Framer.h */; settings = {ATTRIBUTES = (Project, ); }; }; 0F112286F11B894F72C66676A5BAC325 /* SDWebImageWebPCoder-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = AC7FC17AB389D472D0513E74ED376054 /* SDWebImageWebPCoder-dummy.m */; }; 0F2C29D27A4A81991C787404478AF099 /* UIImage+WebP.h in Headers */ = {isa = PBXBuildFile; fileRef = B901F19FEF43BC84CE222EC37A41FA3E /* UIImage+WebP.h */; settings = {ATTRIBUTES = (Project, ); }; }; 0F3F32D5615E2F8623E48BB225FD09D8 /* StreamResponder.cpp in Sources */ = {isa = PBXBuildFile; fileRef = E05FCFBEC97296860E5891BC985B8BE9 /* StreamResponder.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0 -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; 0F5BC7FB75842C4DF7D6CAA2276D412C /* openssl_md5_locl.h in Headers */ = {isa = PBXBuildFile; fileRef = 204BF9F230931D6B8A99E4488DD5A2C0 /* openssl_md5_locl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0F6293E2C6D387AEB7CA7FB4110631C6 /* RCTInputAccessoryViewContent.h in Headers */ = {isa = PBXBuildFile; fileRef = 02D1C5E816420BA606B3A5F7CAB19B28 /* RCTInputAccessoryViewContent.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0F6293E2C6D387AEB7CA7FB4110631C6 /* RCTInputAccessoryViewContent.h in Headers */ = {isa = PBXBuildFile; fileRef = 362C0F2F708B1CA634761D478284C74B /* RCTInputAccessoryViewContent.h */; settings = {ATTRIBUTES = (Project, ); }; }; 0F77D37E6759126835EF8EBD3D566FB6 /* FIRDependency.m in Sources */ = {isa = PBXBuildFile; fileRef = 26CA0968F6DB5D4F3978C98664823F04 /* FIRDependency.m */; }; 0F96B9773F1A3A400AF5F4BE07F633F8 /* ms.lproj in Resources */ = {isa = PBXBuildFile; fileRef = 9A405F82D82FA8A50DE20C1F529C0E82 /* ms.lproj */; }; 0F9C7819344334F86A89420E15C953C6 /* ThreadPoolExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = 5262A96869073E1B25783F9E6FCE1685 /* ThreadPoolExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0FA49BA8A92058A96F5D15313493FB59 /* RCTSinglelineTextInputView.h in Headers */ = {isa = PBXBuildFile; fileRef = FF5849FF5BEEC0D287164A9684F89B35 /* RCTSinglelineTextInputView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0FA49BA8A92058A96F5D15313493FB59 /* RCTSinglelineTextInputView.h in Headers */ = {isa = PBXBuildFile; fileRef = 290849471BE6ACFDA1FF76063D549969 /* RCTSinglelineTextInputView.h */; settings = {ATTRIBUTES = (Project, ); }; }; 0FB00882D8BB26D52DB32A3B8F1C4761 /* AtomicRef.h in Headers */ = {isa = PBXBuildFile; fileRef = 0CB2B3CA01250FB7926FCCAE2B028D75 /* AtomicRef.h */; settings = {ATTRIBUTES = (Project, ); }; }; 0FD0BF71F29CDFAC3DBE15624237654C /* dynamic.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 4AB5FC4247F0BB39E819B3CA773180AA /* dynamic.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - 0FDDB9156FB0D0097B471318449E417D /* RNPushKitEventHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 3539ED59EB09425783D209F803C06F29 /* RNPushKitEventHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0FDDB9156FB0D0097B471318449E417D /* RNPushKitEventHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = F9CD60B851F051B0A60BEE9A7C62222C /* RNPushKitEventHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; 0FE20EBF34F908C0A8BAEE151FE31368 /* FIRCLSOnboardingOperation.m in Sources */ = {isa = PBXBuildFile; fileRef = 3CBC2D81BD34067AA7ACBEEEF55C8EB6 /* FIRCLSOnboardingOperation.m */; }; 0FF737393D13C998B2E7B85E02167777 /* SSLContext.h in Headers */ = {isa = PBXBuildFile; fileRef = B38E379A16354B1527B0C98E5DB7B2E3 /* SSLContext.h */; settings = {ATTRIBUTES = (Project, ); }; }; 10483AA4D71ADE88023480FB5094E267 /* Subprocess.h in Headers */ = {isa = PBXBuildFile; fileRef = A52DED6EABDCA6B67A0AC1036133D298 /* Subprocess.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 108E5385C09DFF34EC8FE4F73C4662F4 /* RCTConvert+Transform.h in Headers */ = {isa = PBXBuildFile; fileRef = 2B7D76FB8E7D5C448AAF50B694A3A684 /* RCTConvert+Transform.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 10BA82C55A2B1DEC4B2ABBA14C5DF73D /* RCTDecayAnimation.m in Sources */ = {isa = PBXBuildFile; fileRef = B257747C283EC696C618A4A71FF61E13 /* RCTDecayAnimation.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + 108E5385C09DFF34EC8FE4F73C4662F4 /* RCTConvert+Transform.h in Headers */ = {isa = PBXBuildFile; fileRef = 0A584D274903A564E120260FBAEC163F /* RCTConvert+Transform.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 10BA82C55A2B1DEC4B2ABBA14C5DF73D /* RCTDecayAnimation.m in Sources */ = {isa = PBXBuildFile; fileRef = 4DCCCBFC081BF5B4C91152F758174B31 /* RCTDecayAnimation.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; 10C1021B42BE6200A4E324C3539F9702 /* RSocketRequester.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 6656F58967C010370695EDFC5C939AFA /* RSocketRequester.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0 -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - 10CE4E6061819094F64E040163430758 /* React-jsinspector-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = D4519BC03FAB489D86D0F7FE4A422662 /* React-jsinspector-dummy.m */; }; - 10D68B02FDF05C99237E067F9918509D /* RNFetchBlobRequest.h in Headers */ = {isa = PBXBuildFile; fileRef = B5F6ABDB85F84E535AA937C74C5DE51C /* RNFetchBlobRequest.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 10D946CD688B87AE48421FAFE3FE8310 /* RCTUIManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 21AD3D8C3CE74761E6C014B0471120B6 /* RCTUIManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 10CE4E6061819094F64E040163430758 /* React-jsinspector-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 472C79CEAE9B20FA4753D176E4E34C02 /* React-jsinspector-dummy.m */; }; + 10D946CD688B87AE48421FAFE3FE8310 /* RCTUIManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 677B492ED82EA3A95B74597A9BEFD09C /* RCTUIManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; 10F42CB440BAE106EBDDC8B9823FA2FF /* FIRCLSApplication.h in Headers */ = {isa = PBXBuildFile; fileRef = FD92AE5268A7E9BFFCD0B589DA132519 /* FIRCLSApplication.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 110686C3B9BFABED7EF510599B8F4BA4 /* RCTKeyCommandConstants.h in Headers */ = {isa = PBXBuildFile; fileRef = 6312A8D11BABD3D9A25AE1BA901AAC3E /* RCTKeyCommandConstants.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 11071A0B5E380F5B7F2E010327B3815F /* Yoga-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 11A363990FC741E2B320C14C3DA11CA7 /* Yoga-dummy.m */; }; + 110686C3B9BFABED7EF510599B8F4BA4 /* RCTKeyCommandConstants.h in Headers */ = {isa = PBXBuildFile; fileRef = C4E8BE743FAB019787F786D6B56B7975 /* RCTKeyCommandConstants.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 11071A0B5E380F5B7F2E010327B3815F /* Yoga-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 7A329C3F15FB7A0AF00A8CE59638B9DD /* Yoga-dummy.m */; }; 110DB0771E91F52B6FD3EAD5AF30123D /* RSocketStateMachine.h in Headers */ = {isa = PBXBuildFile; fileRef = 2C9DB9B33169804F44FB8B9867315459 /* RSocketStateMachine.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 111D765C73417F5F3D9DB4A549BF16B7 /* EXLocalAuthentication.h in Headers */ = {isa = PBXBuildFile; fileRef = A4ABC77A958C97FA418FE3A22CDD6578 /* EXLocalAuthentication.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 114F09E11FF5AAD51F6A4A68923DEDD8 /* RCTTypedModuleConstants.h in Headers */ = {isa = PBXBuildFile; fileRef = 5E61BC63F94EA8B1B56C3F71F0DF3932 /* RCTTypedModuleConstants.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 11527F4C8E41DCBE88F35CD9A1A27B89 /* RCTPicker.h in Headers */ = {isa = PBXBuildFile; fileRef = 5A4FE053B78720A4028DA213C773CC15 /* RCTPicker.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 116CE378A686BD900FC7676F4F481AEF /* BSG_RFC3339DateTool.m in Sources */ = {isa = PBXBuildFile; fileRef = 31DEE730FE333EEBD7688AF684C1DB65 /* BSG_RFC3339DateTool.m */; }; + 111D765C73417F5F3D9DB4A549BF16B7 /* EXLocalAuthentication.h in Headers */ = {isa = PBXBuildFile; fileRef = 826C3D5D8AA1F26A94A0FC6CF14D49BA /* EXLocalAuthentication.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 114F09E11FF5AAD51F6A4A68923DEDD8 /* RCTTypedModuleConstants.h in Headers */ = {isa = PBXBuildFile; fileRef = 2797B474D8F9D83190CCB3A0734B7B13 /* RCTTypedModuleConstants.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 11527F4C8E41DCBE88F35CD9A1A27B89 /* RCTPicker.h in Headers */ = {isa = PBXBuildFile; fileRef = 736A16E93CE6664EA8CF0EA289AE8A8E /* RCTPicker.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 116CE378A686BD900FC7676F4F481AEF /* BSG_RFC3339DateTool.m in Sources */ = {isa = PBXBuildFile; fileRef = 9688B6270FB8A586180122234A624D03 /* BSG_RFC3339DateTool.m */; }; 11712F28C8D94966B4717571C5B4101C /* FlatCombiningPriorityQueue.h in Headers */ = {isa = PBXBuildFile; fileRef = CDBEF8C2CCA558C1AA7C747627D492A6 /* FlatCombiningPriorityQueue.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 118ECA72611CB2FD2EEC1AC53D8E029C /* UMUtilities.h in Headers */ = {isa = PBXBuildFile; fileRef = 4DAA2E264016C6BCA8387D91C85749CD /* UMUtilities.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 118ECA72611CB2FD2EEC1AC53D8E029C /* UMUtilities.h in Headers */ = {isa = PBXBuildFile; fileRef = 34630BFFDAF5F576B1AD4719823F7FE3 /* UMUtilities.h */; settings = {ATTRIBUTES = (Project, ); }; }; 119EA7D5009DCF867F066ABA035BD82A /* FirebaseCoreDiagnostics-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 3BBF5ED6E7690FA18D4B7A816F99EA92 /* FirebaseCoreDiagnostics-dummy.m */; }; - 11BCEFCA89FAE791FE7195C154A8D927 /* RNPushKit.h in Headers */ = {isa = PBXBuildFile; fileRef = 578B5CE66C427B004D7E569ACA77F66F /* RNPushKit.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 11BCEFCA89FAE791FE7195C154A8D927 /* RNPushKit.h in Headers */ = {isa = PBXBuildFile; fileRef = 5449E244F235CF29D6B99C7A8C78E5C0 /* RNPushKit.h */; settings = {ATTRIBUTES = (Project, ); }; }; 11C1F06E5DAC4DB374846E51300D5020 /* UIImage+Transform.h in Headers */ = {isa = PBXBuildFile; fileRef = 6FF4907F0B1E21B74D2FBCBA5A4FBDB7 /* UIImage+Transform.h */; settings = {ATTRIBUTES = (Project, ); }; }; 11CEE85468C674A4EBCBA4551A6FFB4A /* SDImageCache.m in Sources */ = {isa = PBXBuildFile; fileRef = 130AD96653DFB0B85D96782F91BE1413 /* SDImageCache.m */; }; 11D6807CF168126D40A15178C9E04FCD /* openssl_aes.h in Headers */ = {isa = PBXBuildFile; fileRef = 55C9337079C479AAA349F5708DD01725 /* openssl_aes.h */; settings = {ATTRIBUTES = (Project, ); }; }; 120EE91B70D7148A00CE2E064E96F61E /* SKApplicationDescriptor.m in Sources */ = {isa = PBXBuildFile; fileRef = 906166F8F6237D4A6C79C75455EC449A /* SKApplicationDescriptor.m */; settings = {COMPILER_FLAGS = "-DDEBUG=1 -DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0"; }; }; 12464BBD06FDEF5F9162798A1EC56544 /* FIRCLSConstants.h in Headers */ = {isa = PBXBuildFile; fileRef = 8BEC4C534A6D3D670A75EBA4EDD819D6 /* FIRCLSConstants.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 12478C3DEA4C049CB9A2CA1CD20C89DA /* rn-extensions-share-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = D59F913E76E074296AA881EE17A00394 /* rn-extensions-share-dummy.m */; }; + 12478C3DEA4C049CB9A2CA1CD20C89DA /* rn-extensions-share-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 1D2FB4BA6EB58E9957A9B89A188AC154 /* rn-extensions-share-dummy.m */; }; 125A7DA5E0AA6CD38E879293F84F4CA0 /* Flowables.h in Headers */ = {isa = PBXBuildFile; fileRef = EC4850C151CD224548F62146DCD1C8CC /* Flowables.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1269AF0F682F600A26863DF81E886937 /* RNPushKitEventHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = 24110D29E603430427BC166880317C02 /* RNPushKitEventHandler.m */; }; - 126F40666E812A4A6E90817FF328B49D /* RNFetchBlobFS.h in Headers */ = {isa = PBXBuildFile; fileRef = 591CF5DE291F6F3D7B2E3D7F3559571E /* RNFetchBlobFS.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1269AF0F682F600A26863DF81E886937 /* RNPushKitEventHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = CEE10F57E2A70426F83D3CE2488EF6FF /* RNPushKitEventHandler.m */; }; 127BEB986815F397903637433E85997C /* FireAndForgetBasedFlipperResponder.h in Headers */ = {isa = PBXBuildFile; fileRef = 8840248FA393A26F5DDAB7D0B2FB3635 /* FireAndForgetBasedFlipperResponder.h */; settings = {ATTRIBUTES = (Project, ); }; }; 12D59B7431F1E2D74FD4A69383EB1BC9 /* FlipperPlugin.h in Headers */ = {isa = PBXBuildFile; fileRef = 07F65FB03B85510F0B6531AF44EE9976 /* FlipperPlugin.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 12E3B3A98B16C35BF8A9040CC935E1A1 /* RCTModuleData.mm in Sources */ = {isa = PBXBuildFile; fileRef = A9A4DCE4BC87019EAE173236378AE571 /* RCTModuleData.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 12E3B3A98B16C35BF8A9040CC935E1A1 /* RCTModuleData.mm in Sources */ = {isa = PBXBuildFile; fileRef = DF25171794B0D2F410EADE1EDA4EB230 /* RCTModuleData.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; 12EF2DADF1312FD3553930431F86DA5D /* SDWebImageDownloaderDecryptor.m in Sources */ = {isa = PBXBuildFile; fileRef = A294E318618A97FF297AE1D68EB73C1A /* SDWebImageDownloaderDecryptor.m */; }; - 13210605B09232F682CE7280B752A25A /* RCTPackagerClient.m in Sources */ = {isa = PBXBuildFile; fileRef = 061E275A1BE4FF3A74299CB2F8DBC4A7 /* RCTPackagerClient.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 13210605B09232F682CE7280B752A25A /* RCTPackagerClient.m in Sources */ = {isa = PBXBuildFile; fileRef = B677605A7E5512FF23527814F0035B19 /* RCTPackagerClient.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; 132446A286BF65E4A71E3B8B41D13299 /* FIRCLSCodeMapping.m in Sources */ = {isa = PBXBuildFile; fileRef = A6307680F6EC7F7048B72294B68290E0 /* FIRCLSCodeMapping.m */; }; 13626B3E229D5D66AF7559F0708DD7B3 /* SDImageAPNGCoder.m in Sources */ = {isa = PBXBuildFile; fileRef = 6B34CF81E97EE6356F87B13D2F7D9C67 /* SDImageAPNGCoder.m */; }; 137FF610872B1C182541C2262022B77B /* SDWeakProxy.m in Sources */ = {isa = PBXBuildFile; fileRef = 2F3DB85865D79F4A726C43AAF5A91103 /* SDWeakProxy.m */; }; 138BB5EE73A73F506971CFAF6C344BD9 /* GDTCORRegistrar_Private.h in Headers */ = {isa = PBXBuildFile; fileRef = A919D11DDD00D385BEF1F93B4617E820 /* GDTCORRegistrar_Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; 13DE1BD1D694029E6A9CA5A6422D1297 /* EDFThreadPoolExecutor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 6D45C9B339C3901B3AA0E27B74381F0C /* EDFThreadPoolExecutor.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - 141090299A28682B48401EF4D7F455FC /* ARTNodeManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 08519E82B954DA60AF0DDFA56AB29551 /* ARTNodeManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 141090299A28682B48401EF4D7F455FC /* ARTNodeManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 8B69761C90606CFF144962B2AC895EAD /* ARTNodeManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; 141304222E862C8824241BED6D8D4341 /* Demangle.cpp in Sources */ = {isa = PBXBuildFile; fileRef = ACD73B37A1B1D19DFA67134D35AB9518 /* Demangle.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 14416B732D93C60D9933774377696D1A /* RCTWebSocketModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 42096D708DBD77844D92805BB3460723 /* RCTWebSocketModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1448E6C039C8E7A220498EDB5E01D34A /* RCTBridge+Private.h in Headers */ = {isa = PBXBuildFile; fileRef = EB31A19D4B088A179BBBB562A4E5B551 /* RCTBridge+Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 14416B732D93C60D9933774377696D1A /* RCTWebSocketModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 60EDD1E032A4724CC952A48996263EA2 /* RCTWebSocketModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1448E6C039C8E7A220498EDB5E01D34A /* RCTBridge+Private.h in Headers */ = {isa = PBXBuildFile; fileRef = CD1EE304F62FF3B21CBB2CC033ACED60 /* RCTBridge+Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; 14595B9424B26FA78E6DD72747352F72 /* FileUtilDetail.h in Headers */ = {isa = PBXBuildFile; fileRef = 5203742332341C0090DE075D3F7A6699 /* FileUtilDetail.h */; settings = {ATTRIBUTES = (Project, ); }; }; 145B0569F3F8BCD67D8BBF5DD7E6EB72 /* EventBaseLocal.h in Headers */ = {isa = PBXBuildFile; fileRef = B465936D467BDA0138F2F1E491FA9478 /* EventBaseLocal.h */; settings = {ATTRIBUTES = (Project, ); }; }; 14728816ACF61C96545F414F980F4B33 /* SDWebImageCompat.m in Sources */ = {isa = PBXBuildFile; fileRef = 662665FE9F09E2A8AB99BADB2B35EF08 /* SDWebImageCompat.m */; }; 1473175D9D91F3FAA6EFE18B305D6E38 /* FKPortForwardingServer.m in Sources */ = {isa = PBXBuildFile; fileRef = 937253B4856F1DE53A7FD910DA71B5FE /* FKPortForwardingServer.m */; settings = {COMPILER_FLAGS = "-DDEBUG=1 -DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0"; }; }; - 1479BA84B9B30E6D9879CA6C0135D930 /* EXVideoPlayerViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 2A1A2A8E443074927DC64B652B49B61D /* EXVideoPlayerViewController.m */; }; + 1479BA84B9B30E6D9879CA6C0135D930 /* EXVideoPlayerViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 83D580E7AA9694526BF76B197BFC65BE /* EXVideoPlayerViewController.m */; }; 1487B1D1AEDC852BABA57CD71F64AA21 /* SpookyHashV1.cpp in Sources */ = {isa = PBXBuildFile; fileRef = DC6AEC8EF1DF26E4985963D7A898F3CF /* SpookyHashV1.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - 148985338204113A70CE293FA1A9B59F /* RCTSwitch.h in Headers */ = {isa = PBXBuildFile; fileRef = D653634F8A3BA4BB4A62E764C9B7CA32 /* RCTSwitch.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 149BAC8C16FD76B8A7DE7279167CDB38 /* RCTImageEditingManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 93F9FF021CB8FF0AD61A20E7765A5EDC /* RCTImageEditingManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 148985338204113A70CE293FA1A9B59F /* RCTSwitch.h in Headers */ = {isa = PBXBuildFile; fileRef = 49DC05020B3EE5FC65B07DC95C77E61B /* RCTSwitch.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 149BAC8C16FD76B8A7DE7279167CDB38 /* RCTImageEditingManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 9F00C6A6BA9CCFAEF0F09F948E183213 /* RCTImageEditingManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; 14A2ABDB1E2A4ABB4C6D29042FA3186B /* FBLPromise+Always.m in Sources */ = {isa = PBXBuildFile; fileRef = 0B2347BCCA21DAA5052BA753E0EFDF4E /* FBLPromise+Always.m */; }; 14A3CA4B77271ED4415356A1FBA7362F /* dsp.h in Headers */ = {isa = PBXBuildFile; fileRef = 768E2C7B161AE5447DF5BE0DF31527DD /* dsp.h */; settings = {ATTRIBUTES = (Project, ); }; }; 14A9C9610BD8C7330ECA0BA0F7847340 /* GDTCCTCompressionHelper.m in Sources */ = {isa = PBXBuildFile; fileRef = 45285BDC1BE6A2B4446854BEBD3F9B64 /* GDTCCTCompressionHelper.m */; }; 14F4CBB8353E78750FBA45D556C32E23 /* AsyncSocket.h in Headers */ = {isa = PBXBuildFile; fileRef = 144101C0AEEEB344D88EA4FEE7E49167 /* AsyncSocket.h */; settings = {ATTRIBUTES = (Project, ); }; }; 150F04B8F2DE014340CA3EABEF23B9AF /* SSLOptions.cpp in Sources */ = {isa = PBXBuildFile; fileRef = AD396C56ADD49C2490D8B950A3BBEB7B /* SSLOptions.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - 1512892B5305F94B3E4E56C7D1C53A1C /* RCTProfile.h in Headers */ = {isa = PBXBuildFile; fileRef = 43CAF26635546AAF8D1D9FA621E9E9E2 /* RCTProfile.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 152271A7580B47DB9B37189F7ED4277E /* ARTLinearGradient.m in Sources */ = {isa = PBXBuildFile; fileRef = 5676A9119066D19F58C747370FDFB455 /* ARTLinearGradient.m */; }; - 15317713CD05A58CAAB76846E80BB320 /* RNFBRCTEventEmitter.h in Headers */ = {isa = PBXBuildFile; fileRef = F28BC214752794297FD5ECB6E1197268 /* RNFBRCTEventEmitter.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1512892B5305F94B3E4E56C7D1C53A1C /* RCTProfile.h in Headers */ = {isa = PBXBuildFile; fileRef = FDCE757E883801535E527A494EFF2452 /* RCTProfile.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 152271A7580B47DB9B37189F7ED4277E /* ARTLinearGradient.m in Sources */ = {isa = PBXBuildFile; fileRef = 6CCC37EC3A64CED0316F1A0D74935735 /* ARTLinearGradient.m */; }; + 15317713CD05A58CAAB76846E80BB320 /* RNFBRCTEventEmitter.h in Headers */ = {isa = PBXBuildFile; fileRef = 0A471759F497FD68797578567C427CDA /* RNFBRCTEventEmitter.h */; settings = {ATTRIBUTES = (Project, ); }; }; 1545F3BAB2FDEE69BA16660BB26F0F86 /* TOCropOverlayView.m in Sources */ = {isa = PBXBuildFile; fileRef = F5BBB2B4EF78325EA09088754BC73C97 /* TOCropOverlayView.m */; }; 154E9DA70771C2E787FB4A467761F308 /* FBLPromise+Async.m in Sources */ = {isa = PBXBuildFile; fileRef = A3090845172D72D4D19ECD5800982FA9 /* FBLPromise+Async.m */; }; 15606F80BC53DF8E81548C3DCB0107FA /* GDTCCTPrioritizer.h in Headers */ = {isa = PBXBuildFile; fileRef = 22DA82FF7F1C63B1FD40CB5EF1745FAF /* GDTCCTPrioritizer.h */; settings = {ATTRIBUTES = (Project, ); }; }; @@ -477,79 +472,79 @@ 15CBDB6170625FC29B5013BB2F3898E1 /* double-conversion.h in Headers */ = {isa = PBXBuildFile; fileRef = 3BC5033AF0CAFB17D2BD347A0CD9E3BA /* double-conversion.h */; settings = {ATTRIBUTES = (Project, ); }; }; 15D7CCF59D45A8AEB4224BD291FC9910 /* huffman_utils.h in Headers */ = {isa = PBXBuildFile; fileRef = 566D950549D6BD2E8E75319C81486A88 /* huffman_utils.h */; settings = {ATTRIBUTES = (Project, ); }; }; 15FA0CEC28541CA4EF930A1163CEAB50 /* lossless_mips_dsp_r2.c in Sources */ = {isa = PBXBuildFile; fileRef = EA9468C11766D5C3D4163A788CF50BA3 /* lossless_mips_dsp_r2.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 161026FA21D9BE1DF9129B9CB9D7732E /* BSG_KSSystemCapabilities.h in Headers */ = {isa = PBXBuildFile; fileRef = 7009BC2CAD24F37D604CF5CD634E1976 /* BSG_KSSystemCapabilities.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 161026FA21D9BE1DF9129B9CB9D7732E /* BSG_KSSystemCapabilities.h in Headers */ = {isa = PBXBuildFile; fileRef = B493BD6DC566132C0D38020BA2C45C20 /* BSG_KSSystemCapabilities.h */; settings = {ATTRIBUTES = (Project, ); }; }; 161A3959A3DB59623C050A727C8E8C81 /* GDTCORFlatFileStorage.h in Headers */ = {isa = PBXBuildFile; fileRef = BC65CAE7875248D14C21132FFC785A51 /* GDTCORFlatFileStorage.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 162A6A618A93B94A55D7223F0F5E716F /* React-RCTSettings-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = E520F185A3C7738EB377EC4FDA4521F2 /* React-RCTSettings-dummy.m */; }; - 162ACBE91E639740897876BCD2BB2865 /* BSGConnectivity.m in Sources */ = {isa = PBXBuildFile; fileRef = 4795778D8BCF15D67E23D2125CB39C08 /* BSGConnectivity.m */; }; - 163371D05D89E0FE1CC10BB964D7FF97 /* RCTRedBoxExtraDataViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 5D625997709A600E1B6A27420452A233 /* RCTRedBoxExtraDataViewController.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 1658E2D03BFE5D27F4C7FB78370F5289 /* RNPushKit.m in Sources */ = {isa = PBXBuildFile; fileRef = F76520659EA6968F94FC4F23481FF279 /* RNPushKit.m */; }; + 162A6A618A93B94A55D7223F0F5E716F /* React-RCTSettings-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 1D8D36404A4931903010BBF9C9AB890A /* React-RCTSettings-dummy.m */; }; + 162ACBE91E639740897876BCD2BB2865 /* BSGConnectivity.m in Sources */ = {isa = PBXBuildFile; fileRef = C181A953845ECC2E16575077B0638765 /* BSGConnectivity.m */; }; + 163371D05D89E0FE1CC10BB964D7FF97 /* RCTRedBoxExtraDataViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 7A0F675813E7A139C53C107616014E4E /* RCTRedBoxExtraDataViewController.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 1658E2D03BFE5D27F4C7FB78370F5289 /* RNPushKit.m in Sources */ = {isa = PBXBuildFile; fileRef = C45ECC5508F8E2A2D68DFEED2E15026F /* RNPushKit.m */; }; 166362512425813E6A6B7A462CE14ACB /* MMKVLog.h in Headers */ = {isa = PBXBuildFile; fileRef = 3E9242EEAF4956D0A3E9005B662766EC /* MMKVLog.h */; settings = {ATTRIBUTES = (Project, ); }; }; 1677C6E959A147929A1E36ADE31AB595 /* SKEnvironmentVariables.h in Headers */ = {isa = PBXBuildFile; fileRef = 9698A308246F9C475EFC0CF7FA7A64DD /* SKEnvironmentVariables.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 168858BEA838B6A79F6BAA7F95B0A0BC /* RCTScrollView.h in Headers */ = {isa = PBXBuildFile; fileRef = 5BFF236C040D554B572D0078D72502BC /* RCTScrollView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 16899D5B9029FB6D5A400783A624C1C8 /* EXWebBrowser.h in Headers */ = {isa = PBXBuildFile; fileRef = 3A0D9D341A2829B61652D7C008D135C0 /* EXWebBrowser.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 168858BEA838B6A79F6BAA7F95B0A0BC /* RCTScrollView.h in Headers */ = {isa = PBXBuildFile; fileRef = 4454195B694BFC9D8732F4E94496F38F /* RCTScrollView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 16899D5B9029FB6D5A400783A624C1C8 /* EXWebBrowser.h in Headers */ = {isa = PBXBuildFile; fileRef = E7C71728B5239AD21C232CCA09BF7791 /* EXWebBrowser.h */; settings = {ATTRIBUTES = (Project, ); }; }; 168E0D6A2004B4AB71BDC7A0FD126EEC /* FrameFlags.h in Headers */ = {isa = PBXBuildFile; fileRef = 106A0E6452DBB4A050E3FCA45B2B8607 /* FrameFlags.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 16958AEC562C5160BFD88A8EFBBAC6A5 /* RNFBAnalyticsModule.m in Sources */ = {isa = PBXBuildFile; fileRef = D671D1057D25C142B595A08CECEE425F /* RNFBAnalyticsModule.m */; }; - 16B79B17961B6E6845CA4D610C59DDE5 /* ARTNodeManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 92C76AF1348C178EFD29816522B1F654 /* ARTNodeManager.m */; }; - 16BFF090FD5381021803A4BF37BCE8F1 /* RCTConvert+FIROptions.m in Sources */ = {isa = PBXBuildFile; fileRef = 44A95C29C46FABC2B4AB1DF51CEF3A4D /* RCTConvert+FIROptions.m */; }; + 16958AEC562C5160BFD88A8EFBBAC6A5 /* RNFBAnalyticsModule.m in Sources */ = {isa = PBXBuildFile; fileRef = 27115A58C44A611EE094D04B426E7BFB /* RNFBAnalyticsModule.m */; }; + 16B79B17961B6E6845CA4D610C59DDE5 /* ARTNodeManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 5970D65E17317AF469A8541B7F146C0A /* ARTNodeManager.m */; }; + 16BFF090FD5381021803A4BF37BCE8F1 /* RCTConvert+FIROptions.m in Sources */ = {isa = PBXBuildFile; fileRef = 24EFC63E862C3EC720F077DAE67C3147 /* RCTConvert+FIROptions.m */; }; 16C5D991F7D3833068C8F6892F59DAE2 /* MemoryMapping.h in Headers */ = {isa = PBXBuildFile; fileRef = 8177E6FFA8F27C56F779F481512EBDDC /* MemoryMapping.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 16EE63BECF0434B64696485FF6B3B7D6 /* RCTScrollEvent.m in Sources */ = {isa = PBXBuildFile; fileRef = 2B8BE2ECD06D9EDDE367C058CB0E9DA7 /* RCTScrollEvent.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 16EE63BECF0434B64696485FF6B3B7D6 /* RCTScrollEvent.m in Sources */ = {isa = PBXBuildFile; fileRef = 7A1712A44424732D05AB86F17D277446 /* RCTScrollEvent.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; 173358C1C847A9165F7F5A72CFD85594 /* FBLPromise+Catch.h in Headers */ = {isa = PBXBuildFile; fileRef = 7A01E18194F6EA7B8074FF79ADEFA5DC /* FBLPromise+Catch.h */; settings = {ATTRIBUTES = (Project, ); }; }; 173644F783112230316D4E6FCC53ED4A /* ErrorCode.h in Headers */ = {isa = PBXBuildFile; fileRef = 409A77FBCA194CDF50804A2106A459DB /* ErrorCode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 173EFBD9209646E1A705B053082C9F6F /* REAClockNodes.m in Sources */ = {isa = PBXBuildFile; fileRef = 7544204EF346CE3CF0A17C6FB8FF9103 /* REAClockNodes.m */; }; + 173EFBD9209646E1A705B053082C9F6F /* REAClockNodes.m in Sources */ = {isa = PBXBuildFile; fileRef = D5609C8A9C5815B0F95C2122E560BEC7 /* REAClockNodes.m */; }; 17473E80FC0107BF0A8C72CFFEAF8603 /* Core.h in Headers */ = {isa = PBXBuildFile; fileRef = 343EA6117AFE0D52C41B73F2E515E0D0 /* Core.h */; settings = {ATTRIBUTES = (Project, ); }; }; 175CFCD017C7B7EF1E598452DA8878C5 /* GDTCORTransformer.h in Headers */ = {isa = PBXBuildFile; fileRef = 2147009ACA77C71C0042CE90F8F9FC1D /* GDTCORTransformer.h */; settings = {ATTRIBUTES = (Project, ); }; }; 1764DAAB45EFB47EFCEBF09C636D8196 /* Codel.cpp in Sources */ = {isa = PBXBuildFile; fileRef = E08B2539D097083E48F2C410B5C60D66 /* Codel.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - 176EC407C0E6D60A0CFAFE7137EEA659 /* RCTSafeAreaShadowView.m in Sources */ = {isa = PBXBuildFile; fileRef = 5899B0AD4E23B58ED31078117CB6934B /* RCTSafeAreaShadowView.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 176EC407C0E6D60A0CFAFE7137EEA659 /* RCTSafeAreaShadowView.m in Sources */ = {isa = PBXBuildFile; fileRef = 428136ED943AB31EFCA02F5CC8730F15 /* RCTSafeAreaShadowView.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; 177039A182568496EEAD8B000C4CB5EF /* TypeList.h in Headers */ = {isa = PBXBuildFile; fileRef = 55C148DD9C760727E79E0E7E047ECBAB /* TypeList.h */; settings = {ATTRIBUTES = (Project, ); }; }; 179E47C6D3FDEF2F8548AAF3B8E7D75A /* IOExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = 47399E8B0D6F2C448463580DCD3137AA /* IOExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 17BB6867B8F014C0E40A07E3CF4AB27B /* RCTMultiplicationAnimatedNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 0DBC7C0BA6564C2A676E375BAA7B3464 /* RCTMultiplicationAnimatedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 17BB6867B8F014C0E40A07E3CF4AB27B /* RCTMultiplicationAnimatedNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 98E6EE1E1ABABF95E92F9E03E4540801 /* RCTMultiplicationAnimatedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; 17C2BEF174A99D7A9963AFC14B2D9E10 /* ObservableOperator.h in Headers */ = {isa = PBXBuildFile; fileRef = 23E9107ABDF1DFBB3B3DC9EDDA6574E9 /* ObservableOperator.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 17C9F63079A7777BDF392197B7DAF65F /* RNCSafeAreaViewEdges.m in Sources */ = {isa = PBXBuildFile; fileRef = 86783AF71917D7BF5B5C642D1427D04B /* RNCSafeAreaViewEdges.m */; }; + 17C9F63079A7777BDF392197B7DAF65F /* RNCSafeAreaViewEdges.m in Sources */ = {isa = PBXBuildFile; fileRef = B0930EF6DAC3276D64ED110CDDDE2B6A /* RNCSafeAreaViewEdges.m */; }; 17F5E0FB74E7BD32CDACDC8F988CA5B7 /* SKIOSNetworkAdapter.mm in Sources */ = {isa = PBXBuildFile; fileRef = 828CE730DE4AC8F4E0336163B9D629F6 /* SKIOSNetworkAdapter.mm */; settings = {COMPILER_FLAGS = "-DDEBUG=1 -DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0"; }; }; - 1832399A5D86191FBC62039FAA886F24 /* EXWebBrowser.m in Sources */ = {isa = PBXBuildFile; fileRef = F57FA8D2DBFF8C1AD38B570DD28EE95B /* EXWebBrowser.m */; }; - 18508BF0F3BB7FB5771E7208D859296F /* EXHapticsModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 915700DD14407039EC42E6694948F955 /* EXHapticsModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1832399A5D86191FBC62039FAA886F24 /* EXWebBrowser.m in Sources */ = {isa = PBXBuildFile; fileRef = 1498BD2ACEA68034CA0FB3D0DBEAEDDF /* EXWebBrowser.m */; }; + 18508BF0F3BB7FB5771E7208D859296F /* EXHapticsModule.h in Headers */ = {isa = PBXBuildFile; fileRef = ECDD159A98CEC8404A84784B05FE4A60 /* EXHapticsModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; 1875CFDC099AD0787A9C25318392EA17 /* TypedIOBuf.h in Headers */ = {isa = PBXBuildFile; fileRef = 807B40C47C86B2CD10A78565F4FA9D18 /* TypedIOBuf.h */; settings = {ATTRIBUTES = (Project, ); }; }; 18A77E5A2082C7E3C408C56CA002C905 /* FlipperCppWrapperPlugin.h in Headers */ = {isa = PBXBuildFile; fileRef = FF2F229DBE2500EC6C68ED6457D17C63 /* FlipperCppWrapperPlugin.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 18B99705036ECD1F33913244C135B90A /* RCTConvert+RNNotifications.h in Headers */ = {isa = PBXBuildFile; fileRef = 5BA7580AF58046B433F62CB89385F78E /* RCTConvert+RNNotifications.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 18B99705036ECD1F33913244C135B90A /* RCTConvert+RNNotifications.h in Headers */ = {isa = PBXBuildFile; fileRef = 18A6F6191B6BB7A9F68ED627E36E0403 /* RCTConvert+RNNotifications.h */; settings = {ATTRIBUTES = (Project, ); }; }; 18C92F2E7DE02C4F5158C71F487EDC11 /* RSocket.h in Headers */ = {isa = PBXBuildFile; fileRef = BF3A5E967B851BD1E149E3A89F148124 /* RSocket.h */; settings = {ATTRIBUTES = (Project, ); }; }; 18EC058224BD741E7A2C93D0450326EE /* FIRCLSGlobals.h in Headers */ = {isa = PBXBuildFile; fileRef = A9D230534FF22D171D1F2799C5C38FB0 /* FIRCLSGlobals.h */; settings = {ATTRIBUTES = (Project, ); }; }; 190C1CF14FE6C07E6E1D21C2C59D2F0B /* FIRCLSInternalLogging.c in Sources */ = {isa = PBXBuildFile; fileRef = FBCDC1026DD47968B433DA0A23D88E06 /* FIRCLSInternalLogging.c */; }; - 19395BF0D512145A000D4AC12462498F /* RCTSafeAreaViewLocalData.h in Headers */ = {isa = PBXBuildFile; fileRef = 3FA5349F4BBD0D79B49E22361071C670 /* RCTSafeAreaViewLocalData.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 19395BF0D512145A000D4AC12462498F /* RCTSafeAreaViewLocalData.h in Headers */ = {isa = PBXBuildFile; fileRef = 96221E20136A570A19171990887748A1 /* RCTSafeAreaViewLocalData.h */; settings = {ATTRIBUTES = (Project, ); }; }; 193D84D554E98E93C8D2745AF8BF6517 /* FIRCLSRecordHost.h in Headers */ = {isa = PBXBuildFile; fileRef = CDCB3FA778FA021CE5A437ED92273D4F /* FIRCLSRecordHost.h */; settings = {ATTRIBUTES = (Project, ); }; }; 193ED99B119DFEA6FDAD04AEBB176FD6 /* SDDisplayLink.h in Headers */ = {isa = PBXBuildFile; fileRef = 7656942892C161E23A868FBD6692B259 /* SDDisplayLink.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1952230ECEC4B2A0E1FC56C1309A0AED /* EXSessionDownloadTaskDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = DF83F0AA289411C2F3DAE7F3F7E075EA /* EXSessionDownloadTaskDelegate.m */; }; + 1952230ECEC4B2A0E1FC56C1309A0AED /* EXSessionDownloadTaskDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = 35C05C495ECA8F3B74C1608D5698E1F0 /* EXSessionDownloadTaskDelegate.m */; }; 19592F25B82235131D6A91618F62FC7B /* Throughput.h in Headers */ = {isa = PBXBuildFile; fileRef = 007A425D647F56FBFE1500110E23D2C8 /* Throughput.h */; settings = {ATTRIBUTES = (Project, ); }; }; 19793D450FF05EC41C93F7691BD25ADA /* FBLPromise+Recover.m in Sources */ = {isa = PBXBuildFile; fileRef = 108B8A013394A4B9DF6805473D14F6D6 /* FBLPromise+Recover.m */; }; 19797D078D86653C59105544484571FF /* FIRLogger.h in Headers */ = {isa = PBXBuildFile; fileRef = B3A052BB92C70494B7D1908A0A3CEF50 /* FIRLogger.h */; settings = {ATTRIBUTES = (Project, ); }; }; 19A4C2DB3EBA77982E77271C69AB7543 /* FlipperConnectionManagerImpl.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 38FF482A8A3F534C5AFE2BE09662E9AC /* FlipperConnectionManagerImpl.cpp */; settings = {COMPILER_FLAGS = "-DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0 -Wall\n -std=c++14\n -Wno-global-constructors"; }; }; - 19A5A714B60260AA3454D781E5BE2626 /* RCTAccessibilityManager.mm in Sources */ = {isa = PBXBuildFile; fileRef = 5BF35C7F72737B7AB6A3EB72AF10184D /* RCTAccessibilityManager.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + 19A5A714B60260AA3454D781E5BE2626 /* RCTAccessibilityManager.mm in Sources */ = {isa = PBXBuildFile; fileRef = 269103AE2842B6139A3CB355BF124290 /* RCTAccessibilityManager.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; 19B3BC4E2828FB30D6FE19E66BBBC724 /* token_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = 4940DDDF644EF093529DDFB834F409BE /* token_enc.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; 19BB37501E60552D724E980C463122B9 /* SocketFastOpen.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 642508DC22DE2C9EEA86FE4D8EE7D2E5 /* SocketFastOpen.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; 19EBAFFF4F7BB44B99B4E5EA6F2FC4A9 /* RequestResponseResponder.h in Headers */ = {isa = PBXBuildFile; fileRef = 5EFCBD3C5BCD71E59B7DF221F564EFC0 /* RequestResponseResponder.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1A083BCB6AB2CBF49971EE0479FB08BE /* BSG_KSMachHeaders.h in Headers */ = {isa = PBXBuildFile; fileRef = 60244CC06F7882BD32F9C428E2A7F362 /* BSG_KSMachHeaders.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1A083BCB6AB2CBF49971EE0479FB08BE /* BSG_KSMachHeaders.h in Headers */ = {isa = PBXBuildFile; fileRef = 860604C82E7C754ECB8B5E88177BCDB8 /* BSG_KSMachHeaders.h */; settings = {ATTRIBUTES = (Project, ); }; }; 1A1FAB80AB5646F6BA23973871D037EA /* double-conversion.h in Headers */ = {isa = PBXBuildFile; fileRef = 53603E349ED12173875E797E6F2F58C8 /* double-conversion.h */; settings = {ATTRIBUTES = (Project, ); }; }; 1A34D3102ACF234F346A5475B6BF1CB3 /* Stdlib.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8F0BDAD9EFE406337A2721013B9C95D8 /* Stdlib.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; 1A3FDE33AD424E36E91196E972FCC4CF /* InlineExecutor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A255BBF778461528CAAFA14B8CE397B7 /* InlineExecutor.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; 1A54A0855A3968A2DF2C0220B9C13AEA /* Format.cpp in Sources */ = {isa = PBXBuildFile; fileRef = DA398306081AC5A2ED74D71C88E5137E /* Format.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 1A688B1A58B49BE230CDA5D5E42C6644 /* RCTScrollableProtocol.h in Headers */ = {isa = PBXBuildFile; fileRef = CB01C1E81C5C4C18A7EB21CE16A0867B /* RCTScrollableProtocol.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1A8C01A62EE6458ED89D407F24688A38 /* RCTHTTPRequestHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = C56F2DA2C7F1E8F9DB4857ED819213A1 /* RCTHTTPRequestHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1A688B1A58B49BE230CDA5D5E42C6644 /* RCTScrollableProtocol.h in Headers */ = {isa = PBXBuildFile; fileRef = B74515FFE16AF68ABA56B0B0525D4E64 /* RCTScrollableProtocol.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1A8C01A62EE6458ED89D407F24688A38 /* RCTHTTPRequestHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = C58FC66A78828CD9718D9E80796801D4 /* RCTHTTPRequestHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; 1A9191026A065A4591600142C46139A3 /* AtomicUtil.h in Headers */ = {isa = PBXBuildFile; fileRef = D6D20C2A57F14F1DEC06D61AB7C64CD4 /* AtomicUtil.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1A9A6954BEC51868A86A0FE3E6FEBC8F /* RCTTextShadowView.m in Sources */ = {isa = PBXBuildFile; fileRef = A654AF3C7C8FBCD0F4F659ED79980DB7 /* RCTTextShadowView.m */; }; + 1A9A6954BEC51868A86A0FE3E6FEBC8F /* RCTTextShadowView.m in Sources */ = {isa = PBXBuildFile; fileRef = DF5FBCE781A6B4FF035B948D86FFB703 /* RCTTextShadowView.m */; }; 1AA7D50D366D8F1B3C58F9727B5C8899 /* FIRCLSBinaryImage.h in Headers */ = {isa = PBXBuildFile; fileRef = 1EAE339C1344DA746DDEC8CFD59BF5AC /* FIRCLSBinaryImage.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1ABD61549684E693C9ABD854DE580471 /* EXLocalAuthentication.m in Sources */ = {isa = PBXBuildFile; fileRef = DD71F6A9E0EC82BE4DD83A952587DFD8 /* EXLocalAuthentication.m */; }; - 1AF237A8D93FED7EEC8751CC7D27C8E2 /* RCTReconnectingWebSocket.h in Headers */ = {isa = PBXBuildFile; fileRef = 175DC646FB21045009343C18BC975F4B /* RCTReconnectingWebSocket.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1ABD61549684E693C9ABD854DE580471 /* EXLocalAuthentication.m in Sources */ = {isa = PBXBuildFile; fileRef = C98188E4432B4AD67B23D5E22F92E340 /* EXLocalAuthentication.m */; }; + 1AF237A8D93FED7EEC8751CC7D27C8E2 /* RCTReconnectingWebSocket.h in Headers */ = {isa = PBXBuildFile; fileRef = 454642A70E639C89D118ABE1A81999C7 /* RCTReconnectingWebSocket.h */; settings = {ATTRIBUTES = (Project, ); }; }; 1B06F771B3D386F7800CEFE0F97D93FE /* FIRComponentContainer.h in Headers */ = {isa = PBXBuildFile; fileRef = 5D9451B5759186B2FEFC890E00B66CF3 /* FIRComponentContainer.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1B2A7DF65EBE33BAA798A26622DEB2F6 /* BSG_KSCrashReportVersion.h in Headers */ = {isa = PBXBuildFile; fileRef = 41C3198A7870114D0CB5B74114B559EC /* BSG_KSCrashReportVersion.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1B2A7DF65EBE33BAA798A26622DEB2F6 /* BSG_KSCrashReportVersion.h in Headers */ = {isa = PBXBuildFile; fileRef = 9CE0AEE5BE154EE0241E057F573CF680 /* BSG_KSCrashReportVersion.h */; settings = {ATTRIBUTES = (Project, ); }; }; 1B55112F88E36F4CAD2006CB5FE14D26 /* FBVector.h in Headers */ = {isa = PBXBuildFile; fileRef = CAE6DEF4CBEF1CE244437B0BD7A057AB /* FBVector.h */; settings = {ATTRIBUTES = (Project, ); }; }; 1B5CF4A390128D31E6B3DDD066E38DA3 /* FKUserDefaultsPlugin.h in Headers */ = {isa = PBXBuildFile; fileRef = 5FF53F120C9636363D6E1DF805BA4847 /* FKUserDefaultsPlugin.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1B7460A41AE9C572291675EBBA73DBF3 /* UMViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 8C43D22955C23139357D9411E1EDCFF8 /* UMViewManager.m */; }; + 1B7460A41AE9C572291675EBBA73DBF3 /* UMViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 00404CDA3D285D5E043FDD98DC7821DA /* UMViewManager.m */; }; 1B7603450F5EBB7D2C05C7FBBEC26D72 /* RSocketServer.h in Headers */ = {isa = PBXBuildFile; fileRef = 32E1731084B4625473B52CDDD4F4CE46 /* RSocketServer.h */; settings = {ATTRIBUTES = (Project, ); }; }; 1B794ED054CB3A6B44BA360A30EEC849 /* HeterogeneousAccess.h in Headers */ = {isa = PBXBuildFile; fileRef = D114B20FEA715F1C042240C758D782F5 /* HeterogeneousAccess.h */; settings = {ATTRIBUTES = (Project, ); }; }; 1B7CFF9E58522F2A4D6D36C5020D8DAE /* HazptrThrLocal.h in Headers */ = {isa = PBXBuildFile; fileRef = 5330812D0A621BACD7B7D952A9E42A82 /* HazptrThrLocal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1B8279E9093EA1C7681DD1E317170B84 /* RNConfigReader.h in Headers */ = {isa = PBXBuildFile; fileRef = 9C139D4A013059575C84F37E15B3D6D9 /* RNConfigReader.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1B8279E9093EA1C7681DD1E317170B84 /* RNConfigReader.h in Headers */ = {isa = PBXBuildFile; fileRef = E06FBE1251848294B4E7797EA7775E51 /* RNConfigReader.h */; settings = {ATTRIBUTES = (Project, ); }; }; 1B83D9440594BDBD1CB4CB3D88411B49 /* ScopeGuard.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 373838BA43BFCEFAE7F39B409FCC7B47 /* ScopeGuard.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - 1B8D715E91852816FAD01A4595E2AB8A /* RNFBJSON.m in Sources */ = {isa = PBXBuildFile; fileRef = 504CCEB26B7B4EDACBA51B3383961FF7 /* RNFBJSON.m */; }; - 1B9E8E953845EA0057AB7B2D8F149933 /* RCTImageView.h in Headers */ = {isa = PBXBuildFile; fileRef = 3FD424B19F510D11C516CA1189411478 /* RCTImageView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1B8D715E91852816FAD01A4595E2AB8A /* RNFBJSON.m in Sources */ = {isa = PBXBuildFile; fileRef = 93DB38E9D30DB45A730E514C59E52670 /* RNFBJSON.m */; }; + 1B9E8E953845EA0057AB7B2D8F149933 /* RCTImageView.h in Headers */ = {isa = PBXBuildFile; fileRef = 66C86DF90F7DB5286286B1D63407FF5E /* RCTImageView.h */; settings = {ATTRIBUTES = (Project, ); }; }; 1BA74AE91BF42207C276B02BBC24531C /* Hardware.h in Headers */ = {isa = PBXBuildFile; fileRef = D04A3AACF957C27FB577ECD76C38CE54 /* Hardware.h */; settings = {ATTRIBUTES = (Project, ); }; }; 1BB7DF35DA8BC3E5E76D9ADB62B3BAC6 /* lossless_msa.c in Sources */ = {isa = PBXBuildFile; fileRef = 6504583D3024841C61E23BDA84AB9350 /* lossless_msa.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; 1BBBA89E7263809B22A2986294845A23 /* Observable.h in Headers */ = {isa = PBXBuildFile; fileRef = 7461E1C5F7F18D5FF46A3B67FCAB4D49 /* Observable.h */; settings = {ATTRIBUTES = (Project, ); }; }; @@ -558,39 +553,39 @@ 1BFDD5217348D3483D5A90BCB6167286 /* FIRCLSApplicationIdentifierModel.m in Sources */ = {isa = PBXBuildFile; fileRef = D33C02CF7A42B6C80F082B242AAE211C /* FIRCLSApplicationIdentifierModel.m */; }; 1C09880186DEAD1A272B1DEDF6329BD6 /* FIRInstallationsIIDTokenStore.m in Sources */ = {isa = PBXBuildFile; fileRef = CB53B86345A65DA0B11B0E880B6E2402 /* FIRInstallationsIIDTokenStore.m */; }; 1C3B114D579773C689CCC20E86A66473 /* SKSwizzle.h in Headers */ = {isa = PBXBuildFile; fileRef = BB34EEE87843613C0628DC3E43C08DB2 /* SKSwizzle.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1C6E0836685AAC30A68040E674538497 /* RCTTurboModuleManager.mm in Sources */ = {isa = PBXBuildFile; fileRef = CE2DCEB0D04A926126A4A06D361A8FED /* RCTTurboModuleManager.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 1C6E0836685AAC30A68040E674538497 /* RCTTurboModuleManager.mm in Sources */ = {isa = PBXBuildFile; fileRef = 9D7514896A50398E7EA0AF2CFAD692E9 /* RCTTurboModuleManager.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; 1C71AAD98CA149A0B464F0C1BC1A760A /* FlipperClient.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B76DDEB4FBB4CA8EE7DB029F225EBBB7 /* FlipperClient.cpp */; settings = {COMPILER_FLAGS = "-DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0 -Wall\n -std=c++14\n -Wno-global-constructors"; }; }; 1C75E58E5C7129F8CA3F013D567B692A /* SKButtonDescriptor.h in Headers */ = {isa = PBXBuildFile; fileRef = E73AA114C896C43757A92D69236139A6 /* SKButtonDescriptor.h */; settings = {ATTRIBUTES = (Project, ); }; }; 1C9458A12060B23DE3F9D57BAAC6AF5B /* SKSwizzle.mm in Sources */ = {isa = PBXBuildFile; fileRef = 077BD30C8E48BD860BD0650D25B4E864 /* SKSwizzle.mm */; settings = {COMPILER_FLAGS = "-DDEBUG=1 -DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0"; }; }; 1CCCDD7A8C6DACEB755AA8EC3AFF7993 /* FIRCLSURLSessionDownloadTask.h in Headers */ = {isa = PBXBuildFile; fileRef = 62FF8DB2CA6E62BC91939C2346AD6B3E /* FIRCLSURLSessionDownloadTask.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1CD50B17D10EDDDE034D1C2AB7034610 /* ARTShapeManager.m in Sources */ = {isa = PBXBuildFile; fileRef = C78A53FDD44844F384DCCCE1E1DA650A /* ARTShapeManager.m */; }; - 1CE0A3B74BCACF590A1E1A2BE0BF258A /* UMLogHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 8F167E84E5A3D212C35C3D03EFF6A5D4 /* UMLogHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1CF6284334F4151C7BF3164B9D15FA66 /* RCTImageView.mm in Sources */ = {isa = PBXBuildFile; fileRef = 03558578463C6B25BF4DBB9DB9A0A3B1 /* RCTImageView.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + 1CD50B17D10EDDDE034D1C2AB7034610 /* ARTShapeManager.m in Sources */ = {isa = PBXBuildFile; fileRef = ECFA9C65A82E450DB07974BB0CEA789D /* ARTShapeManager.m */; }; + 1CE0A3B74BCACF590A1E1A2BE0BF258A /* UMLogHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 19153D097CD7D2C239B4CDB0599A8D64 /* UMLogHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1CF6284334F4151C7BF3164B9D15FA66 /* RCTImageView.mm in Sources */ = {isa = PBXBuildFile; fileRef = DF8703A216CC217E7205601288CB47F1 /* RCTImageView.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; 1D15487C39676A373FC9FB8D7C995044 /* SysUio.cpp in Sources */ = {isa = PBXBuildFile; fileRef = CE8411D003E03C0CF5E8DF1584C5C6AA /* SysUio.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; 1D1E44F857FA339C19C859B350D0FFA7 /* Allowance.h in Headers */ = {isa = PBXBuildFile; fileRef = 56654F409553C3328B0163C2CCE56603 /* Allowance.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1D2677A8095E40E0F5D4BCBC3C0428DE /* QBCheckmarkView.h in Headers */ = {isa = PBXBuildFile; fileRef = 24BB1AAFB0BC44F0254A6ADB350F52F0 /* QBCheckmarkView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1D2677A8095E40E0F5D4BCBC3C0428DE /* QBCheckmarkView.h in Headers */ = {isa = PBXBuildFile; fileRef = 9F923030088F5EF171441B34C08DE856 /* QBCheckmarkView.h */; settings = {ATTRIBUTES = (Project, ); }; }; 1D74DE102578CB79908C6B2FC695F3A6 /* SDWebImageError.h in Headers */ = {isa = PBXBuildFile; fileRef = 4E8B2D26280BC86F63522EC0DBB03402 /* SDWebImageError.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1D838244DCF67A79448F0311491E8A53 /* RNCMaskedView.h in Headers */ = {isa = PBXBuildFile; fileRef = A2FD9C90292706175AF313CF69B11680 /* RNCMaskedView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1DBE6A0CA095312FBA5000F8822CA8A5 /* EXSessionTaskDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = C13F1D81883D8F928423E496827276FC /* EXSessionTaskDelegate.m */; }; - 1DBF78F2962ADE6037590D5833A8459D /* JSCExecutorFactory.h in Headers */ = {isa = PBXBuildFile; fileRef = 7EACD5824921383288E9F730A938E752 /* JSCExecutorFactory.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1DF16A410CF349117F27A48911AB92B0 /* RCTConvert+REATransition.m in Sources */ = {isa = PBXBuildFile; fileRef = A14081D39493A10A57E2430BC0367832 /* RCTConvert+REATransition.m */; }; + 1D838244DCF67A79448F0311491E8A53 /* RNCMaskedView.h in Headers */ = {isa = PBXBuildFile; fileRef = 77D2697B99172AD1D5F8638ED17D1D41 /* RNCMaskedView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1DBE6A0CA095312FBA5000F8822CA8A5 /* EXSessionTaskDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = 0B917A53DD1B477441F60A343F5D9EEE /* EXSessionTaskDelegate.m */; }; + 1DBF78F2962ADE6037590D5833A8459D /* JSCExecutorFactory.h in Headers */ = {isa = PBXBuildFile; fileRef = E531255671006E36028F41DF2C8F1766 /* JSCExecutorFactory.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1DF16A410CF349117F27A48911AB92B0 /* RCTConvert+REATransition.m in Sources */ = {isa = PBXBuildFile; fileRef = 66554C7012880FC5D738096E4A6AA39C /* RCTConvert+REATransition.m */; }; 1E05E99EE9FA5209A77F929663F8F7DE /* FIRAnalyticsInteropListener.h in Headers */ = {isa = PBXBuildFile; fileRef = DA753AED7C14FFECBA73E9633D3E3BE3 /* FIRAnalyticsInteropListener.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1E0A1261A07124778FD4B3B42FA9020B /* UMAppLifecycleService.h in Headers */ = {isa = PBXBuildFile; fileRef = E45254F30C5813BEAC555BC34F1165C2 /* UMAppLifecycleService.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1E19AA4D5167F18F96FD088CB5B596FF /* RCTImagePlugins.h in Headers */ = {isa = PBXBuildFile; fileRef = CD091D739D70DD6988801CE7607F66C9 /* RCTImagePlugins.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1E0A1261A07124778FD4B3B42FA9020B /* UMAppLifecycleService.h in Headers */ = {isa = PBXBuildFile; fileRef = FAB2F8113C0E0E0ED8539E5B2D144E9C /* UMAppLifecycleService.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1E19AA4D5167F18F96FD088CB5B596FF /* RCTImagePlugins.h in Headers */ = {isa = PBXBuildFile; fileRef = DA5816048BBDA2DD04ECAD0D3E019DB0 /* RCTImagePlugins.h */; settings = {ATTRIBUTES = (Project, ); }; }; 1E3E616BD3354F1140C54F1B3E1D86B4 /* FBLPromise.m in Sources */ = {isa = PBXBuildFile; fileRef = 690F5784C704DF287B139A9D7C750AAF /* FBLPromise.m */; }; - 1E5317DA322A5BF669AB34E7251BAAE0 /* RCTTurboModuleManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 293D51E101661C9122D96301994C6B38 /* RCTTurboModuleManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1E987A72DF22FC9759BE296910DD342D /* RNFBCrashlyticsModule.h in Headers */ = {isa = PBXBuildFile; fileRef = AE42FFF16051C044366E5125F3E908CD /* RNFBCrashlyticsModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1E9E9841ECD43A7B59D4B9C4A24373CD /* RNSScreenContainer.m in Sources */ = {isa = PBXBuildFile; fileRef = DACBFB8D3758D83903550F2AD17B14EE /* RNSScreenContainer.m */; }; + 1E5317DA322A5BF669AB34E7251BAAE0 /* RCTTurboModuleManager.h in Headers */ = {isa = PBXBuildFile; fileRef = C4EEFCE9ACCAE5FBCA5B8E26F3D1856A /* RCTTurboModuleManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1E987A72DF22FC9759BE296910DD342D /* RNFBCrashlyticsModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 23FA3FE79EB3DA0D9D49D8A3397545F8 /* RNFBCrashlyticsModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1E9E9841ECD43A7B59D4B9C4A24373CD /* RNSScreenContainer.m in Sources */ = {isa = PBXBuildFile; fileRef = 4696A8C52F32F67C00333F98532DB9C4 /* RNSScreenContainer.m */; }; 1EA610E2CE028C7D7BD44F97390E83FD /* FBLPromiseError.m in Sources */ = {isa = PBXBuildFile; fileRef = F4676669FD13B7DAB22D0BFFD5491780 /* FBLPromiseError.m */; }; 1EC6E839250BB5EE3E900F898BA75362 /* IOBuf.h in Headers */ = {isa = PBXBuildFile; fileRef = 455647DA819AB2181BB6A6A53BEA523B /* IOBuf.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1ECCDE93432AC8483DCE4FF56422765E /* RCTBackedTextInputDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = 7B5FDE5D3E7563BEFA60D070D48F4919 /* RCTBackedTextInputDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1ECCDE93432AC8483DCE4FF56422765E /* RCTBackedTextInputDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = EFAEC012E5E9EAD8122E72B6C1B41073 /* RCTBackedTextInputDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; }; 1EDD4DC0E76159A2E868E2448ED7CE8C /* Utility.h in Headers */ = {isa = PBXBuildFile; fileRef = E4C5D5D0AF088A21F9F2904F7B342996 /* Utility.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1EE568DBD9A817E001E909C4F4266D1B /* RCTUITextView.h in Headers */ = {isa = PBXBuildFile; fileRef = A7801F30220C1D16F961685B7CF20131 /* RCTUITextView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1EE568DBD9A817E001E909C4F4266D1B /* RCTUITextView.h in Headers */ = {isa = PBXBuildFile; fileRef = 99187B5EAF9E7564364CA44D29DDCFBA /* RCTUITextView.h */; settings = {ATTRIBUTES = (Project, ); }; }; 1F0B02F6CDCBAB83EEFD828AF8D23080 /* FIRInstallationsAuthTokenResult.h in Headers */ = {isa = PBXBuildFile; fileRef = CC481CE3D25D4BEA14F4E859A51331BC /* FIRInstallationsAuthTokenResult.h */; settings = {ATTRIBUTES = (Project, ); }; }; 1F2A398640E810C90476C833CE69A5FC /* FIRCLSFABHost.h in Headers */ = {isa = PBXBuildFile; fileRef = CA9D19849DA0037346A7C2448CD8E052 /* FIRCLSFABHost.h */; settings = {ATTRIBUTES = (Project, ); }; }; 1F7A6150C30D540366225C4428F4EEFA /* OpenSSLUtils.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FD4DD47425531889D3309EDF0D15B61B /* OpenSSLUtils.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - 1F818D1C0AB6D0EFD75F2682563740ED /* RCTSwitchManager.m in Sources */ = {isa = PBXBuildFile; fileRef = E317496A8DC074097B8C249AB5D55E7E /* RCTSwitchManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 1F988CFCB48630887EBEC9D536138CE0 /* RNNotificationEventHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = A86B3913F0BC9BB9056755C579CB5D97 /* RNNotificationEventHandler.m */; }; + 1F818D1C0AB6D0EFD75F2682563740ED /* RCTSwitchManager.m in Sources */ = {isa = PBXBuildFile; fileRef = D7FCD9058F8F1CE3755B47E903412B3D /* RCTSwitchManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 1F988CFCB48630887EBEC9D536138CE0 /* RNNotificationEventHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = 2566A1804E4853C29DEEF2A318128070 /* RNNotificationEventHandler.m */; }; 1FB37A68C4E694C7BB73CC258ECF1F61 /* fast-dtoa.h in Headers */ = {isa = PBXBuildFile; fileRef = 7455879FAED5208B13E584DB0167E954 /* fast-dtoa.h */; settings = {ATTRIBUTES = (Project, ); }; }; 1FBC66FB408DC29291980DFFAC95FD4E /* FlipperKitNetworkPlugin.h in Headers */ = {isa = PBXBuildFile; fileRef = 801375BE59492F7CC0A17EE8309DD8C5 /* FlipperKitNetworkPlugin.h */; settings = {ATTRIBUTES = (Project, ); }; }; 1FF2EFDA8ABAED16AFAB78AF0DABEA00 /* BaselinesAsyncSocket.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1CB0228004BDF55526EF77A96B5DE9C1 /* BaselinesAsyncSocket.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0 -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; @@ -598,7 +593,7 @@ 200694A4A09DC94362D0B0D12BD4E506 /* CodedOutputData.cpp in Sources */ = {isa = PBXBuildFile; fileRef = C64EECB2E8D7EA9669FFFE237B49A3C8 /* CodedOutputData.cpp */; settings = {COMPILER_FLAGS = "-x objective-c++ -fno-objc-arc"; }; }; 2012AB3040CD09E593FE95CA831A1968 /* SDAnimatedImage.h in Headers */ = {isa = PBXBuildFile; fileRef = 23057612E2F96F6EA0C08460935202EF /* SDAnimatedImage.h */; settings = {ATTRIBUTES = (Project, ); }; }; 207E203D4A0B00504A657AB0917BF71A /* SDImageCache.h in Headers */ = {isa = PBXBuildFile; fileRef = 965A9B1B192D2C5521B1E99C0A146FD8 /* SDImageCache.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 207F828029C17673CF94C9C7763152BE /* RCTSliderManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 6DAA02CCAE5D3B649062362D9AF8BA5C /* RCTSliderManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 207F828029C17673CF94C9C7763152BE /* RCTSliderManager.m in Sources */ = {isa = PBXBuildFile; fileRef = F9DBC5769059324CA6BBEA5F9E1A702E /* RCTSliderManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; 20A96CD27D1F65CC277E1D31F919EA44 /* AESCrypt.h in Headers */ = {isa = PBXBuildFile; fileRef = 07928018B1902ED19163ED0D46E0B78B /* AESCrypt.h */; settings = {ATTRIBUTES = (Project, ); }; }; 20AB37D0A997EB702F9625EFD74E7D72 /* SKIOSNetworkAdapter.h in Headers */ = {isa = PBXBuildFile; fileRef = 01C9D446945ECE405FCF08C06E01CAC6 /* SKIOSNetworkAdapter.h */; settings = {ATTRIBUTES = (Project, ); }; }; 20ADF4E535F2FBBC3732C70F1917A1F8 /* UIView+WebCache.h in Headers */ = {isa = PBXBuildFile; fileRef = 048103DFC8DAADF4924EEF0E3ACB98B3 /* UIView+WebCache.h */; settings = {ATTRIBUTES = (Project, ); }; }; @@ -607,37 +602,37 @@ 20BF5CE7BE71A52B947DC1A4AE28D316 /* FLEXNetworkObserver.h in Headers */ = {isa = PBXBuildFile; fileRef = FFA79E16FC807C133EC7583550C66FAE /* FLEXNetworkObserver.h */; settings = {ATTRIBUTES = (Project, ); }; }; 20EB0C959555CA07BD6B61CDDBE11D45 /* FIRCoreDiagnosticsData.h in Headers */ = {isa = PBXBuildFile; fileRef = 3D77FCCC3D68CE58388AE633913FFA2E /* FIRCoreDiagnosticsData.h */; settings = {ATTRIBUTES = (Project, ); }; }; 20F3535B1F7ACCD40CC3F44712CD9CDC /* FutureExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = 1A0C2324472838D2CD186B6034CDB790 /* FutureExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 211825B42C149FDE16AB9293734167D0 /* RNCMaskedView.m in Sources */ = {isa = PBXBuildFile; fileRef = 76877B6396E317E82104E62325077F2F /* RNCMaskedView.m */; }; - 213B9B68DC3F6022E7FFDD135E1ABD8D /* RCTUIManager.m in Sources */ = {isa = PBXBuildFile; fileRef = DCA1C7C9B7A061A8863BF690D3EB923E /* RCTUIManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 21678FAB2A21925B38DBE4A5F09D9462 /* QBCheckmarkView.m in Sources */ = {isa = PBXBuildFile; fileRef = 02948B026F500E93FBFD47F71D5FA2E7 /* QBCheckmarkView.m */; }; + 211825B42C149FDE16AB9293734167D0 /* RNCMaskedView.m in Sources */ = {isa = PBXBuildFile; fileRef = 3F0FA46A006F4936B0915FD4910BC10B /* RNCMaskedView.m */; }; + 213B9B68DC3F6022E7FFDD135E1ABD8D /* RCTUIManager.m in Sources */ = {isa = PBXBuildFile; fileRef = E31C7E7BE8DE6DB1A7A8A9D7B7E956F6 /* RCTUIManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 21678FAB2A21925B38DBE4A5F09D9462 /* QBCheckmarkView.m in Sources */ = {isa = PBXBuildFile; fileRef = CF73ACF3A238FB3533E91A67E3B4F996 /* QBCheckmarkView.m */; }; 216E9A9FA4AE8BBDB6045325BFDFE318 /* GDTCORDataFuture.h in Headers */ = {isa = PBXBuildFile; fileRef = E5A4F25F2D7AFB57D03250BEB9D49F7F /* GDTCORDataFuture.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2174099C49D405DC59157FBD71FFBB84 /* RCTComponentData.m in Sources */ = {isa = PBXBuildFile; fileRef = A63BDDDF32E66F00231F80FA87FAFA1B /* RCTComponentData.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 2174099C49D405DC59157FBD71FFBB84 /* RCTComponentData.m in Sources */ = {isa = PBXBuildFile; fileRef = F69088FF9137E1A22EA0E9359EBF6B96 /* RCTComponentData.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; 218095E8385F5B81616076F5FEE57FF1 /* String-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = BAF13A52C1805CF080B23ED25D66F46A /* String-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 218321FFB6A3945D5116AC9CE0A56C90 /* RCTScrollView.m in Sources */ = {isa = PBXBuildFile; fileRef = 57A13CEB3147F872D0A166EEF0D2A3E5 /* RCTScrollView.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 218321FFB6A3945D5116AC9CE0A56C90 /* RCTScrollView.m in Sources */ = {isa = PBXBuildFile; fileRef = CDFB8664DB7DD1B86FF333BE3F57BA18 /* RCTScrollView.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; 218C2CD18BC01A0818F35F5E5C5D1DBD /* utils.h in Headers */ = {isa = PBXBuildFile; fileRef = 262E9C9B6F4347B5DD35E88568FD8D34 /* utils.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 21C0D0A679B9CCC696330278C799F8AD /* REANodesManager.m in Sources */ = {isa = PBXBuildFile; fileRef = BF46B5AC65808FAC6FAB1387F3B820BE /* REANodesManager.m */; }; + 21C0D0A679B9CCC696330278C799F8AD /* REANodesManager.m in Sources */ = {isa = PBXBuildFile; fileRef = EC471A44E5989AB5888EDA3D721254CA /* REANodesManager.m */; }; 21CAFEA5CBFCD0604628CA55C0FF3B55 /* InterProcessLock_Android.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 89D828C290E303B1B3631F72A9FB86CD /* InterProcessLock_Android.cpp */; settings = {COMPILER_FLAGS = "-x objective-c++ -fno-objc-arc"; }; }; 21CE7333450F08EF85250BC221A8378F /* FrameSerializer.h in Headers */ = {isa = PBXBuildFile; fileRef = 3CBE4B35B932B5B32DE48A6B3EAE8C5A /* FrameSerializer.h */; settings = {ATTRIBUTES = (Project, ); }; }; 21D99EA5E9B43F6B82DAC00D69D4CA36 /* Demangle.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3D6234CA033ABFD8DB0D4C4A979F1E9B /* Demangle.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 21DC793624E2D6A11CD90371C27BEE98 /* UMNativeModulesProxy.h in Headers */ = {isa = PBXBuildFile; fileRef = 17CA2A15F132AD8F57DDE3E9D6AF1E11 /* UMNativeModulesProxy.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 21E3C4C434839DD4C6B1409CA7BAD0D1 /* SecureStorage.m in Sources */ = {isa = PBXBuildFile; fileRef = 3F49986B7019EA92B663E6C018816E88 /* SecureStorage.m */; }; - 22065F3C3410E475FF66D393E895C80C /* RCTReloadCommand.m in Sources */ = {isa = PBXBuildFile; fileRef = 3F23D900DBB1BA73C5A72BE100ABA7FB /* RCTReloadCommand.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 21DC793624E2D6A11CD90371C27BEE98 /* UMNativeModulesProxy.h in Headers */ = {isa = PBXBuildFile; fileRef = 7F2C3551358526086C077797F70C0A1F /* UMNativeModulesProxy.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 21E3C4C434839DD4C6B1409CA7BAD0D1 /* SecureStorage.m in Sources */ = {isa = PBXBuildFile; fileRef = 878FC1C39AF8FE865BCDF7AF930E9888 /* SecureStorage.m */; }; + 22065F3C3410E475FF66D393E895C80C /* RCTReloadCommand.m in Sources */ = {isa = PBXBuildFile; fileRef = 1DED3251A30B105D2548A9613D5B28EA /* RCTReloadCommand.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; 2232A04B30AA441CBA83D0A161F4879A /* Hazptr-fwd.h in Headers */ = {isa = PBXBuildFile; fileRef = 12A674432C94F3EE2ECEEA35BD0DB182 /* Hazptr-fwd.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2237479366E915EF661B72AD16D8D562 /* RCTEventEmitter.m in Sources */ = {isa = PBXBuildFile; fileRef = F694ADF7E89F02260066306FE0DFC658 /* RCTEventEmitter.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 2237479366E915EF661B72AD16D8D562 /* RCTEventEmitter.m in Sources */ = {isa = PBXBuildFile; fileRef = AC588D9B293EC8CC5098197C6EBA21AF /* RCTEventEmitter.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; 2245EF4DBC275D733C3FCC9F6898C137 /* InterProcessLock.h in Headers */ = {isa = PBXBuildFile; fileRef = 8732EC9F817772D591B4DAA3C772D474 /* InterProcessLock.h */; settings = {ATTRIBUTES = (Project, ); }; }; 224D23FFF43076B9FD6F06C90E360D15 /* FlipperClient.h in Headers */ = {isa = PBXBuildFile; fileRef = ADAEB1B80B33709735CAA46171F2C305 /* FlipperClient.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2261E5EFEA3462147B06E33E258A20D7 /* Bugsnag.h in Headers */ = {isa = PBXBuildFile; fileRef = 305863733A333402FB662DE3CD2030D9 /* Bugsnag.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 22723839F29BBBCECD42F4B049A49B82 /* experiments.h in Headers */ = {isa = PBXBuildFile; fileRef = 098A8102A7A2650315A84E65070320DA /* experiments.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 22881DB4DF4F9CA6C13901221A8B4E64 /* ModuleRegistry.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3ED925A34FE0D8E8329AD72EAB430562 /* ModuleRegistry.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 2261E5EFEA3462147B06E33E258A20D7 /* Bugsnag.h in Headers */ = {isa = PBXBuildFile; fileRef = 26DE4267CDFB8A8BA0F41D4EA688FB75 /* Bugsnag.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 22723839F29BBBCECD42F4B049A49B82 /* experiments.h in Headers */ = {isa = PBXBuildFile; fileRef = B8A348D562E30E21BD6AA5074E3588B9 /* experiments.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 22881DB4DF4F9CA6C13901221A8B4E64 /* ModuleRegistry.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FA09A621CBF22DF792A2770940A58C7F /* ModuleRegistry.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; 22C7732479406C077704539F33C6B97A /* FIRErrorCode.h in Headers */ = {isa = PBXBuildFile; fileRef = 7F6BA9C4D13FE5267F6561724E575CAF /* FIRErrorCode.h */; settings = {ATTRIBUTES = (Project, ); }; }; 22C8370E1153C875B7DC2D72E7141618 /* SparseByteSet.h in Headers */ = {isa = PBXBuildFile; fileRef = 2033EAA4F936C298EA59D434BB594FB2 /* SparseByteSet.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 22C893769DB69620D10DB6343A1BF40C /* RNRootViewGestureRecognizer.h in Headers */ = {isa = PBXBuildFile; fileRef = C3E03E5ED1D10385A09980AD737FA52F /* RNRootViewGestureRecognizer.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 22CEFC35D6BE5B9099CB736853ACAC54 /* KeyCommands-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = AF2EFFDCC67B24BCD8BB72BB6362E6B1 /* KeyCommands-dummy.m */; }; - 22F2DDCCF5DEDB634A650681FB7CB07A /* ARTSurfaceViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 59AC7D749ED5E79488C3134A037A83BC /* ARTSurfaceViewManager.m */; }; - 23017B19130C3458CFEBB6E7BCB5069D /* BugsnagReactNative.h in Headers */ = {isa = PBXBuildFile; fileRef = 2F6ED76AB342C2BED3A639A29841D55B /* BugsnagReactNative.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 22C893769DB69620D10DB6343A1BF40C /* RNRootViewGestureRecognizer.h in Headers */ = {isa = PBXBuildFile; fileRef = C1694424A9054A963D0F0EA5E69CFD36 /* RNRootViewGestureRecognizer.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 22CEFC35D6BE5B9099CB736853ACAC54 /* KeyCommands-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = DF6F7D50EDE38A3CC3865465EDE7ECE1 /* KeyCommands-dummy.m */; }; + 22F2DDCCF5DEDB634A650681FB7CB07A /* ARTSurfaceViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 4FA90284218FAB4C910CF0CD7D02CEE8 /* ARTSurfaceViewManager.m */; }; + 23017B19130C3458CFEBB6E7BCB5069D /* BugsnagReactNative.h in Headers */ = {isa = PBXBuildFile; fileRef = 0955127522441E460AE779ACA23C7C48 /* BugsnagReactNative.h */; settings = {ATTRIBUTES = (Project, ); }; }; 232F9E9093BAD90D351096CECD29DA28 /* SingletonThreadLocal.h in Headers */ = {isa = PBXBuildFile; fileRef = 12988D186411E3A76037468305A57D46 /* SingletonThreadLocal.h */; settings = {ATTRIBUTES = (Project, ); }; }; 235AF40BD4F72FA49078428998D61FBD /* YogaKit-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 978853D7DE99A100A1E0B34E3A260704 /* YogaKit-dummy.m */; }; - 2360A033327B7652C6D9880203BD6B92 /* react-native-cookies-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = DE2EECAC664F36FA7E21CB3C5AABB48E /* react-native-cookies-dummy.m */; }; + 2360A033327B7652C6D9880203BD6B92 /* react-native-cookies-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 4AD0D94ADB6F6074C7902E7BBE3758A8 /* react-native-cookies-dummy.m */; }; 237BC0466B44DD5F3E6DA103D60B1F9A /* diy-fp.cc in Sources */ = {isa = PBXBuildFile; fileRef = EAC0824FE9BC00556ED59DF1DD9078A7 /* diy-fp.cc */; settings = {COMPILER_FLAGS = "-Wno-unreachable-code"; }; }; 2386935D09F479BBB9F295EC266F04B9 /* CodedInputDataCrypt.h in Headers */ = {isa = PBXBuildFile; fileRef = C208C377500CB45E85C51BF651206F02 /* CodedInputDataCrypt.h */; settings = {ATTRIBUTES = (Project, ); }; }; 23B2A8DC0FF17D85A673F766AFFB887C /* FIRCLSAsyncOperation.h in Headers */ = {isa = PBXBuildFile; fileRef = 9C008C1F8B7D5C3D0ABD2E35A1E531BA /* FIRCLSAsyncOperation.h */; settings = {ATTRIBUTES = (Project, ); }; }; @@ -646,193 +641,193 @@ 23D3495C13258064F17B2596703252A6 /* ReentrantAllocator.h in Headers */ = {isa = PBXBuildFile; fileRef = 4BF09CDE71F1FF8C5D5DD40D1CE53E0C /* ReentrantAllocator.h */; settings = {ATTRIBUTES = (Project, ); }; }; 23DD6882410833B4985BF657DB0FF140 /* SDImageCachesManager.m in Sources */ = {isa = PBXBuildFile; fileRef = EBABD933AB71D28946D5A1ABEBFF45BA /* SDImageCachesManager.m */; }; 23F1FC28AA72EA008BB99CE077D749A1 /* GULAppEnvironmentUtil.h in Headers */ = {isa = PBXBuildFile; fileRef = 170EA1256DCB7A8BFF4CE9DCA88CCF10 /* GULAppEnvironmentUtil.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 244B2F0D8D99CE2ADB7C42CD74359271 /* RCTDevSettings.h in Headers */ = {isa = PBXBuildFile; fileRef = 03B00ACAA3137CF8B42479932AA84B11 /* RCTDevSettings.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 244B2F0D8D99CE2ADB7C42CD74359271 /* RCTDevSettings.h in Headers */ = {isa = PBXBuildFile; fileRef = 67E04919774EBE3A9E1B7AA65D274155 /* RCTDevSettings.h */; settings = {ATTRIBUTES = (Project, ); }; }; 2451B9C96658A869E74A857B030FCEC8 /* Launder.h in Headers */ = {isa = PBXBuildFile; fileRef = 57682730C5EEF91CD96A67BBDDCDEA8A /* Launder.h */; settings = {ATTRIBUTES = (Project, ); }; }; 24570C884E7B05506960B1ADE2EBA32E /* demux.h in Headers */ = {isa = PBXBuildFile; fileRef = 0DD0B61330B9878D2A0D152EF587ED4F /* demux.h */; settings = {ATTRIBUTES = (Project, ); }; }; 246E297E51662846FB8BC6A044BCC3EC /* ObservableDoOperator.h in Headers */ = {isa = PBXBuildFile; fileRef = 894E75CFCE337BC472BA115415977912 /* ObservableDoOperator.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 24A9E53DDD53486BEB3CD085E33ED239 /* RCTShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = 4F2D633E76287494814E1FC604145383 /* RCTShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 24B7B27A0E9EC7339CE561C62499C4CB /* RCTDiffClampAnimatedNode.h in Headers */ = {isa = PBXBuildFile; fileRef = FC1497F51ED6BD598D5BE9AE24266637 /* RCTDiffClampAnimatedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 24B97F4F26D06C097C3E12F6B68F04CD /* RNBackgroundTimer.h in Headers */ = {isa = PBXBuildFile; fileRef = E9999B8771EACECAFCB66F7CA9C71B92 /* RNBackgroundTimer.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 24D4E5CD578FCDBC8266ACFBB1121D22 /* BSG_KSSignalInfo.h in Headers */ = {isa = PBXBuildFile; fileRef = 45F3245C26DABB977EA20BA2530315D8 /* BSG_KSSignalInfo.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 24A9E53DDD53486BEB3CD085E33ED239 /* RCTShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = 2432A98B30D26D6A0EB943B7B4062D10 /* RCTShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 24B7B27A0E9EC7339CE561C62499C4CB /* RCTDiffClampAnimatedNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 18ABAE27442876292334E0FFA745E1DB /* RCTDiffClampAnimatedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 24B97F4F26D06C097C3E12F6B68F04CD /* RNBackgroundTimer.h in Headers */ = {isa = PBXBuildFile; fileRef = 4EE5F56CD5B36D1A2F93F85A7A7E33CE /* RNBackgroundTimer.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 24D4E5CD578FCDBC8266ACFBB1121D22 /* BSG_KSSignalInfo.h in Headers */ = {isa = PBXBuildFile; fileRef = 94532D180CFB10D28416D4AB053726F3 /* BSG_KSSignalInfo.h */; settings = {ATTRIBUTES = (Project, ); }; }; 24ED81916B4C6C2CC3FEDC51B7243AC3 /* FIRCLSURLSessionDataTask.m in Sources */ = {isa = PBXBuildFile; fileRef = CC1382387B408898BE667378601E65A0 /* FIRCLSURLSessionDataTask.m */; }; - 24EE577FD3F7BEC448651309507B47B3 /* RCTFont.h in Headers */ = {isa = PBXBuildFile; fileRef = 2BC358F51655E4F09B0743DEB24C139F /* RCTFont.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 24EE577FD3F7BEC448651309507B47B3 /* RCTFont.h in Headers */ = {isa = PBXBuildFile; fileRef = CF6E4A60E10A9EE1158AACE39FB504E7 /* RCTFont.h */; settings = {ATTRIBUTES = (Project, ); }; }; 2527839399261E620202C3D565C96224 /* EventBase.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 6040AA3445538DCFB1FE879336BF1102 /* EventBase.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; 253B8F7D7A49629E23C0CB07F17B27B8 /* ThreadLock_Win32.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 04BA0BD1CC68B0FFFDC1E257AC87BBDF /* ThreadLock_Win32.cpp */; settings = {COMPILER_FLAGS = "-x objective-c++ -fno-objc-arc"; }; }; - 254386EAFEC928CC400A4C6B0A246778 /* RCTTrackingAnimatedNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 29F2E4B180DDD47F010CB79BD33A19F5 /* RCTTrackingAnimatedNode.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + 254386EAFEC928CC400A4C6B0A246778 /* RCTTrackingAnimatedNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 082B8945EB9FF5BC4550ED07BCBAE377 /* RCTTrackingAnimatedNode.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; 25464C199156B6F34863455C64857399 /* bit_writer_utils.c in Sources */ = {isa = PBXBuildFile; fileRef = D6C5DD3FF13F6A2B8F4624FA65049297 /* bit_writer_utils.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; 254DA1EA2D8F42DAEA1F3EFC277AFD99 /* FIRCLSURLBuilder.m in Sources */ = {isa = PBXBuildFile; fileRef = 95164075C77A0ED9148AFA34AF9AFCCC /* FIRCLSURLBuilder.m */; }; - 2568CA3AD14417EA909027423302DEC3 /* RCTAdditionAnimatedNode.h in Headers */ = {isa = PBXBuildFile; fileRef = AB7D5065667112B69A7B32D5189ED029 /* RCTAdditionAnimatedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 256A71ECC4C437C86AC4E63790E9EEEE /* RCTSinglelineTextInputView.h in Headers */ = {isa = PBXBuildFile; fileRef = FF5849FF5BEEC0D287164A9684F89B35 /* RCTSinglelineTextInputView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2568CA3AD14417EA909027423302DEC3 /* RCTAdditionAnimatedNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 20A49CA9DE94DFE86B4BA259A03AA132 /* RCTAdditionAnimatedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 256A71ECC4C437C86AC4E63790E9EEEE /* RCTSinglelineTextInputView.h in Headers */ = {isa = PBXBuildFile; fileRef = 290849471BE6ACFDA1FF76063D549969 /* RCTSinglelineTextInputView.h */; settings = {ATTRIBUTES = (Project, ); }; }; 2578A917ADC1827F3D0717324949A259 /* FlipperState.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 39D749A4B1348C9699081C2A129C5607 /* FlipperState.cpp */; settings = {COMPILER_FLAGS = "-DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0 -Wall\n -std=c++14\n -Wno-global-constructors"; }; }; - 2583BD723D2434E07D584F78B2917D69 /* RCTBackedTextInputDelegateAdapter.m in Sources */ = {isa = PBXBuildFile; fileRef = 8DD04E2E3F09F73734B78C61CA50FDEE /* RCTBackedTextInputDelegateAdapter.m */; }; + 2583BD723D2434E07D584F78B2917D69 /* RCTBackedTextInputDelegateAdapter.m in Sources */ = {isa = PBXBuildFile; fileRef = EE125F69D84359A3F82864F3178CA6C3 /* RCTBackedTextInputDelegateAdapter.m */; }; 25B6D4193F34A5ABE3CA36A3E35CFE8A /* SysUio.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1C54E2024A58E50FF56C28D2288AA2E0 /* SysUio.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; 25CDA6B573F9FA265790119B75DE62BD /* FLEXNetworkTransaction.h in Headers */ = {isa = PBXBuildFile; fileRef = 082D79B728F74A2B01212186ED9B5B3A /* FLEXNetworkTransaction.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 25D05716DD4D36831130AEA70822D200 /* fr.lproj in Resources */ = {isa = PBXBuildFile; fileRef = 09558B8383ECB49A8A125922CB9388B6 /* fr.lproj */; }; - 25D1EE7FFDCEE0EBC3F03EB316E69F59 /* RNCCameraRollManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 2705064DEB16DB24F040925BCA5F6004 /* RNCCameraRollManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 25D05716DD4D36831130AEA70822D200 /* fr.lproj in Resources */ = {isa = PBXBuildFile; fileRef = A5F34A16C11A38336EDFB9799B19E9FC /* fr.lproj */; }; + 25D1EE7FFDCEE0EBC3F03EB316E69F59 /* RNCCameraRollManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 4DC75A2C7C2F0F85EDF4369731E1D6F6 /* RNCCameraRollManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; 25D70C544A35CB6F097D761400F7957A /* String.h in Headers */ = {isa = PBXBuildFile; fileRef = 094B208492CF8A55850C1DF164B54F3D /* String.h */; settings = {ATTRIBUTES = (Project, ); }; }; 25FAE9EB053A32C666CBD08A58F59158 /* VirtualEventBase.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3D54A3464FC502058D8DAEAB77A89182 /* VirtualEventBase.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; 2605224350F37496F63ADC7DC13F4AB0 /* ChannelResponder.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 0D2E437AE12824A83B8C1A82F77A3FD2 /* ChannelResponder.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0 -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; 2609A04370DD9D50963681824D65EDE1 /* FBLPromise+Retry.m in Sources */ = {isa = PBXBuildFile; fileRef = 7EBF0B3032A56309C27B438746A70349 /* FBLPromise+Retry.m */; }; - 2634951EA4A58AD624774365CD0E9C1E /* BSG_KSDynamicLinker.h in Headers */ = {isa = PBXBuildFile; fileRef = 0DE57190FDC2F44ED1F1772CD8BBFC8A /* BSG_KSDynamicLinker.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2634951EA4A58AD624774365CD0E9C1E /* BSG_KSDynamicLinker.h in Headers */ = {isa = PBXBuildFile; fileRef = ADD23CEF9C39316A212074A84541E003 /* BSG_KSDynamicLinker.h */; settings = {ATTRIBUTES = (Project, ); }; }; 26554D2B235A4A32E40C7DD6A9BA2A94 /* MMKV.h in Headers */ = {isa = PBXBuildFile; fileRef = C7EE0FFF94A2EA052B5C42F5347B57E1 /* MMKV.h */; settings = {ATTRIBUTES = (Project, ); }; }; 265A7C27AF6E0FB3AE07F79E4BA091CD /* Log.h in Headers */ = {isa = PBXBuildFile; fileRef = 172E4EA66F6FA3C4E3A133F4C547335D /* Log.h */; settings = {ATTRIBUTES = (Project, ); }; }; 2667D6A247BD464A6C85B15684C69FCF /* Unicode.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 329C548D9C662F038B5B5394345EB26B /* Unicode.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - 267C2F737F65B330EBA8141DAA2B8FB9 /* RCTNativeAnimatedNodesManager.h in Headers */ = {isa = PBXBuildFile; fileRef = EC83B127D59FD5EBB379F74AE245056C /* RCTNativeAnimatedNodesManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 26810F35A713E8B3EA3B64E41B3AC3F3 /* BSG_KSDynamicLinker.c in Sources */ = {isa = PBXBuildFile; fileRef = 0F35EB0C64A8531ECD14981713A8C2D1 /* BSG_KSDynamicLinker.c */; }; + 267C2F737F65B330EBA8141DAA2B8FB9 /* RCTNativeAnimatedNodesManager.h in Headers */ = {isa = PBXBuildFile; fileRef = CFF98EA85EA0DF705D768DE9D244C652 /* RCTNativeAnimatedNodesManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 26810F35A713E8B3EA3B64E41B3AC3F3 /* BSG_KSDynamicLinker.c in Sources */ = {isa = PBXBuildFile; fileRef = 39AC9E745BA68706B0AE89D9D66F8D50 /* BSG_KSDynamicLinker.c */; }; 2688470222A93D85CD64C619D255D87F /* StringKeyedCommon.h in Headers */ = {isa = PBXBuildFile; fileRef = 4587D2F17BE183AE3AA2838593FCB33F /* StringKeyedCommon.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 26894FBADF455438A2ABF1D85AFBB9B6 /* RCTURLRequestHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 236CD514762B113C1A45F11E0FDE64D4 /* RCTURLRequestHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 26894FBADF455438A2ABF1D85AFBB9B6 /* RCTURLRequestHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = BDDBBE05673016D2E8CDCD1A03E97BDA /* RCTURLRequestHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; 26DDB3ED21F8F75BF8715141466A6BBE /* SDWebImagePrefetcher.m in Sources */ = {isa = PBXBuildFile; fileRef = A540849F2EE5DF78C104A26980E4B083 /* SDWebImagePrefetcher.m */; }; - 26F0818B7A6B16A497714EB1358EBE27 /* QBSlomoIconView.m in Sources */ = {isa = PBXBuildFile; fileRef = D716DD4FC6378F8BA0A9B917F07B3743 /* QBSlomoIconView.m */; }; - 2723068A060BADB4A4184EBFC17E8519 /* BSG_KSCrashReportFilter.h in Headers */ = {isa = PBXBuildFile; fileRef = CEDDB49C0A0BEB0FADF67CA1046E43F9 /* BSG_KSCrashReportFilter.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 26F0818B7A6B16A497714EB1358EBE27 /* QBSlomoIconView.m in Sources */ = {isa = PBXBuildFile; fileRef = 936DC778B9AE5AF1EDC86AA43520F2D2 /* QBSlomoIconView.m */; }; + 2723068A060BADB4A4184EBFC17E8519 /* BSG_KSCrashReportFilter.h in Headers */ = {isa = PBXBuildFile; fileRef = 7276BB5A3FF9049045EFFA27F32B74A9 /* BSG_KSCrashReportFilter.h */; settings = {ATTRIBUTES = (Project, ); }; }; 272654FD85002EBB933D59A3241446E8 /* JemallocNodumpAllocator.h in Headers */ = {isa = PBXBuildFile; fileRef = 11C71A6B2DA5B6BE79A7FE5C1F2E6B42 /* JemallocNodumpAllocator.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 27286820324610E8A7D44CF991469562 /* RCTNetworking.h in Headers */ = {isa = PBXBuildFile; fileRef = 13BE659A6BB32780BE92A7BC3C7C9B52 /* RCTNetworking.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 27286820324610E8A7D44CF991469562 /* RCTNetworking.h in Headers */ = {isa = PBXBuildFile; fileRef = 4666F0B31DCA585F6B9ADA16B9208840 /* RCTNetworking.h */; settings = {ATTRIBUTES = (Project, ); }; }; 272D9765D662C5A0128895CF900A1B6B /* MMKV.h in Headers */ = {isa = PBXBuildFile; fileRef = 74839CFEA87170B641B5B759C7C8EBEC /* MMKV.h */; settings = {ATTRIBUTES = (Project, ); }; }; 274ED815FE397FA51E0AA17121A439BB /* StreamRequester.cpp in Sources */ = {isa = PBXBuildFile; fileRef = EF07638B1990430FC006C40DF347DFBC /* StreamRequester.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0 -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - 2778AB971254765A6E9A1CE6FDBD72D6 /* RCTWeakProxy.h in Headers */ = {isa = PBXBuildFile; fileRef = C235EA4E425F35F554BA2B92044A3ACE /* RCTWeakProxy.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 27919FD262843DFACE71BCB206F03B72 /* RCTSurfaceHostingProxyRootView.mm in Sources */ = {isa = PBXBuildFile; fileRef = 1A9107FC3F4CEAEA3FCC427E9402BEDA /* RCTSurfaceHostingProxyRootView.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 2778AB971254765A6E9A1CE6FDBD72D6 /* RCTWeakProxy.h in Headers */ = {isa = PBXBuildFile; fileRef = F2A43425DF1F3C91BF3FD4F21C29AD3C /* RCTWeakProxy.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 27919FD262843DFACE71BCB206F03B72 /* RCTSurfaceHostingProxyRootView.mm in Sources */ = {isa = PBXBuildFile; fileRef = 69E59662AE156BDD9E610549CBE8865A /* RCTSurfaceHostingProxyRootView.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; 27AE53BA3B396A44A19ED0A49B99798B /* FIRInstallationsAPIService.h in Headers */ = {isa = PBXBuildFile; fileRef = 542587AD8D684CE26F95275D3D6DCCCF /* FIRInstallationsAPIService.h */; settings = {ATTRIBUTES = (Project, ); }; }; 27AFC607943FF0399A91891DD6B277F3 /* Init.h in Headers */ = {isa = PBXBuildFile; fileRef = 7376B739BEFEFDDE1BE109B7653CC88D /* Init.h */; settings = {ATTRIBUTES = (Project, ); }; }; 27D12134205D8345146AE8EE0CDB6B01 /* FIROptionsInternal.h in Headers */ = {isa = PBXBuildFile; fileRef = 25F7E87473388FF62E1EF44A8044A21A /* FIROptionsInternal.h */; settings = {ATTRIBUTES = (Project, ); }; }; 27D2F28E456BBD5B5949B58110F3F676 /* GULKeychainUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = CBC5FD4C0CE7EEF0F505F247CAEE821D /* GULKeychainUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; 27D7BF69F512CC363019B94C7C8A14FD /* SKApplicationDescriptor.h in Headers */ = {isa = PBXBuildFile; fileRef = E66CC7D473469704A38825212367C8D9 /* SKApplicationDescriptor.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 27F00CF8429AAC30F86CB3128F75CD4D /* BSG_KSCrashSentry_NSException.h in Headers */ = {isa = PBXBuildFile; fileRef = E90F87632F6DCC999AA8B84657FFA97D /* BSG_KSCrashSentry_NSException.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 280340EB2BB4FBED12529AA52158B665 /* UMViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = E326041EF45B8F23447C77A17DB3EDDA /* UMViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 27F00CF8429AAC30F86CB3128F75CD4D /* BSG_KSCrashSentry_NSException.h in Headers */ = {isa = PBXBuildFile; fileRef = 07E46AF9C96EE50EE5FFB1E6032FC442 /* BSG_KSCrashSentry_NSException.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 280340EB2BB4FBED12529AA52158B665 /* UMViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 61254B3B4E4A82CE31D76E61CAD224AB /* UMViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; 280618340058F589CB897A134234D49C /* FIRCLSNetworkResponseHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = E7D680668C4D614965F1C3B7CF16E5FC /* FIRCLSNetworkResponseHandler.m */; }; - 2835A445128B2030E8F8CEE36AB8D209 /* RCTTurboModule.mm in Sources */ = {isa = PBXBuildFile; fileRef = 0F47700E673A622CD04C3474EC7AEC62 /* RCTTurboModule.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 284A85DB8967C6406D66174C08EF9821 /* RCTSurfaceStage.m in Sources */ = {isa = PBXBuildFile; fileRef = A0E3D551643091C512D0440DF27E283A /* RCTSurfaceStage.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 2835A445128B2030E8F8CEE36AB8D209 /* RCTTurboModule.mm in Sources */ = {isa = PBXBuildFile; fileRef = 8BEA473D1F6CF8A1358C4DBD28302476 /* RCTTurboModule.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 284A85DB8967C6406D66174C08EF9821 /* RCTSurfaceStage.m in Sources */ = {isa = PBXBuildFile; fileRef = 27666DEC379C23CE7A127AAD36CC062A /* RCTSurfaceStage.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; 28861AF52B24FE2B3F51FD4A8A00A722 /* SDWebImageDownloader.m in Sources */ = {isa = PBXBuildFile; fileRef = D3FF49BBB72A385DBC8A6E42EF72A889 /* SDWebImageDownloader.m */; }; - 288FA8C4E695B2DC905843C403206EF9 /* RCTImageUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = A343840D9224BB86367165F3C4598D4A /* RCTImageUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2890524395C72E909E591EB184C2E434 /* RCTConvert+ART.m in Sources */ = {isa = PBXBuildFile; fileRef = CC178B69A8951D7DD44E3380D74F180E /* RCTConvert+ART.m */; }; + 288FA8C4E695B2DC905843C403206EF9 /* RCTImageUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = 4A7C72C531674FE141DC42F4307DC998 /* RCTImageUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2890524395C72E909E591EB184C2E434 /* RCTConvert+ART.m in Sources */ = {isa = PBXBuildFile; fileRef = 1AA8A91C60BA6671113A4594AEE98240 /* RCTConvert+ART.m */; }; 28B75EC2EF15D6C571BD05A36F78FE38 /* FIRInstallationsLogger.h in Headers */ = {isa = PBXBuildFile; fileRef = 724FAB388B350D55C035622BD40F0C3D /* FIRInstallationsLogger.h */; settings = {ATTRIBUTES = (Project, ); }; }; 28BD2154EFEF4A904B84DFF396BD6598 /* SDAnimatedImageView+WebCache.m in Sources */ = {isa = PBXBuildFile; fileRef = 05C36B610E67067EB1DF01028DF5B045 /* SDAnimatedImageView+WebCache.m */; }; - 28BD2F6001854C546BDD58774DB9D9C9 /* IDStore.m in Sources */ = {isa = PBXBuildFile; fileRef = 5D825969D5BF6A91812A4A90C337F5D0 /* IDStore.m */; }; - 28C65AFE0EA39E92622AB93E71E10748 /* Color+Interpolation.h in Headers */ = {isa = PBXBuildFile; fileRef = DDBA323F70092B9A5A7C3702A096E6F6 /* Color+Interpolation.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 28BD2F6001854C546BDD58774DB9D9C9 /* IDStore.m in Sources */ = {isa = PBXBuildFile; fileRef = 2336BB0C3723DC4A5D1330D6AFBC0934 /* IDStore.m */; }; + 28C65AFE0EA39E92622AB93E71E10748 /* Color+Interpolation.h in Headers */ = {isa = PBXBuildFile; fileRef = BE24D304B739209FE3009067F0AECCCD /* Color+Interpolation.h */; settings = {ATTRIBUTES = (Project, ); }; }; 28F938C614393C2E27ED714D9579FC8E /* rescaler_utils.h in Headers */ = {isa = PBXBuildFile; fileRef = 55C8E8C591C46A9D06F786270C1060D5 /* rescaler_utils.h */; settings = {ATTRIBUTES = (Project, ); }; }; 28FFC4481C53A863062AE3B78DFDF30B /* SanitizeLeak.h in Headers */ = {isa = PBXBuildFile; fileRef = BB95FDE031FB25A2D1B2392B887ED18C /* SanitizeLeak.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2902A050FEEFD30F9A4A3361F13B0E0F /* BugsnagBreadcrumb.m in Sources */ = {isa = PBXBuildFile; fileRef = 1A6B8A76588B050F37838D0473CF9A6C /* BugsnagBreadcrumb.m */; }; + 2902A050FEEFD30F9A4A3361F13B0E0F /* BugsnagBreadcrumb.m in Sources */ = {isa = PBXBuildFile; fileRef = 79A8AB3833DF601341506044E5D99107 /* BugsnagBreadcrumb.m */; }; 290521ED71D65A6F7DBCB4673DF0084C /* Hash.h in Headers */ = {isa = PBXBuildFile; fileRef = 9D9D9A65222FA9A86B8147D0913D4418 /* Hash.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 29309B92356A2BAB35218BB42DA1F713 /* RNFBAppModule.m in Sources */ = {isa = PBXBuildFile; fileRef = 4AF9E7B8683D29B68734C324C35039C1 /* RNFBAppModule.m */; }; + 29309B92356A2BAB35218BB42DA1F713 /* RNFBAppModule.m in Sources */ = {isa = PBXBuildFile; fileRef = 5D05064985ABDECFAD90DAA8EA7A3E7B /* RNFBAppModule.m */; }; 295B0286CAB8B9811ACC7543683D1FD9 /* SwappableEventBase.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B52E5F294AC830CB71560C2923E82B0E /* SwappableEventBase.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0 -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - 296D898BEC1E0C044F3B8D3A60B09CA8 /* RCTWebSocketExecutor.mm in Sources */ = {isa = PBXBuildFile; fileRef = 3F3CC24B132DD75E565BFEF28EAEDC5A /* RCTWebSocketExecutor.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + 296D898BEC1E0C044F3B8D3A60B09CA8 /* RCTWebSocketExecutor.mm in Sources */ = {isa = PBXBuildFile; fileRef = 4FEE944880F89AA298E1FA6DA1AEB54E /* RCTWebSocketExecutor.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; 296F07BAEFF63EE74DBFD1A4936E42BF /* RSocketServerState.h in Headers */ = {isa = PBXBuildFile; fileRef = 14C6DE34A9B04BD83040B031CFC770D1 /* RSocketServerState.h */; settings = {ATTRIBUTES = (Project, ); }; }; 2977CE25D3D95A6820F6B47674C6CBA6 /* FrameSerializer_v1_0.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F5B69ACDE600B57F0CFEF501D0CD65F5 /* FrameSerializer_v1_0.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0 -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; 2987B38812445E03CDA22FA3542465CB /* RSocketTransport.h in Headers */ = {isa = PBXBuildFile; fileRef = 23E0F83B878A2015EE63E9131CE3F4E4 /* RSocketTransport.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 298B5EAD78FFE7E758B7A259FCDD8D92 /* SystraceSection.h in Headers */ = {isa = PBXBuildFile; fileRef = 281680EF1F0C0F8D5876B932CC6961E6 /* SystraceSection.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2994820A161009C46BCA0F5CE653EA23 /* UMInternalModule.h in Headers */ = {isa = PBXBuildFile; fileRef = E63D21F31C86A64959F3CEB07B455B61 /* UMInternalModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 298B5EAD78FFE7E758B7A259FCDD8D92 /* SystraceSection.h in Headers */ = {isa = PBXBuildFile; fileRef = C70A85CAA4162AF005A26A1D36DEA399 /* SystraceSection.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2994820A161009C46BCA0F5CE653EA23 /* UMInternalModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 36FAA34B9091992AC29AD6C429424384 /* UMInternalModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; 29A78422CB94171C606F76CBF757733B /* TcpDuplexConnection.h in Headers */ = {isa = PBXBuildFile; fileRef = 1B32C813FCD1F6971FA1A058EAC37DC9 /* TcpDuplexConnection.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 29AA552CD92596EE4CB2D40D9199DF49 /* RCTFrameAnimation.h in Headers */ = {isa = PBXBuildFile; fileRef = 802F1E5044088756BCC0B69978F93897 /* RCTFrameAnimation.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 29BE103541578385234026751F8ACE67 /* RNRootView-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = D1207207F6CE5936DB18C2F8BAC8279E /* RNRootView-dummy.m */; }; - 29C76EA154E7BC8F64DEC1AD70828040 /* EXSessionResumableDownloadTaskDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = 312D6C38A39D7D464027E4AC1F6CA3F6 /* EXSessionResumableDownloadTaskDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 29AA552CD92596EE4CB2D40D9199DF49 /* RCTFrameAnimation.h in Headers */ = {isa = PBXBuildFile; fileRef = 44876E888F86BD38FFCF21901E02AFE2 /* RCTFrameAnimation.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 29BE103541578385234026751F8ACE67 /* RNRootView-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 57CDFDB0156BBE2F00007E46835F25AB /* RNRootView-dummy.m */; }; + 29C76EA154E7BC8F64DEC1AD70828040 /* EXSessionResumableDownloadTaskDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = 430F4B67EE4F003FA1DE540BE9E380EF /* EXSessionResumableDownloadTaskDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; }; 29E521245A004DB310199277B79CA0B0 /* GULReachabilityChecker.h in Headers */ = {isa = PBXBuildFile; fileRef = 7E59ED8665250F877CE5436A11220676 /* GULReachabilityChecker.h */; settings = {ATTRIBUTES = (Project, ); }; }; 29F867CC77079A89831B16FFA6DC2650 /* FIRCLSSettings.m in Sources */ = {isa = PBXBuildFile; fileRef = A124B205AD056AE7D5175FB2AEFBB3FA /* FIRCLSSettings.m */; }; - 29F9DF5B489E9D84B67ED4897106E0BB /* UMAppDelegateWrapper.h in Headers */ = {isa = PBXBuildFile; fileRef = 095520942B02639F2E03356974350135 /* UMAppDelegateWrapper.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 29F9DF5B489E9D84B67ED4897106E0BB /* UMAppDelegateWrapper.h in Headers */ = {isa = PBXBuildFile; fileRef = 129F978EBF8760785DAABFC36BA4AD08 /* UMAppDelegateWrapper.h */; settings = {ATTRIBUTES = (Project, ); }; }; 2A0DEF39A6E17704E3036529DA24F634 /* FIRCLSPackageReportOperation.m in Sources */ = {isa = PBXBuildFile; fileRef = 690512D5B3049B47B2D6F5D44044199F /* FIRCLSPackageReportOperation.m */; }; - 2A13E0D6D5598EB9B57F78F3CD74774E /* EXVideoThumbnailsModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 65E7D4CADD6D7D593295ED52EE638F6B /* EXVideoThumbnailsModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2A271C1605508A90C3BA1EAB6BAADC3E /* react-native-document-picker-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 9D7522F84C8F35A7C9E425262305F26D /* react-native-document-picker-dummy.m */; }; - 2A4B51F99520FA613DB0EE3453ADF6DE /* BugsnagSessionTracker.h in Headers */ = {isa = PBXBuildFile; fileRef = F8E55E3F385908F2072A92C91ACFD718 /* BugsnagSessionTracker.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2A13E0D6D5598EB9B57F78F3CD74774E /* EXVideoThumbnailsModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 7C975B5ECD7E79749EEB6A5A2822237B /* EXVideoThumbnailsModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2A271C1605508A90C3BA1EAB6BAADC3E /* react-native-document-picker-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = B41C2605360ABB58B9F50AD61D16C9F3 /* react-native-document-picker-dummy.m */; }; + 2A4B51F99520FA613DB0EE3453ADF6DE /* BugsnagSessionTracker.h in Headers */ = {isa = PBXBuildFile; fileRef = 0A3FAE4B5FB2A07F5E1F06F05C543414 /* BugsnagSessionTracker.h */; settings = {ATTRIBUTES = (Project, ); }; }; 2A55289CBCBD22F409A68DB6A7D7DE51 /* FlipperResponder.h in Headers */ = {isa = PBXBuildFile; fileRef = 3CD3466D9D3651B36C3E28D89CD26C97 /* FlipperResponder.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2A562D24A7AAE2C56E777116ADCA60F7 /* BSG_KSCrashSentry_MachException.h in Headers */ = {isa = PBXBuildFile; fileRef = 493F59935E3C8D6F7007BE5F62DDA46E /* BSG_KSCrashSentry_MachException.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2A562D24A7AAE2C56E777116ADCA60F7 /* BSG_KSCrashSentry_MachException.h in Headers */ = {isa = PBXBuildFile; fileRef = BD96C5CA8DE17ACBCDA763322BA77B4A /* BSG_KSCrashSentry_MachException.h */; settings = {ATTRIBUTES = (Project, ); }; }; 2A996496C046119E9D62610932CC69FD /* FlowableTimeoutOperator.h in Headers */ = {isa = PBXBuildFile; fileRef = 72CE922B3754DEF832DD70ABE9EF23FC /* FlowableTimeoutOperator.h */; settings = {ATTRIBUTES = (Project, ); }; }; 2B174A54A84B51ADFBD45E40110F0D25 /* AsyncTimeout.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 17A7DBE9DC87F5C81E3903AB4A98AE86 /* AsyncTimeout.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; 2B1E991CC4B64389ECA30647B4B02A1A /* EventBaseBackendBase.cpp in Sources */ = {isa = PBXBuildFile; fileRef = C962D0DC80FED44299F607709C19F307 /* EventBaseBackendBase.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; 2B1F6427C89945A50F4E08BF8BF414EF /* FIRCLSSymbolicationOperation.m in Sources */ = {isa = PBXBuildFile; fileRef = 176F21493F611F5287867F3BBAEDF283 /* FIRCLSSymbolicationOperation.m */; }; 2B2178E0C1127FA94AF674E20EE28590 /* FIRCLSURLSessionTask_PrivateMethods.h in Headers */ = {isa = PBXBuildFile; fileRef = 4ED27D63CA277829D5E58F99430AD316 /* FIRCLSURLSessionTask_PrivateMethods.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2B2A1CCDBA8AD8D264967730D01F3FA4 /* UMPermissionsMethodsDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = F7532FDDCD1684DD12B86151F0A1AD2E /* UMPermissionsMethodsDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2B2A1CCDBA8AD8D264967730D01F3FA4 /* UMPermissionsMethodsDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = EF8D483D01F8555E1F06C4003856A678 /* UMPermissionsMethodsDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; }; 2B2FAFDA8347BE2821FED5D48AB3A547 /* EventBase.h in Headers */ = {isa = PBXBuildFile; fileRef = ABC56A6AFDB3B1D8D1444AF070284180 /* EventBase.h */; settings = {ATTRIBUTES = (Project, ); }; }; 2B79DAF1B46E07D72A44DCAFB639C819 /* FlipperConnection.h in Headers */ = {isa = PBXBuildFile; fileRef = E57CEE4E9E6CBCC8D49BA0D9953325A5 /* FlipperConnection.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2B7DBD7D59B186F3C8B36E7130AE70F8 /* BSG_KSCrashCallCompletion.m in Sources */ = {isa = PBXBuildFile; fileRef = 47C4BF0B542880B1B7650996662A4FD5 /* BSG_KSCrashCallCompletion.m */; }; + 2B7DBD7D59B186F3C8B36E7130AE70F8 /* BSG_KSCrashCallCompletion.m in Sources */ = {isa = PBXBuildFile; fileRef = 7C686C22A7820E23E792CFE7CEC34194 /* BSG_KSCrashCallCompletion.m */; }; 2BA0D059223373A39DCB8B59BD18557C /* StringKeyedMap.h in Headers */ = {isa = PBXBuildFile; fileRef = 28E4EFE5ABDFAAE5543E2DC0B5E63800 /* StringKeyedMap.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2BA5E72B097706E7B6DF0824EE7B38E4 /* RCTRawTextViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = FF05DCF7ACB2BA0BEF6AAFDE1F9C4D62 /* RCTRawTextViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2BA5E72B097706E7B6DF0824EE7B38E4 /* RCTRawTextViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 7A92ECAC3A1F2597E7F6F4A3743E5804 /* RCTRawTextViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; 2BB382DB7792FE1E8269B4710E90EFFE /* Random.h in Headers */ = {isa = PBXBuildFile; fileRef = CE2D88A61843F3737848C2E03DD731B9 /* Random.h */; settings = {ATTRIBUTES = (Project, ); }; }; 2BD172C6FB7DF31CC3EFA3CE085B4126 /* predictor_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = C449A9FDFBF4AB6D4736B5436DA11E93 /* predictor_enc.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 2C25A98EEEBCA168F5887C14296594A5 /* RNFBAnalyticsModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 6177603ABD5E6068DCA851802480FD23 /* RNFBAnalyticsModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2C25A98EEEBCA168F5887C14296594A5 /* RNFBAnalyticsModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 636CCC2E08CE0BD5443FB0D8F435BEDF /* RNFBAnalyticsModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; 2C3B255F956C9C6A0E4B6E561C0908A0 /* FIRHeartbeatInfo.h in Headers */ = {isa = PBXBuildFile; fileRef = 3C67B195860C64A4CC32AB983E044735 /* FIRHeartbeatInfo.h */; settings = {ATTRIBUTES = (Project, ); }; }; 2C3BF5D6B72169E95EC76AE52DF6EE74 /* GULAppEnvironmentUtil.h in Headers */ = {isa = PBXBuildFile; fileRef = E4A4E7E72061108B2D150068D7ABBEA5 /* GULAppEnvironmentUtil.h */; settings = {ATTRIBUTES = (Project, ); }; }; 2C3D875B1658DA6BC9946D437202C839 /* ExceptionWrapper-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 2DF33430257562D27ABB73A05C9ED0FD /* ExceptionWrapper-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; 2C4554B6732E389B6C115718BD45701D /* SDWebImageManager.m in Sources */ = {isa = PBXBuildFile; fileRef = ED870C9ED962185FC40C795711DB2309 /* SDWebImageManager.m */; }; - 2C652747EE70859A27875F8E9CF02BFB /* BSG_KSCrash.h in Headers */ = {isa = PBXBuildFile; fileRef = 8A866499E67676965E5122117BBF92D0 /* BSG_KSCrash.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2C652747EE70859A27875F8E9CF02BFB /* BSG_KSCrash.h in Headers */ = {isa = PBXBuildFile; fileRef = F75E69124B8637524684F5C0D01634D4 /* BSG_KSCrash.h */; settings = {ATTRIBUTES = (Project, ); }; }; 2C6D65B3FBD38D8AD43897EBAE585914 /* VirtualEventBase.h in Headers */ = {isa = PBXBuildFile; fileRef = 9143FB31FA4301876510AD9235A3C234 /* VirtualEventBase.h */; settings = {ATTRIBUTES = (Project, ); }; }; 2C813CFB5B807A3B361E5EC77152152D /* Dirent.h in Headers */ = {isa = PBXBuildFile; fileRef = B7F5850370B91FC626DA274DA5B4D8CF /* Dirent.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2C89CAC103055E4326DDE29E97713CE6 /* UMReactNativeAdapter-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 82EDC9A83B4EE9F8225B22D6596A9BF0 /* UMReactNativeAdapter-dummy.m */; }; - 2CDAC043E586A4E33786C82BEFBB0DBF /* RNRootViewGestureRecognizer.m in Sources */ = {isa = PBXBuildFile; fileRef = E3B49A93FCEE5A690E853AB1D1E4554F /* RNRootViewGestureRecognizer.m */; }; + 2C89CAC103055E4326DDE29E97713CE6 /* UMReactNativeAdapter-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 6F8A5C3E8294C04389D92A3125B0AF81 /* UMReactNativeAdapter-dummy.m */; }; + 2CDAC043E586A4E33786C82BEFBB0DBF /* RNRootViewGestureRecognizer.m in Sources */ = {isa = PBXBuildFile; fileRef = 3E1073C68C346E573EBD24D1AE3E1397 /* RNRootViewGestureRecognizer.m */; }; 2CDF546927B5C2B907189A98C7975D20 /* Folly-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 180B5A25AD0875E50337E7AED56B3FC7 /* Folly-dummy.m */; }; - 2CE08EC7BA09068921151F10810607FF /* RNJitsiMeetView.h in Headers */ = {isa = PBXBuildFile; fileRef = C93CF245B68730A4106CB88F659BCF9D /* RNJitsiMeetView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2D0A56A134A6012A79743F0D698D2FE6 /* BSG_KSMach_x86_64.c in Sources */ = {isa = PBXBuildFile; fileRef = 9095A8339EAF826F8FB8A8E2D6AAA2D5 /* BSG_KSMach_x86_64.c */; }; - 2D0E5271D5737630B32CBDBE8AF16971 /* UMReactNativeEventEmitter.m in Sources */ = {isa = PBXBuildFile; fileRef = DA8E28304FBC90A93EA01E8D75BBB1F9 /* UMReactNativeEventEmitter.m */; }; - 2D4F89F7C9287A170B0F740EC54250A9 /* JSDeltaBundleClient.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 0E3BA941AFEBE0FBEA5D4A1BF58490AC /* JSDeltaBundleClient.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 2CE08EC7BA09068921151F10810607FF /* RNJitsiMeetView.h in Headers */ = {isa = PBXBuildFile; fileRef = 9C32669A17D6C47E7847952EB929DA10 /* RNJitsiMeetView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2D0A56A134A6012A79743F0D698D2FE6 /* BSG_KSMach_x86_64.c in Sources */ = {isa = PBXBuildFile; fileRef = 50B6AD4B9670098A8950CE549EDEAE3A /* BSG_KSMach_x86_64.c */; }; + 2D0E5271D5737630B32CBDBE8AF16971 /* UMReactNativeEventEmitter.m in Sources */ = {isa = PBXBuildFile; fileRef = 70ED4C090E9C8B63638B22398994C693 /* UMReactNativeEventEmitter.m */; }; + 2D4F89F7C9287A170B0F740EC54250A9 /* JSDeltaBundleClient.cpp in Sources */ = {isa = PBXBuildFile; fileRef = C046213BDED8227491C0BB0BEFD48FF1 /* JSDeltaBundleClient.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; 2D580680A39DA70D8DB124C245133BDF /* GDTCORUploadPackage.h in Headers */ = {isa = PBXBuildFile; fileRef = 2F657A85EE3B3EEC36D93838FDAA2691 /* GDTCORUploadPackage.h */; settings = {ATTRIBUTES = (Project, ); }; }; 2D694F7CE9D45055A16D697A5E1904DC /* MMKV_Android.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 878EB6EEBF09463E2211023187B5CB3E /* MMKV_Android.cpp */; settings = {COMPILER_FLAGS = "-x objective-c++ -fno-objc-arc"; }; }; - 2D6E4A8FA72DBF4B17F5A90BB3907D43 /* MethodCall.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 5CB7E1115201551D332C260A83C0DE6F /* MethodCall.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 2D6E4A8FA72DBF4B17F5A90BB3907D43 /* MethodCall.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3C726C2821E39B78211ECB184B1D69B4 /* MethodCall.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; 2D94B903B687465A1A40CEBEE7FEC6E9 /* Frame.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 896DFE496A3123614B651C512D768D4B /* Frame.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0 -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; 2DA35D42BF0B0C032E2F748E77024EF1 /* GDTCOREventTransformer.h in Headers */ = {isa = PBXBuildFile; fileRef = B4708E70C3180E114A6D1632FEE02F33 /* GDTCOREventTransformer.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2DB22E12311D8997E24299894A851B73 /* RCTJavaScriptLoader.mm in Sources */ = {isa = PBXBuildFile; fileRef = 91D26622E5B73F31C2DB5F3294D5D338 /* RCTJavaScriptLoader.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 2DBA8808EF576DA281E80206CE971B4C /* BSG_KSJSONCodecObjC.m in Sources */ = {isa = PBXBuildFile; fileRef = AAAB492F87854663F71527702CB6F7D4 /* BSG_KSJSONCodecObjC.m */; }; - 2DF44A8E498D24AD11EAB4457C903A35 /* RCTTextAttributes.h in Headers */ = {isa = PBXBuildFile; fileRef = 871FA97F338B8CD054EEFA3F08E19EFF /* RCTTextAttributes.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2DFBFFD316D99769440CDF4C2B78D24A /* RCTPointerEvents.h in Headers */ = {isa = PBXBuildFile; fileRef = 367C34093ECA2E67BD089EBD9DB8457E /* RCTPointerEvents.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2E014AAF39426DBC26D47DBDC691ED5F /* REATransitionValues.m in Sources */ = {isa = PBXBuildFile; fileRef = D4AF643DEB251276A81EC8063A9F053F /* REATransitionValues.m */; }; + 2DB22E12311D8997E24299894A851B73 /* RCTJavaScriptLoader.mm in Sources */ = {isa = PBXBuildFile; fileRef = 7EF75E243F857CEAB85C1D0ACBF17B73 /* RCTJavaScriptLoader.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 2DBA8808EF576DA281E80206CE971B4C /* BSG_KSJSONCodecObjC.m in Sources */ = {isa = PBXBuildFile; fileRef = 2FDFDE9284FAFA29E93E69931DBB6D93 /* BSG_KSJSONCodecObjC.m */; }; + 2DF44A8E498D24AD11EAB4457C903A35 /* RCTTextAttributes.h in Headers */ = {isa = PBXBuildFile; fileRef = A8D1A7983A5CF6063297A9684D14E48F /* RCTTextAttributes.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2DFBFFD316D99769440CDF4C2B78D24A /* RCTPointerEvents.h in Headers */ = {isa = PBXBuildFile; fileRef = 0E3666B201224AEA5752F509B548A672 /* RCTPointerEvents.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2E014AAF39426DBC26D47DBDC691ED5F /* REATransitionValues.m in Sources */ = {isa = PBXBuildFile; fileRef = 418C567F66532F9B89662F5044CF75A0 /* REATransitionValues.m */; }; 2E08E47CF3B7BCEAB85479248233BE52 /* SKObject.mm in Sources */ = {isa = PBXBuildFile; fileRef = 5D47E74EDA59580CDDFB291043FB6694 /* SKObject.mm */; settings = {COMPILER_FLAGS = "-DDEBUG=1 -DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0"; }; }; 2E2231D94E15FDF42AE50823012030E6 /* FIRCLSURLSessionDownloadTask.m in Sources */ = {isa = PBXBuildFile; fileRef = EE251821BE57AC0A1AEB7709AAB470E9 /* FIRCLSURLSessionDownloadTask.m */; }; - 2E6F0A55CDFA67BC49706659C4E7732C /* RCTRedBoxExtraDataViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = 3EA3048D138BB2659A8B1B01BBDA9042 /* RCTRedBoxExtraDataViewController.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2E6F0A55CDFA67BC49706659C4E7732C /* RCTRedBoxExtraDataViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = BBE264BBFCC27844270969A8D76274D6 /* RCTRedBoxExtraDataViewController.h */; settings = {ATTRIBUTES = (Project, ); }; }; 2E78136632F05B8D8F8CCA6F8B62AB6D /* SDAnimatedImage.m in Sources */ = {isa = PBXBuildFile; fileRef = 2F6398AD8936BEFE99D1B77E39D38A53 /* SDAnimatedImage.m */; }; 2E83BF4915475A6156DFD0FECFB1EBED /* FIRCLSNetworkResponseHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 4EBA92B532BE23DFCB3F304972B74DEB /* FIRCLSNetworkResponseHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2E87AE1BD8357FD18AEBF781CDB114DD /* RCTTVNavigationEventEmitter.mm in Sources */ = {isa = PBXBuildFile; fileRef = E3B79DE2369078DE3FAD967AEE3A37B5 /* RCTTVNavigationEventEmitter.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; - 2EAA7260E75EE7E804FD4D7629D977F6 /* BugsnagHandledState.m in Sources */ = {isa = PBXBuildFile; fileRef = 5892DD31D90BCEF5E3B5507CAEA2EE67 /* BugsnagHandledState.m */; }; + 2E87AE1BD8357FD18AEBF781CDB114DD /* RCTTVNavigationEventEmitter.mm in Sources */ = {isa = PBXBuildFile; fileRef = 95B91A66CA8605937DD44B8BCE56913F /* RCTTVNavigationEventEmitter.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + 2EAA7260E75EE7E804FD4D7629D977F6 /* BugsnagHandledState.m in Sources */ = {isa = PBXBuildFile; fileRef = 41FB6A343FFAD380319589F5195849A6 /* BugsnagHandledState.m */; }; 2EAF41297C07BA08EDDBED38825EFD51 /* ApplyTuple.h in Headers */ = {isa = PBXBuildFile; fileRef = CAA202053FC287A8CB5D0500F5A2EA2E /* ApplyTuple.h */; settings = {ATTRIBUTES = (Project, ); }; }; 2EB201AFA7B7067271DF082293CF9112 /* Format.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 486C141CD8F90940D6398170558F0B40 /* Format.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - 2EC239D84B20011AE1A05A0CFCE4E647 /* EXAudioSessionManager.m in Sources */ = {isa = PBXBuildFile; fileRef = DBCB6C3D8A29BA1B09704D4B302D1E3E /* EXAudioSessionManager.m */; }; - 2EC31DCBB9D25E22DD02285D8B3DF6D8 /* Utils.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 4EA4CC2A061E9F9A7572AA7386EE9278 /* Utils.cpp */; settings = {COMPILER_FLAGS = "-fno-omit-frame-pointer -fexceptions -Wall -Werror -std=c++1y -fPIC -fno-objc-arc"; }; }; - 2EFB6FFB66B48DA53A0F4BBCA76AA584 /* TurboModuleUtils.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 49BCB1B013AE59C44FF4F38FDAC4FFDD /* TurboModuleUtils.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 2F010BF0579721E5DE0EAB9E0285DBF7 /* EXPermissions.h in Headers */ = {isa = PBXBuildFile; fileRef = D80BE1CEFF36FC5B2A2A5E1D5275D4FB /* EXPermissions.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2EC239D84B20011AE1A05A0CFCE4E647 /* EXAudioSessionManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 8DEFFA9061DBC18CEFC789336C38F614 /* EXAudioSessionManager.m */; }; + 2EC31DCBB9D25E22DD02285D8B3DF6D8 /* Utils.cpp in Sources */ = {isa = PBXBuildFile; fileRef = AA0DF8BF95726112B5ACADB8FCC15893 /* Utils.cpp */; settings = {COMPILER_FLAGS = "-fno-omit-frame-pointer -fexceptions -Wall -Werror -std=c++1y -fPIC -fno-objc-arc"; }; }; + 2EFB6FFB66B48DA53A0F4BBCA76AA584 /* TurboModuleUtils.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 5B5ED57220183E7BAC4E525CC7ED74A8 /* TurboModuleUtils.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 2F010BF0579721E5DE0EAB9E0285DBF7 /* EXPermissions.h in Headers */ = {isa = PBXBuildFile; fileRef = 437EEDF51183CE95AF08B8B294DDB401 /* EXPermissions.h */; settings = {ATTRIBUTES = (Project, ); }; }; 2F0866F00F6C9E03A155240059CAB72F /* FIRInstallationsStoredItem.h in Headers */ = {isa = PBXBuildFile; fileRef = F11B264A0686C7D8C3555BD6888B003A /* FIRInstallationsStoredItem.h */; settings = {ATTRIBUTES = (Project, ); }; }; 2F358CCBC15C773B0E8BC8B20277192E /* NSImage+Compatibility.h in Headers */ = {isa = PBXBuildFile; fileRef = 72B556795D8C4553211AD8B77C5E48B1 /* NSImage+Compatibility.h */; settings = {ATTRIBUTES = (Project, ); }; }; 2F3762F547283D037D6BF8A882085851 /* IOVec.h in Headers */ = {isa = PBXBuildFile; fileRef = BBA8A54B05081EB535BC185B038426E7 /* IOVec.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2F3E6CFDE51DA53D85F9F0B1E585D2C2 /* RNCAppearanceProvider.h in Headers */ = {isa = PBXBuildFile; fileRef = 49016DEC42E0326308CC1D75DD26B6AA /* RNCAppearanceProvider.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2F8D86B45F6C017F24D0EFE5DD9D7090 /* RCTSinglelineTextInputView.m in Sources */ = {isa = PBXBuildFile; fileRef = 58C18FE91FB67242278A44685447B26F /* RCTSinglelineTextInputView.m */; }; + 2F3E6CFDE51DA53D85F9F0B1E585D2C2 /* RNCAppearanceProvider.h in Headers */ = {isa = PBXBuildFile; fileRef = C94DF131D2C7A1143299D52FEDA5F08D /* RNCAppearanceProvider.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2F8D86B45F6C017F24D0EFE5DD9D7090 /* RCTSinglelineTextInputView.m in Sources */ = {isa = PBXBuildFile; fileRef = 119546EB68A8A19D1526AA9274BCF7B0 /* RCTSinglelineTextInputView.m */; }; 2FA7A5A12876AA7C4D5903A9C5B74B3A /* Spin.h in Headers */ = {isa = PBXBuildFile; fileRef = 41190A372C1F0B2BB22D5CFEFCD71099 /* Spin.h */; settings = {ATTRIBUTES = (Project, ); }; }; 2FAC55AC7BD8FB1CF23FA3CA8E565835 /* GDTCORUploadPackage_Private.h in Headers */ = {isa = PBXBuildFile; fileRef = A090123081DFFADF3C37F389302B64E2 /* GDTCORUploadPackage_Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2FBA4398F071A3C8100B7C6197EC3A87 /* RCTBorderDrawing.h in Headers */ = {isa = PBXBuildFile; fileRef = 33D8BB538F1828D9A00AA9BC55D2FCC3 /* RCTBorderDrawing.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2FC9EFE233B0C9B052804D8AE958BBE3 /* RCTDefines.h in Headers */ = {isa = PBXBuildFile; fileRef = DC18B65FA697E00B9EF9F7CD384F632B /* RCTDefines.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2FD4B4FDABB52A6DCA4FB1C226626F15 /* RCTDisplayWeakRefreshable.h in Headers */ = {isa = PBXBuildFile; fileRef = 8BB70D45E218B6BDD9C887EEC783FEA2 /* RCTDisplayWeakRefreshable.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2FD56DFD6405D75AC16D258A4AC0F49F /* RNCWebViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = D66CDF8109FBBA67E2B56878CF69AFE9 /* RNCWebViewManager.m */; }; + 2FBA4398F071A3C8100B7C6197EC3A87 /* RCTBorderDrawing.h in Headers */ = {isa = PBXBuildFile; fileRef = 5017E37A73391D7682EFB3F743ACF5CF /* RCTBorderDrawing.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2FC9EFE233B0C9B052804D8AE958BBE3 /* RCTDefines.h in Headers */ = {isa = PBXBuildFile; fileRef = 47A0B6814246A0469242343FA7ADCE6F /* RCTDefines.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2FD4B4FDABB52A6DCA4FB1C226626F15 /* RCTDisplayWeakRefreshable.h in Headers */ = {isa = PBXBuildFile; fileRef = C6F1ECB36B10C29F123B5F00F2EE35C5 /* RCTDisplayWeakRefreshable.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2FD56DFD6405D75AC16D258A4AC0F49F /* RNCWebViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = D66681FA13DF6C416DA9E4ADAB3D561B /* RNCWebViewManager.m */; }; 2FE803AD2F6A7E8DC5898A9563ADF11E /* SDWebImageDownloaderConfig.m in Sources */ = {isa = PBXBuildFile; fileRef = 35A494A764DF4FE9DAE895F6592A6FEE /* SDWebImageDownloaderConfig.m */; }; - 2FF8F8DE155B0BA7D1825884704AC747 /* RCTBaseTextShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = A677CF88C75F1C80A59F60569405718A /* RCTBaseTextShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2FF8F8DE155B0BA7D1825884704AC747 /* RCTBaseTextShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = B7FDE4513DB617FCC57BE7A7D3369E80 /* RCTBaseTextShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; 2FFC3171E324205FFD9FA0A70048475B /* FIRInstallationsStatus.h in Headers */ = {isa = PBXBuildFile; fileRef = 5BA67FB4B490864158D645577BB7D080 /* FIRInstallationsStatus.h */; settings = {ATTRIBUTES = (Project, ); }; }; 30048C1ED58BCA8F8305E97FE14CCED0 /* IPAddressV4.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A16BE67B30E1D5B41246BA8E281117C9 /* IPAddressV4.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; 3008E5C197E529C941CA606774D1BEB9 /* IPAddressV6.h in Headers */ = {isa = PBXBuildFile; fileRef = 4806111C0F5EA9A33CFCBC19A7408D66 /* IPAddressV6.h */; settings = {ATTRIBUTES = (Project, ); }; }; 30196E74E25A873E41DC889DA48194FD /* FIRLogger.m in Sources */ = {isa = PBXBuildFile; fileRef = E3C60919E7EB6F9180A787F54EF850C5 /* FIRLogger.m */; }; - 302F44F0FAD018D47FDD2CCA0B36CAB9 /* RCTSafeAreaShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = C3127987CE8EBADE3F9B87522B43E92E /* RCTSafeAreaShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 302F44F0FAD018D47FDD2CCA0B36CAB9 /* RCTSafeAreaShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = 6017D6B8B2DD3DA246787B41CBF74A43 /* RCTSafeAreaShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; 30363912631BB1C44CADF345BE0C724C /* UIView+SKInvalidation.h in Headers */ = {isa = PBXBuildFile; fileRef = 3933450B6CBB5C6E3C628F46928CF0AD /* UIView+SKInvalidation.h */; settings = {ATTRIBUTES = (Project, ); }; }; 3060BF1405F7ABB478493A90B64FCFCB /* F14SetFallback.h in Headers */ = {isa = PBXBuildFile; fileRef = 8280F4060EA2D45A4019E40097D94154 /* F14SetFallback.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 307A374A5F225B380BD5409F367068F9 /* CoreModulesPlugins.h in Headers */ = {isa = PBXBuildFile; fileRef = A5E741F9671FC7F6CD960AA773922151 /* CoreModulesPlugins.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 307A374A5F225B380BD5409F367068F9 /* CoreModulesPlugins.h in Headers */ = {isa = PBXBuildFile; fileRef = 771A2C0248C6DAB6280C40E3A43DFCE4 /* CoreModulesPlugins.h */; settings = {ATTRIBUTES = (Project, ); }; }; 308C87640D35D1E3C633032AF321F283 /* ConsumerBase.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 096A0A2F847360CF1FCB976B8084BB4C /* ConsumerBase.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0 -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - 308F4F4F2302BE200C238AE74C26DEB9 /* RCTConvert+FIRApp.m in Sources */ = {isa = PBXBuildFile; fileRef = C9DD3F683758C769A9305AC28B4E8946 /* RCTConvert+FIRApp.m */; }; + 308F4F4F2302BE200C238AE74C26DEB9 /* RCTConvert+FIRApp.m in Sources */ = {isa = PBXBuildFile; fileRef = 1E1C2C4244877057C8EF07689B58B137 /* RCTConvert+FIRApp.m */; }; 30987C9C9FEB711061439E1BC000376B /* GDTCORReachability_Private.h in Headers */ = {isa = PBXBuildFile; fileRef = CB84CC51503D7890C0A68A673FC36BC9 /* GDTCORReachability_Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; 30A8478C08F9DED3F5CB43A32F5FA1BB /* ThreadPoolExecutor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A80963FBEE1028DEF8C4D32F24614CC4 /* ThreadPoolExecutor.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; 30BB3062E85AB8BC2F42A1DC69B99C92 /* HazptrDomain.h in Headers */ = {isa = PBXBuildFile; fileRef = 1AA5BB944A0D64D02A3687D8A39FD262 /* HazptrDomain.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 30DE028C8BD4FF858BDE2C4E80C985A9 /* RCTAdditionAnimatedNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 90DFDB23DB864442441F33314557D9D8 /* RCTAdditionAnimatedNode.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + 30DE028C8BD4FF858BDE2C4E80C985A9 /* RCTAdditionAnimatedNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 638955B8123780478D526BB7091E0B4C /* RCTAdditionAnimatedNode.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; 30EA63D0E95EB523F359EAA9BCADC1F1 /* lossless_neon.c in Sources */ = {isa = PBXBuildFile; fileRef = DB4A9736D07811E63B500AF8C0486689 /* lossless_neon.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; 30EFA1CE7F1133015F0E3E10A28316CF /* quant_levels_dec_utils.h in Headers */ = {isa = PBXBuildFile; fileRef = 7878B44402143B2E25821AC0F73C2728 /* quant_levels_dec_utils.h */; settings = {ATTRIBUTES = (Project, ); }; }; 31104DDF23E644091D0B208B51B3F550 /* upsampling_sse2.c in Sources */ = {isa = PBXBuildFile; fileRef = 379E0871E8C66FF621CE516373586224 /* upsampling_sse2.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 313AE2A97F0B6411C4FDD66E857C5079 /* RCTRootContentView.m in Sources */ = {isa = PBXBuildFile; fileRef = 13DC17260854E0110731D49511FAF2D4 /* RCTRootContentView.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 314F80C39F5F607CE72EC8BA24DD4237 /* RCTConvert+Transform.m in Sources */ = {isa = PBXBuildFile; fileRef = B2783E8C8A79BAE9AE51E80D773DDB2D /* RCTConvert+Transform.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 318291D218B6B634DED9426B8388A64B /* EXAppleAuthenticationButtonViewManagers.m in Sources */ = {isa = PBXBuildFile; fileRef = 0D66B5ED4F0CC77DB4C0D910890326CB /* EXAppleAuthenticationButtonViewManagers.m */; }; - 31935F903EB3421E32FCD701A8DBD38F /* RNCSlider.m in Sources */ = {isa = PBXBuildFile; fileRef = FDA84047F1F5ED482917193D6CD48E0A /* RNCSlider.m */; }; + 313AE2A97F0B6411C4FDD66E857C5079 /* RCTRootContentView.m in Sources */ = {isa = PBXBuildFile; fileRef = CC0B6AEE5456888709FAB129B5F70007 /* RCTRootContentView.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 314F80C39F5F607CE72EC8BA24DD4237 /* RCTConvert+Transform.m in Sources */ = {isa = PBXBuildFile; fileRef = CE52B2322F5A722469845A5FF8E82B1E /* RCTConvert+Transform.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 318291D218B6B634DED9426B8388A64B /* EXAppleAuthenticationButtonViewManagers.m in Sources */ = {isa = PBXBuildFile; fileRef = 36657BF4BBB7BE8059A6EBD1E10C37A0 /* EXAppleAuthenticationButtonViewManagers.m */; }; + 31935F903EB3421E32FCD701A8DBD38F /* RNCSlider.m in Sources */ = {isa = PBXBuildFile; fileRef = 9597C5FDD1C3DF6E58BC339393117A8E /* RNCSlider.m */; }; 31962DADDDE276F6ABB6754ED6E7EE1E /* RSocketServiceHandler.cpp in Sources */ = {isa = PBXBuildFile; fileRef = E2045932DC3A2534283607C5D26E6E95 /* RSocketServiceHandler.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0 -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; 319A95BB763E66FA343B43AB20D262F3 /* FlipperCppBridgingConnection.h in Headers */ = {isa = PBXBuildFile; fileRef = 8999D50EA985660D0C1EDA6538E48133 /* FlipperCppBridgingConnection.h */; settings = {ATTRIBUTES = (Project, ); }; }; 31CA1F80D4661804D819BD261F21AFC5 /* DistributedMutex-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 3391B4E3F9BE2D0663AA02FA39A6B896 /* DistributedMutex-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 31DA90BD34B8EA573D235D81B6D79C58 /* RAMBundleRegistry.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 956610D9438018359D0D415E964CFF83 /* RAMBundleRegistry.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 31DAC9A5D6F268B1664AE668B0BD1D0B /* RCTDeviceInfo.mm in Sources */ = {isa = PBXBuildFile; fileRef = DBDD82755E1C0BB3D4F00202E81D1858 /* RCTDeviceInfo.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; - 31E029FEA1B81802EE2F55EAA5DF30FD /* RCTShadowView+Layout.h in Headers */ = {isa = PBXBuildFile; fileRef = 8D5B65EA680A56B86A50DA10A3D7F7C0 /* RCTShadowView+Layout.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 31DA90BD34B8EA573D235D81B6D79C58 /* RAMBundleRegistry.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A9DFD276EBE155A05206FA3429A9A449 /* RAMBundleRegistry.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 31DAC9A5D6F268B1664AE668B0BD1D0B /* RCTDeviceInfo.mm in Sources */ = {isa = PBXBuildFile; fileRef = 3A4010E0820914403105766CA640AA0A /* RCTDeviceInfo.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + 31E029FEA1B81802EE2F55EAA5DF30FD /* RCTShadowView+Layout.h in Headers */ = {isa = PBXBuildFile; fileRef = A5B79A762EE2ED264442A969675C775A /* RCTShadowView+Layout.h */; settings = {ATTRIBUTES = (Project, ); }; }; 31FD8DFA47B6AEDCBB2D1C7B48A2B1CF /* OpenSSLLockTypes.h in Headers */ = {isa = PBXBuildFile; fileRef = EB21C78FCA19662901D75D8A58EC4CCC /* OpenSSLLockTypes.h */; settings = {ATTRIBUTES = (Project, ); }; }; 321E5783FD6AB1B2E124AE90C409D435 /* SingleWriterFixedHashMap.h in Headers */ = {isa = PBXBuildFile; fileRef = C49745BAFD1F99444843FA27BCC0BF55 /* SingleWriterFixedHashMap.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 32217120E93C54F443003D8A95462BCB /* React-RCTAnimation-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 509BC14C2BB4F28EA7406F0BAEAEF662 /* React-RCTAnimation-dummy.m */; }; + 32217120E93C54F443003D8A95462BCB /* React-RCTAnimation-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = FD1253FD65106E5F8C9ED11F094B1985 /* React-RCTAnimation-dummy.m */; }; 3231393BAD745FA73E9B11102284C616 /* FIRCLSRecordIdentity.h in Headers */ = {isa = PBXBuildFile; fileRef = DA8D42A22D682BBDBA66E60052ACC8F3 /* FIRCLSRecordIdentity.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 323FB383078BD6399AECB8C48C6FF0A4 /* YGNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 70CAC4756B89280A6C66B4687E6DE4A7 /* YGNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3240E20C3A58ACFE15D21D48E1D40A6B /* RNForceTouchHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = AC26CBE9BD871F6D591E55811B20F351 /* RNForceTouchHandler.m */; }; - 3248811CD52A4C903F8A00F6F2C09C3D /* EXSessionTaskDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = 47118A9ACC1AB1735068E8ABAE09B11C /* EXSessionTaskDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 323FB383078BD6399AECB8C48C6FF0A4 /* YGNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 13ACD9ADA5090986B21F242D58D5A40F /* YGNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3240E20C3A58ACFE15D21D48E1D40A6B /* RNForceTouchHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = 81AC90B2EE224E62D204947695D45516 /* RNForceTouchHandler.m */; }; + 3248811CD52A4C903F8A00F6F2C09C3D /* EXSessionTaskDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = 657C3F100BB64348AFD79C475359D850 /* EXSessionTaskDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; }; 3259B3941D9E4CC09A9A27E51E89450E /* DiscriminatedPtr.h in Headers */ = {isa = PBXBuildFile; fileRef = 084CC30BDCC156941702CFF69B60F30E /* DiscriminatedPtr.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 32622CE75F78F8E2F8D5400CD2CB17DC /* FFFastImageView.m in Sources */ = {isa = PBXBuildFile; fileRef = 443098314628D666DC0EDE6A03600032 /* FFFastImageView.m */; }; - 3268AC6F8341AD59A356F49E24D7A68C /* EXVideoView.m in Sources */ = {isa = PBXBuildFile; fileRef = 7F2F55A0B34805D3D01FDC8A16EC53EE /* EXVideoView.m */; }; + 32622CE75F78F8E2F8D5400CD2CB17DC /* FFFastImageView.m in Sources */ = {isa = PBXBuildFile; fileRef = 287449DDCA44CB382B8D443DAC8BB4AD /* FFFastImageView.m */; }; + 3268AC6F8341AD59A356F49E24D7A68C /* EXVideoView.m in Sources */ = {isa = PBXBuildFile; fileRef = 4ACF2C969C112E2DFE877438009B3A07 /* EXVideoView.m */; }; 3292BA9319F6A044C79AE28E0D918FC5 /* utils.c in Sources */ = {isa = PBXBuildFile; fileRef = A713BA4620B719C691AF9CB67ED5756D /* utils.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; 329D8DC4DF1F87F450F10F8695FAF36A /* small_vector.h in Headers */ = {isa = PBXBuildFile; fileRef = 4655489B1F8508C8D8E42A11861B59C6 /* small_vector.h */; settings = {ATTRIBUTES = (Project, ); }; }; 32A54CE4AFA4A6A499FACA15B3B6CA57 /* FIRCLSUserLogging.m in Sources */ = {isa = PBXBuildFile; fileRef = 9E0B1D61A483077FB4BDBC262DE16D7B /* FIRCLSUserLogging.m */; }; @@ -840,30 +835,29 @@ 32AC28388DEBC44E892603D239EEDE0B /* AsyncSocketException.cpp in Sources */ = {isa = PBXBuildFile; fileRef = CFB1369EC80A9420B57A2C47D31A6BD1 /* AsyncSocketException.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; 32BABA10BB305E71A70A9C7BA52FBC89 /* SharedMutex.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9972B9BC9C002FD13E6707E9A8DBFE6F /* SharedMutex.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; 32D97293EAFBD808BC576FE700BDFB3C /* F14IntrinsicsAvailability.h in Headers */ = {isa = PBXBuildFile; fileRef = B03E7A6B62A8D69B3718D40106CF4404 /* F14IntrinsicsAvailability.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 32D9D023823C21F20825C29A910B5CE5 /* React-RCTText-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = D18C3913BE966444087C2C07EEEFFAB9 /* React-RCTText-dummy.m */; }; + 32D9D023823C21F20825C29A910B5CE5 /* React-RCTText-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = B51AE3C8AD280681A6529749FDACD93A /* React-RCTText-dummy.m */; }; 32E9548503360012A39909DFBD4C4DD9 /* IPAddressException.h in Headers */ = {isa = PBXBuildFile; fileRef = D64307698B08E25A0B8E329EDF5B215D /* IPAddressException.h */; settings = {ATTRIBUTES = (Project, ); }; }; 33301592ADEC5F3E21FA07A848C1936C /* Base-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 471C8FB7DF0F4F3CFAFB00D4C3C24BD7 /* Base-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 33462100BA6E92B757C09BC638DD4CFA /* RCTTextAttributes.m in Sources */ = {isa = PBXBuildFile; fileRef = 428829B9D99E52C02D9F9C48851D307F /* RCTTextAttributes.m */; }; + 33462100BA6E92B757C09BC638DD4CFA /* RCTTextAttributes.m in Sources */ = {isa = PBXBuildFile; fileRef = 7114321D983DA3CB9B23FB8EDDB3FA91 /* RCTTextAttributes.m */; }; 33557DF89B6EF2627D2E41B74146A0B6 /* FBLPromise+Race.h in Headers */ = {isa = PBXBuildFile; fileRef = 3EF274C30290A8E7AA8535DB4CC73D04 /* FBLPromise+Race.h */; settings = {ATTRIBUTES = (Project, ); }; }; 336AF37B5F585C4DF000A22B615C60CB /* UniqueInstance.h in Headers */ = {isa = PBXBuildFile; fileRef = 63326DF86E22B325A5B08C049B95D1EE /* UniqueInstance.h */; settings = {ATTRIBUTES = (Project, ); }; }; 337AD4C3D05F965B85CAE6BCFC70C73F /* RSocketServer.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 61D4B512312F11187441E3F4D2B4857A /* RSocketServer.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0 -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; 337E0C9857B179E5EC97369CE3EAFB0F /* Assume-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = D9299C179FE609553C48DDAC5354ED8F /* Assume-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; 338C33E4A2EB50C20A830E837384EED8 /* SDImageCacheConfig.m in Sources */ = {isa = PBXBuildFile; fileRef = BC92F5C7572D46E31CDF04CB9FEC4742 /* SDImageCacheConfig.m */; }; - 33C906D21E0095E99444F2130D76E9F4 /* UMViewManagerAdapter.h in Headers */ = {isa = PBXBuildFile; fileRef = 9D1786199ACA405C5B41D1408981881F /* UMViewManagerAdapter.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 33C906D21E0095E99444F2130D76E9F4 /* UMViewManagerAdapter.h in Headers */ = {isa = PBXBuildFile; fileRef = 81CC00FA4FE4645F3158AA13C2172A42 /* UMViewManagerAdapter.h */; settings = {ATTRIBUTES = (Project, ); }; }; 33E573075013DE8B348024AA6413D694 /* SDImageCachesManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 55E479C3D615B6CF1D28016626DAEFAF /* SDImageCachesManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 33EDB576C5211826DD9B22E70DD0EE3D /* RCTSegmentedControlManager.m in Sources */ = {isa = PBXBuildFile; fileRef = A10CB91755CDCBCFD134C92A4C6BCF54 /* RCTSegmentedControlManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 34419FC61810BD1D9ECFE19AA79456AD /* RCTSafeAreaView.m in Sources */ = {isa = PBXBuildFile; fileRef = D5B2A78827E3C980402498913BB5F416 /* RCTSafeAreaView.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 33EDB576C5211826DD9B22E70DD0EE3D /* RCTSegmentedControlManager.m in Sources */ = {isa = PBXBuildFile; fileRef = FE674740E3369E8BCF94F0EA5AECDCE5 /* RCTSegmentedControlManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 34419FC61810BD1D9ECFE19AA79456AD /* RCTSafeAreaView.m in Sources */ = {isa = PBXBuildFile; fileRef = C9BA13939F13DADE2982229661846EA3 /* RCTSafeAreaView.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; 346F4B24EB2857ECB358657D35350C00 /* GDTCORTransformer.m in Sources */ = {isa = PBXBuildFile; fileRef = 02A52226F2EB3FCF1FF4CEDF15A00E9C /* GDTCORTransformer.m */; }; 34BBD3A50726564B1AE87604F4B74B57 /* bignum.cc in Sources */ = {isa = PBXBuildFile; fileRef = 3181D83556FA3489517437FB958CB6BF /* bignum.cc */; settings = {COMPILER_FLAGS = "-Wno-unreachable-code"; }; }; 34DC275EEE112BBD0C9C8E142883BF10 /* StreamThroughputTcp.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 66092E3A89FCDAA9CC2FFD9ECDFF4E28 /* StreamThroughputTcp.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0 -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - 34E70A33FF98EC9CFCC391F122B36E87 /* RNCWebViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = C23F1D6BF19EA78B7018AAD57FD9F690 /* RNCWebViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 34E70A33FF98EC9CFCC391F122B36E87 /* RNCWebViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = FECCE8374AE75360321DC09317F9D24A /* RNCWebViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; 34EA20ADEFC65F6118975776F29B5ABE /* picture_csp_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = 76518D0F346A22AB0F95C26087ADE5C8 /* picture_csp_enc.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 35269B5057CDDCC7DEA2FE786C99AF9E /* RNFetchBlobConst.m in Sources */ = {isa = PBXBuildFile; fileRef = 4C62D3D798D7679A8D9B0CE220A26558 /* RNFetchBlobConst.m */; }; 353B9345CE16AF6338035CFD93D16671 /* InitThreadFactory.h in Headers */ = {isa = PBXBuildFile; fileRef = 0FF1075E4207285244501E30AE60F2B6 /* InitThreadFactory.h */; settings = {ATTRIBUTES = (Project, ); }; }; 353E3AF04FFD70145B93E29D0B322A3B /* ChannelRequester.h in Headers */ = {isa = PBXBuildFile; fileRef = DA44DECA28FC4BC69FA311437B636338 /* ChannelRequester.h */; settings = {ATTRIBUTES = (Project, ); }; }; 35509AB2DE9757199EE5A9A606C9E058 /* pl.lproj in Resources */ = {isa = PBXBuildFile; fileRef = 06BD537C2CCD93C2293EFEEC85836499 /* pl.lproj */; }; 355DC98B9D06383235582588F35B06E0 /* bignum.h in Headers */ = {isa = PBXBuildFile; fileRef = 5D068D916BBBB1CF821F31827B18FADB /* bignum.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3567CB332EA82A9AC5E4B08594213F26 /* ARTTextManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 08DDD533763FE910E40EFBF265C91E3E /* ARTTextManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3567CB332EA82A9AC5E4B08594213F26 /* ARTTextManager.h in Headers */ = {isa = PBXBuildFile; fileRef = FDC9172EDAE66EF077AF11ECBFC39F8B /* ARTTextManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; 3585440364A592462F3DAB4360A8A9C4 /* Util.h in Headers */ = {isa = PBXBuildFile; fileRef = EEBE801067B9AA91BA4C058EACCDC752 /* Util.h */; settings = {ATTRIBUTES = (Project, ); }; }; 35D47F3D1A1DBD7B85CBF95EEB5D1CA5 /* StringKeyedSet.h in Headers */ = {isa = PBXBuildFile; fileRef = 97B52D167651C3523F3B2CAEEF7423B0 /* StringKeyedSet.h */; settings = {ATTRIBUTES = (Project, ); }; }; 360DEDF4ABD8983B2E0C41923685FB55 /* ThreadWheelTimekeeperHighRes.h in Headers */ = {isa = PBXBuildFile; fileRef = CC2AE6EC96A84416A005C6100DC9D3D9 /* ThreadWheelTimekeeperHighRes.h */; settings = {ATTRIBUTES = (Project, ); }; }; @@ -871,20 +865,20 @@ 36360FCF5DF26972E15B00638335C00A /* UIImageView+WebCache.m in Sources */ = {isa = PBXBuildFile; fileRef = 1917B88D75689E8876B6520174F6EB97 /* UIImageView+WebCache.m */; }; 36639B3E5EFD659484EA7418ADBC3F1B /* SDImageGraphics.m in Sources */ = {isa = PBXBuildFile; fileRef = C768E56EFD93442B8A537D03D2C0EF99 /* SDImageGraphics.m */; }; 3668005604E469D2C61ABD5F410E3360 /* SocketOptionMap.h in Headers */ = {isa = PBXBuildFile; fileRef = B6884E848787ECE8DBDAAEBBF4E527D7 /* SocketOptionMap.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3668D7D6FD63CEBCC848CE0ADAEBEDA2 /* ReactCommon-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 83298AC3BCF7B52AF9C0EDB0BA7DAAB6 /* ReactCommon-dummy.m */; }; + 3668D7D6FD63CEBCC848CE0ADAEBEDA2 /* ReactCommon-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = EEB609A23C4E52C1AF27256001C9FCC1 /* ReactCommon-dummy.m */; }; 36838A450767D18415FBE60D36FC69FB /* TcpDuplexConnection.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 18AC4670DD43EE89F57C05872BB5D2E3 /* TcpDuplexConnection.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0 -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; 36925435DBBCDF40101DF4DA0D176285 /* OpenSSLThreading.h in Headers */ = {isa = PBXBuildFile; fileRef = E3B1244BFB7C2C546566B5E55BBC1699 /* OpenSSLThreading.h */; settings = {ATTRIBUTES = (Project, ); }; }; 369F83F9BB8369497F818766CB6A03E1 /* GULSecureCoding.h in Headers */ = {isa = PBXBuildFile; fileRef = 41EA283E65F1C71F711C4134E71A771B /* GULSecureCoding.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 36B30A72BB2A2EB9D72BACEBA5A74C69 /* RNBootSplash.m in Sources */ = {isa = PBXBuildFile; fileRef = C8A6F18406573DD1B9E64BFBC7BE2ADB /* RNBootSplash.m */; }; + 36B30A72BB2A2EB9D72BACEBA5A74C69 /* RNBootSplash.m in Sources */ = {isa = PBXBuildFile; fileRef = CD8CD7396DE846D7BBFCC79358376367 /* RNBootSplash.m */; }; 36D4E8D299A73059B713FFDAF61EC22F /* ThreadedExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = 1D03BE39E1D34EB361F341CDBCE0EC8B /* ThreadedExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; 36DDF82F11162FDDB5256E2A29BD0B4A /* FIRCLSRecordApplication.m in Sources */ = {isa = PBXBuildFile; fileRef = 7029FAD1B4E7B93A288461D93ECA3EA6 /* FIRCLSRecordApplication.m */; }; - 36F69AE0B07434FD41DAB71CEFF669CE /* JSIExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = 6BAAADC474E30F829DA27F463DFDF466 /* JSIExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 36F69AE0B07434FD41DAB71CEFF669CE /* JSIExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = A4B81A14BA60FD9203C458E4C264F55B /* JSIExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; 37043ABBD4DA0792B89D11FEF04F995F /* TOCropViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 6B9B9C991B6C06853B8C573A449F3D36 /* TOCropViewController.m */; }; 37102F4139638538537682CFDBDD3521 /* FlipperClient.h in Headers */ = {isa = PBXBuildFile; fileRef = 3EDD75C463805A61CE3A8A8B3F02D62F /* FlipperClient.h */; settings = {ATTRIBUTES = (Project, ); }; }; 371CE81054032E91F6F451E02E66EB78 /* GDTCORReachability.h in Headers */ = {isa = PBXBuildFile; fileRef = 044230C5304F3E6B8C7DB6B5FCDC17D2 /* GDTCORReachability.h */; settings = {ATTRIBUTES = (Project, ); }; }; 372882F92C66AD589C117E6B98043712 /* SDWebImageIndicator.m in Sources */ = {isa = PBXBuildFile; fileRef = C722D112E1034415060F76D4D4C107F0 /* SDWebImageIndicator.m */; }; - 373EBD884827F1AD20F3A3DD26138571 /* RCTSurface.mm in Sources */ = {isa = PBXBuildFile; fileRef = B8D0E246E8EE55A72D534D88EDAA857E /* RCTSurface.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 3740BFCFC4984C6549AEADFF59FF844F /* RCTSurfaceHostingView.h in Headers */ = {isa = PBXBuildFile; fileRef = 60686AB4AF07D10D074ACC81B4F49C4E /* RCTSurfaceHostingView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 373EBD884827F1AD20F3A3DD26138571 /* RCTSurface.mm in Sources */ = {isa = PBXBuildFile; fileRef = 716967645CD169997990F9755498231A /* RCTSurface.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 3740BFCFC4984C6549AEADFF59FF844F /* RCTSurfaceHostingView.h in Headers */ = {isa = PBXBuildFile; fileRef = 5D804EAA43D9C8F4567BC675A3A5DEAF /* RCTSurfaceHostingView.h */; settings = {ATTRIBUTES = (Project, ); }; }; 374560D732665B18E6AADC57D1D9B12D /* dynamic.h in Headers */ = {isa = PBXBuildFile; fileRef = 35837220F1231EFFCA25FBC405F6FC14 /* dynamic.h */; settings = {ATTRIBUTES = (Project, ); }; }; 37561D58917BF3DD193FA026B4DC7819 /* buffer_dec.c in Sources */ = {isa = PBXBuildFile; fileRef = F2F92F78EDA32DE889084648A19D9103 /* buffer_dec.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; 377EDD40562D695DDBE096F504D81B53 /* NSData+ImageContentType.h in Headers */ = {isa = PBXBuildFile; fileRef = EFD1C40E3EBF951B518DD912933B112E /* NSData+ImageContentType.h */; settings = {ATTRIBUTES = (Project, ); }; }; @@ -892,9 +886,9 @@ 37A37544801076BF222FC05117B38064 /* FIRDependency.h in Headers */ = {isa = PBXBuildFile; fileRef = A072AB80F980D7FE4CCC2BB9E9D99BBA /* FIRDependency.h */; settings = {ATTRIBUTES = (Project, ); }; }; 37A8A74509CB140CA1CBD2862791F6C1 /* thread_utils.c in Sources */ = {isa = PBXBuildFile; fileRef = 857B473E21FBBDF59E332A5FD163A7B3 /* thread_utils.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; 37B9441E3739C1098D17234DD176AB32 /* GDTCORFlatFileStorage.m in Sources */ = {isa = PBXBuildFile; fileRef = 4AAE8646B15DEB7323FBDB87255F1019 /* GDTCORFlatFileStorage.m */; }; - 37BBE209B4C9908FB36A235F5117282F /* RCTAnimatedNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 9954C32DE398F63ED844FD968BB12B07 /* RCTAnimatedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 37BBE209B4C9908FB36A235F5117282F /* RCTAnimatedNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 7602CBC2F5FA398204C4DD3DF1F67C6B /* RCTAnimatedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; 37C9A7BFC98577A5A2F702F0D9249832 /* UIButton+WebCache.m in Sources */ = {isa = PBXBuildFile; fileRef = F0DF4ED97F36D082123404D0161ED273 /* UIButton+WebCache.m */; }; - 37DC75895A0D3C994571EC13E7CD6176 /* BugsnagMetaData.h in Headers */ = {isa = PBXBuildFile; fileRef = EC68DB6C8C6D1E430FD2F58A5682F98C /* BugsnagMetaData.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 37DC75895A0D3C994571EC13E7CD6176 /* BugsnagMetaData.h in Headers */ = {isa = PBXBuildFile; fileRef = 24DF1BCD3CD68CFBB4E023D7DFB1E5E6 /* BugsnagMetaData.h */; settings = {ATTRIBUTES = (Project, ); }; }; 37E3F0F29964F4FA9C40E1CCEA52F682 /* SwappableEventBase.h in Headers */ = {isa = PBXBuildFile; fileRef = D6B8DACC6EC868535DAB42D32BABD176 /* SwappableEventBase.h */; settings = {ATTRIBUTES = (Project, ); }; }; 37EDEC2BDB04F892C3CB29C4F9A8C34E /* YogaKit-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 1895FF20474DD5D4B240DC2E8AD0B961 /* YogaKit-umbrella.h */; settings = {ATTRIBUTES = (Project, ); }; }; 381582C2E5845132F0F89F4AE7DF0291 /* FIRCoreDiagnosticsData.h in Headers */ = {isa = PBXBuildFile; fileRef = 659F71FBC500FC8143B83A886FF525AD /* FIRCoreDiagnosticsData.h */; settings = {ATTRIBUTES = (Project, ); }; }; @@ -902,98 +896,97 @@ 3842C7262C69AD90463B43931CE9B8D4 /* backward_references_cost_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = 5BBB53EC3DB6AA6AA25C9D3D328E9200 /* backward_references_cost_enc.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; 384C6507CCB25DEF38E04A025AC230A7 /* FBLPromise+Async.h in Headers */ = {isa = PBXBuildFile; fileRef = E70A19B66B026FB48473A66CF3E9CB52 /* FBLPromise+Async.h */; settings = {ATTRIBUTES = (Project, ); }; }; 3861A71C26628C93C77FCD87EC4761FB /* Memory.h in Headers */ = {isa = PBXBuildFile; fileRef = 6A6BC9F12658302F121B6F2020AE8C54 /* Memory.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 387DD6E0D2967BDDED87AEE55A05DB16 /* RNCWKProcessPoolManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 8003D3FBFE3C573335B3BAC90E9D2567 /* RNCWKProcessPoolManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 387DD6E0D2967BDDED87AEE55A05DB16 /* RNCWKProcessPoolManager.h in Headers */ = {isa = PBXBuildFile; fileRef = CAEB0846C2DF688EA19B435606F9A274 /* RNCWKProcessPoolManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; 387EBCA8FD57EDD475BEFE8C73DD1051 /* SDImageIOCoder.h in Headers */ = {isa = PBXBuildFile; fileRef = 63F5F11A6995E23FA806F847374AF55B /* SDImageIOCoder.h */; settings = {ATTRIBUTES = (Project, ); }; }; 38A3CF8E02900F0510ACAFF100A723E0 /* TimerFD.h in Headers */ = {isa = PBXBuildFile; fileRef = 7105826A2FC29395592A32C5E98A439C /* TimerFD.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 38F35E24D856E9519A212722C0D13E59 /* RNCAsyncStorage.m in Sources */ = {isa = PBXBuildFile; fileRef = F7F852944B7F82BB22DC3A97A1E193B7 /* RNCAsyncStorage.m */; }; + 38F35E24D856E9519A212722C0D13E59 /* RNCAsyncStorage.m in Sources */ = {isa = PBXBuildFile; fileRef = 8BCC733FAE8E026370783BD3B5DE6635 /* RNCAsyncStorage.m */; }; 38F6A79D9937614314F8A612207562CC /* MallocImpl.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 779BE223DE836270C16006E859AF645C /* MallocImpl.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; 38F97952C6381271D3B820C7E7FEB828 /* FIRInstallationsLogger.m in Sources */ = {isa = PBXBuildFile; fileRef = 252F20F357703BC3ED2A24EC0FFC9F20 /* FIRInstallationsLogger.m */; }; - 39016900A3DC7213E8FE4D50B58F92E2 /* RCTPickerManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 6636CE74E548DA0ABF051687E7C45793 /* RCTPickerManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 39016900A3DC7213E8FE4D50B58F92E2 /* RCTPickerManager.h in Headers */ = {isa = PBXBuildFile; fileRef = AE7D0AA3C019207903AFB1A815C8C3B5 /* RCTPickerManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; 3902C93559EE5739F37997B5E9892D4F /* Request.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 62E045829C1BE20F83C7B787A38B5F33 /* Request.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; 3903BECE2CB09D1D3A70A5824DE36B4F /* MicroLock.h in Headers */ = {isa = PBXBuildFile; fileRef = B73E01033F56F4F9DC335F480B01F175 /* MicroLock.h */; settings = {ATTRIBUTES = (Project, ); }; }; 390AC40A3C333FB6A81C2D20EAC1A0CF /* TestUtil.h in Headers */ = {isa = PBXBuildFile; fileRef = 81D0D073BFFD90E161F032E4016B62D9 /* TestUtil.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3929E18D986CE77097B61631BA035B4C /* RCTSettingsManager.mm in Sources */ = {isa = PBXBuildFile; fileRef = 8D9725FFDE06CB237251EADBA9827F86 /* RCTSettingsManager.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + 3929E18D986CE77097B61631BA035B4C /* RCTSettingsManager.mm in Sources */ = {isa = PBXBuildFile; fileRef = 6C53459687D11CEDC9BD2E924D95DBDA /* RCTSettingsManager.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; 392A3ECADD8AA6EE73D72561F4FDB23D /* ShutdownSocketSet.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3FDB5AC702E5812B74CD37395DA72867 /* ShutdownSocketSet.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; 3953D3F50A05E1AA87124E85621F6D92 /* Fingerprint.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B5D5546E4E9B124EFF83BF5E6A7A285D /* Fingerprint.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; 395DC43E8F602AA23CCD3406971ABE86 /* GoogleUtilities-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = B2004B4E40576C4C203A4C5BFDC702C6 /* GoogleUtilities-dummy.m */; }; - 39A8B0F0C8877BB15AD04CD38C7C9161 /* RNFetchBlob.m in Sources */ = {isa = PBXBuildFile; fileRef = 62AB16197D6B06D52563ADE97C660540 /* RNFetchBlob.m */; }; 39C64C7D0A3CC2D7D7A0143EE11F6446 /* Frame.h in Headers */ = {isa = PBXBuildFile; fileRef = FA2E711743251592466DE361107441A7 /* Frame.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 39C7B45EB0C4E1D9010A459380CAA52C /* ReactNativeVersion.h in Headers */ = {isa = PBXBuildFile; fileRef = F90C6310B29B830681C7BE08DF73EB6E /* ReactNativeVersion.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 39C7B45EB0C4E1D9010A459380CAA52C /* ReactNativeVersion.h in Headers */ = {isa = PBXBuildFile; fileRef = EFF32B0A911C93BC6F45E81B69403EF7 /* ReactNativeVersion.h */; settings = {ATTRIBUTES = (Project, ); }; }; 39C7B8CBC7FF6C71A08118BE63C072A0 /* Peertalk.h in Headers */ = {isa = PBXBuildFile; fileRef = E4F470400EBEAA1D8E020157AB664049 /* Peertalk.h */; settings = {ATTRIBUTES = (Project, ); }; }; 39C85EC983B5B8A9B6EFDC621F1D6F50 /* FarmHash.h in Headers */ = {isa = PBXBuildFile; fileRef = 3C45C204ACA134AF52D11B8A41D1B43B /* FarmHash.h */; settings = {ATTRIBUTES = (Project, ); }; }; 39D5EBF062B74C8DDCB6DE46E8A9219B /* Padded.h in Headers */ = {isa = PBXBuildFile; fileRef = DED93BDAF48496E43C78B2675D2CCB72 /* Padded.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 39DFF62282596A4AD2832F04B070FE9C /* Yoga-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 8D21A54B95992B2830429F8EC0D7B72C /* Yoga-umbrella.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 39DFF62282596A4AD2832F04B070FE9C /* Yoga-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 6F055F01DACF890C5CA5F8E9547EA2E1 /* Yoga-umbrella.h */; settings = {ATTRIBUTES = (Project, ); }; }; 39F8B48ACB4F25C361745D13D7538C99 /* Foreach-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 8D0622FE2CDA6CCD1D6D689EB4C1DB6C /* Foreach-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 39FF0F50C4A348E9977AFD81E4B39620 /* EXFileSystemAssetLibraryHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = 79A081D4ED6B40E9F938F1F25B3FEEBF /* EXFileSystemAssetLibraryHandler.m */; }; + 39FF0F50C4A348E9977AFD81E4B39620 /* EXFileSystemAssetLibraryHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = 5EA8B4CA35F011B972A94E0EB2DE0074 /* EXFileSystemAssetLibraryHandler.m */; }; 3A25A0B031EDD3B74BB39D3AD8967E3D /* GCDAsyncUdpSocket.m in Sources */ = {isa = PBXBuildFile; fileRef = 280AE93CC3396E5BACA7C3D85E999106 /* GCDAsyncUdpSocket.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0"; }; }; 3A366E0112A812204DAD3AA497EAD09D /* Subscription.h in Headers */ = {isa = PBXBuildFile; fileRef = C105EC08146FCCE2785CC4DB6C5C4393 /* Subscription.h */; settings = {ATTRIBUTES = (Project, ); }; }; 3A42B7CBB1077B1681D8BAA47FD729F5 /* EventHandler.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A04E55087F1F61F47FBA0C46CF8C0F68 /* EventHandler.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - 3A548E3DC62B7BBF58AF7D7B2F157707 /* QBAlbumCell.m in Sources */ = {isa = PBXBuildFile; fileRef = B982C5247836A3683A1F435B1B56672C /* QBAlbumCell.m */; }; - 3A588C35CF59D1DA0D42450E2D7D237C /* EXConstantsService.m in Sources */ = {isa = PBXBuildFile; fileRef = 1D9376156616C8FA56B743E4A3F73513 /* EXConstantsService.m */; }; - 3A5DB1E5EC7C9DB692B411AC12981758 /* UMAppLoader-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 5CB9B40FE0E1C19F97282A5575AFE13D /* UMAppLoader-dummy.m */; }; + 3A548E3DC62B7BBF58AF7D7B2F157707 /* QBAlbumCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 7F442623754306438DD6860B5B76BB82 /* QBAlbumCell.m */; }; + 3A588C35CF59D1DA0D42450E2D7D237C /* EXConstantsService.m in Sources */ = {isa = PBXBuildFile; fileRef = 1996D3629424831EF5298F79630FB91A /* EXConstantsService.m */; }; + 3A5DB1E5EC7C9DB692B411AC12981758 /* UMAppLoader-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = B82FEC9BA8F62D986D867F67296D6E1D /* UMAppLoader-dummy.m */; }; 3A5F5528F10F93127EBBFE10043B3EDD /* ClockGettimeWrappers.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 359B99B052DDAC66B0B97187C86BEA36 /* ClockGettimeWrappers.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - 3A785BC5362C8B4204C3797ACDABE8F5 /* RCTWeakProxy.m in Sources */ = {isa = PBXBuildFile; fileRef = 462B30AE206A35B4582AD7E286A895D6 /* RCTWeakProxy.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 3A7CF70F2713790E070E27040417EA14 /* RCTStyleAnimatedNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 9D6343DDC6EE24F07C4D558FC43986AD /* RCTStyleAnimatedNode.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; - 3AC116D9E6033F521553CE4C871FD525 /* EXFilePermissionModule.m in Sources */ = {isa = PBXBuildFile; fileRef = D79C9F2D77AA78CCBC29D9F14C0C204D /* EXFilePermissionModule.m */; }; + 3A785BC5362C8B4204C3797ACDABE8F5 /* RCTWeakProxy.m in Sources */ = {isa = PBXBuildFile; fileRef = DF5DF2E0A88ED035A01CF8D763EEA4A4 /* RCTWeakProxy.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 3A7CF70F2713790E070E27040417EA14 /* RCTStyleAnimatedNode.m in Sources */ = {isa = PBXBuildFile; fileRef = C90241A45FB2FF1EA87E1AC1ED2C4D38 /* RCTStyleAnimatedNode.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + 3AC116D9E6033F521553CE4C871FD525 /* EXFilePermissionModule.m in Sources */ = {isa = PBXBuildFile; fileRef = 6C1F49ABD135CBEE2A91E0BF3CED50A8 /* EXFilePermissionModule.m */; }; 3AEC60479F0C2555169A4EB81C279F92 /* GULHeartbeatDateStorage.h in Headers */ = {isa = PBXBuildFile; fileRef = 268311C9CFEF146103EE89227C3AF2B8 /* GULHeartbeatDateStorage.h */; settings = {ATTRIBUTES = (Project, ); }; }; 3AFE12ED57A1326BC87C9C5D2E67C402 /* MMKVLog.cpp in Sources */ = {isa = PBXBuildFile; fileRef = AA1F642328FC006E73638E971097208B /* MMKVLog.cpp */; settings = {COMPILER_FLAGS = "-x objective-c++"; }; }; 3AFED154CE58A7877754321B3D5B17DB /* Traits.h in Headers */ = {isa = PBXBuildFile; fileRef = 04E7E2155201EF39EF2514273042232A /* Traits.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3B063C1154E377439F5297D8C936465E /* RCTImageShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = CA195DADF7BC48BD83347663827C9066 /* RCTImageShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3B194E5FBBD4E71FF243806C1890567F /* RCTModalHostViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = C4514B2C800EBCD29CDB0DCDFC926F9A /* RCTModalHostViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3B063C1154E377439F5297D8C936465E /* RCTImageShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = 6C7D96869DD87E4DB3B7376688EC49F4 /* RCTImageShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3B194E5FBBD4E71FF243806C1890567F /* RCTModalHostViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 942AA1418D70DA7612B50F21C0E24336 /* RCTModalHostViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; 3B1F011B902EA943C13BF23FA5AA91B8 /* RSocketStats.h in Headers */ = {isa = PBXBuildFile; fileRef = 1E7ED01554864BF8265C2F62B2AB1689 /* RSocketStats.h */; settings = {ATTRIBUTES = (Project, ); }; }; 3B2FE6120D6A53821D07E463CADA2433 /* Malloc.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 4D34A9DCDE2F562665FE562C08C0FA4B /* Malloc.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; 3B333F775A3E42130B41AE2EF4E0B53D /* near_lossless_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = BAE4E01CD9ADF01DB764AEB2D2F4B9B4 /* near_lossless_enc.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 3B426494F084B4127219E522755411FA /* RCTKeyCommandConstants.m in Sources */ = {isa = PBXBuildFile; fileRef = 4B59F134317903C5ECDD3566B6791F82 /* RCTKeyCommandConstants.m */; }; + 3B426494F084B4127219E522755411FA /* RCTKeyCommandConstants.m in Sources */ = {isa = PBXBuildFile; fileRef = 637D8CCFCD2E29E71F03DF8744F47CAB /* RCTKeyCommandConstants.m */; }; 3B4A8B19ECB268E4FC6EAD4276B63B6A /* ThreadWheelTimekeeper.cpp in Sources */ = {isa = PBXBuildFile; fileRef = C359B5DBA4ACE190A7F72F35A61D1BE3 /* ThreadWheelTimekeeper.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; 3B66445B8389FD8B6FEC18D5C63CF08F /* ManualTimekeeper.h in Headers */ = {isa = PBXBuildFile; fileRef = 7FC4C2FC787C6989441D30100AF1DA27 /* ManualTimekeeper.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3B769F1BF2DCB93BB298582BFE9FEDD4 /* BugsnagCrashSentry.h in Headers */ = {isa = PBXBuildFile; fileRef = 1E9B6FAAB475D7894E7744678258A6D6 /* BugsnagCrashSentry.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3B86A109CEA0B850B0A64BF002AEA50C /* REAParamNode.h in Headers */ = {isa = PBXBuildFile; fileRef = AFA21B0061C878DA5977940FE31E0D93 /* REAParamNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3B769F1BF2DCB93BB298582BFE9FEDD4 /* BugsnagCrashSentry.h in Headers */ = {isa = PBXBuildFile; fileRef = 439DADA5C0DE465B1963F6556AAAD1FB /* BugsnagCrashSentry.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3B86A109CEA0B850B0A64BF002AEA50C /* REAParamNode.h in Headers */ = {isa = PBXBuildFile; fileRef = C299BBA12390470959352EDDD74E3571 /* REAParamNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; 3B95DD00BB6C0D9AB86E4191B9BC551F /* MiniPBCoder.h in Headers */ = {isa = PBXBuildFile; fileRef = FFC75A8F5B5124B06C4B64D73C06B1C2 /* MiniPBCoder.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3BA5D2B5AC828D673537D0648F044861 /* RCTImageCache.h in Headers */ = {isa = PBXBuildFile; fileRef = 9883B17F95BA54EB43C4F6A7546EBE95 /* RCTImageCache.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3BA5D2B5AC828D673537D0648F044861 /* RCTImageCache.h in Headers */ = {isa = PBXBuildFile; fileRef = 8C2248AC90042C8E46ABB7FE87BA8903 /* RCTImageCache.h */; settings = {ATTRIBUTES = (Project, ); }; }; 3BDA042F4452C7A9D7762E7E5DC1E06C /* Iterator.h in Headers */ = {isa = PBXBuildFile; fileRef = 534D29CE3C9383C583A3057269CB9F1F /* Iterator.h */; settings = {ATTRIBUTES = (Project, ); }; }; 3BE35415468374E7FD5095CC14E1132C /* StreamsWriter.h in Headers */ = {isa = PBXBuildFile; fileRef = 6CC7B99C885158580AED5D67E7775727 /* StreamsWriter.h */; settings = {ATTRIBUTES = (Project, ); }; }; 3BEE1FBAD4B96E245CD9AED9D181133D /* pt.lproj in Resources */ = {isa = PBXBuildFile; fileRef = CA90277E8E4C7BEC5CD2B015A5AE5675 /* pt.lproj */; }; 3BF1615C071DE5B98B2A55135B5E32D4 /* FIRInstallationsStore.m in Sources */ = {isa = PBXBuildFile; fileRef = A9CF7CF5EE80EEBFF0913866EF73067D /* FIRInstallationsStore.m */; }; 3C008D6C8F8BE78D67CA9CB7416A0FAA /* String.h in Headers */ = {isa = PBXBuildFile; fileRef = 90AEA309616B0DEB92A68DDF81BF2B53 /* String.h */; settings = {ATTRIBUTES = (Project, ); }; }; 3C15FBD85FABEBFA4D591E85969CEC1F /* Enumerate.h in Headers */ = {isa = PBXBuildFile; fileRef = 7FCCB2D65FDA8CA77452B1513BAC7872 /* Enumerate.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3C2CC35AD5DCB89F74870ED731466DB4 /* ARTBrush.h in Headers */ = {isa = PBXBuildFile; fileRef = 9073EFAD818C1FA4F37190C29FEAA509 /* ARTBrush.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3C31CD3F689030110809D1AFD7C1EFDA /* RNEventEmitter.h in Headers */ = {isa = PBXBuildFile; fileRef = 2CB3EFDC81A28CBE01F1EEB0EC2F230A /* RNEventEmitter.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3C3511940613593AFF8631710DCDB0EE /* RCTDevLoadingViewProtocol.h in Headers */ = {isa = PBXBuildFile; fileRef = 66015B1F276053D0A20A904C31DC766D /* RCTDevLoadingViewProtocol.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3C2CC35AD5DCB89F74870ED731466DB4 /* ARTBrush.h in Headers */ = {isa = PBXBuildFile; fileRef = 8744BF5FC2568E0F2D13883CA5F2DEFE /* ARTBrush.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3C31CD3F689030110809D1AFD7C1EFDA /* RNEventEmitter.h in Headers */ = {isa = PBXBuildFile; fileRef = 3C6C88F000D42E1E401C7075ADC15AF3 /* RNEventEmitter.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3C3511940613593AFF8631710DCDB0EE /* RCTDevLoadingViewProtocol.h in Headers */ = {isa = PBXBuildFile; fileRef = 809C4655C11079B51B1A1DBD7F710F11 /* RCTDevLoadingViewProtocol.h */; settings = {ATTRIBUTES = (Project, ); }; }; 3C3EEEA69D03BE23D7A2D4E0A60237BF /* FIRCLSMultipartMimeStreamEncoder.h in Headers */ = {isa = PBXBuildFile; fileRef = 2DC7121300C3748D152EF165854E476D /* FIRCLSMultipartMimeStreamEncoder.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3C507D8861834CE457A7F9E566307E07 /* BugsnagSessionFileStore.h in Headers */ = {isa = PBXBuildFile; fileRef = 735E3877C74D9AE6009AD2174D70F4C8 /* BugsnagSessionFileStore.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3C52279D222791B4251C03AF8205D902 /* RNCSafeAreaViewLocalData.m in Sources */ = {isa = PBXBuildFile; fileRef = 7AFA2F80A1CB6205E8096216B373B0B6 /* RNCSafeAreaViewLocalData.m */; }; - 3C52A7E842397DEB2CAE85EA2724EB6C /* RNNotificationParser.m in Sources */ = {isa = PBXBuildFile; fileRef = 984462F627EEC579F8FAB2038D2E2ED2 /* RNNotificationParser.m */; }; - 3C57B9928E0E9E9146182C7BB5615F19 /* UMAppLoaderInterface.h in Headers */ = {isa = PBXBuildFile; fileRef = 43580BF100C066A52A315A024BACB30C /* UMAppLoaderInterface.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3C507D8861834CE457A7F9E566307E07 /* BugsnagSessionFileStore.h in Headers */ = {isa = PBXBuildFile; fileRef = 8198A32E16C7774E1AB5DFDFC2A4A4D2 /* BugsnagSessionFileStore.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3C52279D222791B4251C03AF8205D902 /* RNCSafeAreaViewLocalData.m in Sources */ = {isa = PBXBuildFile; fileRef = CF8FACEBABF089D2EE50859CCD7257CA /* RNCSafeAreaViewLocalData.m */; }; + 3C52A7E842397DEB2CAE85EA2724EB6C /* RNNotificationParser.m in Sources */ = {isa = PBXBuildFile; fileRef = C1407F01B5A3653F4A7CB2ADD9476CEE /* RNNotificationParser.m */; }; + 3C57B9928E0E9E9146182C7BB5615F19 /* UMAppLoaderInterface.h in Headers */ = {isa = PBXBuildFile; fileRef = D4783C7917C3E1C90944C685DA701AD2 /* UMAppLoaderInterface.h */; settings = {ATTRIBUTES = (Project, ); }; }; 3C73244EE8A77E5BD59DD8C113FE7664 /* EventFDWrapper.h in Headers */ = {isa = PBXBuildFile; fileRef = D795FB70A5FF1D55584FD68256B28653 /* EventFDWrapper.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3C766293FB7619D510FF59F15B150FAD /* RNPinchHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 9EC8B77FD7AF90D9D433A22F1C9CD121 /* RNPinchHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3C766293FB7619D510FF59F15B150FAD /* RNPinchHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 4DF9BDC94D7D090AAC215443CF1F8E86 /* RNPinchHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; 3C7E7789B620CD423919122D943ECBE0 /* IPAddress.h in Headers */ = {isa = PBXBuildFile; fileRef = 3890A2E9E1D29DF9E05B62849B17B7BD /* IPAddress.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3C92C8F7A4ED06A3BC4B927DC4CF68D5 /* RCTLinkingManager.mm in Sources */ = {isa = PBXBuildFile; fileRef = 456108B3214E143622CB7C6C724916A5 /* RCTLinkingManager.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + 3C92C8F7A4ED06A3BC4B927DC4CF68D5 /* RCTLinkingManager.mm in Sources */ = {isa = PBXBuildFile; fileRef = E166D873D615A5C11E0FEDB353AFA5CF /* RCTLinkingManager.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; 3C98A74B81322A6703D4A7A5C03E5F34 /* SKResponseInfo.h in Headers */ = {isa = PBXBuildFile; fileRef = 4183BD06849CA1A16C75157F6A8A7827 /* SKResponseInfo.h */; settings = {ATTRIBUTES = (Project, ); }; }; 3CA11DFB93099A0F552AADB56058D1B8 /* libMMKV.mm in Sources */ = {isa = PBXBuildFile; fileRef = 76F902F856558ECE30D580EC2028139E /* libMMKV.mm */; }; 3CBE6FF9CF1D82A56BAF731390BEF2D2 /* utils.h in Headers */ = {isa = PBXBuildFile; fileRef = AFA7E759EA59B6DF7EA8476959CAE618 /* utils.h */; settings = {ATTRIBUTES = (Project, ); }; }; 3CD64518F73B6927C62245CDADE43076 /* ParallelMap-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = F7F62AC197CF55D1A832B996E6FD49EA /* ParallelMap-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3D05D9FBB81C550A4F7C5E2FF0D53CE4 /* JSBigString.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 70E2C1A18C3D913B86BC0E04AA67A946 /* JSBigString.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 3D0E69701C3E45B13D0AF277BA2EF966 /* RCTFont.mm in Sources */ = {isa = PBXBuildFile; fileRef = C8CDD306407E9BD523EF2092DCD6EE0F /* RCTFont.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 3D1F8803B18FF14CD64A032CAF21EDAB /* RCTSurfaceRootShadowView.m in Sources */ = {isa = PBXBuildFile; fileRef = 8ECE5C83E42031C57AFA60904FC4FC2A /* RCTSurfaceRootShadowView.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 3D05D9FBB81C550A4F7C5E2FF0D53CE4 /* JSBigString.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 359486B7286C835AC9695AACF2722EAE /* JSBigString.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 3D0E69701C3E45B13D0AF277BA2EF966 /* RCTFont.mm in Sources */ = {isa = PBXBuildFile; fileRef = D8BBF0AF3F05628625B8716FD0F530F2 /* RCTFont.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 3D1F8803B18FF14CD64A032CAF21EDAB /* RCTSurfaceRootShadowView.m in Sources */ = {isa = PBXBuildFile; fileRef = 430573CAF63D4ADA555F3293195E4B4D /* RCTSurfaceRootShadowView.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; 3D28C702086FF74739928D70196FA81D /* symbolize.cc in Sources */ = {isa = PBXBuildFile; fileRef = 9352FB7DBE05F5908BBEC7CE1034322B /* symbolize.cc */; settings = {COMPILER_FLAGS = "-Wno-shorten-64-to-32"; }; }; - 3D2BDDA5696E0248B91335C53007C1D8 /* RCTKeyCommandsManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 5DDE8D8C46A684C9E2E623560792AE43 /* RCTKeyCommandsManager.m */; }; + 3D2BDDA5696E0248B91335C53007C1D8 /* RCTKeyCommandsManager.m in Sources */ = {isa = PBXBuildFile; fileRef = DC2C731D4EE491B39B1F3F672873DB23 /* RCTKeyCommandsManager.m */; }; 3D518EE441B3E33D5846310B922E1EA4 /* FIRCLSThreadState.c in Sources */ = {isa = PBXBuildFile; fileRef = 255D72B71BDB0BB5FEFE4E338122CF8E /* FIRCLSThreadState.c */; }; - 3D68D2557A63C01FD65F87F4565A0A53 /* UMModuleRegistry.m in Sources */ = {isa = PBXBuildFile; fileRef = DA75404D28828B63667CCB72B68F56AB /* UMModuleRegistry.m */; }; - 3D6B17E830FAC8972A903412ABC93839 /* RNCSafeAreaViewMode.m in Sources */ = {isa = PBXBuildFile; fileRef = DEC3505CDC6064515E84CC0C8BA7F28F /* RNCSafeAreaViewMode.m */; }; + 3D68D2557A63C01FD65F87F4565A0A53 /* UMModuleRegistry.m in Sources */ = {isa = PBXBuildFile; fileRef = C3A406431A8AE789AAD92A846187F169 /* UMModuleRegistry.m */; }; + 3D6B17E830FAC8972A903412ABC93839 /* RNCSafeAreaViewMode.m in Sources */ = {isa = PBXBuildFile; fileRef = 7C9416C937A72C8891C878568DD7A7F6 /* RNCSafeAreaViewMode.m */; }; 3D730CDE4689268B28E8F06DBE26B123 /* FIRCLSUnwind_arm.c in Sources */ = {isa = PBXBuildFile; fileRef = B4FF54CA08915921A79C644F03386D42 /* FIRCLSUnwind_arm.c */; }; 3D908533C5BDA9E1C662C9426D1A38A8 /* SDAssociatedObject.m in Sources */ = {isa = PBXBuildFile; fileRef = 7D19397EEA8F7A16C85C82BF80D6D443 /* SDAssociatedObject.m */; }; 3D93DB04DD641799254FA46FAE37CC5B /* Futex.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2C573CAD70E719BB6148A58884594153 /* Futex.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; 3D9F8FE3C127F89AEAD65F09969FE642 /* muxedit.c in Sources */ = {isa = PBXBuildFile; fileRef = 0E11F253C1B79EACC5EEA0071F470DD8 /* muxedit.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 3DA5DB3392201B4BDCE5115EB4646156 /* RCTConvert+ART.h in Headers */ = {isa = PBXBuildFile; fileRef = C667E1C8D7B6611C4071949D497B01CE /* RCTConvert+ART.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3DA5DB3392201B4BDCE5115EB4646156 /* RCTConvert+ART.h in Headers */ = {isa = PBXBuildFile; fileRef = DD8633B5B94F50472AEC500763AD1E55 /* RCTConvert+ART.h */; settings = {ATTRIBUTES = (Project, ); }; }; 3DBE36980A233DC5A133EFA049B5B34B /* MMKVPredef.h in Headers */ = {isa = PBXBuildFile; fileRef = 7DCEFF71B1D9E6E5355DDC8CA604AB79 /* MMKVPredef.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3DF69DD69EFC71B53DC433F9ED7C6AC0 /* FBReactNativeSpec-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 3CF82021B17801ABC7DB9FCB55A532FF /* FBReactNativeSpec-dummy.m */; }; + 3DF69DD69EFC71B53DC433F9ED7C6AC0 /* FBReactNativeSpec-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 53AEDE8E2CF908FDA04B03D3CAE253E3 /* FBReactNativeSpec-dummy.m */; }; 3E3F53ADD7E28D7E1E396842FEA1EE02 /* Executor.h in Headers */ = {isa = PBXBuildFile; fileRef = BA89430F8B09AA75B3E6F6F35190E02A /* Executor.h */; settings = {ATTRIBUTES = (Project, ); }; }; 3E64101FC90134AAB704521D67EC551E /* SDWebImageDefine.h in Headers */ = {isa = PBXBuildFile; fileRef = 15A80F17EFAE83359F19CB3301D8F0AA /* SDWebImageDefine.h */; settings = {ATTRIBUTES = (Project, ); }; }; 3E72F4E30D9B7EEB3144323D44D03793 /* IntrusiveList.h in Headers */ = {isa = PBXBuildFile; fileRef = 75CD3856553F85B73142E64B3A6A3AED /* IntrusiveList.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3E7C97717B849331E16AB17136DF7E68 /* ReactMarker.h in Headers */ = {isa = PBXBuildFile; fileRef = 6E5370F5F3BEB32B6D1EEB4DF030ADA7 /* ReactMarker.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3E7C97717B849331E16AB17136DF7E68 /* ReactMarker.h in Headers */ = {isa = PBXBuildFile; fileRef = CB424A2EB01377F79EE4D04D1751381B /* ReactMarker.h */; settings = {ATTRIBUTES = (Project, ); }; }; 3E91F68D2665D1AA0069E5C27FABCA9F /* ShutdownSocketSet.h in Headers */ = {isa = PBXBuildFile; fileRef = EF89D7EE6893861B6EA4BA7986F0BC5F /* ShutdownSocketSet.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3EA70D57B30FED28D990A35340057084 /* RCTRedBoxSetEnabled.h in Headers */ = {isa = PBXBuildFile; fileRef = 1174981182DD83078F016F79F7A9B9DA /* RCTRedBoxSetEnabled.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3EDB3836BAEFE8B1CF5E13470FE604DC /* RCTFileRequestHandler.mm in Sources */ = {isa = PBXBuildFile; fileRef = 4A5AC3525D69BAF7B7174D3D76953776 /* RCTFileRequestHandler.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + 3EA70D57B30FED28D990A35340057084 /* RCTRedBoxSetEnabled.h in Headers */ = {isa = PBXBuildFile; fileRef = 8BD211382ED263876E7B39576EFFA214 /* RCTRedBoxSetEnabled.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3EDB3836BAEFE8B1CF5E13470FE604DC /* RCTFileRequestHandler.mm in Sources */ = {isa = PBXBuildFile; fileRef = 1A3541823C7111D0BE86D2903E0A7BE6 /* RCTFileRequestHandler.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; 3F16574039A61B5C86268A6D9E5BD931 /* picture_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = 77E2F5181F368F5F02DD7F9C5EDE2FCA /* picture_enc.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; 3F24A3DB577F5F9DE3E7E73B8E06C682 /* cct.nanopb.c in Sources */ = {isa = PBXBuildFile; fileRef = 3198919F3064B327D1044E70E2ED666A /* cct.nanopb.c */; }; 3F49AA173DB0D5F9FD4170902B39752D /* FIRCLSProfiling.c in Sources */ = {isa = PBXBuildFile; fileRef = AD8FC31B2B3A41E2DD01AE5F916D08D4 /* FIRCLSProfiling.c */; }; @@ -1002,64 +995,64 @@ 3F93027B044BA4ABF4D115764CB29244 /* String.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 0BF0F4A8A615BF132A32374BA90CBF6C /* String.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; 3F9348227893EA6B31E31FD5F58CEA7F /* NSData+ImageContentType.m in Sources */ = {isa = PBXBuildFile; fileRef = 3BB695259EFD1A6F97D63899C791A673 /* NSData+ImageContentType.m */; }; 3F9D460D6684DBFD200DBE5839299505 /* ProxyLockable-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 6FB1EF6C30200767A22935984B6A8E04 /* ProxyLockable-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3FAC43727CED4D3007DAD3D052638B5D /* MMKVStorage.h in Headers */ = {isa = PBXBuildFile; fileRef = BEF8B89F521FDA3E0251AB10B09AA102 /* MMKVStorage.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3FBB88E0254E6E6972826A7C76C136B3 /* UMModuleRegistryHolderReactModule.m in Sources */ = {isa = PBXBuildFile; fileRef = 1061DD7D7CAC8550321BD6B46CD6CB7F /* UMModuleRegistryHolderReactModule.m */; }; + 3FAC43727CED4D3007DAD3D052638B5D /* MMKVStorage.h in Headers */ = {isa = PBXBuildFile; fileRef = 90ADEADA3FED0223508CDE9C57889B0B /* MMKVStorage.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3FBB88E0254E6E6972826A7C76C136B3 /* UMModuleRegistryHolderReactModule.m in Sources */ = {isa = PBXBuildFile; fileRef = 70BF9DD00B20947CD78D195CD6F912E6 /* UMModuleRegistryHolderReactModule.m */; }; 3FC1DB2B2882744E0BC167FC89372873 /* GDTCCTCompressionHelper.h in Headers */ = {isa = PBXBuildFile; fileRef = 4298B632D8662ADA04F5546E967DA855 /* GDTCCTCompressionHelper.h */; settings = {ATTRIBUTES = (Project, ); }; }; 3FE0A32EC96E9E49C2E7A93852717142 /* AutoTimer.h in Headers */ = {isa = PBXBuildFile; fileRef = 7FD1894616432E8801F4121C9554199B /* AutoTimer.h */; settings = {ATTRIBUTES = (Project, ); }; }; 3FE6DC36C896C99E4F0E10B92E1FE061 /* frame_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = D991CF97F8D8407856A570EEC307D224 /* frame_enc.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 3FF70BD5879039040169C7BF15AF04A1 /* RCTVibration.mm in Sources */ = {isa = PBXBuildFile; fileRef = 4E0B485BCE1A2A3D1063FAE9CCCBD5CF /* RCTVibration.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; - 3FFC12F083C51549727315984B52D62F /* ImageCropPicker.h in Headers */ = {isa = PBXBuildFile; fileRef = 603BAA50500CCF9DDAA789B05DA5431D /* ImageCropPicker.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3FF70BD5879039040169C7BF15AF04A1 /* RCTVibration.mm in Sources */ = {isa = PBXBuildFile; fileRef = AD73A5D2B0A7A8D78486198933973DBF /* RCTVibration.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + 3FFC12F083C51549727315984B52D62F /* ImageCropPicker.h in Headers */ = {isa = PBXBuildFile; fileRef = 0F394CB1A791D488D9E3FA92F2295844 /* ImageCropPicker.h */; settings = {ATTRIBUTES = (Project, ); }; }; 4007B7F35C430A2ABAF9342676CCE0D5 /* TestSubscriber.h in Headers */ = {isa = PBXBuildFile; fileRef = FD38BB00405FC9935354DC865D2EF86C /* TestSubscriber.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4016A54338710B03C31800F382F06669 /* RCTSafeAreaViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = A27A7C6DA2747997F4AC6A88E87F5BEA /* RCTSafeAreaViewManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 4016A54338710B03C31800F382F06669 /* RCTSafeAreaViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = AF6A28767374A51B98A0B41BABBA2020 /* RCTSafeAreaViewManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; 4023DC41F602B44BAF60408389A2B762 /* GULReachabilityChecker.m in Sources */ = {isa = PBXBuildFile; fileRef = 8F95B87CBA8D3DEC656CF9C2135D0B04 /* GULReachabilityChecker.m */; }; 404D6BB861E63EEB9E73E08FF90F800C /* Flipper-Glog-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 482963E68B742542703CB33AA739B756 /* Flipper-Glog-dummy.m */; }; 4053B1CC3CD5A04F550DB606726DA74B /* Flowable_FromObservable.h in Headers */ = {isa = PBXBuildFile; fileRef = 6109E1F1875E47099A00E210146E5DD2 /* Flowable_FromObservable.h */; settings = {ATTRIBUTES = (Project, ); }; }; 40614B380FD380F02DE30BF3AC2B5BD2 /* SKBufferingPlugin.h in Headers */ = {isa = PBXBuildFile; fileRef = 8D469401E7282C56A94687BBD09E5E22 /* SKBufferingPlugin.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 40746D1CB917000585492F2B1BAD4E20 /* RCTSurfacePresenterStub.h in Headers */ = {isa = PBXBuildFile; fileRef = 43A61F7152F5A0FB61A6562D7B38CE10 /* RCTSurfacePresenterStub.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 40746D1CB917000585492F2B1BAD4E20 /* RCTSurfacePresenterStub.h in Headers */ = {isa = PBXBuildFile; fileRef = 9D531ECD3EF97077C1F842731A53A609 /* RCTSurfacePresenterStub.h */; settings = {ATTRIBUTES = (Project, ); }; }; 407D321F392BA208926EBD1B3F68D901 /* ScheduledSubscription.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 310035D1FB78DE2D64DB8961EFE8ED01 /* ScheduledSubscription.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0 -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; 407DF13B0A6D61F156D84B50D25A3E2D /* upsampling_neon.c in Sources */ = {isa = PBXBuildFile; fileRef = 788DF881192CA8C3E14AF7D40F5179A6 /* upsampling_neon.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; 40828CDB34CB0D9DB95817B36B4DE561 /* Latch.h in Headers */ = {isa = PBXBuildFile; fileRef = FE3F9DB0E5B5FF537548C1B2957F1AA3 /* Latch.h */; settings = {ATTRIBUTES = (Project, ); }; }; 40882DB2D16FD7AD4EB5CC4DDAFC57F0 /* fast-dtoa.h in Headers */ = {isa = PBXBuildFile; fileRef = 7B38271B66DBC0D7269A0250EF2A082B /* fast-dtoa.h */; settings = {ATTRIBUTES = (Project, ); }; }; 408B66DC035EFC857FA1702A13AC9C86 /* RSocketClient.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1406AEFDE1A4D3B267A63FF43CF1B241 /* RSocketClient.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0 -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; 40C5F7BC48B53F2B5C4EF3B60F4C21B6 /* PriorityUnboundedQueueSet.h in Headers */ = {isa = PBXBuildFile; fileRef = CCAEEF5103784B8F6521F32C34FD4EA6 /* PriorityUnboundedQueueSet.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 40CEDF91F7F05C23450E53976C0D24D5 /* RCTMultipartDataTask.m in Sources */ = {isa = PBXBuildFile; fileRef = 97018D259B0D126C7761FC5EE81F5875 /* RCTMultipartDataTask.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 40D3D7F8A9A20E8AF9968CED7BA360DC /* RNCSafeAreaProvider.h in Headers */ = {isa = PBXBuildFile; fileRef = DDE11703FBCF79D22293160A2C11C71D /* RNCSafeAreaProvider.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 40CEDF91F7F05C23450E53976C0D24D5 /* RCTMultipartDataTask.m in Sources */ = {isa = PBXBuildFile; fileRef = 3C3404C0F297D00A0B67F3F1D0F415FA /* RCTMultipartDataTask.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 40D3D7F8A9A20E8AF9968CED7BA360DC /* RNCSafeAreaProvider.h in Headers */ = {isa = PBXBuildFile; fileRef = 281D8CF916CAEB88471D37D11BFF690A /* RNCSafeAreaProvider.h */; settings = {ATTRIBUTES = (Project, ); }; }; 411A3C1B75FB16BE3B6C5709BBB21AD0 /* upsampling_sse41.c in Sources */ = {isa = PBXBuildFile; fileRef = D222508BEDF658D13C92CA937D0A5B0D /* upsampling_sse41.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 411F8EF903AF5C1D33126CA205624E2C /* RCTDatePickerManager.m in Sources */ = {isa = PBXBuildFile; fileRef = D63A7A7E8EC42561D9FEB776542D5CF0 /* RCTDatePickerManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 4130743FA94193D1413C4E4A1F925D6B /* REATransitionValues.h in Headers */ = {isa = PBXBuildFile; fileRef = 6216563D5EB7B6D2DFB9B412964A6EC0 /* REATransitionValues.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 411F8EF903AF5C1D33126CA205624E2C /* RCTDatePickerManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 0159D057369B74CBE0C3471C25A61664 /* RCTDatePickerManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 4130743FA94193D1413C4E4A1F925D6B /* REATransitionValues.h in Headers */ = {isa = PBXBuildFile; fileRef = F28715E157ECC0469457139AFE6C51E1 /* REATransitionValues.h */; settings = {ATTRIBUTES = (Project, ); }; }; 414724F4692F8D88F49D35C4DCEA4D54 /* MMKVCore-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = E4036261C95C8E6831DAB252B7C7B126 /* MMKVCore-dummy.m */; }; - 4151149DD2912D71C7B2B5BE90FF6BCA /* UMUIManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 926C6D196E10F4DAD7C994F18B3594EA /* UMUIManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4189660EF185363F700A6A4B5BF751F7 /* EXPermissions-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 3901A3B3F06ECD8EC4958E1172ACCF1B /* EXPermissions-dummy.m */; }; + 4151149DD2912D71C7B2B5BE90FF6BCA /* UMUIManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 6B2CC74B0D9DC7218C75205D578D24A9 /* UMUIManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4189660EF185363F700A6A4B5BF751F7 /* EXPermissions-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 13760B5A97CDEC3F96A6319E3B671158 /* EXPermissions-dummy.m */; }; 418A80C97BE6673E08EF82021C76B68C /* FIRCLSSymbolResolver.h in Headers */ = {isa = PBXBuildFile; fileRef = 9930E8BDE14FD0D5625A004F75A0E2D9 /* FIRCLSSymbolResolver.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 41A875AF9B80762A227B0C9FCDADC17B /* EXConstants-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 9FBEA02E5196810C727737B18F6B1714 /* EXConstants-dummy.m */; }; + 41A875AF9B80762A227B0C9FCDADC17B /* EXConstants-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = C0BDA414C7FAD399D75F3EDE295BBEAD /* EXConstants-dummy.m */; }; 41AA3998B750D854C500181BC0B9D8ED /* FIRCLSProcessReportOperation.m in Sources */ = {isa = PBXBuildFile; fileRef = A5A176C2A092D10F8B06080D636307A4 /* FIRCLSProcessReportOperation.m */; }; - 41BC8ECBCFF0EBE4AC91F17753DDEE12 /* RCTTextView.h in Headers */ = {isa = PBXBuildFile; fileRef = E311B9BC095F8526FABFC27783015FC1 /* RCTTextView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 41C0B692521AF1F9039A5CE16E841F76 /* QBAlbumsViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = 24DFBF706C9184D2B5F4031090E6DC03 /* QBAlbumsViewController.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4205ADAF94B00946E01FCE633872C359 /* EXVideoManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 97E1C7B8094B7C41A67AEE34F254929F /* EXVideoManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 41BC8ECBCFF0EBE4AC91F17753DDEE12 /* RCTTextView.h in Headers */ = {isa = PBXBuildFile; fileRef = CBDCAAEFF19248FF5247C5192EB10655 /* RCTTextView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 41C0B692521AF1F9039A5CE16E841F76 /* QBAlbumsViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = 10C9FFAA7F46BF08423E200731C17AC7 /* QBAlbumsViewController.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4205ADAF94B00946E01FCE633872C359 /* EXVideoManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 2221E3E897138BC48618528FD55EC913 /* EXVideoManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; 4209E12A312F80DD614ADF85D9F60BE9 /* diy-fp.h in Headers */ = {isa = PBXBuildFile; fileRef = F570304EB016E938ADF33BC841967810 /* diy-fp.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 420B3C745ED37D5791DCF98E843B943F /* StorageGetters.m in Sources */ = {isa = PBXBuildFile; fileRef = 4A40C8F59798D8A2BCE6790DFB979A47 /* StorageGetters.m */; }; - 420DD30BDCD8DFAEE8901638FB304043 /* RCTImageURLLoader.h in Headers */ = {isa = PBXBuildFile; fileRef = 299C8DA531747C55BA8ADE68D2446C52 /* RCTImageURLLoader.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 420B3C745ED37D5791DCF98E843B943F /* StorageGetters.m in Sources */ = {isa = PBXBuildFile; fileRef = 0D16BD08552EE1721EDADB365EE02470 /* StorageGetters.m */; }; + 420DD30BDCD8DFAEE8901638FB304043 /* RCTImageURLLoader.h in Headers */ = {isa = PBXBuildFile; fileRef = 74D9807470785F5581102ABE6F3805E8 /* RCTImageURLLoader.h */; settings = {ATTRIBUTES = (Project, ); }; }; 424C2747CDE3E0FA36F66B30DC971DAE /* FBLPromise+Any.h in Headers */ = {isa = PBXBuildFile; fileRef = DCD30613133E75627E8E07B7B22F86AD /* FBLPromise+Any.h */; settings = {ATTRIBUTES = (Project, ); }; }; 42543A01A17FCDA2A3433623E63433F4 /* Conv.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 96CBD3DFD7AE046C50C14ADC5555748F /* Conv.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; 426010CAC3C039C6F9911BAA2D77B14F /* FIRComponent.m in Sources */ = {isa = PBXBuildFile; fileRef = 452E87A8A1899C42EFBEF4E5BF46216A /* FIRComponent.m */; }; 427C8FA489A629A5C9890AFAA39EA86E /* PriorityThreadFactory.h in Headers */ = {isa = PBXBuildFile; fileRef = 1BCBA980A13E88667208D6B5240409E1 /* PriorityThreadFactory.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4280A2CE689E5C853DF3ED1DE2B480B6 /* REAJSCallNode.m in Sources */ = {isa = PBXBuildFile; fileRef = A77A66F28E2D871386C09DD6425F2C04 /* REAJSCallNode.m */; }; - 429154760417DA4A8F0A41BC41D04047 /* RNNotificationCenterMulticast.m in Sources */ = {isa = PBXBuildFile; fileRef = D1B5E7F0B800924572CF2EC2C0E81130 /* RNNotificationCenterMulticast.m */; }; + 4280A2CE689E5C853DF3ED1DE2B480B6 /* REAJSCallNode.m in Sources */ = {isa = PBXBuildFile; fileRef = E4DBD6562F19ADFAA30FFACD9839D64D /* REAJSCallNode.m */; }; + 429154760417DA4A8F0A41BC41D04047 /* RNNotificationCenterMulticast.m in Sources */ = {isa = PBXBuildFile; fileRef = C96964615B9F8F7FE876DFC466D2F08E /* RNNotificationCenterMulticast.m */; }; 42957C970247C82C69F92C08F821066A /* FIRAEvent.h in Headers */ = {isa = PBXBuildFile; fileRef = 3D8B57121FD848BE72A353E5A4934B38 /* FIRAEvent.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4298F56B1E4215967E5347F795B4E4F5 /* RCTClipboard.mm in Sources */ = {isa = PBXBuildFile; fileRef = A034566B83E983D9806592EDBE69FD2B /* RCTClipboard.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; - 42B2B3F9374AFE30E947D405588183B0 /* ARTRenderableManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 53388542A3913EF6F7FDFEC30720D2B0 /* ARTRenderableManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 42B3A20E95DD61B099F9FEE182B099F1 /* RCTImageSource.m in Sources */ = {isa = PBXBuildFile; fileRef = F2080E40F6F66DA936175922D8EE39E4 /* RCTImageSource.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 4298F56B1E4215967E5347F795B4E4F5 /* RCTClipboard.mm in Sources */ = {isa = PBXBuildFile; fileRef = 8EB53507BB5AD036B428E8B9C6B20031 /* RCTClipboard.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + 42B2B3F9374AFE30E947D405588183B0 /* ARTRenderableManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 5A383BA2FD009C3FD7909E354E65AE36 /* ARTRenderableManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 42B3A20E95DD61B099F9FEE182B099F1 /* RCTImageSource.m in Sources */ = {isa = PBXBuildFile; fileRef = E5C9B5BCBB5FEEF0DFEACE6BC53D5198 /* RCTImageSource.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; 42B8240821C5D0D7926B22BCD88098F1 /* TcpConnectionAcceptor.h in Headers */ = {isa = PBXBuildFile; fileRef = 6373E4A04BEC6CBA035060CA99F0CC11 /* TcpConnectionAcceptor.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 42B9C64402F7F76D826CBC8B924AC777 /* RCTView+SafeAreaCompat.m in Sources */ = {isa = PBXBuildFile; fileRef = 5AF7F58E6E57D439716425CEA864ECE4 /* RCTView+SafeAreaCompat.m */; }; - 42D10881A73DED1DB29B3ABD1F08784D /* RCTKeyCommands.m in Sources */ = {isa = PBXBuildFile; fileRef = 78C1DB4D9E285A0BBEDD46D343D5908E /* RCTKeyCommands.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 42B9C64402F7F76D826CBC8B924AC777 /* RCTView+SafeAreaCompat.m in Sources */ = {isa = PBXBuildFile; fileRef = 4DB4BF1F7BBD3AE397B5253BFDCB6814 /* RCTView+SafeAreaCompat.m */; }; + 42D10881A73DED1DB29B3ABD1F08784D /* RCTKeyCommands.m in Sources */ = {isa = PBXBuildFile; fileRef = C829C3375EC07F1EAFF8CCC8C39012CF /* RCTKeyCommands.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; 42D6D2B79FF8FC8F0FFEC2AC126ACC37 /* Arena-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = FB8BBBFBF353EA7A6878FBEF5405399E /* Arena-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 42FAE59CA87C52C4681925F26E527E45 /* RNFBUtilsModule.m in Sources */ = {isa = PBXBuildFile; fileRef = A4165270806368E9119C3DDB178C17D8 /* RNFBUtilsModule.m */; }; - 4308AA60CADD31E3F781D45CC1294E31 /* Private.h in Headers */ = {isa = PBXBuildFile; fileRef = 467975AFD9EDB1602266121543BE4CBF /* Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 42FAE59CA87C52C4681925F26E527E45 /* RNFBUtilsModule.m in Sources */ = {isa = PBXBuildFile; fileRef = B698277961B93EEFACEA54383F04012A /* RNFBUtilsModule.m */; }; + 4308AA60CADD31E3F781D45CC1294E31 /* Private.h in Headers */ = {isa = PBXBuildFile; fileRef = E4A6ACC86E286EDBA1B86C4D8B46E471 /* Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; 4309F6A95C2F4533FEBADDAB9EC72DDC /* SKBufferingPlugin+CPPInitialization.h in Headers */ = {isa = PBXBuildFile; fileRef = 6E4C2D4833B6422C913419373FFC9CF1 /* SKBufferingPlugin+CPPInitialization.h */; settings = {ATTRIBUTES = (Project, ); }; }; 430BDCE7D0538E995FE37CAEBE40B4D0 /* RangeSse42.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2E3B7B5D952279C78CC0490C8F4C222E /* RangeSse42.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; 431778336B1ACE03A58ACD10E0BDAC1D /* BitIterator.h in Headers */ = {isa = PBXBuildFile; fileRef = 13D80DD75B0709974E73A04CB390F73D /* BitIterator.h */; settings = {ATTRIBUTES = (Project, ); }; }; 432FA6CECE7A4FDF913C7953D1433AA3 /* SDDeviceHelper.h in Headers */ = {isa = PBXBuildFile; fileRef = 4B53E40ABBBFEB903E35684CAD1B0D67 /* SDDeviceHelper.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 433524C99CACAC26A7D2512DD58C1D4F /* BugsnagUser.h in Headers */ = {isa = PBXBuildFile; fileRef = 484DAD558E09523E40F732EB23805655 /* BugsnagUser.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 433524C99CACAC26A7D2512DD58C1D4F /* BugsnagUser.h in Headers */ = {isa = PBXBuildFile; fileRef = 89C75F8622905E01D3CB8526D82BFA26 /* BugsnagUser.h */; settings = {ATTRIBUTES = (Project, ); }; }; 43392A4D79B8DC5E22D18499B86234CC /* ScheduledFrameProcessor.h in Headers */ = {isa = PBXBuildFile; fileRef = 7538D18193E47EF2911EA32F73FC5723 /* ScheduledFrameProcessor.h */; settings = {ATTRIBUTES = (Project, ); }; }; 43506A7BA8EEEBCF95741CDA3B381B87 /* FIRAValue.h in Headers */ = {isa = PBXBuildFile; fileRef = E8F688C15AB5C089BB2293389D03C29E /* FIRAValue.h */; settings = {ATTRIBUTES = (Project, ); }; }; 4371D77F7D30EE2C28086AF3C6141AAF /* SDWebImageDownloaderResponseModifier.m in Sources */ = {isa = PBXBuildFile; fileRef = C46034AC441CAF5D9E2AFC8218C74065 /* SDWebImageDownloaderResponseModifier.m */; }; @@ -1068,8 +1061,8 @@ 43A22B01D4DC0FAF7BCB423E3AFB00FF /* SDWebImageTransition.m in Sources */ = {isa = PBXBuildFile; fileRef = BB824F4AB5400F724833397906D2FF41 /* SDWebImageTransition.m */; }; 43B78010580505476F3E8FC480770934 /* FIRInstallationsSingleOperationPromiseCache.h in Headers */ = {isa = PBXBuildFile; fileRef = 276F3F91D7A31DD7EED2F990FDE60364 /* FIRInstallationsSingleOperationPromiseCache.h */; settings = {ATTRIBUTES = (Project, ); }; }; 43CA220075CB818C01526FF2A9432522 /* ExecutorWithPriority-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 065FCC25B084C2FE50C2AB02663D8DE7 /* ExecutorWithPriority-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 43ECD9A5430D7EC2CFB179B8C361077E /* StorageIndexer.m in Sources */ = {isa = PBXBuildFile; fileRef = E3DF2CA44D2DEADF92E75108A79FC16D /* StorageIndexer.m */; }; - 44077BE7DC478E91BB1F7FBCBD475D79 /* RNBootSplash-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = FAA36A69548EACA133D443DB56EB00CF /* RNBootSplash-dummy.m */; }; + 43ECD9A5430D7EC2CFB179B8C361077E /* StorageIndexer.m in Sources */ = {isa = PBXBuildFile; fileRef = 9EE82643589B6B444972EAFDB060005F /* StorageIndexer.m */; }; + 44077BE7DC478E91BB1F7FBCBD475D79 /* RNBootSplash-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = BCE39BDDC56E070DB5377E21095423C6 /* RNBootSplash-dummy.m */; }; 441B93B804E191A50943F1C1D8A1B1CF /* GULKeychainUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = 2202230CEA646EACF64B721865C58DD8 /* GULKeychainUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; 4438CFBF04202C1F6AA6738A28EDEDAD /* FIRComponentType.h in Headers */ = {isa = PBXBuildFile; fileRef = 16DB1707BC9908C3518722B608F5B223 /* FIRComponentType.h */; settings = {ATTRIBUTES = (Project, ); }; }; 443D3DDF5D13F55E3BE2AB33A97AA222 /* ScheduledRSocketResponder.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F3BB7CF7803741C9CF1DCD07692FC497 /* ScheduledRSocketResponder.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0 -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; @@ -1079,34 +1072,34 @@ 4456DC7E9228FF28308FEEAA206EE6E5 /* Request.h in Headers */ = {isa = PBXBuildFile; fileRef = BC793B789BC6A2B2ACBBBB5A6E807CF9 /* Request.h */; settings = {ATTRIBUTES = (Project, ); }; }; 44632E81B6BB000278A79A5F1ED4361B /* stl_logging.h in Headers */ = {isa = PBXBuildFile; fileRef = 06A0EA90E932E5FF5DA7235B3B28B11D /* stl_logging.h */; settings = {ATTRIBUTES = (Project, ); }; }; 4468D0C7AA98C38510939461FC53E5DC /* raw_logging.cc in Sources */ = {isa = PBXBuildFile; fileRef = 485E3C444F6F2D3117FE1ED31D9B6242 /* raw_logging.cc */; settings = {COMPILER_FLAGS = "-Wno-shorten-64-to-32"; }; }; - 447005F902B950F31D9B84B31863C6C2 /* RNGestureHandlerState.h in Headers */ = {isa = PBXBuildFile; fileRef = 18655F332376A6C0A76D021BA7F31217 /* RNGestureHandlerState.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 44A32BD3CBB607E309FBB35F2F622169 /* RCTNativeAnimatedModule.h in Headers */ = {isa = PBXBuildFile; fileRef = D70FB57857EFAE2D26EB78BB1B652DB9 /* RCTNativeAnimatedModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 447005F902B950F31D9B84B31863C6C2 /* RNGestureHandlerState.h in Headers */ = {isa = PBXBuildFile; fileRef = F894B9A16ED28923C5B8F84CD39FB70D /* RNGestureHandlerState.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 44A32BD3CBB607E309FBB35F2F622169 /* RCTNativeAnimatedModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 6F45ACD960E14487FC86FC9D5B154DCA /* RCTNativeAnimatedModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; 4562ABCE009528F380B10B8433A6EAB6 /* FIRLibrary.h in Headers */ = {isa = PBXBuildFile; fileRef = 73A77F48EC09117C89737776DB4899A4 /* FIRLibrary.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 45744AC050A11157EFA8904C600CDD30 /* NSData+EXFileSystem.m in Sources */ = {isa = PBXBuildFile; fileRef = 877D1D546EEC3A7F2D6F189F1A4EC633 /* NSData+EXFileSystem.m */; }; - 457707C4961BF8ACCA29276F1F152120 /* Bugsnag.m in Sources */ = {isa = PBXBuildFile; fileRef = 2CD6D224057491F744E5DBA1308419E7 /* Bugsnag.m */; }; + 45744AC050A11157EFA8904C600CDD30 /* NSData+EXFileSystem.m in Sources */ = {isa = PBXBuildFile; fileRef = 01B0712393C95CA9E119CC0694FD8247 /* NSData+EXFileSystem.m */; }; + 457707C4961BF8ACCA29276F1F152120 /* Bugsnag.m in Sources */ = {isa = PBXBuildFile; fileRef = FCABDB9A13F2704E7EDF314450D91B28 /* Bugsnag.m */; }; 4584237784EA05B37B6C57AEA19C0DA1 /* FramedDuplexConnection.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 95792416180CB79A3E224367C8411ABF /* FramedDuplexConnection.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0 -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - 45955CF3D29DDBFBD70BE7074C312431 /* ARTRenderableManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 19ABD26097A488C817B74BF4E757A868 /* ARTRenderableManager.m */; }; + 45955CF3D29DDBFBD70BE7074C312431 /* ARTRenderableManager.m in Sources */ = {isa = PBXBuildFile; fileRef = AEF1581357A751A307769D053EF7CF1C /* ARTRenderableManager.m */; }; 45D699FECA801F44943FF1FA546A60FA /* IOThreadPoolExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = 7F248CA22956534AD12562822B288A0C /* IOThreadPoolExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 45E453D6D86AF7E65607897FDA4EB49A /* ImageCropPicker.m in Sources */ = {isa = PBXBuildFile; fileRef = 0BFA466E5FDAB6CCE83BF9DDCBE72305 /* ImageCropPicker.m */; }; - 45F71DFD22BEC364E20D6D6666FC8E59 /* RCTInspector.mm in Sources */ = {isa = PBXBuildFile; fileRef = 7FE27CA8C01F76EE5B315C6FBA646E84 /* RCTInspector.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 45E453D6D86AF7E65607897FDA4EB49A /* ImageCropPicker.m in Sources */ = {isa = PBXBuildFile; fileRef = A648E34173D783314DFC200842909F85 /* ImageCropPicker.m */; }; + 45F71DFD22BEC364E20D6D6666FC8E59 /* RCTInspector.mm in Sources */ = {isa = PBXBuildFile; fileRef = C30C44203E76407657720D9AE51AEECF /* RCTInspector.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; 4620B2AEA9AF6351E661200E2DD3A3C9 /* Uri.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 44E626EE32F3CF1BEDA84CBE08DC2091 /* Uri.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - 4647F15E0AAB72AAF4365266C1EB0F4E /* UMEventEmitterService.h in Headers */ = {isa = PBXBuildFile; fileRef = ADC9A8BBBA87864B0FDDB352A3FA40C7 /* UMEventEmitterService.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4647F15E0AAB72AAF4365266C1EB0F4E /* UMEventEmitterService.h in Headers */ = {isa = PBXBuildFile; fileRef = 7C1DAA8A5E4DD55981700D3946D57BFF /* UMEventEmitterService.h */; settings = {ATTRIBUTES = (Project, ); }; }; 4660AD51A8D6ACBF5A2A87CD7512E905 /* Hardware.h in Headers */ = {isa = PBXBuildFile; fileRef = 8D6B664D18299F557A9D45D6AE6F1C85 /* Hardware.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 466306A54775FBB6D3367A06DA9D4D98 /* ObservingInputAccessoryView.h in Headers */ = {isa = PBXBuildFile; fileRef = 6E7E9B42637518949CA77C619960587A /* ObservingInputAccessoryView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 466306A54775FBB6D3367A06DA9D4D98 /* ObservingInputAccessoryView.h in Headers */ = {isa = PBXBuildFile; fileRef = BB1B50F6E9C105E2E06B5A0F701187CD /* ObservingInputAccessoryView.h */; settings = {ATTRIBUTES = (Project, ); }; }; 467BF23FF6980B07FCDC81FAC9BC9C5A /* id.lproj in Resources */ = {isa = PBXBuildFile; fileRef = C43F20A92B180AEF7A8C6C7AF12F1A10 /* id.lproj */; }; - 467D20152450EFDE23E605CACF4BD77C /* RCTSinglelineTextInputViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 7F9744A33CB3738D77C7575BF4C42ABD /* RCTSinglelineTextInputViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 467D20152450EFDE23E605CACF4BD77C /* RCTSinglelineTextInputViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 5673330D50DEB45B91BB1B7FF27E69A1 /* RCTSinglelineTextInputViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; 468106B01EBD8555D998ED1CB759ECDF /* FIRCLSRecordBase.m in Sources */ = {isa = PBXBuildFile; fileRef = 3A629223F976F71639D71C0F1B2F28BB /* FIRCLSRecordBase.m */; }; - 468E2BA37E64CD16F291C2603E6C6D60 /* RNCSliderManager.m in Sources */ = {isa = PBXBuildFile; fileRef = C5D1A45B52A3F32F4D6F2203E1BB3BEF /* RNCSliderManager.m */; }; + 468E2BA37E64CD16F291C2603E6C6D60 /* RNCSliderManager.m in Sources */ = {isa = PBXBuildFile; fileRef = EFE3FCC42C775B220FCF89B4A00B0F07 /* RNCSliderManager.m */; }; 46E0BC2A484E85D6E84B52B6F14CA502 /* FIRInstallationsVersion.m in Sources */ = {isa = PBXBuildFile; fileRef = 8B83BB262BBE5BBBE29D484219313691 /* FIRInstallationsVersion.m */; }; 46F677887FF3768DDC04707CD0DDE1A1 /* json_pointer.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 57E672092DD39DA8E468857221841AB5 /* json_pointer.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; 46FF233827FD9F59855A0707AD6320FE /* ClockGettimeWrappers.h in Headers */ = {isa = PBXBuildFile; fileRef = DC1FEDF4CD5DC993AD1D4B0BE98275CF /* ClockGettimeWrappers.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4702DE0E38D27BC3EC745A720CCAC8FF /* BSG_KSCrashDoctor.m in Sources */ = {isa = PBXBuildFile; fileRef = 2B7086B4FF95C12A48AD94660A6FC301 /* BSG_KSCrashDoctor.m */; }; + 4702DE0E38D27BC3EC745A720CCAC8FF /* BSG_KSCrashDoctor.m in Sources */ = {isa = PBXBuildFile; fileRef = A25167F1E0EC0A6D9BEF9BB7C6B13F7C /* BSG_KSCrashDoctor.m */; }; 47100C8C26038713F688529AFE01C5B2 /* Checksum.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9B7F2E6D40A0A33BC5C39F075891F642 /* Checksum.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - 47137640EA9918E330D043246EA8EB14 /* UIImage+Resize.h in Headers */ = {isa = PBXBuildFile; fileRef = 0E8D08598952C115C8C26E5B1E95284E /* UIImage+Resize.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 47137640EA9918E330D043246EA8EB14 /* UIImage+Resize.h in Headers */ = {isa = PBXBuildFile; fileRef = 69E492CD03317F9F72D4C017CDEC9537 /* UIImage+Resize.h */; settings = {ATTRIBUTES = (Project, ); }; }; 471C1D77368DCD1F99DA320EA6D0893C /* ScopedLock.hpp in Headers */ = {isa = PBXBuildFile; fileRef = E28D6E1DFC61215A65072B6F3AC8E199 /* ScopedLock.hpp */; settings = {ATTRIBUTES = (Project, ); }; }; 474C3BE8073A5D673B57C69C7996E60A /* AsyncTrace.h in Headers */ = {isa = PBXBuildFile; fileRef = 00E89C7237B3349F0BC8441CEC8099B7 /* AsyncTrace.h */; settings = {ATTRIBUTES = (Project, ); }; }; 47590AEF8918372FE41C5480D9091E6D /* RWSpinLock.h in Headers */ = {isa = PBXBuildFile; fileRef = D5CA6CF8347107CE885E03EE8C4CE52D /* RWSpinLock.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4768025E8BC8345844CB63790938C9DC /* RCTFileReaderModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 5B8262D25D30A6111A0B6A817AF55FB2 /* RCTFileReaderModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4768025E8BC8345844CB63790938C9DC /* RCTFileReaderModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 0A655009077EB9C203871714A1D29383 /* RCTFileReaderModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; 477A70514A5CED495611D708BF35F217 /* FIRAEvent+Internal.m in Sources */ = {isa = PBXBuildFile; fileRef = FA130D008B802681B6F2F5E96A558A82 /* FIRAEvent+Internal.m */; }; 479616E8106772AFE3286C5456650297 /* FIRComponentContainer.h in Headers */ = {isa = PBXBuildFile; fileRef = BAFC42D3FE10505C8A1F403FE5F1CE2F /* FIRComponentContainer.h */; settings = {ATTRIBUTES = (Project, ); }; }; 47A329911ADA768AC86D452A38D32D53 /* FirebaseInstallations-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 7E73E820E0E7570C0A536DCF53EE5509 /* FirebaseInstallations-dummy.m */; }; @@ -1115,118 +1108,118 @@ 47D644E0A812CEAF1C3397017B6D3269 /* CPUThreadPoolExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = 6AC3CCDF257694E48C3C9D1F69E2775C /* CPUThreadPoolExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; 47DCC3A31F95527F19EA2A2D8821BD8C /* FIRCLSAsyncOperation.m in Sources */ = {isa = PBXBuildFile; fileRef = FCCB6333386C1D0FD59A6F733F4DEC52 /* FIRCLSAsyncOperation.m */; }; 47DF1B6157DA66CE963E27F12D5F442B /* F14Table.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 18E4E0618B189BF1F1B0F02FA592A47D /* F14Table.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 47E177E91649CBEC882D8D7C484E7247 /* BSG_KSBacktrace.c in Sources */ = {isa = PBXBuildFile; fileRef = 015E65E1EDEC6865B8F3E2EBDE6234D2 /* BSG_KSBacktrace.c */; }; + 47E177E91649CBEC882D8D7C484E7247 /* BSG_KSBacktrace.c in Sources */ = {isa = PBXBuildFile; fileRef = 4631007E5F5E335DF5E2EAFA10A61E6E /* BSG_KSBacktrace.c */; }; 47E2E2BC07749B3A2978080B181FD194 /* TLRefCount.h in Headers */ = {isa = PBXBuildFile; fileRef = 3EFA24A2B42781B009412AFED35E2FE0 /* TLRefCount.h */; settings = {ATTRIBUTES = (Project, ); }; }; 47EF034B1DBE29238E4A4A2A9EA3AAC3 /* openssl_md32_common.h in Headers */ = {isa = PBXBuildFile; fileRef = 404087D898128DB18555B2F000165B9F /* openssl_md32_common.h */; settings = {ATTRIBUTES = (Project, ); }; }; 4802E4F018C6CC4ADBD85D68EABDB992 /* FBLPromise+Validate.h in Headers */ = {isa = PBXBuildFile; fileRef = 7C73D3BB5E4BEDFCF64752FD0C7FE9F9 /* FBLPromise+Validate.h */; settings = {ATTRIBUTES = (Project, ); }; }; 48135840D82FBFE9B37FEFB6E39BE512 /* AsyncSSLSocket.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8C1B34730033D942D6C95F3A713F9BF9 /* AsyncSSLSocket.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; 4816EE3AB37CA43C47A9301588D2B926 /* Constexpr.h in Headers */ = {isa = PBXBuildFile; fileRef = ED3185845707C4DEB03A4A0B0D59B590 /* Constexpr.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 481DB13F7325F894E171851441EDDD91 /* RCTDevMenu.mm in Sources */ = {isa = PBXBuildFile; fileRef = B2DD20BD344D29760CC3B0698BB8B069 /* RCTDevMenu.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + 481DB13F7325F894E171851441EDDD91 /* RCTDevMenu.mm in Sources */ = {isa = PBXBuildFile; fileRef = BA817FB4A57C669CE63C028340C0DF60 /* RCTDevMenu.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; 48377AB732CAE5FB016FC6D671D2F028 /* IPAddressV4.h in Headers */ = {isa = PBXBuildFile; fileRef = 1EF2BA687545FFAD96B628E428424C36 /* IPAddressV4.h */; settings = {ATTRIBUTES = (Project, ); }; }; 4863677D1787975D4D4AD4631CBF3CB2 /* AtomicUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = 0B3C3D246460633B8E7681B3AE2B683D /* AtomicUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; 486EC643435E18407070A694FF7ABA13 /* SysTypes.h in Headers */ = {isa = PBXBuildFile; fileRef = A038B84D33708A323BCFB602B94B3342 /* SysTypes.h */; settings = {ATTRIBUTES = (Project, ); }; }; 48D745DA56A85F28449CAE5FA9EC6266 /* FIRCLSFABAsyncOperation_Private.h in Headers */ = {isa = PBXBuildFile; fileRef = C6A70C618CB6DBC74508136D1EDF9EF1 /* FIRCLSFABAsyncOperation_Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; 48DDDD887768C3EB92C89C1F9C23B92D /* Future.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3FA4F4A0876C0F4828B223294121BEC4 /* Future.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - 492C9342A92951D54A8C30FCF4656E38 /* EXSessionTaskDispatcher.m in Sources */ = {isa = PBXBuildFile; fileRef = BAF22493D3FEA5B771C9DE8631B3E369 /* EXSessionTaskDispatcher.m */; }; - 49659FD56D7A26D9712075D2973278D9 /* REAStyleNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 39CBC53CBC21C37833DE520B3FBB4902 /* REAStyleNode.m */; }; - 4973DE666E368BC3A61245D6C8969AA9 /* RNNotificationUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = 4C4071AB9401DC258473B72A13E2BD27 /* RNNotificationUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 492C9342A92951D54A8C30FCF4656E38 /* EXSessionTaskDispatcher.m in Sources */ = {isa = PBXBuildFile; fileRef = C3F74582F685185BB30D3F472EAAB255 /* EXSessionTaskDispatcher.m */; }; + 49659FD56D7A26D9712075D2973278D9 /* REAStyleNode.m in Sources */ = {isa = PBXBuildFile; fileRef = CAA93BAEA634ABC2D37E973391483399 /* REAStyleNode.m */; }; + 4973DE666E368BC3A61245D6C8969AA9 /* RNNotificationUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = 6EEA2F86DA18D55EA72D0EACEF342EB9 /* RNNotificationUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; 4977E406F103BC7E9F600C3C57CBF755 /* picture_rescale_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = 66B41B6896BBE870A2C8D111635F45BE /* picture_rescale_enc.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 4993F4274A05224DEE54F53BCDA36E8B /* RCTSRWebSocket.m in Sources */ = {isa = PBXBuildFile; fileRef = 7F47E78BB15E64AD457C1F710D1D8BBE /* RCTSRWebSocket.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 4993F4274A05224DEE54F53BCDA36E8B /* RCTSRWebSocket.m in Sources */ = {isa = PBXBuildFile; fileRef = 81BEB03FF4BED8573EBE9E18CAB3E2AA /* RCTSRWebSocket.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; 4994983DAB79F82CB6C7B3FAE8EE090F /* FlipperClient+Testing.h in Headers */ = {isa = PBXBuildFile; fileRef = BF9C63F1F1AD22BD3CF112004A813279 /* FlipperClient+Testing.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 499FEAAE461FD29D544C7CC5DE018BFA /* Orientation.h in Headers */ = {isa = PBXBuildFile; fileRef = DE862D4983DE78BB3F8A67061C29E078 /* Orientation.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 499FEAAE461FD29D544C7CC5DE018BFA /* Orientation.h in Headers */ = {isa = PBXBuildFile; fileRef = CAF6CB066BFFF2B1986A0DFA0168235E /* Orientation.h */; settings = {ATTRIBUTES = (Project, ); }; }; 49CAC6443A707C331BEA57C02856261F /* SKObject.h in Headers */ = {isa = PBXBuildFile; fileRef = 6760358F1BD3FC8F858FDB499C36A5AB /* SKObject.h */; settings = {ATTRIBUTES = (Project, ); }; }; 49CB6E0BD077995D6FE671AE085BBB4C /* MacAddress.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A70267AA3D3AEE12F21F1A7876760084 /* MacAddress.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - 49DB95D5B5E96008133B3E3DDE4D1F98 /* ReactNativeART-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = FD779AF4010DC2C19CCEF471E97AA35B /* ReactNativeART-dummy.m */; }; - 49EBD4F46FA34D1E9383696FB9E70DFC /* CoreModulesPlugins.mm in Sources */ = {isa = PBXBuildFile; fileRef = 992A0C44C44C004243A5AE0CE646E74C /* CoreModulesPlugins.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + 49DB95D5B5E96008133B3E3DDE4D1F98 /* ReactNativeART-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = E98ACFEF9F03D77A90F0ED273811E49B /* ReactNativeART-dummy.m */; }; + 49EBD4F46FA34D1E9383696FB9E70DFC /* CoreModulesPlugins.mm in Sources */ = {isa = PBXBuildFile; fileRef = FC45955B628228E0D0C9521BCC8F3395 /* CoreModulesPlugins.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; 49ED22AD77FCA7D73439C955EC426CD9 /* backward_references_enc.h in Headers */ = {isa = PBXBuildFile; fileRef = B2C2327B1E76FEDC5E1BC5D098B75DF3 /* backward_references_enc.h */; settings = {ATTRIBUTES = (Project, ); }; }; 49EEE7711D57EED8E0AAE22C745C541E /* ConnectionSet.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 165A5D6A943859F7AC5F5CAD7698DFB6 /* ConnectionSet.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0 -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - 4A073C398A961DCC8F643A96231EC97D /* EXResumablesManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 619C5485D25F63D67B819CE38AA9D59A /* EXResumablesManager.m */; }; + 4A073C398A961DCC8F643A96231EC97D /* EXResumablesManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 5CF9D92D59921D8CB9755CFCBB2553D5 /* EXResumablesManager.m */; }; 4A21F2608B9DA7432CB306111F436C8E /* EventBaseManager.cpp in Sources */ = {isa = PBXBuildFile; fileRef = EA4E13714B040A0054DF3CC83A8B504E /* EventBaseManager.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; 4A2519415417EAC6D02A7450532D6A1C /* GULAppDelegateSwizzler.m in Sources */ = {isa = PBXBuildFile; fileRef = B70A573BCA9B6B41C0BA4C0834D5680D /* GULAppDelegateSwizzler.m */; }; - 4A31547A29769DC8F81BA3BD0DFC816E /* RCTLogBox.mm in Sources */ = {isa = PBXBuildFile; fileRef = 055C284639A098D954F94C5789FC657E /* RCTLogBox.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; - 4A44E351963FD831C9822F579CBCC6C5 /* RCTVirtualTextShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = D9EF36754BD7817A120BED4E5A46D0FE /* RCTVirtualTextShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4A4D6F6D55BA3623E5CD00A17827D8C1 /* RCTProfileTrampoline-arm64.S in Sources */ = {isa = PBXBuildFile; fileRef = 24243C6D7595BD403DF417621300CC31 /* RCTProfileTrampoline-arm64.S */; }; + 4A31547A29769DC8F81BA3BD0DFC816E /* RCTLogBox.mm in Sources */ = {isa = PBXBuildFile; fileRef = FDF89BB54E5CB2C32C6511C73C6B696E /* RCTLogBox.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + 4A44E351963FD831C9822F579CBCC6C5 /* RCTVirtualTextShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = 1E45F82FEADDDB60B0FB36E6274AD585 /* RCTVirtualTextShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4A4D6F6D55BA3623E5CD00A17827D8C1 /* RCTProfileTrampoline-arm64.S in Sources */ = {isa = PBXBuildFile; fileRef = 079B3F18C0DB4CAEA4C8E49D4DD50C33 /* RCTProfileTrampoline-arm64.S */; }; 4A57D866B6D03E82B4FCA3BA226A8984 /* it.lproj in Resources */ = {isa = PBXBuildFile; fileRef = F2432E8B9CD3DD7CFA48FBEF88B37FAE /* it.lproj */; }; - 4A75E803AF46B56D11CCCE41CE8FBE0C /* UMUtilities.m in Sources */ = {isa = PBXBuildFile; fileRef = DE4C3B0422754166A757BAE200DBE184 /* UMUtilities.m */; }; + 4A75E803AF46B56D11CCCE41CE8FBE0C /* UMUtilities.m in Sources */ = {isa = PBXBuildFile; fileRef = 70DDF1627FFE016066CDBAB5020EE26B /* UMUtilities.m */; }; 4A7B7B8C3E551805997761CE92916760 /* FIRCLSSignal.c in Sources */ = {isa = PBXBuildFile; fileRef = 9B8B0A5EFCC70AA16059E58D6A0F5686 /* FIRCLSSignal.c */; }; - 4A7CBC49E0E714E315BF2E22E39BC136 /* UMReactFontManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 4CCD990451BB54C2D5F71B2EC8118674 /* UMReactFontManager.m */; }; + 4A7CBC49E0E714E315BF2E22E39BC136 /* UMReactFontManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 89E6B70AC13F00CA4BB9593DAD58EC8D /* UMReactFontManager.m */; }; 4ACBE900862827AF5A0FAE7BCBD622C4 /* FBLPromise+Wrap.m in Sources */ = {isa = PBXBuildFile; fileRef = 1B3E342EAF652660551C85D45C60C4C3 /* FBLPromise+Wrap.m */; }; 4AD9CCC85B3778658169C43F329DB13D /* SDAnimatedImageRep.h in Headers */ = {isa = PBXBuildFile; fileRef = 3AC5281D725EF697C3F1C31564DE860D /* SDAnimatedImageRep.h */; settings = {ATTRIBUTES = (Project, ); }; }; 4AE162265A0182AC50A6C8D4A09E0F1A /* SDImageIOAnimatedCoderInternal.h in Headers */ = {isa = PBXBuildFile; fileRef = D856F7C4A6C153A4CCB62D9682BCB6FC /* SDImageIOAnimatedCoderInternal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4B174EC3B79E737EC18607D92EFFA69B /* RNDocumentPicker.h in Headers */ = {isa = PBXBuildFile; fileRef = 1BBB24CA1832696C3E346DCBB17EEECB /* RNDocumentPicker.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4B2D339ECD502DC42B9CB8E624504F0E /* RCTConvert+Text.h in Headers */ = {isa = PBXBuildFile; fileRef = EE6B74B9B3000DCE2E920B88157F20C4 /* RCTConvert+Text.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4B174EC3B79E737EC18607D92EFFA69B /* RNDocumentPicker.h in Headers */ = {isa = PBXBuildFile; fileRef = 68CCE3BE3F6A6A2D44D6B6CE441F9E64 /* RNDocumentPicker.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4B2D339ECD502DC42B9CB8E624504F0E /* RCTConvert+Text.h in Headers */ = {isa = PBXBuildFile; fileRef = 4F91B3C9FF3A0A1D807ED2E81EC0EA58 /* RCTConvert+Text.h */; settings = {ATTRIBUTES = (Project, ); }; }; 4B3964B71F74D3D48482B3D853DA94E5 /* GCDAsyncSocket.m in Sources */ = {isa = PBXBuildFile; fileRef = BB735AA59253F87CCF6D4E8061D1B214 /* GCDAsyncSocket.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0"; }; }; 4B6624A1006ED93B3305A5C01B680EAD /* random_utils.c in Sources */ = {isa = PBXBuildFile; fileRef = 28A50FB61E64F7087DD199F877950810 /* random_utils.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; 4B75E3FFB3D2849FDB5C18EF604FC7B0 /* FlipperCppBridgingConnection.mm in Sources */ = {isa = PBXBuildFile; fileRef = B5EB86DD26EF41F80D4D3BA670D485F0 /* FlipperCppBridgingConnection.mm */; settings = {COMPILER_FLAGS = "-DDEBUG=1 -DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0"; }; }; 4B78280A70D9BB666FAB125C4D89A8AA /* TOCropToolbar.h in Headers */ = {isa = PBXBuildFile; fileRef = 42AF36E09DEF089E3AC8A2CF3A8A811B /* TOCropToolbar.h */; settings = {ATTRIBUTES = (Project, ); }; }; 4B925B231DD0F1A4DEE0367814E32490 /* RSocketServiceHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = E19D89B2C2E4701FFDACB5E4D7ED6190 /* RSocketServiceHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; 4BBA805E7B1BA9E6C8AD89E9D9579637 /* EnableSharedFromThis.h in Headers */ = {isa = PBXBuildFile; fileRef = 1D33CC779D89B078E3BCE411E5728460 /* EnableSharedFromThis.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4BC23F18BB4F6756586C61F121FD1797 /* RCTTransformAnimatedNode.h in Headers */ = {isa = PBXBuildFile; fileRef = F5CD8826F69E4326D2A1828095C86A59 /* RCTTransformAnimatedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4BD118908DF702301F6DE42A12958EE1 /* RCTBundleURLProvider.h in Headers */ = {isa = PBXBuildFile; fileRef = 325811BC34872EF4BBB0B1FD669575DB /* RCTBundleURLProvider.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4BC23F18BB4F6756586C61F121FD1797 /* RCTTransformAnimatedNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 186DAA847ADDDA4FCE625E3A62D12BC8 /* RCTTransformAnimatedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4BD118908DF702301F6DE42A12958EE1 /* RCTBundleURLProvider.h in Headers */ = {isa = PBXBuildFile; fileRef = 070C30D6B59F6646B698C3B35C4E4F63 /* RCTBundleURLProvider.h */; settings = {ATTRIBUTES = (Project, ); }; }; 4BE9AA0AC9220535A1CC94231A061BC8 /* CallOnce.h in Headers */ = {isa = PBXBuildFile; fileRef = E03EA39FB5B33F23D3D938466661DD67 /* CallOnce.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4BF5E3CAB7C850F3035C885CF370276F /* RCTPerfMonitor.mm in Sources */ = {isa = PBXBuildFile; fileRef = 57D800A46525F67798217208F27F8799 /* RCTPerfMonitor.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; - 4C422863460C17E44DB8AC5E66D63451 /* RCTSinglelineTextInputViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 7F9744A33CB3738D77C7575BF4C42ABD /* RCTSinglelineTextInputViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4C6567D5F16FD4325FE14596E977F2DF /* RCTAnimationUtils.m in Sources */ = {isa = PBXBuildFile; fileRef = 40A24F50073CE00C418C807155B60D0B /* RCTAnimationUtils.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + 4BF5E3CAB7C850F3035C885CF370276F /* RCTPerfMonitor.mm in Sources */ = {isa = PBXBuildFile; fileRef = 4DE488FC1A00492FF950068953C3E320 /* RCTPerfMonitor.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + 4C422863460C17E44DB8AC5E66D63451 /* RCTSinglelineTextInputViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 5673330D50DEB45B91BB1B7FF27E69A1 /* RCTSinglelineTextInputViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4C6567D5F16FD4325FE14596E977F2DF /* RCTAnimationUtils.m in Sources */ = {isa = PBXBuildFile; fileRef = D256A4727B780EF5BA92120DC5F046FB /* RCTAnimationUtils.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; 4C76D9A8EEB343746F6A73E6573B2D03 /* WarmResumeManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 3663B2B47DA53BA34C56D1CBC6DCD2D4 /* WarmResumeManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; 4C7861B119472BD8477B7309689351FF /* Future-pre.h in Headers */ = {isa = PBXBuildFile; fileRef = 1CC728135D062FD542E1642F6D3CFC90 /* Future-pre.h */; settings = {ATTRIBUTES = (Project, ); }; }; 4C7D7E9EED695E3D5788C7DFE583E0EC /* GULApplication.h in Headers */ = {isa = PBXBuildFile; fileRef = CAD9EC209A4AB30125621565D7E5B66B /* GULApplication.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4C9E570AA0DBDCF6AEA68029628EB4B2 /* RCTCxxModule.h in Headers */ = {isa = PBXBuildFile; fileRef = A43CD11C23A1BA645E7ADC434E91A7CE /* RCTCxxModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4C9E570AA0DBDCF6AEA68029628EB4B2 /* RCTCxxModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 16C434122E7AFD7FB0E97BE8DF9AC03E /* RCTCxxModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; 4CABC19ABA3AF2124349A3F412272F50 /* GULNetworkConstants.m in Sources */ = {isa = PBXBuildFile; fileRef = 92E8976EA262E215049AD45EEAC21C54 /* GULNetworkConstants.m */; }; 4CAEF5061BEBF77B81CBB7A5C4D10871 /* FLEXUtility.mm in Sources */ = {isa = PBXBuildFile; fileRef = B4D313D8A49A00FC938EE3BB7005BAAF /* FLEXUtility.mm */; settings = {COMPILER_FLAGS = "-DDEBUG=1 -DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0"; }; }; - 4CF0447B3B73FED33C02925795DBBA45 /* RCTPackagerClient.h in Headers */ = {isa = PBXBuildFile; fileRef = A55847904D4A37420994558664F369FD /* RCTPackagerClient.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4CF0447B3B73FED33C02925795DBBA45 /* RCTPackagerClient.h in Headers */ = {isa = PBXBuildFile; fileRef = 4ED4B6718B25734BD6CC3C40AA8BB7A9 /* RCTPackagerClient.h */; settings = {ATTRIBUTES = (Project, ); }; }; 4CF3B469D09368C4AA87F78EEF21B0AE /* GDTCORLifecycle.h in Headers */ = {isa = PBXBuildFile; fileRef = 6F351E2BA4429656767AF3FA39D69E68 /* GDTCORLifecycle.h */; settings = {ATTRIBUTES = (Project, ); }; }; 4D26D41DC25595A9DDC19434692363C2 /* PolyException.h in Headers */ = {isa = PBXBuildFile; fileRef = 616723362C3DB79DB2DA7B7FA93E8404 /* PolyException.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4D47170710625F3E87D6C45829E93939 /* StorageSetters.h in Headers */ = {isa = PBXBuildFile; fileRef = 986846FDBC8F47730A77A72F406E0D63 /* StorageSetters.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4D5EFD18B90D34E5A9215E07EC5D3785 /* RCTAppearance.h in Headers */ = {isa = PBXBuildFile; fileRef = B0364D8E627174BA396CA58A7451F968 /* RCTAppearance.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4D62B565955A9CF4C3297AD078A3F799 /* BSG_KSCrashCallCompletion.h in Headers */ = {isa = PBXBuildFile; fileRef = EB8717F94E6D6B3A49987B7C3A70D110 /* BSG_KSCrashCallCompletion.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4D47170710625F3E87D6C45829E93939 /* StorageSetters.h in Headers */ = {isa = PBXBuildFile; fileRef = A76CAE5A189721F971476ADB549C7AF5 /* StorageSetters.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4D5EFD18B90D34E5A9215E07EC5D3785 /* RCTAppearance.h in Headers */ = {isa = PBXBuildFile; fileRef = DF84A5AECBCCAD03CEFF81580D77F6A4 /* RCTAppearance.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4D62B565955A9CF4C3297AD078A3F799 /* BSG_KSCrashCallCompletion.h in Headers */ = {isa = PBXBuildFile; fileRef = 10F66C46F441031C10CF3596A8C4324A /* BSG_KSCrashCallCompletion.h */; settings = {ATTRIBUTES = (Project, ); }; }; 4D70DE57BE4ED28E7AC93C9C849F11C6 /* Assume.cpp in Sources */ = {isa = PBXBuildFile; fileRef = AEF23C7434D886C7B31145EE2C9BB147 /* Assume.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; 4D7D18F40CFF9411ED36F932141B8A1F /* GoogleDataTransport.h in Headers */ = {isa = PBXBuildFile; fileRef = DD727325FC40AC53D0E080A5E41E55E9 /* GoogleDataTransport.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4D8C0B967D9CCBB2D4097EF4B0410D43 /* EXSessionResumableDownloadTaskDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = AA61FF70B4B192F029EFB925B4B625ED /* EXSessionResumableDownloadTaskDelegate.m */; }; - 4D8EE5879A925DD23B6D7B1C82F0BFE6 /* EXVideoThumbnails-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 6BC687D3736C45E150AB1A6D24B3E57B /* EXVideoThumbnails-dummy.m */; }; + 4D8C0B967D9CCBB2D4097EF4B0410D43 /* EXSessionResumableDownloadTaskDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = A06F44C23C163B4F269E96945E65FD7B /* EXSessionResumableDownloadTaskDelegate.m */; }; + 4D8EE5879A925DD23B6D7B1C82F0BFE6 /* EXVideoThumbnails-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 3E97FC25847E19B484E133B42AD4BD49 /* EXVideoThumbnails-dummy.m */; }; 4DB203F1439AD013371B24327625EA5E /* GULLoggerCodes.h in Headers */ = {isa = PBXBuildFile; fileRef = 6304289097410B42387B3F2622F04C0A /* GULLoggerCodes.h */; settings = {ATTRIBUTES = (Project, ); }; }; 4DC3C93691EB8D66A121CA71EF8113BF /* enc_sse41.c in Sources */ = {isa = PBXBuildFile; fileRef = BE0072E587AB07D442D8E866C4321D9E /* enc_sse41.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 4DD88B6EF04BCF202E55A0EB6D8EB486 /* RNForceTouchHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 7E47BF8320330721BA63ECAF011A85EF /* RNForceTouchHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4DD88B6EF04BCF202E55A0EB6D8EB486 /* RNForceTouchHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 34DCC42FA67629FEB512605D1BFEBDE0 /* RNForceTouchHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; 4E1389A80549A025F7716E5F0A2E00B9 /* FIRCLSFABAsyncOperation.h in Headers */ = {isa = PBXBuildFile; fileRef = CC6772EDF42A0EE1AF458A2D575F4D74 /* FIRCLSFABAsyncOperation.h */; settings = {ATTRIBUTES = (Project, ); }; }; 4E17E34A10921015C84C16FDADF1618D /* ConnectionContextStore.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 02290B6692FB3DC0450A6BD5137AE1C9 /* ConnectionContextStore.cpp */; settings = {COMPILER_FLAGS = "-DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0 -Wall\n -std=c++14\n -Wno-global-constructors"; }; }; - 4E2A0793EB560299DEFA14EE7A4ABFC8 /* RCTInterpolationAnimatedNode.h in Headers */ = {isa = PBXBuildFile; fileRef = A08A165C896418C3816BAC1386022A3D /* RCTInterpolationAnimatedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4E2A0793EB560299DEFA14EE7A4ABFC8 /* RCTInterpolationAnimatedNode.h in Headers */ = {isa = PBXBuildFile; fileRef = BA1332B5E93D70C9EA3377B2A1B89A5B /* RCTInterpolationAnimatedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; 4E3D47B57A0D93260990272056DED85D /* SDImageCacheConfig.h in Headers */ = {isa = PBXBuildFile; fileRef = C35CD892B3FFA25DE377E2E2937A40D4 /* SDImageCacheConfig.h */; settings = {ATTRIBUTES = (Project, ); }; }; 4E482BE9AD7430C9B3E1B787850C95DF /* huffman_encode_utils.c in Sources */ = {isa = PBXBuildFile; fileRef = 7D78452A62DD6AFC3C3C521F35B8DD7C /* huffman_encode_utils.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 4E4E32533F580B598692B643BA9C51BE /* RCTAccessibilityManager.h in Headers */ = {isa = PBXBuildFile; fileRef = F979AC57115823CDBF8EB4191491E462 /* RCTAccessibilityManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4E4E32533F580B598692B643BA9C51BE /* RCTAccessibilityManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 538524D3A13CF548117D6D2F14640A67 /* RCTAccessibilityManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; 4E5588F198AE4677917C8940ACE0A4F1 /* log_severity.h in Headers */ = {isa = PBXBuildFile; fileRef = 7AC571A141141F6091B06FF183A38007 /* log_severity.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4E6013E485F9ED649C319A0D4F4FF62A /* EXAVPlayerData.h in Headers */ = {isa = PBXBuildFile; fileRef = 3DF4A13929EE3DC753F4163E47F811E8 /* EXAVPlayerData.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4E6013E485F9ED649C319A0D4F4FF62A /* EXAVPlayerData.h in Headers */ = {isa = PBXBuildFile; fileRef = 9FBFE3CD91607A87E38C7F2703008CBA /* EXAVPlayerData.h */; settings = {ATTRIBUTES = (Project, ); }; }; 4E7F408A6C7E76CCCB1D7C04FBC62B7C /* SDAnimatedImageRep.m in Sources */ = {isa = PBXBuildFile; fileRef = E8CE7715D6333420A83E113B345FD9CE /* SDAnimatedImageRep.m */; }; 4ECA0D81891EADA811094561AB083DF3 /* dec.c in Sources */ = {isa = PBXBuildFile; fileRef = 392D8F649B573D0B71F6FED94B8ADB3A /* dec.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; 4F012C6282E1CEC511611133B36A3F4D /* FrameSerializer.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 7D413EA356D41A308D1FE05DD999DD51 /* FrameSerializer.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0 -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - 4F0A795E85B0D7A97B3FCC403C30E8FC /* RCTInterpolationAnimatedNode.m in Sources */ = {isa = PBXBuildFile; fileRef = CA62E9DDFDBC1C2126E21CFCAC8BA10D /* RCTInterpolationAnimatedNode.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + 4F0A795E85B0D7A97B3FCC403C30E8FC /* RCTInterpolationAnimatedNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 2B81C4E9BF098522968AA822A50BA6E0 /* RCTInterpolationAnimatedNode.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; 4F0B3DB66387E10FBEB072D0B679124D /* FIRCLSContext.m in Sources */ = {isa = PBXBuildFile; fileRef = 39334E3B147A28B2BB778486FF259EF1 /* FIRCLSContext.m */; }; 4F11A9CF13C6D879459774E82AC101F9 /* StaticSingletonManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 4C2D97964960BE1EB78FEB26FFB22972 /* StaticSingletonManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; 4F47CF100481530E6DA413E521C19D03 /* strtod.h in Headers */ = {isa = PBXBuildFile; fileRef = B996C693A38D812D6D4B4A84613FE4F0 /* strtod.h */; settings = {ATTRIBUTES = (Project, ); }; }; 4F62FEC993F173EA5B75FB9AFF63D282 /* FIRInstallations.m in Sources */ = {isa = PBXBuildFile; fileRef = 4F87D1A058F174B42F92C136D26FCC41 /* FIRInstallations.m */; }; 4F6830E3F6DD8CB7A6306B32FB83D855 /* SDWebImageTransitionInternal.h in Headers */ = {isa = PBXBuildFile; fileRef = 405905D8326629E31F5EAFB935A3EF01 /* SDWebImageTransitionInternal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4F86027D80DF2D8E26627AB8A5EE9425 /* NSDataBigString.h in Headers */ = {isa = PBXBuildFile; fileRef = 51357BA4D6EAB4480E755316731DC52C /* NSDataBigString.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4F86027D80DF2D8E26627AB8A5EE9425 /* NSDataBigString.h in Headers */ = {isa = PBXBuildFile; fileRef = E62AE4F62F5682031F5E7E94657C1CAF /* NSDataBigString.h */; settings = {ATTRIBUTES = (Project, ); }; }; 4F87F03E8E671A7FAE79D64F5879D866 /* IPAddress.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 795B5CE12E9C856E908F500504ABAD1B /* IPAddress.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; 4FA74F8D18F46473F21FB7A68890A156 /* FIRInstallationsErrorUtil.m in Sources */ = {isa = PBXBuildFile; fileRef = 3DEE9AB9AC721D2590B458D6A97C44D8 /* FIRInstallationsErrorUtil.m */; }; - 4FA7A1FFCE343A5ABA9FD6FAF8235F08 /* LNAnimator.m in Sources */ = {isa = PBXBuildFile; fileRef = 681F8AF4264FDD3F88EF3C867529EC46 /* LNAnimator.m */; }; - 4FB5C48A4690E6E5F891BC2E6EA923D9 /* BSG_KSCrashIdentifier.h in Headers */ = {isa = PBXBuildFile; fileRef = 7EC65E615B94AFCB599DE6EA9F1B9A66 /* BSG_KSCrashIdentifier.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4FB88F0D253B715C034CB05ED1A2BDCC /* REAModule.m in Sources */ = {isa = PBXBuildFile; fileRef = 9AF7B0CC25C462C892C25ED32E403843 /* REAModule.m */; }; + 4FA7A1FFCE343A5ABA9FD6FAF8235F08 /* LNAnimator.m in Sources */ = {isa = PBXBuildFile; fileRef = 594DB85767F9B7D7C188F0D0ECA4D30C /* LNAnimator.m */; }; + 4FB5C48A4690E6E5F891BC2E6EA923D9 /* BSG_KSCrashIdentifier.h in Headers */ = {isa = PBXBuildFile; fileRef = 80ADA5AD654B848F75B764E0EDBF0A55 /* BSG_KSCrashIdentifier.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4FB88F0D253B715C034CB05ED1A2BDCC /* REAModule.m in Sources */ = {isa = PBXBuildFile; fileRef = 743F35FB5F73B465B9071D27084762F4 /* REAModule.m */; }; 4FBC2BE9E6D22E669918E689C6196CB0 /* ReentrantAllocator.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9C386215B39976F2E820F9A16C88C6F3 /* ReentrantAllocator.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - 4FC056AA5B803E2F5E1BE4D5EB038A0B /* react-native-appearance-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 6B7E70B7E83450FFBFAD1644E1381F57 /* react-native-appearance-dummy.m */; }; + 4FC056AA5B803E2F5E1BE4D5EB038A0B /* react-native-appearance-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 2D5CE50786E06319A046DE429D71F1D8 /* react-native-appearance-dummy.m */; }; 50006F33DE03FBEC223EC914B1421369 /* FBLPromise+Timeout.m in Sources */ = {isa = PBXBuildFile; fileRef = BB69E3A616A3A69DF7A2CA81DB6B6B89 /* FBLPromise+Timeout.m */; }; 50077FFA928D5FE4958D1CBFA5D63B60 /* SpookyHashV2.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 52DE54239AB0D7C69BE7689F26E4FFA0 /* SpookyHashV2.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 503F96DD76B26B7F3FF816FB7F6E6B18 /* RNLocalize.m in Sources */ = {isa = PBXBuildFile; fileRef = 43BB592AC682C7916135FFA71B6E7D2B /* RNLocalize.m */; }; + 503F96DD76B26B7F3FF816FB7F6E6B18 /* RNLocalize.m in Sources */ = {isa = PBXBuildFile; fileRef = A1D2F7D0B3B73B0F3E864F6AD0312855 /* RNLocalize.m */; }; 504624B6461EEC8B924857670A089B16 /* TOCropOverlayView.h in Headers */ = {isa = PBXBuildFile; fileRef = C8F90AEEEE3749DFB3A07AFF8A4804A3 /* TOCropOverlayView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 504B1F2BADD2E38562060891CB4B4678 /* RCTBaseTextInputViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 0386096EA2720666899EFDA16ECCBCCF /* RCTBaseTextInputViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 504DC67E19BF97F896369BC24282F55F /* ReactNativeKeyboardTrackingView-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 9A6C6418ABC4B09CEFF6B38431FE6BC2 /* ReactNativeKeyboardTrackingView-dummy.m */; }; + 504B1F2BADD2E38562060891CB4B4678 /* RCTBaseTextInputViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 8F99BA0A8FE3787106919BC94AF7D27D /* RCTBaseTextInputViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 504DC67E19BF97F896369BC24282F55F /* ReactNativeKeyboardTrackingView-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = E7CB24DB6D543A9D4167FF41793BB35F /* ReactNativeKeyboardTrackingView-dummy.m */; }; 504E0EE4CD7110B5D286FFC1B25B07A7 /* OpenSSLCertUtils.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2994D9A17BFD3845635A5464DF64D026 /* OpenSSLCertUtils.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; 5051BDE8EFA401DF6FD5ADE291764FC5 /* FBString.h in Headers */ = {isa = PBXBuildFile; fileRef = 15FF2806A2FA1A8BA1E9F9E19A2CF205 /* FBString.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 506D0A188ADFE59D0461A44D18936290 /* RCTRawTextShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = 46FC02C46C54CAD113B87A9F8462B5EA /* RCTRawTextShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 50738319CBBADE87610C7672075BA2B8 /* EXVideoPlayerViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = 8A390EE53429DCE819D5DE22D0679600 /* EXVideoPlayerViewController.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 506D0A188ADFE59D0461A44D18936290 /* RCTRawTextShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = C54731E71DF80D26B8650C54BAF40E0C /* RCTRawTextShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 50738319CBBADE87610C7672075BA2B8 /* EXVideoPlayerViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = 39EE41BBF9CE955A0BE21705EDCB6103 /* EXVideoPlayerViewController.h */; settings = {ATTRIBUTES = (Project, ); }; }; 5075C64463D4078585F5BB7F6AFD1556 /* HHWheelTimer.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1AAD56FF574E284F5AFAE7608EA372EC /* HHWheelTimer.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - 5082509A56848D19BFA98EC1C2F94BD4 /* RCTBaseTextInputView.h in Headers */ = {isa = PBXBuildFile; fileRef = B48DF8618EE0B203C4FE2E0B3AE50343 /* RCTBaseTextInputView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5082509A56848D19BFA98EC1C2F94BD4 /* RCTBaseTextInputView.h in Headers */ = {isa = PBXBuildFile; fileRef = 58ED3C3FE5BC1C02FF6ACDFA481C0A86 /* RCTBaseTextInputView.h */; settings = {ATTRIBUTES = (Project, ); }; }; 5092A162D4642D2B110D42FBEBCF9B0A /* vlog_is_on.cc in Sources */ = {isa = PBXBuildFile; fileRef = 14F619F27EC6BCC194E4949C5678266D /* vlog_is_on.cc */; settings = {COMPILER_FLAGS = "-Wno-shorten-64-to-32"; }; }; 509FFDC94A9F414B55EB263D94A05932 /* FIRDiagnosticsData.h in Headers */ = {isa = PBXBuildFile; fileRef = 63D24CB1447F4332B0BD656806045F5A /* FIRDiagnosticsData.h */; settings = {ATTRIBUTES = (Project, ); }; }; 50A813DCE536784396073D6FFF9F3325 /* mux_types.h in Headers */ = {isa = PBXBuildFile; fileRef = 47DA31411E38B59F058F2A72E0D3B893 /* mux_types.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 50B630F78B1534E3FCAE8AC80EA2B6F7 /* RCTTextView.m in Sources */ = {isa = PBXBuildFile; fileRef = 84C10766029544716F76D93FAACF9496 /* RCTTextView.m */; }; + 50B630F78B1534E3FCAE8AC80EA2B6F7 /* RCTTextView.m in Sources */ = {isa = PBXBuildFile; fileRef = 2E70A33A18E5E1955F5C3B52D6D4D65C /* RCTTextView.m */; }; 50BAA98C56B5DF14D716F743171A2981 /* DuplexConnection.h in Headers */ = {isa = PBXBuildFile; fileRef = 170DE10ABC42423AC407238DF71D2C88 /* DuplexConnection.h */; settings = {ATTRIBUTES = (Project, ); }; }; 50F08A7251C4923173965217FD06DD1B /* FrameType.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 34EDFC0601787FF6E6B34F444FC4958B /* FrameType.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0 -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; 50FC2F3A2C5E073897D7CE9A41C1B0ED /* FIRCLSDwarfUnwindRegisters.h in Headers */ = {isa = PBXBuildFile; fileRef = 3ECDD200CF993CB41FDFA3BF409D7DE0 /* FIRCLSDwarfUnwindRegisters.h */; settings = {ATTRIBUTES = (Project, ); }; }; @@ -1234,19 +1227,19 @@ 51069D69172171A69FF1532FDE6DD756 /* SharedMutex.h in Headers */ = {isa = PBXBuildFile; fileRef = D65C913026B040120C8B88F361644471 /* SharedMutex.h */; settings = {ATTRIBUTES = (Project, ); }; }; 510794FD8810D34F0585981695F41366 /* CppAttributes.h in Headers */ = {isa = PBXBuildFile; fileRef = C80FE0090F04E1032603B3F56C4254A5 /* CppAttributes.h */; settings = {ATTRIBUTES = (Project, ); }; }; 512DBEA49D8024DEDA62DC51372951F8 /* STTimerFDTimeoutManager.h in Headers */ = {isa = PBXBuildFile; fileRef = D46183B657931FA50A94CDB9A298A10C /* STTimerFDTimeoutManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5148E280A41252A244808DED61FA934E /* BSG_KSCrashSentry.h in Headers */ = {isa = PBXBuildFile; fileRef = 1F8095A28ECC27ECAFF09D8B4157F95C /* BSG_KSCrashSentry.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5148E280A41252A244808DED61FA934E /* BSG_KSCrashSentry.h in Headers */ = {isa = PBXBuildFile; fileRef = ED4EBB0D34414B78E6F16D443D1C15CF /* BSG_KSCrashSentry.h */; settings = {ATTRIBUTES = (Project, ); }; }; 51530798E52AC33DAA3D6F36C1502776 /* F14Defaults.h in Headers */ = {isa = PBXBuildFile; fileRef = 633565FF07E1EA2F970452302215455D /* F14Defaults.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 51691AD30B24CE0806DC643ADF71F75F /* RNConfigReader-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = DCF75E474D3258E4CED674876666D001 /* RNConfigReader-dummy.m */; }; + 51691AD30B24CE0806DC643ADF71F75F /* RNConfigReader-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 645F36069223AF2009C3501B14388BE2 /* RNConfigReader-dummy.m */; }; 519E971486075E2256EBE61AB02CF8CD /* TOCropViewConstants.h in Headers */ = {isa = PBXBuildFile; fileRef = F9459B3044F10D2D74FC214AAB3E3C68 /* TOCropViewConstants.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 51B0202DAF50A4A3AEA12893E08ACDF3 /* UMModuleRegistryDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = A18579BD009DC1953DF6C602D20DC300 /* UMModuleRegistryDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 51B736CCCD3CB38027389E249AD7662F /* UIImage+Extension.m in Sources */ = {isa = PBXBuildFile; fileRef = E5593CB6CA9BD3930C83237F8F9B656E /* UIImage+Extension.m */; }; + 51B0202DAF50A4A3AEA12893E08ACDF3 /* UMModuleRegistryDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = 8969C70A3D8C90846DA1B8ECD1B81EA9 /* UMModuleRegistryDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 51B736CCCD3CB38027389E249AD7662F /* UIImage+Extension.m in Sources */ = {isa = PBXBuildFile; fileRef = 83CBCAB82AC7193FC38EA5BD77082C8C /* UIImage+Extension.m */; }; 51D6D913550CBAC02E5FC6688CA8C0B4 /* SynchronizedPtr.h in Headers */ = {isa = PBXBuildFile; fileRef = D6D8D6504E5ABA47379B5C27EEA1CCC6 /* SynchronizedPtr.h */; settings = {ATTRIBUTES = (Project, ); }; }; 52084A3423DEFFFF30567B2B525B74E8 /* InterProcessLock.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 5A34DE3E221842CC83469D3E228715AE /* InterProcessLock.cpp */; settings = {COMPILER_FLAGS = "-x objective-c++"; }; }; 523C230240B39A6F9B59F789FDC604EF /* GULUserDefaults.m in Sources */ = {isa = PBXBuildFile; fileRef = 9B644E8F792C7D96366611784707B904 /* GULUserDefaults.m */; }; 524DA1EBC0DBCB2CDAECE02FDD129CB5 /* TupleOps.h in Headers */ = {isa = PBXBuildFile; fileRef = 24B3CC1D6BFB09CE852315D68783AF14 /* TupleOps.h */; settings = {ATTRIBUTES = (Project, ); }; }; 52B21C30C1FB0CAE5BA26B599DEB64D8 /* SKNodeDescriptor.mm in Sources */ = {isa = PBXBuildFile; fileRef = 331430CBE1AD5DB6F0251DA42DF33E66 /* SKNodeDescriptor.mm */; settings = {COMPILER_FLAGS = "-DDEBUG=1 -DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0"; }; }; - 52B4F45E848C7B05203984C347DB74B4 /* RCTPerformanceLogger.h in Headers */ = {isa = PBXBuildFile; fileRef = 13D4C0A6ADE1730A37B433AEB26BA301 /* RCTPerformanceLogger.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 52BD7411C6C5EDB27E2D469A2D9BE66B /* RCTAnimationType.h in Headers */ = {isa = PBXBuildFile; fileRef = 5362C7DC59923D5194301DF1C28D45F2 /* RCTAnimationType.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 52B4F45E848C7B05203984C347DB74B4 /* RCTPerformanceLogger.h in Headers */ = {isa = PBXBuildFile; fileRef = 7F2A08D7B3DBF49C782821A66DE3DE38 /* RCTPerformanceLogger.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 52BD7411C6C5EDB27E2D469A2D9BE66B /* RCTAnimationType.h in Headers */ = {isa = PBXBuildFile; fileRef = E260122216BFD10EF3573B07DE80636D /* RCTAnimationType.h */; settings = {ATTRIBUTES = (Project, ); }; }; 52E39979F439AD373ADF1108067FD6F4 /* Subprocess.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 000CF15380CA63A5710AC6578740E307 /* Subprocess.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; 52F8EE02DD0245981843DFB67ECCC7CB /* TokenBucket.h in Headers */ = {isa = PBXBuildFile; fileRef = 317F01BDECBC5146ADC88CB6C75D1F83 /* TokenBucket.h */; settings = {ATTRIBUTES = (Project, ); }; }; 530F9743E35929C87133BD8E083735A9 /* UIImage+Metadata.m in Sources */ = {isa = PBXBuildFile; fileRef = 8722B9D0CBEA355542FE99C936B63CC1 /* UIImage+Metadata.m */; }; @@ -1255,30 +1248,30 @@ 5354A7D0794A6F677891E95C6D801AEA /* MallocImpl.h in Headers */ = {isa = PBXBuildFile; fileRef = 6EB73B975BC128BF092B73F3434D9BD8 /* MallocImpl.h */; settings = {ATTRIBUTES = (Project, ); }; }; 5375DDE6A2D2428D0B62F7B9BDE7FF2C /* SKTouch.m in Sources */ = {isa = PBXBuildFile; fileRef = E407F007D3277FB2D6D3144046A32B0A /* SKTouch.m */; settings = {COMPILER_FLAGS = "-DDEBUG=1 -DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0"; }; }; 53B7113A74825BBE592A96A84DDA800C /* UIImage+ExtendedCacheData.m in Sources */ = {isa = PBXBuildFile; fileRef = F144AE35828C9BECC6CF9A680EC9F907 /* UIImage+ExtendedCacheData.m */; }; - 53D4A2B3294BA33749907BD8647AD4B5 /* RCTI18nUtil.m in Sources */ = {isa = PBXBuildFile; fileRef = 8E11BC2E323D9E5B7FF1559DA1C33D34 /* RCTI18nUtil.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 53EBB3615E98732A1A5153258F95D2AB /* RCTImageUtils.m in Sources */ = {isa = PBXBuildFile; fileRef = A2F8D5EF7E560147F66724C6C5387760 /* RCTImageUtils.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; - 53FD28D41CA4139580AE111671EA6D57 /* BSG_KSJSONCodecObjC.h in Headers */ = {isa = PBXBuildFile; fileRef = 7B150812372A7D3BC35960689937BCF6 /* BSG_KSJSONCodecObjC.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 53D4A2B3294BA33749907BD8647AD4B5 /* RCTI18nUtil.m in Sources */ = {isa = PBXBuildFile; fileRef = 4D53EB47529C35BFAD253421073C5C34 /* RCTI18nUtil.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 53EBB3615E98732A1A5153258F95D2AB /* RCTImageUtils.m in Sources */ = {isa = PBXBuildFile; fileRef = 841E07B9F42B3836CB767DC0D972ADF9 /* RCTImageUtils.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + 53FD28D41CA4139580AE111671EA6D57 /* BSG_KSJSONCodecObjC.h in Headers */ = {isa = PBXBuildFile; fileRef = ACE7BA24DDB7E915723843E2530F7AC2 /* BSG_KSJSONCodecObjC.h */; settings = {ATTRIBUTES = (Project, ); }; }; 54073EE40BD9B4238AEBF5770EFAB89A /* ConstexprMath.h in Headers */ = {isa = PBXBuildFile; fileRef = 8E97FF3BDA7FA877AA08E7C4A8AC7D85 /* ConstexprMath.h */; settings = {ATTRIBUTES = (Project, ); }; }; 5436D7BCC99615EEDABB5378F5D3F69D /* FIRCLSUnwind.h in Headers */ = {isa = PBXBuildFile; fileRef = 9C14C10E415C0FB7E8D386356542A928 /* FIRCLSUnwind.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 54A0942FF2E79992B2ACA0DB1C356437 /* RNNotificationCenterMulticast.h in Headers */ = {isa = PBXBuildFile; fileRef = 3E43E4A7656C1FEDFEE67B0C8BE02219 /* RNNotificationCenterMulticast.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 54ABDC1C16EEFC53EEC601AB821B1FA6 /* RCTVibrationPlugins.h in Headers */ = {isa = PBXBuildFile; fileRef = 03392E5EB7FAEE948555583AF17458BE /* RCTVibrationPlugins.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 54BCA853DAAC904AE97C54D9E4800CC7 /* UMKernelService.h in Headers */ = {isa = PBXBuildFile; fileRef = 83BD0CFDA35D4192A9721DD859C071EF /* UMKernelService.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 54EA5DF6CEEE51AE1D97C677517ADFF5 /* RCTTextViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 0B8EE857E27AB051A823505483952AA2 /* RCTTextViewManager.m */; }; + 54A0942FF2E79992B2ACA0DB1C356437 /* RNNotificationCenterMulticast.h in Headers */ = {isa = PBXBuildFile; fileRef = 0F6A26B25688950A36ACE7E69C8EC081 /* RNNotificationCenterMulticast.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 54ABDC1C16EEFC53EEC601AB821B1FA6 /* RCTVibrationPlugins.h in Headers */ = {isa = PBXBuildFile; fileRef = 4C6E9D1C5FDE09F9764B1853523ACF43 /* RCTVibrationPlugins.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 54BCA853DAAC904AE97C54D9E4800CC7 /* UMKernelService.h in Headers */ = {isa = PBXBuildFile; fileRef = 9449A50CF22507F460ECAD220F2E714B /* UMKernelService.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 54EA5DF6CEEE51AE1D97C677517ADFF5 /* RCTTextViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 422D4000FA1A4B67FABBF26D5D4DCB2B /* RCTTextViewManager.m */; }; 55027C288B5EA46BD4E26D342ECAA302 /* FIRInstallationsIDController.m in Sources */ = {isa = PBXBuildFile; fileRef = FA003619DC99BA599FA4F71F68CD7770 /* FIRInstallationsIDController.m */; }; 550D2352901F043B246B1D99D593F110 /* ThreadCachedInt.h in Headers */ = {isa = PBXBuildFile; fileRef = 34035BD0C190B26A0634E24C0E63A8D3 /* ThreadCachedInt.h */; settings = {ATTRIBUTES = (Project, ); }; }; 551B5E3B560EC006D5FAD9C21C88087B /* Parallel.h in Headers */ = {isa = PBXBuildFile; fileRef = 7AAD4EA00627682F58A932674A34A7CD /* Parallel.h */; settings = {ATTRIBUTES = (Project, ); }; }; 551F5E8C6B3ACC04559C5E14ECEBD7D3 /* ConcurrentHashMap.h in Headers */ = {isa = PBXBuildFile; fileRef = C19E86038C174C484D42D219E678DAB1 /* ConcurrentHashMap.h */; settings = {ATTRIBUTES = (Project, ); }; }; 554920A9489ADD1F8EAB6770F610866A /* AsyncServerSocket.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 7F2DB13D06542D69EA4B6D188B4DCC5E /* AsyncServerSocket.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - 554EBC52FB62A18AA396D4D85D46626B /* RNFBCrashlyticsModule.m in Sources */ = {isa = PBXBuildFile; fileRef = EB73C4B22E6FDA94136303678D79778E /* RNFBCrashlyticsModule.m */; }; - 556C76E6F8C956CAA7A39E375D4535B0 /* NSTextStorage+FontScaling.h in Headers */ = {isa = PBXBuildFile; fileRef = DC804774950FB558F15D16C53E14A2E3 /* NSTextStorage+FontScaling.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 554EBC52FB62A18AA396D4D85D46626B /* RNFBCrashlyticsModule.m in Sources */ = {isa = PBXBuildFile; fileRef = A17D8CF31C1C460C4B6B1CBDC08531AD /* RNFBCrashlyticsModule.m */; }; + 556C76E6F8C956CAA7A39E375D4535B0 /* NSTextStorage+FontScaling.h in Headers */ = {isa = PBXBuildFile; fileRef = E51CF6B8DB4476AB9AEA0446FFE67FF1 /* NSTextStorage+FontScaling.h */; settings = {ATTRIBUTES = (Project, ); }; }; 55755FF66BD8ABC78DD090E94188A763 /* ThreadCachedLists.h in Headers */ = {isa = PBXBuildFile; fileRef = 8B6829B2C89A64CE5FB5A5CA1D9D81EF /* ThreadCachedLists.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 557A6B876C549A6F26C4E93169856944 /* ARTContainer.h in Headers */ = {isa = PBXBuildFile; fileRef = 5F6755DED0CBA411D15184F9FECDB49D /* ARTContainer.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 557A6B876C549A6F26C4E93169856944 /* ARTContainer.h in Headers */ = {isa = PBXBuildFile; fileRef = F491BAA0FEC77EE836DE377F8EC3BEF9 /* ARTContainer.h */; settings = {ATTRIBUTES = (Project, ); }; }; 558BF4D03AA6208D974D9C0157B9ED4E /* TOCropViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = E1A4C6AA6995B678030A535C64E2493C /* TOCropViewController.h */; settings = {ATTRIBUTES = (Project, ); }; }; 5590437394972755BDB7FD9DA85BBF4A /* SDImageIOAnimatedCoder.h in Headers */ = {isa = PBXBuildFile; fileRef = 805E69C01A0845C589EB05FDD1BDF743 /* SDImageIOAnimatedCoder.h */; settings = {ATTRIBUTES = (Project, ); }; }; 5591AD18A453D3B2AD2D7DD15B14EA16 /* SDWebImageOptionsProcessor.h in Headers */ = {isa = PBXBuildFile; fileRef = 2A5457C15579961852C2E4BAE3AC7CE1 /* SDWebImageOptionsProcessor.h */; settings = {ATTRIBUTES = (Project, ); }; }; 55A29D332C49B325506C5763B2D1607C /* Try.h in Headers */ = {isa = PBXBuildFile; fileRef = 13B132553B56176DECF6284C474251A6 /* Try.h */; settings = {ATTRIBUTES = (Project, ); }; }; 55A5DE62033605B41B6C9578508197ED /* GDTCORLifecycle.m in Sources */ = {isa = PBXBuildFile; fileRef = 47B0637420115E94A5E606433A5CB9A6 /* GDTCORLifecycle.m */; }; - 55AA4C2C9A1963A09153031B91C9AD83 /* BSG_KSBacktrace_Private.h in Headers */ = {isa = PBXBuildFile; fileRef = BEF7FA215BDEA0ECA02A1A63E0B57A45 /* BSG_KSBacktrace_Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 55AA4C2C9A1963A09153031B91C9AD83 /* BSG_KSBacktrace_Private.h in Headers */ = {isa = PBXBuildFile; fileRef = 8D1F62BA31C127C20DF7A91703642F31 /* BSG_KSBacktrace_Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; 55DB238CD9F02F78D1E418B96104D2E2 /* json.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 506FCC70C04FCDAF0FFEBB0EA7B20F57 /* json.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; 55EA8380C02950332F6EB64F0788BB83 /* logging.cc in Sources */ = {isa = PBXBuildFile; fileRef = 8AEBC87CEBF5C2C74564537E3E555AC6 /* logging.cc */; settings = {COMPILER_FLAGS = "-Wno-shorten-64-to-32"; }; }; 55F72D6B2A29619435CE8615E7803975 /* dec_msa.c in Sources */ = {isa = PBXBuildFile; fileRef = A1FA99C9A41D79C4EBE972BA7A8CA3AA /* dec_msa.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; @@ -1293,134 +1286,134 @@ 56CA8A399D65FB392554775B2A4FC712 /* UIImage+GIF.m in Sources */ = {isa = PBXBuildFile; fileRef = CD9FDE20BB6C3A8A95497CBD5EF63471 /* UIImage+GIF.m */; }; 56CC29AA7D6ECAF485F56ACF79A62324 /* SDMemoryCache.h in Headers */ = {isa = PBXBuildFile; fileRef = E95DEDB271798F95980DC4B06279B63E /* SDMemoryCache.h */; settings = {ATTRIBUTES = (Project, ); }; }; 56CF61E84FD48C3A5881D4531BA2D990 /* libMMKV.mm in Sources */ = {isa = PBXBuildFile; fileRef = E19E13892425E415DA3AA03CE7B08E14 /* libMMKV.mm */; }; - 5708C5F9EA0EE9EF0976F3C5D2A77474 /* RCTBaseTextInputShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = E43A768F57F6CF27AA59A7BB0872D21E /* RCTBaseTextInputShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 57157DC2187A67BB65F43F4D6A06A748 /* RCTSubtractionAnimatedNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 54E2A3033243CD5D1DC83180245A17A0 /* RCTSubtractionAnimatedNode.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + 5708C5F9EA0EE9EF0976F3C5D2A77474 /* RCTBaseTextInputShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = CC5FCC4F68924176490A137A1E39DCD0 /* RCTBaseTextInputShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 57157DC2187A67BB65F43F4D6A06A748 /* RCTSubtractionAnimatedNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 1A8F4B45E99C3EC1D2801E55BC49FC17 /* RCTSubtractionAnimatedNode.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; 5730650DB2DEAACDDD31A30086AC02D9 /* filters_msa.c in Sources */ = {isa = PBXBuildFile; fileRef = C4F664889A8E779D64A212931DD712C9 /* filters_msa.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 57311B88F8BAC5DEACF9C463A10AAD80 /* RCTAppearance.mm in Sources */ = {isa = PBXBuildFile; fileRef = 9325E3AAD552A67B0D70E04CD20D10DF /* RCTAppearance.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + 57311B88F8BAC5DEACF9C463A10AAD80 /* RCTAppearance.mm in Sources */ = {isa = PBXBuildFile; fileRef = D89C1050BD97F41EDFF2FC4C15139634 /* RCTAppearance.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; 5741AFE087A083C8D0D5C9D5F646A707 /* muxread.c in Sources */ = {isa = PBXBuildFile; fileRef = 9054638FF8871861E9C23D6601268C24 /* muxread.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; 576D1D3D0255B54FFBDDCB00855FE397 /* PTChannel.m in Sources */ = {isa = PBXBuildFile; fileRef = 78A3D0014B2EFB2235CCE8067329760B /* PTChannel.m */; }; - 5772F5811C6F469C0DECBC266DC64E9A /* RCTAnimatedImage.m in Sources */ = {isa = PBXBuildFile; fileRef = 422CC267D87A8AE97C06618B7875D538 /* RCTAnimatedImage.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + 5772F5811C6F469C0DECBC266DC64E9A /* RCTAnimatedImage.m in Sources */ = {isa = PBXBuildFile; fileRef = 8250808ABBF4398B706C6E4F32AA58EF /* RCTAnimatedImage.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; 57779A997F204BED973BB03DBF2B8190 /* vp8l_dec.c in Sources */ = {isa = PBXBuildFile; fileRef = E3335E54693BED0B26BD4342020C6645 /* vp8l_dec.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; 579F4CD6E4E3D832752807C6368C5943 /* GULNetwork.h in Headers */ = {isa = PBXBuildFile; fileRef = BF270AC328E5EABF4649740D18631529 /* GULNetwork.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 57A569585BEE2227B66870753B09889D /* RCTBlobPlugins.mm in Sources */ = {isa = PBXBuildFile; fileRef = 8D2D026EA4E9E0824B9E3EEAA9DB342B /* RCTBlobPlugins.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + 57A569585BEE2227B66870753B09889D /* RCTBlobPlugins.mm in Sources */ = {isa = PBXBuildFile; fileRef = 488772C4721EA1135056A14045EA6C13 /* RCTBlobPlugins.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; 57C228A63490E86D0339DE0E72FAA9CF /* SDAsyncBlockOperation.m in Sources */ = {isa = PBXBuildFile; fileRef = 449F342C2751DCD055BE843E0851F4DB /* SDAsyncBlockOperation.m */; }; - 57C230556569E866AE4F293CBCA4F9D6 /* RCTObjcExecutor.mm in Sources */ = {isa = PBXBuildFile; fileRef = B9D24F6F371C919129EDF5A34E8C172D /* RCTObjcExecutor.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 57C230556569E866AE4F293CBCA4F9D6 /* RCTObjcExecutor.mm in Sources */ = {isa = PBXBuildFile; fileRef = 5AFB77D91B861C98ECA2289609DA904B /* RCTObjcExecutor.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; 57E23479ED5C21BA10F35EE9CA6AB38C /* FIRCLSUtility.h in Headers */ = {isa = PBXBuildFile; fileRef = CDC2BADBC6B01A48B2E76D23BE432B9D /* FIRCLSUtility.h */; settings = {ATTRIBUTES = (Project, ); }; }; 57E28CD0D39B137CA6BBA829B38F0544 /* GDTCORRegistrar.h in Headers */ = {isa = PBXBuildFile; fileRef = 2497AD2C3A38487B2E6A2C14553F93DE /* GDTCORRegistrar.h */; settings = {ATTRIBUTES = (Project, ); }; }; 57EA16615D9CD9D0C45DE091246065B3 /* FireAndForgetResponder.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46C3F960F2F470828033491C1D3D158F /* FireAndForgetResponder.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0 -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; 57F2E9384A1C3DCF46CB5242DF03BD36 /* UIImage+MemoryCacheCost.h in Headers */ = {isa = PBXBuildFile; fileRef = 8C88A49AFD541B73D9A26B8F5D5760A9 /* UIImage+MemoryCacheCost.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5835A6EE119F67B3B5DDB92D53520B25 /* EXHapticsModule.m in Sources */ = {isa = PBXBuildFile; fileRef = 2FDDAB84D4269E33EEEF7CB3E15DF2BE /* EXHapticsModule.m */; }; + 5835A6EE119F67B3B5DDB92D53520B25 /* EXHapticsModule.m in Sources */ = {isa = PBXBuildFile; fileRef = D41292C5501551FD56A523432F93C42F /* EXHapticsModule.m */; }; 58528DCA2CD999D4137C83D043A9FC8F /* FKTextSearchable.h in Headers */ = {isa = PBXBuildFile; fileRef = 531D2B71FA6B7E9275671F117385490B /* FKTextSearchable.h */; settings = {ATTRIBUTES = (Project, ); }; }; 5876730F42F0DF681374CE70D9F72BE5 /* FIRCLSThreadArrayOperation.h in Headers */ = {isa = PBXBuildFile; fileRef = 7E7248EE9263456BF9C65514F5653EC8 /* FIRCLSThreadArrayOperation.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5877B0296F58EC9036F659D66A75DE96 /* RCTReconnectingWebSocket.m in Sources */ = {isa = PBXBuildFile; fileRef = 821B1D4109543910D6B6A5FD67FE2E98 /* RCTReconnectingWebSocket.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 5879D02FFAB102187357BDB78AAB8E5F /* RAMBundleRegistry.h in Headers */ = {isa = PBXBuildFile; fileRef = 317DDD2002E14CF31540476448A321F8 /* RAMBundleRegistry.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5877B0296F58EC9036F659D66A75DE96 /* RCTReconnectingWebSocket.m in Sources */ = {isa = PBXBuildFile; fileRef = 2E24CB94ACDE4208A2F74AFF8B370964 /* RCTReconnectingWebSocket.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 5879D02FFAB102187357BDB78AAB8E5F /* RAMBundleRegistry.h in Headers */ = {isa = PBXBuildFile; fileRef = 4FCDB1CF016AFCD58C3DC21A0B326BCE /* RAMBundleRegistry.h */; settings = {ATTRIBUTES = (Project, ); }; }; 58A0D03F97F8754E1F8EC5EAE1911057 /* UIImage+Metadata.h in Headers */ = {isa = PBXBuildFile; fileRef = 7ECBB15C0BBC77F5F9CF70A64A07A1F5 /* UIImage+Metadata.h */; settings = {ATTRIBUTES = (Project, ); }; }; 58A135D3A7C85E720C02F34E315BCBF0 /* Singleton.h in Headers */ = {isa = PBXBuildFile; fileRef = A2842000BC238E4A5FC678C67173DDA8 /* Singleton.h */; settings = {ATTRIBUTES = (Project, ); }; }; 58A14416A831C60BB7B5F99F3971D040 /* SDWebImage.h in Headers */ = {isa = PBXBuildFile; fileRef = 7E329C27A9B42D3693F968168A55ABE0 /* SDWebImage.h */; settings = {ATTRIBUTES = (Project, ); }; }; 58AEF2D987F14D4D2AF6D28C7F7F4CF7 /* rescaler_mips32.c in Sources */ = {isa = PBXBuildFile; fileRef = 97FEA7485A09F5353062258212D80D74 /* rescaler_mips32.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 58B6EFE762474AE5961B3AB429CF6ABE /* RNFBSharedUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = 48CF9C5580DE586E095C781BF30E40E1 /* RNFBSharedUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 58DED70320A4E35965786B73000D3FEC /* Utils.h in Headers */ = {isa = PBXBuildFile; fileRef = AEEF92FF6B350AEFD327D5887FEF8A7D /* Utils.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 58F03722BFC5D75B7DFFD49D182CBEA7 /* BSG_KSLogger.m in Sources */ = {isa = PBXBuildFile; fileRef = 6FA0E8FB2B6FDAB51FDBCCA8290F854D /* BSG_KSLogger.m */; }; + 58B6EFE762474AE5961B3AB429CF6ABE /* RNFBSharedUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = FDCACD3292A92443EA5C6F7B4756FFB5 /* RNFBSharedUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 58DED70320A4E35965786B73000D3FEC /* Utils.h in Headers */ = {isa = PBXBuildFile; fileRef = 21AA5E423691326E6A1899EA853E4857 /* Utils.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 58F03722BFC5D75B7DFFD49D182CBEA7 /* BSG_KSLogger.m in Sources */ = {isa = PBXBuildFile; fileRef = 08BC175DFF581A63F45FB432E7265A80 /* BSG_KSLogger.m */; }; 58F8448BECF3B722C9B2D56C8C114E7F /* MMKV_IO.h in Headers */ = {isa = PBXBuildFile; fileRef = 556BFA2EC56CA0C1FC63839589D38A7E /* MMKV_IO.h */; settings = {ATTRIBUTES = (Project, ); }; }; 591767BC4095B3A9AE9EEBC3E6F982E5 /* FIRCLSMultipartMimeStreamEncoder.m in Sources */ = {isa = PBXBuildFile; fileRef = DFAD9AF325DDBD47E912B1050D1E9916 /* FIRCLSMultipartMimeStreamEncoder.m */; }; - 592C0F1AC9423D3E49AF0B1BCB4B5F11 /* EXSessionUploadTaskDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = 2C32E99342E5E34910332E53E0FAC48F /* EXSessionUploadTaskDelegate.m */; }; + 592C0F1AC9423D3E49AF0B1BCB4B5F11 /* EXSessionUploadTaskDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = EF7D53A6F3C391EE11DD45253670FB19 /* EXSessionUploadTaskDelegate.m */; }; 592D531A0BCBADD41C6B8C1ED4C73EEF /* Builtins.h in Headers */ = {isa = PBXBuildFile; fileRef = 9642778E87FC8AC3F9807B8EE25E64BE /* Builtins.h */; settings = {ATTRIBUTES = (Project, ); }; }; 594932D21609520B6E215F2681627151 /* KeyValueHolder.h in Headers */ = {isa = PBXBuildFile; fileRef = CC059C0AE44FC1A1AA162C66F274F452 /* KeyValueHolder.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5960B5A83845F245A542319DB008CE20 /* RCTPicker.m in Sources */ = {isa = PBXBuildFile; fileRef = 150F31FD99A8C71C538F0D0D60D10127 /* RCTPicker.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 597C4F753121B6E2CF3F91AECCCACD95 /* RCTUIImageViewAnimated.m in Sources */ = {isa = PBXBuildFile; fileRef = 47731A58CB137A580E8F69F39B228C1B /* RCTUIImageViewAnimated.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + 5960B5A83845F245A542319DB008CE20 /* RCTPicker.m in Sources */ = {isa = PBXBuildFile; fileRef = BA5E3073BA7F3C9F595624AA607989F4 /* RCTPicker.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 597C4F753121B6E2CF3F91AECCCACD95 /* RCTUIImageViewAnimated.m in Sources */ = {isa = PBXBuildFile; fileRef = BC82D974429C0673E8C435355EC66EA9 /* RCTUIImageViewAnimated.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; 5990C386CFF4495D345DE4BD9B720B97 /* MemoryResource.h in Headers */ = {isa = PBXBuildFile; fileRef = C6CB63DE22FDA5E898A09C8967520E51 /* MemoryResource.h */; settings = {ATTRIBUTES = (Project, ); }; }; 5990D046CB71FA7ADC5C8823B06A42A3 /* GDTCCTUploader.m in Sources */ = {isa = PBXBuildFile; fileRef = EEC3E2B17B15EB6F478932D93AD53EC7 /* GDTCCTUploader.m */; }; - 59985AFE0F5998FD37A9440CFD21D4D0 /* BugsnagApiClient.m in Sources */ = {isa = PBXBuildFile; fileRef = CCFB1DA3D6C4E7F32F19A34B80E3946F /* BugsnagApiClient.m */; }; - 599BFDD335524A9CF95DEC1AD1D1C2D8 /* TurboModuleUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = 5D03500B231468259C09116F18949D72 /* TurboModuleUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 59985AFE0F5998FD37A9440CFD21D4D0 /* BugsnagApiClient.m in Sources */ = {isa = PBXBuildFile; fileRef = A32D263D9ACDE5641E340FFE1944282E /* BugsnagApiClient.m */; }; + 599BFDD335524A9CF95DEC1AD1D1C2D8 /* TurboModuleUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = 5E885B96FBC057287EE2A714130907C5 /* TurboModuleUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; 59AB2E9847C52F6350C5CA42F64D9B4B /* SDWebImageDownloaderOperation.m in Sources */ = {isa = PBXBuildFile; fileRef = B04B2211ADF548091F1BD6F7397CA8E1 /* SDWebImageDownloaderOperation.m */; }; - 59AEFF4946A03A79C45639C093DE37A8 /* RCTSurfaceSizeMeasureMode.h in Headers */ = {isa = PBXBuildFile; fileRef = F09CAD65E885D3877AC113F4AA854D96 /* RCTSurfaceSizeMeasureMode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 59AFFBDA7A1CEAA4938A2897A836C114 /* UMPermissionsInterface-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 07E6C850E620161FEB0E005308D7E900 /* UMPermissionsInterface-dummy.m */; }; + 59AEFF4946A03A79C45639C093DE37A8 /* RCTSurfaceSizeMeasureMode.h in Headers */ = {isa = PBXBuildFile; fileRef = ED4150AB26E35DADACDB94A3040451EB /* RCTSurfaceSizeMeasureMode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 59AFFBDA7A1CEAA4938A2897A836C114 /* UMPermissionsInterface-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 2A7A06B9C6BB0524CF511FA038538A70 /* UMPermissionsInterface-dummy.m */; }; 59BB55E1204529CD16E1FAEF746D3318 /* FIRAppAssociationRegistration.m in Sources */ = {isa = PBXBuildFile; fileRef = B402A5E83CF2AC341ED741CC58C7188A /* FIRAppAssociationRegistration.m */; }; 59C7F51036C7FC05F1C474145584C867 /* FIRCLSInternalReport.h in Headers */ = {isa = PBXBuildFile; fileRef = 1D2D281233B93C81791D7901BD3F2964 /* FIRCLSInternalReport.h */; settings = {ATTRIBUTES = (Project, ); }; }; 59D2FF7D199E0FAEEA5D0C5C60C85760 /* File.h in Headers */ = {isa = PBXBuildFile; fileRef = 78F214CFDCCE89A85495D226062916CA /* File.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 59E39951CBDBBF3BE34F50771F0D63DA /* REATransformNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 221EAFBF8C4EFA60E7201C7605DA24F7 /* REATransformNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5A0A242D618FF39736DA9990029D99E6 /* LongLivedObject.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 606F7B085BCA866D3720CC6D5FCF9A60 /* LongLivedObject.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 59E39951CBDBBF3BE34F50771F0D63DA /* REATransformNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 09F07623EF792B7E062D8915EA0CF9C8 /* REATransformNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5A0A242D618FF39736DA9990029D99E6 /* LongLivedObject.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 868A5681C793ECF276B15D5778728D1A /* LongLivedObject.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; 5A2DF787817F7D1F598A859496117313 /* Poly-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = E420CE57027B3320D62EA03FBEE125B1 /* Poly-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; 5A4315CC7868A0AA71F72B6EB9DF3A8D /* HazptrThreadPoolExecutor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BA8D20000B9413674B8673B7CDE2E72C /* HazptrThreadPoolExecutor.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; 5A8459CCC3BF00828D32BB4D35ABA743 /* SDWebImageDefine.m in Sources */ = {isa = PBXBuildFile; fileRef = E44F0B0A2654DF06F2373E2AC40C7F1C /* SDWebImageDefine.m */; }; 5A89504301D62525F736D0050854E4CB /* SonarKitNetworkPlugin+CPPInitialization.h in Headers */ = {isa = PBXBuildFile; fileRef = 18343429EC371A0D798414A686989445 /* SonarKitNetworkPlugin+CPPInitialization.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5A9A8ACBFE60F86E70A30B3FC6C0EBD8 /* BSG_KSCrashAdvanced.h in Headers */ = {isa = PBXBuildFile; fileRef = 54F7C32BAB3628DAEBFE16E3D1A963BC /* BSG_KSCrashAdvanced.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5A9A8ACBFE60F86E70A30B3FC6C0EBD8 /* BSG_KSCrashAdvanced.h in Headers */ = {isa = PBXBuildFile; fileRef = 66DD01B75D0D51085FFA21C1E5712417 /* BSG_KSCrashAdvanced.h */; settings = {ATTRIBUTES = (Project, ); }; }; 5AB7883D6F7123FEE9DE354AF2FE9387 /* Atomic.h in Headers */ = {isa = PBXBuildFile; fileRef = 234D27B3B35A09D366BDE4F3841A6C71 /* Atomic.h */; settings = {ATTRIBUTES = (Project, ); }; }; 5AB858EAA1F43F648D6CF4D0BD8C8AE0 /* MiniPBCoder_OSX.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 60CEB4A382BD7439F09781B449EC63F2 /* MiniPBCoder_OSX.cpp */; settings = {COMPILER_FLAGS = "-x objective-c++ -fno-objc-arc"; }; }; 5AD4160A2F0C66183F121D80CE0DC65C /* FIRInteropEventNames.h in Headers */ = {isa = PBXBuildFile; fileRef = 769FAB53B4979A07BD4073FD8A4F1FDA /* FIRInteropEventNames.h */; settings = {ATTRIBUTES = (Project, ); }; }; 5AF92807EA677D3DE6A1F41612CB12FB /* FlipperKit-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = C1BBE9032F531E4EC1C6C7DDF23C89F3 /* FlipperKit-umbrella.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5AFE1B18E3A226BBDFBAC0CCAB6A7B98 /* BugsnagSink.m in Sources */ = {isa = PBXBuildFile; fileRef = 1501F319DBC9B49B8E077339A70A46AF /* BugsnagSink.m */; }; - 5B5DFB3D4BCE9CA91C1770AF8065D634 /* EXFileSystem.h in Headers */ = {isa = PBXBuildFile; fileRef = 70D1C7A75E50A03600FE3AAC8F13C821 /* EXFileSystem.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5AFE1B18E3A226BBDFBAC0CCAB6A7B98 /* BugsnagSink.m in Sources */ = {isa = PBXBuildFile; fileRef = 39ED455DE694BB55F4FAD599B2904A76 /* BugsnagSink.m */; }; + 5B5DFB3D4BCE9CA91C1770AF8065D634 /* EXFileSystem.h in Headers */ = {isa = PBXBuildFile; fileRef = 1D2E42F38790ADB9266E27984F40DF2B /* EXFileSystem.h */; settings = {ATTRIBUTES = (Project, ); }; }; 5B5E44100CB0A817A1A887A5D865E197 /* SanitizeThread.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 42CADC23AE51C0C0973C83B906D51A90 /* SanitizeThread.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; 5B5EBC23448AA1E36B9E489003457385 /* ScopedEventBaseThread.h in Headers */ = {isa = PBXBuildFile; fileRef = 35FAE16347FD77AD4FA13BE95B2EA6EA /* ScopedEventBaseThread.h */; settings = {ATTRIBUTES = (Project, ); }; }; 5B648720A85B4FD11CA2665BBE8EF6F4 /* UIImage+MultiFormat.h in Headers */ = {isa = PBXBuildFile; fileRef = 91D35E2CDD2B60CDB96841698F3B78F4 /* UIImage+MultiFormat.h */; settings = {ATTRIBUTES = (Project, ); }; }; 5B8B332ECFF0056F7CEC66BD47604656 /* Conv.h in Headers */ = {isa = PBXBuildFile; fileRef = B97A113684B4D9213FF2A8D21E5E207E /* Conv.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5BA5729F9275934BF28DEDD4B27EED14 /* RCTModuloAnimatedNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 76A061142827CF13C4D7ECF381D71B03 /* RCTModuloAnimatedNode.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + 5BA5729F9275934BF28DEDD4B27EED14 /* RCTModuloAnimatedNode.m in Sources */ = {isa = PBXBuildFile; fileRef = DA4031C337B6B741152A4C7C75C3C1C8 /* RCTModuloAnimatedNode.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; 5BB2BDF346E8282D6A5E781D6BB77864 /* FIRComponent.h in Headers */ = {isa = PBXBuildFile; fileRef = CAF79ABA691C5D9E7A52BF0F5FEB115A /* FIRComponent.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5BBA30727C42055AED7245E6E95AD76D /* RCTRefreshControl.h in Headers */ = {isa = PBXBuildFile; fileRef = 7D20F71717F6D63DC8918152A9C9A908 /* RCTRefreshControl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5BBD3BF8F1D8BCE5424520F1C5F597A0 /* RCTConvert+FFFastImage.h in Headers */ = {isa = PBXBuildFile; fileRef = 713A15F48B0F0FEC3E2F7407BDC4BFA6 /* RCTConvert+FFFastImage.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5BBF60294A35EABDD416CD49326D9A68 /* RNCWebView.m in Sources */ = {isa = PBXBuildFile; fileRef = 6F8F3C5F708B33E6BDA7954BD0723779 /* RNCWebView.m */; }; - 5BD0E692603249B8813A7FE3B2711CA1 /* BSG_KSFileUtils.c in Sources */ = {isa = PBXBuildFile; fileRef = 0318045AAA150FBF6B3FFF4706ABF521 /* BSG_KSFileUtils.c */; }; + 5BBA30727C42055AED7245E6E95AD76D /* RCTRefreshControl.h in Headers */ = {isa = PBXBuildFile; fileRef = 05EFEFFB6FBAEB2187CB89FEDE0E72BF /* RCTRefreshControl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5BBD3BF8F1D8BCE5424520F1C5F597A0 /* RCTConvert+FFFastImage.h in Headers */ = {isa = PBXBuildFile; fileRef = 9869AC02AFA8E00FE51A11DA36240D93 /* RCTConvert+FFFastImage.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5BBF60294A35EABDD416CD49326D9A68 /* RNCWebView.m in Sources */ = {isa = PBXBuildFile; fileRef = 1F94AC55D7DB04DD2126D714E8F0526C /* RNCWebView.m */; }; + 5BD0E692603249B8813A7FE3B2711CA1 /* BSG_KSFileUtils.c in Sources */ = {isa = PBXBuildFile; fileRef = D5FEF647340558BEBCEEFE81A03D6D54 /* BSG_KSFileUtils.c */; }; 5BE1E55B90CC535E7C3CF5EA357B3612 /* Base.h in Headers */ = {isa = PBXBuildFile; fileRef = E36F12B577D3551BD3858AB7A2A3A2F6 /* Base.h */; settings = {ATTRIBUTES = (Project, ); }; }; 5BF1A5E804B3CE751BF48DC4A1AE077C /* FIRCLSDataParsing.c in Sources */ = {isa = PBXBuildFile; fileRef = 7A993ACDEBFD7E0ED90B4769206BCD30 /* FIRCLSDataParsing.c */; }; - 5C06E36CD574FBE8FCDF4DB23632E79F /* REANode.h in Headers */ = {isa = PBXBuildFile; fileRef = 644B8A6569BEEBB4352F664FDB906D10 /* REANode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5C32CD8A3B4E70301043B885EBBA1F69 /* ARTLinearGradient.h in Headers */ = {isa = PBXBuildFile; fileRef = 6ABF64C60A345F5FA5D6E014A4F0F92D /* ARTLinearGradient.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5C06E36CD574FBE8FCDF4DB23632E79F /* REANode.h in Headers */ = {isa = PBXBuildFile; fileRef = 573BD7573CC2D618C251A8172FBAE621 /* REANode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5C32CD8A3B4E70301043B885EBBA1F69 /* ARTLinearGradient.h in Headers */ = {isa = PBXBuildFile; fileRef = C74544134889899AC6296DEBF2830A4D /* ARTLinearGradient.h */; settings = {ATTRIBUTES = (Project, ); }; }; 5C39E2FEE8F0F08EB1148A3DDC2CCAD3 /* GDTCOREvent.m in Sources */ = {isa = PBXBuildFile; fileRef = 4F82EAFB74F63EB62458ADB027AEFC7F /* GDTCOREvent.m */; }; 5C5C304AFD8755D076C199FD1DF4E623 /* FBLPromise+Then.m in Sources */ = {isa = PBXBuildFile; fileRef = 412B38AB8ABA12580A6E2542B6393808 /* FBLPromise+Then.m */; }; - 5C6857F60370853F2C17F553D38A97B7 /* RCTPickerManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 4A7BF203C0C01D2D63E560D4851E24A2 /* RCTPickerManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 5C6857F60370853F2C17F553D38A97B7 /* RCTPickerManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 04C7199F89520D6B44F7C1B306AB3DA9 /* RCTPickerManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; 5C6B3EF91CF6927788129874C2A85DC4 /* Ordering.h in Headers */ = {isa = PBXBuildFile; fileRef = AA2A2476FB2776F5D7B808A2C5A31C05 /* Ordering.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5C84C9688B9482E44E569DBCC7654D0E /* RCTSegmentedControlManager.h in Headers */ = {isa = PBXBuildFile; fileRef = F7A52421AC4E1624FA229043B7EDD69C /* RCTSegmentedControlManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5CA6316BB302B36D6AE2B4A483F3EAB6 /* ARTCGFloatArray.h in Headers */ = {isa = PBXBuildFile; fileRef = 1704838BFA01DE086B84967801D4C522 /* ARTCGFloatArray.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5C84C9688B9482E44E569DBCC7654D0E /* RCTSegmentedControlManager.h in Headers */ = {isa = PBXBuildFile; fileRef = AEB1087B57D6F978F92CDA9C14EDB60C /* RCTSegmentedControlManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5CA6316BB302B36D6AE2B4A483F3EAB6 /* ARTCGFloatArray.h in Headers */ = {isa = PBXBuildFile; fileRef = A200A2C0578FF20B0A53F60F7F715CB7 /* ARTCGFloatArray.h */; settings = {ATTRIBUTES = (Project, ); }; }; 5CCE3FB238F67F4A1AE513C4461B1463 /* RSocketClient.h in Headers */ = {isa = PBXBuildFile; fileRef = D650EB3036130CC0F99273D1E13EB3F2 /* RSocketClient.h */; settings = {ATTRIBUTES = (Project, ); }; }; 5CD680AAE0F11E6C94D0E1EED3C01EA4 /* CodedInputData.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 5145977F0E57DB5CB2A88B1FFAD79FB9 /* CodedInputData.cpp */; settings = {COMPILER_FLAGS = "-x objective-c++ -fno-objc-arc"; }; }; - 5CE2B094D3A1BC2F3A5170B123AA18D3 /* BSGSerialization.h in Headers */ = {isa = PBXBuildFile; fileRef = B28D52210DF03E316BDFFF2F39219EF6 /* BSGSerialization.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5CE2B094D3A1BC2F3A5170B123AA18D3 /* BSGSerialization.h in Headers */ = {isa = PBXBuildFile; fileRef = F87C9ADF32002A888101A01C46CD1B2B /* BSGSerialization.h */; settings = {ATTRIBUTES = (Project, ); }; }; 5CEC8F544EB06DB67845490887ADB7EB /* SKHighlightOverlay.mm in Sources */ = {isa = PBXBuildFile; fileRef = D03CA44CA8D6720A679EF538EE831E1D /* SKHighlightOverlay.mm */; settings = {COMPILER_FLAGS = "-DDEBUG=1 -DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0"; }; }; - 5D1443CA14941EC385B1380A3F3FD2D8 /* EXAVPlayerData.m in Sources */ = {isa = PBXBuildFile; fileRef = 90DB9C70CE53A913FF931358A1D8C403 /* EXAVPlayerData.m */; }; - 5D18417DAE8D08F832CD6D5E524074D3 /* RCTUIImageViewAnimated.h in Headers */ = {isa = PBXBuildFile; fileRef = 738ADC60F35108A0F881BADE8D0770CF /* RCTUIImageViewAnimated.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5D1443CA14941EC385B1380A3F3FD2D8 /* EXAVPlayerData.m in Sources */ = {isa = PBXBuildFile; fileRef = 8A7FCD58C0AD9B7BECA4A44BB9BCB359 /* EXAVPlayerData.m */; }; + 5D18417DAE8D08F832CD6D5E524074D3 /* RCTUIImageViewAnimated.h in Headers */ = {isa = PBXBuildFile; fileRef = 136AD780318D71CEC1CAD01049A43192 /* RCTUIImageViewAnimated.h */; settings = {ATTRIBUTES = (Project, ); }; }; 5D1C8EE105AF6A41604212C9FBEC1B04 /* TestObserver.h in Headers */ = {isa = PBXBuildFile; fileRef = 10E98B42DD40D4369D494747760E7B00 /* TestObserver.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5D2AA96D0377AD795995536E643B197E /* RCTBaseTextInputViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = F05B38760018C05A0FF3CBEDF51828F7 /* RCTBaseTextInputViewManager.m */; }; - 5D3305D1EA225AA0A600FC9AC3DF6885 /* RCTBridge.m in Sources */ = {isa = PBXBuildFile; fileRef = 93C901F6E9CB1802982E6C0C7077F5F0 /* RCTBridge.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 5D33C608DD5ADB443C60BBCE274EB8D2 /* RNCMaskedViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = EBE9EE3C372D7609E687C433CF4AE1A8 /* RNCMaskedViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5D52EC77A0FD9DDCF15A0892BFF30724 /* RNNotificationCenter.m in Sources */ = {isa = PBXBuildFile; fileRef = 69EC70F514FDAC688D302E3B6A178992 /* RNNotificationCenter.m */; }; - 5D66498902DD47AC15F5F81AE73F7F2A /* BugsnagSessionTracker.m in Sources */ = {isa = PBXBuildFile; fileRef = 4DF56AC782AF734F69C643530BEAC53C /* BugsnagSessionTracker.m */; }; - 5D67D09734F57238C1C5E210241D8EB2 /* RCTAppState.h in Headers */ = {isa = PBXBuildFile; fileRef = FFB00AB649FA9941515EEE7ABDDA2560 /* RCTAppState.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5D2AA96D0377AD795995536E643B197E /* RCTBaseTextInputViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = E8AE532D51ABED7FC35AEF600D8411C3 /* RCTBaseTextInputViewManager.m */; }; + 5D3305D1EA225AA0A600FC9AC3DF6885 /* RCTBridge.m in Sources */ = {isa = PBXBuildFile; fileRef = 3094008CAE112CF6ED6AF1675211F86A /* RCTBridge.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 5D33C608DD5ADB443C60BBCE274EB8D2 /* RNCMaskedViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 37EFAE7AC35E13608EE858E835CBE78C /* RNCMaskedViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5D52EC77A0FD9DDCF15A0892BFF30724 /* RNNotificationCenter.m in Sources */ = {isa = PBXBuildFile; fileRef = 67280C936CFE5B6DD98C4242D8E002BA /* RNNotificationCenter.m */; }; + 5D66498902DD47AC15F5F81AE73F7F2A /* BugsnagSessionTracker.m in Sources */ = {isa = PBXBuildFile; fileRef = B3408319A8780D362C0E6B4E6FA0C537 /* BugsnagSessionTracker.m */; }; + 5D67D09734F57238C1C5E210241D8EB2 /* RCTAppState.h in Headers */ = {isa = PBXBuildFile; fileRef = D9F83C48F14D7A211718FCC76D29623B /* RCTAppState.h */; settings = {ATTRIBUTES = (Project, ); }; }; 5D85E4597A0EA4601AC058FC8A336266 /* FKUserDefaultsSwizzleUtility.m in Sources */ = {isa = PBXBuildFile; fileRef = 774C2B51FB32A49702C6285EB360644B /* FKUserDefaultsSwizzleUtility.m */; settings = {COMPILER_FLAGS = "-DDEBUG=1 -DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0"; }; }; 5D87A3F2F1AFF3C61BCCF12D3FFBB919 /* SocketOptionMap.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B2D02B74897288E6885023A05BDF492C /* SocketOptionMap.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; 5D94B0773D7A674CAED8241CC030A3B3 /* OpenSSLUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = E63150E8640B2039AAA633B49BCFCF35 /* OpenSSLUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; 5D94C85521F651CAF78D0774F739EFFE /* config_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = 8CBE4963EB65015C4E9BE84DB25AE408 /* config_enc.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 5D9925AD96702CF790A19B660AB4A123 /* RCTImagePlugins.mm in Sources */ = {isa = PBXBuildFile; fileRef = AD8ADF47FB2FF2EE0C388AF6B764B36A /* RCTImagePlugins.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; - 5D9DD851DC56839DAE74C8EF783BCEE0 /* MessageQueueThread.h in Headers */ = {isa = PBXBuildFile; fileRef = FCAA6567C7D6EDABBBE4182E6B9150DC /* MessageQueueThread.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5D9925AD96702CF790A19B660AB4A123 /* RCTImagePlugins.mm in Sources */ = {isa = PBXBuildFile; fileRef = 9611129164E010EA84C5F775861C7C6F /* RCTImagePlugins.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + 5D9DD851DC56839DAE74C8EF783BCEE0 /* MessageQueueThread.h in Headers */ = {isa = PBXBuildFile; fileRef = 3A40270ABBA4DDB8980ECC88D0C87EE2 /* MessageQueueThread.h */; settings = {ATTRIBUTES = (Project, ); }; }; 5DA0F137CAFD3FF8D4B8A1605BA3AC12 /* TOActivityCroppedImageProvider.m in Sources */ = {isa = PBXBuildFile; fileRef = 6E594EEC19882003326320AA9B66CA32 /* TOActivityCroppedImageProvider.m */; }; 5DA4697BAFAFAA6BFEA13B36B76B57AE /* Libgen.h in Headers */ = {isa = PBXBuildFile; fileRef = E7962FF1074F6765366F816E33792380 /* Libgen.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5DBEF4CE82FF2ECB983B8FE169924C38 /* QBImagePicker.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = C69CE7EBF03AD807A3216CE570AF7D93 /* QBImagePicker.storyboard */; }; - 5DC27AEDBD9E3EE36BF2FE1912926BAF /* RNCSafeAreaShadowView.m in Sources */ = {isa = PBXBuildFile; fileRef = CB9D5BEE2AAEC88BB06E78FAB8EAED33 /* RNCSafeAreaShadowView.m */; }; + 5DBEF4CE82FF2ECB983B8FE169924C38 /* QBImagePicker.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = FD504F6B161DA27F1ECFD41CC8AE035F /* QBImagePicker.storyboard */; }; + 5DC27AEDBD9E3EE36BF2FE1912926BAF /* RNCSafeAreaShadowView.m in Sources */ = {isa = PBXBuildFile; fileRef = FBF3340032616F8432880795D81EF2BC /* RNCSafeAreaShadowView.m */; }; 5DCE172EC75208EC2A3189C915EBF678 /* EventBaseBackendBase.h in Headers */ = {isa = PBXBuildFile; fileRef = F42428EBE2A581D39BBA5A76C54A6366 /* EventBaseBackendBase.h */; settings = {ATTRIBUTES = (Project, ); }; }; 5E14F58CA03D0529A4624D7BF7352794 /* FIRCLSReportManager_Private.h in Headers */ = {isa = PBXBuildFile; fileRef = 2CD7195F3910E7BBF1092BE51F12F91D /* FIRCLSReportManager_Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; 5E2F5CF69877E4883E32E45DE05F14EC /* FIRCLSByteUtility.m in Sources */ = {isa = PBXBuildFile; fileRef = C9A231A645AD2E00A8FE98B6AE41DB9D /* FIRCLSByteUtility.m */; }; - 5E528CCD14263B8B63AC2920919A10D8 /* RCTTouchHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 0A2E4B6CE4169FF363E84BAA68A17746 /* RCTTouchHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5E528CCD14263B8B63AC2920919A10D8 /* RCTTouchHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = B90181D6D7F1F52B27BC8162173D9439 /* RCTTouchHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; 5E66755E582E9B2BF7DAEB72E960992B /* GDTCORUploader.h in Headers */ = {isa = PBXBuildFile; fileRef = 6549E342A6172E43AD498F2E37383650 /* GDTCORUploader.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5E8F6FB0B98806087C46839D3C543998 /* EXVideoManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 9BD20D74B498C6B21EF33BCFA9DE5CE6 /* EXVideoManager.m */; }; + 5E8F6FB0B98806087C46839D3C543998 /* EXVideoManager.m in Sources */ = {isa = PBXBuildFile; fileRef = AA58B73903B04758FC957E353ED68307 /* EXVideoManager.m */; }; 5EC68AC4CF4EA48990F8D1086394208B /* F14Mask.h in Headers */ = {isa = PBXBuildFile; fileRef = 0E6957E1C7331CD490BD9C6BCF481CCF /* F14Mask.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5EC928C391B58C15B771ACAE740EC237 /* RCTPerformanceLogger.m in Sources */ = {isa = PBXBuildFile; fileRef = 6EEDEBFB4855D5CF5E9F79FA46B476EE /* RCTPerformanceLogger.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 5EC928C391B58C15B771ACAE740EC237 /* RCTPerformanceLogger.m in Sources */ = {isa = PBXBuildFile; fileRef = B20E387478BB9BD681C496D963E6215E /* RCTPerformanceLogger.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; 5ED7D21591BE3434BAD27251B09FC2C4 /* ScheduledSingleObserver.h in Headers */ = {isa = PBXBuildFile; fileRef = 3BC736F5F5CDA57D61E6A6765CC3A096 /* ScheduledSingleObserver.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5EECE9B42ECC9A135050057735F6CBA8 /* RCTExceptionsManager.mm in Sources */ = {isa = PBXBuildFile; fileRef = 38722CCD059CF731E8EB87988132C588 /* RCTExceptionsManager.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + 5EECE9B42ECC9A135050057735F6CBA8 /* RCTExceptionsManager.mm in Sources */ = {isa = PBXBuildFile; fileRef = D688572FBCC28D9871946C75B648AD1E /* RCTExceptionsManager.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; 5EEE9C81EFF578DA8F518B1C0AB9CB32 /* StampedPtr.h in Headers */ = {isa = PBXBuildFile; fileRef = 2CF6864156391147F5F50F664D9034C2 /* StampedPtr.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5F1141A8A8EF712CB0E648CF0BC69DE0 /* RCTComponentEvent.m in Sources */ = {isa = PBXBuildFile; fileRef = 8E0942FED22AE1584C829F1A501050CF /* RCTComponentEvent.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 5F191C5FEB9571699CFED133F0E444D1 /* REACondNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 60F4E9F97C80863480B45DF23E84A182 /* REACondNode.m */; }; - 5F271955AD81D975BA6F2DF3602D266E /* RCTActionSheetManager.mm in Sources */ = {isa = PBXBuildFile; fileRef = FB2A411E2DA724FE82503325B509E909 /* RCTActionSheetManager.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + 5F1141A8A8EF712CB0E648CF0BC69DE0 /* RCTComponentEvent.m in Sources */ = {isa = PBXBuildFile; fileRef = A6C8B780938A28CFA1950CF71BC0D1CC /* RCTComponentEvent.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 5F191C5FEB9571699CFED133F0E444D1 /* REACondNode.m in Sources */ = {isa = PBXBuildFile; fileRef = F49FFE22DD8A2C906F3B99017B153065 /* REACondNode.m */; }; + 5F271955AD81D975BA6F2DF3602D266E /* RCTActionSheetManager.mm in Sources */ = {isa = PBXBuildFile; fileRef = 9B0CD9409BD7015ED66ADBCD54D55FCE /* RCTActionSheetManager.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; 5F2E203D0F81E6C57DAAE8CFAC56710B /* AsyncGeneratorShim.h in Headers */ = {isa = PBXBuildFile; fileRef = 18C0993205E2FC51861E4E74D88F0386 /* AsyncGeneratorShim.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5F3914305B352AA4A312EA53ACD0BA46 /* RNGestureHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 48B8C83706E6EB956E9B582DE0DE15E4 /* RNGestureHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5F437566DD928400BBB653E5DE88C7CF /* BSG_KSCrashC.c in Sources */ = {isa = PBXBuildFile; fileRef = A4759D49F3E3AD1BCB0976839DC8BCDC /* BSG_KSCrashC.c */; }; - 5F5E1E94C537FC91F2019EAAED46401C /* BSG_KSMach.c in Sources */ = {isa = PBXBuildFile; fileRef = EB0F2DE671E8965C79C9DB011693D95A /* BSG_KSMach.c */; }; - 5F73A1810FE06CEABFF159E5B86FEF71 /* UMReactNativeEventEmitter.h in Headers */ = {isa = PBXBuildFile; fileRef = 63135997CD66DF14CB6C3D08D2A6BE54 /* UMReactNativeEventEmitter.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5F3914305B352AA4A312EA53ACD0BA46 /* RNGestureHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 477B28B03343F5C67D5E1D1B4D06EBC1 /* RNGestureHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5F437566DD928400BBB653E5DE88C7CF /* BSG_KSCrashC.c in Sources */ = {isa = PBXBuildFile; fileRef = 3A237921D4094A3F7DB5E38517E535ED /* BSG_KSCrashC.c */; }; + 5F5E1E94C537FC91F2019EAAED46401C /* BSG_KSMach.c in Sources */ = {isa = PBXBuildFile; fileRef = 24BBBAA55A1CC02EE32B8B426C15516D /* BSG_KSMach.c */; }; + 5F73A1810FE06CEABFF159E5B86FEF71 /* UMReactNativeEventEmitter.h in Headers */ = {isa = PBXBuildFile; fileRef = 2E11A16FC5E4BF78B586932EF0D7DF75 /* UMReactNativeEventEmitter.h */; settings = {ATTRIBUTES = (Project, ); }; }; 5FDFDE7CCBFFAA68D99152D78C02ED39 /* AtomicUtil-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 886D771EBD66B9842FB466D235D11AFD /* AtomicUtil-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; 5FF1ABE162C13243EEB4010193EC6C22 /* Combine-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = DB07E785B2D2E4F11430656ABA77EE83 /* Combine-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; 6025F4909E87933FAA58496F91F79895 /* FIRCLSFABHost.m in Sources */ = {isa = PBXBuildFile; fileRef = 79CE051EE441FB1A53DB09B59DA174E3 /* FIRCLSFABHost.m */; }; - 60587C29BD6CD73367F2B20444A1B9BD /* RCTWebSocketModule.mm in Sources */ = {isa = PBXBuildFile; fileRef = 740061539EE834B167CDF66AECC11957 /* RCTWebSocketModule.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; - 6087E16A863FB0912075FC805BCCD1E3 /* RCTTextView.h in Headers */ = {isa = PBXBuildFile; fileRef = E311B9BC095F8526FABFC27783015FC1 /* RCTTextView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 60587C29BD6CD73367F2B20444A1B9BD /* RCTWebSocketModule.mm in Sources */ = {isa = PBXBuildFile; fileRef = EB881B5852C5A92C627D8404F4949D72 /* RCTWebSocketModule.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + 6087E16A863FB0912075FC805BCCD1E3 /* RCTTextView.h in Headers */ = {isa = PBXBuildFile; fileRef = CBDCAAEFF19248FF5247C5192EB10655 /* RCTTextView.h */; settings = {ATTRIBUTES = (Project, ); }; }; 60ACF469233CA22469EEC756ECDB055D /* LifoSemMPMCQueue.h in Headers */ = {isa = PBXBuildFile; fileRef = 51A15AC41CA6565459F389839B62A39A /* LifoSemMPMCQueue.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 60BA1556BE18AB1CCF03CCE1C3E4752B /* RCTShadowView+Internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 8CE53290CEDD217BE63998976F2DA19A /* RCTShadowView+Internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 60D19886AE1003521289EC8A46C59878 /* RCTWrapperViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = EFF6352CDA1D3A0EA06089C2462F06A7 /* RCTWrapperViewController.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 60BA1556BE18AB1CCF03CCE1C3E4752B /* RCTShadowView+Internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 2EC61611D7A38B4BDCDFDB8347C4F1E3 /* RCTShadowView+Internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 60D19886AE1003521289EC8A46C59878 /* RCTWrapperViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = 96254962E9F5AD16AD3798790DDCCED6 /* RCTWrapperViewController.h */; settings = {ATTRIBUTES = (Project, ); }; }; 60D5387F2D3F4D19D91912339054162E /* FIRCLSURLSessionTask.m in Sources */ = {isa = PBXBuildFile; fileRef = 2358E4C41369E72DA278AD42A8221CBD /* FIRCLSURLSessionTask.m */; }; 610145B3177894F2E4C147889AB8B007 /* CodedOutputData.h in Headers */ = {isa = PBXBuildFile; fileRef = 225455752F6E169BAB78BCDF65CCC8E3 /* CodedOutputData.h */; settings = {ATTRIBUTES = (Project, ); }; }; 6137BD4551FE76BF6016B5DDF2572CE7 /* pb_decode.c in Sources */ = {isa = PBXBuildFile; fileRef = 5084940063354722127AA25C453D6FF3 /* pb_decode.c */; settings = {COMPILER_FLAGS = "-fno-objc-arc -fno-objc-arc"; }; }; @@ -1430,102 +1423,102 @@ 617530231FB583E62F59AFF636820064 /* SanitizeLeak.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BB848245AEFFEBC478657CA8E907E9E5 /* SanitizeLeak.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; 6180AC7AB06E1D1D6E01944FA4CFE5C8 /* ExecutionObserver.h in Headers */ = {isa = PBXBuildFile; fileRef = 80594D1255F9F858C24487EA080220EB /* ExecutionObserver.h */; settings = {ATTRIBUTES = (Project, ); }; }; 61945E2D534282269C85FC62CD40BF23 /* Malloc.h in Headers */ = {isa = PBXBuildFile; fileRef = FCEFC073B804E1E31844C9345AAB122A /* Malloc.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 619D6F16CC305CC853D675CD34B313E7 /* QBAssetCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 079D29802D409D114AFD1A998A0365F7 /* QBAssetCell.m */; }; + 619D6F16CC305CC853D675CD34B313E7 /* QBAssetCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 5764F17A53D7D7950BCA737785F5D7BF /* QBAssetCell.m */; }; 62155DE9CF2AD9385BF11125981D1015 /* SDWebImageOperation.h in Headers */ = {isa = PBXBuildFile; fileRef = 64B2E21284F96DC922A617C4E62DA34C /* SDWebImageOperation.h */; settings = {ATTRIBUTES = (Project, ); }; }; 621D406A7D59BDA14F904CD4B069B21B /* Stdlib.h in Headers */ = {isa = PBXBuildFile; fileRef = 7CFC93A785C1844A857C11A4940DB17F /* Stdlib.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 623137AAC38C2C45CFFB6C912C7F2AD2 /* RCTTextShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = C042E6B28BC90C905A83E58EF3A2CFFB /* RCTTextShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 623137AAC38C2C45CFFB6C912C7F2AD2 /* RCTTextShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = A0B44E05599C2819FCABBFC5AD39381B /* RCTTextShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; 6238678941BD031252A3C85E53C82C8E /* Sched.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 986DBEC29D4033BC81B8504B155CDCC0 /* Sched.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - 624C06C6B3D3A0EA2CFE29E6912DBC5E /* RCTShadowView.m in Sources */ = {isa = PBXBuildFile; fileRef = 24DB158EC9EA65C84421AFC06D2F8CBA /* RCTShadowView.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 624C06C6B3D3A0EA2CFE29E6912DBC5E /* RCTShadowView.m in Sources */ = {isa = PBXBuildFile; fileRef = 14FC7C467B63A006869982C7C1DFC1FA /* RCTShadowView.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; 6250372D9758B2074CD9CC7B09ECDFA2 /* SKNamed.mm in Sources */ = {isa = PBXBuildFile; fileRef = 1E24704F1B43C47872C83FA3EF020D63 /* SKNamed.mm */; settings = {COMPILER_FLAGS = "-DDEBUG=1 -DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0"; }; }; 625FB1A1A50F531C209F5950D7FF8475 /* alphai_dec.h in Headers */ = {isa = PBXBuildFile; fileRef = 5DA94A4C46543CA8BF8CAB0E4C79E992 /* alphai_dec.h */; settings = {ATTRIBUTES = (Project, ); }; }; 628C6483159FDCF38407770F1ACE903B /* KeepaliveTimer.h in Headers */ = {isa = PBXBuildFile; fileRef = BE2C6A9AD5888A67928FE56FBABC1FF5 /* KeepaliveTimer.h */; settings = {ATTRIBUTES = (Project, ); }; }; 62E6546B51CBC0B58686EFCE779EE529 /* FIRCLSFile.h in Headers */ = {isa = PBXBuildFile; fileRef = 49DBC109B89F7D5A72A4000B12774106 /* FIRCLSFile.h */; settings = {ATTRIBUTES = (Project, ); }; }; 62F70755F26BB87C793E3F843FAE38A6 /* GULSceneDelegateSwizzler_Private.h in Headers */ = {isa = PBXBuildFile; fileRef = 2A8180D9D0600FBB6EFA7C626EDA808A /* GULSceneDelegateSwizzler_Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 637F6BC8B3934A6A04A8D049A65DAA3D /* RCTBaseTextInputView.h in Headers */ = {isa = PBXBuildFile; fileRef = B48DF8618EE0B203C4FE2E0B3AE50343 /* RCTBaseTextInputView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 63AE36C890CA39ABC44461BF2EA89A41 /* BSG_KSCrashSentry_User.h in Headers */ = {isa = PBXBuildFile; fileRef = BABC65ABA36238412CBD358F55B41EEA /* BSG_KSCrashSentry_User.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 637F6BC8B3934A6A04A8D049A65DAA3D /* RCTBaseTextInputView.h in Headers */ = {isa = PBXBuildFile; fileRef = 58ED3C3FE5BC1C02FF6ACDFA481C0A86 /* RCTBaseTextInputView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 63AE36C890CA39ABC44461BF2EA89A41 /* BSG_KSCrashSentry_User.h in Headers */ = {isa = PBXBuildFile; fileRef = 3C4961EE6893C92B8D556E78119823E7 /* BSG_KSCrashSentry_User.h */; settings = {ATTRIBUTES = (Project, ); }; }; 63CC635B37FED8C7DEF027CB5462EA7B /* bit_reader_inl_utils.h in Headers */ = {isa = PBXBuildFile; fileRef = 5CE5C5C34D7AC5559328A2A311322501 /* bit_reader_inl_utils.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 63E9727634DB78A12A37437EC21C883B /* RCTNativeModule.mm in Sources */ = {isa = PBXBuildFile; fileRef = B902D2AC66BDA9135C720123F2CBC7C4 /* RCTNativeModule.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 64230B6EB4811C5438C314C832B5E9BA /* RCTObjcExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = C742630069F512A418B5F71A72EC6EF2 /* RCTObjcExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 63E9727634DB78A12A37437EC21C883B /* RCTNativeModule.mm in Sources */ = {isa = PBXBuildFile; fileRef = 8CF926B54ADE16ADC9B5AFD9FD5CC51D /* RCTNativeModule.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 64230B6EB4811C5438C314C832B5E9BA /* RCTObjcExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = 1AB730AA47D1B6D33939F2F91C0C1735 /* RCTObjcExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; 64352F81329BEC21DFF10C000BE8640A /* SDWebImageDownloaderRequestModifier.m in Sources */ = {isa = PBXBuildFile; fileRef = 4E22E2AED665251378C43B45AE08032E /* SDWebImageDownloaderRequestModifier.m */; }; 644DDB8CB93BF7067201BB26F2D53D10 /* SerialExecutor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = C3C920B8349C2BC219537546757BC104 /* SerialExecutor.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; 6450E79F5C6AFB7273CB9D4497C68DB1 /* ResumeIdentificationToken.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 89429D1E9F98E5621C0D0917AF24680D /* ResumeIdentificationToken.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0 -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - 648C1EE6D41D617836426E185AC5AAED /* EXConstantsService.h in Headers */ = {isa = PBXBuildFile; fileRef = 1013CAE8755C03986C3D8333C92DA2BB /* EXConstantsService.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 648C1EE6D41D617836426E185AC5AAED /* EXConstantsService.h in Headers */ = {isa = PBXBuildFile; fileRef = 33923137DA40CC87E0CF534F2AC99F0E /* EXConstantsService.h */; settings = {ATTRIBUTES = (Project, ); }; }; 64A47FD4FAEB511C0AFB59A51F6D6A3C /* FIRCoreDiagnosticsConnector.h in Headers */ = {isa = PBXBuildFile; fileRef = DFBFBB790A83F6914808B3DA1CA67F5F /* FIRCoreDiagnosticsConnector.h */; settings = {ATTRIBUTES = (Project, ); }; }; 64A6867C7625EEA47C99B617872A539B /* pb_decode.h in Headers */ = {isa = PBXBuildFile; fileRef = E93FE57123F6C367D3B0B7B7B97D9975 /* pb_decode.h */; settings = {ATTRIBUTES = (Project, ); }; }; 64C08A1A299F65ACC045C824A64A0DCD /* Time.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 84BBD9EECFDDC532701B9676429F63AC /* Time.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - 64CE86C677FE58819125DF1CF00FD92D /* RNSScreenContainer.h in Headers */ = {isa = PBXBuildFile; fileRef = 4F27C91073AFBF5FA95E871D937BBD41 /* RNSScreenContainer.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 64CE86C677FE58819125DF1CF00FD92D /* RNSScreenContainer.h in Headers */ = {isa = PBXBuildFile; fileRef = E2B7B43AB4BF29EE9922384F722072EC /* RNSScreenContainer.h */; settings = {ATTRIBUTES = (Project, ); }; }; 64D7CA904E08C542214D6273B49A823C /* IStream.h in Headers */ = {isa = PBXBuildFile; fileRef = 4E39F7CE4B77FAE97B47107518D3F547 /* IStream.h */; settings = {ATTRIBUTES = (Project, ); }; }; 64E791612A7D27AE1C4409A981341CBE /* lossless_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = BFFEC177CB587C0C1E06AD0231CEBE1F /* lossless_enc.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; 64E83E53B7F40F2CC0A0CF7BC3C8A43C /* enc_mips32.c in Sources */ = {isa = PBXBuildFile; fileRef = 8B6C33FEA3B536CA832586E380533053 /* enc_mips32.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 64E9035391D61BFA55BD23B151AD07BB /* RNDateTimePickerManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 2F4AD124F81A8C5AE7F31882E70B16F0 /* RNDateTimePickerManager.m */; }; + 64E9035391D61BFA55BD23B151AD07BB /* RNDateTimePickerManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 9F4FF8DB7EA8496850F44B17A9CF6A3F /* RNDateTimePickerManager.m */; }; 6504940F5EB894DE69D5B2CF0FB49455 /* Rcu-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 42B1D14BA71FB1347DB1A28BE8DCBF6F /* Rcu-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; 6532B3DADCD47A8B33D8A6B7DD0F81CE /* UIColor+SKSonarValueCoder.mm in Sources */ = {isa = PBXBuildFile; fileRef = 90D9525835B6AB395CDB85717D5A9F14 /* UIColor+SKSonarValueCoder.mm */; settings = {COMPILER_FLAGS = "-DDEBUG=1 -DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0"; }; }; - 6545B20097DEF5E9AD8FCE3384FD824E /* RCTFPSGraph.m in Sources */ = {isa = PBXBuildFile; fileRef = 527B6226DF8E360CB7C26327EF6A624C /* RCTFPSGraph.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + 6545B20097DEF5E9AD8FCE3384FD824E /* RCTFPSGraph.m in Sources */ = {isa = PBXBuildFile; fileRef = 0A8BD8715F66E697FEAC7397BE88D4A3 /* RCTFPSGraph.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; 656610BEFEC50D7F52DD373712B20471 /* SKInvalidation.m in Sources */ = {isa = PBXBuildFile; fileRef = 8674700211CCFA5D9360B3DCC5C57A60 /* SKInvalidation.m */; settings = {COMPILER_FLAGS = "-DDEBUG=1 -DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0"; }; }; 657C87230A2934AED9C6AD06591F370A /* PublishProcessor.h in Headers */ = {isa = PBXBuildFile; fileRef = 4ED0B1D843E6B1401918FC160A37D0BB /* PublishProcessor.h */; settings = {ATTRIBUTES = (Project, ); }; }; 6584F1A61DBB0A4BB4BD9EA418FB70E6 /* quant_levels_dec_utils.c in Sources */ = {isa = PBXBuildFile; fileRef = E9E7A3764B17C578D2896BFF1CAB3819 /* quant_levels_dec_utils.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; 658502896B3142F7FB3347E9BFADC949 /* FIRCLSdSYM.m in Sources */ = {isa = PBXBuildFile; fileRef = E07970FD2F62E7A4DE75E5F6F791E13E /* FIRCLSdSYM.m */; }; 65897EE734635A15B379D13013361F76 /* FIRCLSReportAdapter.h in Headers */ = {isa = PBXBuildFile; fileRef = CB51CD73695A6728205C7FD008D4C1C4 /* FIRCLSReportAdapter.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 65947EDB925EAB966F2F13AD243FAA21 /* jsilib.h in Headers */ = {isa = PBXBuildFile; fileRef = C8FB6C9B838BD0820162FE3B20F095D3 /* jsilib.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 65947EDB925EAB966F2F13AD243FAA21 /* jsilib.h in Headers */ = {isa = PBXBuildFile; fileRef = BFE645D9C3B4B492BADF8AC7DD090BEC /* jsilib.h */; settings = {ATTRIBUTES = (Project, ); }; }; 659F452F3A5CE58E34234230015B42B7 /* FIROptionsInternal.h in Headers */ = {isa = PBXBuildFile; fileRef = DE7DF1EF7AC5FF2323FCE17BCD757D5C /* FIROptionsInternal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 65B8AF8EAA5C5F64FFCF982355A5BD69 /* BSG_KSCrashReportFilterCompletion.h in Headers */ = {isa = PBXBuildFile; fileRef = 072DE48FF7AFCF659B873ABA2A201904 /* BSG_KSCrashReportFilterCompletion.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 65B8AF8EAA5C5F64FFCF982355A5BD69 /* BSG_KSCrashReportFilterCompletion.h in Headers */ = {isa = PBXBuildFile; fileRef = 2B8F49EBED007C3C57746CBB11AD0027 /* BSG_KSCrashReportFilterCompletion.h */; settings = {ATTRIBUTES = (Project, ); }; }; 65C84548F46F6041AF38A86A11C6DBF7 /* FIRComponent.h in Headers */ = {isa = PBXBuildFile; fileRef = DDC2DC3D0FB74A016AA36240BFF6D984 /* FIRComponent.h */; settings = {ATTRIBUTES = (Project, ); }; }; 65CA61934FB03CF180290DE31AF56EF4 /* enc_neon.c in Sources */ = {isa = PBXBuildFile; fileRef = 0212AD1BA59EBDB927F3B3CE574A2FB0 /* enc_neon.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; 65CB92D29B76DFDEC572A3AAE0564298 /* encode.h in Headers */ = {isa = PBXBuildFile; fileRef = 2636254F42F58F2C1C77ABFB08F3DCBD /* encode.h */; settings = {ATTRIBUTES = (Project, ); }; }; 65E65D50285248E32BCA727175A9037B /* Bits.h in Headers */ = {isa = PBXBuildFile; fileRef = 6E8B8D3EE9FEF770EA3E9B53FCA5A4B4 /* Bits.h */; settings = {ATTRIBUTES = (Project, ); }; }; 65EC48B796CD30DB09C4EAAFE113C2AC /* ConcurrentSkipList.h in Headers */ = {isa = PBXBuildFile; fileRef = A34D911B5024A8FAE46EDF359A0B735A /* ConcurrentSkipList.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 65F20C115C7320F488D580742E04DC93 /* RNCSafeAreaView.m in Sources */ = {isa = PBXBuildFile; fileRef = 4893A3AABA60A4D947B9185E9D78C41F /* RNCSafeAreaView.m */; }; + 65F20C115C7320F488D580742E04DC93 /* RNCSafeAreaView.m in Sources */ = {isa = PBXBuildFile; fileRef = 06EEC01857B5F8830F5EDF081D9558C9 /* RNCSafeAreaView.m */; }; 65FED0532D4CBEAD6563E7214A54768B /* SKTouch.h in Headers */ = {isa = PBXBuildFile; fileRef = 208B4E659AB8A1C35128F4A68ED6CB67 /* SKTouch.h */; settings = {ATTRIBUTES = (Project, ); }; }; 6601F8ECA432C1F44DB564CC6B487FAA /* FIRCLSFCRAnalytics.m in Sources */ = {isa = PBXBuildFile; fileRef = 565351C7D9EC3CA46AEF022A4814280E /* FIRCLSFCRAnalytics.m */; }; - 661713EFAFBAC419B16D092885AD3C1B /* RCTUITextView.h in Headers */ = {isa = PBXBuildFile; fileRef = A7801F30220C1D16F961685B7CF20131 /* RCTUITextView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6624D02FE05A6F7B8D2A7886FC3460DF /* RCTVirtualTextShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = D9EF36754BD7817A120BED4E5A46D0FE /* RCTVirtualTextShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 663337925169CB5C493A0FE71172B792 /* EXAppleAuthenticationMappings.h in Headers */ = {isa = PBXBuildFile; fileRef = 8256EFD63BE8A803AAC60B603C88D783 /* EXAppleAuthenticationMappings.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 661713EFAFBAC419B16D092885AD3C1B /* RCTUITextView.h in Headers */ = {isa = PBXBuildFile; fileRef = 99187B5EAF9E7564364CA44D29DDCFBA /* RCTUITextView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6624D02FE05A6F7B8D2A7886FC3460DF /* RCTVirtualTextShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = 1E45F82FEADDDB60B0FB36E6274AD585 /* RCTVirtualTextShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 663337925169CB5C493A0FE71172B792 /* EXAppleAuthenticationMappings.h in Headers */ = {isa = PBXBuildFile; fileRef = 6A250FCA3C17EEDDE48B8D03D8831ACC /* EXAppleAuthenticationMappings.h */; settings = {ATTRIBUTES = (Project, ); }; }; 66487582A75CE11A1FD7B6C7A656D085 /* FBLPromise+All.m in Sources */ = {isa = PBXBuildFile; fileRef = 50FC14BC25E0E93C7E481559276BB9A3 /* FBLPromise+All.m */; }; 6656A3BDBB5732C65FA4EFE23ED34161 /* SDWebImageDownloader.h in Headers */ = {isa = PBXBuildFile; fileRef = 09899EEE1275EB46A839E7472C1D1858 /* SDWebImageDownloader.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6663A20187C10220F1D973508CC51999 /* RCTTiming.h in Headers */ = {isa = PBXBuildFile; fileRef = 0CC9FF6D49C90B0AE45C0E6B55E83EB5 /* RCTTiming.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6663A20187C10220F1D973508CC51999 /* RCTTiming.h in Headers */ = {isa = PBXBuildFile; fileRef = 6D7FF2802D7D5B8BDC6FB150E8888529 /* RCTTiming.h */; settings = {ATTRIBUTES = (Project, ); }; }; 6664EF6453923DE49024DB69641F8109 /* FrameProcessor.h in Headers */ = {isa = PBXBuildFile; fileRef = 8B7E13AFDC5D2CC40492D4340BA0640C /* FrameProcessor.h */; settings = {ATTRIBUTES = (Project, ); }; }; 6670510400FED26761289A853091329C /* FIRCLSReport.m in Sources */ = {isa = PBXBuildFile; fileRef = 2432C8A76487AC835CB14BF897ECF870 /* FIRCLSReport.m */; }; 667B308A0F3FA4A44299B32AE6117AB1 /* FBLPromise+Await.m in Sources */ = {isa = PBXBuildFile; fileRef = 382B7ED7CC50FCC22787DB5FEAE68964 /* FBLPromise+Await.m */; }; 66811E431F72A69005364E0433281D70 /* yuv.h in Headers */ = {isa = PBXBuildFile; fileRef = 4F806D732ECB4440DCAC96A045EE05C2 /* yuv.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6689E98B42000B3970B6A243C415AF2E /* event.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 7BBD17E2257061C54306749D6F782A0A /* event.cpp */; settings = {COMPILER_FLAGS = "-fno-omit-frame-pointer -fexceptions -Wall -Werror -std=c++1y -fPIC -fno-objc-arc"; }; }; + 6689E98B42000B3970B6A243C415AF2E /* event.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1317BAA69CB885635DCB474C181AE897 /* event.cpp */; settings = {COMPILER_FLAGS = "-fno-omit-frame-pointer -fexceptions -Wall -Werror -std=c++1y -fPIC -fno-objc-arc"; }; }; 66A03981890D9863F11B9D8D04A07AA2 /* dynamic-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 40A2A9441C2073C5C62DF14189442683 /* dynamic-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; 66A7B1236BD884E2137D3FCF330437FF /* FIRCLSSymbolicationOperation.h in Headers */ = {isa = PBXBuildFile; fileRef = 32A30B52E9C591000F8E2A982098C433 /* FIRCLSSymbolicationOperation.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 66B98DD6D34999ECEB6C1AF1789BA97B /* RCTAnimationPlugins.mm in Sources */ = {isa = PBXBuildFile; fileRef = CFC2265CC09C3B6EAD9CA1393EA1BC34 /* RCTAnimationPlugins.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; - 66C5C3110649460A466AD2F6AFAA171C /* UMReactFontManager.h in Headers */ = {isa = PBXBuildFile; fileRef = D44A18A4E576294EB7F62F8ACC296DC5 /* UMReactFontManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 66D0421E4DDA33160130778834F66E37 /* RNLocalize-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 4C8C11AD6FA6470DC663D9FAE13E49A5 /* RNLocalize-dummy.m */; }; + 66B98DD6D34999ECEB6C1AF1789BA97B /* RCTAnimationPlugins.mm in Sources */ = {isa = PBXBuildFile; fileRef = 4C21257485BC2D51DCD260B4DC14D4AA /* RCTAnimationPlugins.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + 66C5C3110649460A466AD2F6AFAA171C /* UMReactFontManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 0E17EFBA0C00CC4DF880CC3D1D3E8219 /* UMReactFontManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 66D0421E4DDA33160130778834F66E37 /* RNLocalize-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = C0AEFA31C203D0F1AB46900DAB4B9D35 /* RNLocalize-dummy.m */; }; 66D68DE034EEBE7CBE544040113C322D /* FIRInstallationsItem.m in Sources */ = {isa = PBXBuildFile; fileRef = 36532AC1B65DC9D399C97E41F28ACC54 /* FIRInstallationsItem.m */; }; - 66D6E62D450BACF145A456166BB45C2B /* RNDeviceInfo.h in Headers */ = {isa = PBXBuildFile; fileRef = AB55D429AE13E611F56C6BE24545AD8C /* RNDeviceInfo.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 66D6E62D450BACF145A456166BB45C2B /* RNDeviceInfo.h in Headers */ = {isa = PBXBuildFile; fileRef = 43084D396086F8741F536FD67182EEFF /* RNDeviceInfo.h */; settings = {ATTRIBUTES = (Project, ); }; }; 66E9F62F5E30226E2AE4FCD8FF6EBB90 /* demangle.cc in Sources */ = {isa = PBXBuildFile; fileRef = A9B22405078EB22D6B97880B7D72BA94 /* demangle.cc */; settings = {COMPILER_FLAGS = "-Wno-shorten-64-to-32"; }; }; 66EEB6F1DF23F5A10B2562852F58D32B /* SDImageCoderHelper.h in Headers */ = {isa = PBXBuildFile; fileRef = 748EA3EB396179ED935CE176587C6920 /* SDImageCoderHelper.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 67137343E113471C77836010D7BD4343 /* RCTActivityIndicatorViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 9B5AE0DD6A87483AEAA0CE242842D5D8 /* RCTActivityIndicatorViewManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 67137343E113471C77836010D7BD4343 /* RCTActivityIndicatorViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 8C61C84C3C5766BD74DDD64285BBF9A0 /* RCTActivityIndicatorViewManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; 671CCCC4FA52C454C17316202BD0F386 /* Barrier.h in Headers */ = {isa = PBXBuildFile; fileRef = 7965D381856406721521103DA1BDCF90 /* Barrier.h */; settings = {ATTRIBUTES = (Project, ); }; }; 67213F11F20DF2020A3F928D6B627E80 /* SDImageAssetManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 3F4107EB691C1753CB2A9F8D56920179 /* SDImageAssetManager.m */; }; - 6721C1BFBE27DFCEFDBE5D11731C7E17 /* TurboModule.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 92C6D968F1F420CEE7A114F9CBD45464 /* TurboModule.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 67224EF36217D2D136E0DC06A97582A0 /* RCTManagedPointer.mm in Sources */ = {isa = PBXBuildFile; fileRef = 1245B0690D02632BE78785FF84AA32E6 /* RCTManagedPointer.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 6721C1BFBE27DFCEFDBE5D11731C7E17 /* TurboModule.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 01416F5AC4744A28E93F13269C8866B7 /* TurboModule.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 67224EF36217D2D136E0DC06A97582A0 /* RCTManagedPointer.mm in Sources */ = {isa = PBXBuildFile; fileRef = 72D66E801D034FB15E25A0B811EB00A3 /* RCTManagedPointer.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; 67304F639591EAB43001263B341483A1 /* rescaler_mips_dsp_r2.c in Sources */ = {isa = PBXBuildFile; fileRef = 4F46D2C4EA18AD659465E7C64770227C /* rescaler_mips_dsp_r2.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; 673967B0EE7ECC4BCDC0A751DC0A828F /* FiberIOExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = DA676AC0927133C023DB4D3C555A52F7 /* FiberIOExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 673BB15EBF0B152DD8D3B4CC04E13201 /* LNAnimator.h in Headers */ = {isa = PBXBuildFile; fileRef = B8FE5FD3EA2019EA36AE625A30E86DE9 /* LNAnimator.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 673BB15EBF0B152DD8D3B4CC04E13201 /* LNAnimator.h in Headers */ = {isa = PBXBuildFile; fileRef = E56180BC80948109BDE83BFBBC78EE4E /* LNAnimator.h */; settings = {ATTRIBUTES = (Project, ); }; }; 6757FE0A1CC1ADCC38E0BBDF5BE3C2A8 /* TimedDrivableExecutor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3EB61D181C72318042B364540B702319 /* TimedDrivableExecutor.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; 675BA275D6D0834300AD7B9C224124CF /* CheckedMath.h in Headers */ = {isa = PBXBuildFile; fileRef = 2D6FBE67EA6C7D82BF4E3C55391CC500 /* CheckedMath.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 67679FD66E5E1E1F6427743215A9BFDA /* EXAV.h in Headers */ = {isa = PBXBuildFile; fileRef = 60A084BF2656161A40E5992795CAEC30 /* EXAV.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 67679FD66E5E1E1F6427743215A9BFDA /* EXAV.h in Headers */ = {isa = PBXBuildFile; fileRef = BF4C678D0788358690A8807B760E3466 /* EXAV.h */; settings = {ATTRIBUTES = (Project, ); }; }; 67796847D14ADAAC5018A99AAADA7AED /* GULMutableDictionary.m in Sources */ = {isa = PBXBuildFile; fileRef = AEB612B0E9982AF890DAD9C6D1AE7055 /* GULMutableDictionary.m */; }; 677978C384BC8E68F54A53338361E3C2 /* PThread.h in Headers */ = {isa = PBXBuildFile; fileRef = DD515B839535C35E78D1654A5B757219 /* PThread.h */; settings = {ATTRIBUTES = (Project, ); }; }; 679174798499AA4B6CF32E2F96B10D4A /* TOCroppedImageAttributes.m in Sources */ = {isa = PBXBuildFile; fileRef = 1E526059DE298C4026C050A54B2D6EA6 /* TOCroppedImageAttributes.m */; }; - 67B799D2BC64CB88BF458ACE41D158AC /* RCTModalHostViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 91D44CABDC0D8AD4BC46D00AE2FF9304 /* RCTModalHostViewController.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 67BDDCE0EF521A4394DD403549BC2986 /* EXImageLoader.m in Sources */ = {isa = PBXBuildFile; fileRef = 9FBB73BC0A70066DE7B0D55ED7C7E6E2 /* EXImageLoader.m */; }; - 67D72A3415273F0FF9293B887C3800A7 /* BugsnagUser.m in Sources */ = {isa = PBXBuildFile; fileRef = 0284DE4C19F2509FDD20EF26DEB7B970 /* BugsnagUser.m */; }; + 67B799D2BC64CB88BF458ACE41D158AC /* RCTModalHostViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = C0361DFADB5DCE4EB198AA112B9ACD6E /* RCTModalHostViewController.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 67BDDCE0EF521A4394DD403549BC2986 /* EXImageLoader.m in Sources */ = {isa = PBXBuildFile; fileRef = EBA71C5BEDB01DA239AC0B9A51B32A69 /* EXImageLoader.m */; }; + 67D72A3415273F0FF9293B887C3800A7 /* BugsnagUser.m in Sources */ = {isa = PBXBuildFile; fileRef = 3245A244A5A861415340CD0618037C91 /* BugsnagUser.m */; }; 67F1415FB3DD965C1871B2A2CB74C8FC /* GlobalThreadPoolList.h in Headers */ = {isa = PBXBuildFile; fileRef = E08F1CE1FFE3CCBAD65DC329839FFEC5 /* GlobalThreadPoolList.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 680AF7794C63744B5DB08E3B8C06556B /* RCTBaseTextViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = E17E4005B34544F5D2486E45C83B7484 /* RCTBaseTextViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 680AF7794C63744B5DB08E3B8C06556B /* RCTBaseTextViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = FFB82057B966842FA5FEEEB38804C72E /* RCTBaseTextViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; 68169597FBE0AB5B54FC67E15019A84C /* SKObjectHash.h in Headers */ = {isa = PBXBuildFile; fileRef = 524155739FC18AF285E601C5421DF51D /* SKObjectHash.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 68305A7D8906C121D6E084CF228B4598 /* UMModuleRegistryAdapter.h in Headers */ = {isa = PBXBuildFile; fileRef = 28FCEF2162CFCC3718107CF2DB058AEC /* UMModuleRegistryAdapter.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 683FDCCD2C3A7E3B2CB4CF9190CEDA43 /* RCTAsyncLocalStorage.mm in Sources */ = {isa = PBXBuildFile; fileRef = C212237AE50E3A0C89947E97F05D86EB /* RCTAsyncLocalStorage.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + 68305A7D8906C121D6E084CF228B4598 /* UMModuleRegistryAdapter.h in Headers */ = {isa = PBXBuildFile; fileRef = D1688DEEC817ADA5B045B0A1C150408A /* UMModuleRegistryAdapter.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 683FDCCD2C3A7E3B2CB4CF9190CEDA43 /* RCTAsyncLocalStorage.mm in Sources */ = {isa = PBXBuildFile; fileRef = BB7EB853165E8E006751FE1B7E183C1B /* RCTAsyncLocalStorage.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; 6843B2F1D94E9E148304314D61C1717E /* SDWebImageDownloaderDecryptor.h in Headers */ = {isa = PBXBuildFile; fileRef = 4DED4D23B0669071B283468905049422 /* SDWebImageDownloaderDecryptor.h */; settings = {ATTRIBUTES = (Project, ); }; }; 684AE69A17E2DD66B5DA5411EF613B6B /* SDImageGraphics.h in Headers */ = {isa = PBXBuildFile; fileRef = 14D6573E2B8E215491914EED243DF4F1 /* SDImageGraphics.h */; settings = {ATTRIBUTES = (Project, ); }; }; 6871111D26354F50F583D2187D9397E6 /* Libgen.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 107158AEDA420D7D0BB0D17FA8A6EA0F /* Libgen.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - 688FA3D713B354BBB54CD152A7B7BF54 /* EXAppleAuthenticationButton.m in Sources */ = {isa = PBXBuildFile; fileRef = EDC8F3A9C104EA2BC38D5A3BEFB5AF3C /* EXAppleAuthenticationButton.m */; }; + 688FA3D713B354BBB54CD152A7B7BF54 /* EXAppleAuthenticationButton.m in Sources */ = {isa = PBXBuildFile; fileRef = 8FBB9920B3E73D1D0B0A17C7569C0394 /* EXAppleAuthenticationButton.m */; }; 689CA5357FD9275EE7FC85FBC8F66370 /* GMock.h in Headers */ = {isa = PBXBuildFile; fileRef = 802E746E88582C5B35531B625684F6A6 /* GMock.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 68A75E9D1078739344B33B3737E61D48 /* ReactNativeShareExtension.h in Headers */ = {isa = PBXBuildFile; fileRef = 18ECC5D3A0E19C8299925BE0DA146E03 /* ReactNativeShareExtension.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 68C7196D1EE46E00BBE92E8A229915CE /* REAAlwaysNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 8C2C2F77A371FE25D6BFC654A2C41283 /* REAAlwaysNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 68A75E9D1078739344B33B3737E61D48 /* ReactNativeShareExtension.h in Headers */ = {isa = PBXBuildFile; fileRef = BE4A35A4A61BFE93309256BD7659483C /* ReactNativeShareExtension.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 68C7196D1EE46E00BBE92E8A229915CE /* REAAlwaysNode.h in Headers */ = {isa = PBXBuildFile; fileRef = FE44C04F1ACFD7D5E1B381AA6113E68F /* REAAlwaysNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; 68E14DF5295CA73DF30819A5D35C0D12 /* NetOps.h in Headers */ = {isa = PBXBuildFile; fileRef = 3883532CCFB6AAFFAD2F38BCA6B4A0F9 /* NetOps.h */; settings = {ATTRIBUTES = (Project, ); }; }; 68E1B5B1DA60FB2372F23D4AC3860379 /* FIRInstallationsAuthTokenResult.m in Sources */ = {isa = PBXBuildFile; fileRef = C60144FAACE184644DB01694A8C6D554 /* FIRInstallationsAuthTokenResult.m */; }; 68E9E3FC76B87B92040D480C1B5E7DBE /* pb.h in Headers */ = {isa = PBXBuildFile; fileRef = 5BCBA3305D0C7ACCE77288EE92A0701B /* pb.h */; settings = {ATTRIBUTES = (Project, ); }; }; @@ -1533,81 +1526,81 @@ 6901050EF0902C7A013436C58A9B248F /* SysFile.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B0C1CDDA67C37CFA92D06224CD0FAA4F /* SysFile.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; 691C9AB32E9EE3DD7662DD77BD9EF84A /* FIRBundleUtil.m in Sources */ = {isa = PBXBuildFile; fileRef = 012B713C1CA9852F2D7F841FA563F477 /* FIRBundleUtil.m */; }; 69263344AC2EEDC6526EEE47861A35BE /* FlipperCppBridgingResponder.h in Headers */ = {isa = PBXBuildFile; fileRef = AC23A228A9360E31082397AC2793BDBC /* FlipperCppBridgingResponder.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6938ADC737C2BD7B4F258F5C7B259B73 /* RNCookieManagerIOS.h in Headers */ = {isa = PBXBuildFile; fileRef = BA7D0472C62DF8CCD5CF1C9925C83DC4 /* RNCookieManagerIOS.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 69760094F684ECE0009B0F8A56D3F707 /* instrumentation.h in Headers */ = {isa = PBXBuildFile; fileRef = C22B27DF11B24D994A2D5D315674E58E /* instrumentation.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 69994360287516A15A99383986556D09 /* RCTEventAnimation.h in Headers */ = {isa = PBXBuildFile; fileRef = 498405A338574FB0C01830D63D402ACD /* RCTEventAnimation.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6938ADC737C2BD7B4F258F5C7B259B73 /* RNCookieManagerIOS.h in Headers */ = {isa = PBXBuildFile; fileRef = A0CE93BFF6227FCEB68103B8AD513393 /* RNCookieManagerIOS.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 69760094F684ECE0009B0F8A56D3F707 /* instrumentation.h in Headers */ = {isa = PBXBuildFile; fileRef = 4C914DF697DC9BB70A9CDBD1157CFCEB /* instrumentation.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 69994360287516A15A99383986556D09 /* RCTEventAnimation.h in Headers */ = {isa = PBXBuildFile; fileRef = A80D05139C7D3E7FF9152DD4490C3E90 /* RCTEventAnimation.h */; settings = {ATTRIBUTES = (Project, ); }; }; 69B7BCD3BEC75A78828B2A3ADC986885 /* FIRCLSReportUploader.h in Headers */ = {isa = PBXBuildFile; fileRef = 03E69871B5382F5B39FB85A896684FC1 /* FIRCLSReportUploader.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 69B7C3CCE03DDC6982103FEB6057B892 /* RCTTypedModuleConstants.mm in Sources */ = {isa = PBXBuildFile; fileRef = 8E67975B58D2B1A70A0463A70D9C98E2 /* RCTTypedModuleConstants.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32"; }; }; - 69E25D6FD06B04AF228C16CFF0508F23 /* RCTErrorInfo.m in Sources */ = {isa = PBXBuildFile; fileRef = 6B725ECAF6D8FB959331B3FDFC226549 /* RCTErrorInfo.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 69B7C3CCE03DDC6982103FEB6057B892 /* RCTTypedModuleConstants.mm in Sources */ = {isa = PBXBuildFile; fileRef = 05B047251FF7E78077FD10153B9D1534 /* RCTTypedModuleConstants.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32"; }; }; + 69E25D6FD06B04AF228C16CFF0508F23 /* RCTErrorInfo.m in Sources */ = {isa = PBXBuildFile; fileRef = 352A9DF0D33189F7B359EABBD63C3260 /* RCTErrorInfo.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; 69E5F7365CB3D10FF7898098C3146A99 /* F14Table.h in Headers */ = {isa = PBXBuildFile; fileRef = 6F43241BC00005D58AABA0BD122B8BAB /* F14Table.h */; settings = {ATTRIBUTES = (Project, ); }; }; 69FEE4B83120F441AB20A039513A796E /* ExceptionWrapper.h in Headers */ = {isa = PBXBuildFile; fileRef = F1D7932FDBDC43C3BBDF0364EE33D4D9 /* ExceptionWrapper.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6A03046C71CF85B2E59E2FBEFA35C326 /* RNCSliderManager.h in Headers */ = {isa = PBXBuildFile; fileRef = D64FB73E45B1EE3AA5F2B637D97FA5DF /* RNCSliderManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6A240E30555387062E38FA611252B7F2 /* BSG_KSBacktrace.h in Headers */ = {isa = PBXBuildFile; fileRef = AC2F04C929909685699118877A84D9BA /* BSG_KSBacktrace.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6A03046C71CF85B2E59E2FBEFA35C326 /* RNCSliderManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 8FEA09CC7B4D4195993E82D320ECE105 /* RNCSliderManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6A240E30555387062E38FA611252B7F2 /* BSG_KSBacktrace.h in Headers */ = {isa = PBXBuildFile; fileRef = D7DA89B3536F1DC491C0BE1719985DD4 /* BSG_KSBacktrace.h */; settings = {ATTRIBUTES = (Project, ); }; }; 6A375F4B1D46A2F4ACE114AA6BE4BADD /* FIRBundleUtil.h in Headers */ = {isa = PBXBuildFile; fileRef = A625D5B1A00836A8D8D0E7AD63B34B02 /* FIRBundleUtil.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6A376732B9C6DAA6E3C6C979B7E5ED99 /* CxxNativeModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 38CE52EF9655323D0BB6B719D3109487 /* CxxNativeModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6A4659372E0955240D4258A02D838B3A /* RCTSurfaceRootShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = 6BE2492912B242220358351675894420 /* RCTSurfaceRootShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6A4FE90A1CC535DAA809C5525490B85E /* QBImagePickerController.h in Headers */ = {isa = PBXBuildFile; fileRef = F37A19F4AEAF4D02ACEA6DCD9C01225B /* QBImagePickerController.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6A376732B9C6DAA6E3C6C979B7E5ED99 /* CxxNativeModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 2BCB019D2283916B6DE5028E48214C59 /* CxxNativeModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6A4659372E0955240D4258A02D838B3A /* RCTSurfaceRootShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = 30D04107196DB48732830DC1309046AC /* RCTSurfaceRootShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6A4FE90A1CC535DAA809C5525490B85E /* QBImagePickerController.h in Headers */ = {isa = PBXBuildFile; fileRef = FF03C6ABAC905D7EB2232B9074A00E2A /* QBImagePickerController.h */; settings = {ATTRIBUTES = (Project, ); }; }; 6A7BB4319F8D74B5D1D1C1D8FEA3C588 /* Unicode.h in Headers */ = {isa = PBXBuildFile; fileRef = 58BFCA34CE520AE47C12AB8FE5E89E18 /* Unicode.h */; settings = {ATTRIBUTES = (Project, ); }; }; 6ABEAD7FC928CF7779E132A291D0B0D2 /* vp8li_enc.h in Headers */ = {isa = PBXBuildFile; fileRef = 48E2D5BDDC08A1611AE371598671BB5B /* vp8li_enc.h */; settings = {ATTRIBUTES = (Project, ); }; }; 6AC70626901D88616D1FAD15D39EDEDB /* DistributedMutex.h in Headers */ = {isa = PBXBuildFile; fileRef = EE72FB60DD5C608CE489AB1E2981C371 /* DistributedMutex.h */; settings = {ATTRIBUTES = (Project, ); }; }; 6AC9857D5FAB49484D467CE13309EF44 /* SKDescriptorMapper.h in Headers */ = {isa = PBXBuildFile; fileRef = F34A4650F7A1ED079B718C89BFA1545E /* SKDescriptorMapper.h */; settings = {ATTRIBUTES = (Project, ); }; }; 6AF606892AF0C31C6F0EADDA8900C803 /* FKUserDefaultsSwizzleUtility.h in Headers */ = {isa = PBXBuildFile; fileRef = FD1254373F44E1E4D0387E98B7DEF301 /* FKUserDefaultsSwizzleUtility.h */; settings = {ATTRIBUTES = (Project, ); }; }; 6B04D0AE9A03FE30B97B1BCF723F1460 /* FIRDiagnosticsData.m in Sources */ = {isa = PBXBuildFile; fileRef = 86A7F03AEC29DAF692493D9250BD5F37 /* FIRDiagnosticsData.m */; }; - 6B257CAC5E2C34DDAF304C790E898733 /* REATransitionAnimation.h in Headers */ = {isa = PBXBuildFile; fileRef = A5BCAC28276FE8611A4D72C73867CAE8 /* REATransitionAnimation.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6B257CAC5E2C34DDAF304C790E898733 /* REATransitionAnimation.h in Headers */ = {isa = PBXBuildFile; fileRef = EA49353E51A7C1DC5E3520B1CDA24184 /* REATransitionAnimation.h */; settings = {ATTRIBUTES = (Project, ); }; }; 6B2C45537C87B11EF65E69E9F333F4F4 /* SDImageGIFCoder.m in Sources */ = {isa = PBXBuildFile; fileRef = 05AFD5AC20FA42C696EE0AD06F4E7ED8 /* SDImageGIFCoder.m */; }; 6B47BC2235EBB1C34AFB7B781FE49E75 /* openssl_md5_dgst.cpp in Sources */ = {isa = PBXBuildFile; fileRef = ED252E21FF7397ABC96B5EF8F34C8E9E /* openssl_md5_dgst.cpp */; settings = {COMPILER_FLAGS = "-x objective-c++ -fno-objc-arc"; }; }; - 6B50F5785E60964CDB8D76C2645010DA /* RCTSafeAreaViewLocalData.m in Sources */ = {isa = PBXBuildFile; fileRef = D8EA47813EDC15DDA8E1327359C5BDCA /* RCTSafeAreaViewLocalData.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 6B50F5785E60964CDB8D76C2645010DA /* RCTSafeAreaViewLocalData.m in Sources */ = {isa = PBXBuildFile; fileRef = D7687BF0A6EF86947E3471A3AEA8EEA6 /* RCTSafeAreaViewLocalData.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; 6B67B6200914575EE45FB7C1F2A18716 /* Flowables.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 4232D2FD77BA802AFEEAB02E4A2EA05C /* Flowables.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0 -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; 6B6C5353B590B5F7407E42D993C98BCD /* Observer.h in Headers */ = {isa = PBXBuildFile; fileRef = 6931A5E79688F5E3798C562A3BD97709 /* Observer.h */; settings = {ATTRIBUTES = (Project, ); }; }; 6B99A522B85248A477007A2F54CEBA1E /* NSBezierPath+SDRoundedCorners.m in Sources */ = {isa = PBXBuildFile; fileRef = B4348DCBD70BF95ED2AEB6DDBF395C16 /* NSBezierPath+SDRoundedCorners.m */; }; 6BB0A0E40EDC7AB4948869DCFB90D4E2 /* muxi.h in Headers */ = {isa = PBXBuildFile; fileRef = A59EB6859E98F06D6B27ACDA256F18BE /* muxi.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6BBAD5243540B4740CD2AE213482E90F /* TurboCxxModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 119AA163EE5A0DE3389EA0D439315F22 /* TurboCxxModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6BDA3AF51312726F2691B385C132F499 /* RCTSurfacePresenterStub.m in Sources */ = {isa = PBXBuildFile; fileRef = D8F617B0528537D8E1FFA0D2DB175A48 /* RCTSurfacePresenterStub.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 6BBAD5243540B4740CD2AE213482E90F /* TurboCxxModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 8BC9D5666DBDE5812E982739274F6669 /* TurboCxxModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6BDA3AF51312726F2691B385C132F499 /* RCTSurfacePresenterStub.m in Sources */ = {isa = PBXBuildFile; fileRef = C6BF0EF5DC01D06AC957994EC8912825 /* RCTSurfacePresenterStub.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; 6BF37FE9E8ABB36E08295C0B612C29B0 /* String.h in Headers */ = {isa = PBXBuildFile; fileRef = 69B8FEA92ED39FD4AA68B5B1591151B1 /* String.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6C108E127CA9C06B82C3BD35B8C7E8E8 /* NativeModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 6D138B37D19B894857CCD5CBC66549A6 /* NativeModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6C108E127CA9C06B82C3BD35B8C7E8E8 /* NativeModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 44444F96D7488D183BE5DC55D7264A82 /* NativeModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; 6C1BF50C54FFCDABA052C0D60E4AA1CB /* quant_levels_utils.h in Headers */ = {isa = PBXBuildFile; fileRef = 68A6E82644D6D2487795445909B5948A /* quant_levels_utils.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6C1E2932E57F0360D86195E25DEAFBA5 /* Instance.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 23529667C0DDF44BF8A988F5851961DE /* Instance.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 6C1E2932E57F0360D86195E25DEAFBA5 /* Instance.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 52AB5CE635BF5BEDED856389BCE8036A /* Instance.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; 6C1FC05C0464B7AC37B8E5F355C07B64 /* FIRCLSInternalReport.m in Sources */ = {isa = PBXBuildFile; fileRef = CC7802A0AEC86D9095B84A3308092B8F /* FIRCLSInternalReport.m */; }; - 6C2184CE10ED1E5EA7352588D9C0D799 /* RCTConstants.h in Headers */ = {isa = PBXBuildFile; fileRef = E752934C099608793BB304F3E8C6889D /* RCTConstants.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6C2184CE10ED1E5EA7352588D9C0D799 /* RCTConstants.h in Headers */ = {isa = PBXBuildFile; fileRef = AA9D5076FC59778EDFA5D5C08DB28820 /* RCTConstants.h */; settings = {ATTRIBUTES = (Project, ); }; }; 6C2AEAC146ADE8FD2C8F6FC813463A9F /* EvictingCacheMap.h in Headers */ = {isa = PBXBuildFile; fileRef = 335D38318F50FD0275426F0ECD343B89 /* EvictingCacheMap.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6C2C52BDBEAAC3411053D5BD41B4DC82 /* QBSlomoIconView.h in Headers */ = {isa = PBXBuildFile; fileRef = 0B21DF4FED56ECFFFF4EF7E4936FD328 /* QBSlomoIconView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6C6AABAFCDBD2C60E12007C6A444B27F /* JSIndexedRAMBundle.h in Headers */ = {isa = PBXBuildFile; fileRef = 38E974DE38662217A03138E2F4A82ED9 /* JSIndexedRAMBundle.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6C2C52BDBEAAC3411053D5BD41B4DC82 /* QBSlomoIconView.h in Headers */ = {isa = PBXBuildFile; fileRef = 70FF0440DED16FFDDDD95C37AEE3CAEA /* QBSlomoIconView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6C6AABAFCDBD2C60E12007C6A444B27F /* JSIndexedRAMBundle.h in Headers */ = {isa = PBXBuildFile; fileRef = 11ACB07EF32CFC78268CD12D6F193D37 /* JSIndexedRAMBundle.h */; settings = {ATTRIBUTES = (Project, ); }; }; 6C70DA166CC635856E26D25356B5A6FD /* SocketFastOpen.h in Headers */ = {isa = PBXBuildFile; fileRef = 336CEDFFACA0C972208DE707FD79F5B5 /* SocketFastOpen.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6C7737F32AD5231BA4DE75DD92F2BACE /* JSModulesUnbundle.h in Headers */ = {isa = PBXBuildFile; fileRef = 495A404B632FA445146F59B8245C9C04 /* JSModulesUnbundle.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6CA4114F7B18865EB558884C622ECAA5 /* RCTView+SafeAreaCompat.h in Headers */ = {isa = PBXBuildFile; fileRef = AE1B98DEC9F623304C1276379FF93FEB /* RCTView+SafeAreaCompat.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6CA4A7C3E424212753B7313A54CA4417 /* RCTUIManagerObserverCoordinator.h in Headers */ = {isa = PBXBuildFile; fileRef = 9981F892813556A167C03F63AC749F45 /* RCTUIManagerObserverCoordinator.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6CDBAF244B152AB69B35CD781B81F6E5 /* EXVideoThumbnailsModule.m in Sources */ = {isa = PBXBuildFile; fileRef = E47DAE906867F4EA69C2F609837C088C /* EXVideoThumbnailsModule.m */; }; - 6CF51744B395C68E99A33BDB7A60D3AA /* RCTLayoutAnimation.h in Headers */ = {isa = PBXBuildFile; fileRef = 0821334E8D60BE031718CEE781329506 /* RCTLayoutAnimation.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6CF9A2C3A712A7EFA50999466F070913 /* RCTParserUtils.m in Sources */ = {isa = PBXBuildFile; fileRef = DA65FFD28CB295BDA17D33B6504C6891 /* RCTParserUtils.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 6D16844C8F96A2DD292833AA84CD155F /* REAPropsNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 790F21FF37AFBE5BFB38D22EBDAA25C0 /* REAPropsNode.m */; }; - 6D2470F794A40529EFB3DA7E8CB200EE /* RCTUtils.m in Sources */ = {isa = PBXBuildFile; fileRef = 1CD39A256D86B123C40027930CB1D817 /* RCTUtils.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 6C7737F32AD5231BA4DE75DD92F2BACE /* JSModulesUnbundle.h in Headers */ = {isa = PBXBuildFile; fileRef = 4F09632D02FC9C4ED72FDBC95E756300 /* JSModulesUnbundle.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6CA4114F7B18865EB558884C622ECAA5 /* RCTView+SafeAreaCompat.h in Headers */ = {isa = PBXBuildFile; fileRef = 8970C2B1382E59AAA9DB751D6B3105BE /* RCTView+SafeAreaCompat.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6CA4A7C3E424212753B7313A54CA4417 /* RCTUIManagerObserverCoordinator.h in Headers */ = {isa = PBXBuildFile; fileRef = 960B4102D57AFFD168882E44F6C6A10F /* RCTUIManagerObserverCoordinator.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6CDBAF244B152AB69B35CD781B81F6E5 /* EXVideoThumbnailsModule.m in Sources */ = {isa = PBXBuildFile; fileRef = C8A66532A7E2C48744BE1FA81B3C5203 /* EXVideoThumbnailsModule.m */; }; + 6CF51744B395C68E99A33BDB7A60D3AA /* RCTLayoutAnimation.h in Headers */ = {isa = PBXBuildFile; fileRef = 9841D0FF9A7C6DD086FD60A318148839 /* RCTLayoutAnimation.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6CF9A2C3A712A7EFA50999466F070913 /* RCTParserUtils.m in Sources */ = {isa = PBXBuildFile; fileRef = 02F1047B882E0C8E3E1C90A862861A8B /* RCTParserUtils.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 6D16844C8F96A2DD292833AA84CD155F /* REAPropsNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 1D812D9B141E45485A16077001C2371A /* REAPropsNode.m */; }; + 6D2470F794A40529EFB3DA7E8CB200EE /* RCTUtils.m in Sources */ = {isa = PBXBuildFile; fileRef = 9227DC0B4D5E0AB81CAB51D97D06A271 /* RCTUtils.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; 6D3150889C73DAD4E43A477FE1892785 /* README.md in Sources */ = {isa = PBXBuildFile; fileRef = 31B9F5606C0A003A29164747152FD690 /* README.md */; }; - 6D35AB896CC748B13AC4B3C3972EE181 /* REAAllTransitions.h in Headers */ = {isa = PBXBuildFile; fileRef = 4222C44105ACF9CD2A045D9134622C61 /* REAAllTransitions.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6D35AB896CC748B13AC4B3C3972EE181 /* REAAllTransitions.h in Headers */ = {isa = PBXBuildFile; fileRef = 7784341297FF0643533725E4F00BE6E8 /* REAAllTransitions.h */; settings = {ATTRIBUTES = (Project, ); }; }; 6D51FABC0C7DF19843155B1C96BF045B /* FIRInstallations.h in Headers */ = {isa = PBXBuildFile; fileRef = 7AA2205B0DB48A881AA5FE79F5E2E62A /* FIRInstallations.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6D6BB3DC5C7BF8883DBFD2925D0FC4FA /* Instance.h in Headers */ = {isa = PBXBuildFile; fileRef = 2EF14D6F56A69BDC6B6D7C00339BA895 /* Instance.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6D6BB3DC5C7BF8883DBFD2925D0FC4FA /* Instance.h in Headers */ = {isa = PBXBuildFile; fileRef = 659D01B5AEE2A6809EF7EE98B3E8C599 /* Instance.h */; settings = {ATTRIBUTES = (Project, ); }; }; 6D6BE3F9307133BD33AA5369A0A212E3 /* SDWeakProxy.h in Headers */ = {isa = PBXBuildFile; fileRef = 187319D1797E7B7B488AB5426C9483C0 /* SDWeakProxy.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6D8104F1766905FA5D32740A209F2A31 /* READebugNode.m in Sources */ = {isa = PBXBuildFile; fileRef = D7425907A788D25CB58D6971758201EA /* READebugNode.m */; }; + 6D8104F1766905FA5D32740A209F2A31 /* READebugNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 119664C5DB633E01FA1E09ED44FE65C0 /* READebugNode.m */; }; 6D904A25444A6BB07820E09B40280DB4 /* Dirent.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A289E61D153279A9DCFBD9173687CB3D /* Dirent.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - 6D97248DC774F2DB05EC07645462302F /* RCTVibration.h in Headers */ = {isa = PBXBuildFile; fileRef = 094F0D34BFD6E291AE123770D2E87600 /* RCTVibration.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6DB135CE25243C7A87B72013CF246917 /* EXKeepAwake.h in Headers */ = {isa = PBXBuildFile; fileRef = 4C252EAA8CF16E6B6EFAE130677D843F /* EXKeepAwake.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6DB244440F489C843FC6DB922AF17A80 /* RCTProfileTrampoline-i386.S in Sources */ = {isa = PBXBuildFile; fileRef = ADBFC5DFF2709E9A883012DB1E203DAE /* RCTProfileTrampoline-i386.S */; }; + 6D97248DC774F2DB05EC07645462302F /* RCTVibration.h in Headers */ = {isa = PBXBuildFile; fileRef = 0305A06A28104F6A5F208F3E489C7E66 /* RCTVibration.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6DB135CE25243C7A87B72013CF246917 /* EXKeepAwake.h in Headers */ = {isa = PBXBuildFile; fileRef = C67FE86A126C1C4E22AF771365D3D744 /* EXKeepAwake.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6DB244440F489C843FC6DB922AF17A80 /* RCTProfileTrampoline-i386.S in Sources */ = {isa = PBXBuildFile; fileRef = 114EDCDFE3786116DF043067ECF15619 /* RCTProfileTrampoline-i386.S */; }; 6DB3261153D3CA274595D307D8F3678E /* FIRInstallationsStore.h in Headers */ = {isa = PBXBuildFile; fileRef = 8E3894AD3EAF962787F17B00B35BE4AE /* FIRInstallationsStore.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6DB976F647E681AB06E97EDB58F98C41 /* RNCMaskedView-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = DBA8760FE4562DBA8844F434441ABE4F /* RNCMaskedView-dummy.m */; }; + 6DB976F647E681AB06E97EDB58F98C41 /* RNCMaskedView-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 78A85DB4DE5F21ACB273A7C3CCD7B281 /* RNCMaskedView-dummy.m */; }; 6DCD55BA285E5153356D0FB6617AF4D0 /* FlowableObserveOnOperator.h in Headers */ = {isa = PBXBuildFile; fileRef = C660A0E99EFA410A5F3EDBA9D02D9711 /* FlowableObserveOnOperator.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6E9A1314B608805156FEE93524162304 /* RCTSettingsPlugins.mm in Sources */ = {isa = PBXBuildFile; fileRef = ABB744E4BDA4DA4474B6F9DBCD15CDDC /* RCTSettingsPlugins.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; - 6EB2103944BC372A4EE0748B94A2BCA4 /* KeyboardTrackingViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 34E3E2F0D3B69CBBF936FF8309660F15 /* KeyboardTrackingViewManager.m */; }; - 6EC20FB3628ED3D4DA15AEE1BCCFA383 /* UMViewManagerAdapterClassesRegistry.m in Sources */ = {isa = PBXBuildFile; fileRef = CD99FA70EEE75645133D46B391FA3856 /* UMViewManagerAdapterClassesRegistry.m */; }; - 6EDD7B606EF5794C6AF3233D0FA56E57 /* RCTMultilineTextInputView.h in Headers */ = {isa = PBXBuildFile; fileRef = C6868C8457E5B8FA9B29D3E5C23D62C6 /* RCTMultilineTextInputView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6E9A1314B608805156FEE93524162304 /* RCTSettingsPlugins.mm in Sources */ = {isa = PBXBuildFile; fileRef = 6076E54A1D761A8377DFC0301C4FFBC6 /* RCTSettingsPlugins.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + 6EB2103944BC372A4EE0748B94A2BCA4 /* KeyboardTrackingViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = AD83718DAFA2539788C81048B9E4AEA3 /* KeyboardTrackingViewManager.m */; }; + 6EC20FB3628ED3D4DA15AEE1BCCFA383 /* UMViewManagerAdapterClassesRegistry.m in Sources */ = {isa = PBXBuildFile; fileRef = 7104EC731C7D088A2EE14B26874793FB /* UMViewManagerAdapterClassesRegistry.m */; }; + 6EDD7B606EF5794C6AF3233D0FA56E57 /* RCTMultilineTextInputView.h in Headers */ = {isa = PBXBuildFile; fileRef = 30F398055ADF624F0EDC591B8B0BE805 /* RCTMultilineTextInputView.h */; settings = {ATTRIBUTES = (Project, ); }; }; 6F55D5181CC9A51E052914C9FB3FE77F /* Format.h in Headers */ = {isa = PBXBuildFile; fileRef = 1CBCD274CE6130A2ADD36622E909A653 /* Format.h */; settings = {ATTRIBUTES = (Project, ); }; }; 6F88D197CC1AA3E0B50D93FD5F7CF071 /* Future.h in Headers */ = {isa = PBXBuildFile; fileRef = E9FFDAF3C03BDC002EC84E0FDA51480B /* Future.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6FADD2923098EDB7083BACF1DF28880E /* EXWebBrowser-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = BED74B93D61270A3B5A6EFEB36BA895F /* EXWebBrowser-dummy.m */; }; + 6FADD2923098EDB7083BACF1DF28880E /* EXWebBrowser-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = B9627976F0E4A350657DEBF476F626A4 /* EXWebBrowser-dummy.m */; }; 6FB624CE84ABA6F5B472A098FD3B96CB /* iterator_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = 431639D851E7F30F69FFC10118B1A28A /* iterator_enc.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; 6FBDDAF47F6FB7758B11DD8F5B8B3436 /* ThreadedExecutor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 703311EF445FFC66F07CFCAD563D418A /* ThreadedExecutor.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; 6FC607CC2D020D816400CAFCFFF7288B /* PriorityUnboundedBlockingQueue.h in Headers */ = {isa = PBXBuildFile; fileRef = 3217A87B53EF22776DC07F1BB8099DA2 /* PriorityUnboundedBlockingQueue.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6FFF1148634D9472933210CBFC2E6E65 /* REAJSCallNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 195D57C1FDD7157567742C3B29C9148F /* REAJSCallNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6FFF1148634D9472933210CBFC2E6E65 /* REAJSCallNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 19775B292FBC33D8E72DE17AB66B8048 /* REAJSCallNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; 7003449F5AD5ED5357D584E2C927D1C9 /* filters_neon.c in Sources */ = {isa = PBXBuildFile; fileRef = 272C770751661D7921F1846D2ECEF1CF /* filters_neon.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 701656AAE9EA2EB14ACF8B21B996906B /* RCTCustomInputController.m in Sources */ = {isa = PBXBuildFile; fileRef = C07661741AA1DCA0B3F0A6E482EBC55C /* RCTCustomInputController.m */; }; - 703C4C62C95D0BC0E32F8B41732A554F /* BugsnagApiClient.h in Headers */ = {isa = PBXBuildFile; fileRef = CBA1136AEDA53227E8EE8CD59D2571A4 /* BugsnagApiClient.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 701656AAE9EA2EB14ACF8B21B996906B /* RCTCustomInputController.m in Sources */ = {isa = PBXBuildFile; fileRef = 4314F3FA5C3A1791804E35FB074F4C9B /* RCTCustomInputController.m */; }; + 703C4C62C95D0BC0E32F8B41732A554F /* BugsnagApiClient.h in Headers */ = {isa = PBXBuildFile; fileRef = 23BF68F9A6B7345B97B6CD4C263EE2E6 /* BugsnagApiClient.h */; settings = {ATTRIBUTES = (Project, ); }; }; 70499203E2E4E13465AA6BA667887CC1 /* GlobalShutdownSocketSet.h in Headers */ = {isa = PBXBuildFile; fileRef = BADBF107BDB808A6AB3DC7AA8E630E4A /* GlobalShutdownSocketSet.h */; settings = {ATTRIBUTES = (Project, ); }; }; 705740F39079D637081BE25367657EAA /* FIRLibrary.h in Headers */ = {isa = PBXBuildFile; fileRef = 5691846E62D41417D7ECC5B8CEA51CAA /* FIRLibrary.h */; settings = {ATTRIBUTES = (Project, ); }; }; 70A55701F794D3275F5989C1F4028042 /* FlipperStep.h in Headers */ = {isa = PBXBuildFile; fileRef = E55740D63FC4B29E894BEDF1F86F2A4F /* FlipperStep.h */; settings = {ATTRIBUTES = (Project, ); }; }; @@ -1615,39 +1608,39 @@ 70B26E53BF5C575643F9D2AD55DC2D3E /* FIRCLSDataCollectionToken.h in Headers */ = {isa = PBXBuildFile; fileRef = 125DA5CF7E18315B69A50B3F8669057D /* FIRCLSDataCollectionToken.h */; settings = {ATTRIBUTES = (Project, ); }; }; 70C947372918C45265E8AA6243FAE044 /* StreamFragmentAccumulator.h in Headers */ = {isa = PBXBuildFile; fileRef = 2C05937C718A1A204DE6AC17B844F985 /* StreamFragmentAccumulator.h */; settings = {ATTRIBUTES = (Project, ); }; }; 70DC9B10E6304A69135CCBE2AB263499 /* hu.lproj in Resources */ = {isa = PBXBuildFile; fileRef = 5D462EB7698BAB22FC3D470A86C03554 /* hu.lproj */; }; - 70FD47128E14984FA9DABB052B73161E /* REACallFuncNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 7F9CD9F5AA07636A4CA4822D75C54E0F /* REACallFuncNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 70FD47128E14984FA9DABB052B73161E /* REACallFuncNode.h in Headers */ = {isa = PBXBuildFile; fileRef = AB2D1941EEDB949949D108EB02723FB5 /* REACallFuncNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; 7116DD478008088F9138099C5A2DC3AB /* logging.cc in Sources */ = {isa = PBXBuildFile; fileRef = BB4E2B4B71D3EA3BE4B3AECA7E68359D /* logging.cc */; settings = {COMPILER_FLAGS = "-Wno-shorten-64-to-32"; }; }; - 7134A421D36274488CA286E15C1E6AE7 /* YGStyle.h in Headers */ = {isa = PBXBuildFile; fileRef = 1D2C2930D49F43DFFB1B58B951B9A649 /* YGStyle.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7134A421D36274488CA286E15C1E6AE7 /* YGStyle.h in Headers */ = {isa = PBXBuildFile; fileRef = 3DFAD60463B3AEAE2E413CA40595B32A /* YGStyle.h */; settings = {ATTRIBUTES = (Project, ); }; }; 713B6CFB2FEB27D47C3E3C5F2D908A70 /* AsyncSignalHandler.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8F6AEDA79A8AAC0437A28D32567B8E55 /* AsyncSignalHandler.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; 715A3D8A7C44869FEACE0514D575E18C /* ProducerConsumerQueue.h in Headers */ = {isa = PBXBuildFile; fileRef = 828CFF4AB4C0EBD7C6C166739540505E /* ProducerConsumerQueue.h */; settings = {ATTRIBUTES = (Project, ); }; }; 719716B54EAF8C50EFDDEBCE1A46A946 /* FIRCLSFABNetworkClient.h in Headers */ = {isa = PBXBuildFile; fileRef = C2A548B344453E444A4796F7790CF9D8 /* FIRCLSFABNetworkClient.h */; settings = {ATTRIBUTES = (Project, ); }; }; 71A171A31038A2903EE7E79423EB1506 /* FlipperKitLayoutPlugin.mm in Sources */ = {isa = PBXBuildFile; fileRef = C84040C1023CEB270A65997858A7F379 /* FlipperKitLayoutPlugin.mm */; settings = {COMPILER_FLAGS = "-DDEBUG=1 -DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0"; }; }; - 71A8F1F7B8F1C500E5DB54E7568768BF /* RNSScreenStack.h in Headers */ = {isa = PBXBuildFile; fileRef = A1490A5369E542D596EAEA9F480A37D8 /* RNSScreenStack.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 71B1F6D3D1676C67B9689723295BBBF8 /* RNNativeViewHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = 66F6A981CEA13748A99785DE62DC4464 /* RNNativeViewHandler.m */; }; - 71BFB0C1F7C39D377180BE4A26405164 /* RNNotificationParser.h in Headers */ = {isa = PBXBuildFile; fileRef = EAD93E5ED8CA50A3958E4F16680D58ED /* RNNotificationParser.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 71C2DC5DF2F9FAD82BB52FDC4074BAAA /* BugsnagSessionTrackingApiClient.h in Headers */ = {isa = PBXBuildFile; fileRef = E9405DD541B4D41D4FF1758F4371F6F0 /* BugsnagSessionTrackingApiClient.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 71E4E32C85665EADE1AD029FAC79CC09 /* log.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A6A96D67DD0C9EB25890327FB73FA7D0 /* log.cpp */; settings = {COMPILER_FLAGS = "-fno-omit-frame-pointer -fexceptions -Wall -Werror -std=c++1y -fPIC -fno-objc-arc"; }; }; + 71A8F1F7B8F1C500E5DB54E7568768BF /* RNSScreenStack.h in Headers */ = {isa = PBXBuildFile; fileRef = E065D4B6D3A746EDC24DD6F1DC704B5F /* RNSScreenStack.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 71B1F6D3D1676C67B9689723295BBBF8 /* RNNativeViewHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = 8969190E8CF8AD9B7A5DE697C2B2EEC6 /* RNNativeViewHandler.m */; }; + 71BFB0C1F7C39D377180BE4A26405164 /* RNNotificationParser.h in Headers */ = {isa = PBXBuildFile; fileRef = 05017CE8ABDD7A47FC93E01E39E48638 /* RNNotificationParser.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 71C2DC5DF2F9FAD82BB52FDC4074BAAA /* BugsnagSessionTrackingApiClient.h in Headers */ = {isa = PBXBuildFile; fileRef = 12A3BD37E6C4373B9441485A21AD018F /* BugsnagSessionTrackingApiClient.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 71E4E32C85665EADE1AD029FAC79CC09 /* log.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A4A83EBC718D52F01D25A72DC68BE2FD /* log.cpp */; settings = {COMPILER_FLAGS = "-fno-omit-frame-pointer -fexceptions -Wall -Werror -std=c++1y -fPIC -fno-objc-arc"; }; }; 71FE63ECC9FB2805DB5D1D76C658C1DF /* FIRInstallationsSingleOperationPromiseCache.m in Sources */ = {isa = PBXBuildFile; fileRef = 01D2FE3E0A6EAEBBCC00B5722CD50421 /* FIRInstallationsSingleOperationPromiseCache.m */; }; 72089BD4C4AB1DEC21AC8B8C15BE2ED0 /* SDDeviceHelper.m in Sources */ = {isa = PBXBuildFile; fileRef = C2B4E90A947A43960679E397F59A9CAC /* SDDeviceHelper.m */; }; 721713500B4D40C033B10C063E735067 /* TimeoutQueue.h in Headers */ = {isa = PBXBuildFile; fileRef = 6A29C604A57BD42B8900C43C824826EF /* TimeoutQueue.h */; settings = {ATTRIBUTES = (Project, ); }; }; 722BD6977E9660D59526BB0AD44148F8 /* FlipperKitReactPlugin.h in Headers */ = {isa = PBXBuildFile; fileRef = 5A32E7EA27BFF86EC84B8888A3DE0290 /* FlipperKitReactPlugin.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 725BA7CAA30F06AEDC2A790CB990123E /* REAValueNode.m in Sources */ = {isa = PBXBuildFile; fileRef = A8C21718E04F4E236AEC61E8AF869AA4 /* REAValueNode.m */; }; - 725BC4B216ECC3B13922602F90FD5DDC /* RNFlingHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = B133713F9DEAAB1D042EBC4C305BA871 /* RNFlingHandler.m */; }; - 727A3E0CBA44B8056F00D1E94D16BE65 /* RCTInputAccessoryView.h in Headers */ = {isa = PBXBuildFile; fileRef = D1B57CF1BFC9540DEB0B75EB1FF01892 /* RCTInputAccessoryView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 72810C496CB0C7E9ED62659B5C48B991 /* BugsnagSessionTrackingPayload.h in Headers */ = {isa = PBXBuildFile; fileRef = 2BA1698D2D331C65A608DE1328A6271B /* BugsnagSessionTrackingPayload.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7284BF438F4A908AFDB3AEA753D92D54 /* UMSingletonModule.h in Headers */ = {isa = PBXBuildFile; fileRef = A9653ED9A963575A6E3DCA1419512721 /* UMSingletonModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 728D9843C43F25FB4A2CDE05A3E87658 /* BSG_KSCrashSentry_NSException.m in Sources */ = {isa = PBXBuildFile; fileRef = A15BEEBBE39B54523F61DCDB62CD5FB9 /* BSG_KSCrashSentry_NSException.m */; }; + 725BA7CAA30F06AEDC2A790CB990123E /* REAValueNode.m in Sources */ = {isa = PBXBuildFile; fileRef = DA3FEB9D96DE8AC187E74978B37A108F /* REAValueNode.m */; }; + 725BC4B216ECC3B13922602F90FD5DDC /* RNFlingHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = 75F5287CB1010B04DDDAD619A3B717E0 /* RNFlingHandler.m */; }; + 727A3E0CBA44B8056F00D1E94D16BE65 /* RCTInputAccessoryView.h in Headers */ = {isa = PBXBuildFile; fileRef = 1D9BD610EC7E9A2C0043A8CA1E22A9D1 /* RCTInputAccessoryView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 72810C496CB0C7E9ED62659B5C48B991 /* BugsnagSessionTrackingPayload.h in Headers */ = {isa = PBXBuildFile; fileRef = 429F0924225DC7AEB742861D59E5F780 /* BugsnagSessionTrackingPayload.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7284BF438F4A908AFDB3AEA753D92D54 /* UMSingletonModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 2C21A4FA570095AF52C1319C2686BDE5 /* UMSingletonModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 728D9843C43F25FB4A2CDE05A3E87658 /* BSG_KSCrashSentry_NSException.m in Sources */ = {isa = PBXBuildFile; fileRef = E1373DD4F8357B73B5459460092A0AFC /* BSG_KSCrashSentry_NSException.m */; }; 729543A16C2009AED104FB4361519B63 /* SDDisplayLink.m in Sources */ = {isa = PBXBuildFile; fileRef = 9B87BD89FFC807940769C52E39B7D396 /* SDDisplayLink.m */; }; 72A5A01001946EFB25C390868F8F69B8 /* GDTCORPlatform.h in Headers */ = {isa = PBXBuildFile; fileRef = CB17739A753C1166E5F9872137765227 /* GDTCORPlatform.h */; settings = {ATTRIBUTES = (Project, ); }; }; 72A89D0E917A84710512EBBC8A498DBE /* bit_writer_utils.h in Headers */ = {isa = PBXBuildFile; fileRef = 10C45B8DDD9ABCB0C1B7CADF0DC586E9 /* bit_writer_utils.h */; settings = {ATTRIBUTES = (Project, ); }; }; 730CF59059356078E40500B6BB498E2C /* OpenSSLThreading.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 961935ECB499C57F8D4C22EC2E4B497F /* OpenSSLThreading.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - 730DC14773375905F03EC77556A60EE7 /* RNCAppearanceProvider.m in Sources */ = {isa = PBXBuildFile; fileRef = 31CADE3B22E1E32AA799BEBC96C89F2E /* RNCAppearanceProvider.m */; }; - 73112C1488A872BEA689E089D0B0E0FD /* RNSScreenStack.m in Sources */ = {isa = PBXBuildFile; fileRef = BD5AACE9060BB7DE24D02208B96350D5 /* RNSScreenStack.m */; }; + 730DC14773375905F03EC77556A60EE7 /* RNCAppearanceProvider.m in Sources */ = {isa = PBXBuildFile; fileRef = 68783F7A779FE11BF6BBA23912B83987 /* RNCAppearanceProvider.m */; }; + 73112C1488A872BEA689E089D0B0E0FD /* RNSScreenStack.m in Sources */ = {isa = PBXBuildFile; fileRef = 912BA1E2CAE114B62C57ED3F4C700B4F /* RNSScreenStack.m */; }; 73326E676CD26D5A4B3B135758C839A2 /* nl.lproj in Resources */ = {isa = PBXBuildFile; fileRef = 7876296B34DE0344C1134A5AA1CBADFB /* nl.lproj */; }; - 7335C7F76DF469C47D67CEB3752435E2 /* BugsnagPlugin.h in Headers */ = {isa = PBXBuildFile; fileRef = B80EEBA0C6117C5561AE1C1EBEBEB01D /* BugsnagPlugin.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7335C7F76DF469C47D67CEB3752435E2 /* BugsnagPlugin.h in Headers */ = {isa = PBXBuildFile; fileRef = 1B909F75B55B78AED9EF7A2C9DAF3CE0 /* BugsnagPlugin.h */; settings = {ATTRIBUTES = (Project, ); }; }; 735677185EDE464C255FC2E8C20CB400 /* fixed-dtoa.cc in Sources */ = {isa = PBXBuildFile; fileRef = 9A243DF2061DEFDDE291EBD729D7655D /* fixed-dtoa.cc */; settings = {COMPILER_FLAGS = "-Wno-unreachable-code"; }; }; - 737151DA0023AC1722A3003E9923AE19 /* TurboModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 1AE31F037F1E36CF47AF8B257751AA55 /* TurboModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7373555FB69BC157C5826BD419355394 /* RCTSurface.h in Headers */ = {isa = PBXBuildFile; fileRef = 725424381354EA0E9600C553ADF39FFB /* RCTSurface.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 737151DA0023AC1722A3003E9923AE19 /* TurboModule.h in Headers */ = {isa = PBXBuildFile; fileRef = A38CBB2B7FE0514CA5F8D26657956C10 /* TurboModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7373555FB69BC157C5826BD419355394 /* RCTSurface.h in Headers */ = {isa = PBXBuildFile; fileRef = 9D0860B0933BF1CD715BB6899A3B8FFD /* RCTSurface.h */; settings = {ATTRIBUTES = (Project, ); }; }; 7375257DD805DCD78B8073530A459F64 /* Builtins.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B978CE5AB255225FB9E1244B8F9A4B00 /* Builtins.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; 738DDBFFD505ED31597141E30E3E9C6C /* FBLPromise+Delay.m in Sources */ = {isa = PBXBuildFile; fileRef = 38ED227967D423511B8471BC47BF9760 /* FBLPromise+Delay.m */; }; 738F9534366A0B4D79D59BCD8E17CA6E /* SKRequestInfo.m in Sources */ = {isa = PBXBuildFile; fileRef = 0D212A38E6188F241EA5EFD43E4C8B77 /* SKRequestInfo.m */; settings = {COMPILER_FLAGS = "-DDEBUG=1 -DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0"; }; }; @@ -1663,21 +1656,21 @@ 744569ED9F08B38A12D22F2F9FC0424C /* SocketAddress.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D3C21FF58057D4E5E3C0F365982DD58C /* SocketAddress.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; 74466012CDD86409DB862C1330B47343 /* SKSearchResultNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 75AA86DAFDDCD07DB9BDB4C748006A0A /* SKSearchResultNode.m */; settings = {COMPILER_FLAGS = "-DDEBUG=1 -DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0"; }; }; 745339CEE9D0D5A9A8878A4156040AF3 /* FIRAppInternal.h in Headers */ = {isa = PBXBuildFile; fileRef = 63C5163727A4A172C8A5BC1F4E73A4DD /* FIRAppInternal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 746A8552421E52E5EB7C6E6B0364BE9F /* RCTFollyConvert.mm in Sources */ = {isa = PBXBuildFile; fileRef = 3C24D7E1C7D5F3E9E5DDCD4B96C7FAF8 /* RCTFollyConvert.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 749C1DFD5218AEA619EE34946075D534 /* RNFBAnalytics-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 1707FE631BF1D82FC7C5F34615DA6293 /* RNFBAnalytics-dummy.m */; }; - 74A91C464E080C8C4F82D1C513B9003E /* RCTRootViewDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = 119A9B97855E170C276D8B2120614DFA /* RCTRootViewDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 74AE807112E57FE4C5D5188DC97A783E /* Yoga-internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 5860BF973B9388FB83C1661EBC61C337 /* Yoga-internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 746A8552421E52E5EB7C6E6B0364BE9F /* RCTFollyConvert.mm in Sources */ = {isa = PBXBuildFile; fileRef = A782707D85B7B5A62B0BC5054E66E98B /* RCTFollyConvert.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 749C1DFD5218AEA619EE34946075D534 /* RNFBAnalytics-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 15188A9990A396DDDBF42E12C6EF721D /* RNFBAnalytics-dummy.m */; }; + 74A91C464E080C8C4F82D1C513B9003E /* RCTRootViewDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = 177C58289CCB8340F454EFD21A4267DE /* RCTRootViewDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 74AE807112E57FE4C5D5188DC97A783E /* Yoga-internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 5B796E5BBC9DF22B686425DE79FB6F1C /* Yoga-internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; 74BCEF87E24337003DB52A4C98FEEF2F /* Core-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 43F78F152FE91303A0E243061A1E2998 /* Core-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; 74BFEE5FD90DDCCFB94D28F70F9F952F /* raw_logging.h in Headers */ = {isa = PBXBuildFile; fileRef = 7976DE3D96AC7E782E421031A9128746 /* raw_logging.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 74C456DAC1E8C5479E68F78C55404A1D /* RCTTouchHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = 90005C773AC1EFD5D5B29B0F7235021F /* RCTTouchHandler.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 750479E4904D7CD0CA0FC206D556F240 /* RCTEventAnimation.m in Sources */ = {isa = PBXBuildFile; fileRef = 878098E16FC964CDAEEB69CDDC556BCF /* RCTEventAnimation.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + 74C456DAC1E8C5479E68F78C55404A1D /* RCTTouchHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = 189631C628859E4658BE8042210DB85E /* RCTTouchHandler.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 750479E4904D7CD0CA0FC206D556F240 /* RCTEventAnimation.m in Sources */ = {isa = PBXBuildFile; fileRef = B5D0D8817E5805823E1D5D53C84E9818 /* RCTEventAnimation.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; 7511831132AD02DF13E76422ABD73F09 /* SDWebImageManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 2BBB0AC7C7BD3E24D4B5BCF36443E456 /* SDWebImageManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; 75333439D6AC33E0F7ADAE8F60E86FD8 /* FireForgetThroughputTcp.cpp in Sources */ = {isa = PBXBuildFile; fileRef = EEA32812336906D66EEFCF0358E2C024 /* FireForgetThroughputTcp.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0 -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; 756B96E7745AFF9E8482BE8A64C04A22 /* json_pointer.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 08051D2A5089A408C5C8CD59BCA08707 /* json_pointer.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; 75988D9D62B888CC305B96425A0E82E9 /* FIRCLSCompactUnwind.c in Sources */ = {isa = PBXBuildFile; fileRef = FACEE59B6126610AB5919182FC9F4842 /* FIRCLSCompactUnwind.c */; }; 75B1DEA7C109573B61B0B2E64A230CF4 /* FIRInstallationsErrors.h in Headers */ = {isa = PBXBuildFile; fileRef = 04DAB6A2124050E4A50E687C0C6ADBA3 /* FIRInstallationsErrors.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 75DD55D6CAD8C39EF8FC354902A2F5A9 /* RCTStatusBarManager.h in Headers */ = {isa = PBXBuildFile; fileRef = D83AA0BAC32FB6F9279352AB6CC68E61 /* RCTStatusBarManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 76110E4538EEE7713CF6399084C6A08A /* REAEventNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 26E3E79468DED17BAF45FD27958BF791 /* REAEventNode.m */; }; + 75DD55D6CAD8C39EF8FC354902A2F5A9 /* RCTStatusBarManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 84799DC573A1A80C50AE2985D4258247 /* RCTStatusBarManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 76110E4538EEE7713CF6399084C6A08A /* REAEventNode.m in Sources */ = {isa = PBXBuildFile; fileRef = ACDE4DEFDEB550C64CD5BD4B7A7FCBA5 /* REAEventNode.m */; }; 763CD444AF9E7EA395CFD53721D810A8 /* Math.h in Headers */ = {isa = PBXBuildFile; fileRef = 2D88FF40C3C206819A95777E179C8465 /* Math.h */; settings = {ATTRIBUTES = (Project, ); }; }; 7641FF31D196E499F03DB2C7DD7767F0 /* FIRErrorCode.h in Headers */ = {isa = PBXBuildFile; fileRef = 028965E7D68DB3024840F17A1CF938E3 /* FIRErrorCode.h */; settings = {ATTRIBUTES = (Project, ); }; }; 764F640B2C505140321DA60CF2074D08 /* tree_dec.c in Sources */ = {isa = PBXBuildFile; fileRef = 1165274293DA486B43870F755943D0E8 /* tree_dec.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; @@ -1690,118 +1683,118 @@ 76E11DFAA4DC6209C6D3CC2CBF3EFA8A /* Time.h in Headers */ = {isa = PBXBuildFile; fileRef = 204AA1F34D0CD579FA1FEA2882DBC382 /* Time.h */; settings = {ATTRIBUTES = (Project, ); }; }; 76EBE6CD51BEEE22F89845516E86EBAA /* SDWebImageWebPCoder.h in Headers */ = {isa = PBXBuildFile; fileRef = 2AF63C27DA331326A58B61F06A0B59F6 /* SDWebImageWebPCoder.h */; settings = {ATTRIBUTES = (Project, ); }; }; 76FD2A79BEF913421A313ED50295DF11 /* RequestResponseRequester.cpp in Sources */ = {isa = PBXBuildFile; fileRef = E3468E6DF40BE224FB7B5B36C3B42052 /* RequestResponseRequester.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0 -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - 7715D82AD9F3D0E93C1F5DFE32102B53 /* RCTCustomKeyboardViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = 56BA74359E64F1AFBD8D47B4C2B9F026 /* RCTCustomKeyboardViewController.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 772B79C3E4C25DE545BE2E8F55D05F25 /* YGStyle.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F47128CE98F8CCF5519A45D50045677F /* YGStyle.cpp */; settings = {COMPILER_FLAGS = "-fno-omit-frame-pointer -fexceptions -Wall -Werror -std=c++1y -fPIC -fno-objc-arc"; }; }; + 7715D82AD9F3D0E93C1F5DFE32102B53 /* RCTCustomKeyboardViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = 9CC2D1FA1DF8FDEF7C6C8C812593AFF9 /* RCTCustomKeyboardViewController.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 772B79C3E4C25DE545BE2E8F55D05F25 /* YGStyle.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 83590D21376A4179BCCE0E8EE64CED52 /* YGStyle.cpp */; settings = {COMPILER_FLAGS = "-fno-omit-frame-pointer -fexceptions -Wall -Werror -std=c++1y -fPIC -fno-objc-arc"; }; }; 774E921F71B6AAF2393C8F193A284BBE /* GDTCCTPrioritizer.m in Sources */ = {isa = PBXBuildFile; fileRef = 7C0B09BA43FBD7AFC8F6086713955F22 /* GDTCCTPrioritizer.m */; }; - 77622F1A0ABB1224B6239F7ADE18F4CB /* ARTSolidColor.m in Sources */ = {isa = PBXBuildFile; fileRef = F26EAD1B7F278D0282E2A1EAF7BD6340 /* ARTSolidColor.m */; }; + 77622F1A0ABB1224B6239F7ADE18F4CB /* ARTSolidColor.m in Sources */ = {isa = PBXBuildFile; fileRef = E8E7DC77DB1C8647B33A7CA75FBB324C /* ARTSolidColor.m */; }; 7762E5F80C933C068DA4A4159F8BB3AA /* openssl_md5_one.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F444815D1ACE7BF9CB9E1DC1B600F360 /* openssl_md5_one.cpp */; settings = {COMPILER_FLAGS = "-x objective-c++ -fno-objc-arc"; }; }; 776799F6076113258BCCED1723ED4382 /* ThreadName.h in Headers */ = {isa = PBXBuildFile; fileRef = 8E2A0E7F36CBD96AA86B6CE6DED962A1 /* ThreadName.h */; settings = {ATTRIBUTES = (Project, ); }; }; 77744A82C948F3D83862E0015E612602 /* muxinternal.c in Sources */ = {isa = PBXBuildFile; fileRef = FD4034D4B159285AA34D05DFF251FBF8 /* muxinternal.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 777B202C8582C5E0780E559C0ED4F862 /* UMReactLogHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = FCB9F9854FA0C1EF173F1072988BC27B /* UMReactLogHandler.m */; }; + 777B202C8582C5E0780E559C0ED4F862 /* UMReactLogHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = 0CF1E70BD129B3642E9FD40999CC5999 /* UMReactLogHandler.m */; }; 77B27E8A50F6A983B614BDBEE2B4C702 /* ro.lproj in Resources */ = {isa = PBXBuildFile; fileRef = C5E4C0A8413D4F42D209506917181EAA /* ro.lproj */; }; 77B293EF5067D13B9EB06AAB2F947B77 /* Flowable.h in Headers */ = {isa = PBXBuildFile; fileRef = 3966967B277AC2F3E8AE6BCF38087818 /* Flowable.h */; settings = {ATTRIBUTES = (Project, ); }; }; 77B3698D829519200039FAB0F98E726F /* CodingDetail.h in Headers */ = {isa = PBXBuildFile; fileRef = A674C6505A3B291E753BAE47C2EFB218 /* CodingDetail.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 77C7A6AD961EA9964137D027B8A8FB42 /* RCTUIUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = 0CE19452558BC74C3D8AE5F85508DFB1 /* RCTUIUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 77C8658812D7F0CE1234676F54F192E0 /* ARTShadow.h in Headers */ = {isa = PBXBuildFile; fileRef = 3F0BB8309F9346A40B0FC1DDF6EC9719 /* ARTShadow.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 77C98621DE081870F24A4FD92976A4E6 /* jsilib-posix.cpp in Sources */ = {isa = PBXBuildFile; fileRef = E994EEBAC182321BD1566AC9E72097FE /* jsilib-posix.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 77E34AB596AEA871C2306059DB3F7D20 /* RCTSurfaceRootView.h in Headers */ = {isa = PBXBuildFile; fileRef = 171B38A2E9137BE249B73C8DD7650557 /* RCTSurfaceRootView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 77C7A6AD961EA9964137D027B8A8FB42 /* RCTUIUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = 62F98564D573BC2AC2B99B6905464940 /* RCTUIUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 77C8658812D7F0CE1234676F54F192E0 /* ARTShadow.h in Headers */ = {isa = PBXBuildFile; fileRef = C7DA584D408C8D115F74555F3487FD2E /* ARTShadow.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 77C98621DE081870F24A4FD92976A4E6 /* jsilib-posix.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FAFEC687058902E3AEA886B5E43F9722 /* jsilib-posix.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 77E34AB596AEA871C2306059DB3F7D20 /* RCTSurfaceRootView.h in Headers */ = {isa = PBXBuildFile; fileRef = FC39D38061F4CD55842A5CEA500B9611 /* RCTSurfaceRootView.h */; settings = {ATTRIBUTES = (Project, ); }; }; 77EF2F92B9062A1EECCB6E0C9C275D88 /* UIImage+CropRotate.h in Headers */ = {isa = PBXBuildFile; fileRef = 7673F97A0B8CB74FE0DEE39B6AEED401 /* UIImage+CropRotate.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 78006C7F26211BB00559438E85AAF1E5 /* RCTSettingsManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 97946DB7F94ECF921C090ACD88EC84B9 /* RCTSettingsManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 78006C7F26211BB00559438E85AAF1E5 /* RCTSettingsManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 5975D7D6704CDCF5D8EF4744561C1261 /* RCTSettingsManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; 7841E1B4F2C70023205BC38857EE74D6 /* Combine.h in Headers */ = {isa = PBXBuildFile; fileRef = 7E68C181CA6DFFF620CA0E551DD0813C /* Combine.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7857E6872B7BFCFD6BAFACB7A3BD86A2 /* RCTUITextField.m in Sources */ = {isa = PBXBuildFile; fileRef = 59B32B64163E777D7B6963D22BD83B87 /* RCTUITextField.m */; }; + 7857E6872B7BFCFD6BAFACB7A3BD86A2 /* RCTUITextField.m in Sources */ = {isa = PBXBuildFile; fileRef = FE96E694E029497F63AC7FB6A4E93155 /* RCTUITextField.m */; }; 785BC4CF4809020AF5132A2626189D3B /* mux.h in Headers */ = {isa = PBXBuildFile; fileRef = 6E2449633F1E0C2F5C501E47997BFF00 /* mux.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 785CAF95D72E52A3CB51D19B161EF757 /* RNDateTimePicker-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = B6587D1DF773B9E9D1F5D6232B7BBEB3 /* RNDateTimePicker-dummy.m */; }; - 7866397A0C61B47DB61023AE9DA1ABD5 /* RCTBackedTextInputDelegateAdapter.h in Headers */ = {isa = PBXBuildFile; fileRef = 029679B8621034F8B9F9E2A6331F37A5 /* RCTBackedTextInputDelegateAdapter.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7870E8FD1015BAAAF32A1EC02F9CE1D2 /* BugsnagSink.h in Headers */ = {isa = PBXBuildFile; fileRef = ADE887F1CFCAABDF568F5BCFA7BD33EA /* BugsnagSink.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 785CAF95D72E52A3CB51D19B161EF757 /* RNDateTimePicker-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 63C74A085D1810F847F72318EA748802 /* RNDateTimePicker-dummy.m */; }; + 7866397A0C61B47DB61023AE9DA1ABD5 /* RCTBackedTextInputDelegateAdapter.h in Headers */ = {isa = PBXBuildFile; fileRef = A040D2A508FC97D0624B679E432009E6 /* RCTBackedTextInputDelegateAdapter.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7870E8FD1015BAAAF32A1EC02F9CE1D2 /* BugsnagSink.h in Headers */ = {isa = PBXBuildFile; fileRef = 61B5FE85C46953681D7E6196413F271A /* BugsnagSink.h */; settings = {ATTRIBUTES = (Project, ); }; }; 7882CEFF17C5B91821AD080799F6FB5D /* IPAddressV6.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 64459AA4D1DF8BDFD3F3A69BAE30D27F /* IPAddressV6.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; 7884F03CF9FA79DBEE75B5EF7658A49C /* UIView+Yoga.m in Sources */ = {isa = PBXBuildFile; fileRef = 832D92A44D7512814FD76FF6F2D14AF2 /* UIView+Yoga.m */; }; - 78915BE17253AFB06827312FC0CCBAF6 /* RNSScreen.h in Headers */ = {isa = PBXBuildFile; fileRef = 5A890AEA1B62F48472037A6E4B8FBDB8 /* RNSScreen.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 78915BE17253AFB06827312FC0CCBAF6 /* RNSScreen.h in Headers */ = {isa = PBXBuildFile; fileRef = 0350EAAB6124BECE22642E630F0062A2 /* RNSScreen.h */; settings = {ATTRIBUTES = (Project, ); }; }; 78A29331837BEDAFA3DB33EA2E609F78 /* FIRCoreDiagnosticsConnector.m in Sources */ = {isa = PBXBuildFile; fileRef = 722696C1A7A2E6B2AD5F9DA93ED3FE16 /* FIRCoreDiagnosticsConnector.m */; }; 78BB6FDBF3F970AB072D30BEC80DB9B0 /* PackedSyncPtr.h in Headers */ = {isa = PBXBuildFile; fileRef = 2A19DD955D3BD5CC92BD4C467B640CA3 /* PackedSyncPtr.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 78F927721FF33D4B9A04BF10E78C536E /* UMModuleRegistryProvider.m in Sources */ = {isa = PBXBuildFile; fileRef = 54E0E251A765F0B9EDE3FF7BF0185594 /* UMModuleRegistryProvider.m */; }; + 78F927721FF33D4B9A04BF10E78C536E /* UMModuleRegistryProvider.m in Sources */ = {isa = PBXBuildFile; fileRef = 7802BDE20DCF11D82491302C806643E7 /* UMModuleRegistryProvider.m */; }; 78FC2758830ABB5CE855643C56F43EAC /* FIRCLSThreadState.h in Headers */ = {isa = PBXBuildFile; fileRef = 71DD819B8A76B525536896B3EA7CDE0E /* FIRCLSThreadState.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 790322F76C8B7D9855BAB016FF42BBD7 /* REAPropsNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 3AF58C59174E3A5F769E8C8E86C4AC78 /* REAPropsNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 790322F76C8B7D9855BAB016FF42BBD7 /* REAPropsNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 0F6AE8861B7DFAC3DB672F5BBB668797 /* REAPropsNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; 7925BA5117C9FA8B8B85A031330AAA42 /* AsymmetricMemoryBarrier.cpp in Sources */ = {isa = PBXBuildFile; fileRef = E24640D2265596A85A0FAC291D277509 /* AsymmetricMemoryBarrier.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - 7939F295FBC0D1104EF2091FFDE8DBB0 /* BSG_RFC3339DateTool.h in Headers */ = {isa = PBXBuildFile; fileRef = 903475102B1C946FCDB837495FCD97FC /* BSG_RFC3339DateTool.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7939F295FBC0D1104EF2091FFDE8DBB0 /* BSG_RFC3339DateTool.h in Headers */ = {isa = PBXBuildFile; fileRef = 966AA607301E1831C4088AB16DB00954 /* BSG_RFC3339DateTool.h */; settings = {ATTRIBUTES = (Project, ); }; }; 7949FD6EB727E69406421858C3A31123 /* CMakeLists.txt in Sources */ = {isa = PBXBuildFile; fileRef = 60B6275CE5F7D80B0C80254CA5F105D4 /* CMakeLists.txt */; }; 7951728F21A13BEC0D339F17249D5804 /* Observables.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F59079500F70E8EF795BE4C25D289C9F /* Observables.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0 -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; 7968BD10264852AA8FD4BA57F5784960 /* IPAddressSource.h in Headers */ = {isa = PBXBuildFile; fileRef = 5038C337F9F4692F1393891BFBA14580 /* IPAddressSource.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 798AC334AF557D6B1C5EFBFAB145F000 /* BSG_KSSystemInfo.h in Headers */ = {isa = PBXBuildFile; fileRef = 5204AA6A9301A33C12E1F8E92D471B5A /* BSG_KSSystemInfo.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 798AC334AF557D6B1C5EFBFAB145F000 /* BSG_KSSystemInfo.h in Headers */ = {isa = PBXBuildFile; fileRef = 3306740FAB8D11FC5678EF7CE743EAD3 /* BSG_KSSystemInfo.h */; settings = {ATTRIBUTES = (Project, ); }; }; 79B1AC4695CB8BE38445A32F9D7AB8C9 /* de.lproj in Resources */ = {isa = PBXBuildFile; fileRef = C804C12BB5483D94BE067F36E5FACE6C /* de.lproj */; }; 79BA26C737EFCA1A5749AAE7AC3FC842 /* CancellationToken-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 7B2D5BB702C692DF290B229E14B42714 /* CancellationToken-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 79C336CF794BA6A3583102718F0C60B3 /* BSG_KSCrashSentry_Private.h in Headers */ = {isa = PBXBuildFile; fileRef = C2B44A86B749831A4227E1C725440B19 /* BSG_KSCrashSentry_Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 79C3652C23CA46FA14C08559E1882B7F /* BSG_KSCrashReportStore.h in Headers */ = {isa = PBXBuildFile; fileRef = DC3B58AA606717C0FA45665D9976F685 /* BSG_KSCrashReportStore.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 79C336CF794BA6A3583102718F0C60B3 /* BSG_KSCrashSentry_Private.h in Headers */ = {isa = PBXBuildFile; fileRef = 5D5B6DDBD1676530D94609E7A91E5A0B /* BSG_KSCrashSentry_Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 79C3652C23CA46FA14C08559E1882B7F /* BSG_KSCrashReportStore.h in Headers */ = {isa = PBXBuildFile; fileRef = B27C49DEBDB36667C06ECE3FAD24BEF0 /* BSG_KSCrashReportStore.h */; settings = {ATTRIBUTES = (Project, ); }; }; 79D1B1B06EE6E1F8AADDCBA060A8D0CB /* IOBufQueue.h in Headers */ = {isa = PBXBuildFile; fileRef = F56CDC8B5D61606D9B183428F20D7D0F /* IOBufQueue.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 79E4E9207266A429AE14B16726F40034 /* REAConcatNode.m in Sources */ = {isa = PBXBuildFile; fileRef = CB39A92AF5D039A61F5EB788855D543A /* REAConcatNode.m */; }; + 79E4E9207266A429AE14B16726F40034 /* REAConcatNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 5FB8C63F680562186BBD3E59739B4273 /* REAConcatNode.m */; }; 7A0EB74832117D4542A2518BDAFAD9E4 /* FBCxxFollyDynamicConvert.h in Headers */ = {isa = PBXBuildFile; fileRef = 37CDB61E056A7D391B5880650C9902FC /* FBCxxFollyDynamicConvert.h */; settings = {ATTRIBUTES = (Project, ); }; }; 7A37AE5487B43F5EE6A9CE1D6F099D47 /* MemoryFile_Android.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FF6EBF5BB635669BCED603A25992E8DC /* MemoryFile_Android.cpp */; settings = {COMPILER_FLAGS = "-x objective-c++ -fno-objc-arc"; }; }; 7A383B2997E0FF8D0D194A0EDFD6CBC2 /* ScopeGuard.h in Headers */ = {isa = PBXBuildFile; fileRef = 614DB9EE5C02F76486B1E159C320BE2A /* ScopeGuard.h */; settings = {ATTRIBUTES = (Project, ); }; }; 7A4168BC23C43D1A9C747C037A13AD9F /* SDImageLoader.h in Headers */ = {isa = PBXBuildFile; fileRef = 485209EA6D0397BC5BCA057BB7370F2E /* SDImageLoader.h */; settings = {ATTRIBUTES = (Project, ); }; }; 7A5135422A29083A9AA96DBDDCE35D93 /* ScheduledRSocketResponder.h in Headers */ = {isa = PBXBuildFile; fileRef = 7A36DBB413643435E8629151EB8FDC16 /* ScheduledRSocketResponder.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7A7175193EFAA9CF78B47CEB43DC6278 /* project.pbxproj in Sources */ = {isa = PBXBuildFile; fileRef = 1391CAE7988E836552045C7CEE132EAB /* project.pbxproj */; }; + 7A7175193EFAA9CF78B47CEB43DC6278 /* project.pbxproj in Sources */ = {isa = PBXBuildFile; fileRef = 3737D2F084443F0B2F0104E57A8E33D9 /* project.pbxproj */; }; 7A78222EA8111E0D5019C2D5F945758A /* SKStateUpdateCPPWrapper.h in Headers */ = {isa = PBXBuildFile; fileRef = F631A2AFFC433D3B38BDDE03D8404DC5 /* SKStateUpdateCPPWrapper.h */; settings = {ATTRIBUTES = (Project, ); }; }; 7A7834A2F72C293E7AC78093E1B67C6E /* CacheLocality.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 58F45912CD5BB643A8BF9E1502089FF5 /* CacheLocality.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - 7A7DE706BBF22FB0241D53BC854D7D01 /* RCTShadowView+Layout.m in Sources */ = {isa = PBXBuildFile; fileRef = AD1058B0F20D3C367979F14EF0242078 /* RCTShadowView+Layout.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 7A809CF6CB525F8195BAC08957315DDC /* log.h in Headers */ = {isa = PBXBuildFile; fileRef = C56C88D596F7791E65D2EA37041F6B22 /* log.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7A9E13E3857A7759892604ABA46BD761 /* TurboCxxModule.cpp in Sources */ = {isa = PBXBuildFile; fileRef = C3C96C1C6DF40074C58E556917065E41 /* TurboCxxModule.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 7AB70076D594A0A054F93D465F06268A /* ARTSurfaceViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 6E7A86BB103B0B52942B03CC6939F793 /* ARTSurfaceViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7AD0DBA9E15F69157618464E1122115E /* REAValueNode.h in Headers */ = {isa = PBXBuildFile; fileRef = E0579A2778DF7E58097C9B4C0F4F2F5B /* REAValueNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7ADA9C6F931A88FF8329785C5F89F2CC /* decorator.h in Headers */ = {isa = PBXBuildFile; fileRef = 5E43337D8BFDDF91530342AF8F92E649 /* decorator.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7AECC3D50F123A379D48712223BB9D53 /* RCTConvert+REATransition.h in Headers */ = {isa = PBXBuildFile; fileRef = F084391389D90EF8CF4ECFCE6ACE402F /* RCTConvert+REATransition.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7A7DE706BBF22FB0241D53BC854D7D01 /* RCTShadowView+Layout.m in Sources */ = {isa = PBXBuildFile; fileRef = 82C1A4D1D1DC5C630555A4C48B35A723 /* RCTShadowView+Layout.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 7A809CF6CB525F8195BAC08957315DDC /* log.h in Headers */ = {isa = PBXBuildFile; fileRef = FEEEF26665A6F41DBAC7E39F1E50E5A5 /* log.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7A9E13E3857A7759892604ABA46BD761 /* TurboCxxModule.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 00892DBCDA5DECE33799697A8BDCEAB7 /* TurboCxxModule.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 7AB70076D594A0A054F93D465F06268A /* ARTSurfaceViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 784B1BD0945E4C0B9FA4CC2342BAB146 /* ARTSurfaceViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7AD0DBA9E15F69157618464E1122115E /* REAValueNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 15F9210C803B8C538F79B6F81450930F /* REAValueNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7ADA9C6F931A88FF8329785C5F89F2CC /* decorator.h in Headers */ = {isa = PBXBuildFile; fileRef = 0F098786269C29117E9E9941D354A2F5 /* decorator.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7AECC3D50F123A379D48712223BB9D53 /* RCTConvert+REATransition.h in Headers */ = {isa = PBXBuildFile; fileRef = 9A8C3BE4125E69A396D54F11F1B7D3AA /* RCTConvert+REATransition.h */; settings = {ATTRIBUTES = (Project, ); }; }; 7B20A6CB3B0EF8E33D7A99FA68049EBB /* FIRExceptionModel.h in Headers */ = {isa = PBXBuildFile; fileRef = B23FCC900DEE77A7CB9FC85FEB2D8393 /* FIRExceptionModel.h */; settings = {ATTRIBUTES = (Project, ); }; }; 7B4B0B3E7AAB33A80AC2BB45C4CC9E70 /* FIRCLSDwarfExpressionMachine.c in Sources */ = {isa = PBXBuildFile; fileRef = A41B1B89AADA3EBB33CDDE3B901F241D /* FIRCLSDwarfExpressionMachine.c */; }; 7B5442DCEF1DE4B2012EAF97871F3036 /* SlowFingerprint.h in Headers */ = {isa = PBXBuildFile; fileRef = 1F2CA285C0A6E2486013BAF599AA9B58 /* SlowFingerprint.h */; settings = {ATTRIBUTES = (Project, ); }; }; 7B6F6115673E71640B69E46F867EA6F7 /* Promise.h in Headers */ = {isa = PBXBuildFile; fileRef = 5C375199C5FB66581663FA8CB016F62D /* Promise.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7B75D105A41BD1B17DFB3CCB723AEA1C /* RCTImageViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 427A9B8B6278E24E05EFFFA7F26432DA /* RCTImageViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7B8176A0EC34E5A6E599C6B07EAE5D58 /* react-native-cameraroll-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 96977E1E25852EB139B549371C3666EF /* react-native-cameraroll-dummy.m */; }; + 7B75D105A41BD1B17DFB3CCB723AEA1C /* RCTImageViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 5A5E19C7F9E618E9F0D4AF7EE50F9FAE /* RCTImageViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7B8176A0EC34E5A6E599C6B07EAE5D58 /* react-native-cameraroll-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 00EC4CE6F1F7EC1C98F06E4935F70880 /* react-native-cameraroll-dummy.m */; }; 7B867BDB50330206036412351BCA3A62 /* CancellationToken.h in Headers */ = {isa = PBXBuildFile; fileRef = 3A5C68C3E06CABDDC5A1124E030379E2 /* CancellationToken.h */; settings = {ATTRIBUTES = (Project, ); }; }; 7B9F31AF2CFDDAA733DC57561E908CB5 /* SharedPromise.h in Headers */ = {isa = PBXBuildFile; fileRef = 3AFF9FAF94EB8249D1B1287FF2C0FF3B /* SharedPromise.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7BB01525385D8F0DD4FE7F426FB113DE /* RCTInputAccessoryShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = 18F15888BFDDF2FB46513A5BA7EA613E /* RCTInputAccessoryShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7BB8383F8DF7A272DB09DBF173C549F4 /* RCTTextSelection.h in Headers */ = {isa = PBXBuildFile; fileRef = C78E04DE52320ED3AC3922C2299052E0 /* RCTTextSelection.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7BB01525385D8F0DD4FE7F426FB113DE /* RCTInputAccessoryShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = 9760996D61B1B09583A96BF0100D6BB7 /* RCTInputAccessoryShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7BB8383F8DF7A272DB09DBF173C549F4 /* RCTTextSelection.h in Headers */ = {isa = PBXBuildFile; fileRef = F0955CC35725C4D3577984ECD6A13A33 /* RCTTextSelection.h */; settings = {ATTRIBUTES = (Project, ); }; }; 7BCC08DBECE42EBE69A54DBA30F6B549 /* MoveWrapper.h in Headers */ = {isa = PBXBuildFile; fileRef = 11781FC8B970EF2BD34FA55A5B0464DD /* MoveWrapper.h */; settings = {ATTRIBUTES = (Project, ); }; }; 7BCC0F87573DBEFDD0F30001E24463A6 /* GULAppDelegateSwizzler.h in Headers */ = {isa = PBXBuildFile; fileRef = 2F92B6663CEAC4B5F3C08886E565F523 /* GULAppDelegateSwizzler.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7BF84EA30F0BA4C5005EB814DD6C262B /* RCTImageLoader.mm in Sources */ = {isa = PBXBuildFile; fileRef = 55D10A0B7C4CD81504231DEC178F3312 /* RCTImageLoader.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; - 7BF91B0A68CA4C07C4ECF6863767CAB1 /* Yoga.h in Headers */ = {isa = PBXBuildFile; fileRef = A206ABE42AA13ECDE45320331B022FA7 /* Yoga.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7BF84EA30F0BA4C5005EB814DD6C262B /* RCTImageLoader.mm in Sources */ = {isa = PBXBuildFile; fileRef = E7E9788EF5DEB806E5C7DD74AE74E575 /* RCTImageLoader.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + 7BF91B0A68CA4C07C4ECF6863767CAB1 /* Yoga.h in Headers */ = {isa = PBXBuildFile; fileRef = 5AEB87B4EAC3FA3B75267CEC218264AE /* Yoga.h */; settings = {ATTRIBUTES = (Project, ); }; }; 7C1666EB58E8990F4CE28BC7508AE115 /* FlowableConcatOperators.h in Headers */ = {isa = PBXBuildFile; fileRef = 01376D456DEA9117D59A2869FA227E66 /* FlowableConcatOperators.h */; settings = {ATTRIBUTES = (Project, ); }; }; 7C1AB78955A97D0433B735EEA05ED2F4 /* fixed-dtoa.h in Headers */ = {isa = PBXBuildFile; fileRef = 2ADA4F6534A98D5CDE31EBF47F865BA5 /* fixed-dtoa.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7C1C2320FB6EA73B9F67F38B61D62E45 /* YGConfig.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 4A6834DBD5AA0D91D155DBECA8185C54 /* YGConfig.cpp */; settings = {COMPILER_FLAGS = "-fno-omit-frame-pointer -fexceptions -Wall -Werror -std=c++1y -fPIC -fno-objc-arc"; }; }; + 7C1C2320FB6EA73B9F67F38B61D62E45 /* YGConfig.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 94C474C82BBF846E160C0EEA99712E0B /* YGConfig.cpp */; settings = {COMPILER_FLAGS = "-fno-omit-frame-pointer -fexceptions -Wall -Werror -std=c++1y -fPIC -fno-objc-arc"; }; }; 7C2AD3B775432BCF22E34431FC8F3EFE /* Assume.h in Headers */ = {isa = PBXBuildFile; fileRef = 57F94E78779960579BA8E3D95887285D /* Assume.h */; settings = {ATTRIBUTES = (Project, ); }; }; 7C2D89A79A5CCE2428023B7CDC78BBBC /* YGLayout.m in Sources */ = {isa = PBXBuildFile; fileRef = 21174BB77457E4F7273613A16BB08744 /* YGLayout.m */; }; 7C4DA271EB10F9E06486E8335DA8F4BD /* RSocketRequester.h in Headers */ = {isa = PBXBuildFile; fileRef = 2BF49EF972AFDCEF4147E3631E9E8D1F /* RSocketRequester.h */; settings = {ATTRIBUTES = (Project, ); }; }; 7C8725A38E542DCF9E465E8183FED89E /* FIRComponent.h in Headers */ = {isa = PBXBuildFile; fileRef = 84AFEB5F65C2E8045DEE3F7DCAD073B6 /* FIRComponent.h */; settings = {ATTRIBUTES = (Project, ); }; }; 7C93AFDA40EE94CE37DD2F9066D0D88A /* FIRCLSMachOSlice.h in Headers */ = {isa = PBXBuildFile; fileRef = 96962FA38898F1D7D4495FB7F8ED9007 /* FIRCLSMachOSlice.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7CCFEA95B919EC2A0D5B7A413D55859F /* EXAppleAuthenticationMappings.m in Sources */ = {isa = PBXBuildFile; fileRef = 6714A30477A6F584F593D6ED6436AEBF /* EXAppleAuthenticationMappings.m */; }; + 7CCFEA95B919EC2A0D5B7A413D55859F /* EXAppleAuthenticationMappings.m in Sources */ = {isa = PBXBuildFile; fileRef = 6A427698B8FD252ADCDCC46934F4BE17 /* EXAppleAuthenticationMappings.m */; }; 7CD1703B557168ABA37AE8C1A0238E5D /* SKTapListenerImpl.h in Headers */ = {isa = PBXBuildFile; fileRef = 75F00DB42604AB2AE3D489DB738A4D7C /* SKTapListenerImpl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7CF381D9B3B20C531AEFD960DE5AB34D /* RCTUITextView.m in Sources */ = {isa = PBXBuildFile; fileRef = DBFACC49F2EBD1BC517C49872975356A /* RCTUITextView.m */; }; + 7CF381D9B3B20C531AEFD960DE5AB34D /* RCTUITextView.m in Sources */ = {isa = PBXBuildFile; fileRef = 81F07119EA14BCACE45B5265661DEC55 /* RCTUITextView.m */; }; 7CF643F3FC2F33A94A2EDC7F942752D3 /* ProtocolVersion.h in Headers */ = {isa = PBXBuildFile; fileRef = 5A88740BFEF9E93420EA41D40E2785CE /* ProtocolVersion.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7CFF3687BC9FE4EC0FCE4DE43AC06B06 /* ARTGroup.h in Headers */ = {isa = PBXBuildFile; fileRef = 48684E712058B9F3CABC3CFA659529DB /* ARTGroup.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7CFF3687BC9FE4EC0FCE4DE43AC06B06 /* ARTGroup.h in Headers */ = {isa = PBXBuildFile; fileRef = F5D8A37F434D48BEC54CB660B1659BAF /* ARTGroup.h */; settings = {ATTRIBUTES = (Project, ); }; }; 7D2A357365A1488E3468A15CC26CA428 /* RecordIO-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 917F98C847A7B25E7D52D5C48C15980D /* RecordIO-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; 7D32CB346A8A737EF45F15BB54F57AFD /* rescaler_utils.c in Sources */ = {isa = PBXBuildFile; fileRef = 05C5CAF6C029051A210C459C610E623F /* rescaler_utils.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; 7D38F08E59ABB6BF7E221D088AB83D4D /* Subscription.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 7503E80611685718A42E1BD074E3DDA6 /* Subscription.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0 -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - 7D394A74FEE4718CF8631745FB632160 /* RCTStyleAnimatedNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 43D430E6596600DC08C865EE93659233 /* RCTStyleAnimatedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7D394A74FEE4718CF8631745FB632160 /* RCTStyleAnimatedNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 1135F54BE20F138B7BACB896A2F50D0C /* RCTStyleAnimatedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; 7D4BDCF275177CE5FFE1206D9D8E99B4 /* FIRErrorCode.h in Headers */ = {isa = PBXBuildFile; fileRef = 5EA6F0E87B63E1232C20D9483BE5FF54 /* FIRErrorCode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7D535B843CD5EEE4F305E07FED2F7759 /* RCTPlatform.mm in Sources */ = {isa = PBXBuildFile; fileRef = 47499BB309F53E2C9508CE83D0567930 /* RCTPlatform.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + 7D535B843CD5EEE4F305E07FED2F7759 /* RCTPlatform.mm in Sources */ = {isa = PBXBuildFile; fileRef = E2BC5554A4B30B3596021E95E913B75B /* RCTPlatform.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; 7D6A5E9C9F6A6D7C4B6CAAB74BA8D214 /* UTF8String.h in Headers */ = {isa = PBXBuildFile; fileRef = A3931C325E746C77373C3AE340D4ACBD /* UTF8String.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7D74C0F449D31806561D458B8955CC9C /* UMModuleRegistryConsumer.h in Headers */ = {isa = PBXBuildFile; fileRef = C1F307C0DE699D9D8A3B06C74B03807A /* UMModuleRegistryConsumer.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7D74C0F449D31806561D458B8955CC9C /* UMModuleRegistryConsumer.h in Headers */ = {isa = PBXBuildFile; fileRef = 12FB1FD075CE4489FF614176A888A7CB /* UMModuleRegistryConsumer.h */; settings = {ATTRIBUTES = (Project, ); }; }; 7D7C46AB2EEE8C19958AA671383ABF2F /* vlog_is_on.h in Headers */ = {isa = PBXBuildFile; fileRef = 9CF89B85A794B593C2AE74CE7073EE37 /* vlog_is_on.h */; settings = {ATTRIBUTES = (Project, ); }; }; 7DA1F0C500E346BD807AB7A5BBABFF44 /* FIRCLSURLSessionDownloadTask_PrivateMethods.h in Headers */ = {isa = PBXBuildFile; fileRef = D9BA0287D044D84023891A211A1AD730 /* FIRCLSURLSessionDownloadTask_PrivateMethods.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7DBB6FE7A33666EC56891D9E1D5F38D2 /* RCTMacros.h in Headers */ = {isa = PBXBuildFile; fileRef = 7B08E71E61F5D8DE5D0C6A89F7E3C9D0 /* RCTMacros.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7DCD0A19CA7E2541C1CC71C33300C90D /* RCTFileReaderModule.mm in Sources */ = {isa = PBXBuildFile; fileRef = 232C7FC1437EA058474400006D750CB1 /* RCTFileReaderModule.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + 7DBB6FE7A33666EC56891D9E1D5F38D2 /* RCTMacros.h in Headers */ = {isa = PBXBuildFile; fileRef = C71361CC0F45442F8052687DB28BFA93 /* RCTMacros.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7DCD0A19CA7E2541C1CC71C33300C90D /* RCTFileReaderModule.mm in Sources */ = {isa = PBXBuildFile; fileRef = 937FFBD26A0A534E7B9202058831929F /* RCTFileReaderModule.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; 7E2B013649BB99A98F84D89DB9802E80 /* FIRCLSReportManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 37880D003F3EF2EC6BD191F6E5B2A95A /* FIRCLSReportManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; 7E6785216D5A27AA388421B8CB226AA1 /* enc_sse2.c in Sources */ = {isa = PBXBuildFile; fileRef = E866F278BD58D06B8B3E4485D3248A75 /* enc_sse2.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 7E796C7B6B601FA5CFA6D5154D7B17C1 /* REATransition.m in Sources */ = {isa = PBXBuildFile; fileRef = 3E96E36F5AAF6A80F189E890142C6790 /* REATransition.m */; }; - 7E797A5473989218417BACB135D5CE5C /* RCTImageCache.m in Sources */ = {isa = PBXBuildFile; fileRef = 9C9DF2BCD1A1D783499D7E9241637784 /* RCTImageCache.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; - 7E9EB94F10BDEC8A2886AF6E74088390 /* BugsnagConfiguration.h in Headers */ = {isa = PBXBuildFile; fileRef = E5D59E867EB39C7855E4092AEE04B104 /* BugsnagConfiguration.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7EAB54DB31F8AD2AA68AFE3659D27E89 /* ARTShape.h in Headers */ = {isa = PBXBuildFile; fileRef = 60A6922B50E417EA04251F4E5C3F800B /* ARTShape.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7E796C7B6B601FA5CFA6D5154D7B17C1 /* REATransition.m in Sources */ = {isa = PBXBuildFile; fileRef = 25E101047A1BCAA18A100456D9C1C2C3 /* REATransition.m */; }; + 7E797A5473989218417BACB135D5CE5C /* RCTImageCache.m in Sources */ = {isa = PBXBuildFile; fileRef = 1473448D95B518282D24564BECDF5F19 /* RCTImageCache.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + 7E9EB94F10BDEC8A2886AF6E74088390 /* BugsnagConfiguration.h in Headers */ = {isa = PBXBuildFile; fileRef = CA6F2569D4EE9EE19902BDE4DFB7EA84 /* BugsnagConfiguration.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7EAB54DB31F8AD2AA68AFE3659D27E89 /* ARTShape.h in Headers */ = {isa = PBXBuildFile; fileRef = A1887075EA827385176388B2D8408C75 /* ARTShape.h */; settings = {ATTRIBUTES = (Project, ); }; }; 7EB2258E75A0CFAEB893EFE5CAB78DAE /* ConcurrentSkipList-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = BF4FE7D66C99F2D0780E5D79E2950BD0 /* ConcurrentSkipList-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; 7EBC5E3CE8245A96F27BA752BA826970 /* pb_common.c in Sources */ = {isa = PBXBuildFile; fileRef = 2CF0981CDCF6AD04CB4CBBBF64708A21 /* pb_common.c */; settings = {COMPILER_FLAGS = "-fno-objc-arc -fno-objc-arc -fno-objc-arc"; }; }; - 7ED64F612BBAF53D750606C2C135459A /* RCTClipboard.h in Headers */ = {isa = PBXBuildFile; fileRef = E3991DCF182C3796F4FF25A3DBA63A13 /* RCTClipboard.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7ED64F612BBAF53D750606C2C135459A /* RCTClipboard.h in Headers */ = {isa = PBXBuildFile; fileRef = 2D805B65BB1D28514278D8AAB986AD18 /* RCTClipboard.h */; settings = {ATTRIBUTES = (Project, ); }; }; 7F26FFEED6990F7DE6542F85864BF163 /* AsymmetricMemoryBarrier.h in Headers */ = {isa = PBXBuildFile; fileRef = 9ED19ABBF136854713A6A0B531EAEB55 /* AsymmetricMemoryBarrier.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7F587E5E97E38B24059D626558F1FAF8 /* REATransitionAnimation.m in Sources */ = {isa = PBXBuildFile; fileRef = DF32A7BE67DD8929CB180EB9115D7E79 /* REATransitionAnimation.m */; }; + 7F587E5E97E38B24059D626558F1FAF8 /* REATransitionAnimation.m in Sources */ = {isa = PBXBuildFile; fileRef = F0749510A7A80D9C4232E235BBE1BEB6 /* REATransitionAnimation.m */; }; 7F7D87AE67FE4FA062A758F6C1B6B2B2 /* GDTCCTUploader.h in Headers */ = {isa = PBXBuildFile; fileRef = BF16A1CEAFEB987C690058AAF6133DA7 /* GDTCCTUploader.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7F9204B5D0D09E2C0FE4014650A3AF06 /* RCTSettingsPlugins.h in Headers */ = {isa = PBXBuildFile; fileRef = C6E18ECD8460A47BFD8515DBE328A65F /* RCTSettingsPlugins.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7FD360DC4345EFBDFF0438094C402356 /* RCTJSStackFrame.m in Sources */ = {isa = PBXBuildFile; fileRef = 17C6B8E82996223DC96A44FA24D60F06 /* RCTJSStackFrame.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 803F6061B2E4BAF2D5EA12A5848CFF56 /* RCTURLRequestDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = FF53E5999EFE1C088815317A94B7BEC5 /* RCTURLRequestDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7F9204B5D0D09E2C0FE4014650A3AF06 /* RCTSettingsPlugins.h in Headers */ = {isa = PBXBuildFile; fileRef = C3F1FB62C42FF3D34C4E94892850221A /* RCTSettingsPlugins.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7FD360DC4345EFBDFF0438094C402356 /* RCTJSStackFrame.m in Sources */ = {isa = PBXBuildFile; fileRef = CFC4318F0869259F0C82E75701162A3E /* RCTJSStackFrame.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 803F6061B2E4BAF2D5EA12A5848CFF56 /* RCTURLRequestDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = 2F1D595180249D6C411CEBF375E6B6C4 /* RCTURLRequestDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; }; 804663488445831432C6D6B04C2DAD1E /* ScheduledFrameProcessor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 5EA8164CADC66E4133EA05AA9B8B8B20 /* ScheduledFrameProcessor.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0 -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; 8062FBC86856B74AEB6101746CBA9E3C /* openssl_aes_core.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9ED7836E27AA6987A9009F6A6F03831A /* openssl_aes_core.cpp */; settings = {COMPILER_FLAGS = "-x objective-c++ -fno-objc-arc"; }; }; 8070AA7AE73618DDBA207E20AA25953C /* HardwareConcurrency.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 0113683947F2278F3838BAF591B83056 /* HardwareConcurrency.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; @@ -1811,219 +1804,218 @@ 80C026B0E39AC1F1703DF72A313A900B /* cost_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = 7AD2D5855891003013F45F608D5CD6B4 /* cost_enc.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; 80CDAEE930D06D1D2D6BCD00DEBE8108 /* StreamStateMachineBase.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9447D505967836D58DBCC077927687D4 /* StreamStateMachineBase.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0 -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; 80D2594A93ECDA477CA76FDC03F368B5 /* Utility.h in Headers */ = {isa = PBXBuildFile; fileRef = 2E291DD718D8678E695D1CB3D12E569E /* Utility.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 80D80B24E94043C19C5416A8C59E415B /* Pods-ShareRocketChatRN-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 641004BDF9AA14E0CB1A8A97C6AFA116 /* Pods-ShareRocketChatRN-dummy.m */; }; - 80ED458ED6B52740A082670EF5B8A518 /* RCTInputAccessoryView.m in Sources */ = {isa = PBXBuildFile; fileRef = 91E9687C6628063123FD14C1A1C30A45 /* RCTInputAccessoryView.m */; }; + 80ED458ED6B52740A082670EF5B8A518 /* RCTInputAccessoryView.m in Sources */ = {isa = PBXBuildFile; fileRef = 9E5B1F1258B76DB7E85081EC04F9AFD0 /* RCTInputAccessoryView.m */; }; 81071E43B116BEE100693E96C1F9FE77 /* Replaceable.h in Headers */ = {isa = PBXBuildFile; fileRef = FE4876C0BE018609FE8464CE7E29D818 /* Replaceable.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8124AC93B4128C31B230B4F31B40C992 /* RCTBridgeDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = 62147477D0529B02C595D66D9903B668 /* RCTBridgeDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 813B13AB2E1AFC1A69F181CA99D5BB1A /* RCTFrameAnimation.m in Sources */ = {isa = PBXBuildFile; fileRef = 157534A2B0421B718C5B1C4E52FFBFC3 /* RCTFrameAnimation.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + 8124AC93B4128C31B230B4F31B40C992 /* RCTBridgeDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = 757356D3CA675CE5630F7D57BCA0F804 /* RCTBridgeDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 813B13AB2E1AFC1A69F181CA99D5BB1A /* RCTFrameAnimation.m in Sources */ = {isa = PBXBuildFile; fileRef = 792CC5B197E150A7EB8F1CB839A0913A /* RCTFrameAnimation.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; 813E4CB01E4386CA919F5664F7E9D09E /* FKPortForwardingCommon.h in Headers */ = {isa = PBXBuildFile; fileRef = 3F6DC6A2F7A5A7A399F24BF1D784F4BE /* FKPortForwardingCommon.h */; settings = {ATTRIBUTES = (Project, ); }; }; 8145C77FDDC575D33B405FF7F421A215 /* lossless_enc_neon.c in Sources */ = {isa = PBXBuildFile; fileRef = 0797D4DAA2370A5E22527A6B4C533CFD /* lossless_enc_neon.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; 815003AAAEED0A9EDD880F60FCFD4281 /* FIRCLSMachO.h in Headers */ = {isa = PBXBuildFile; fileRef = FB209D641C6FF865E464757D6868CBFD /* FIRCLSMachO.h */; settings = {ATTRIBUTES = (Project, ); }; }; 81561CA2BD7111B1F6C3D3EC67550617 /* StaticTracepoint-ELFx86.h in Headers */ = {isa = PBXBuildFile; fileRef = 3A41EF9B487EC8CB415C49EAF6C94677 /* StaticTracepoint-ELFx86.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 815CD5B4AC94FE5710CAC113329AB262 /* RCTPropsAnimatedNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 686AE5DA8D614D5693B035866D43A309 /* RCTPropsAnimatedNode.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + 815CD5B4AC94FE5710CAC113329AB262 /* RCTPropsAnimatedNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 65B294002EB5B2BE850B54D508CCD95E /* RCTPropsAnimatedNode.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; 816247A876AC24CFC889B8629D8699B2 /* FlipperConnection.h in Headers */ = {isa = PBXBuildFile; fileRef = 8239A37AFF72B7EFA62A781E5DEAEAD4 /* FlipperConnection.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 817F80FAD6CAC88EA2EA12B86A15C086 /* UMLogManager.h in Headers */ = {isa = PBXBuildFile; fileRef = F3C71100E34406E799C96C08C5F30641 /* UMLogManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 819836474963B13AE93DBA37FF26CF91 /* RNCAsyncStorage-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 23884F2077F3BCEBCC32F255C583030B /* RNCAsyncStorage-dummy.m */; }; + 817F80FAD6CAC88EA2EA12B86A15C086 /* UMLogManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 026BEC126F4F1395BF37300DB4E3530E /* UMLogManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 819836474963B13AE93DBA37FF26CF91 /* RNCAsyncStorage-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = BF546F3405187DE219241C660D45568C /* RNCAsyncStorage-dummy.m */; }; 819F83D63B167874E2EE18604EFDA365 /* bignum.cc in Sources */ = {isa = PBXBuildFile; fileRef = FE2B7253C03CD7155EB7903E06BF55B7 /* bignum.cc */; settings = {COMPILER_FLAGS = "-Wno-unreachable-code"; }; }; 81CDD761CE987A83E4B9D0308E37CBBC /* F14Set-fwd.h in Headers */ = {isa = PBXBuildFile; fileRef = 5893C1031EF50C30EDF56EA0B4249FDB /* F14Set-fwd.h */; settings = {ATTRIBUTES = (Project, ); }; }; 81DC789630EA64FE7CCB43BD80426A0C /* SoftRealTimeExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = 954C19028C0EF32BBAB56BB49FF5319D /* SoftRealTimeExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; 81E1D7AABE1CC4754D5E22DBE883CA12 /* TOCroppedImageAttributes.h in Headers */ = {isa = PBXBuildFile; fileRef = 6445EA0045D686A18AE86087E3588140 /* TOCroppedImageAttributes.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 81F1D8104C6D7CE7780E40807E43438B /* REABlockNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 428C6C0EE85E68F26CB4D2AADAFA755F /* REABlockNode.m */; }; - 81F4030F6A4BF6B68FC721E6872ADA3E /* JSBigString.h in Headers */ = {isa = PBXBuildFile; fileRef = A0DE001CBD28C67A32BEF86396867FAE /* JSBigString.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 81F1D8104C6D7CE7780E40807E43438B /* REABlockNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 01FBB60C12BF83A6945FAB06D9E0D432 /* REABlockNode.m */; }; + 81F4030F6A4BF6B68FC721E6872ADA3E /* JSBigString.h in Headers */ = {isa = PBXBuildFile; fileRef = 9646485F24F614398BC73538B6CE21C5 /* JSBigString.h */; settings = {ATTRIBUTES = (Project, ); }; }; 81FC60A335BDB739D75D24ED623A8264 /* enc.c in Sources */ = {isa = PBXBuildFile; fileRef = 6DAB733604A3A1625FCA47DDFD1AF471 /* enc.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 8210666640C5B1AF7DAB2FBA2292A1D1 /* ReactNativeShareExtension.m in Sources */ = {isa = PBXBuildFile; fileRef = 87FEE5BC0141D3918871D5183A153825 /* ReactNativeShareExtension.m */; }; + 8210666640C5B1AF7DAB2FBA2292A1D1 /* ReactNativeShareExtension.m in Sources */ = {isa = PBXBuildFile; fileRef = 19F477349FD2D794BE96B2CD391FD731 /* ReactNativeShareExtension.m */; }; 82231D09FD382B02393BB0898E36EE4C /* RelaxedConcurrentPriorityQueue.h in Headers */ = {isa = PBXBuildFile; fileRef = B044E7381B12A15E93C5D3C018AA9CF5 /* RelaxedConcurrentPriorityQueue.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 822BC5301A3665DFE565C33592ECFBA4 /* JSCRuntime.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2212A3443B87C1435F3F8662B641B1A3 /* JSCRuntime.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 822BC5301A3665DFE565C33592ECFBA4 /* JSCRuntime.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A13E22AB2A0AEAD5E56AC5EB66D1CADD /* JSCRuntime.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; 823F08603B32859CE18D9E3D37357A54 /* SocketFileDescriptorMap.h in Headers */ = {isa = PBXBuildFile; fileRef = 95362C0876B6F247A01415419E797923 /* SocketFileDescriptorMap.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 828433A19B587163146684B386C82DBD /* RNFBJSON.h in Headers */ = {isa = PBXBuildFile; fileRef = BF24D0A4E2EDB9C0D750B3C4EA3BEAC0 /* RNFBJSON.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 828433A19B587163146684B386C82DBD /* RNFBJSON.h in Headers */ = {isa = PBXBuildFile; fileRef = FAEE8FD0388A3BDD44335132BDAF74DD /* RNFBJSON.h */; settings = {ATTRIBUTES = (Project, ); }; }; 829168B41AB0527695E68C1D5380C266 /* JSONSchema.h in Headers */ = {isa = PBXBuildFile; fileRef = F881D6AA1EC6DEBD0DFBE477EE6BD3A9 /* JSONSchema.h */; settings = {ATTRIBUTES = (Project, ); }; }; 82B1A45D03F70BF51889F00D72DDE928 /* FIRVersion.m in Sources */ = {isa = PBXBuildFile; fileRef = A67B2DCB63EE65810BD99DD048AFCCFF /* FIRVersion.m */; }; - 82B3ACF24FBA461B54C393C8E8057A62 /* UMErrorCodes.m in Sources */ = {isa = PBXBuildFile; fileRef = 02EDDF8800B6E8AC8B0D81262371EA6F /* UMErrorCodes.m */; }; + 82B3ACF24FBA461B54C393C8E8057A62 /* UMErrorCodes.m in Sources */ = {isa = PBXBuildFile; fileRef = ACC862A893B32F26CDE968FE948F22F8 /* UMErrorCodes.m */; }; 82BC85853B48599CF7034D4978C66459 /* SKNodeDescriptor.h in Headers */ = {isa = PBXBuildFile; fileRef = 776AD82841419512C42D473B47874F49 /* SKNodeDescriptor.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 82C151788999AB9E1C8AA08F7CED8187 /* BugsnagHandledState.h in Headers */ = {isa = PBXBuildFile; fileRef = E93EDFD8DDD3FDA36278763CCFF9D8D7 /* BugsnagHandledState.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 82C151788999AB9E1C8AA08F7CED8187 /* BugsnagHandledState.h in Headers */ = {isa = PBXBuildFile; fileRef = FFEABEB6EC10D3BF0EE60B8C738655EE /* BugsnagHandledState.h */; settings = {ATTRIBUTES = (Project, ); }; }; 82D7D9FA03B146253231143F5569B020 /* crashlytics.nanopb.c in Sources */ = {isa = PBXBuildFile; fileRef = 4B2FA3F110E2F5285F8EFD3757E2E7F1 /* crashlytics.nanopb.c */; }; 82FAD75153594152D13166FA9C918B07 /* utils.h in Headers */ = {isa = PBXBuildFile; fileRef = 309FD4BB766095C8FFCE8F8CA5ECB8C8 /* utils.h */; settings = {ATTRIBUTES = (Project, ); }; }; 83136AA76652C7045CA261184E60A544 /* DynamicParser-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = ACC1D49C3223D0787BCE5A43FDA89DAC /* DynamicParser-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 832BB43225C707F69AA6D873B8D18F6E /* React-RCTNetwork-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = DB204485D17219DFED5207BE90EC1E30 /* React-RCTNetwork-dummy.m */; }; + 832BB43225C707F69AA6D873B8D18F6E /* React-RCTNetwork-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = A94C1972858879371C734E8235A9B521 /* React-RCTNetwork-dummy.m */; }; 83473148D1A03C53409742D811D3583F /* QueuedImmediateExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = BEA4D625CB57F79C19032230C45B48E0 /* QueuedImmediateExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; 8355F5AC1AF62C88E8E0CC029ED7862C /* color_cache_utils.c in Sources */ = {isa = PBXBuildFile; fileRef = C04E46048936CB670BF56D65CD527221 /* color_cache_utils.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; 8363FDC00B483DC0C835683A720EF012 /* Asm.h in Headers */ = {isa = PBXBuildFile; fileRef = D14272FE2F5771295935154A40285468 /* Asm.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 83D981D69D42BD8850D6FE8DD2D18CB8 /* RNCSafeAreaProvider.m in Sources */ = {isa = PBXBuildFile; fileRef = 0B3CCACC1F606AC236D18A603EDDF651 /* RNCSafeAreaProvider.m */; }; - 83F508860A69DF4881BDC1557FF7E2B4 /* RCTProgressViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 9CC79B7BEEE1E05B8DF70B4DBDA723A3 /* RCTProgressViewManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 83D981D69D42BD8850D6FE8DD2D18CB8 /* RNCSafeAreaProvider.m in Sources */ = {isa = PBXBuildFile; fileRef = A547831DA0D16276D645112E37CAA856 /* RNCSafeAreaProvider.m */; }; + 83F508860A69DF4881BDC1557FF7E2B4 /* RCTProgressViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 40DC9AE657A1D013F7C0A23E0D8B1DA1 /* RCTProgressViewManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; 841BEEABB39AFCE2F1A9B9A2F800B860 /* FLEXUtility.h in Headers */ = {isa = PBXBuildFile; fileRef = 92672784570B66A01FFF23C2E8A1C554 /* FLEXUtility.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8439EA0A5BDF6C5C7BD5988ECC8ED470 /* ARTPattern.m in Sources */ = {isa = PBXBuildFile; fileRef = 2CBA6A2E7DE164CC9864FFAF6AD15BEA /* ARTPattern.m */; }; + 8439EA0A5BDF6C5C7BD5988ECC8ED470 /* ARTPattern.m in Sources */ = {isa = PBXBuildFile; fileRef = DB20B30BD0D0DC13596A495BE4DFD2D1 /* ARTPattern.m */; }; 8463BA54CDE10E89F565BD48AF5D85B4 /* SDImageIOAnimatedCoder.m in Sources */ = {isa = PBXBuildFile; fileRef = B41E0974D5F18FCCEAEB4B15F97F957A /* SDImageIOAnimatedCoder.m */; }; 84A7473B9A205B904527095ED5D3DA74 /* RequestResponseThroughputTcp.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A9AA1086980BAA6EDED10FF8817158DA /* RequestResponseThroughputTcp.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0 -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; 85139AAA0A570EBB566C5015CE3C2EA5 /* HeterogeneousAccess-fwd.h in Headers */ = {isa = PBXBuildFile; fileRef = 5B0A69416E97C57EA05236CFC7270896 /* HeterogeneousAccess-fwd.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 853BB49ADF52AD700930959E3D4A5B87 /* BSG_KSArchSpecific.h in Headers */ = {isa = PBXBuildFile; fileRef = 5F9FE902085D3594784DA653548B5430 /* BSG_KSArchSpecific.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 853BB49ADF52AD700930959E3D4A5B87 /* BSG_KSArchSpecific.h in Headers */ = {isa = PBXBuildFile; fileRef = AD955028B0A607B00F4C5D307003BE0A /* BSG_KSArchSpecific.h */; settings = {ATTRIBUTES = (Project, ); }; }; 854011E8B4665CCA7D3CE510F229C6C0 /* AtomicStruct.h in Headers */ = {isa = PBXBuildFile; fileRef = 3DC9980050C1C0795120E178659C52BE /* AtomicStruct.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 85455CF059E2BA6A60E6A2D400783FF3 /* RCTConvert+FIRApp.h in Headers */ = {isa = PBXBuildFile; fileRef = 8829938A716496FE3BDAB4CC2EE1A100 /* RCTConvert+FIRApp.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 85455CF059E2BA6A60E6A2D400783FF3 /* RCTConvert+FIRApp.h in Headers */ = {isa = PBXBuildFile; fileRef = 36853FC6F15D3BD1A734B57036B0E500 /* RCTConvert+FIRApp.h */; settings = {ATTRIBUTES = (Project, ); }; }; 8547302CC4693C69F676D0FAF738DF38 /* cost_enc.h in Headers */ = {isa = PBXBuildFile; fileRef = 7F4678509AA6CA3186B21D19E4C8B205 /* cost_enc.h */; settings = {ATTRIBUTES = (Project, ); }; }; 8548FCF28295D2197ED3E0D8D2A9AB19 /* FIRAppInternal.h in Headers */ = {isa = PBXBuildFile; fileRef = 9E5018DDC168FC068C8643A56FC722A5 /* FIRAppInternal.h */; settings = {ATTRIBUTES = (Project, ); }; }; 8551D517FEBFDB14B72550B5C491A237 /* MMKV.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 0A30242BC57DFE4D332A7228C8E5EC28 /* MMKV.cpp */; settings = {COMPILER_FLAGS = "-x objective-c++ -fno-objc-arc"; }; }; - 8562DF2BC796D7D23CE5DD44BC407C01 /* RNNotificationCenterListener.m in Sources */ = {isa = PBXBuildFile; fileRef = 8E33CF1D9E9DF4EEFA6D098667D23B55 /* RNNotificationCenterListener.m */; }; + 8562DF2BC796D7D23CE5DD44BC407C01 /* RNNotificationCenterListener.m in Sources */ = {isa = PBXBuildFile; fileRef = 46D1906EE5CBCD96DE5885EE452ED41D /* RNNotificationCenterListener.m */; }; 856D7C5079439CFA9892A3B2BE8FB53A /* ThreadLock.h in Headers */ = {isa = PBXBuildFile; fileRef = 8AB163A2BC1DB6F0837718EA750350CD /* ThreadLock.h */; settings = {ATTRIBUTES = (Project, ); }; }; 85915C6348F10913C13E024F19C98432 /* FIRCLSNetworkOperation.h in Headers */ = {isa = PBXBuildFile; fileRef = C0188C57BAAF282D715EABD4FA421E95 /* FIRCLSNetworkOperation.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 85968F707A767738DD5E55A959AE5CFB /* RCTBackedTextInputViewProtocol.h in Headers */ = {isa = PBXBuildFile; fileRef = 3EE1742852808EF29B7A46B5EBE710C7 /* RCTBackedTextInputViewProtocol.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 85968F707A767738DD5E55A959AE5CFB /* RCTBackedTextInputViewProtocol.h in Headers */ = {isa = PBXBuildFile; fileRef = 85278DCA2F11944F4D9AC9DDEA02A077 /* RCTBackedTextInputViewProtocol.h */; settings = {ATTRIBUTES = (Project, ); }; }; 859CF4DDB4DF8D8BE39DB5AB5FE349B9 /* FutureDAG.h in Headers */ = {isa = PBXBuildFile; fileRef = F6CBFD8F076A8032BAA13550F10D0C41 /* FutureDAG.h */; settings = {ATTRIBUTES = (Project, ); }; }; 85DCDD24B749409A38B46B60F58C8738 /* MMKV-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = E154263C03A8FE7B11DB3AE33D33F99B /* MMKV-dummy.m */; }; - 85EE3DDDE2705A437A8EC20E7EE63E3A /* RCTNetworkTask.h in Headers */ = {isa = PBXBuildFile; fileRef = 063E2E543E65D3B537179D7975167DBD /* RCTNetworkTask.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 85EE3DDDE2705A437A8EC20E7EE63E3A /* RCTNetworkTask.h in Headers */ = {isa = PBXBuildFile; fileRef = 56C7FD11D465FA3932202B5F6C1DF1DE /* RCTNetworkTask.h */; settings = {ATTRIBUTES = (Project, ); }; }; 85EF72DD40BCFC53D8722FBF1315AA1C /* Payload.h in Headers */ = {isa = PBXBuildFile; fileRef = E758096D3F1B58B131EAE8EE951FDDF2 /* Payload.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 86090AEE3EBED7D2F500A0DB92B7BD34 /* RCTCxxBridge.mm in Sources */ = {isa = PBXBuildFile; fileRef = 262653AEBD7EA70BB4AD8AB620DA21C8 /* RCTCxxBridge.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 862DAC23AFD28B838622B37C68CA9202 /* RCTLog.h in Headers */ = {isa = PBXBuildFile; fileRef = EFECB04B4961098514237FFDCF858366 /* RCTLog.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 86090AEE3EBED7D2F500A0DB92B7BD34 /* RCTCxxBridge.mm in Sources */ = {isa = PBXBuildFile; fileRef = D4926A796F3466B4AC07ACE1D5E7A1B0 /* RCTCxxBridge.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 862DAC23AFD28B838622B37C68CA9202 /* RCTLog.h in Headers */ = {isa = PBXBuildFile; fileRef = F6DD8117884B527CC1DFAF11593CFDA3 /* RCTLog.h */; settings = {ATTRIBUTES = (Project, ); }; }; 86413B6185C68AF825C32E586B8BF4B0 /* Phase.h in Headers */ = {isa = PBXBuildFile; fileRef = A0ECF424449EA2D5D9C79F30028F6038 /* Phase.h */; settings = {ATTRIBUTES = (Project, ); }; }; 86558F39467D99DD75427289BF7D6D19 /* UIView+WebCacheOperation.m in Sources */ = {isa = PBXBuildFile; fileRef = 4DCB530F37CDD6129D7DC4E184037CCF /* UIView+WebCacheOperation.m */; }; 8658ED76DEA79D408A9228CB974102D0 /* FBLPromise+Await.h in Headers */ = {isa = PBXBuildFile; fileRef = 55A1DBC2A01AB6C06BE89546618B8587 /* FBLPromise+Await.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8662D98E6F971202A84E72DF410D6A26 /* RCTLinkingPlugins.mm in Sources */ = {isa = PBXBuildFile; fileRef = 6659CA263E9BE993C0CDDC48CB848A07 /* RCTLinkingPlugins.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; - 8687A2B5D720260FB5BD058135378490 /* JSIDynamic.h in Headers */ = {isa = PBXBuildFile; fileRef = 7A6CE34BC277D54BE72A9F35FFFEBA23 /* JSIDynamic.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 869383D9C786778D32E76B930ED3229B /* RCTConvert+Text.h in Headers */ = {isa = PBXBuildFile; fileRef = EE6B74B9B3000DCE2E920B88157F20C4 /* RCTConvert+Text.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 86A2DF8F2CEDC1D71FC3528528EC1212 /* RCTSegmentedControl.m in Sources */ = {isa = PBXBuildFile; fileRef = BB275AD0048DF458F3B105B17BC2979D /* RCTSegmentedControl.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 8662D98E6F971202A84E72DF410D6A26 /* RCTLinkingPlugins.mm in Sources */ = {isa = PBXBuildFile; fileRef = 9C135EEF6C4A819558A09EC787D03B47 /* RCTLinkingPlugins.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + 8687A2B5D720260FB5BD058135378490 /* JSIDynamic.h in Headers */ = {isa = PBXBuildFile; fileRef = A959BF0CFEA8839D9E6D6F263D932FA8 /* JSIDynamic.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 869383D9C786778D32E76B930ED3229B /* RCTConvert+Text.h in Headers */ = {isa = PBXBuildFile; fileRef = 4F91B3C9FF3A0A1D807ED2E81EC0EA58 /* RCTConvert+Text.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 86A2DF8F2CEDC1D71FC3528528EC1212 /* RCTSegmentedControl.m in Sources */ = {isa = PBXBuildFile; fileRef = F1C4447775C321032BE516A0BC165007 /* RCTSegmentedControl.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; 86E44FCFB590682940739E804FB0147D /* CodedInputDataCrypt.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B4FC835C27B7AF6477DE7EEB0392E293 /* CodedInputDataCrypt.cpp */; settings = {COMPILER_FLAGS = "-x objective-c++ -fno-objc-arc"; }; }; 8712A013B77EFFFE014DA5E077E5AD8F /* PTProtocol.h in Headers */ = {isa = PBXBuildFile; fileRef = 9E17D90CDC0CB979623935CA74C62CBE /* PTProtocol.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 871BC07577C99C9390C0D1B645B44129 /* RCTDevLoadingViewSetEnabled.h in Headers */ = {isa = PBXBuildFile; fileRef = FDC8CE850A3917F3DF541580B318EF49 /* RCTDevLoadingViewSetEnabled.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 872C85F99AF9AC5147C28214DAAE06B5 /* UIView+React.m in Sources */ = {isa = PBXBuildFile; fileRef = 7128817469619B56E1F4D7C19B4A2A2A /* UIView+React.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 871BC07577C99C9390C0D1B645B44129 /* RCTDevLoadingViewSetEnabled.h in Headers */ = {isa = PBXBuildFile; fileRef = 7B423D3F339C2BABD89BAED31EC39E38 /* RCTDevLoadingViewSetEnabled.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 872C85F99AF9AC5147C28214DAAE06B5 /* UIView+React.m in Sources */ = {isa = PBXBuildFile; fileRef = 2B2F1745446D0F6241D56B08FD7EB45F /* UIView+React.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; 872F15B9D4F55040BA9FADCCA0C969CC /* FBLPromise+Any.m in Sources */ = {isa = PBXBuildFile; fileRef = 0AFDB24D195B1C26075A0338826D2DAE /* FBLPromise+Any.m */; }; 8771DE0E347F59255E887573DD7F53F8 /* SKMacros.h in Headers */ = {isa = PBXBuildFile; fileRef = 4233895B66E94BB940774660B1D548A2 /* SKMacros.h */; settings = {ATTRIBUTES = (Project, ); }; }; 87726AEFF151E25755DBEEB384C7E2A4 /* UnboundedBlockingQueue.h in Headers */ = {isa = PBXBuildFile; fileRef = 23483A32107EA6FC876494AFEEC048B6 /* UnboundedBlockingQueue.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 87873D084F83703DE3C009D5A2A0C043 /* UMSingletonModule.m in Sources */ = {isa = PBXBuildFile; fileRef = 325ADD0A48DABBEE1E40955FFF936717 /* UMSingletonModule.m */; }; + 87873D084F83703DE3C009D5A2A0C043 /* UMSingletonModule.m in Sources */ = {isa = PBXBuildFile; fileRef = D56407E0D90F556BD004EFCA88C388CB /* UMSingletonModule.m */; }; 8799A7E7AF7D5000F6488DC84D14E692 /* rescaler_neon.c in Sources */ = {isa = PBXBuildFile; fileRef = 9FD4F19E4FFAE26D101861C7BC5EBC3E /* rescaler_neon.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; 87A323D292E1CDF36C181E54CB70C413 /* QuotientMultiSet-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 83C80CF8E5F47790D5B11A4C4CB44ED6 /* QuotientMultiSet-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; 87BE04CBC078520DB22E157E03434C37 /* SKHiddenWindow.m in Sources */ = {isa = PBXBuildFile; fileRef = 6DCF7925DA44E6B3EC578DC49BBC4C3E /* SKHiddenWindow.m */; settings = {COMPILER_FLAGS = "-DDEBUG=1 -DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0"; }; }; 87C950DA6F51CBB47A8D06EF0E62DB08 /* FBLPromise+Wrap.h in Headers */ = {isa = PBXBuildFile; fileRef = 44C20E449661C3A845F1FF5A829A3E6F /* FBLPromise+Wrap.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 87CB66C902F11F7A98F8495131A29A63 /* RNSScreenStackHeaderConfig.m in Sources */ = {isa = PBXBuildFile; fileRef = 8F7C4E8018EE5B378B08284AF2C6DDBD /* RNSScreenStackHeaderConfig.m */; }; - 87CFA9DF3A759BA202334903B7234493 /* BugsnagErrorReportApiClient.m in Sources */ = {isa = PBXBuildFile; fileRef = 6F543DE25C3017A11DB04C39A47F861F /* BugsnagErrorReportApiClient.m */; }; - 87D1C8D0E94309AE54E7909240E8B83A /* FFFastImageViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = A97771F65EFE9C37DEAED2A4534B170E /* FFFastImageViewManager.m */; }; - 87D604BE8872A45E434BCCBA813103F4 /* UMUserNotificationCenterProxyInterface.h in Headers */ = {isa = PBXBuildFile; fileRef = 7B582CCB85E15EE5AA7498FCDD43D437 /* UMUserNotificationCenterProxyInterface.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 87CB66C902F11F7A98F8495131A29A63 /* RNSScreenStackHeaderConfig.m in Sources */ = {isa = PBXBuildFile; fileRef = 48593C2AFF37B5B233CDDEF1B17273D5 /* RNSScreenStackHeaderConfig.m */; }; + 87CFA9DF3A759BA202334903B7234493 /* BugsnagErrorReportApiClient.m in Sources */ = {isa = PBXBuildFile; fileRef = 9C3712E8E67C8FAA4F51A34DAB269461 /* BugsnagErrorReportApiClient.m */; }; + 87D1C8D0E94309AE54E7909240E8B83A /* FFFastImageViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = DF72753EB246A57B1E4ABCDC3156DEAE /* FFFastImageViewManager.m */; }; + 87D604BE8872A45E434BCCBA813103F4 /* UMUserNotificationCenterProxyInterface.h in Headers */ = {isa = PBXBuildFile; fileRef = DEF328ABA4CF8E6FACADFA6FB5153C82 /* UMUserNotificationCenterProxyInterface.h */; settings = {ATTRIBUTES = (Project, ); }; }; 87E25D38EAFF2A33FA859D22936433C0 /* SDImageCacheDefine.h in Headers */ = {isa = PBXBuildFile; fileRef = 3BBB608478F4976B5227E0BA4CB6140D /* SDImageCacheDefine.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 87EBEDB6463EBB931CB123175B4DB568 /* ARTRenderable.m in Sources */ = {isa = PBXBuildFile; fileRef = 65BD4A98D5F8FE4A3CB5D9620C8F404A /* ARTRenderable.m */; }; + 87EBEDB6463EBB931CB123175B4DB568 /* ARTRenderable.m in Sources */ = {isa = PBXBuildFile; fileRef = 8A24AC792D0BA02FAE99884894D81136 /* ARTRenderable.m */; }; 882E3E0939E69E7264A903F035731EB8 /* GULSecureCoding.m in Sources */ = {isa = PBXBuildFile; fileRef = 6A5C6E09A8E3297C23D5578BD608C9FD /* GULSecureCoding.m */; }; 8830C0D09E511F205E03DAB1712DA5A3 /* GULNSData+zlib.h in Headers */ = {isa = PBXBuildFile; fileRef = E3A91DB8523107DCA6BBA6C430DA44F1 /* GULNSData+zlib.h */; settings = {ATTRIBUTES = (Project, ); }; }; 885EA3B1BA03C6F70CD3DD6FF81A6E97 /* UIImage+MemoryCacheCost.m in Sources */ = {isa = PBXBuildFile; fileRef = 092333F46742ECA6DCDDB1D667A1AB77 /* UIImage+MemoryCacheCost.m */; }; 88601CA34DF66C7A443806B033497F04 /* StringKeyedUnorderedMap.h in Headers */ = {isa = PBXBuildFile; fileRef = 6FE4E579107908C71B9FF111623B4B70 /* StringKeyedUnorderedMap.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 887C97BFF8FE6AAB23F2B7A4F365901E /* react-native-safe-area-context-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = CCE524C3197B457F22F38B91979EE5E6 /* react-native-safe-area-context-dummy.m */; }; + 887C97BFF8FE6AAB23F2B7A4F365901E /* react-native-safe-area-context-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 71E53A8D5E3D3A0C0C1244F684485EA8 /* react-native-safe-area-context-dummy.m */; }; 887DC1F1F3429DD83EDC126591F3B6A8 /* OpenSSLCertUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = 7B3B901EE245E9C710F1EFED3D715361 /* OpenSSLCertUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; 88A7546CD0CC5EF28061417BEF92362D /* filter_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = 42020D0F7AABDA3F155C2F8E5B8EC948 /* filter_enc.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; 88C7713DC9D4FE1662A3F9F4F1B8EF2A /* FIRHeartbeatInfo.h in Headers */ = {isa = PBXBuildFile; fileRef = 7930255AEF65CABF01261C1F1D39B464 /* FIRHeartbeatInfo.h */; settings = {ATTRIBUTES = (Project, ); }; }; 88E0E54C89590D83D5BFA15F1331204B /* HazptrObj.h in Headers */ = {isa = PBXBuildFile; fileRef = FB8C997E098B1165386E43EC5E5A4948 /* HazptrObj.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 88E178158964CCD11D98B6B6454039C9 /* RCTReloadCommand.h in Headers */ = {isa = PBXBuildFile; fileRef = 7194C726911A0FCC37B98C166905E0E1 /* RCTReloadCommand.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 88E9E04B0D817DDB7556CC2EDAA5FC2D /* RCTTurboModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 31DB51E8A3D5205CAF06CD795DA37168 /* RCTTurboModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 88E178158964CCD11D98B6B6454039C9 /* RCTReloadCommand.h in Headers */ = {isa = PBXBuildFile; fileRef = 6235B98CC402A2AE353E52314BD1930B /* RCTReloadCommand.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 88E9E04B0D817DDB7556CC2EDAA5FC2D /* RCTTurboModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 6DAD2EA5D41100A994261256A631FAD6 /* RCTTurboModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; 88F192ACC6825B1BE2B159EB4DC00CE7 /* ScheduledSingleSubscription.h in Headers */ = {isa = PBXBuildFile; fileRef = 661DD4092B863C163DDA6B5A061ECF21 /* ScheduledSingleSubscription.h */; settings = {ATTRIBUTES = (Project, ); }; }; 88F339C128D6A79C0C6741E8F3FD5DEF /* TimeoutQueue.cpp in Sources */ = {isa = PBXBuildFile; fileRef = DB455938C1F1BD9D75A2C54D457D9A20 /* TimeoutQueue.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; 890E6CF6CD7B12C3B0D4523005A367BB /* FIRInstallationsStoredAuthToken.h in Headers */ = {isa = PBXBuildFile; fileRef = 54D41B96EE4B65363EC4BA183A382418 /* FIRInstallationsStoredAuthToken.h */; settings = {ATTRIBUTES = (Project, ); }; }; 891E992D9EB633B92E3DF27F9B310C23 /* common_dec.h in Headers */ = {isa = PBXBuildFile; fileRef = B463BE1B95E31FC56D2116708584577B /* common_dec.h */; settings = {ATTRIBUTES = (Project, ); }; }; 892099FC0427066886708CDC3C948FED /* FIRCLSURLSessionConfiguration.h in Headers */ = {isa = PBXBuildFile; fileRef = 678ED3E1F085D3666FF228FD63BD2F48 /* FIRCLSURLSessionConfiguration.h */; settings = {ATTRIBUTES = (Project, ); }; }; 892372828F1C3FB28FAE3D384E5C32F4 /* FrameHeader.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 25ABD9EAFDA114E22BF8ABFBAAA6A1E2 /* FrameHeader.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0 -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - 892B3444B698BD0EE68428A35E3EC3E1 /* RCTImageSource.h in Headers */ = {isa = PBXBuildFile; fileRef = 609480681C3B0B0608A3257DD78526FB /* RCTImageSource.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 892B3444B698BD0EE68428A35E3EC3E1 /* RCTImageSource.h in Headers */ = {isa = PBXBuildFile; fileRef = 853B3B16B5DF0C1B26D21CFB5F4F0850 /* RCTImageSource.h */; settings = {ATTRIBUTES = (Project, ); }; }; 8936375FFA316F9576C0448D9414F21D /* CertificateUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = 7960E58007D093D75C17B5B39DFBB1BD /* CertificateUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; 894C64E73E77B4F3B56C3D49CA9C59F2 /* Random.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 14FDE41E6579BCAFF7961770163DF8CA /* Random.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - 895C73874B659DB8543479CE6EA43BA1 /* RCTRootContentView.h in Headers */ = {isa = PBXBuildFile; fileRef = 045982EF673658512F71EE801CC44B39 /* RCTRootContentView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 896B6ABB97CB90770CC46B3066F4C004 /* EXAppleAuthenticationRequest.m in Sources */ = {isa = PBXBuildFile; fileRef = EE84B2B7453419AD8490FD5567A0C77B /* EXAppleAuthenticationRequest.m */; }; - 8980A12452B55C896B6C9E7DFC35873E /* RNFBMeta.m in Sources */ = {isa = PBXBuildFile; fileRef = A88F81EC6E09430BBDB731760A9EDB35 /* RNFBMeta.m */; }; + 895C73874B659DB8543479CE6EA43BA1 /* RCTRootContentView.h in Headers */ = {isa = PBXBuildFile; fileRef = 972B2B9D0D7A9ED5AFAEECE53FAC793E /* RCTRootContentView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 896B6ABB97CB90770CC46B3066F4C004 /* EXAppleAuthenticationRequest.m in Sources */ = {isa = PBXBuildFile; fileRef = 708D9BFECF2DF742CB6DD8AA8FD6AE45 /* EXAppleAuthenticationRequest.m */; }; + 8980A12452B55C896B6C9E7DFC35873E /* RNFBMeta.m in Sources */ = {isa = PBXBuildFile; fileRef = 1FB8B81346229A35FFC8613A8CCB527F /* RNFBMeta.m */; }; 89972CCC301F9D77EBE4BCD2C1830472 /* firebasecore.nanopb.c in Sources */ = {isa = PBXBuildFile; fileRef = 61A600074F1E287BBAFACAAB9EB3FCA5 /* firebasecore.nanopb.c */; }; 89A1C44FF67BFE028336E28D48080B42 /* Parallel-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 4AD64825828096788A5172C0A9C52AD2 /* Parallel-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 89C01238C814AA7A0C7F912C3FE79F5A /* RCTImageURLLoaderWithAttribution.h in Headers */ = {isa = PBXBuildFile; fileRef = 9A65D311022D7BFDACF39403893FB47C /* RCTImageURLLoaderWithAttribution.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 89C01238C814AA7A0C7F912C3FE79F5A /* RCTImageURLLoaderWithAttribution.h in Headers */ = {isa = PBXBuildFile; fileRef = 32EBE25597E3A830306E0B8C13C95089 /* RCTImageURLLoaderWithAttribution.h */; settings = {ATTRIBUTES = (Project, ); }; }; 89C3A612CD4ADB81C44209858A136F74 /* cost_sse2.c in Sources */ = {isa = PBXBuildFile; fileRef = 4D61674381C4C65445B8F2A346E6D32F /* cost_sse2.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 89DE4B3B612D9CCE5454A35483631F7D /* MMKVStorage.m in Sources */ = {isa = PBXBuildFile; fileRef = 0EE189513282D54B02C8FE1103565049 /* MMKVStorage.m */; }; - 89FCCC5B1507BBB969630D23DFD23D7D /* RCTSRWebSocket.h in Headers */ = {isa = PBXBuildFile; fileRef = B47B6BB5880F20772D1E5C7705CDA7CB /* RCTSRWebSocket.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 89FE8539EBC5A5F987FCD9985BAB3765 /* RCTNativeModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 9CD365776BC1EB2E9332DED86771899D /* RCTNativeModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 89DE4B3B612D9CCE5454A35483631F7D /* MMKVStorage.m in Sources */ = {isa = PBXBuildFile; fileRef = CE65E999A12D2DFF534FA99A66784A0D /* MMKVStorage.m */; }; + 89FCCC5B1507BBB969630D23DFD23D7D /* RCTSRWebSocket.h in Headers */ = {isa = PBXBuildFile; fileRef = 7DCBC3BF7063D7893DD6E720842EB674 /* RCTSRWebSocket.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 89FE8539EBC5A5F987FCD9985BAB3765 /* RCTNativeModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 7C1CADBD19400905ABE9EB8872167C84 /* RCTNativeModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; 89FF6B6C4AA4FDAB376D7373078CBA26 /* SDAnimatedImageView.h in Headers */ = {isa = PBXBuildFile; fileRef = 6D44648BC266F8BA11F0D943B8DD5672 /* SDAnimatedImageView.h */; settings = {ATTRIBUTES = (Project, ); }; }; 8A1373FBD88F35501478391992C5376C /* huffman_utils.c in Sources */ = {isa = PBXBuildFile; fileRef = C3AC9C3CF8588312620BBE5C3153CB11 /* huffman_utils.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; 8A16248DE23D916CBBBFA8DF54392450 /* Observables.h in Headers */ = {isa = PBXBuildFile; fileRef = 987E724D105C08C2B33EF09F8AA46FC4 /* Observables.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8A3830EAA4564C2AA7924BC01769961B /* RCTRefreshControlManager.h in Headers */ = {isa = PBXBuildFile; fileRef = A352B95AD7AF1ADA26AA02E844AE0362 /* RCTRefreshControlManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8A3830EAA4564C2AA7924BC01769961B /* RCTRefreshControlManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 1AFF22FB1084BC1D0400D1DE8A080001 /* RCTRefreshControlManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; 8A41382038820FA639C06930D29E516A /* FIRCLSRecordHost.m in Sources */ = {isa = PBXBuildFile; fileRef = 642F60369A61D9E2F3CE29EB3D3A6566 /* FIRCLSRecordHost.m */; }; - 8A460C384013AA07292979994D74FDC5 /* RCTVirtualTextShadowView.m in Sources */ = {isa = PBXBuildFile; fileRef = A2F3ECB83544DE0AC49619B06F5ADCB5 /* RCTVirtualTextShadowView.m */; }; + 8A460C384013AA07292979994D74FDC5 /* RCTVirtualTextShadowView.m in Sources */ = {isa = PBXBuildFile; fileRef = 30B81318CEBAC9029D39DB0942C62F50 /* RCTVirtualTextShadowView.m */; }; 8A5FF98CE5E2F2D16D59030E8176D67C /* FIRInstallationsItem+RegisterInstallationAPI.h in Headers */ = {isa = PBXBuildFile; fileRef = 4B78FF6506357498CC492CA458DCCA57 /* FIRInstallationsItem+RegisterInstallationAPI.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8A6AB74E5D979D543445E1AC15D30957 /* EXKeepAwake-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 45E4D1EAD09F7CA0D14E56863A6BF8F9 /* EXKeepAwake-dummy.m */; }; + 8A6AB74E5D979D543445E1AC15D30957 /* EXKeepAwake-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 4BC5A56778094AD5E9BB7C4D450DBE43 /* EXKeepAwake-dummy.m */; }; 8A6DF1BBFFB0458130A7B08A9AB549C4 /* FIRCLSSerializeSymbolicatedFramesOperation.m in Sources */ = {isa = PBXBuildFile; fileRef = F63D54002B58ECAD9D49158E50EA4799 /* FIRCLSSerializeSymbolicatedFramesOperation.m */; }; 8A77D5E1942F02C90AEEF3957255C924 /* FlipperResponder.h in Headers */ = {isa = PBXBuildFile; fileRef = 4118C5AECDFC37DB9CD67E44741E5F90 /* FlipperResponder.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8A803798304FFEFB941F19459C6EE9EB /* RCTRawTextViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 8EC00A7ED7541D5AD658A650F838AA21 /* RCTRawTextViewManager.m */; }; - 8A8CC5BB726A951810D3CB4E255AFBB2 /* RNPanHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 15263F0050ADD74E6AE7351DBB60370C /* RNPanHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8A803798304FFEFB941F19459C6EE9EB /* RCTRawTextViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = C08C33A46B7EBDD73DBF8201FFC0F80B /* RCTRawTextViewManager.m */; }; + 8A8CC5BB726A951810D3CB4E255AFBB2 /* RNPanHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = C05B11845BF008914EBA659F2E306C79 /* RNPanHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; 8A97C301C30F05500158D273E8EF25B0 /* GULAppDelegateSwizzler_Private.h in Headers */ = {isa = PBXBuildFile; fileRef = 78CD3415891AA0B040C339108DE2C350 /* GULAppDelegateSwizzler_Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8AA1352C797A67F54548DDA2633860C3 /* RCTLog.mm in Sources */ = {isa = PBXBuildFile; fileRef = 0F1328892B70A565CE6934664BB7B0DF /* RCTLog.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 8AA1352C797A67F54548DDA2633860C3 /* RCTLog.mm in Sources */ = {isa = PBXBuildFile; fileRef = 812AAA79B95E42D3E675EA51A44BC110 /* RCTLog.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; 8AB9E32DAF6BDF9585F5205FA0736F63 /* tree_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = 7C4F94790314F30293D00F192FF27A2D /* tree_enc.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; 8ACA6634C4493277533C89BBEF7011C9 /* FIRCLSDemangleOperation.h in Headers */ = {isa = PBXBuildFile; fileRef = 99C813405B591F8BFD2D6CD68736A8E8 /* FIRCLSDemangleOperation.h */; settings = {ATTRIBUTES = (Project, ); }; }; 8AD74E897385343A29251B5A712E9319 /* FirebaseCoreInternal.h in Headers */ = {isa = PBXBuildFile; fileRef = 97574DE18C289347F6F2311612C39496 /* FirebaseCoreInternal.h */; settings = {ATTRIBUTES = (Project, ); }; }; 8AE648374CE065E863AFF20F96BABD0B /* FIRCLSUserDefaults_private.h in Headers */ = {isa = PBXBuildFile; fileRef = 7617FE73C482AD138A32E3A376494590 /* FIRCLSUserDefaults_private.h */; settings = {ATTRIBUTES = (Project, ); }; }; 8AFCA90D1EB93097DE2A5298C729381C /* Init.h in Headers */ = {isa = PBXBuildFile; fileRef = 3132647FADA358D1B0D5C4B448AE9F02 /* Init.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8B02EE2FE00F2B94A3CCC7D603E95A64 /* BitUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = 49ED025249CB4A7430D5D452F66433E0 /* BitUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8B06017BE3E8E65F2B4C459B94742090 /* REAUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = EE71E4D657D99227CC5F0CECF924C7B7 /* REAUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8B0E5441C89B63D6E7B68E74DE638616 /* ARTNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 3F223A82902DD313C050DCD91B7F3FC5 /* ARTNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8B0FAC33C535F98DAE078B52699AE93B /* RCTLayoutAnimationGroup.h in Headers */ = {isa = PBXBuildFile; fileRef = 33FB5D491BE3A8B7C1FA069F1D1922EE /* RCTLayoutAnimationGroup.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8B02EE2FE00F2B94A3CCC7D603E95A64 /* BitUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = 8CEE4A50337FABC6F0F9FBC86217EE1D /* BitUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8B06017BE3E8E65F2B4C459B94742090 /* REAUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = BCD6F7F5ED1C0F008588E29072442360 /* REAUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8B0E5441C89B63D6E7B68E74DE638616 /* ARTNode.h in Headers */ = {isa = PBXBuildFile; fileRef = D4697B43CE5BC0C104C8EA8B8401BD07 /* ARTNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8B0FAC33C535F98DAE078B52699AE93B /* RCTLayoutAnimationGroup.h in Headers */ = {isa = PBXBuildFile; fileRef = F27EAEA907837037A9AFC6DB3F6A3960 /* RCTLayoutAnimationGroup.h */; settings = {ATTRIBUTES = (Project, ); }; }; 8B185D7F0B0EB26DF0FB3A62580B1068 /* Singleton.h in Headers */ = {isa = PBXBuildFile; fileRef = 438BCF03D12826D667D099BABE52E169 /* Singleton.h */; settings = {ATTRIBUTES = (Project, ); }; }; 8B1A6727A64798A9A7D8B7AF7C25CCA4 /* Unistd.h in Headers */ = {isa = PBXBuildFile; fileRef = C48B4E73BB59A201C65E8D5E9183CC18 /* Unistd.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8B1A996DD9EA42525DA751399F5EA151 /* YGMacros.h in Headers */ = {isa = PBXBuildFile; fileRef = AB1BFCED4DBD4B1D8B2C3608649BB5F9 /* YGMacros.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8B1DB9CD4E3F75DB565EBB2ECB54DA6D /* RCTTouchEvent.h in Headers */ = {isa = PBXBuildFile; fileRef = CD0FC109571C3BBFEBF54058E8DAE3D0 /* RCTTouchEvent.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8B1A996DD9EA42525DA751399F5EA151 /* YGMacros.h in Headers */ = {isa = PBXBuildFile; fileRef = D51E6A116D06020D51C1DD7F353955B8 /* YGMacros.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8B1DB9CD4E3F75DB565EBB2ECB54DA6D /* RCTTouchEvent.h in Headers */ = {isa = PBXBuildFile; fileRef = AB6A7A9E9A997AC3109E097CE509454D /* RCTTouchEvent.h */; settings = {ATTRIBUTES = (Project, ); }; }; 8B1FBC37AF98101724B7B6AA22A23490 /* Core.h in Headers */ = {isa = PBXBuildFile; fileRef = 658F106F5EE323F0D8613DF1D358CB7F /* Core.h */; settings = {ATTRIBUTES = (Project, ); }; }; 8B445DA6E9CADE8458DD316E4B83DE93 /* Demangle.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 16B075F0D892A69B9FA1F1E4D3AE22DF /* Demangle.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; 8B544C209EA7679C75EE239C93C0B563 /* SDWebImageOperation.m in Sources */ = {isa = PBXBuildFile; fileRef = 86321040D1425732F69009DEB176766E /* SDWebImageOperation.m */; }; 8B930FB85F7CB02FF575EB90CF55350F /* Array.h in Headers */ = {isa = PBXBuildFile; fileRef = 9B92A8C3A17DC006F69609EDB40FAC57 /* Array.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8BA01965AE0F888BE823F704AB0EB6A7 /* RNCSafeAreaProviderManager.h in Headers */ = {isa = PBXBuildFile; fileRef = F350D11E6B0AE7F28BB423D9DEA0EF33 /* RNCSafeAreaProviderManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8BB39318AFE7E7ED67B231757AD7E96C /* RCTTransformAnimatedNode.m in Sources */ = {isa = PBXBuildFile; fileRef = BFB1C9A845B4B8633E6745FBCF9F664B /* RCTTransformAnimatedNode.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; - 8BB881B01F898C5F3A979090A41AF7FD /* LNInterpolation.h in Headers */ = {isa = PBXBuildFile; fileRef = 72456855E661BED404A920429EBFBBD3 /* LNInterpolation.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8BB9AE1787FD9D7C8F5388013BBCD2DD /* EXConstants.m in Sources */ = {isa = PBXBuildFile; fileRef = D3C0F4C2A7D98F988B480EE3942D59C6 /* EXConstants.m */; }; + 8BA01965AE0F888BE823F704AB0EB6A7 /* RNCSafeAreaProviderManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 4E040406828D0E4CB1DDA95C793D0466 /* RNCSafeAreaProviderManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8BB39318AFE7E7ED67B231757AD7E96C /* RCTTransformAnimatedNode.m in Sources */ = {isa = PBXBuildFile; fileRef = CD27403C2A5FF98DCE98D96FD88D3ADE /* RCTTransformAnimatedNode.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + 8BB881B01F898C5F3A979090A41AF7FD /* LNInterpolation.h in Headers */ = {isa = PBXBuildFile; fileRef = 10348EA59250727C0D8BF271D8DB4733 /* LNInterpolation.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8BB9AE1787FD9D7C8F5388013BBCD2DD /* EXConstants.m in Sources */ = {isa = PBXBuildFile; fileRef = 4B59D82DF9BD9A69732E769401112AB2 /* EXConstants.m */; }; 8BBCF6325AFE6C75A08228D776D31240 /* FIRCLSAsyncOperation_Private.h in Headers */ = {isa = PBXBuildFile; fileRef = 1BAC394FB94FD235D2C93E53AEFFE515 /* FIRCLSAsyncOperation_Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8BDC780EFAEC1B9826D9B25A85BE47E2 /* RNCAppearanceProviderManager.m in Sources */ = {isa = PBXBuildFile; fileRef = B8BBABB832F892AC79057E30FF443FD8 /* RNCAppearanceProviderManager.m */; }; - 8C05F409BF9157FA88E876E392CBDA2B /* BSG_KSObjCApple.h in Headers */ = {isa = PBXBuildFile; fileRef = 8280017D56CEAE4807214764EC124199 /* BSG_KSObjCApple.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8BDC780EFAEC1B9826D9B25A85BE47E2 /* RNCAppearanceProviderManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 8B5399240907AD9481E890592731F368 /* RNCAppearanceProviderManager.m */; }; + 8C05F409BF9157FA88E876E392CBDA2B /* BSG_KSObjCApple.h in Headers */ = {isa = PBXBuildFile; fileRef = 08E57BBBF49E38C54901029AAA8A529B /* BSG_KSObjCApple.h */; settings = {ATTRIBUTES = (Project, ); }; }; 8C0663F8B96853E59403275B7CF470F0 /* ScheduledExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = 4C9501DFA8FCAB26095C27C948853084 /* ScheduledExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; 8C0A640F7F5FA4D7E162DE9284F16BAA /* vp8i_enc.h in Headers */ = {isa = PBXBuildFile; fileRef = E655C846BC6EC695D517CDD4B43FFC2E /* vp8i_enc.h */; settings = {ATTRIBUTES = (Project, ); }; }; 8C23A9CB3736861C60E737D46612EBE6 /* FIRCLSCompoundOperation.h in Headers */ = {isa = PBXBuildFile; fileRef = A3F587860661F1E7632183EE56BADE72 /* FIRCLSCompoundOperation.h */; settings = {ATTRIBUTES = (Project, ); }; }; 8C48EBDB54F8868583420D12AFC00957 /* FIRCLSRecordBase.h in Headers */ = {isa = PBXBuildFile; fileRef = 74806217A3F03610417EB6686FE65993 /* FIRCLSRecordBase.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8C63F89239E4CD07404FFBA90353D64A /* RCTMultipartStreamReader.m in Sources */ = {isa = PBXBuildFile; fileRef = 1ADE52A64FCBC1A4E3AF6DA3B109A369 /* RCTMultipartStreamReader.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 8C63F89239E4CD07404FFBA90353D64A /* RCTMultipartStreamReader.m in Sources */ = {isa = PBXBuildFile; fileRef = 244F8B921D69A96B1E64C7A77F10835E /* RCTMultipartStreamReader.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; 8C908950962F392DD1C6D0F749224A8C /* ru.lproj in Resources */ = {isa = PBXBuildFile; fileRef = D63E9C6C6FF410F56AABC1FCD8ABAAA1 /* ru.lproj */; }; 8CA624564BD56CDA821A6C12FB87DF65 /* filters_mips_dsp_r2.c in Sources */ = {isa = PBXBuildFile; fileRef = C1A7AE40E150BE5BDFC11DB49DBB09A9 /* filters_mips_dsp_r2.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; 8CBA61340D8457775EC61BAC42083002 /* AtomicHashMap-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 9E939B8E866B114B5E15E3AB4668EDFA /* AtomicHashMap-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; 8CC74E310D402BA29146B705FACCBDB5 /* OpenSSLHash.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9C94FB841D192F3EB68DC8E42209D490 /* OpenSSLHash.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - 8CD181EB78A6900601F244D3312CB8E4 /* QBVideoIconView.m in Sources */ = {isa = PBXBuildFile; fileRef = 7DD31D1231E4711DB9AF1B1C8DE46FB4 /* QBVideoIconView.m */; }; + 8CD181EB78A6900601F244D3312CB8E4 /* QBVideoIconView.m in Sources */ = {isa = PBXBuildFile; fileRef = 10E184C63986B93D328D3635BFBB66EC /* QBVideoIconView.m */; }; 8CE1FFBE9EB5588285C3B8F625FC41B6 /* FIRCrashlytics.m in Sources */ = {isa = PBXBuildFile; fileRef = 8AB00D2E6F6DA172BAF0ED3617D64A42 /* FIRCrashlytics.m */; }; 8CE299B1BBEBA23B44CDDFD5C12C61CA /* Futex.h in Headers */ = {isa = PBXBuildFile; fileRef = FE7108D1A09300F0B4643E2F114C5604 /* Futex.h */; settings = {ATTRIBUTES = (Project, ); }; }; 8CE9ED65324F42982FC8FDFDD56649EE /* SKTapListenerImpl.m in Sources */ = {isa = PBXBuildFile; fileRef = 1EA4B2885A0007DEB2C35082014F4ED0 /* SKTapListenerImpl.m */; settings = {COMPILER_FLAGS = "-DDEBUG=1 -DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0"; }; }; 8CFE0645E525DB5BA8805B3B707C7433 /* CodedInputData_OSX.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 61C875414226907EB3B46857E800FF1E /* CodedInputData_OSX.cpp */; settings = {COMPILER_FLAGS = "-x objective-c++ -fno-objc-arc"; }; }; 8D105DB328C60025F6EE3BECF043717B /* SpookyHashV2.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 551CB042CE6C647799E32E8656CAFF10 /* SpookyHashV2.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - 8D1767AB59653E8540E79B2D42F2E7CF /* EXImageLoader.h in Headers */ = {isa = PBXBuildFile; fileRef = E196E89A6F2C58097F0281E21C226143 /* EXImageLoader.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8D1B7E50CCEA46357C7172266EDE1D76 /* EXAppleAuthentication-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 58840BBD57946D3826AF7D7B7BE3460A /* EXAppleAuthentication-dummy.m */; }; + 8D1767AB59653E8540E79B2D42F2E7CF /* EXImageLoader.h in Headers */ = {isa = PBXBuildFile; fileRef = 1370EFCE9426360B0A07FEE144120715 /* EXImageLoader.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8D1B7E50CCEA46357C7172266EDE1D76 /* EXAppleAuthentication-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = B9DCD2F8AD33BD5688630CE260E1E5B6 /* EXAppleAuthentication-dummy.m */; }; 8D2FA68D3F6E5FB99B3458B88E5A698D /* openssl_md5.h in Headers */ = {isa = PBXBuildFile; fileRef = 4F505FB26EAE16EA0A8AC26397048EB3 /* openssl_md5.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8D330D24721F7012182EBB1C9C8F29B3 /* RCTInputAccessoryViewContent.h in Headers */ = {isa = PBXBuildFile; fileRef = 02D1C5E816420BA606B3A5F7CAB19B28 /* RCTInputAccessoryViewContent.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8D330D24721F7012182EBB1C9C8F29B3 /* RCTInputAccessoryViewContent.h in Headers */ = {isa = PBXBuildFile; fileRef = 362C0F2F708B1CA634761D478284C74B /* RCTInputAccessoryViewContent.h */; settings = {ATTRIBUTES = (Project, ); }; }; 8D396CB6D3FF882946FDF08D7DFD7701 /* FLEXNetworkRecorder.h in Headers */ = {isa = PBXBuildFile; fileRef = E294D6D9C542C4DE40EC4D325A5796B0 /* FLEXNetworkRecorder.h */; settings = {ATTRIBUTES = (Project, ); }; }; 8D4F75714A2F85B5F2ECE9860162E0C9 /* double-conversion.cc in Sources */ = {isa = PBXBuildFile; fileRef = 911F870DD3159E5F5F52BA6B6094D2AA /* double-conversion.cc */; settings = {COMPILER_FLAGS = "-Wno-unreachable-code"; }; }; - 8DA7E02BFA7603701094ACD79D4EC43D /* RCTEventEmitter.h in Headers */ = {isa = PBXBuildFile; fileRef = 8EB2991E18E7D43644487566155EB642 /* RCTEventEmitter.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8DA7E02BFA7603701094ACD79D4EC43D /* RCTEventEmitter.h in Headers */ = {isa = PBXBuildFile; fileRef = 3F7EEAFD16171C39C8A7624C6D953D9D /* RCTEventEmitter.h */; settings = {ATTRIBUTES = (Project, ); }; }; 8DC95723D5F6DD80CF41D0A3D4BF1B12 /* FIRCLSURLSession.m in Sources */ = {isa = PBXBuildFile; fileRef = 224CDF3D28B97DC3F74B7C94A47DEB17 /* FIRCLSURLSession.m */; }; 8DD2BAF772C271D2D4FAEA77CBFE0CE2 /* SysTime.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 985640F0769CFC44BE8784A0524828E4 /* SysTime.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; 8DD4A41C90CD940843CB7A6B4F271A0A /* Sleeper.h in Headers */ = {isa = PBXBuildFile; fileRef = 2E71255E3D468B7D445092B63D2AB02A /* Sleeper.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8DE0762FFD0255D50A0BB5EE646016DC /* RCTKeyCommands.h in Headers */ = {isa = PBXBuildFile; fileRef = 99F58E282FEF8BDA0B95DA503C648D0F /* RCTKeyCommands.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8DE1D9F38965C1543FD7049648F04946 /* RCTRefreshControl.m in Sources */ = {isa = PBXBuildFile; fileRef = 397D798D80CF6E15765D698BD0E3762A /* RCTRefreshControl.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 8DE0762FFD0255D50A0BB5EE646016DC /* RCTKeyCommands.h in Headers */ = {isa = PBXBuildFile; fileRef = F03427101F3B8C7060CC590A8363CA6F /* RCTKeyCommands.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8DE1D9F38965C1543FD7049648F04946 /* RCTRefreshControl.m in Sources */ = {isa = PBXBuildFile; fileRef = 7A6B7CFF78D2C352400D8BAA1FE339EE /* RCTRefreshControl.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; 8DEF96274F9BA17DDE42AC2EAE1EC1AE /* UIImage+WebP.m in Sources */ = {isa = PBXBuildFile; fileRef = 7E6C438538BADDCBCF210BE8AA412E05 /* UIImage+WebP.m */; }; 8E035517C8AC7D884CBA5819743A15A3 /* endian_inl_utils.h in Headers */ = {isa = PBXBuildFile; fileRef = E305F3D0C50ECAE54FD2181D52E3A4AD /* endian_inl_utils.h */; settings = {ATTRIBUTES = (Project, ); }; }; 8E3E30DA44DAC307FF0AFFC9F890E9AE /* SysMembarrier.h in Headers */ = {isa = PBXBuildFile; fileRef = B88D06C2071BC0AFF21CC77D4D60CFF1 /* SysMembarrier.h */; settings = {ATTRIBUTES = (Project, ); }; }; 8E4903E3A854CA8821E6962DFE38EE56 /* FIRCLSApplication.m in Sources */ = {isa = PBXBuildFile; fileRef = 687A0DD40562984D7463CAA78EC43E80 /* FIRCLSApplication.m */; }; - 8E637D9AFA7F4825A92A6696EFD820AF /* BSG_KSMach_Arm64.c in Sources */ = {isa = PBXBuildFile; fileRef = 7D75ED698F98D3A6AEE44A0BC15F9F39 /* BSG_KSMach_Arm64.c */; }; - 8E755EAC5B5D7B0BF5E5A9E4A2760A01 /* BSG_KSMach_Arm.c in Sources */ = {isa = PBXBuildFile; fileRef = 2691AC68E52992AFB4E33BA65C93DE50 /* BSG_KSMach_Arm.c */; }; - 8E7FC49BF63F8BE2BD42B8156BCDB67D /* RCTDiffClampAnimatedNode.m in Sources */ = {isa = PBXBuildFile; fileRef = DBB579345D4A3A0F6FB37AA3EF5B4CB7 /* RCTDiffClampAnimatedNode.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; - 8E842C89450F1F42FD0A472547D2DB91 /* RNDateTimePicker.m in Sources */ = {isa = PBXBuildFile; fileRef = 53F5CACA26BE72413969279AC505C1E4 /* RNDateTimePicker.m */; }; + 8E637D9AFA7F4825A92A6696EFD820AF /* BSG_KSMach_Arm64.c in Sources */ = {isa = PBXBuildFile; fileRef = E5015201A25299A5952B78CF8E53BC0D /* BSG_KSMach_Arm64.c */; }; + 8E755EAC5B5D7B0BF5E5A9E4A2760A01 /* BSG_KSMach_Arm.c in Sources */ = {isa = PBXBuildFile; fileRef = C36F1747362A3B672628E464090DE8CF /* BSG_KSMach_Arm.c */; }; + 8E7FC49BF63F8BE2BD42B8156BCDB67D /* RCTDiffClampAnimatedNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 9798277A54963024E6DD67D09BFD0255 /* RCTDiffClampAnimatedNode.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + 8E842C89450F1F42FD0A472547D2DB91 /* RNDateTimePicker.m in Sources */ = {isa = PBXBuildFile; fileRef = 80F1BFF34E4046A5C275E533DA3C6EA8 /* RNDateTimePicker.m */; }; 8ECAAD611878CFA4CA1E91A5ACC7FC41 /* dec_mips_dsp_r2.c in Sources */ = {isa = PBXBuildFile; fileRef = 382C6B3C504308633B94D4FA7269C619 /* dec_mips_dsp_r2.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 8ECBF0CF18AE1DA98166F095BF0323F2 /* RCTConvert+CoreLocation.h in Headers */ = {isa = PBXBuildFile; fileRef = 4A2378F2FB50DFD412D018A3BACB56D7 /* RCTConvert+CoreLocation.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8ECBF0CF18AE1DA98166F095BF0323F2 /* RCTConvert+CoreLocation.h in Headers */ = {isa = PBXBuildFile; fileRef = F483F9DD2042D4D177D18F5507954087 /* RCTConvert+CoreLocation.h */; settings = {ATTRIBUTES = (Project, ); }; }; 8F026D24EEBFE343FDBAC023E9D56938 /* quant_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = 45B590ABBD900CDDF8DE8BB2836E4339 /* quant_enc.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; 8F0E822E61D22F4B1F22B72D68D3B3A7 /* DefaultKeepAliveExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = 0BE8B2C29B9ADCB7104634B4AA15013E /* DefaultKeepAliveExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; 8F1C53837C62D18AB63C32DF23B69F05 /* TcpConnectionFactory.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BC11E5817E93C0D702265A42715FF434 /* TcpConnectionFactory.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0 -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - 8F38B7FC2763DB3FBCD255BCBA01D661 /* BugsnagKSCrashSysInfoParser.m in Sources */ = {isa = PBXBuildFile; fileRef = F8F812C7C99BC22085F817A5B36D4BF1 /* BugsnagKSCrashSysInfoParser.m */; }; - 8F47D298D362B0669D7EBA48AA0D21E4 /* RNNotificationsStore.h in Headers */ = {isa = PBXBuildFile; fileRef = 87FF2C8C355A573413C9E97CED77C32C /* RNNotificationsStore.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8F38B7FC2763DB3FBCD255BCBA01D661 /* BugsnagKSCrashSysInfoParser.m in Sources */ = {isa = PBXBuildFile; fileRef = 862463839B5E5632411D5AEA3F7FD963 /* BugsnagKSCrashSysInfoParser.m */; }; + 8F47D298D362B0669D7EBA48AA0D21E4 /* RNNotificationsStore.h in Headers */ = {isa = PBXBuildFile; fileRef = 0097B831D5A9B39C1A487D43145B7CAF /* RNNotificationsStore.h */; settings = {ATTRIBUTES = (Project, ); }; }; 8F6185825FE06EDAD9D568567CA6DB6C /* FIRCLSException.h in Headers */ = {isa = PBXBuildFile; fileRef = AE40C330752602693855FAC7CF6345E4 /* FIRCLSException.h */; settings = {ATTRIBUTES = (Project, ); }; }; 8F7DA096463C9D570850B73D39BE284F /* Overload.h in Headers */ = {isa = PBXBuildFile; fileRef = 1A153D979AB35844103EF2D0015FFE7F /* Overload.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8F89587395083D23F1F53F8F8CE7AABE /* RNCommandsHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = DBB72BB168A7E02A43F77D880EC57FEB /* RNCommandsHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8F89587395083D23F1F53F8F8CE7AABE /* RNCommandsHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = E6FD759155B85474D1C15F8473E0C9F6 /* RNCommandsHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; 8FA27A3BC06AD1CED8F5389442861A4B /* RecordIO.h in Headers */ = {isa = PBXBuildFile; fileRef = 3BEB19D93D64C83153DF541927A16A6C /* RecordIO.h */; settings = {ATTRIBUTES = (Project, ); }; }; 8FB10A988A6DE8AB4FF13B4642AFFF82 /* SKViewDescriptor.mm in Sources */ = {isa = PBXBuildFile; fileRef = CF9F20A98CADC212F35CF93BE4A390A9 /* SKViewDescriptor.mm */; settings = {COMPILER_FLAGS = "-DDEBUG=1 -DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0"; }; }; 8FDC510019D77E1C0D7BA688F8C55E7E /* ManualTimekeeper.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 5B0F4BF42A2AC476866DA8552C7F5588 /* ManualTimekeeper.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; 9006761B0D2F13AE8D9DFB4362DA3631 /* SysMembarrier.cpp in Sources */ = {isa = PBXBuildFile; fileRef = E0CC282BA8FAFAC2D890B1BFED15A52A /* SysMembarrier.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - 900ECB43F84D1736498F9E5D9ED5807D /* RCTCxxBridgeDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = 7E24D2BD63FE094A49FF7AC7CFC05A19 /* RCTCxxBridgeDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 900ECB43F84D1736498F9E5D9ED5807D /* RCTCxxBridgeDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = 5C09459D38513CA3B0FAE57A38D711B7 /* RCTCxxBridgeDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; }; 9035970046360BBEAB0136DF92759704 /* File-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = DD54C7980EC61ED8A793FD357761AA2B /* File-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; 903F10B3A802BE1A7C55CE787D766035 /* logging.h in Headers */ = {isa = PBXBuildFile; fileRef = 3A989A3AA197F38D1E3B7C0B70A38760 /* logging.h */; settings = {ATTRIBUTES = (Project, ); }; }; 904E61CACB3A8BE0AC1D58731CDEF5E7 /* CPortability.h in Headers */ = {isa = PBXBuildFile; fileRef = 52A6FCBE370D580A0D0FAF2F6EAB917F /* CPortability.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 90544C74C36B85E098F17E2974C49C2E /* REAModule.h in Headers */ = {isa = PBXBuildFile; fileRef = E0A24C295DB49B8CD053F2B8E5BEC389 /* REAModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 90544C74C36B85E098F17E2974C49C2E /* REAModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 73607BED56C71E8FAA6D55748604FE13 /* REAModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; 9054A97EE55DC585520DE4A54913AC7E /* crashlytics.nanopb.h in Headers */ = {isa = PBXBuildFile; fileRef = 15BEACAEC37CB5497CD018285BA8ED4D /* crashlytics.nanopb.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 905873241B5AF3ED7969719250E32487 /* RNGestureHandlerButton.h in Headers */ = {isa = PBXBuildFile; fileRef = 0786D6F091FA6543F6D2353917518AEB /* RNGestureHandlerButton.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9062E6AF8DE81E533095420BDE289902 /* RNCSafeAreaShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = 2011F6C1CC56078ADC0A9D6F4BED7B69 /* RNCSafeAreaShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 905873241B5AF3ED7969719250E32487 /* RNGestureHandlerButton.h in Headers */ = {isa = PBXBuildFile; fileRef = BBEF5D51AC5C7637169DD5A598522DDF /* RNGestureHandlerButton.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9062E6AF8DE81E533095420BDE289902 /* RNCSafeAreaShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = 4A045E7E48512490673FEB5EEC4A5E0D /* RNCSafeAreaShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; 9065DD549003066B9A069F40D2485CEC /* lossless_enc_mips32.c in Sources */ = {isa = PBXBuildFile; fileRef = E020602C5F0DC325C4A99272BE65F6FA /* lossless_enc_mips32.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; 906BCD291B4D2E061B4901A35B433424 /* SDInternalMacros.h in Headers */ = {isa = PBXBuildFile; fileRef = CB4A73EB8165B2E2985F8D6239736A87 /* SDInternalMacros.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 907C688E7CED70D0A14A1E55389A49B1 /* RCTSlider.m in Sources */ = {isa = PBXBuildFile; fileRef = 0E2178102CF4EA9F7EB3C78F2273F61C /* RCTSlider.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 907C688E7CED70D0A14A1E55389A49B1 /* RCTSlider.m in Sources */ = {isa = PBXBuildFile; fileRef = A3AC869C7BCB7C9B0EEA291E8CCE592B /* RCTSlider.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; 908397F13209B4A6E2DC2A3D5E34698F /* TimekeeperScheduledExecutor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = ACA09118FA42AEA231FE0A5A66AA78F1 /* TimekeeperScheduledExecutor.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; 90C95F7220758ED79831C1CF363000DC /* SSLSessionImpl.h in Headers */ = {isa = PBXBuildFile; fileRef = 2AD6776FCE89F01F4AE3F91AB433250E /* SSLSessionImpl.h */; settings = {ATTRIBUTES = (Project, ); }; }; 90D47A2F7D1BA712F1391D2371AE5C77 /* Common.h in Headers */ = {isa = PBXBuildFile; fileRef = F22046E41AAE417B72E995E64B2D67E9 /* Common.h */; settings = {ATTRIBUTES = (Project, ); }; }; @@ -2031,162 +2023,161 @@ 90DF74C108A3AEC958E52AA1B81E67BD /* FIRCLSNetworkClient.m in Sources */ = {isa = PBXBuildFile; fileRef = 09858444B14CB83AEA70BD5C14FDCB5C /* FIRCLSNetworkClient.m */; }; 910C6F324CE795FE033EA8C7ECC59865 /* PThread.cpp in Sources */ = {isa = PBXBuildFile; fileRef = E8A328A58A732B41F061244436FA9984 /* PThread.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; 91224D343EE935FA676E7EEEC14D3B22 /* GoogleDataTransport-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 7E6283EB09705FAEE73DEC01419581CF /* GoogleDataTransport-dummy.m */; }; - 912BA82FAA7D7DA2A055571737D12F73 /* BSG_KSCrash.m in Sources */ = {isa = PBXBuildFile; fileRef = 7E82028C6728DB9A8354B650C594795C /* BSG_KSCrash.m */; }; - 915A4A7EDF26CED07E1D1434EB1E82E9 /* RCTTiming.mm in Sources */ = {isa = PBXBuildFile; fileRef = 47E1E5D649A8A15164BAFEA889F9012E /* RCTTiming.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + 912BA82FAA7D7DA2A055571737D12F73 /* BSG_KSCrash.m in Sources */ = {isa = PBXBuildFile; fileRef = 6F1D530415E1E8F48052CB6AFE3BB087 /* BSG_KSCrash.m */; }; + 915A4A7EDF26CED07E1D1434EB1E82E9 /* RCTTiming.mm in Sources */ = {isa = PBXBuildFile; fileRef = 7885BFE794162E7DB0AD8A7C5C893E0D /* RCTTiming.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; 916FA53C203CDD1276B204C0641E914C /* ConnectionSet.h in Headers */ = {isa = PBXBuildFile; fileRef = C2704AB8D010D22F2049888E65BADBB5 /* ConnectionSet.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 918A7791D84FA11E7FEA823B2FEC4987 /* RCTSafeAreaView.h in Headers */ = {isa = PBXBuildFile; fileRef = FC6DEDC1F8CEF9F44D32EFABB03691ED /* RCTSafeAreaView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 919B8440D95D27FEEF6C0D5DE412529B /* RNFBCrashlytics-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 8A987EA58D932E4F1D2EE0286730EAA6 /* RNFBCrashlytics-dummy.m */; }; + 918A7791D84FA11E7FEA823B2FEC4987 /* RCTSafeAreaView.h in Headers */ = {isa = PBXBuildFile; fileRef = EDA8BEF50E13CBF8F30B28B55A61D886 /* RCTSafeAreaView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 919B8440D95D27FEEF6C0D5DE412529B /* RNFBCrashlytics-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 594714BFF43C3D926765DDD84658BA73 /* RNFBCrashlytics-dummy.m */; }; 91A4E3F7372B8CFEFF1DE35BAE442288 /* DiscriminatedPtrDetail.h in Headers */ = {isa = PBXBuildFile; fileRef = 69AC2D0EC742977F2556217C1F9D9682 /* DiscriminatedPtrDetail.h */; settings = {ATTRIBUTES = (Project, ); }; }; 91BED5DEF72E7A2E92556E30A48337E3 /* StreamResponder.h in Headers */ = {isa = PBXBuildFile; fileRef = 21717E3C7228C968D72955CB29D078F3 /* StreamResponder.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 920921F79AFC9D94412FAF090E84EC5F /* RCTLayoutAnimationGroup.m in Sources */ = {isa = PBXBuildFile; fileRef = FEAF9C0A27EF49490FA896A474F8210E /* RCTLayoutAnimationGroup.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 920921F79AFC9D94412FAF090E84EC5F /* RCTLayoutAnimationGroup.m in Sources */ = {isa = PBXBuildFile; fileRef = 2D63FE46107F16946A2BEA13BA0868EE /* RCTLayoutAnimationGroup.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; 92229F2BF8BD1E6D19E035F6517BAAAA /* FIRCLSCompoundOperation.m in Sources */ = {isa = PBXBuildFile; fileRef = F954B32AC8888CE3FF97711D2A6FBB76 /* FIRCLSCompoundOperation.m */; }; - 9257691CC143F816836F69F027AFC549 /* RCTDataRequestHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = CCFE3517B8155FC4FAB5E748CA4F0AF0 /* RCTDataRequestHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9257691CC143F816836F69F027AFC549 /* RCTDataRequestHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = B91C52A0DCF1F20CA83697EFC5980B4A /* RCTDataRequestHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; 928C9250DEB2ADD3214968107989CB5D /* ProgramOptions.h in Headers */ = {isa = PBXBuildFile; fileRef = A47AB1A17382867A0F0F2E0347948C84 /* ProgramOptions.h */; settings = {ATTRIBUTES = (Project, ); }; }; 92AA74D1F05BBE5402796AA8225D8834 /* alpha_processing_sse2.c in Sources */ = {isa = PBXBuildFile; fileRef = 4CF414035C434D8AD1F8AFB3E6EB47BC /* alpha_processing_sse2.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; 92AFAE33AD485646B3E7EB8772215A18 /* Invoke.h in Headers */ = {isa = PBXBuildFile; fileRef = 17652CC3D1020B1A27F319034C7F6C63 /* Invoke.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 92B21E9CCFD8B3F2F52F566FE38E1371 /* BugsnagKeys.h in Headers */ = {isa = PBXBuildFile; fileRef = BDEBF21077E5D0D3EA246DFC58A6882C /* BugsnagKeys.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 92BB5A22E15E8168527D4CBB91F23F23 /* BSG_KSCrashSentry_CPPException.h in Headers */ = {isa = PBXBuildFile; fileRef = A9B3A824619663B03E4689A19ADC7A7F /* BSG_KSCrashSentry_CPPException.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 92BD9525B1E4B1F40B7B2E75EA613716 /* RCTUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = CB87B343FC29D138799BA48A2C5007CC /* RCTUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 92B21E9CCFD8B3F2F52F566FE38E1371 /* BugsnagKeys.h in Headers */ = {isa = PBXBuildFile; fileRef = 43B1E6BF4478C0A4B47133EC7479F672 /* BugsnagKeys.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 92BB5A22E15E8168527D4CBB91F23F23 /* BSG_KSCrashSentry_CPPException.h in Headers */ = {isa = PBXBuildFile; fileRef = 3B81C5658EA30CBAC7F3ECEADAA14F25 /* BSG_KSCrashSentry_CPPException.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 92BD9525B1E4B1F40B7B2E75EA613716 /* RCTUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = FAFE9A5B9A255E22283C818BD0A24D19 /* RCTUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; 92C3B3B3F4B04146A64F2D0E4FA1CD7C /* MMBuffer.h in Headers */ = {isa = PBXBuildFile; fileRef = 091722FF494A2188DDC63E7D19D48557 /* MMBuffer.h */; settings = {ATTRIBUTES = (Project, ); }; }; 92C55D440CA661F4998C66FB734DD3D8 /* MMKVHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = B443013ECE064D18CCA3446CB228F884 /* MMKVHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; 92DF9D03171AB34F00DD37988294E67A /* YGLayout+Private.h in Headers */ = {isa = PBXBuildFile; fileRef = 5908855AE8F1A6DA636E4A44861817A7 /* YGLayout+Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 92E0F28150B20AB70F5302620AA6AB4D /* RNCSafeAreaViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = E71D9B68C5769651250E5E40D41472CE /* RNCSafeAreaViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 92F22C6A1C5543C01988F3D6A1B500BE /* REATransition.h in Headers */ = {isa = PBXBuildFile; fileRef = C0030898FE4DB1557627B02C59286307 /* REATransition.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9311BE9AC41AD0209977A114A784A816 /* RCTInspector.h in Headers */ = {isa = PBXBuildFile; fileRef = 8E2A03B8D8AED7633E9C2A656C65C385 /* RCTInspector.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 92E0F28150B20AB70F5302620AA6AB4D /* RNCSafeAreaViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 133D5D6D11BFD245C2D50B38F5DE3339 /* RNCSafeAreaViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 92F22C6A1C5543C01988F3D6A1B500BE /* REATransition.h in Headers */ = {isa = PBXBuildFile; fileRef = E299CDD0455B02CE697438DC4E31884B /* REATransition.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9311BE9AC41AD0209977A114A784A816 /* RCTInspector.h in Headers */ = {isa = PBXBuildFile; fileRef = 3B62982E6042F7291CD4CCBF2C8A112F /* RCTInspector.h */; settings = {ATTRIBUTES = (Project, ); }; }; 9352E7B5B04B7ECAD1EC5445CFBA581C /* FIRErrors.h in Headers */ = {isa = PBXBuildFile; fileRef = EC7AB493D4E5BB4A98DC8DA00EA0D5AC /* FIRErrors.h */; settings = {ATTRIBUTES = (Project, ); }; }; 935C588017563AEFEB80DC42C91EC15F /* lossless_enc_mips_dsp_r2.c in Sources */ = {isa = PBXBuildFile; fileRef = F9A0DB1AEB9449FBF246B6A0D81E30C8 /* lossless_enc_mips_dsp_r2.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 936FECABE93E2B15C5C7D6282A13CD49 /* BSG_KSCrashReport.h in Headers */ = {isa = PBXBuildFile; fileRef = 71143F46E3DB9DC80E053DACD169B748 /* BSG_KSCrashReport.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9385370A8FCF255A12BBFA394127481D /* RCTMaskedView.m in Sources */ = {isa = PBXBuildFile; fileRef = F84ED50C4DB2FFF9B7D663F40AB0BA31 /* RCTMaskedView.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 936FECABE93E2B15C5C7D6282A13CD49 /* BSG_KSCrashReport.h in Headers */ = {isa = PBXBuildFile; fileRef = 934E8C7477C105654FF661A2CE291B34 /* BSG_KSCrashReport.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9385370A8FCF255A12BBFA394127481D /* RCTMaskedView.m in Sources */ = {isa = PBXBuildFile; fileRef = 7B39967770B8790E5E3F2E4E66B738F2 /* RCTMaskedView.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; 939AF54C8251EC34E539FB93C1766A4F /* AsyncTimeout.h in Headers */ = {isa = PBXBuildFile; fileRef = C0BB45C880A0B0FC1D110845D427C6DA /* AsyncTimeout.h */; settings = {ATTRIBUTES = (Project, ); }; }; 93A0E9A6CC99BE8D70FD6F259C9D5891 /* quant_dec.c in Sources */ = {isa = PBXBuildFile; fileRef = 1152CBE4ACB0D497EB34FBEE9B1FFD83 /* quant_dec.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 93B088A61714575EF39E60990FCAD71A /* React-RCTLinking-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 6895531153DAC8AE2FC0B20FF50B0044 /* React-RCTLinking-dummy.m */; }; + 93B088A61714575EF39E60990FCAD71A /* React-RCTLinking-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 1AA6229619C534AF55FA40D24BA5F883 /* React-RCTLinking-dummy.m */; }; 93D6989F898C9EB22455CFE2D5B6A1D0 /* cached-powers.cc in Sources */ = {isa = PBXBuildFile; fileRef = 3301911E754A4C286ABC7C729C5CE04B /* cached-powers.cc */; settings = {COMPILER_FLAGS = "-Wno-unreachable-code"; }; }; 93F0C82780EBEC79DB8700ED1CF96F8D /* GroupVarint.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D348BCD90A1AC800855606883F4FE00B /* GroupVarint.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - 93FCE248F90CE025EE8B96598B4E1722 /* RCTCustomInputController.h in Headers */ = {isa = PBXBuildFile; fileRef = CEFBDF861F3301ABB280F2E94FD6073C /* RCTCustomInputController.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 93FCE248F90CE025EE8B96598B4E1722 /* RCTCustomInputController.h in Headers */ = {isa = PBXBuildFile; fileRef = AF8BFF1F2DB742C1A4EC63AEF5DABC73 /* RCTCustomInputController.h */; settings = {ATTRIBUTES = (Project, ); }; }; 941E387447EAFE9E1F8C465D8F9A2067 /* FIRInstallationsErrorUtil.h in Headers */ = {isa = PBXBuildFile; fileRef = B17506706E8AD362D7034C7950E45A4A /* FIRInstallationsErrorUtil.h */; settings = {ATTRIBUTES = (Project, ); }; }; 9439847058CC81B6D2C14449CAF757A2 /* F14Map-fwd.h in Headers */ = {isa = PBXBuildFile; fileRef = 6761EE751437179A29FF8AFE464AF759 /* F14Map-fwd.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 94495C8601E753AB823E75829956C014 /* Compression.h in Headers */ = {isa = PBXBuildFile; fileRef = A347E733DD144D64D06020C3913C52B3 /* Compression.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 944BC8CD41F2AD440112B4360398EEE8 /* StorageSetters.m in Sources */ = {isa = PBXBuildFile; fileRef = 4647488323356C67846E7D3A4E25D40C /* StorageSetters.m */; }; - 9450575539B9C4302649BBF0589B4CFA /* RCTValueAnimatedNode.h in Headers */ = {isa = PBXBuildFile; fileRef = DA7A33C40D20F6BBF969F198E10F2AE4 /* RCTValueAnimatedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 94495C8601E753AB823E75829956C014 /* Compression.h in Headers */ = {isa = PBXBuildFile; fileRef = CB54911DDCC8216A22A20303C811DC3F /* Compression.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 944BC8CD41F2AD440112B4360398EEE8 /* StorageSetters.m in Sources */ = {isa = PBXBuildFile; fileRef = D59EBE263CEE3618D019A50815408252 /* StorageSetters.m */; }; + 9450575539B9C4302649BBF0589B4CFA /* RCTValueAnimatedNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 7E25BBD2755A2F8278A52EEB258B1351 /* RCTValueAnimatedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; 94717BAE4332BC8022BB19CDB3E538C0 /* IndexedMemPool.h in Headers */ = {isa = PBXBuildFile; fileRef = 7435B31117D04AEBC9ABBD45D17E8A0D /* IndexedMemPool.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 948B1D6FC3E492867C727A60EEB93ADF /* YGLayout.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 7F903D44A87E7A57E7009F31A7BF7011 /* YGLayout.cpp */; settings = {COMPILER_FLAGS = "-fno-omit-frame-pointer -fexceptions -Wall -Werror -std=c++1y -fPIC -fno-objc-arc"; }; }; + 948B1D6FC3E492867C727A60EEB93ADF /* YGLayout.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 5FAC3C728CC2B1194530CF247719BB70 /* YGLayout.cpp */; settings = {COMPILER_FLAGS = "-fno-omit-frame-pointer -fexceptions -Wall -Werror -std=c++1y -fPIC -fno-objc-arc"; }; }; 9493BDB77B9DBE1604961046C351611B /* SDImageCoder.h in Headers */ = {isa = PBXBuildFile; fileRef = CAC47B5DBDADB42C364570B803D910E2 /* SDImageCoder.h */; settings = {ATTRIBUTES = (Project, ); }; }; 94A072B9A08448DC0F01CA2573467148 /* HHWheelTimer.h in Headers */ = {isa = PBXBuildFile; fileRef = 5FB800B2BD33B6A01010A0575B6294D2 /* HHWheelTimer.h */; settings = {ATTRIBUTES = (Project, ); }; }; 94A1BB0FFB9E589FBC68C400B110F11D /* bignum-dtoa.cc in Sources */ = {isa = PBXBuildFile; fileRef = 28D6D678892B43BFF90B8EA1E9393866 /* bignum-dtoa.cc */; settings = {COMPILER_FLAGS = "-Wno-unreachable-code"; }; }; - 94C039AE0D8233E82EBBF8CD60D104E1 /* react-native-webview-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 3D162487F6288CFED91B2E9F8EDA87F6 /* react-native-webview-dummy.m */; }; + 94C039AE0D8233E82EBBF8CD60D104E1 /* react-native-webview-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 560DBAC8BE666C72A31C0A72190FE10B /* react-native-webview-dummy.m */; }; 94D2057D96B17B5338176E0EAC6D6118 /* bit_reader_utils.h in Headers */ = {isa = PBXBuildFile; fileRef = 94D1498095DD6CBFCF581AD7D5F99A9C /* bit_reader_utils.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 951940BF4207C64AEE9C7B84490EC88F /* RCTTVNavigationEventEmitter.h in Headers */ = {isa = PBXBuildFile; fileRef = F8841CAB389D5864BBD0F282D4313F21 /* RCTTVNavigationEventEmitter.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 951940BF4207C64AEE9C7B84490EC88F /* RCTTVNavigationEventEmitter.h in Headers */ = {isa = PBXBuildFile; fileRef = 152285078E580B2302C262BBC8BDBB63 /* RCTTVNavigationEventEmitter.h */; settings = {ATTRIBUTES = (Project, ); }; }; 951BCD0242FD1AD0318E94EF9F9749B8 /* SDMemoryCache.m in Sources */ = {isa = PBXBuildFile; fileRef = BFE72E75C6DABE5D29435E3BE4BDFB6D /* SDMemoryCache.m */; }; 9537FDB044F8D4B6CC9305A1A5A636A0 /* FIRAnalyticsConfiguration.h in Headers */ = {isa = PBXBuildFile; fileRef = 2F17AE626AB48BA2FECB01DC890BE7B1 /* FIRAnalyticsConfiguration.h */; settings = {ATTRIBUTES = (Project, ); }; }; 953B94BD133A7467F4F38C0B944D76E1 /* filters_utils.h in Headers */ = {isa = PBXBuildFile; fileRef = 55FD0B27006A8D0CA898A67F3118A13A /* filters_utils.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 953FC9B45339E991D954682AE264CCD2 /* EXAppleAuthenticationButton.h in Headers */ = {isa = PBXBuildFile; fileRef = 2D8130D2885D398FABB766D2D6CC2C4D /* EXAppleAuthenticationButton.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 953FC9B45339E991D954682AE264CCD2 /* EXAppleAuthenticationButton.h in Headers */ = {isa = PBXBuildFile; fileRef = E6B2EC501CD328F42E7BB1424DD941E0 /* EXAppleAuthenticationButton.h */; settings = {ATTRIBUTES = (Project, ); }; }; 954CF52BEC6E2171FCF9E7699BB00639 /* FIRInstallationsIDController.h in Headers */ = {isa = PBXBuildFile; fileRef = 07D9CB90B75FF0BF6CB45B6CF79056D6 /* FIRInstallationsIDController.h */; settings = {ATTRIBUTES = (Project, ); }; }; 9563C62CBE3FBA3E6607079FBEEABC84 /* Fixture.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 08C8FBA463275A77C4AD39D317052A28 /* Fixture.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0 -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; 95A21B3C36EEF7A9F3E07E0409CFDFFF /* PBUtility.h in Headers */ = {isa = PBXBuildFile; fileRef = 8DE7A55B5DD992C1A7299BBE472BF3D0 /* PBUtility.h */; settings = {ATTRIBUTES = (Project, ); }; }; 95ADB8AA6795D4F34ED8DFE1825B22DA /* FBLPromise+Recover.h in Headers */ = {isa = PBXBuildFile; fileRef = FFF3356E34F6F52AADA25F98E8DEF2DD /* FBLPromise+Recover.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 95B68C33D8A3CA6C685E64643173F8C2 /* RNFetchBlobProgress.m in Sources */ = {isa = PBXBuildFile; fileRef = B22277B66F99CD73FE129A6FFEDAAC85 /* RNFetchBlobProgress.m */; }; 95D26AA5A6FF5AB6CB7AAD85FBC462D4 /* zh-Hant.lproj in Resources */ = {isa = PBXBuildFile; fileRef = F33F69F3F73D5176AEE6AAB0BD70BDE4 /* zh-Hant.lproj */; }; 95FD3DD243CCAF1FE5E59471F436A5E2 /* FBLPromise+Delay.h in Headers */ = {isa = PBXBuildFile; fileRef = 0043880CE50D21543C9A3B70EDA3D203 /* FBLPromise+Delay.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9607EDE3AADED76286856B60D1F6869F /* BugsnagNotifier.h in Headers */ = {isa = PBXBuildFile; fileRef = E4CD577EBCFCE670EC79C684F0DF0213 /* BugsnagNotifier.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 960A6624BADF5408E9D519D9328F160D /* RNConfigReader.m in Sources */ = {isa = PBXBuildFile; fileRef = C2A128F617703A8ADCCD134B664CB9DF /* RNConfigReader.m */; }; - 960B81835CCACE99EAF6D7301646A57D /* RNGestureHandler-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 679FE0776CFF119C578544CA4F55D90F /* RNGestureHandler-dummy.m */; }; + 9607EDE3AADED76286856B60D1F6869F /* BugsnagNotifier.h in Headers */ = {isa = PBXBuildFile; fileRef = 4B532F7FE42EEB81ED448064B1E331EB /* BugsnagNotifier.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 960A6624BADF5408E9D519D9328F160D /* RNConfigReader.m in Sources */ = {isa = PBXBuildFile; fileRef = 091A39083067C5138C5C26C048F15F3A /* RNConfigReader.m */; }; + 960B81835CCACE99EAF6D7301646A57D /* RNGestureHandler-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 861FDF855F10BBA4101DE1640FA86B09 /* RNGestureHandler-dummy.m */; }; 9648DE8BFD642A580258906D5C4A72AE /* anim_decode.c in Sources */ = {isa = PBXBuildFile; fileRef = ED6A007B0F6E3BB16BE2D6C88BF06250 /* anim_decode.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 966AC313E86CCDA77AAA018F2E9CEE3D /* RCTInputAccessoryShadowView.m in Sources */ = {isa = PBXBuildFile; fileRef = 515F60BAA2C44398E4C432812DFAEF87 /* RCTInputAccessoryShadowView.m */; }; + 966AC313E86CCDA77AAA018F2E9CEE3D /* RCTInputAccessoryShadowView.m in Sources */ = {isa = PBXBuildFile; fileRef = E4291A0C22A564FBF7DB4C2E89F5B409 /* RCTInputAccessoryShadowView.m */; }; 9688F6896053FCA3235E23B12FBA2925 /* Poly.h in Headers */ = {isa = PBXBuildFile; fileRef = 0DBE51BDF32CA10D7DC3BE81397606A3 /* Poly.h */; settings = {ATTRIBUTES = (Project, ); }; }; 9699F0953E11FA6A675DCD375DB58C3E /* Flipper-RSocket-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 57EA5080E0100BD28FB9E83EF1DBB2EB /* Flipper-RSocket-dummy.m */; }; 96A00C011A72200F5C719AA69C379BFB /* color_cache_utils.h in Headers */ = {isa = PBXBuildFile; fileRef = B0D08483E73D8C4155335DD497F872AC /* color_cache_utils.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 96A663C9226DE5C25B3B2311AE80CA2C /* RCTVersion.h in Headers */ = {isa = PBXBuildFile; fileRef = 880C25DFCFE81BC0CBCB59B76DB2DA4D /* RCTVersion.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 96B16CBD2DD52DA614AC23267995DCE9 /* UMPermissionsMethodsDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = BBFD63D0D783EC847E063129AE89CC65 /* UMPermissionsMethodsDelegate.m */; }; + 96A663C9226DE5C25B3B2311AE80CA2C /* RCTVersion.h in Headers */ = {isa = PBXBuildFile; fileRef = BB9F84B8F1184E97F9CB46B2B5732796 /* RCTVersion.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 96B16CBD2DD52DA614AC23267995DCE9 /* UMPermissionsMethodsDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = 88DE28457509CE76EC604FE97FCE31D1 /* UMPermissionsMethodsDelegate.m */; }; 96B1848EDA12E024991DC71441FB7728 /* lossless_enc_sse2.c in Sources */ = {isa = PBXBuildFile; fileRef = 506F061F7EBB50BA4B72D1A358EFE177 /* lossless_enc_sse2.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; 96F259C16E7D5D4A6174E4764BBABE77 /* FirebaseCoreInternal.h in Headers */ = {isa = PBXBuildFile; fileRef = 991B3A59C2EDBD7A7B485E185AEBF277 /* FirebaseCoreInternal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 96FF17D7CB082281968582D7A1088F8B /* RCTInputAccessoryViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 0220E7FC3C4159B65505E2B219D9A9A0 /* RCTInputAccessoryViewManager.m */; }; - 97150F388EDE74BCF9F878E57D3FCA68 /* RCTConvertHelpers.h in Headers */ = {isa = PBXBuildFile; fileRef = 5616FE4883461F428F373266531C33AA /* RCTConvertHelpers.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 96FF17D7CB082281968582D7A1088F8B /* RCTInputAccessoryViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = A2BD7930E6BFE5A41A1821E924A6F1BF /* RCTInputAccessoryViewManager.m */; }; + 97150F388EDE74BCF9F878E57D3FCA68 /* RCTConvertHelpers.h in Headers */ = {isa = PBXBuildFile; fileRef = 37D3068A0E311819E00D25AE438C4D41 /* RCTConvertHelpers.h */; settings = {ATTRIBUTES = (Project, ); }; }; 9734201F36FA9C8328F2A14634BB11E3 /* cached-powers.cc in Sources */ = {isa = PBXBuildFile; fileRef = 832399E6C502C8A70B8C4EEB26ADDC2C /* cached-powers.cc */; settings = {COMPILER_FLAGS = "-Wno-unreachable-code"; }; }; 9744EBD64D3BF6C96DEC30C7580BC15F /* FIRCLSURLSessionTask.h in Headers */ = {isa = PBXBuildFile; fileRef = E7D3730634F7552BC6C6E48ECD1B8E21 /* FIRCLSURLSessionTask.h */; settings = {ATTRIBUTES = (Project, ); }; }; 974D3D1D89E9AB50079AF4A57373410F /* SysResource.h in Headers */ = {isa = PBXBuildFile; fileRef = 7AC5E17538F2D470843A507744C3420C /* SysResource.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9761742EAC67AF6F17A1B4C46836BF49 /* RCTProfile.m in Sources */ = {isa = PBXBuildFile; fileRef = 8B41A162AB2293493C38A0315DA47450 /* RCTProfile.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 9762F63A0CB9D06E141B8977F2C12A40 /* EXFileSystemLocalFileHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = 45F9306FAFA433BFB7107599688C2234 /* EXFileSystemLocalFileHandler.m */; }; - 9785A1B918B697A5C381307EA6508579 /* BSG_KSCrashType.h in Headers */ = {isa = PBXBuildFile; fileRef = 3EC6BB4C8486782F353D4B94B9CDC207 /* BSG_KSCrashType.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 97970AF3AAB565D71DCB69253C591DAB /* RCTAppState.mm in Sources */ = {isa = PBXBuildFile; fileRef = AB9B19F570F1484BD11EC6FDB65AB0C3 /* RCTAppState.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; - 97B57F653AAD0C9BD0915C807F0AF684 /* RCTActivityIndicatorView.h in Headers */ = {isa = PBXBuildFile; fileRef = 8BF50CF401F58BA46BBB4267EBE86F68 /* RCTActivityIndicatorView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9761742EAC67AF6F17A1B4C46836BF49 /* RCTProfile.m in Sources */ = {isa = PBXBuildFile; fileRef = 6B57A8BD8EE454096849960DF0EFC37A /* RCTProfile.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 9762F63A0CB9D06E141B8977F2C12A40 /* EXFileSystemLocalFileHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = 4DCCF6CA395570A3BEF1F3A2775A17ED /* EXFileSystemLocalFileHandler.m */; }; + 9785A1B918B697A5C381307EA6508579 /* BSG_KSCrashType.h in Headers */ = {isa = PBXBuildFile; fileRef = 0E11A2018B39EB68BCE6F950D686826E /* BSG_KSCrashType.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 97970AF3AAB565D71DCB69253C591DAB /* RCTAppState.mm in Sources */ = {isa = PBXBuildFile; fileRef = 385C921A580DD41425132470A995ADA8 /* RCTAppState.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + 97B57F653AAD0C9BD0915C807F0AF684 /* RCTActivityIndicatorView.h in Headers */ = {isa = PBXBuildFile; fileRef = 764AEB0526717771F8BD7A6C9357B7DF /* RCTActivityIndicatorView.h */; settings = {ATTRIBUTES = (Project, ); }; }; 97B5917244291105CFF124F9A9547419 /* AsyncUDPSocket.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2092880DC576AC0B9FD739B2CF2DB729 /* AsyncUDPSocket.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - 97BF1BC89F98BE74F8E224899392DAE4 /* BSGConnectivity.h in Headers */ = {isa = PBXBuildFile; fileRef = A8DECC04225CDD78311856DB8998AA82 /* BSGConnectivity.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 97BF1BC89F98BE74F8E224899392DAE4 /* BSGConnectivity.h in Headers */ = {isa = PBXBuildFile; fileRef = D7DBEBBB702FC3ECB3E47724255E4021 /* BSGConnectivity.h */; settings = {ATTRIBUTES = (Project, ); }; }; 97E2EBC77B2285E34C4E0575970D29BF /* FIRStackFrame.h in Headers */ = {isa = PBXBuildFile; fileRef = C24650D12419B4EE7B1AB449E367931E /* FIRStackFrame.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 97F848F06F6E5DCC3E282189D134A1BC /* RCTBorderDrawing.m in Sources */ = {isa = PBXBuildFile; fileRef = 063BAEFED377695B7B330F91977A4541 /* RCTBorderDrawing.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 97FE68B1D50817C31617266D7CCBDA8A /* RCTMultiplicationAnimatedNode.m in Sources */ = {isa = PBXBuildFile; fileRef = E2B3AE70F69C20072057036358ED5FEC /* RCTMultiplicationAnimatedNode.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + 97F848F06F6E5DCC3E282189D134A1BC /* RCTBorderDrawing.m in Sources */ = {isa = PBXBuildFile; fileRef = E5D28153CC5C6AE1C5F6C6533937C3DC /* RCTBorderDrawing.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 97FE68B1D50817C31617266D7CCBDA8A /* RCTMultiplicationAnimatedNode.m in Sources */ = {isa = PBXBuildFile; fileRef = A414968EE3D199F3EA504B6AA1026A3A /* RCTMultiplicationAnimatedNode.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; 982335F379D5B4FBF9B32E73DD9B5154 /* WarmResumeManager.cpp in Sources */ = {isa = PBXBuildFile; fileRef = CE47552437AA39F383916668046EEC10 /* WarmResumeManager.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0 -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; 9835CB49408014B41AADF45664E2604E /* openssl_cfb128.cpp in Sources */ = {isa = PBXBuildFile; fileRef = EE5B62E76630B060E6E365BE7B554882 /* openssl_cfb128.cpp */; settings = {COMPILER_FLAGS = "-x objective-c++ -fno-objc-arc"; }; }; - 983D6CA5B3B54C113AA7BD7A2CF3095C /* ARTText.m in Sources */ = {isa = PBXBuildFile; fileRef = B3FBA663983BBDC4F2180010734E046B /* ARTText.m */; }; - 985F05D68DA486B2AD6D1753D52444FB /* REAAlwaysNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 52714A2CCD2587FBB70807FBE809B006 /* REAAlwaysNode.m */; }; + 983D6CA5B3B54C113AA7BD7A2CF3095C /* ARTText.m in Sources */ = {isa = PBXBuildFile; fileRef = F84514BD2584D0D2BF2831703015296B /* ARTText.m */; }; + 985F05D68DA486B2AD6D1753D52444FB /* REAAlwaysNode.m in Sources */ = {isa = PBXBuildFile; fileRef = FCB0C513BB5929DB720B39D2081ADD7B /* REAAlwaysNode.m */; }; 988EB4AACD480182DA7844DBB5F793AE /* SDAsyncBlockOperation.h in Headers */ = {isa = PBXBuildFile; fileRef = 96ACEF693DD14A9B36554DE1C8837282 /* SDAsyncBlockOperation.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 989C88B632E6423998CB72350B875E46 /* RCTMultilineTextInputViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 904B9C0F5B5A4A0CC2B435A98A9779B8 /* RCTMultilineTextInputViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 989C88B632E6423998CB72350B875E46 /* RCTMultilineTextInputViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 2B14DE84C4710921B5FC4F09908D4E1E /* RCTMultilineTextInputViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; 98A6067DF7B3EDF22221CC59D86D6060 /* GlobalExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = 0C7FF184A0AF9CFE6F3436FBAD3EE7E0 /* GlobalExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; 98ADBAEA3D0DF6136EA2D9D403A82B82 /* GDTCORAssert.m in Sources */ = {isa = PBXBuildFile; fileRef = 0FF3FC2FC411C033C8E598DF75DB8E69 /* GDTCORAssert.m */; }; - 98CFB5956A43D928984FD5818F691B8D /* BSG_KSCrashReport.c in Sources */ = {isa = PBXBuildFile; fileRef = A50ABD610499238953677918011EA345 /* BSG_KSCrashReport.c */; }; - 98E5D071305E942CBA8F886501DFC3EF /* RCTBridgeMethod.h in Headers */ = {isa = PBXBuildFile; fileRef = E8E3906981061F0F9BF3AF1AD1027A1E /* RCTBridgeMethod.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 98F4394CA1EE78DF275BDC48DA4339EA /* ARTNode.m in Sources */ = {isa = PBXBuildFile; fileRef = E5153F1C2295E8706EC9CF53194E982F /* ARTNode.m */; }; + 98CFB5956A43D928984FD5818F691B8D /* BSG_KSCrashReport.c in Sources */ = {isa = PBXBuildFile; fileRef = 5CB5D959EFFF3A5E3124AC174A3814D9 /* BSG_KSCrashReport.c */; }; + 98E5D071305E942CBA8F886501DFC3EF /* RCTBridgeMethod.h in Headers */ = {isa = PBXBuildFile; fileRef = AE779F356C67EFB3AC8963370280F3E8 /* RCTBridgeMethod.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 98F4394CA1EE78DF275BDC48DA4339EA /* ARTNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 9E65967C63D7AB04A54F68B80B6E055C /* ARTNode.m */; }; 991C9DFB4E1EBB20D56E31715E457B50 /* lossless.c in Sources */ = {isa = PBXBuildFile; fileRef = 1594E1D940D0C8841465B42DEFA3FA1B /* lossless.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 992CB0C6A03D842795BDF2045C33951E /* RNDocumentPicker.m in Sources */ = {isa = PBXBuildFile; fileRef = 45778D15AB03D0B85694B79BC8729514 /* RNDocumentPicker.m */; }; + 992CB0C6A03D842795BDF2045C33951E /* RNDocumentPicker.m in Sources */ = {isa = PBXBuildFile; fileRef = 00530FD95701E1318366E6EEC13905C8 /* RNDocumentPicker.m */; }; 992D47597AC9FC3ED6B9E4490DBFBA93 /* FBLPromise+Then.h in Headers */ = {isa = PBXBuildFile; fileRef = 2BC3B279EC7B3584AF1AA293619E4DCA /* FBLPromise+Then.h */; settings = {ATTRIBUTES = (Project, ); }; }; 993DEE091D2ECD262F17F281E60653C7 /* thread_utils.h in Headers */ = {isa = PBXBuildFile; fileRef = 7D96E3C8629E55329090753268A30B3F /* thread_utils.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 99422D209EA8F36C23CB01190A614AEB /* ja.lproj in Resources */ = {isa = PBXBuildFile; fileRef = 6F660D3CB14E6BFC2F077B4EA89EC1CC /* ja.lproj */; }; + 99422D209EA8F36C23CB01190A614AEB /* ja.lproj in Resources */ = {isa = PBXBuildFile; fileRef = 925028FF257DC4634FE1F08F7AEEB619 /* ja.lproj */; }; 9951C53F8DF76B21CDD26CE830B47FBE /* Bits.h in Headers */ = {isa = PBXBuildFile; fileRef = 5336EF9ED47680F00F818CD94A8C5461 /* Bits.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 995C13DB63AB4E9744F9C574B39F789A /* RNBridgeModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 54CB7EA5B2B24ECCA34D090CDF1F8B4D /* RNBridgeModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 995C13DB63AB4E9744F9C574B39F789A /* RNBridgeModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 0C29A1CAF05604A13712D500C0875703 /* RNBridgeModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; 99678E001CBB1408805660436395E723 /* DelayedDestruction.h in Headers */ = {isa = PBXBuildFile; fileRef = 3132BE5A532EA723F412A6285AC85FC2 /* DelayedDestruction.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 99AC04CC1A62F3036CB84922156C31B9 /* MethodCall.h in Headers */ = {isa = PBXBuildFile; fileRef = 5B7DAB3E1CA7A2F1AC4AD61C61C4DCC7 /* MethodCall.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 99AC04CC1A62F3036CB84922156C31B9 /* MethodCall.h in Headers */ = {isa = PBXBuildFile; fileRef = 510992EFF4DEE6FF27671ECBAC566D0F /* MethodCall.h */; settings = {ATTRIBUTES = (Project, ); }; }; 99C45ADBFAD56E67D23B7D913EB69D69 /* FIROptionsInternal.h in Headers */ = {isa = PBXBuildFile; fileRef = 9D3D5B888BA8A95E4120BA945FED3CAE /* FIROptionsInternal.h */; settings = {ATTRIBUTES = (Project, ); }; }; 99F2AB0746A9B7D1A10850249235D347 /* FIRCLSMachOSlice.m in Sources */ = {isa = PBXBuildFile; fileRef = 0DF0BF8FCE4EB3AA709D50E9D36F789B /* FIRCLSMachOSlice.m */; }; 9A065194E9CB050FC37EAAAC6FF653F8 /* GULSwizzler.h in Headers */ = {isa = PBXBuildFile; fileRef = 3B0B72635B68DDFBEB61861EB08A22AF /* GULSwizzler.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9A4339FCB3AF1042F01E3D27C8A9F92F /* RCTNativeAnimatedModule.mm in Sources */ = {isa = PBXBuildFile; fileRef = B7C479CD9F8AC115BA4F809EA2FE7A0B /* RCTNativeAnimatedModule.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + 9A4339FCB3AF1042F01E3D27C8A9F92F /* RCTNativeAnimatedModule.mm in Sources */ = {isa = PBXBuildFile; fileRef = CCDD06E3947BBBF8B4AAF7FE27B2EDB3 /* RCTNativeAnimatedModule.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; 9A563C719409A7F1D2A79F1A491DCCB1 /* types.h in Headers */ = {isa = PBXBuildFile; fileRef = B14E29DDD3220AB16B5AF9D33BF183CC /* types.h */; settings = {ATTRIBUTES = (Project, ); }; }; 9A6584332A48346E435E1681FAF817BF /* alpha_processing_neon.c in Sources */ = {isa = PBXBuildFile; fileRef = 63EAE19ECA487B6B1CBDA895867FE21F /* alpha_processing_neon.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; 9A77A35FFAAE3148086CC3356C8061AB /* ThreadLock.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BA0E5DF052D8B15D2AB5241F3B3FD619 /* ThreadLock.cpp */; settings = {COMPILER_FLAGS = "-x objective-c++"; }; }; - 9ABD0A65BC2EC6033531633F2798F398 /* CxxModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 02C7A9F63BB29B3D692C7CAD3431F9AA /* CxxModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9ABD0A65BC2EC6033531633F2798F398 /* CxxModule.h in Headers */ = {isa = PBXBuildFile; fileRef = B25B0BAC40DC6900D31F70A6BEA9466A /* CxxModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; 9AD8AEA336F32F6C793213FA40B07ED5 /* FlipperStateUpdateListener.h in Headers */ = {isa = PBXBuildFile; fileRef = 310A9521535921338D30708091A337CD /* FlipperStateUpdateListener.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9AE25D78D388B01F02FAF32C7D81B390 /* RNCCameraRollManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 1992F6EEFEAC307A87A495787C244ADD /* RNCCameraRollManager.m */; }; + 9AE25D78D388B01F02FAF32C7D81B390 /* RNCCameraRollManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 7D79669EEA9D60CEAC59A575B4ADBE51 /* RNCCameraRollManager.m */; }; 9AEE62323E7D508CCE862B14ADE42BDA /* FKPortForwardingServer.h in Headers */ = {isa = PBXBuildFile; fileRef = B71E6BF7C24B85671CF6AB6FF48ABCFE /* FKPortForwardingServer.h */; settings = {ATTRIBUTES = (Project, ); }; }; 9B4D7BA740D6D143C5135BEA996C504F /* MPMCPipelineDetail.h in Headers */ = {isa = PBXBuildFile; fileRef = BC47C5EAC8674AE66446BFA038059A22 /* MPMCPipelineDetail.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9B5A913F3BA0DFE6041373F6624EEBCA /* RCTUIManagerUtils.m in Sources */ = {isa = PBXBuildFile; fileRef = FA84CDE0AD4B4DDBE3EE89E763E127C9 /* RCTUIManagerUtils.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 9B5A913F3BA0DFE6041373F6624EEBCA /* RCTUIManagerUtils.m in Sources */ = {isa = PBXBuildFile; fileRef = F88FBC0B1C85206F107D8D5FF9ED34C8 /* RCTUIManagerUtils.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; 9B5F3A51D09EF1FFC6732A3E9664F8EF /* Conv.h in Headers */ = {isa = PBXBuildFile; fileRef = CBCC86B7FAE3670860FDC8C180777E73 /* Conv.h */; settings = {ATTRIBUTES = (Project, ); }; }; 9B68BF491BB75FAAA081B710C4A019B5 /* UIColor+SKSonarValueCoder.h in Headers */ = {isa = PBXBuildFile; fileRef = 19E3E2F80B0678F1C170F3A41784526C /* UIColor+SKSonarValueCoder.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9B73335B0B394566168EA9C92B735E7E /* RCTBackedTextInputDelegateAdapter.h in Headers */ = {isa = PBXBuildFile; fileRef = 029679B8621034F8B9F9E2A6331F37A5 /* RCTBackedTextInputDelegateAdapter.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9B7F1CD1E89C58D530B6A16C602C6C4E /* RCTImageLoaderWithAttributionProtocol.h in Headers */ = {isa = PBXBuildFile; fileRef = 4C18F28129AEAC8720CA8DCB98650F8F /* RCTImageLoaderWithAttributionProtocol.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9B73335B0B394566168EA9C92B735E7E /* RCTBackedTextInputDelegateAdapter.h in Headers */ = {isa = PBXBuildFile; fileRef = A040D2A508FC97D0624B679E432009E6 /* RCTBackedTextInputDelegateAdapter.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9B7F1CD1E89C58D530B6A16C602C6C4E /* RCTImageLoaderWithAttributionProtocol.h in Headers */ = {isa = PBXBuildFile; fileRef = B63DD46CA1EA6FE4A4C7B2661B0BCB9F /* RCTImageLoaderWithAttributionProtocol.h */; settings = {ATTRIBUTES = (Project, ); }; }; 9BA3070F2D82AB8E6B229971E126D4B2 /* upsampling_msa.c in Sources */ = {isa = PBXBuildFile; fileRef = 096045BDD8D0A09996FCCE24B6A570E8 /* upsampling_msa.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 9BA8D8C40A0F28214F8BF4B31C15A8F8 /* EXAudioRecordingPermissionRequester.m in Sources */ = {isa = PBXBuildFile; fileRef = 1B4BE88B476F9BF18B1EB4988958D7CF /* EXAudioRecordingPermissionRequester.m */; }; - 9BBFB4BFB4CD3DADBED2F608A9C10C3F /* RCTInspectorDevServerHelper.mm in Sources */ = {isa = PBXBuildFile; fileRef = CF91BE09FB7AF4142DCFAB682F69CBEF /* RCTInspectorDevServerHelper.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 9BA8D8C40A0F28214F8BF4B31C15A8F8 /* EXAudioRecordingPermissionRequester.m in Sources */ = {isa = PBXBuildFile; fileRef = 8BF533513B80E51C6B6DC0B96AD7D3D0 /* EXAudioRecordingPermissionRequester.m */; }; + 9BBFB4BFB4CD3DADBED2F608A9C10C3F /* RCTInspectorDevServerHelper.mm in Sources */ = {isa = PBXBuildFile; fileRef = 881F1ABFD25A6D8C5B21250AD1899CD5 /* RCTInspectorDevServerHelper.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; 9BD2D2FA032357A4E0957F26F2857EF7 /* EventBaseLocal.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 5974D8F45A5814D581CBC194E78D1FBB /* EventBaseLocal.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - 9BEC9CCAE8723F6FCEBAFF8AFDFE2089 /* EXAudioSessionManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 53AF5325ADA63E488A4037CA58FFFF66 /* EXAudioSessionManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9BEC9CCAE8723F6FCEBAFF8AFDFE2089 /* EXAudioSessionManager.h in Headers */ = {isa = PBXBuildFile; fileRef = F9BD899F9008AC9D049273A772876009 /* EXAudioSessionManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; 9C3FA983775EB1772439679760DDCD26 /* F14Set.h in Headers */ = {isa = PBXBuildFile; fileRef = 849B9F78534074CFFF971C3AB09A80A4 /* F14Set.h */; settings = {ATTRIBUTES = (Project, ); }; }; 9C51952E3EB004507F8D0CE623D3C837 /* F14MapFallback.h in Headers */ = {isa = PBXBuildFile; fileRef = 19A51701C91E692C478F8575254A50AC /* F14MapFallback.h */; settings = {ATTRIBUTES = (Project, ); }; }; 9C6A5C8A1A300380603454BBB6B72200 /* PasswordInFile.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 43861A3E9C38CDB6C58D8536D09FB96B /* PasswordInFile.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; 9C6C20D5C4BE8F71CA3D3F1E8F3587AE /* SDImageTransformer.m in Sources */ = {isa = PBXBuildFile; fileRef = 09863058CABE4F4D75527B7D7AFFF3A9 /* SDImageTransformer.m */; }; - 9C7693BF22C7034A1AAE87F458F48C58 /* TurboModuleBinding.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FE1BF3971DDA23472D1054E880C1F26D /* TurboModuleBinding.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 9CBD1E29C594B829B142A09CA0012957 /* QBAlbumCell.h in Headers */ = {isa = PBXBuildFile; fileRef = 6AB0E77D75A5D764ACD0B22C5297F780 /* QBAlbumCell.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9CDCF612795F5A584B1FD669134BC368 /* RCTWrapperViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 72BFA2071FE17E7BC423430D83A5EC9D /* RCTWrapperViewController.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 9C7693BF22C7034A1AAE87F458F48C58 /* TurboModuleBinding.cpp in Sources */ = {isa = PBXBuildFile; fileRef = E975B5F40C52E1FE8A98636EF12D35B5 /* TurboModuleBinding.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 9CBD1E29C594B829B142A09CA0012957 /* QBAlbumCell.h in Headers */ = {isa = PBXBuildFile; fileRef = D3F2EC236BD7B4232E6A3EB4C9421A72 /* QBAlbumCell.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9CDCF612795F5A584B1FD669134BC368 /* RCTWrapperViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = D9F5DD1F449797557B1FF604DD50DE75 /* RCTWrapperViewController.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; 9CE418D50360FEBBC0B6EA534CB4299A /* strtod.cc in Sources */ = {isa = PBXBuildFile; fileRef = 84C1CDF6C3ED9D5001A9EE3CFC4BBB7D /* strtod.cc */; settings = {COMPILER_FLAGS = "-Wno-unreachable-code"; }; }; - 9CE4BBBC558CE96AEB10D5D105E1026E /* UMModuleRegistry.h in Headers */ = {isa = PBXBuildFile; fileRef = 35EA8D7C682966B982E188098EC2D382 /* UMModuleRegistry.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9CE4BBBC558CE96AEB10D5D105E1026E /* UMModuleRegistry.h in Headers */ = {isa = PBXBuildFile; fileRef = 579794ADECEF661ED2F0E8C42D1ED6CA /* UMModuleRegistry.h */; settings = {ATTRIBUTES = (Project, ); }; }; 9CEF58684C0371C5723617778FDCAE9C /* String.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1DAA23231DAB08A0DD9D85E02F043AA6 /* String.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; 9D1919F4348D2AB5D0F25AFFADD7441D /* diy-fp.cc in Sources */ = {isa = PBXBuildFile; fileRef = 28D0D3BB92A46FD0A2EA36558524FA54 /* diy-fp.cc */; settings = {COMPILER_FLAGS = "-Wno-unreachable-code"; }; }; - 9D4F17071E5DECD000C1F8974AF8C126 /* RCTNullability.h in Headers */ = {isa = PBXBuildFile; fileRef = E9118357368F954907D3F27B7DBBBA85 /* RCTNullability.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9D4F17071E5DECD000C1F8974AF8C126 /* RCTNullability.h in Headers */ = {isa = PBXBuildFile; fileRef = 3638E68D65EF41AD7607076000BEAF83 /* RCTNullability.h */; settings = {ATTRIBUTES = (Project, ); }; }; 9D51497EC2D05F3283426C9523C8394D /* SDWebImageDownloaderRequestModifier.h in Headers */ = {isa = PBXBuildFile; fileRef = 122530F5C1AA8ADB22E4D156F88A8621 /* SDWebImageDownloaderRequestModifier.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9D6AEC2BADA6415B32183279535FC3FD /* RNRotationHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = A9502B61EED8AB574D2EFD4FC1F9A56F /* RNRotationHandler.m */; }; + 9D6AEC2BADA6415B32183279535FC3FD /* RNRotationHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = 505AC2CA7722CF9458A590359F9B9E5D /* RNRotationHandler.m */; }; 9D8A2D740406E1048CB8E1A98A994667 /* ConnectionContextStore.h in Headers */ = {isa = PBXBuildFile; fileRef = DC33E30D616C3CA726C168E8CAAA5333 /* ConnectionContextStore.h */; settings = {ATTRIBUTES = (Project, ); }; }; 9D8D4EA0BAF1DF8818D1DCC72529B339 /* AsyncSocket.cpp in Sources */ = {isa = PBXBuildFile; fileRef = ABCFF258998CE1FBECE5F27DF83E6367 /* AsyncSocket.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; 9DA425D4E355C44431E6DCB6C10328DE /* SSLErrors.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9B7D9C2885ED2D1F790D780396244B06 /* SSLErrors.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - 9DBA9DE309855F957C43E92853867883 /* BugsnagSessionTrackingApiClient.m in Sources */ = {isa = PBXBuildFile; fileRef = EB7EC543AEFAF38C9E7FD9C2B795B598 /* BugsnagSessionTrackingApiClient.m */; }; + 9DBA9DE309855F957C43E92853867883 /* BugsnagSessionTrackingApiClient.m in Sources */ = {isa = PBXBuildFile; fileRef = 5BD79D5982EEC74EA7BF3EEBD47EA196 /* BugsnagSessionTrackingApiClient.m */; }; 9DE38323C633F51207B437E17263CBEC /* SDWebImageDownloaderResponseModifier.h in Headers */ = {isa = PBXBuildFile; fileRef = CBFF428EBE47C2BF3D2D6319F9C9545C /* SDWebImageDownloaderResponseModifier.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9DE9270C04172DD40D69B6D9546516B9 /* RNCSlider.h in Headers */ = {isa = PBXBuildFile; fileRef = AEEFC23F784DE14FBDEAB6113FA35638 /* RNCSlider.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9E58164D03FACAEBB09CA94D2578F0DE /* RCTNetworkTask.mm in Sources */ = {isa = PBXBuildFile; fileRef = CAAE6CD9C0F75AFE449CEB2459346207 /* RCTNetworkTask.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; - 9E59430A3BAD55E9F7008EE70672D986 /* RCTTextViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 12769C158B809904700E4888E6AFFE0E /* RCTTextViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9E6372BF56DAD8AC9CB178F6281F5D49 /* RCTMaskedViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 4131217A97BD723A6DD165DE07ED6B67 /* RCTMaskedViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9E6AAAC84C6A41938E51B8485BAAE523 /* RCTRawTextShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = 46FC02C46C54CAD113B87A9F8462B5EA /* RCTRawTextShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9DE9270C04172DD40D69B6D9546516B9 /* RNCSlider.h in Headers */ = {isa = PBXBuildFile; fileRef = FAB7D53A0F693908B7B13A124A59B36C /* RNCSlider.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9E58164D03FACAEBB09CA94D2578F0DE /* RCTNetworkTask.mm in Sources */ = {isa = PBXBuildFile; fileRef = B8D756B10CF55071D90D7D36960B25FE /* RCTNetworkTask.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + 9E59430A3BAD55E9F7008EE70672D986 /* RCTTextViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 67E0707F1E40C6E88B45D2E8B0BF81AB /* RCTTextViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9E6372BF56DAD8AC9CB178F6281F5D49 /* RCTMaskedViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = DEAA8990BF96D0925C82AC3D05344E8D /* RCTMaskedViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9E6AAAC84C6A41938E51B8485BAAE523 /* RCTRawTextShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = C54731E71DF80D26B8650C54BAF40E0C /* RCTRawTextShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; 9E6FD34857DFBDDA2D87C7471EFF6CA5 /* FIRCLSNetworkOperation.m in Sources */ = {isa = PBXBuildFile; fileRef = 35967FA5DF24995ED311FEED8F36AB8F /* FIRCLSNetworkOperation.m */; }; 9E7028FA0F2ABF7D93770A85B5558BAC /* ScheduledFrameTransport.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 7FEFD67E2F1B67EFEE3B6E755ABC5B56 /* ScheduledFrameTransport.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0 -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - 9E819D429FE4BC5E966296A22B02B2BD /* RCTAnimationPlugins.h in Headers */ = {isa = PBXBuildFile; fileRef = DDC98A98CB90A4FFF2DE3CC1807092FA /* RCTAnimationPlugins.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9E819D429FE4BC5E966296A22B02B2BD /* RCTAnimationPlugins.h in Headers */ = {isa = PBXBuildFile; fileRef = C0E1C597B0ECDE063875B4E2CF74A4C3 /* RCTAnimationPlugins.h */; settings = {ATTRIBUTES = (Project, ); }; }; 9E8CCA67A59216B83A6C4121D4FB5DFF /* SysMman.h in Headers */ = {isa = PBXBuildFile; fileRef = 04B602E919331F6E10D07406173CBE47 /* SysMman.h */; settings = {ATTRIBUTES = (Project, ); }; }; 9EA5C0B783EB521B73FAFDBF1BF1642A /* Shell.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 536768DAFD91F3C9D31A0F9259BF0826 /* Shell.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; 9ED08F4B9FE456E72BABEF07510E0F65 /* FBCxxFollyDynamicConvert.mm in Sources */ = {isa = PBXBuildFile; fileRef = A032E4FC910ABA49E338E0AC91B2B97F /* FBCxxFollyDynamicConvert.mm */; settings = {COMPILER_FLAGS = "-DDEBUG=1 -DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0"; }; }; - 9F0B2B7DE211655D8289AF04856BFF1F /* RCTI18nManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 1ABF16CB3517F42488E18B40B3754435 /* RCTI18nManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9F0B2B7DE211655D8289AF04856BFF1F /* RCTI18nManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 2EF3E4F1F17D048546EFD84791B3A7B9 /* RCTI18nManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; 9F11DA3D148897A06FEDBD68BBC78AF8 /* GDTCORAssert.h in Headers */ = {isa = PBXBuildFile; fileRef = E95C50F4AA4A162306E867AD740D621F /* GDTCORAssert.h */; settings = {ATTRIBUTES = (Project, ); }; }; 9F126C1826371F586DAD449F9B02AC69 /* UIView+WebCache.m in Sources */ = {isa = PBXBuildFile; fileRef = 937CACDBE2FDCB5F2864652AE4CB2CCC /* UIView+WebCache.m */; }; 9F306FCB67D6ADDA635F9D9A81D22BFA /* Cursor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D3B318E7355D55356996438DC49299D0 /* Cursor.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; @@ -2196,44 +2187,43 @@ 9F7B5FBC79EAF261C231ED68CCA2553F /* StreamThroughputMemory.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 291B8471134F121BF9EE155EDDAB0AED /* StreamThroughputMemory.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0 -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; 9F834CB5D13D16428296AFADB9D407FB /* PBUtility.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 86C038FB837827595E9C06CBE6265F9E /* PBUtility.cpp */; settings = {COMPILER_FLAGS = "-x objective-c++"; }; }; 9F923803E6AF05F5E15EF1C31B480C19 /* dynamic.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A1EDD5A33711F21EEC893EE19A9B8F24 /* dynamic.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 9FC3C9159E55C02263FDC38027901A59 /* EXVideoPlayerViewControllerDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = D2F0D83397E471D3655534A803037AA1 /* EXVideoPlayerViewControllerDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9FCA0C85E502C92ACFA86EABD32B2224 /* react-native-orientation-locker-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 1FAE1DED76F1FEADC50895673E572B86 /* react-native-orientation-locker-dummy.m */; }; - A00D85CD6649D81617C458094A982D1A /* BSG_KSCrashSentry_Signal.h in Headers */ = {isa = PBXBuildFile; fileRef = 9F5FB1133346CDEE3A80F43F9818DA61 /* BSG_KSCrashSentry_Signal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A00FFE1F429B7EAD2D53EB3B1C8AD046 /* BSG_KSMachApple.h in Headers */ = {isa = PBXBuildFile; fileRef = C335FBD0DDF363EA880EA2A4EF3B2B98 /* BSG_KSMachApple.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A0125046A5C178DC8BFE0A1A03549AE8 /* BSG_KSSystemInfoC.h in Headers */ = {isa = PBXBuildFile; fileRef = 7CA0EA76C2A9FE04F093A89600261106 /* BSG_KSSystemInfoC.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A015785FDCC70957D4925994683FE72C /* JSIndexedRAMBundle.cpp in Sources */ = {isa = PBXBuildFile; fileRef = C1B2EA3CFB29E4AD312F3CE2FD00004B /* JSIndexedRAMBundle.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - A0164D203F8B23EBC543816F5D46E0D2 /* RCTErrorCustomizer.h in Headers */ = {isa = PBXBuildFile; fileRef = B00A7DBC5089230DC3404C2E7C13EEB2 /* RCTErrorCustomizer.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A02478583635DC43AF9D1BA278F4ABDD /* RNFetchBlobNetwork.h in Headers */ = {isa = PBXBuildFile; fileRef = 3E78DDF7C688CE7245EE832878376B92 /* RNFetchBlobNetwork.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A031A8D4C70ABFA2E6794E0A997A259C /* react-native-background-timer-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 25BAD2A26CE22DF9B0A00BA43CDC30A6 /* react-native-background-timer-dummy.m */; }; - A051A0564C3E15A6E6DC82B8E372DBD0 /* RCTCxxConvert.m in Sources */ = {isa = PBXBuildFile; fileRef = 50AFA3ACD007907EC69B44532DDC1F43 /* RCTCxxConvert.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 9FC3C9159E55C02263FDC38027901A59 /* EXVideoPlayerViewControllerDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = 5A247209A37DE56BA718A900261D68C8 /* EXVideoPlayerViewControllerDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9FCA0C85E502C92ACFA86EABD32B2224 /* react-native-orientation-locker-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 506B898C953993C1D0B3BB7580BE46F8 /* react-native-orientation-locker-dummy.m */; }; + A00D85CD6649D81617C458094A982D1A /* BSG_KSCrashSentry_Signal.h in Headers */ = {isa = PBXBuildFile; fileRef = 0CB914CB5A4080A4AEFD0FAF60BEBC18 /* BSG_KSCrashSentry_Signal.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A00FFE1F429B7EAD2D53EB3B1C8AD046 /* BSG_KSMachApple.h in Headers */ = {isa = PBXBuildFile; fileRef = A6FC5A7B9316B20C740D8D8AC8A4013F /* BSG_KSMachApple.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A0125046A5C178DC8BFE0A1A03549AE8 /* BSG_KSSystemInfoC.h in Headers */ = {isa = PBXBuildFile; fileRef = 2BD7FDD1B56BB354DA0C308C895A5D9C /* BSG_KSSystemInfoC.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A015785FDCC70957D4925994683FE72C /* JSIndexedRAMBundle.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 0746D017C244257B3E9BE536E78751C5 /* JSIndexedRAMBundle.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + A0164D203F8B23EBC543816F5D46E0D2 /* RCTErrorCustomizer.h in Headers */ = {isa = PBXBuildFile; fileRef = DE1D858531EAACE24FF3DCF14A9F5214 /* RCTErrorCustomizer.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A031A8D4C70ABFA2E6794E0A997A259C /* react-native-background-timer-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = CA0FA712394D195459EE2ED9634212ED /* react-native-background-timer-dummy.m */; }; + A051A0564C3E15A6E6DC82B8E372DBD0 /* RCTCxxConvert.m in Sources */ = {isa = PBXBuildFile; fileRef = B8ADCE6ECF30078B12D4977BD39533DD /* RCTCxxConvert.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; A059C81E5903478539477CD5EF45FA2B /* TypeInfo.h in Headers */ = {isa = PBXBuildFile; fileRef = AF7652D1D8ADD58645565C3FF3CA65C3 /* TypeInfo.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A06691A45194C29EF1D311E2C72EE52F /* RNCWebView.h in Headers */ = {isa = PBXBuildFile; fileRef = 1AA015F5428D10F6DEC0993B6F7B7009 /* RNCWebView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A06FEF799AA13ED077FFB3494AEDD1DB /* EXLocalAuthentication-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 1C44DCB2276F1187E5C4D51085144927 /* EXLocalAuthentication-dummy.m */; }; - A0841EF79F0E472F1017C8BBD9234410 /* RCTTouchEvent.m in Sources */ = {isa = PBXBuildFile; fileRef = DD65F3DED5FD0B14E2D6CFAA61CFC479 /* RCTTouchEvent.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - A094F011C1C3EFE122C2E1B98BAAE28F /* RCTFileRequestHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 2AFB8E0F83F5D33F086E1ADC77CE19AE /* RCTFileRequestHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A06691A45194C29EF1D311E2C72EE52F /* RNCWebView.h in Headers */ = {isa = PBXBuildFile; fileRef = 75E82672293864B628DB1952DF00F69E /* RNCWebView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A06FEF799AA13ED077FFB3494AEDD1DB /* EXLocalAuthentication-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = DCA5F62E40583315EED8D443500CD6B1 /* EXLocalAuthentication-dummy.m */; }; + A0841EF79F0E472F1017C8BBD9234410 /* RCTTouchEvent.m in Sources */ = {isa = PBXBuildFile; fileRef = F64EE5366B123EEB8C5ADCF2B1240B7A /* RCTTouchEvent.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + A094F011C1C3EFE122C2E1B98BAAE28F /* RCTFileRequestHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 380F52237572AF309222A94D8E4F5089 /* RCTFileRequestHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; A0DC56F8B7ACC3E6B7F04D0F2AE193ED /* MMBuffer.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 7DE4E7799787EAEE48EF32E6B4BAA9E7 /* MMBuffer.cpp */; settings = {COMPILER_FLAGS = "-x objective-c++ -fno-objc-arc"; }; }; - A0E05E18B7340C52E3407E9F710973B3 /* en.lproj in Resources */ = {isa = PBXBuildFile; fileRef = E99C7750F7EF2372DCF29EC658457AF9 /* en.lproj */; }; - A108D0C39E6723A4722696896373F561 /* RNCAsyncStorageDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = D1D1DC7304785668C1A841980DEEE247 /* RNCAsyncStorageDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A0E05E18B7340C52E3407E9F710973B3 /* en.lproj in Resources */ = {isa = PBXBuildFile; fileRef = 93B9066F801BD5FCBC67504C5239E200 /* en.lproj */; }; + A108D0C39E6723A4722696896373F561 /* RNCAsyncStorageDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = 1763C60D0A0CE66E39FB0432910B2318 /* RNCAsyncStorageDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; }; A10A95B29F28661121BB96FE59DC725B /* FIRInteropParameterNames.h in Headers */ = {isa = PBXBuildFile; fileRef = 68D4DF3318AE6B2A8A4486FB97A71F75 /* FIRInteropParameterNames.h */; settings = {ATTRIBUTES = (Project, ); }; }; A112F0DEF56645CF1EA28BFCCAFF8332 /* Promise-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 217BCA3060C1EB4F73E25CBBAAAE9633 /* Promise-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; A134CBE0553F5F3339A4A20A87F18E3C /* filters_utils.c in Sources */ = {isa = PBXBuildFile; fileRef = 99AEEADA8EC16435EEA450BA7441D9E0 /* filters_utils.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; A13E4C4D56442F5E2F209E1F3DC55BAF /* NSButton+WebCache.h in Headers */ = {isa = PBXBuildFile; fileRef = 628B91F5952637F53226870B395B7975 /* NSButton+WebCache.h */; settings = {ATTRIBUTES = (Project, ); }; }; A1471032678B3AD024125ABA40B35D15 /* MallctlHelper.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D507371FA033E53CBF5A3D33C11A91AC /* MallctlHelper.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; A15EBE154B437F49646D3509D0113685 /* Format-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 903F37D638B5A2D8CFAA8D79ECFFB78D /* Format-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A186320B884BE96F2889EF80916B1BEC /* RCTConstants.m in Sources */ = {isa = PBXBuildFile; fileRef = 5D1A49894D5699B239A8EC446C4C5BFD /* RCTConstants.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + A186320B884BE96F2889EF80916B1BEC /* RCTConstants.m in Sources */ = {isa = PBXBuildFile; fileRef = F5B296D95D5EC9D4EBE12A5EB082B7A3 /* RCTConstants.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; A191267D762C345935828BAF127D7E44 /* FIRCLSUUID.h in Headers */ = {isa = PBXBuildFile; fileRef = 2DE6EAA6583B7AEA30CD4407AD012766 /* FIRCLSUUID.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A1AE828FC8863E3F751638E4F21734BD /* RNCommandsHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = 94517B67FE4516FD0F03BF2463721F9E /* RNCommandsHandler.m */; }; + A1AE828FC8863E3F751638E4F21734BD /* RNCommandsHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = DBFA901B9E9443A2248E5A695AF863DE /* RNCommandsHandler.m */; }; A1BD3EF5F8E40C42F8C2E6311902DF10 /* PTProtocol.m in Sources */ = {isa = PBXBuildFile; fileRef = F257DD7FEAD25B3AC731294D344F4530 /* PTProtocol.m */; }; A1CA7EBFC2566496011ABF1D36B56A03 /* SysFile.h in Headers */ = {isa = PBXBuildFile; fileRef = 58BE37D0CFA670B165C00D3DEFD85E65 /* SysFile.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A1CE7EFADBCE2929EAD388CB9D1D9B2D /* RCTKeyboardObserver.mm in Sources */ = {isa = PBXBuildFile; fileRef = 1C49D74D57313D0A9739A2DD5DB57CFF /* RCTKeyboardObserver.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + A1CE7EFADBCE2929EAD388CB9D1D9B2D /* RCTKeyboardObserver.mm in Sources */ = {isa = PBXBuildFile; fileRef = D44F3771A051790D917427E8BAED5119 /* RCTKeyboardObserver.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; A1D4663851C21E6CE831427D256B8221 /* Instructions.h in Headers */ = {isa = PBXBuildFile; fileRef = 66BF14000F3A0E5D1CF940707334EE3D /* Instructions.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A2074F455694BE6032E9D02AFDEFFA13 /* RCTNetworking.mm in Sources */ = {isa = PBXBuildFile; fileRef = 51C591DF70D6A2D0ECE3DC79836853EC /* RCTNetworking.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; - A21AA461DFBE94B5DA7E5BEB211CE665 /* RCTConvert+FFFastImage.m in Sources */ = {isa = PBXBuildFile; fileRef = E4F505C239991EFC6D8CF40383BDC606 /* RCTConvert+FFFastImage.m */; }; - A2327D7C76B96ABC4A2A5BB09CECF00E /* RCTImageViewManager.mm in Sources */ = {isa = PBXBuildFile; fileRef = 915B1A2624639A65AF4D4364F75D87E9 /* RCTImageViewManager.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; - A27DF81041FA6CE21C1AE8097A8BC393 /* EXSessionUploadTaskDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = F4C6B9A8AC5AD667E97A4CD7AE2FA0B3 /* EXSessionUploadTaskDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A2074F455694BE6032E9D02AFDEFFA13 /* RCTNetworking.mm in Sources */ = {isa = PBXBuildFile; fileRef = 705D3EB39F3E7E497BCD9B30D554C70A /* RCTNetworking.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + A21AA461DFBE94B5DA7E5BEB211CE665 /* RCTConvert+FFFastImage.m in Sources */ = {isa = PBXBuildFile; fileRef = A1476AB545279DF4F48290E67F873C91 /* RCTConvert+FFFastImage.m */; }; + A2327D7C76B96ABC4A2A5BB09CECF00E /* RCTImageViewManager.mm in Sources */ = {isa = PBXBuildFile; fileRef = 4A96ADC3AFABCAD4DBCA96ED20BAB417 /* RCTImageViewManager.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + A27DF81041FA6CE21C1AE8097A8BC393 /* EXSessionUploadTaskDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = B65B9525F88F59AA26E7E09C4BA0FA6C /* EXSessionUploadTaskDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; }; A28CD67E44E5F6FC59426040908B323C /* MemoryIdler.h in Headers */ = {isa = PBXBuildFile; fileRef = AE51BE792CA89F0E1F9399812F81756C /* MemoryIdler.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A29EF70E1D68CA5D32D24217EEEC5BF6 /* BSG_KSCrashContext.h in Headers */ = {isa = PBXBuildFile; fileRef = DB6683D56729E793030C9787ED182DD5 /* BSG_KSCrashContext.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A2CF68F00447DAAF02496F00EF86A2C4 /* RCTAlertManager.mm in Sources */ = {isa = PBXBuildFile; fileRef = 8C4134E0C4340461FD1D762382CBE11D /* RCTAlertManager.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + A29EF70E1D68CA5D32D24217EEEC5BF6 /* BSG_KSCrashContext.h in Headers */ = {isa = PBXBuildFile; fileRef = CB0CD3F37236BC9C2F58D3460CC0A4D6 /* BSG_KSCrashContext.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A2CF68F00447DAAF02496F00EF86A2C4 /* RCTAlertManager.mm in Sources */ = {isa = PBXBuildFile; fileRef = 24EF4F21CA0981558A2E33447B04DCF0 /* RCTAlertManager.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; A2EAE9A03359B4DEA105AC46042FD9DA /* FirebaseCore-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 5B24135BF3E27AD67AD78E014B6DF9F5 /* FirebaseCore-dummy.m */; }; A2FB46DA4CC36021A5ECDACECFFC780F /* CallstackHelper.h in Headers */ = {isa = PBXBuildFile; fileRef = 241479B1A70265C5EF920CEA1B30E3C8 /* CallstackHelper.h */; settings = {ATTRIBUTES = (Project, ); }; }; A3045BF0AB3663CF2F6AE4A494A26561 /* SDWebImageCacheSerializer.h in Headers */ = {isa = PBXBuildFile; fileRef = 4AC72A1D88D2EF29FF478C63A05978F2 /* SDWebImageCacheSerializer.h */; settings = {ATTRIBUTES = (Project, ); }; }; @@ -2241,58 +2231,58 @@ A30FEB961B145B1E493077DD3D79859D /* GULNetworkMessageCode.h in Headers */ = {isa = PBXBuildFile; fileRef = 692C68C4459502808EC208154C07B8A5 /* GULNetworkMessageCode.h */; settings = {ATTRIBUTES = (Project, ); }; }; A3235E29BA5E0D51FA6508C3DBD5AE17 /* ThreadName.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 5953481880AC05A5A0256CD16F6B6C80 /* ThreadName.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; A33402260339194D8E4F42EFF7FD03AA /* TOCropScrollView.h in Headers */ = {isa = PBXBuildFile; fileRef = BE763D454332C89C581D5761CD7FD5DB /* TOCropScrollView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A3377E75A6E4A4461B63CFAAC884C5F3 /* UMAppLoaderProvider.h in Headers */ = {isa = PBXBuildFile; fileRef = 69B843B9971F7D79C012E496D89DC4D0 /* UMAppLoaderProvider.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A33A3974F5C9C762E24A8248D8300565 /* UIImage+Extension.h in Headers */ = {isa = PBXBuildFile; fileRef = AA8AE8F91ADE6CC35F55B1A7E0157DDC /* UIImage+Extension.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A3377E75A6E4A4461B63CFAAC884C5F3 /* UMAppLoaderProvider.h in Headers */ = {isa = PBXBuildFile; fileRef = E547D116FEED98615DA77805F58A68FC /* UMAppLoaderProvider.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A33A3974F5C9C762E24A8248D8300565 /* UIImage+Extension.h in Headers */ = {isa = PBXBuildFile; fileRef = A9EF32B6C7A91D7C0C66B64D36445C17 /* UIImage+Extension.h */; settings = {ATTRIBUTES = (Project, ); }; }; A348E879FA3330E1712179F5B4FAC236 /* vp8l_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = 79F8319745A77E7EC514938CEA67D845 /* vp8l_enc.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; A372D39001A447E659CDFBC16C14DCBE /* CacheLocality.h in Headers */ = {isa = PBXBuildFile; fileRef = 1A706E3D75EE13566AA1BB2D4C1FF5C4 /* CacheLocality.h */; settings = {ATTRIBUTES = (Project, ); }; }; A38E1CD55FB4C876BFA4BFFFAE20F7D3 /* FrameSerializer_v1_0.h in Headers */ = {isa = PBXBuildFile; fileRef = EB2004ACF1EA96A7A3225CC6D1D87043 /* FrameSerializer_v1_0.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A3C5B95F92F2124418433EE74AF6D2E1 /* UMModuleRegistryHolderReactModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 9389A0A7F1E6F8E7BABB2B8B3338002F /* UMModuleRegistryHolderReactModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A3F002AAB38C990F02388A8B45198DED /* EXSessionDownloadTaskDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = DCBB4DB2472B85F4A8405C3E47552D0C /* EXSessionDownloadTaskDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A3C5B95F92F2124418433EE74AF6D2E1 /* UMModuleRegistryHolderReactModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 13208548F575F5B4256D6DA56C7C79DA /* UMModuleRegistryHolderReactModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A3F002AAB38C990F02388A8B45198DED /* EXSessionDownloadTaskDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = EB28D3250973C1CA62687AAD76B1FDBB /* EXSessionDownloadTaskDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; }; A3FEE631937CCE97FD38F800E98895A7 /* UIView+SKInvalidation.mm in Sources */ = {isa = PBXBuildFile; fileRef = 1053EEB0FB1AB2AE94835CC5900BE7BE /* UIView+SKInvalidation.mm */; settings = {COMPILER_FLAGS = "-DDEBUG=1 -DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0"; }; }; - A3FF19B795F24AB2366AFBCCBC5FBBED /* RCTGIFImageDecoder.h in Headers */ = {isa = PBXBuildFile; fileRef = 2EDF61BAC33F363752AAA16B0E492F18 /* RCTGIFImageDecoder.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A420832BE317B6F619DC80BC9DFA9EB8 /* BSG_KSCrashIdentifier.m in Sources */ = {isa = PBXBuildFile; fileRef = 1E401050B6E345CA57EA75CA7F1B7F83 /* BSG_KSCrashIdentifier.m */; }; + A3FF19B795F24AB2366AFBCCBC5FBBED /* RCTGIFImageDecoder.h in Headers */ = {isa = PBXBuildFile; fileRef = 3DFE153F31FEFF2CCE0DD9BDB0668990 /* RCTGIFImageDecoder.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A420832BE317B6F619DC80BC9DFA9EB8 /* BSG_KSCrashIdentifier.m in Sources */ = {isa = PBXBuildFile; fileRef = 3D34D1147FF5825D85B7C27FCE3BE555 /* BSG_KSCrashIdentifier.m */; }; A42284BAEF9A5D75B15BF4EFC4E4C468 /* frame_dec.c in Sources */ = {isa = PBXBuildFile; fileRef = A8EA16EC81E65B135245D99881BAA99F /* frame_dec.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; A42C59477BEC3A7A4D2CEBD6BC4A4F1E /* yuv_mips_dsp_r2.c in Sources */ = {isa = PBXBuildFile; fileRef = 2077C5B596E4D880F57984623A877334 /* yuv_mips_dsp_r2.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - A42F64B63479BC26B229023E3CC66C0A /* RCTAsyncLocalStorage.h in Headers */ = {isa = PBXBuildFile; fileRef = 9ACC090CEF53BA228E9E012822B6E4A5 /* RCTAsyncLocalStorage.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A42F64B63479BC26B229023E3CC66C0A /* RCTAsyncLocalStorage.h in Headers */ = {isa = PBXBuildFile; fileRef = 9D6AD1009A74ED5DA0C3A7BC500DE4E9 /* RCTAsyncLocalStorage.h */; settings = {ATTRIBUTES = (Project, ); }; }; A42FDAB67EBF4040DB80B9F0BAA2BF65 /* FIRCoreDiagnosticsConnector.h in Headers */ = {isa = PBXBuildFile; fileRef = FF79D3BE39F7CDEA58A9C6F8F575592F /* FIRCoreDiagnosticsConnector.h */; settings = {ATTRIBUTES = (Project, ); }; }; A444AC14D1AB1CEDE00F63E32EA7F7E0 /* ObservableConcatOperators.h in Headers */ = {isa = PBXBuildFile; fileRef = 39D0DBE2677AD7AEB0D115FAB6DA6B3C /* ObservableConcatOperators.h */; settings = {ATTRIBUTES = (Project, ); }; }; A4576BBC57A17E26132B2DEFB9B1B5A6 /* SKViewControllerDescriptor.h in Headers */ = {isa = PBXBuildFile; fileRef = D75AD1443349704117014A7737FB83C9 /* SKViewControllerDescriptor.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A4764E8EC572725B1EC20DE1F38F9ADB /* UMPermissionsInterface.h in Headers */ = {isa = PBXBuildFile; fileRef = E9B869E80FBDE534AF2DC0C3ECB5004A /* UMPermissionsInterface.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A477B5D239354ADA5BD84C63F3B0FE48 /* YGNodePrint.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3893ACF63DD49DECAE775B6F18CE99D1 /* YGNodePrint.cpp */; settings = {COMPILER_FLAGS = "-fno-omit-frame-pointer -fexceptions -Wall -Werror -std=c++1y -fPIC -fno-objc-arc"; }; }; + A4764E8EC572725B1EC20DE1F38F9ADB /* UMPermissionsInterface.h in Headers */ = {isa = PBXBuildFile; fileRef = DA3640CBD10933A84833803C4AF8AB2C /* UMPermissionsInterface.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A477B5D239354ADA5BD84C63F3B0FE48 /* YGNodePrint.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 60090F1A99574404DAE0E091F96DC311 /* YGNodePrint.cpp */; settings = {COMPILER_FLAGS = "-fno-omit-frame-pointer -fexceptions -Wall -Werror -std=c++1y -fPIC -fno-objc-arc"; }; }; A48573BC990762DA98475AA4E59F4C55 /* UIButton+WebCache.h in Headers */ = {isa = PBXBuildFile; fileRef = 7056144BCE38F9B4F595EB0A03FB4227 /* UIButton+WebCache.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A4AEBA8D463DF973AC69F52FC5E1D0EB /* RCTAlertManager.h in Headers */ = {isa = PBXBuildFile; fileRef = BDAC91970441035D624A3EE7B0ECFECC /* RCTAlertManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A4AEBA8D463DF973AC69F52FC5E1D0EB /* RCTAlertManager.h in Headers */ = {isa = PBXBuildFile; fileRef = CE4992EE87E3DB6DB4CE49F27C6E39C9 /* RCTAlertManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; A4B2A83F3F46087317BDA98ECA699248 /* Select64.h in Headers */ = {isa = PBXBuildFile; fileRef = BFFE35C14D05067603190D3E26CF57E4 /* Select64.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A4ECFE935BBAB8F950062E28430507FC /* QBVideoIconView.h in Headers */ = {isa = PBXBuildFile; fileRef = F349419C2C1195ED39C34882ACD3D593 /* QBVideoIconView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A4ECFE935BBAB8F950062E28430507FC /* QBVideoIconView.h in Headers */ = {isa = PBXBuildFile; fileRef = E028BE7E6BBB9A5B50393231C89D4CA5 /* QBVideoIconView.h */; settings = {ATTRIBUTES = (Project, ); }; }; A4F849F5F0D9CD393F337409679534FC /* PTUSBHub.h in Headers */ = {isa = PBXBuildFile; fileRef = 2987799D477A67FEA74BC1C02AEB1F48 /* PTUSBHub.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A4F8D1C9B27FE119D005DFC20621F99F /* event.h in Headers */ = {isa = PBXBuildFile; fileRef = C47E09C373B0A0FB35238FDA7C561401 /* event.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A4F8D1C9B27FE119D005DFC20621F99F /* event.h in Headers */ = {isa = PBXBuildFile; fileRef = 62ECF1E16FE4FF13298DA5AC28BA3769 /* event.h */; settings = {ATTRIBUTES = (Project, ); }; }; A50388445DF10ADD6B22876F3F69E902 /* ssim.c in Sources */ = {isa = PBXBuildFile; fileRef = BA8076322D07A19932715F339945025F /* ssim.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; A530BB82BAF0C755B99BFCE96AC93639 /* BaselinesTcp.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8EB952E1C1834C0CEEAA4E5B7C8DC4A0 /* BaselinesTcp.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0 -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - A56297DE41EC440968388D0F4A94F43B /* ARTShapeManager.h in Headers */ = {isa = PBXBuildFile; fileRef = DDF74F15CBA15B1E87802F3C80B2BE1A /* ARTShapeManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A574026171CFEEC0EECDE544E2C1330B /* RNNotificationCenter.h in Headers */ = {isa = PBXBuildFile; fileRef = 829E9A62025FA0B6F49BA4B4220CB903 /* RNNotificationCenter.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A589A7984EA7376E70C72AF061F51B43 /* UMDefines.h in Headers */ = {isa = PBXBuildFile; fileRef = 489A6810B51514E0051BE26046CD4E30 /* UMDefines.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A56297DE41EC440968388D0F4A94F43B /* ARTShapeManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 1919D4695751A83FBE052BBA9998B780 /* ARTShapeManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A574026171CFEEC0EECDE544E2C1330B /* RNNotificationCenter.h in Headers */ = {isa = PBXBuildFile; fileRef = 610E64DCD046F3EA7BA9FB47611C672C /* RNNotificationCenter.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A589A7984EA7376E70C72AF061F51B43 /* UMDefines.h in Headers */ = {isa = PBXBuildFile; fileRef = 544922217666899EE7914E0FBCBCCE02 /* UMDefines.h */; settings = {ATTRIBUTES = (Project, ); }; }; A58D964A05070A1687AEF98D527B41B3 /* GFlags.h in Headers */ = {isa = PBXBuildFile; fileRef = 40875AD0B326AFC7FA447DED64B32BDA /* GFlags.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A58DC9CA14A405D0BB4013E16623B3AF /* react-native-mmkv-storage-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = EFE253EDDDF2A6BE55D8EE81C7B566D7 /* react-native-mmkv-storage-dummy.m */; }; - A5DC12AF6A82CFA1A940EBBB5A42D999 /* BSG_KSSysCtl.c in Sources */ = {isa = PBXBuildFile; fileRef = 0C60821A40C373B9D45D5A2378D78185 /* BSG_KSSysCtl.c */; }; + A58DC9CA14A405D0BB4013E16623B3AF /* react-native-mmkv-storage-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = FFEAA83950D372C14D677568D14A6065 /* react-native-mmkv-storage-dummy.m */; }; + A5DC12AF6A82CFA1A940EBBB5A42D999 /* BSG_KSSysCtl.c in Sources */ = {isa = PBXBuildFile; fileRef = 600D816AA61D01F5E4158C5F3CFA2E7D /* BSG_KSSysCtl.c */; }; A5F16518FC269D412A721472DC3D5CEE /* FIRCoreDiagnostics.m in Sources */ = {isa = PBXBuildFile; fileRef = FAE319DCADB617279454E8752623AF1D /* FIRCoreDiagnostics.m */; }; A5F7A295CE8D9AB5DE3F0B75200DD1A2 /* io_dec.c in Sources */ = {isa = PBXBuildFile; fileRef = 56461E06661E0F052AB26B2AB7499CEE /* io_dec.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; A602F94288003EADC14BAE8B862E7B77 /* ScopedEventBaseThread.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B4B17C81BE735804B81E8213F740EB9B /* ScopedEventBaseThread.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; A60533D4FB72EEF17855E3D76770B477 /* bignum-dtoa.h in Headers */ = {isa = PBXBuildFile; fileRef = AB5987B23611640B17D0C9DE7EF77858 /* bignum-dtoa.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A60866B211E10A251823755E039D280D /* QBAssetCell.h in Headers */ = {isa = PBXBuildFile; fileRef = 51BA07ABF915C2A2F65BD24E8396E90E /* QBAssetCell.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A609BBB80A19C54FA9CF2B839B539C34 /* RCTDatePickerManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 53050823CDDA9B15EDE2BCBA4DF9FEAC /* RCTDatePickerManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A6150361DD24EB7A88604FBAC32C5FC5 /* RCTBaseTextViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = E17E4005B34544F5D2486E45C83B7484 /* RCTBaseTextViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A6278A3A9CBE5044D9A576B1B77D82D8 /* RCTResizeMode.h in Headers */ = {isa = PBXBuildFile; fileRef = 85C063AC7C2B217791BC7AE86EAE3EC5 /* RCTResizeMode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A639AB8EE3F77DD9B619159D9250C058 /* RCTEventDispatcher.m in Sources */ = {isa = PBXBuildFile; fileRef = 15DB6119A63F2B953674A42920CFA829 /* RCTEventDispatcher.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + A60866B211E10A251823755E039D280D /* QBAssetCell.h in Headers */ = {isa = PBXBuildFile; fileRef = 2C5377271D73E125FB18FD740DDD776A /* QBAssetCell.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A609BBB80A19C54FA9CF2B839B539C34 /* RCTDatePickerManager.h in Headers */ = {isa = PBXBuildFile; fileRef = E7329921F0879CED0F73EBBDBC1D0E0A /* RCTDatePickerManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A6150361DD24EB7A88604FBAC32C5FC5 /* RCTBaseTextViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = FFB82057B966842FA5FEEEB38804C72E /* RCTBaseTextViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A6278A3A9CBE5044D9A576B1B77D82D8 /* RCTResizeMode.h in Headers */ = {isa = PBXBuildFile; fileRef = 738D5556685EFE790866EDEF90749B4A /* RCTResizeMode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A639AB8EE3F77DD9B619159D9250C058 /* RCTEventDispatcher.m in Sources */ = {isa = PBXBuildFile; fileRef = B5879F9754B13A5124693008CFD4361B /* RCTEventDispatcher.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; A646ED8AD08C2BFB3F92DC72C1A686D2 /* GULUserDefaults.h in Headers */ = {isa = PBXBuildFile; fileRef = D1306E80732728F3DDAA52FA3EDABE05 /* GULUserDefaults.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A65D6376F7B1595D5DDFF54A4BA88EEE /* RCTBlobManager.mm in Sources */ = {isa = PBXBuildFile; fileRef = 752AB10D89766EBB610A77079A757DB7 /* RCTBlobManager.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; - A66E2504F9BBCA59602316BE4EA8FE68 /* BugsnagCrashReport.h in Headers */ = {isa = PBXBuildFile; fileRef = B9141471CF887C79B4B88DFF8A35F80E /* BugsnagCrashReport.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A6742224DEEE6116B21884597417C6A4 /* EXAppleAuthenticationRequest.h in Headers */ = {isa = PBXBuildFile; fileRef = F3CA9C25F6C5EEB7BBC71244E41A0179 /* EXAppleAuthenticationRequest.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A65D6376F7B1595D5DDFF54A4BA88EEE /* RCTBlobManager.mm in Sources */ = {isa = PBXBuildFile; fileRef = 5364E6248DFEA3869A0CAFA5203B94CB /* RCTBlobManager.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + A66E2504F9BBCA59602316BE4EA8FE68 /* BugsnagCrashReport.h in Headers */ = {isa = PBXBuildFile; fileRef = F91149FD2C365CA0947E2918BDFB07FD /* BugsnagCrashReport.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A6742224DEEE6116B21884597417C6A4 /* EXAppleAuthenticationRequest.h in Headers */ = {isa = PBXBuildFile; fileRef = 63879AE45CF71EE31DF727C9F47BCB43 /* EXAppleAuthenticationRequest.h */; settings = {ATTRIBUTES = (Project, ); }; }; A6776FF2CD328909E8600FDCF823B0D8 /* json_patch.h in Headers */ = {isa = PBXBuildFile; fileRef = 773F6EEAD949E379CA3BD9EE0F29FC22 /* json_patch.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A6800C2F26B834BD801B939F5BCA4258 /* TurboModuleBinding.h in Headers */ = {isa = PBXBuildFile; fileRef = D291C56A24148D8510AA1C159AE07B1C /* TurboModuleBinding.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A6819EA409E0033334420B790115A46E /* UMReactNativeAdapter.m in Sources */ = {isa = PBXBuildFile; fileRef = 7F720C62D9D3B2417C29BD6DA1571EF0 /* UMReactNativeAdapter.m */; }; + A6800C2F26B834BD801B939F5BCA4258 /* TurboModuleBinding.h in Headers */ = {isa = PBXBuildFile; fileRef = C22650DDC3DD4785AC64C1A1E5AEAC6B /* TurboModuleBinding.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A6819EA409E0033334420B790115A46E /* UMReactNativeAdapter.m in Sources */ = {isa = PBXBuildFile; fileRef = DB1C7D642895B4ADFC79F4C672E494DC /* UMReactNativeAdapter.m */; }; A6BABFFFD02CC5A923F1B76BE536EA3B /* BlockingQueue.h in Headers */ = {isa = PBXBuildFile; fileRef = C7A8B4EF2D2F14C00D0BA819EBF3DAF9 /* BlockingQueue.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A6E5A41B5330A56303AC69C291ED1DB6 /* REAFunctionNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 4DAC573399AFC1F7C2300C1DB4400553 /* REAFunctionNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A6E5A41B5330A56303AC69C291ED1DB6 /* REAFunctionNode.h in Headers */ = {isa = PBXBuildFile; fileRef = A85E740F7324B436A14DAA9774F14F54 /* REAFunctionNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; A70100EBBD9722DAA244ECEF1BDCCF92 /* File.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 639135DC52CE870C6E44464E7B08EE77 /* File.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - A71C7EEA8C413CE0F26CF6E6C525375F /* BSG_KSCrashReportWriter.h in Headers */ = {isa = PBXBuildFile; fileRef = EAE5641A6434CDB91654D3A8BE36308E /* BSG_KSCrashReportWriter.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A71C7EEA8C413CE0F26CF6E6C525375F /* BSG_KSCrashReportWriter.h in Headers */ = {isa = PBXBuildFile; fileRef = 6A6C6EAE481BB3543A0ABB16DF747721 /* BSG_KSCrashReportWriter.h */; settings = {ATTRIBUTES = (Project, ); }; }; A7255A0E5A0B85CF61AEC27F539A8AD1 /* AsyncTransport.h in Headers */ = {isa = PBXBuildFile; fileRef = A274AD7F025E5AA596B5E18F9C42D782 /* AsyncTransport.h */; settings = {ATTRIBUTES = (Project, ); }; }; A73A92EE393BA7EFB5EF12271CD5AE1C /* ResumeManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 6505F6C062E4A5D1040FEDB7153756C1 /* ResumeManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; A74265F5E9D3396D998C4D41384D939E /* QuotientMultiSet.h in Headers */ = {isa = PBXBuildFile; fileRef = 1016CCB8E58BD5D4E51E717699746205 /* QuotientMultiSet.h */; settings = {ATTRIBUTES = (Project, ); }; }; @@ -2304,9 +2294,9 @@ A791685400809D96C26DFA3858AD4DA0 /* SetupResumeAcceptor.h in Headers */ = {isa = PBXBuildFile; fileRef = 0F75699D4BC5083760831FCA919BD21C /* SetupResumeAcceptor.h */; settings = {ATTRIBUTES = (Project, ); }; }; A7A7525768BA7795D9437CCCC3E9523A /* RangeSse42.h in Headers */ = {isa = PBXBuildFile; fileRef = 7585DFE66F2A77135D0C671011CC324E /* RangeSse42.h */; settings = {ATTRIBUTES = (Project, ); }; }; A7BE4D326DF6F9381E4D49A1C6A2F6D6 /* AtomicNotification.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 7098517F01DF39E78F5625884B61FFD1 /* AtomicNotification.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - A7C1A99E2BFFB03B01E3078FC5916ED2 /* RCTLayout.h in Headers */ = {isa = PBXBuildFile; fileRef = 2B89E79FFCEFF8600B29DAC31CD75A3F /* RCTLayout.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A7C6CA4554F58BB1C409F0F4A97C1656 /* RNVectorIconsManager.h in Headers */ = {isa = PBXBuildFile; fileRef = E911A339CABE081B9961C9A25FFFA4B4 /* RNVectorIconsManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A7D57A898342D32D6D087A8B3B880AFF /* UMReactLogHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 7E91011DB5327234A571BA053074F4D3 /* UMReactLogHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A7C1A99E2BFFB03B01E3078FC5916ED2 /* RCTLayout.h in Headers */ = {isa = PBXBuildFile; fileRef = EA20ED1DC2423D44F91E9BD23BC3BEE5 /* RCTLayout.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A7C6CA4554F58BB1C409F0F4A97C1656 /* RNVectorIconsManager.h in Headers */ = {isa = PBXBuildFile; fileRef = FA64382D09BA132AF7E961533E75C9F2 /* RNVectorIconsManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A7D57A898342D32D6D087A8B3B880AFF /* UMReactLogHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = B9D6A55BB57A1F525929578A88F9CF8E /* UMReactLogHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; A7DE1C486F3DBFE3BFE72313A97AE853 /* GDTCOREvent+GDTCCTSupport.m in Sources */ = {isa = PBXBuildFile; fileRef = ED13E425A4DAC7D7E9C80A18DAB973DE /* GDTCOREvent+GDTCCTSupport.m */; }; A7FE4D8E743D00ECB115E087D53587C7 /* cost.c in Sources */ = {isa = PBXBuildFile; fileRef = A425F067B5A19475E60C81F33C517AD2 /* cost.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; A814790EEE1DB78F2C8EDC04096D870D /* Fcntl.cpp in Sources */ = {isa = PBXBuildFile; fileRef = E1318B86C820CB00018EAD32A3F07E4D /* Fcntl.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; @@ -2316,42 +2306,41 @@ A85E3E09CE5A1C1FCBE000C05F72FC0D /* MemoryMapping.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FC2C9E283D60951BBF3F02223A762F22 /* MemoryMapping.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; A8702F584104386DBB13FB3B877CC8F9 /* TOCropView.m in Sources */ = {isa = PBXBuildFile; fileRef = E8A50B7CED93C22A904707D53B2C2486 /* TOCropView.m */; }; A88D214A0675FD7F6B4AD5D486A4CF4F /* GDTCORDataFuture.m in Sources */ = {isa = PBXBuildFile; fileRef = AFDB4C9806333C32509F4DD1BB3599DB /* GDTCORDataFuture.m */; }; - A892AC7A653D1DD72046D047AD860ED9 /* RCTScrollContentView.h in Headers */ = {isa = PBXBuildFile; fileRef = 889AC4585FC0CF11E59FA4BC41902F33 /* RCTScrollContentView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A8B8BEB2134D3E68B9907C5A48A04A03 /* RNGestureHandlerDirection.h in Headers */ = {isa = PBXBuildFile; fileRef = EE5710A8FA0A17AA1BE189ADABC2203D /* RNGestureHandlerDirection.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A892AC7A653D1DD72046D047AD860ED9 /* RCTScrollContentView.h in Headers */ = {isa = PBXBuildFile; fileRef = 0772CD1EB03764865FC293C8347E4598 /* RCTScrollContentView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A8B8BEB2134D3E68B9907C5A48A04A03 /* RNGestureHandlerDirection.h in Headers */ = {isa = PBXBuildFile; fileRef = B361D1648F16F2E9D630D5228A0BD05D /* RNGestureHandlerDirection.h */; settings = {ATTRIBUTES = (Project, ); }; }; A8F65854124450A07A7180E05C65D284 /* YGLayoutExtensions.swift in Sources */ = {isa = PBXBuildFile; fileRef = 567F2C0D0A1DAE9A369027A7A121B6E5 /* YGLayoutExtensions.swift */; }; A8FDF48E1A7E3A8E1CC2EAE5C6D04A74 /* FIRCLSFABAsyncOperation.m in Sources */ = {isa = PBXBuildFile; fileRef = 8EB7BA7C2D608DD4B24E71DF6890FCF3 /* FIRCLSFABAsyncOperation.m */; }; - A9102589774A3FD3F3808AB2F0F83ACA /* RNNativeViewHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 38E507208666EAA5E97F8CE95EE71C4C /* RNNativeViewHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A927948586B0BC8C30C3065D3AA5BCAB /* RCTScrollContentShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = 1CDE50EA2C2F3D84048A4674DC950D74 /* RCTScrollContentShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A94806AABD97A919D3625DF989F7E97B /* RCTRootShadowView.m in Sources */ = {isa = PBXBuildFile; fileRef = F2040F70BD58607E19BF2B257D5EDBFA /* RCTRootShadowView.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - A96C68C0C268482DDD4103E565FF1C77 /* REABezierNode.h in Headers */ = {isa = PBXBuildFile; fileRef = B5381095D620F8CEE1468E12F5FDABB7 /* REABezierNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A970E68615F0A3B8CFCD90AFAA5A5052 /* NSError+BSG_SimpleConstructor.m in Sources */ = {isa = PBXBuildFile; fileRef = D676B1A580C787065B0D1DE458EABF5C /* NSError+BSG_SimpleConstructor.m */; }; + A9102589774A3FD3F3808AB2F0F83ACA /* RNNativeViewHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 0038443937503E8F7775EB12685926F9 /* RNNativeViewHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A927948586B0BC8C30C3065D3AA5BCAB /* RCTScrollContentShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = C32FA5A92FFBCFFE518FB95493529D4B /* RCTScrollContentShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A94806AABD97A919D3625DF989F7E97B /* RCTRootShadowView.m in Sources */ = {isa = PBXBuildFile; fileRef = 6A4E029ADB9B52B57E9556BC69538ACB /* RCTRootShadowView.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + A96C68C0C268482DDD4103E565FF1C77 /* REABezierNode.h in Headers */ = {isa = PBXBuildFile; fileRef = BB303780E5625A5F44EF222F1177D5E7 /* REABezierNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A970E68615F0A3B8CFCD90AFAA5A5052 /* NSError+BSG_SimpleConstructor.m in Sources */ = {isa = PBXBuildFile; fileRef = 6AC4EDB7ABE2FDDD4FA74FD80C5EB82F /* NSError+BSG_SimpleConstructor.m */; }; A976416CE94836C67A780BDA4CC35100 /* AsyncSSLSocket.h in Headers */ = {isa = PBXBuildFile; fileRef = 02736950502345C1DFE6797B12EEBE67 /* AsyncSSLSocket.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A97D511E4F01BBFD768849902935DA50 /* RCTScrollContentView.m in Sources */ = {isa = PBXBuildFile; fileRef = D49BD9594FA69C7DCE14EF69C1BD7912 /* RCTScrollContentView.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - A98FB128AA521EA9962AFC18E97BD03E /* RCTDeviceInfo.h in Headers */ = {isa = PBXBuildFile; fileRef = 565BFBD8A300386DF3D6B7DA63170832 /* RCTDeviceInfo.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A97D511E4F01BBFD768849902935DA50 /* RCTScrollContentView.m in Sources */ = {isa = PBXBuildFile; fileRef = 683FF8385E8A845B8EE43EDE69D6DD5A /* RCTScrollContentView.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + A98FB128AA521EA9962AFC18E97BD03E /* RCTDeviceInfo.h in Headers */ = {isa = PBXBuildFile; fileRef = 2C704C8083AFB4F2D56D934673F6990F /* RCTDeviceInfo.h */; settings = {ATTRIBUTES = (Project, ); }; }; A9C22AB6A1DFF4957F5564EE589A4A64 /* DelayedDestructionBase.h in Headers */ = {isa = PBXBuildFile; fileRef = DC1EE83752101D56B4706A9D6E02575F /* DelayedDestructionBase.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A9D69263DC060805E1B4A5A84F0F32F3 /* RCTCxxUtils.mm in Sources */ = {isa = PBXBuildFile; fileRef = 2FE823472FBF17C51C7D186752692E69 /* RCTCxxUtils.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + A9D69263DC060805E1B4A5A84F0F32F3 /* RCTCxxUtils.mm in Sources */ = {isa = PBXBuildFile; fileRef = AE36F36F0E6BC974C8AD80BB6CF9B5DB /* RCTCxxUtils.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; AA0833E0CD30D0CC1E832C8D53373D1E /* ChannelRequester.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1E038CC21A6ADE42B2F2439769668BD7 /* ChannelRequester.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0 -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - AA336DD420800326EDE6AE8F9D97673E /* DispatchMessageQueueThread.h in Headers */ = {isa = PBXBuildFile; fileRef = 14F2DBCCF63939F5750FC51309DC6CCC /* DispatchMessageQueueThread.h */; settings = {ATTRIBUTES = (Project, ); }; }; + AA336DD420800326EDE6AE8F9D97673E /* DispatchMessageQueueThread.h in Headers */ = {isa = PBXBuildFile; fileRef = 4C8C119F60CED5873359325CC7F0E23A /* DispatchMessageQueueThread.h */; settings = {ATTRIBUTES = (Project, ); }; }; AA41B806DDD2464BA472118CA6EB6576 /* SaturatingSemaphore.h in Headers */ = {isa = PBXBuildFile; fileRef = 5CA20EC06BDF84FDD22DE7DD7A603327 /* SaturatingSemaphore.h */; settings = {ATTRIBUTES = (Project, ); }; }; AA4D2BE8FBD6B2E0CAA71C501FAB68D6 /* FIRInstallationsAPIService.m in Sources */ = {isa = PBXBuildFile; fileRef = F9298904FABCAC71BA497AB2F973AEB6 /* FIRInstallationsAPIService.m */; }; - AA7C1F95927D38B3403C705618DC8A50 /* BSGOutOfMemoryWatchdog.h in Headers */ = {isa = PBXBuildFile; fileRef = A2CADB2028F3A7EEF7E37ECD6C109737 /* BSGOutOfMemoryWatchdog.h */; settings = {ATTRIBUTES = (Project, ); }; }; + AA7C1F95927D38B3403C705618DC8A50 /* BSGOutOfMemoryWatchdog.h in Headers */ = {isa = PBXBuildFile; fileRef = 73E1773B8FFBB2A2151CC4E550176CC0 /* BSGOutOfMemoryWatchdog.h */; settings = {ATTRIBUTES = (Project, ); }; }; AA92D2FF7327196B7963E1EAFC2A282A /* FirebaseCrashlytics-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 43B82A8E2CCDE55D7BAECC9C37FF1734 /* FirebaseCrashlytics-dummy.m */; }; - AA97B065750AD2905DADC094E5ED46ED /* JSINativeModules.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 513F6A6502ECD4B1324FF330C306774E /* JSINativeModules.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + AA97B065750AD2905DADC094E5ED46ED /* JSINativeModules.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2235F3F4971587F92D12EC2AE37D81A5 /* JSINativeModules.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; AA98E5E760C605F57551D3D6192E5225 /* mips_macro.h in Headers */ = {isa = PBXBuildFile; fileRef = 6284A02AF8BD292CBD1C1D1C5702C4E5 /* mips_macro.h */; settings = {ATTRIBUTES = (Project, ); }; }; - AA9B5FC484374062C68432D243330631 /* RCTSurfaceSizeMeasureMode.mm in Sources */ = {isa = PBXBuildFile; fileRef = 270DFF8EC28AE8B3070C199EC52B0751 /* RCTSurfaceSizeMeasureMode.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - AAA397302AB9735FEE54E85069DF673B /* RNFetchBlobNetwork.m in Sources */ = {isa = PBXBuildFile; fileRef = 29155DCB0B25BB8B8C3322D366B643AB /* RNFetchBlobNetwork.m */; }; + AA9B5FC484374062C68432D243330631 /* RCTSurfaceSizeMeasureMode.mm in Sources */ = {isa = PBXBuildFile; fileRef = AE3B1CDBEB0818930D87B93F7C64B975 /* RCTSurfaceSizeMeasureMode.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; AACA5654253ACB9C4C1A70C4D9942CEA /* openssl_aes-armv4.S in Sources */ = {isa = PBXBuildFile; fileRef = 533287C913A304B3274CA5BF049ACD95 /* openssl_aes-armv4.S */; }; AAEC54ADA9A9C0A6DD785E903782EFB3 /* ssim_sse2.c in Sources */ = {isa = PBXBuildFile; fileRef = 04BF9679CC9E22B954E0BCFF9DE3D48E /* ssim_sse2.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; AAF05BFDD102FD660418FD7AE198030D /* analysis_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = 2A59565B3D6519C10DEBBEA7F5EBB4AB /* analysis_enc.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; AB03E9B6D1F71BCDCBC752380EC4E008 /* FIRCLSByteUtility.h in Headers */ = {isa = PBXBuildFile; fileRef = D01D14CD435FAC57CF5EC773DB21909E /* FIRCLSByteUtility.h */; settings = {ATTRIBUTES = (Project, ); }; }; AB04017D38E62DF07CEBA7D22022A0DD /* vlog_is_on.h in Headers */ = {isa = PBXBuildFile; fileRef = 650839B18ADB322F125B475EB54E4FD0 /* vlog_is_on.h */; settings = {ATTRIBUTES = (Project, ); }; }; AB0D233175695AD5A5CFF80D84E56874 /* anim_encode.c in Sources */ = {isa = PBXBuildFile; fileRef = 5B31C00F86A06EFB0136A743BAB25CED /* anim_encode.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - AB23342DBC5C2FDCE50B87345FBE4392 /* RCTComponent.h in Headers */ = {isa = PBXBuildFile; fileRef = 13A41C305F7690029293963F88BEFD61 /* RCTComponent.h */; settings = {ATTRIBUTES = (Project, ); }; }; + AB23342DBC5C2FDCE50B87345FBE4392 /* RCTComponent.h in Headers */ = {isa = PBXBuildFile; fileRef = EB95AFF8515B8C0895CD9991DBBD80D9 /* RCTComponent.h */; settings = {ATTRIBUTES = (Project, ); }; }; AB2920B9B1810A081F00F049F566C416 /* GDTCORRegistrar.m in Sources */ = {isa = PBXBuildFile; fileRef = C4FCBC1797EBAFA2945FD55F5767E1A3 /* GDTCORRegistrar.m */; }; - AB59C6234A9993C6BE675204C9AB2EE6 /* EXImageLoader-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 106331FE6D581CF0C0EA01A2E6FD2214 /* EXImageLoader-dummy.m */; }; + AB59C6234A9993C6BE675204C9AB2EE6 /* EXImageLoader-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = DD7E01B54C87575EF6639192448A874C /* EXImageLoader-dummy.m */; }; AB5FA629662137136E8341AD06FC1978 /* fixed-dtoa.h in Headers */ = {isa = PBXBuildFile; fileRef = 9B388418E1C1B0C5BD30ADC617A0BD2F /* fixed-dtoa.h */; settings = {ATTRIBUTES = (Project, ); }; }; AB66FEE1AD76390C20E69570385B29AD /* fast-dtoa.cc in Sources */ = {isa = PBXBuildFile; fileRef = D7ECFA07EAB88489517FCAFD1702D65C /* fast-dtoa.cc */; settings = {COMPILER_FLAGS = "-Wno-unreachable-code"; }; }; - AB71242585E87C1ABAFF732A17092713 /* RNGestureHandlerModule.h in Headers */ = {isa = PBXBuildFile; fileRef = C104FC8989C82D55AC529CBE9DDD4EDE /* RNGestureHandlerModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; + AB71242585E87C1ABAFF732A17092713 /* RNGestureHandlerModule.h in Headers */ = {isa = PBXBuildFile; fileRef = FF4E785CEBE31901F032772FB7660E08 /* RNGestureHandlerModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; ABB1CD9BAFA0540306E98E2ADF54EA30 /* MemoryFile_OSX.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 76DD833ABBB2596BE24D44AE41C63D50 /* MemoryFile_OSX.cpp */; settings = {COMPILER_FLAGS = "-x objective-c++"; }; }; ABB62FFEA507585DDEE68EB89787E984 /* Unicode.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2735C75D069E8CB064C5056FAA472EE1 /* Unicode.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; ABC59D78F898F290A37424C0DAFA7395 /* MMKVAppExtension-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = AF141004709B4596316A54C26690214F /* MMKVAppExtension-dummy.m */; }; @@ -2359,75 +2348,73 @@ ABE4C7F45E23A98AB7CDA0ABC75E19FA /* SKDispatchQueue.h in Headers */ = {isa = PBXBuildFile; fileRef = 2443987C91F8174E5D7EBDE73B40EFCB /* SKDispatchQueue.h */; settings = {ATTRIBUTES = (Project, ); }; }; ABE92E6DD473C1C3130AFCA71ACCF240 /* Benchmark.h in Headers */ = {isa = PBXBuildFile; fileRef = EA3BA931EE1351559A0C1124B2400B2B /* Benchmark.h */; settings = {ATTRIBUTES = (Project, ); }; }; ABF8D2E2E1BB9810CDDE4BD97264E33F /* SKEnvironmentVariables.m in Sources */ = {isa = PBXBuildFile; fileRef = B54C96C636E8209C4BCF7976B30710E7 /* SKEnvironmentVariables.m */; settings = {COMPILER_FLAGS = "-DDEBUG=1 -DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0"; }; }; - ABF93991E5FF0E1A9484FE76D672BE77 /* FBReactNativeSpec.h in Headers */ = {isa = PBXBuildFile; fileRef = 6CEA4F39181B9C99B4CA47B51FC7A52F /* FBReactNativeSpec.h */; settings = {ATTRIBUTES = (Project, ); }; }; - ABFAFAAB6A9175DA170C31FA219E3B71 /* RCTTextSelection.h in Headers */ = {isa = PBXBuildFile; fileRef = C78E04DE52320ED3AC3922C2299052E0 /* RCTTextSelection.h */; settings = {ATTRIBUTES = (Project, ); }; }; - AC123C0D22624AB059F2EDB2C55A4115 /* NSValue+Interpolation.h in Headers */ = {isa = PBXBuildFile; fileRef = E4BB3E4F4BF1AAE167A8E5EF060CB906 /* NSValue+Interpolation.h */; settings = {ATTRIBUTES = (Project, ); }; }; + ABF93991E5FF0E1A9484FE76D672BE77 /* FBReactNativeSpec.h in Headers */ = {isa = PBXBuildFile; fileRef = C89DC4D71C3A0891FF0CBC3C07C16B7A /* FBReactNativeSpec.h */; settings = {ATTRIBUTES = (Project, ); }; }; + ABFAFAAB6A9175DA170C31FA219E3B71 /* RCTTextSelection.h in Headers */ = {isa = PBXBuildFile; fileRef = F0955CC35725C4D3577984ECD6A13A33 /* RCTTextSelection.h */; settings = {ATTRIBUTES = (Project, ); }; }; + AC123C0D22624AB059F2EDB2C55A4115 /* NSValue+Interpolation.h in Headers */ = {isa = PBXBuildFile; fileRef = FE7537FE1407ADAA6AF0A6ED142A3757 /* NSValue+Interpolation.h */; settings = {ATTRIBUTES = (Project, ); }; }; AC2903679DA7B6240539795ABD3F3FBA /* RSocketStateMachine.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BE649A5B3C8548305B0791F6BAC29354 /* RSocketStateMachine.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0 -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; AC2A4B9D1168607041C3A0DB2ECB4636 /* Semaphore.h in Headers */ = {isa = PBXBuildFile; fileRef = 0AD1AC690771CE2BB2E847CC45FBBDC4 /* Semaphore.h */; settings = {ATTRIBUTES = (Project, ); }; }; AC32932952C3DFEDD41B409756F6F777 /* AtomicReadMostlyMainPtr.h in Headers */ = {isa = PBXBuildFile; fileRef = 94FBC8A647FFBC1523F9F0EE2B213506 /* AtomicReadMostlyMainPtr.h */; settings = {ATTRIBUTES = (Project, ); }; }; - AC33859D09193FD00CE4DFC0B3D19B06 /* RCTWebSocketExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = E557E8FB831759A197AEA271B4A4E013 /* RCTWebSocketExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; + AC33859D09193FD00CE4DFC0B3D19B06 /* RCTWebSocketExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = E1721A9A79CAF1077FAA116A2166F6CC /* RCTWebSocketExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; AC3624864E7F8698E97EF22EF270A5F1 /* Subscription.h in Headers */ = {isa = PBXBuildFile; fileRef = CF49436129715F2A1C1B93FD978FB27D /* Subscription.h */; settings = {ATTRIBUTES = (Project, ); }; }; AC3905F52FE0809F628BCC0CF306E76F /* picture_tools_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = 0EFCFB70036015BF9C9044D8BE5515A8 /* picture_tools_enc.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - AC3F23D9265E31E9BB9D581BDD04D430 /* RCTVirtualTextViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 8ABB41B7F9DD098BAE8F4210DAAC5F82 /* RCTVirtualTextViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + AC3F23D9265E31E9BB9D581BDD04D430 /* RCTVirtualTextViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 899E84B80A9168A6A9EE1AE216E86340 /* RCTVirtualTextViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; AC59A26B99CA0893B82260C628EE829B /* FIRAEvent+Internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 0532C0A55B5C10F896B040B55DBAEE2B /* FIRAEvent+Internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - AC608FCF933EFD43E7965B1B7B02F9C1 /* BSG_KSJSONCodec.c in Sources */ = {isa = PBXBuildFile; fileRef = F1CFD83224C363E1273A30D0E48000A7 /* BSG_KSJSONCodec.c */; }; - ACD3DA42660705661D6469DD45147A5A /* RCTActivityIndicatorView.m in Sources */ = {isa = PBXBuildFile; fileRef = 747D5B95D8B372DC772DED829ABFE3C7 /* RCTActivityIndicatorView.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - ACD5A414D8C6211991F1D3C96B7F0D1D /* RCTTextAttributes.h in Headers */ = {isa = PBXBuildFile; fileRef = 871FA97F338B8CD054EEFA3F08E19EFF /* RCTTextAttributes.h */; settings = {ATTRIBUTES = (Project, ); }; }; + AC608FCF933EFD43E7965B1B7B02F9C1 /* BSG_KSJSONCodec.c in Sources */ = {isa = PBXBuildFile; fileRef = 8635CE05D10A43345AB7380511457E26 /* BSG_KSJSONCodec.c */; }; + ACD3DA42660705661D6469DD45147A5A /* RCTActivityIndicatorView.m in Sources */ = {isa = PBXBuildFile; fileRef = B688BF60BEAFBD9E5BA1394561849F89 /* RCTActivityIndicatorView.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + ACD5A414D8C6211991F1D3C96B7F0D1D /* RCTTextAttributes.h in Headers */ = {isa = PBXBuildFile; fileRef = A8D1A7983A5CF6063297A9684D14E48F /* RCTTextAttributes.h */; settings = {ATTRIBUTES = (Project, ); }; }; ACE7F710533E4AC5D694E89A3877D51F /* SKNamed.h in Headers */ = {isa = PBXBuildFile; fileRef = BCE2BCD32106C0A47D83B684B11F2B6B /* SKNamed.h */; settings = {ATTRIBUTES = (Project, ); }; }; AD06EFCC89799473CF856C546AED3927 /* FIRCLSBinaryImage.m in Sources */ = {isa = PBXBuildFile; fileRef = 37260B6F95E6B538C77461B4B6D05114 /* FIRCLSBinaryImage.m */; }; - AD06FC42798C464D257A46A2BC40CA85 /* BSG_KSCrashState.m in Sources */ = {isa = PBXBuildFile; fileRef = A3FD27CB2ABFBE5703A221949E3A8F2B /* BSG_KSCrashState.m */; }; - AD0DA245B890349D01A915A669A813DC /* REASetNode.m in Sources */ = {isa = PBXBuildFile; fileRef = C5D16A5CE68DF3DBB369C3253854EC1E /* REASetNode.m */; }; - AD15E974D8793EA9FA3799E5793CC334 /* RNCSafeAreaViewEdges.h in Headers */ = {isa = PBXBuildFile; fileRef = 3B218203D8DD8518EEDF8E41F1B5FAF9 /* RNCSafeAreaViewEdges.h */; settings = {ATTRIBUTES = (Project, ); }; }; - AD2776292A6AA970E2CC23FF9F0EEA05 /* IDStore.h in Headers */ = {isa = PBXBuildFile; fileRef = DD4057B7D33DB6245E1FF3A0A73BDFA5 /* IDStore.h */; settings = {ATTRIBUTES = (Project, ); }; }; + AD06FC42798C464D257A46A2BC40CA85 /* BSG_KSCrashState.m in Sources */ = {isa = PBXBuildFile; fileRef = 3C321E819A4F442A64CB128BC31AD740 /* BSG_KSCrashState.m */; }; + AD0DA245B890349D01A915A669A813DC /* REASetNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 25D411FCF75BE42191E210883867EC33 /* REASetNode.m */; }; + AD15E974D8793EA9FA3799E5793CC334 /* RNCSafeAreaViewEdges.h in Headers */ = {isa = PBXBuildFile; fileRef = 0A79E8FFBD8D77CB2FD1CE9F13CFDBDF /* RNCSafeAreaViewEdges.h */; settings = {ATTRIBUTES = (Project, ); }; }; + AD2776292A6AA970E2CC23FF9F0EEA05 /* IDStore.h in Headers */ = {isa = PBXBuildFile; fileRef = 976B22DD2542425C4BFAE4920F68EDAF /* IDStore.h */; settings = {ATTRIBUTES = (Project, ); }; }; AD2FCDFC407F22399AA03C8D219CB35A /* MPMCQueue.h in Headers */ = {isa = PBXBuildFile; fileRef = 917E1258AD649A23A7D45A50A6F05A94 /* MPMCQueue.h */; settings = {ATTRIBUTES = (Project, ); }; }; - AD3557F440186A998F7A89EC3B5C74EE /* NSError+BSG_SimpleConstructor.h in Headers */ = {isa = PBXBuildFile; fileRef = B60C0FAA9408E4E1B7C6DC275C52712B /* NSError+BSG_SimpleConstructor.h */; settings = {ATTRIBUTES = (Project, ); }; }; - AD3FD9645D2B87320330000E5DBD7C16 /* RCTSwitch.m in Sources */ = {isa = PBXBuildFile; fileRef = AD00CBF236CCEBE1185E178EFD334949 /* RCTSwitch.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + AD3557F440186A998F7A89EC3B5C74EE /* NSError+BSG_SimpleConstructor.h in Headers */ = {isa = PBXBuildFile; fileRef = 6FD61D3C077B5C5BB76D0C9080AA7B43 /* NSError+BSG_SimpleConstructor.h */; settings = {ATTRIBUTES = (Project, ); }; }; + AD3FD9645D2B87320330000E5DBD7C16 /* RCTSwitch.m in Sources */ = {isa = PBXBuildFile; fileRef = 985774EE5032AA9267DA1E8C579E4E5F /* RCTSwitch.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; AD96A58A131956BB8C9879F48A442247 /* SDGraphicsImageRenderer.m in Sources */ = {isa = PBXBuildFile; fileRef = 298958769545D0A0CD4F77FBC0018816 /* SDGraphicsImageRenderer.m */; }; - AD9766243F9026007D6EB80BB3A1B562 /* CompactValue.h in Headers */ = {isa = PBXBuildFile; fileRef = E3390F3DA0A36E2604CB7BFA08819ED1 /* CompactValue.h */; settings = {ATTRIBUTES = (Project, ); }; }; - ADDDC9248A6F312AD540F1D3E1D2F888 /* UMEventEmitter.h in Headers */ = {isa = PBXBuildFile; fileRef = 97FAE25906FA0C5B669A7BC9232E6E51 /* UMEventEmitter.h */; settings = {ATTRIBUTES = (Project, ); }; }; + AD9766243F9026007D6EB80BB3A1B562 /* CompactValue.h in Headers */ = {isa = PBXBuildFile; fileRef = EFEDE0F8A0DF6BE20845C410FED10E77 /* CompactValue.h */; settings = {ATTRIBUTES = (Project, ); }; }; + ADDDC9248A6F312AD540F1D3E1D2F888 /* UMEventEmitter.h in Headers */ = {isa = PBXBuildFile; fileRef = 593848E320E7B0CB4ED7A4AAC418DD90 /* UMEventEmitter.h */; settings = {ATTRIBUTES = (Project, ); }; }; ADF53E1C528C7C4EF55470E410EB3481 /* MMKVHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = F6D7B6463EE8B3B7BAB6872230EE9386 /* MMKVHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; AE026FA2E0FD35314CAB62FA85B127D3 /* VirtualExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = DF6C69F95084E61522E8A0621E251EEE /* VirtualExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; AE0AE65B5B09B14D114FC2DCD2E07DF8 /* FIRCLSRecordIdentity.m in Sources */ = {isa = PBXBuildFile; fileRef = 0188C60B434E703DABBF44094087009B /* FIRCLSRecordIdentity.m */; }; AE1819818F034D33338D41CF46589250 /* MMKV_OSX.cpp in Sources */ = {isa = PBXBuildFile; fileRef = E082D8A9AB450A53BAE6B3460C3BA9E6 /* MMKV_OSX.cpp */; settings = {COMPILER_FLAGS = "-x objective-c++ -fno-objc-arc"; }; }; - AE1B5FC7166EB6E9163516313ED02291 /* BugsnagConfiguration.m in Sources */ = {isa = PBXBuildFile; fileRef = 4254EA19599D272695DD40CEC74ED86E /* BugsnagConfiguration.m */; }; + AE1B5FC7166EB6E9163516313ED02291 /* BugsnagConfiguration.m in Sources */ = {isa = PBXBuildFile; fileRef = FB6C500D775966BE59D9E49191929128 /* BugsnagConfiguration.m */; }; AE3574F9F3880AC0BB6A51947E420FEB /* Access.h in Headers */ = {isa = PBXBuildFile; fileRef = DE747354C067B47CF746F9701F400F7A /* Access.h */; settings = {ATTRIBUTES = (Project, ); }; }; - AE35F51C28C993A1ED2EFAD1C5B4A08C /* REAFunctionNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 26D494ED4409B9A7C3E31544FB3C8766 /* REAFunctionNode.m */; }; - AE3AE48CE4B063CD7D9AF1AA6BB57AC5 /* EXFileSystemAssetLibraryHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 920F7DABE38B2A1C16988B0AF4DD7A5F /* EXFileSystemAssetLibraryHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; - AE52A4D06ED42125C379A670ECF2B0D4 /* RCTFollyConvert.h in Headers */ = {isa = PBXBuildFile; fileRef = F33866B0B58564BAA15AE899ECD4ACA2 /* RCTFollyConvert.h */; settings = {ATTRIBUTES = (Project, ); }; }; - AE696B4A35AF464F62260BA86B736EC9 /* RNFetchBlob.h in Headers */ = {isa = PBXBuildFile; fileRef = 4491DCC9940E25C6DE1E4F960C6AF784 /* RNFetchBlob.h */; settings = {ATTRIBUTES = (Project, ); }; }; + AE35F51C28C993A1ED2EFAD1C5B4A08C /* REAFunctionNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 791F6D8DB121E610779FEFFF32231F82 /* REAFunctionNode.m */; }; + AE3AE48CE4B063CD7D9AF1AA6BB57AC5 /* EXFileSystemAssetLibraryHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = E242534B02290665ED6143AF9ACE61C1 /* EXFileSystemAssetLibraryHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; + AE52A4D06ED42125C379A670ECF2B0D4 /* RCTFollyConvert.h in Headers */ = {isa = PBXBuildFile; fileRef = 5EC7C99A787AE1FAE9E42B30C1A77EAC /* RCTFollyConvert.h */; settings = {ATTRIBUTES = (Project, ); }; }; AE9BAD5416D1788A60DA1E7F3ED08F51 /* dec_neon.c in Sources */ = {isa = PBXBuildFile; fileRef = D0357EE36C7C9977E3183D342EA97611 /* dec_neon.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; AEB27C1EC087D6AAD63447C482C26AB7 /* RSocketException.h in Headers */ = {isa = PBXBuildFile; fileRef = E7AB4E1A96911724B29D20FA711E4DD4 /* RSocketException.h */; settings = {ATTRIBUTES = (Project, ); }; }; AED318D41C7F3BE4C37C7FB57249C483 /* HardwareConcurrency.h in Headers */ = {isa = PBXBuildFile; fileRef = 259BCF6CD8BAE89C80BECAB813297A51 /* HardwareConcurrency.h */; settings = {ATTRIBUTES = (Project, ); }; }; AEF02D003A6C637C4E79B072ADE0A70D /* bignum.h in Headers */ = {isa = PBXBuildFile; fileRef = CA3BEA689351C617613D83A5EA277299 /* bignum.h */; settings = {ATTRIBUTES = (Project, ); }; }; AF05B4B144F28758071058C7E8FD1640 /* ScopedTraceSection.h in Headers */ = {isa = PBXBuildFile; fileRef = 62D3A4F9F0F687E5C2C9460D77238CF4 /* ScopedTraceSection.h */; settings = {ATTRIBUTES = (Project, ); }; }; - AF1D206C1E91A995683BA28C56E6E8EC /* LNInterpolable.m in Sources */ = {isa = PBXBuildFile; fileRef = 31EE4D699487DFA9B5739BFE68377FE6 /* LNInterpolable.m */; }; - AF2C90B0083799264992C7E086BB6D95 /* RCTRawTextShadowView.m in Sources */ = {isa = PBXBuildFile; fileRef = 2A97F85E390D25B7EC89FDE313270B1F /* RCTRawTextShadowView.m */; }; + AF1D206C1E91A995683BA28C56E6E8EC /* LNInterpolable.m in Sources */ = {isa = PBXBuildFile; fileRef = 9A0BE951918932EC5D6FC7CE50BFF59C /* LNInterpolable.m */; }; + AF2C90B0083799264992C7E086BB6D95 /* RCTRawTextShadowView.m in Sources */ = {isa = PBXBuildFile; fileRef = 29E4473A03AA93B9B6C749809A611532 /* RCTRawTextShadowView.m */; }; AF3ABFF1553A775B32EB8EFC443D7305 /* SysResource.cpp in Sources */ = {isa = PBXBuildFile; fileRef = EE10D23F9F9A6F605F5ABB40D323391C /* SysResource.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - AF5F8D034F15CC42768898B7C84B20C3 /* Pods-RocketChatRN-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 0F0E0C5C69D2F5B477CB9AD4BEC168B6 /* Pods-RocketChatRN-dummy.m */; }; - AF82757F1CB66D2EC05476F4657456BC /* RCTUtilsUIOverride.h in Headers */ = {isa = PBXBuildFile; fileRef = 8784B767338465C48D3034FD940B1A63 /* RCTUtilsUIOverride.h */; settings = {ATTRIBUTES = (Project, ); }; }; + AF82757F1CB66D2EC05476F4657456BC /* RCTUtilsUIOverride.h in Headers */ = {isa = PBXBuildFile; fileRef = 03706A3E4C111F65A8CD82315D1F8A22 /* RCTUtilsUIOverride.h */; settings = {ATTRIBUTES = (Project, ); }; }; AF94C7B27B49E1FDDF351596F49886B9 /* SKBufferingPlugin.mm in Sources */ = {isa = PBXBuildFile; fileRef = F9A1674592AC805B7AACC85CC5841276 /* SKBufferingPlugin.mm */; settings = {COMPILER_FLAGS = "-DDEBUG=1 -DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0"; }; }; - AFCBB58514A8959F19D6A61EE1D420F3 /* RCTI18nUtil.h in Headers */ = {isa = PBXBuildFile; fileRef = 5F3370749EB8126D4B57C73C8068A02D /* RCTI18nUtil.h */; settings = {ATTRIBUTES = (Project, ); }; }; + AFCBB58514A8959F19D6A61EE1D420F3 /* RCTI18nUtil.h in Headers */ = {isa = PBXBuildFile; fileRef = 5876CFCE328DC4C4BBF3769AD582D59C /* RCTI18nUtil.h */; settings = {ATTRIBUTES = (Project, ); }; }; AFF898410D32282A69510728514BA86C /* CString.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 77FE32325544867C63F9BCB585EBCF62 /* CString.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - B01AAF5FBC13CBC26C1ECF637E6A9C94 /* RCTSurfaceHostingView.mm in Sources */ = {isa = PBXBuildFile; fileRef = 6D2C636730CB450D249DDA5E4E6B0041 /* RCTSurfaceHostingView.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + B01AAF5FBC13CBC26C1ECF637E6A9C94 /* RCTSurfaceHostingView.mm in Sources */ = {isa = PBXBuildFile; fileRef = 2754616E67EED413A0F9B16D7F22D690 /* RCTSurfaceHostingView.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; B01C36FAD05AC43B3637B8D0AB9459D9 /* UIImage+ExtendedCacheData.h in Headers */ = {isa = PBXBuildFile; fileRef = 22D5A0A3D76A2E8006E0D6AA16AE8B83 /* UIImage+ExtendedCacheData.h */; settings = {ATTRIBUTES = (Project, ); }; }; B01E94A5DB2F0ACF14D31760C121B225 /* UIImage+MultiFormat.m in Sources */ = {isa = PBXBuildFile; fileRef = A83221DB1AED012C6FA71A992212C881 /* UIImage+MultiFormat.m */; }; B0293EF73AFB370CF8D66F32A68DFBFD /* UICollectionView+SKInvalidation.mm in Sources */ = {isa = PBXBuildFile; fileRef = A9858B7499131D73458CCDD42363A5AB /* UICollectionView+SKInvalidation.mm */; settings = {COMPILER_FLAGS = "-DDEBUG=1 -DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0"; }; }; - B03DC8C00D4CFD74AA3E6E72D80EB0AF /* RCTUITextField.h in Headers */ = {isa = PBXBuildFile; fileRef = 13DE7CDF0865FCA5347076BF7571D525 /* RCTUITextField.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B03DC8C00D4CFD74AA3E6E72D80EB0AF /* RCTUITextField.h in Headers */ = {isa = PBXBuildFile; fileRef = 36CB10181D1D80A37D6563FE6C1E5E78 /* RCTUITextField.h */; settings = {ATTRIBUTES = (Project, ); }; }; B0454B09C625E07098EA76D8F4388866 /* FIRCLSSymbolResolver.m in Sources */ = {isa = PBXBuildFile; fileRef = 6021E553B770F82E73B0C63684662267 /* FIRCLSSymbolResolver.m */; }; B05521F41DF6AD44A22725CBD8B1C16F /* Framer.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 72A3EAE447C5BE0968B71AABBD1557F6 /* Framer.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0 -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; B05C48490091D1554925127884D267CE /* Portability.h in Headers */ = {isa = PBXBuildFile; fileRef = 64ED78E8A26C2BEA397E9514E783E94C /* Portability.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B083FC8647E40600AE5804AFDA63624B /* BugsnagCrashSentry.m in Sources */ = {isa = PBXBuildFile; fileRef = 8602B768F2DD0B0F7309E8429BE3B5F1 /* BugsnagCrashSentry.m */; }; - B0881CA09218A618A785683BE4C79CC8 /* ARTGroupManager.h in Headers */ = {isa = PBXBuildFile; fileRef = A09B64E1D9E3D975BB07A80B50A52E68 /* ARTGroupManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B0B656D3BF9CED9578AC5461BB8DAE60 /* RCTSpringAnimation.h in Headers */ = {isa = PBXBuildFile; fileRef = 9AAD9AAE289E0315C796CF02BFAFDE3B /* RCTSpringAnimation.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B083FC8647E40600AE5804AFDA63624B /* BugsnagCrashSentry.m in Sources */ = {isa = PBXBuildFile; fileRef = 12D9F6F007EB9471C4A0E33F9D167C2D /* BugsnagCrashSentry.m */; }; + B0881CA09218A618A785683BE4C79CC8 /* ARTGroupManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 91C94719B3D638CB8C0670CBA747F353 /* ARTGroupManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B0B656D3BF9CED9578AC5461BB8DAE60 /* RCTSpringAnimation.h in Headers */ = {isa = PBXBuildFile; fileRef = 0DF94A484DD1F8459AF2DBFE0AA9B633 /* RCTSpringAnimation.h */; settings = {ATTRIBUTES = (Project, ); }; }; B0ED107F3AAF83FDD3035D0B3D864953 /* GCDAsyncUdpSocket.h in Headers */ = {isa = PBXBuildFile; fileRef = F92000338C16FC95FC27E8527C6DC587 /* GCDAsyncUdpSocket.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B1143BD3268E22879CC3A69C5BB79B61 /* RCTRootView.m in Sources */ = {isa = PBXBuildFile; fileRef = 685D7A01D6AC0926E46057218D990941 /* RCTRootView.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - B11CA48DA91BE9D78A09D892242DB4C8 /* RNJitsiMeetViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = F8039EED794F2A04F14695B7D2404C45 /* RNJitsiMeetViewManager.m */; }; - B1208ABEFA22504998B800C8C953EEED /* RNTapHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 6F4B077C4A9C3CCC7C859441E903DF65 /* RNTapHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B12AD0D904923BBD956FF1A6D89EF7E8 /* Color+Interpolation.m in Sources */ = {isa = PBXBuildFile; fileRef = 479AD4FF8D6EDE3854F66F693EC50FC4 /* Color+Interpolation.m */; }; - B1767292157E35544B71C7DA10DBD902 /* RCTModalHostViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = DA397571A04A01CA58D6258D423431D8 /* RCTModalHostViewController.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B1143BD3268E22879CC3A69C5BB79B61 /* RCTRootView.m in Sources */ = {isa = PBXBuildFile; fileRef = F13288A5114C62E8068FC4F1B15F90E2 /* RCTRootView.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + B11CA48DA91BE9D78A09D892242DB4C8 /* RNJitsiMeetViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = D8F571CDD912D82C6C335EBA2A5AA715 /* RNJitsiMeetViewManager.m */; }; + B1208ABEFA22504998B800C8C953EEED /* RNTapHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = E59C4A01D83FB7C0D2CADD007B8259A8 /* RNTapHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B12AD0D904923BBD956FF1A6D89EF7E8 /* Color+Interpolation.m in Sources */ = {isa = PBXBuildFile; fileRef = 94329657EDFCEF7DF01F1FD4D4689DF7 /* Color+Interpolation.m */; }; + B1767292157E35544B71C7DA10DBD902 /* RCTModalHostViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = 85070F20AC1AAC643BCBAB997B0A1968 /* RCTModalHostViewController.h */; settings = {ATTRIBUTES = (Project, ); }; }; B177B15EA2260A1EE3FFF5F8963CD38F /* openssl_aesv8-armx.S in Sources */ = {isa = PBXBuildFile; fileRef = 0AD84C00A9493DE4ACFC079372DDA730 /* openssl_aesv8-armx.S */; }; - B18BCE7E2534C68EA66E8C4A69BCFA47 /* React-cxxreact-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 5FA8CDF30977643EEBBE3984FC6DEB9C /* React-cxxreact-dummy.m */; }; - B19977D9538C6ABA10D735033D729EF4 /* YGValue.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2B036968A8C7DBCF9A7AA935283F37A3 /* YGValue.cpp */; settings = {COMPILER_FLAGS = "-fno-omit-frame-pointer -fexceptions -Wall -Werror -std=c++1y -fPIC -fno-objc-arc"; }; }; + B18BCE7E2534C68EA66E8C4A69BCFA47 /* React-cxxreact-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 2C33A92650B97110B906CA98E455BE4A /* React-cxxreact-dummy.m */; }; + B19977D9538C6ABA10D735033D729EF4 /* YGValue.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 56F783BA26ECFE6176DBD2A9EDBB6BD8 /* YGValue.cpp */; settings = {COMPILER_FLAGS = "-fno-omit-frame-pointer -fexceptions -Wall -Werror -std=c++1y -fPIC -fno-objc-arc"; }; }; B199F4C45C3FC5E1C5EAB6EA690EDA67 /* SpookyHashV2.h in Headers */ = {isa = PBXBuildFile; fileRef = 7122BF2BD7C5191C0D0DF2FB528A1061 /* SpookyHashV2.h */; settings = {ATTRIBUTES = (Project, ); }; }; B19C407AA7F34BA5C4DF6078690C9100 /* Checksum.h in Headers */ = {isa = PBXBuildFile; fileRef = F96BE4D6D572B0CC44809DDD0B30A502 /* Checksum.h */; settings = {ATTRIBUTES = (Project, ); }; }; B19F61D3F34687101A8E5B7BE2B4EAF3 /* TcpConnectionAcceptor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46DCB7305D8602FB7F98C639EA262C75 /* TcpConnectionAcceptor.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0 -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; @@ -2436,30 +2423,29 @@ B1C753FE90549D728716F43E12DDADC0 /* ThreadCachedArena.h in Headers */ = {isa = PBXBuildFile; fileRef = 98D10C3C764BA701C0A2378F32F87478 /* ThreadCachedArena.h */; settings = {ATTRIBUTES = (Project, ); }; }; B20E2104DD60A194165542B0AA180628 /* MasterPtr.h in Headers */ = {isa = PBXBuildFile; fileRef = 2E84B732C1D63BD1ADCB8C8869AD6650 /* MasterPtr.h */; settings = {ATTRIBUTES = (Project, ); }; }; B21572DD802891A58CD49CF3CFC580EC /* GDTCCTNanopbHelpers.h in Headers */ = {isa = PBXBuildFile; fileRef = 1942676D70CFCB685C06399F6540B1D4 /* GDTCCTNanopbHelpers.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B21ED47165915C21EF394F4CA8C6DE71 /* RNFetchBlobRequest.m in Sources */ = {isa = PBXBuildFile; fileRef = F7B7F58C0DD115D53416979A4429C89B /* RNFetchBlobRequest.m */; }; - B23E67E4C9BE3A1C7B6E94B36BBA23A4 /* RCTConvert+RNNotifications.m in Sources */ = {isa = PBXBuildFile; fileRef = 628968A43ABEC47EDE16A9C09BC1B3E3 /* RCTConvert+RNNotifications.m */; }; - B2679FA44A18368E0569B37207A535C5 /* REAOperatorNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 977F25FEB3197F59727F735FB9A4B52C /* REAOperatorNode.m */; }; + B23E67E4C9BE3A1C7B6E94B36BBA23A4 /* RCTConvert+RNNotifications.m in Sources */ = {isa = PBXBuildFile; fileRef = B832E03657548301AA0D478F8515FD2C /* RCTConvert+RNNotifications.m */; }; + B2679FA44A18368E0569B37207A535C5 /* REAOperatorNode.m in Sources */ = {isa = PBXBuildFile; fileRef = CCA4EBF3A7E4A4B8C5515F21F510B772 /* REAOperatorNode.m */; }; B286814FE12B03656F533F95A27E6699 /* SKStateUpdateCPPWrapper.mm in Sources */ = {isa = PBXBuildFile; fileRef = 317F36784686BE8DA048215444CF35F1 /* SKStateUpdateCPPWrapper.mm */; settings = {COMPILER_FLAGS = "-DDEBUG=1 -DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0"; }; }; B2EF5C82BC611CBDF4B346F0502EF1CF /* YGLayout.h in Headers */ = {isa = PBXBuildFile; fileRef = DDD019A7C90135A08ADDC1ECA25C3DEE /* YGLayout.h */; settings = {ATTRIBUTES = (Project, ); }; }; B33E52DD3539A7CE133743B32AA0A785 /* Random-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = A49223A38130B4616CA93C4947B34FC3 /* Random-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B3599BDCAA7FFCA3615001C4DAACBD1D /* RCTDataRequestHandler.mm in Sources */ = {isa = PBXBuildFile; fileRef = 81CBFBBE6DED4EA389740EB8A4833712 /* RCTDataRequestHandler.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + B3599BDCAA7FFCA3615001C4DAACBD1D /* RCTDataRequestHandler.mm in Sources */ = {isa = PBXBuildFile; fileRef = 617B082ECE9579851D2C0FD1734669B1 /* RCTDataRequestHandler.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; B37B24AF3B2A555EF2E1B850E56DA614 /* GULSceneDelegateSwizzler.m in Sources */ = {isa = PBXBuildFile; fileRef = 85B16069E70D320C65095CDEFF4AA15F /* GULSceneDelegateSwizzler.m */; }; B39343FE3191F0D77D03E112863A0066 /* GDTCORPlatform.m in Sources */ = {isa = PBXBuildFile; fileRef = 83C0D7C288E68D751A5685052803E1BF /* GDTCORPlatform.m */; }; B396C44B8AF25924C7208C9A00E8149C /* FIRCoreDiagnosticsConnector.h in Headers */ = {isa = PBXBuildFile; fileRef = 3FAC56C1C627D0D35175C1C8DE550A10 /* FIRCoreDiagnosticsConnector.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B3A3B2C876B2A83FBC86B3C12EDAAEE5 /* Yoga.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 4C5A24F7869DACEA94D29F59EDDCA90D /* Yoga.cpp */; settings = {COMPILER_FLAGS = "-fno-omit-frame-pointer -fexceptions -Wall -Werror -std=c++1y -fPIC -fno-objc-arc"; }; }; + B3A3B2C876B2A83FBC86B3C12EDAAEE5 /* Yoga.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1C7BBD0C8EB2D2875B6E17063539A218 /* Yoga.cpp */; settings = {COMPILER_FLAGS = "-fno-omit-frame-pointer -fexceptions -Wall -Werror -std=c++1y -fPIC -fno-objc-arc"; }; }; B3F14FDA0D22D6BBA1A8665801D74FDA /* ScheduledSubscription.h in Headers */ = {isa = PBXBuildFile; fileRef = D3358D995274B0DFAAABFD6C5B7A701A /* ScheduledSubscription.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B3FC92C3D4283CD7C2F62A53EDA4378B /* BSG_KSMach_x86_32.c in Sources */ = {isa = PBXBuildFile; fileRef = D3FC713448A626AEA1B4492E6EFAEA45 /* BSG_KSMach_x86_32.c */; }; - B41D1BE775A5E1E71F079E1661B1553C /* EXAV.m in Sources */ = {isa = PBXBuildFile; fileRef = EA68B25507C1C2949DBD5C478926C2ED /* EXAV.m */; }; - B42ABF16AB72DA78493DD2D4F45B4751 /* jsilib-windows.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 0956FB3C42355DF5911478E276BEC1D9 /* jsilib-windows.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + B3FC92C3D4283CD7C2F62A53EDA4378B /* BSG_KSMach_x86_32.c in Sources */ = {isa = PBXBuildFile; fileRef = D45C724EB8C0D71D3902BF08C43D52A9 /* BSG_KSMach_x86_32.c */; }; + B41D1BE775A5E1E71F079E1661B1553C /* EXAV.m in Sources */ = {isa = PBXBuildFile; fileRef = B66CF7B2666A62C5D9073BB29B03B3BA /* EXAV.m */; }; + B42ABF16AB72DA78493DD2D4F45B4751 /* jsilib-windows.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 7A1919F40EE7A26965827BDD0B7FC122 /* jsilib-windows.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; B42DF04715EBC9DA57F4FDD52FD0EE7D /* openssl_arm_arch.h in Headers */ = {isa = PBXBuildFile; fileRef = 0360F96A7961E872BD9F22FD43F4BA38 /* openssl_arm_arch.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B4681C085E07706AAD0AC18E0183E0ED /* RNGestureHandlerRegistry.m in Sources */ = {isa = PBXBuildFile; fileRef = 48423A8E18B39E0755E7A8FE8F1A4A6A /* RNGestureHandlerRegistry.m */; }; - B46D8BAE4C9ACE396EE6E38D21C53C39 /* FFFastImageSource.m in Sources */ = {isa = PBXBuildFile; fileRef = DD869F79EA51E95B0B8C6E7DCBF73D15 /* FFFastImageSource.m */; }; - B4739208CCD185642B0D5DCC2FC489E0 /* DeviceUID.m in Sources */ = {isa = PBXBuildFile; fileRef = 770859EE2FA1790EEA676AC5AB5FDA81 /* DeviceUID.m */; }; - B49C371F11EABAEEAC8A16337398E30F /* RCTScrollEvent.h in Headers */ = {isa = PBXBuildFile; fileRef = 5CFFBDDC4D6EA6D00B0120B61EA6182A /* RCTScrollEvent.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B4681C085E07706AAD0AC18E0183E0ED /* RNGestureHandlerRegistry.m in Sources */ = {isa = PBXBuildFile; fileRef = 0DD0CB02F42B830138997DC9393DE174 /* RNGestureHandlerRegistry.m */; }; + B46D8BAE4C9ACE396EE6E38D21C53C39 /* FFFastImageSource.m in Sources */ = {isa = PBXBuildFile; fileRef = 73FC6A6E09D55921C1D7016E577E10A2 /* FFFastImageSource.m */; }; + B4739208CCD185642B0D5DCC2FC489E0 /* DeviceUID.m in Sources */ = {isa = PBXBuildFile; fileRef = C9CBED7B7CBF4B50D48CC9F48B3404B0 /* DeviceUID.m */; }; + B49C371F11EABAEEAC8A16337398E30F /* RCTScrollEvent.h in Headers */ = {isa = PBXBuildFile; fileRef = 93B719540A604229267E3FC6CADE0DB7 /* RCTScrollEvent.h */; settings = {ATTRIBUTES = (Project, ); }; }; B49D95817FB79C7EEDCCF37504DC138A /* FIRCLSLogger.m in Sources */ = {isa = PBXBuildFile; fileRef = B2A31DCF1982C952178C804B30D8FABC /* FIRCLSLogger.m */; }; - B4A1E0306D3D6425D748C04926E31BBE /* RCTViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 2599F813746E4AE45113571B4A91D023 /* RCTViewManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - B4BA80755C5810BA53BB0E7D0F5367B4 /* Compression.m in Sources */ = {isa = PBXBuildFile; fileRef = 8BBF7A4E68A31F1A285B5CCB2E2A720B /* Compression.m */; }; - B508D8495B9D9A5641D2D5ABD0D079AF /* QBAssetsViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = C4666E325B646F59201A21FA3253E6D5 /* QBAssetsViewController.m */; }; + B4A1E0306D3D6425D748C04926E31BBE /* RCTViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 76A42307B642F3B36017AC96973995F4 /* RCTViewManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + B4BA80755C5810BA53BB0E7D0F5367B4 /* Compression.m in Sources */ = {isa = PBXBuildFile; fileRef = 43504F047FFD564514378D7164DA9179 /* Compression.m */; }; + B508D8495B9D9A5641D2D5ABD0D079AF /* QBAssetsViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = AEEF2DDFBD51E55CF34A95C267B09D30 /* QBAssetsViewController.m */; }; B54B8FEC222B2A26021ED66D627DC63C /* RWSpinLock.h in Headers */ = {isa = PBXBuildFile; fileRef = 97D45684300495848DE355FFF2A07FF7 /* RWSpinLock.h */; settings = {ATTRIBUTES = (Project, ); }; }; B5643784981C4502A4D430E65C273141 /* FBLPromise+Catch.m in Sources */ = {isa = PBXBuildFile; fileRef = EEC0C045EE568154F674095E2E9EDC7B /* FBLPromise+Catch.m */; }; B57AC832F696B961129F42E68DA0914F /* SKSearchResultNode.h in Headers */ = {isa = PBXBuildFile; fileRef = BC9C56ED395F27A3779D949995311950 /* SKSearchResultNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; @@ -2467,14 +2453,13 @@ B5FE9821B32A4FE93A5252BCC9DCDF80 /* GDTCORUploadPackage.m in Sources */ = {isa = PBXBuildFile; fileRef = AFC8475FDDB23E3A0129FA3A18980686 /* GDTCORUploadPackage.m */; }; B610078262EE860FD9F4247D191A6F47 /* FBLPromise+Race.m in Sources */ = {isa = PBXBuildFile; fileRef = 4D60C99B1B4C99EB0D05E65A41B11DBD /* FBLPromise+Race.m */; }; B625D5784F759BE494CD345370277911 /* AtomicHashArray-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = D06E7680AA0473980C6FAAB14C074CC3 /* AtomicHashArray-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B63190A3185A392452E244869C86BA24 /* ARTSurfaceView.h in Headers */ = {isa = PBXBuildFile; fileRef = 2C22B13F2F4E2FF515288C827574A36E /* ARTSurfaceView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B63190A3185A392452E244869C86BA24 /* ARTSurfaceView.h in Headers */ = {isa = PBXBuildFile; fileRef = 32F9D824DCFDD5012667D8142EEEF07A /* ARTSurfaceView.h */; settings = {ATTRIBUTES = (Project, ); }; }; B63DAFB06AC2D02D95A8CF66D6E1FECA /* strtod.cc in Sources */ = {isa = PBXBuildFile; fileRef = 17C5C1254E18A45E76E2A7930DDDF167 /* strtod.cc */; settings = {COMPILER_FLAGS = "-Wno-unreachable-code"; }; }; - B6842E62885EBBE6CA0C133734CBD26A /* RNFetchBlobReqBuilder.h in Headers */ = {isa = PBXBuildFile; fileRef = 878AEE37DA04FA236601B147CD9022CA /* RNFetchBlobReqBuilder.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B68A56CCE7D33621255DBE32C31F951D /* RCTActivityIndicatorViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = D57B7EA564955711DAD9870EF606DA52 /* RCTActivityIndicatorViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B68A56CCE7D33621255DBE32C31F951D /* RCTActivityIndicatorViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = CF745B7AE8CFE90CDA62D46441A3C707 /* RCTActivityIndicatorViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; B6AFF1D2AC43774591A5DEED821AF788 /* ClientResumeStatusCallback.h in Headers */ = {isa = PBXBuildFile; fileRef = B38C2743AAC0846B2D22EA0225E3AAB1 /* ClientResumeStatusCallback.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B6E18A6E9C73446477FAAFE3BA58C283 /* RCTNativeAnimatedNodesManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 87B30744926803421338F6ACD350EDC1 /* RCTNativeAnimatedNodesManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + B6E18A6E9C73446477FAAFE3BA58C283 /* RCTNativeAnimatedNodesManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 92FFCAC82C739423D616A6982313AD6F /* RCTNativeAnimatedNodesManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; B6F7CEB2DB2CD5B6EA61832DB1DA96D5 /* fast-dtoa.cc in Sources */ = {isa = PBXBuildFile; fileRef = 9881F43C243FDB00FAA65A90C28A02F1 /* fast-dtoa.cc */; settings = {COMPILER_FLAGS = "-Wno-unreachable-code"; }; }; - B6FE3513DF705729287D1BD3231DEF9D /* RNFBApp-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = F9BD42DF524B96A94C651E9CEF5F927D /* RNFBApp-dummy.m */; }; + B6FE3513DF705729287D1BD3231DEF9D /* RNFBApp-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = DBEE05277B6BD752321FDD91FB2E36B7 /* RNFBApp-dummy.m */; }; B70227D69A6C4A9AAC333E9A6BC9B3BF /* GLog.h in Headers */ = {isa = PBXBuildFile; fileRef = B2BC55187E416A8E6A3A73827798BFFD /* GLog.h */; settings = {ATTRIBUTES = (Project, ); }; }; B718BDD197AE1C7D0EDF9A1E4B642CA5 /* tr.lproj in Resources */ = {isa = PBXBuildFile; fileRef = B3E48D4E52F4BD78C0908507ED2E4102 /* tr.lproj */; }; B7251DF6813E92CB3A82B20BE595F880 /* GULNetworkURLSession.m in Sources */ = {isa = PBXBuildFile; fileRef = 4DE4E309CA0BC85CD4E6A063E9780708 /* GULNetworkURLSession.m */; }; @@ -2483,48 +2468,49 @@ B7AC4E524FCE57E98708FAB425402CBD /* FIRCLSReportAdapter.m in Sources */ = {isa = PBXBuildFile; fileRef = 0C742A20ADD9E0E46F4B632E3181BDCB /* FIRCLSReportAdapter.m */; }; B7B02CF69AD8090F7EC4BDF6B106340B /* AsyncPipe.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 5F1EA239387237E65FDFB1FF1D516105 /* AsyncPipe.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; B7B1C326E18E2566E54AA59FFF788C28 /* vp8_dec.c in Sources */ = {isa = PBXBuildFile; fileRef = 843F34EAFD706586CD0C9EC3F8F91F99 /* vp8_dec.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - B7BDE180DE1B36F39AF1EB08FFBC40F9 /* react-native-notifications-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = AFF55825BE627B9868DED9897A0CFEC9 /* react-native-notifications-dummy.m */; }; - B7CCC262C6CC2C693079235A307CC295 /* RCTImageStoreManager.h in Headers */ = {isa = PBXBuildFile; fileRef = A8779CC61E4AB1ED099A737360F577E1 /* RCTImageStoreManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B7BDE180DE1B36F39AF1EB08FFBC40F9 /* react-native-notifications-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = D6B06BB6668027965E647435F756BDE0 /* react-native-notifications-dummy.m */; }; + B7CCC262C6CC2C693079235A307CC295 /* RCTImageStoreManager.h in Headers */ = {isa = PBXBuildFile; fileRef = D308AC56AA2DCD919EC44E69321229A5 /* RCTImageStoreManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; B7FD8E55781BD2B09D63E76DCDF4A3A2 /* FlipperDiagnosticsViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = E8EEBA666A29BA94151CD1AD0CDF1FD7 /* FlipperDiagnosticsViewController.m */; settings = {COMPILER_FLAGS = "-DDEBUG=1 -DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0"; }; }; - B803FBAD88A96C3E5446FC5948528C39 /* REAClockNodes.h in Headers */ = {isa = PBXBuildFile; fileRef = EAC0491058DDEC4FF937D1A42C95A83D /* REAClockNodes.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B80A5602ADDC9557632BB5C6BCB3DB03 /* UMErrorCodes.h in Headers */ = {isa = PBXBuildFile; fileRef = 0975B5CBDB0385B52AA9FD97F4962042 /* UMErrorCodes.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B803FBAD88A96C3E5446FC5948528C39 /* REAClockNodes.h in Headers */ = {isa = PBXBuildFile; fileRef = EFDE3811302227FA99A72245CA18092A /* REAClockNodes.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B80A5602ADDC9557632BB5C6BCB3DB03 /* UMErrorCodes.h in Headers */ = {isa = PBXBuildFile; fileRef = 1BDC53BE56E2FAD7A13C39E18F650CAF /* UMErrorCodes.h */; settings = {ATTRIBUTES = (Project, ); }; }; B8143F787828257EC3C64CF3782049B8 /* Hazptr.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B10E1E091970AE1097AD6223AE30D8D3 /* Hazptr.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; B81828DD93DB85C0683EE36DD5EBE95F /* AsyncSignalHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = E5044315D7E7DAAE49B767F959AC0932 /* AsyncSignalHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; B8317134B45F9440FFFEFF835F1613A9 /* common_sse2.h in Headers */ = {isa = PBXBuildFile; fileRef = A741DCAC4448E118A33E55A984865F2A /* common_sse2.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B83D734EA626DAE2318E58BEBEAF9FA4 /* JSIExecutor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 70E5021AED47342D9252531B597044AF /* JSIExecutor.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + B83D734EA626DAE2318E58BEBEAF9FA4 /* JSIExecutor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 282FB6D72191F808CC7817388052329B /* JSIExecutor.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; B8502C80D8E6C9931169155C3D26010A /* ResumeIdentificationToken.h in Headers */ = {isa = PBXBuildFile; fileRef = BF4288E6A85C4D6C401DF60967934E4D /* ResumeIdentificationToken.h */; settings = {ATTRIBUTES = (Project, ); }; }; B85819255D00BB610B66676563B32410 /* GDTCORTargets.h in Headers */ = {isa = PBXBuildFile; fileRef = 12040043997D5E4561E199109FB51685 /* GDTCORTargets.h */; settings = {ATTRIBUTES = (Project, ); }; }; B860E187C366E80D3D751472B347400F /* FlipperKitReactPlugin.m in Sources */ = {isa = PBXBuildFile; fileRef = 00D61C2E3EB88ADFEA656CD45A144DB5 /* FlipperKitReactPlugin.m */; settings = {COMPILER_FLAGS = "-DDEBUG=1 -DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0"; }; }; B89AF5E7D20106708B8A403401C035E7 /* SysSyscall.h in Headers */ = {isa = PBXBuildFile; fileRef = 15B61FCD03DA2E21AEC3A554EDE9861B /* SysSyscall.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B8C038984482CAE303AE8688FA8EAF38 /* Pods-RocketChatRN-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 0F0E0C5C69D2F5B477CB9AD4BEC168B6 /* Pods-RocketChatRN-dummy.m */; }; B8CDBCB2063AD7729F98BB1F42114206 /* UIImage+Transform.m in Sources */ = {isa = PBXBuildFile; fileRef = CAAB5256C605D9A712B4E4082C13AEE7 /* UIImage+Transform.m */; }; B902AF6B0918FB840CCD91E94FDF39B7 /* FIRComponentType.h in Headers */ = {isa = PBXBuildFile; fileRef = A92991813AA6D28B2E0C94DEEA1CB5A6 /* FIRComponentType.h */; settings = {ATTRIBUTES = (Project, ); }; }; B91776339604D97A896D26A18DD95CCC /* SDWebImageError.m in Sources */ = {isa = PBXBuildFile; fileRef = D0A886F7D02FCF86D156DD6CFA723B42 /* SDWebImageError.m */; }; B91E70B671250005FA74AD2BC312CA08 /* libwebp-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 687496EEE6014D805ED9D32E7E1C0943 /* libwebp-dummy.m */; }; - B9336249BEE54671A61C8DFAB0D3DD1F /* EXReactNativeUserNotificationCenterProxy.h in Headers */ = {isa = PBXBuildFile; fileRef = FAD52342A2D2C5F4134E4EDA79DF1AF6 /* EXReactNativeUserNotificationCenterProxy.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B937677FC4A34E3C7292E1923469F0E9 /* RCTBaseTextViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = DA980E04B659782E208CD6580A420932 /* RCTBaseTextViewManager.m */; }; + B9336249BEE54671A61C8DFAB0D3DD1F /* EXReactNativeUserNotificationCenterProxy.h in Headers */ = {isa = PBXBuildFile; fileRef = D04E2BDC02160BC77E7D45B622335C6E /* EXReactNativeUserNotificationCenterProxy.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B937677FC4A34E3C7292E1923469F0E9 /* RCTBaseTextViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = E8B9D258AFCB14A66CCB0FDAE09F940E /* RCTBaseTextViewManager.m */; }; B94722DA2E0A483D06286C0BDFE937B6 /* CustomizationPoint.h in Headers */ = {isa = PBXBuildFile; fileRef = D40BCFC7732DC3B18B98425AB1847A4C /* CustomizationPoint.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B96B06B635CA6D8FA0CFAA2640D74B70 /* RNFBPreferences.h in Headers */ = {isa = PBXBuildFile; fileRef = 96A5DDE33DAAF319864E22ED91A799C8 /* RNFBPreferences.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B96B06B635CA6D8FA0CFAA2640D74B70 /* RNFBPreferences.h in Headers */ = {isa = PBXBuildFile; fileRef = 663E7CD908F00288887179732A22BC3E /* RNFBPreferences.h */; settings = {ATTRIBUTES = (Project, ); }; }; B9B58BE164B8ED2D35DD93B1D5385137 /* FIRCLSMachOBinary.m in Sources */ = {isa = PBXBuildFile; fileRef = 83D19653697B29F16CBBC9A7C10B26CE /* FIRCLSMachOBinary.m */; }; - B9CFDFF468394D0BCCC88748F17725AB /* RCTVirtualTextViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 8ABB41B7F9DD098BAE8F4210DAAC5F82 /* RCTVirtualTextViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B9CFDFF468394D0BCCC88748F17725AB /* RCTVirtualTextViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 899E84B80A9168A6A9EE1AE216E86340 /* RCTVirtualTextViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; B9D5296199369C3E07EEA437FB70F883 /* FBLPromises.h in Headers */ = {isa = PBXBuildFile; fileRef = 2A0D48513A8D99ED1A00A076F46C3816 /* FBLPromises.h */; settings = {ATTRIBUTES = (Project, ); }; }; B9D989270BF39444739B9D53F28332CB /* cost_neon.c in Sources */ = {isa = PBXBuildFile; fileRef = F6B9C4ACDF80EE73CCA18B0CF8E5341F /* cost_neon.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; B9F471E76219FEF567A697FCAC6988A6 /* RecordIO.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 479D4739F12395A5D7A99B49ED3351C2 /* RecordIO.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; BA1B0B45243063A109841A143245C590 /* FIRCLSFABNetworkClient.m in Sources */ = {isa = PBXBuildFile; fileRef = 74428EC61E0188E17715BC61F69D9FCC /* FIRCLSFABNetworkClient.m */; }; - BA2CD348EC967C9A230CEBAC06ADEB71 /* UIResponder+FirstResponder.m in Sources */ = {isa = PBXBuildFile; fileRef = 8F1A5F0294AEA295494496A575F3A18A /* UIResponder+FirstResponder.m */; }; + BA2CD348EC967C9A230CEBAC06ADEB71 /* UIResponder+FirstResponder.m in Sources */ = {isa = PBXBuildFile; fileRef = 98DE811D2532B4CAA9C599E4B2E6BA45 /* UIResponder+FirstResponder.m */; }; BA3003D24D3BE212DB5F9467F24524F5 /* GDTCORTransformer_Private.h in Headers */ = {isa = PBXBuildFile; fileRef = 5FDE972D4AD9AF52016E548F83A398A9 /* GDTCORTransformer_Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; BA320783C2C9624896E06C34E9BF688F /* vp8i_dec.h in Headers */ = {isa = PBXBuildFile; fileRef = EE4ED991F7F12AAB586A0C3A50313268 /* vp8i_dec.h */; settings = {ATTRIBUTES = (Project, ); }; }; BA52E8F1211DE60E33317887C1373E85 /* FIRCLSNetworkClient.h in Headers */ = {isa = PBXBuildFile; fileRef = EBCC81CAA3C63A93A843D32D8FD8FD94 /* FIRCLSNetworkClient.h */; settings = {ATTRIBUTES = (Project, ); }; }; BA884E615C31E28E4084698CB73A0AA8 /* SysStat.h in Headers */ = {isa = PBXBuildFile; fileRef = 17D5D96A5D5DB15988EECE23ADDC378C /* SysStat.h */; settings = {ATTRIBUTES = (Project, ); }; }; BA942A5A358D6A3A01F66E7C949FD930 /* vi.lproj in Resources */ = {isa = PBXBuildFile; fileRef = 47EF3DE89344103E4EFFB2621B2A847D /* vi.lproj */; }; BA997D0A220566AB86D6FF4BDE3FA2C0 /* SDImageCachesManagerOperation.m in Sources */ = {isa = PBXBuildFile; fileRef = D698BF9CACF77A6EA39A01D1F7452B71 /* SDImageCachesManagerOperation.m */; }; - BAA3D1F013273273484EA4DE0CF0E69E /* RCTBaseTextInputViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 0386096EA2720666899EFDA16ECCBCCF /* RCTBaseTextInputViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - BAAF1FE5B7910872AF80471430B0D4FD /* RNReanimated-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 61A0A3BB44000C175B6D79987E932191 /* RNReanimated-dummy.m */; }; + BAA3D1F013273273484EA4DE0CF0E69E /* RCTBaseTextInputViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 8F99BA0A8FE3787106919BC94AF7D27D /* RCTBaseTextInputViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + BAAF1FE5B7910872AF80471430B0D4FD /* RNReanimated-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = C38988527DE8EB8178CBEC5608611F79 /* RNReanimated-dummy.m */; }; BAB34DC9AE18D51771AD2EFF9AE9E82E /* NetOps.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 6DBB46C4A608B5F4778C605300D7D817 /* NetOps.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - BACF66D831BE3C45DD352D8AEE67B8F6 /* RCTErrorInfo.h in Headers */ = {isa = PBXBuildFile; fileRef = BFC4541E41094D35BFCA29320F50C28D /* RCTErrorInfo.h */; settings = {ATTRIBUTES = (Project, ); }; }; + BACF66D831BE3C45DD352D8AEE67B8F6 /* RCTErrorInfo.h in Headers */ = {isa = PBXBuildFile; fileRef = BD21A48EE4C43BAA9E58A7E7956BE0A6 /* RCTErrorInfo.h */; settings = {ATTRIBUTES = (Project, ); }; }; BAD73CF4BC294D4E49B0092724693934 /* FIRDependency.h in Headers */ = {isa = PBXBuildFile; fileRef = 6B9E7BDB4580E6F119D6963E3658182E /* FIRDependency.h */; settings = {ATTRIBUTES = (Project, ); }; }; - BAFC7EB94EDC8488BE9E12326D442CB0 /* RCTPackagerConnection.h in Headers */ = {isa = PBXBuildFile; fileRef = 8EEC86B693C1EB3C320557DB3E620D43 /* RCTPackagerConnection.h */; settings = {ATTRIBUTES = (Project, ); }; }; - BB075BC20AC56EFBD8CC09B74F83AE32 /* React-Core-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 665A7C3432F2F39F9373C0DE70BE195E /* React-Core-dummy.m */; }; - BB3D2DB1C52AB829F66F0C3F57008449 /* JSIDynamic.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 4FE4232C3853E464413871A3558E5B9F /* JSIDynamic.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + BAFC7EB94EDC8488BE9E12326D442CB0 /* RCTPackagerConnection.h in Headers */ = {isa = PBXBuildFile; fileRef = F1FF0DF45776400A391683CA1ABC41B1 /* RCTPackagerConnection.h */; settings = {ATTRIBUTES = (Project, ); }; }; + BB075BC20AC56EFBD8CC09B74F83AE32 /* React-Core-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = B2118D9D2ACC4FA9474EE6F29445370A /* React-Core-dummy.m */; }; + BB3D2DB1C52AB829F66F0C3F57008449 /* JSIDynamic.cpp in Sources */ = {isa = PBXBuildFile; fileRef = EF1B045F7445B0886A077B6B6CA21E9A /* JSIDynamic.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; BB72C52113C41EE2194D3A3EA913DC69 /* webpi_dec.h in Headers */ = {isa = PBXBuildFile; fileRef = 47EEC04E68C554C648F1C10500C90103 /* webpi_dec.h */; settings = {ATTRIBUTES = (Project, ); }; }; BBAB76A21C95354A81832F9C5F856D09 /* SKResponseInfo.m in Sources */ = {isa = PBXBuildFile; fileRef = 58F222E7537A0134B613713ACF0E5447 /* SKResponseInfo.m */; settings = {COMPILER_FLAGS = "-DDEBUG=1 -DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0"; }; }; BBB4E8EEF50C70033F406A49F2040ED3 /* SysMman.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8CF1FB8B22E115336F0A53CF3155F4D8 /* SysMman.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; @@ -2534,108 +2520,109 @@ BBC83955233A742A5693B1C7A40E2E1D /* RequestResponseResponder.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 0D7FC7F419E7B19628522F0ECA592B84 /* RequestResponseResponder.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0 -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; BBEA2040AB1AB4C04EC266B5965CEA76 /* Try-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = C85970971D45FE03BEE3A346F032E001 /* Try-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; BBEF57329313254ED8F52D89464F39C6 /* FlipperStep.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3E8D77C595107F9ADB666FE144CC4495 /* FlipperStep.cpp */; settings = {COMPILER_FLAGS = "-DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0 -Wall\n -std=c++14\n -Wno-global-constructors"; }; }; - BC119DEABF0F6DDE91F15AA4F9D2D92D /* jsi.h in Headers */ = {isa = PBXBuildFile; fileRef = 093BFCF0BDEDAC7D53A0FD539605E3CA /* jsi.h */; settings = {ATTRIBUTES = (Project, ); }; }; + BC119DEABF0F6DDE91F15AA4F9D2D92D /* jsi.h in Headers */ = {isa = PBXBuildFile; fileRef = 38C9DA88C6E31707D52117B58DC2F0A3 /* jsi.h */; settings = {ATTRIBUTES = (Project, ); }; }; BC254260B8604B20837E6C808B72014D /* TOCropScrollView.m in Sources */ = {isa = PBXBuildFile; fileRef = 897EE487D5DFCF9DC8D5A277501259A8 /* TOCropScrollView.m */; }; - BC3209B63AED304B37FC4C884A1FF658 /* RCTSpringAnimation.m in Sources */ = {isa = PBXBuildFile; fileRef = A418AA0F3E33064172D5A5B5C5084363 /* RCTSpringAnimation.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; - BC3233A5EA25350C909293F34A9A8618 /* RCTBlobManager.h in Headers */ = {isa = PBXBuildFile; fileRef = DF279B7B525E04033CBDC3488570B1A4 /* RCTBlobManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - BC479BD3F6C3BF2BD1FBC876857618B5 /* QBVideoIndicatorView.h in Headers */ = {isa = PBXBuildFile; fileRef = F28695D7D593FFF8ED5AC101BAFD5208 /* QBVideoIndicatorView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + BC3209B63AED304B37FC4C884A1FF658 /* RCTSpringAnimation.m in Sources */ = {isa = PBXBuildFile; fileRef = 64BE4F4291181D66BE2DC6CF992DC7A5 /* RCTSpringAnimation.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + BC3233A5EA25350C909293F34A9A8618 /* RCTBlobManager.h in Headers */ = {isa = PBXBuildFile; fileRef = F1D5400857A08ABA5D80BEE41D4A14A2 /* RCTBlobManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + BC479BD3F6C3BF2BD1FBC876857618B5 /* QBVideoIndicatorView.h in Headers */ = {isa = PBXBuildFile; fileRef = 080B01DE6DFDF879F44491595E30CE94 /* QBVideoIndicatorView.h */; settings = {ATTRIBUTES = (Project, ); }; }; BC5B61B37C8BCD8467E30F6D9F15783C /* SDImageCacheDefine.m in Sources */ = {isa = PBXBuildFile; fileRef = 4F80DD90C6A1DA871F6F33CBFFF8BC2F /* SDImageCacheDefine.m */; }; BC618200543E0DFEF8921BCFBC97D579 /* AtomicNotification-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 0B7618A5EE564C44A089744E27664CE0 /* AtomicNotification-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; BC726EC62C981E8283E5D854F08EE647 /* SingletonRelaxedCounter.h in Headers */ = {isa = PBXBuildFile; fileRef = D401D90B858A671DCAC8FB112F470F99 /* SingletonRelaxedCounter.h */; settings = {ATTRIBUTES = (Project, ); }; }; BC7AF5E53723D518C73C0FED7AB39AA0 /* MMKVLog_Android.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9C60B15390B5A15B6AD61A8B8AB6D5ED /* MMKVLog_Android.cpp */; settings = {COMPILER_FLAGS = "-x objective-c++ -fno-objc-arc"; }; }; - BCB94F554826E313F45F83CD0B2B05B1 /* RCTBaseTextInputShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = E43A768F57F6CF27AA59A7BB0872D21E /* RCTBaseTextInputShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + BCB94F554826E313F45F83CD0B2B05B1 /* RCTBaseTextInputShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = CC5FCC4F68924176490A137A1E39DCD0 /* RCTBaseTextInputShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; BCD873A143E0D34BEC00AA959AD55659 /* Futex-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 7677DB755FB7597872802668909BC0AA /* Futex-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; BCDD72F20390EC6D23080FC948D4EC3B /* HazptrThreadPoolExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = F6107D31E48E3B71F6CD5D021359651F /* HazptrThreadPoolExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; - BCE287AB23E636C9B4A9CA60EB400D52 /* KeyboardTrackingViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 3E698A7E4C8F177AB5E6894F03DEA9D8 /* KeyboardTrackingViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - BCF5F05EA3BD5F6DDE1E330D76796DAD /* BSG_KSCrashSentry_Signal.c in Sources */ = {isa = PBXBuildFile; fileRef = CB90D178FE39E7A139DEC60C63E9C234 /* BSG_KSCrashSentry_Signal.c */; }; + BCE287AB23E636C9B4A9CA60EB400D52 /* KeyboardTrackingViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 3113BA32877CA6A0FA4EA673733A0AA6 /* KeyboardTrackingViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + BCED976B7276D9471C676483F6747E00 /* Pods-RocketChatRN-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 911D8D1A649CF9EBF0D5F5E5062C0ECB /* Pods-RocketChatRN-umbrella.h */; settings = {ATTRIBUTES = (Project, ); }; }; + BCF5F05EA3BD5F6DDE1E330D76796DAD /* BSG_KSCrashSentry_Signal.c in Sources */ = {isa = PBXBuildFile; fileRef = 2A2BE72BF262867899367F5232C7E751 /* BSG_KSCrashSentry_Signal.c */; }; BD04B19D30A7DDA2110F8DD46B05309C /* FIRCLSRecordApplication.h in Headers */ = {isa = PBXBuildFile; fileRef = 4AAACEC58ABAB756C14C9B043CF24A0C /* FIRCLSRecordApplication.h */; settings = {ATTRIBUTES = (Project, ); }; }; BD0D4A0B32634B1D13D9E57BD4D4DAD8 /* Memory.h in Headers */ = {isa = PBXBuildFile; fileRef = 8BCC0B43A01F577F47B92A3BDC5256E6 /* Memory.h */; settings = {ATTRIBUTES = (Project, ); }; }; BD1D9E289B85888E5A0DA85BFDB7A306 /* common_sse41.h in Headers */ = {isa = PBXBuildFile; fileRef = 421264897478D2046C35BC7685C02D81 /* common_sse41.h */; settings = {ATTRIBUTES = (Project, ); }; }; BD2D9FC96B54163E2DC99899E8C42F34 /* FBLPromise+Do.m in Sources */ = {isa = PBXBuildFile; fileRef = A92E79641B310162AD0C1942F5B389D8 /* FBLPromise+Do.m */; }; - BD35C47AC83CB62104AE31461A7FBB29 /* StorageGetters.h in Headers */ = {isa = PBXBuildFile; fileRef = 3D2D37BF95E30FBBE4595336259D4477 /* StorageGetters.h */; settings = {ATTRIBUTES = (Project, ); }; }; + BD35C47AC83CB62104AE31461A7FBB29 /* StorageGetters.h in Headers */ = {isa = PBXBuildFile; fileRef = D62735DFFBE766FF979BF4D8DCD2B07A /* StorageGetters.h */; settings = {ATTRIBUTES = (Project, ); }; }; BD5072F01D4F31835001890346551F86 /* FIRCLSURLSessionUploadTask.h in Headers */ = {isa = PBXBuildFile; fileRef = 18B4A2F730A71DC95AD052A05C77F01F /* FIRCLSURLSessionUploadTask.h */; settings = {ATTRIBUTES = (Project, ); }; }; BD78FFC5FBF7237371DD462265B06FDA /* FBLPromise.h in Headers */ = {isa = PBXBuildFile; fileRef = B98CB91D6B7838DE160F401F45EFC20D /* FBLPromise.h */; settings = {ATTRIBUTES = (Project, ); }; }; BD80706281E0902BE82B527D8A2E194C /* FIRCLSPackageReportOperation.h in Headers */ = {isa = PBXBuildFile; fileRef = A6DEDA22580431B2F80D82C15169D982 /* FIRCLSPackageReportOperation.h */; settings = {ATTRIBUTES = (Project, ); }; }; - BDBFE8095A6DFBDD8701A8B73916BA29 /* NSTextStorage+FontScaling.m in Sources */ = {isa = PBXBuildFile; fileRef = 3569675BAA3D9C4169046144EAD8ED54 /* NSTextStorage+FontScaling.m */; }; + BDBFE8095A6DFBDD8701A8B73916BA29 /* NSTextStorage+FontScaling.m in Sources */ = {isa = PBXBuildFile; fileRef = C3F0321A0EA2D767809064EDDA1A9F48 /* NSTextStorage+FontScaling.m */; }; BDC1917353224F29E170FF5FFB75F6BE /* ManualExecutor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 674DC30FAC6A728796E8E311ADBD20CB /* ManualExecutor.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; BDDDCF03B2B3F78451CC4C26A6C2E56F /* GDTCORReachability.m in Sources */ = {isa = PBXBuildFile; fileRef = EEB82938D8DC5A266B866E74B527547D /* GDTCORReachability.m */; }; BDE17974FF49ED73F08298CDC7E01D5F /* FlipperResponderImpl.h in Headers */ = {isa = PBXBuildFile; fileRef = F290E2B38BF7A6D0E519530A715DDF00 /* FlipperResponderImpl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - BDEF8F949C17EFCFED5F97D8A3990EC5 /* RCTFrameUpdate.m in Sources */ = {isa = PBXBuildFile; fileRef = A75D50824166B49F29E5348151D0EE40 /* RCTFrameUpdate.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - BDF333CB9531868EF10E96EBD4863A46 /* React-RCTImage-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 0455FD41E2FB33B420BDBC210151390C /* React-RCTImage-dummy.m */; }; + BDEF8F949C17EFCFED5F97D8A3990EC5 /* RCTFrameUpdate.m in Sources */ = {isa = PBXBuildFile; fileRef = FB31C81BA75EA1A415012B9FB49FAA29 /* RCTFrameUpdate.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + BDF333CB9531868EF10E96EBD4863A46 /* React-RCTImage-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 4BA15B734C612FDB44FE65B69238926A /* React-RCTImage-dummy.m */; }; BDFABD15A8D4DB4905425E02902B21C3 /* AtomicNotification.h in Headers */ = {isa = PBXBuildFile; fileRef = 1E56CE9021435E07FAA058AEC9A2529B /* AtomicNotification.h */; settings = {ATTRIBUTES = (Project, ); }; }; - BDFC0F7AA2F89581B048797BB777AB5E /* RCTProgressViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = BF5E215571D38CAD7C9A19909AC02FEA /* RCTProgressViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - BE0A9FB9E8D5E3F0C1427076535D5386 /* RCTMaskedView.h in Headers */ = {isa = PBXBuildFile; fileRef = EC478B8068327E66CDD99C94A742B975 /* RCTMaskedView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + BDFC0F7AA2F89581B048797BB777AB5E /* RCTProgressViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 7A41176511AE56D98A8467D6889F4072 /* RCTProgressViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + BE0A9FB9E8D5E3F0C1427076535D5386 /* RCTMaskedView.h in Headers */ = {isa = PBXBuildFile; fileRef = 8415466C1EA9882F7C98357DC2A3C56E /* RCTMaskedView.h */; settings = {ATTRIBUTES = (Project, ); }; }; BE13FFBC3ECD1D252D25888F6B0FF93A /* SKTapListener.h in Headers */ = {isa = PBXBuildFile; fileRef = 69F2C9ECEFB9B5003CF764D8A13AE79F /* SKTapListener.h */; settings = {ATTRIBUTES = (Project, ); }; }; BE40EDBCF4471381FF28E7701C8FEA69 /* bit_reader_utils.c in Sources */ = {isa = PBXBuildFile; fileRef = FA4E4A0E0EC02A2A102D674CFD47678D /* bit_reader_utils.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - BE49CA81319136A74916349FF145F7E8 /* RCTComponentData.h in Headers */ = {isa = PBXBuildFile; fileRef = 64D7F83B62FE5646EC61C1C78F8D6A68 /* RCTComponentData.h */; settings = {ATTRIBUTES = (Project, ); }; }; - BE5B26FDB57E9211A299BE9E82B29733 /* RCTView.h in Headers */ = {isa = PBXBuildFile; fileRef = 1C34E365003A2E9CEC40FFFB2D0F621A /* RCTView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + BE49CA81319136A74916349FF145F7E8 /* RCTComponentData.h in Headers */ = {isa = PBXBuildFile; fileRef = 4EA016B8FFFAB2E1D4D2BBC0CEF441CD /* RCTComponentData.h */; settings = {ATTRIBUTES = (Project, ); }; }; + BE5B26FDB57E9211A299BE9E82B29733 /* RCTView.h in Headers */ = {isa = PBXBuildFile; fileRef = 29F56857296C165FD75A3B08606C0E30 /* RCTView.h */; settings = {ATTRIBUTES = (Project, ); }; }; BE6F8D3062484095226992E20BB339DA /* SafeAssert.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 72502FDDED0B761879C841806F4A27AF /* SafeAssert.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; BE7C61DDD06679BA1298ABA9CF18CDA5 /* json.h in Headers */ = {isa = PBXBuildFile; fileRef = B1E993A38989E296E043B5C53FF43EA8 /* json.h */; settings = {ATTRIBUTES = (Project, ); }; }; BEA7DD3B32ECCC8891AF8E6EB931B571 /* ParkingLot.h in Headers */ = {isa = PBXBuildFile; fileRef = DA7B92AE6A1EFF40C35491208D58D0C4 /* ParkingLot.h */; settings = {ATTRIBUTES = (Project, ); }; }; BEB4A6B042EDE942C08A59D878BBA0EA /* GDTCORConsoleLogger.m in Sources */ = {isa = PBXBuildFile; fileRef = 9173891E3F3EC1623353E06611BEC253 /* GDTCORConsoleLogger.m */; }; - BEB5847FA4846DFBE6DF49402DC7DDDF /* BSGSerialization.m in Sources */ = {isa = PBXBuildFile; fileRef = E8C21D6F591079F76CBE4CA256FDD0F9 /* BSGSerialization.m */; }; + BEB5847FA4846DFBE6DF49402DC7DDDF /* BSGSerialization.m in Sources */ = {isa = PBXBuildFile; fileRef = 4B17AB4D5E54B942BCD0E3A01D2855AF /* BSGSerialization.m */; }; BEB8A46866B0036585164D48371F67F3 /* rescaler_msa.c in Sources */ = {isa = PBXBuildFile; fileRef = 8470C2FB63AEE836B0FCA64A7F812BA8 /* rescaler_msa.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; BEED64FF0DAE73F86741D0DF21B4CBD6 /* RSocketResponder.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 037CFAC9C81542A028851020ED965541 /* RSocketResponder.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0 -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - BF25CE80A3FBBC72B5A1ADEFEBBEA6CF /* YGValue.h in Headers */ = {isa = PBXBuildFile; fileRef = 642E55F6BE17274B8BE4C08053D834C6 /* YGValue.h */; settings = {ATTRIBUTES = (Project, ); }; }; + BF25CE80A3FBBC72B5A1ADEFEBBEA6CF /* YGValue.h in Headers */ = {isa = PBXBuildFile; fileRef = 2F673D9D1B32092D286D80FB690741AE /* YGValue.h */; settings = {ATTRIBUTES = (Project, ); }; }; BF4FDCC4F1BC4069129114C5CC7C0E3D /* ReadMostlySharedPtr.h in Headers */ = {isa = PBXBuildFile; fileRef = 48410582EC986A3E6F0649D9FE8F9D39 /* ReadMostlySharedPtr.h */; settings = {ATTRIBUTES = (Project, ); }; }; BF649BCAE7F16742B4A6781A42372DFC /* LifoSem.h in Headers */ = {isa = PBXBuildFile; fileRef = 84CAE4A6D9E6F4B0DC6B348BE84E85D3 /* LifoSem.h */; settings = {ATTRIBUTES = (Project, ); }; }; BF88469CCE5C3998477396ACFBA9EA6E /* symbolize.cc in Sources */ = {isa = PBXBuildFile; fileRef = E070D082F0496D1A1BB636C4F528F39D /* symbolize.cc */; settings = {COMPILER_FLAGS = "-Wno-shorten-64-to-32"; }; }; - BFA315F1B904E334EA552B6D6A6848F8 /* REAConcatNode.h in Headers */ = {isa = PBXBuildFile; fileRef = B47F592F534DCE24F44257D123C663FE /* REAConcatNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + BFA315F1B904E334EA552B6D6A6848F8 /* REAConcatNode.h in Headers */ = {isa = PBXBuildFile; fileRef = B9A99059D66C0A81EA8F66AB4CA6FD73 /* REAConcatNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; BFC35AD1D40EB56B4DA583649E8F5D13 /* SDImageTransformer.h in Headers */ = {isa = PBXBuildFile; fileRef = 95DE5B6E1976CB78D2814FC724DA3541 /* SDImageTransformer.h */; settings = {ATTRIBUTES = (Project, ); }; }; - BFD25A0DCB8C16E01937EF26DBA8E7B1 /* ARTBrush.m in Sources */ = {isa = PBXBuildFile; fileRef = CB26351E8C2A3B0C196B00BD1E99A114 /* ARTBrush.m */; }; - BFD9C0A7CA197CC52C3CB95BB1E85F8A /* RCTSourceCode.h in Headers */ = {isa = PBXBuildFile; fileRef = 14CB29676D814E0DEAA45EA8C904B47B /* RCTSourceCode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - BFDBEDA2F9345FED6BF31A72192A415E /* REATransformNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 6BA02752B3E8452A3F27B9220BE4E524 /* REATransformNode.m */; }; - C0006C9ADDF781863927DBB59A743976 /* RCTSurfaceRootView.mm in Sources */ = {isa = PBXBuildFile; fileRef = 216AFA1AEF9D705AC54D210237DE10EF /* RCTSurfaceRootView.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - C0212921C9C63B53D671EE88E85F62DF /* RCTModuloAnimatedNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 3B15E1593096E9804FCEE5EF743A465A /* RCTModuloAnimatedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C02CA725847A19D0D496A281FDDE4E6D /* RCTImageShadowView.m in Sources */ = {isa = PBXBuildFile; fileRef = 2C3C2C2520927D3630BA92AE7435D042 /* RCTImageShadowView.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + BFD25A0DCB8C16E01937EF26DBA8E7B1 /* ARTBrush.m in Sources */ = {isa = PBXBuildFile; fileRef = EA0BF2652807A41E88350A0657875644 /* ARTBrush.m */; }; + BFD9C0A7CA197CC52C3CB95BB1E85F8A /* RCTSourceCode.h in Headers */ = {isa = PBXBuildFile; fileRef = 663F678BA4D1DC92F6056E3F7B0D75B1 /* RCTSourceCode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + BFDBEDA2F9345FED6BF31A72192A415E /* REATransformNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 2181B6496948B00951555D7B00482551 /* REATransformNode.m */; }; + C0006C9ADDF781863927DBB59A743976 /* RCTSurfaceRootView.mm in Sources */ = {isa = PBXBuildFile; fileRef = 5BBFF8E539D698791E5EA61FB18F767A /* RCTSurfaceRootView.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + C0212921C9C63B53D671EE88E85F62DF /* RCTModuloAnimatedNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 80C25DD58673E449DC782A94464B38CB /* RCTModuloAnimatedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C02CA725847A19D0D496A281FDDE4E6D /* RCTImageShadowView.m in Sources */ = {isa = PBXBuildFile; fileRef = 5C5E3037378DBB781445FABD2949953D /* RCTImageShadowView.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + C05361AEC87DA2BC06FC1934C3185319 /* Pods-ShareRocketChatRN-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 641004BDF9AA14E0CB1A8A97C6AFA116 /* Pods-ShareRocketChatRN-dummy.m */; }; C057DE004A17A3F8D3B35D884C28C883 /* DynamicBoundedQueue.h in Headers */ = {isa = PBXBuildFile; fileRef = 0B97A049CE2233B5E8631885350B11E1 /* DynamicBoundedQueue.h */; settings = {ATTRIBUTES = (Project, ); }; }; C0581C5E118FDFD225B70062D5951D1C /* FIRCLSInternalLogging.h in Headers */ = {isa = PBXBuildFile; fileRef = A06DC7C82953AC69C5D7905573C55933 /* FIRCLSInternalLogging.h */; settings = {ATTRIBUTES = (Project, ); }; }; C06443B16AB8E3BFD89427A2B4B49DEB /* SKHiddenWindow.h in Headers */ = {isa = PBXBuildFile; fileRef = 3576D97114092E1C8E8FF8FBA128C15B /* SKHiddenWindow.h */; settings = {ATTRIBUTES = (Project, ); }; }; C07E5C729C5CDBA463F9B3244CB7557F /* ParallelMap.h in Headers */ = {isa = PBXBuildFile; fileRef = C6BE9ADF4EC792E91C49786D85F1A9C3 /* ParallelMap.h */; settings = {ATTRIBUTES = (Project, ); }; }; C07F031199013D105FEAA8C15D45F158 /* OpenSSL.h in Headers */ = {isa = PBXBuildFile; fileRef = E92B1CBD11C1B58FEF03284A5D74A471 /* OpenSSL.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C0932A8526A3AE20FB97AC3C7943473A /* RCTInvalidating.h in Headers */ = {isa = PBXBuildFile; fileRef = 346D51C0E4A81A54101A5E224D1D0E0D /* RCTInvalidating.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C0932A8526A3AE20FB97AC3C7943473A /* RCTInvalidating.h in Headers */ = {isa = PBXBuildFile; fileRef = B8491340A2D8F67A220A17EACCBE4BB6 /* RCTInvalidating.h */; settings = {ATTRIBUTES = (Project, ); }; }; C0A2023B19676FAABBBA6B2BC4D9F8F5 /* FrameTransportImpl.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2E3BBBF03432E9D906358AA7E355DD63 /* FrameTransportImpl.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0 -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; C0A325EF483D590E330CAE0754811F0E /* yuv_neon.c in Sources */ = {isa = PBXBuildFile; fileRef = 42A313947B20CDB26F47B4EC13C31194 /* yuv_neon.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; C0A764E2A7162F96CDC19C3FBB3941BA /* Hash.h in Headers */ = {isa = PBXBuildFile; fileRef = BDC9EA71B0021E634E402664FF65CBD6 /* Hash.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C0DA56861F19FBD577BD41D10533ECD6 /* RCTInputAccessoryView.h in Headers */ = {isa = PBXBuildFile; fileRef = D1B57CF1BFC9540DEB0B75EB1FF01892 /* RCTInputAccessoryView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C0DA56861F19FBD577BD41D10533ECD6 /* RCTInputAccessoryView.h in Headers */ = {isa = PBXBuildFile; fileRef = 1D9BD610EC7E9A2C0043A8CA1E22A9D1 /* RCTInputAccessoryView.h */; settings = {ATTRIBUTES = (Project, ); }; }; C0E488789FEA375C81FE2F74F4AA9D58 /* EventBaseThread.cpp in Sources */ = {isa = PBXBuildFile; fileRef = AC5DF7E8E353D35E40BA8F49221C40A1 /* EventBaseThread.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - C0EFCC68350B009B251F6F3BF822AECB /* RCTLayout.m in Sources */ = {isa = PBXBuildFile; fileRef = 32A9756511569DC9C0C6BEF16C916092 /* RCTLayout.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + C0EFCC68350B009B251F6F3BF822AECB /* RCTLayout.m in Sources */ = {isa = PBXBuildFile; fileRef = 48FF4E16D3117C99285385E40CCF0B5E /* RCTLayout.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; C0FE61BF3EBB297460A741F2B0574E9D /* Pods-NotificationService-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 1D7CBF06506FC0C5E499836B0E8DC898 /* Pods-NotificationService-dummy.m */; }; C0FEA850E34B4915EAAE6772C2C0221B /* TOCropViewController-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 1ADD7810C6DF1440631D2AA8C8C12E13 /* TOCropViewController-dummy.m */; }; C11DD2F2A0EC13794D0F91C78BD33660 /* BasicTransportCertificate.h in Headers */ = {isa = PBXBuildFile; fileRef = E20A9F4DD32B413C18EF6F391F937A82 /* BasicTransportCertificate.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C13607802A82E097C94614A6F16A33AE /* RNVectorIcons-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = C365170B94B6FD9ED83E156A82E5EE84 /* RNVectorIcons-dummy.m */; }; - C1527E631CCA0A9E697CE853758205F9 /* RNPanHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = D9B7193F174B7FE6EEBA010ADA62F9D3 /* RNPanHandler.m */; }; - C171421434E7FB0AD572729BDD931403 /* RCTJavaScriptExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = 006014C47BE7976F74E8506743E2E6AE /* RCTJavaScriptExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C1D36A17157394A720072DA41D7CDDAA /* RCTRawTextViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = FF05DCF7ACB2BA0BEF6AAFDE1F9C4D62 /* RCTRawTextViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C1D9CD93279C99FECFCC6F270EE77D8B /* RCTInspectorPackagerConnection.h in Headers */ = {isa = PBXBuildFile; fileRef = 615A0DD23BA76DE12C7349F5D5EDEA5B /* RCTInspectorPackagerConnection.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C13607802A82E097C94614A6F16A33AE /* RNVectorIcons-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = F0AEC5186B8F5808589C526E5DCDE874 /* RNVectorIcons-dummy.m */; }; + C1527E631CCA0A9E697CE853758205F9 /* RNPanHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = EA7CCE578247659B1632E00489116C48 /* RNPanHandler.m */; }; + C171421434E7FB0AD572729BDD931403 /* RCTJavaScriptExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = B34F3D84C8EC332A55289CC4FA4E138A /* RCTJavaScriptExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C1D36A17157394A720072DA41D7CDDAA /* RCTRawTextViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 7A92ECAC3A1F2597E7F6F4A3743E5804 /* RCTRawTextViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C1D9CD93279C99FECFCC6F270EE77D8B /* RCTInspectorPackagerConnection.h in Headers */ = {isa = PBXBuildFile; fileRef = 03DB0FC7F9536554FBD485B61B73B984 /* RCTInspectorPackagerConnection.h */; settings = {ATTRIBUTES = (Project, ); }; }; C1E765069FBFC5049BDD3048CF48C443 /* Config.h in Headers */ = {isa = PBXBuildFile; fileRef = 4F2055BDB57180E82727365BDBEA6CBB /* Config.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C22103D361A0F0596B683F3978E75417 /* InspectorInterfaces.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B1F80AF2E53193E40A5C4112C6510EA4 /* InspectorInterfaces.cpp */; }; + C22103D361A0F0596B683F3978E75417 /* InspectorInterfaces.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 96884B759FC1D69163EC573BBAA4514C /* InspectorInterfaces.cpp */; }; C2210BD937C3EFB00A98950CDF17E200 /* F14Map.h in Headers */ = {isa = PBXBuildFile; fileRef = 28C6B44415916C55BF988662090BAF2A /* F14Map.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C2263B03329251F5D94C20D3F6D7C153 /* RCTNetworkPlugins.h in Headers */ = {isa = PBXBuildFile; fileRef = FB84F7412C58504835C6E61D33EB4C5D /* RCTNetworkPlugins.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C23AE48B3ABAB7EA35C3438C5871DB35 /* RCTView.m in Sources */ = {isa = PBXBuildFile; fileRef = 1C6ACE4E4DFE257A04FBBBD84F6F6E9E /* RCTView.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - C2486B1E8EE87EF597289BD464B80857 /* RCTTextTransform.h in Headers */ = {isa = PBXBuildFile; fileRef = 5F2034C1AE93F00731ACD41C145FB977 /* RCTTextTransform.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C26192AB566D334572D7F6C1BE8FB4F0 /* BugsnagSession.m in Sources */ = {isa = PBXBuildFile; fileRef = 43D8ECC247297367CF91FB34E32382CF /* BugsnagSession.m */; }; - C263E42FDB347F766656EF42E821797F /* RCTImageBlurUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = D69EE22C879222A4C1FD3CD771BABC7F /* RCTImageBlurUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C2263B03329251F5D94C20D3F6D7C153 /* RCTNetworkPlugins.h in Headers */ = {isa = PBXBuildFile; fileRef = DBAA213439DB4A2F820FC256FD8B83D9 /* RCTNetworkPlugins.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C23AE48B3ABAB7EA35C3438C5871DB35 /* RCTView.m in Sources */ = {isa = PBXBuildFile; fileRef = 6AC5C5F2293A8179085B5C8C5FA4F526 /* RCTView.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + C2486B1E8EE87EF597289BD464B80857 /* RCTTextTransform.h in Headers */ = {isa = PBXBuildFile; fileRef = 75F53B625267A4726F4510DBF32A4E81 /* RCTTextTransform.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C26192AB566D334572D7F6C1BE8FB4F0 /* BugsnagSession.m in Sources */ = {isa = PBXBuildFile; fileRef = D79007C04E086C764C339CC593525690 /* BugsnagSession.m */; }; + C263E42FDB347F766656EF42E821797F /* RCTImageBlurUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = 1FA083C52BE41BD164D10B6C4FCA9721 /* RCTImageBlurUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; C28013B0E6EE2B2312C28F6C894195C2 /* SmallLocks.h in Headers */ = {isa = PBXBuildFile; fileRef = D1570649D7DA9D5459D8220CE9F3C2AA /* SmallLocks.h */; settings = {ATTRIBUTES = (Project, ); }; }; C280FBA6CB4B66759E107B5F44C4873B /* SingletonStackTrace.h in Headers */ = {isa = PBXBuildFile; fileRef = C924340471D482F7D3064ABC398995B2 /* SingletonStackTrace.h */; settings = {ATTRIBUTES = (Project, ); }; }; C283BBD7ED04212B9A808864AC9ADEA3 /* FIRCLSHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 94F9E3E5E9EC0B8F78F414B70D50FBE1 /* FIRCLSHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; C2A20A2FC7C090819B293CF1B8AE1C79 /* TimeoutManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 50ABED557B2727B15D5F04BF4D42865C /* TimeoutManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; C2D27B35A495F5703A7F5E47C01CDB27 /* FIRComponentType.m in Sources */ = {isa = PBXBuildFile; fileRef = 12AEECED6AF7D715C1A84D61FF91DF3A /* FIRComponentType.m */; }; C2D28B4B3FBFC6E8C78FF52F978104E4 /* AsyncSocketBase.h in Headers */ = {isa = PBXBuildFile; fileRef = 526AE4F7621EF6AA86F6624CD97483D0 /* AsyncSocketBase.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C2FF2F386635B257EEA20673524B2106 /* RCTSurfaceView+Internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 37FC2B874DAAE07CE3174D9DFFE5CAFB /* RCTSurfaceView+Internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C30A06DEED796382057162537ACB1715 /* RCTBaseTextInputView.m in Sources */ = {isa = PBXBuildFile; fileRef = 381F8C518E1401676014CF63F3ADA4D3 /* RCTBaseTextInputView.m */; }; - C30D3BC1FAB19C0ED18F445348DC68F9 /* Pods-RocketChatRN-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 911D8D1A649CF9EBF0D5F5E5062C0ECB /* Pods-RocketChatRN-umbrella.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C2FF2F386635B257EEA20673524B2106 /* RCTSurfaceView+Internal.h in Headers */ = {isa = PBXBuildFile; fileRef = FE52B789345AAE5C936BEC0D8A3356DB /* RCTSurfaceView+Internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C30A06DEED796382057162537ACB1715 /* RCTBaseTextInputView.m in Sources */ = {isa = PBXBuildFile; fileRef = 72ECF21D2993D114EB1E5CDF3328E2AE /* RCTBaseTextInputView.m */; }; C318F088EA3D878A0D1E44C71C8E6455 /* GDTCOREvent.h in Headers */ = {isa = PBXBuildFile; fileRef = AB941A4A795E00CF510B118C62D04E69 /* GDTCOREvent.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C31F666D38E8D1506F1AEF6677746719 /* BSG_KSCrashSentry_CPPException.mm in Sources */ = {isa = PBXBuildFile; fileRef = 54DCD51CAE6B956241E6E223E1CCF329 /* BSG_KSCrashSentry_CPPException.mm */; }; - C32492EA797CF1D1565DFE4CB2965937 /* RCTSinglelineTextInputViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 4AC68D790CEC3B99E278CE3D11F66364 /* RCTSinglelineTextInputViewManager.m */; }; + C31F666D38E8D1506F1AEF6677746719 /* BSG_KSCrashSentry_CPPException.mm in Sources */ = {isa = PBXBuildFile; fileRef = F9F2A50B03D025FC1211F91251E6DEA7 /* BSG_KSCrashSentry_CPPException.mm */; }; + C32492EA797CF1D1565DFE4CB2965937 /* RCTSinglelineTextInputViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 82BCEE677B1A6FD38BE42CDB0BDDC442 /* RCTSinglelineTextInputViewManager.m */; }; C3349FD62950CE68B534E08E98989248 /* filters.c in Sources */ = {isa = PBXBuildFile; fileRef = 44F4D9618C4088D58BC5692C82AD25CE /* filters.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; C35C08137C73A031B842E342644BA18C /* FormatTraits.h in Headers */ = {isa = PBXBuildFile; fileRef = 8E3B8F7A4FD176040E2498D2F3F57C62 /* FormatTraits.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C3657B5EF0154F1BA8833C49B3CC2348 /* RNFBMeta.h in Headers */ = {isa = PBXBuildFile; fileRef = E0B55D0C673CD5BE3E824D41A58D1DC7 /* RNFBMeta.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C3657B5EF0154F1BA8833C49B3CC2348 /* RNFBMeta.h in Headers */ = {isa = PBXBuildFile; fileRef = 738841D1B0F383E802F2042816867763 /* RNFBMeta.h */; settings = {ATTRIBUTES = (Project, ); }; }; C375C167B744F2795615999A24BFDCF4 /* SingletonStackTrace.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 908B1CD128E2967199FC5CC569F1DD63 /* SingletonStackTrace.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; C38DD9DFD1FFD996EE9F0E74D6224174 /* FIRCLSReportUploader_Private.h in Headers */ = {isa = PBXBuildFile; fileRef = 3D97A62D5F7FFFED570E9717C1B77CA0 /* FIRCLSReportUploader_Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; C39D561E85EFC337D50ED754F7246617 /* StreamFragmentAccumulator.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F76168BDBB53E0EB4EC8CF751841B18E /* StreamFragmentAccumulator.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0 -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - C3ACE4D0C00034561584FEFEAA6F9016 /* RNPushKitEventListener.m in Sources */ = {isa = PBXBuildFile; fileRef = D48572B8B277C63CACAD5807CF571B0D /* RNPushKitEventListener.m */; }; - C3AF87D9D12C1AEC2EE36F4AAFCD8A97 /* RNNotificationEventHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = E29E75E97AD70F3044C8F84CAE603806 /* RNNotificationEventHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C3ACE4D0C00034561584FEFEAA6F9016 /* RNPushKitEventListener.m in Sources */ = {isa = PBXBuildFile; fileRef = FA199344659BD6BBA1F44843A8F1073B /* RNPushKitEventListener.m */; }; + C3AF87D9D12C1AEC2EE36F4AAFCD8A97 /* RNNotificationEventHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = F4F685E59CA20E3A8D923016C0BD2E5D /* RNNotificationEventHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; C3B789F1FFA2D63B4882E3FD6A2C8A98 /* FIRCLSInstallIdentifierModel.h in Headers */ = {isa = PBXBuildFile; fileRef = 5343C119674227B662AD65232D789027 /* FIRCLSInstallIdentifierModel.h */; settings = {ATTRIBUTES = (Project, ); }; }; C3BC1E0AA405968BB6EF6C6CFC4C639A /* AtomicSharedPtr.h in Headers */ = {isa = PBXBuildFile; fileRef = 446A7B4CAC5AD80116A78511256976DE /* AtomicSharedPtr.h */; settings = {ATTRIBUTES = (Project, ); }; }; C3E036FEC576797A6BFFFD89A6BDFCFC /* Fixture.h in Headers */ = {isa = PBXBuildFile; fileRef = 291ECEDE7675204DB498E8FB478238F6 /* Fixture.h */; settings = {ATTRIBUTES = (Project, ); }; }; @@ -2646,93 +2633,94 @@ C4307E73DDD599B8D73C2F25D0D8C3B3 /* RSocket.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1AB3FE2A17BEDABCF0D67499A4E02A4F /* RSocket.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0 -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; C448A7F24667926FFE2CA75A251C6249 /* Log.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2C907FD202E0FFDA105B5A509A977743 /* Log.cpp */; settings = {COMPILER_FLAGS = "-DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0 -Wall\n -std=c++14\n -Wno-global-constructors"; }; }; C448B82E54D115C72AB59F4F6BE72C16 /* WaitOptions.h in Headers */ = {isa = PBXBuildFile; fileRef = 777D876DE04191F5FD7ACE4451E1CCC8 /* WaitOptions.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C44BFC440E071BDECCD7496ABA020DE1 /* RCTScrollContentViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = B56D94C0DBA9BAD5FF5EEC37AD360624 /* RCTScrollContentViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C44BFC440E071BDECCD7496ABA020DE1 /* RCTScrollContentViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 169BCAFC2A880127CA3F55F3C5352981 /* RCTScrollContentViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; C470700CB17359170121D3848FE063BC /* Benchmarks.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3CA677BF651865EC11C8D20C8EE515DE /* Benchmarks.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0 -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - C48CF381E218303B3192CD4105611352 /* RCTTextViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 12769C158B809904700E4888E6AFFE0E /* RCTTextViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C48CF381E218303B3192CD4105611352 /* RCTTextViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 67E0707F1E40C6E88B45D2E8B0BF81AB /* RCTTextViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; C4A377EE7504F7B0BEA766EFD9885DD8 /* Sse.h in Headers */ = {isa = PBXBuildFile; fileRef = AB79FE13137E7659391D350C4D520D49 /* Sse.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C4C0690D0CC7D0EFC458CE9E1C67B9A2 /* RNJitsiMeetViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 4AA9214E80ABD8633D03CE765739D87E /* RNJitsiMeetViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C4C0A411FE602EFF5F4265F17BB1CC94 /* NativeToJsBridge.h in Headers */ = {isa = PBXBuildFile; fileRef = C195B6F931DD0F08D7628C1EDD165768 /* NativeToJsBridge.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C4C0690D0CC7D0EFC458CE9E1C67B9A2 /* RNJitsiMeetViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = DCCE06B14E1B2CF20E94776F50F648CD /* RNJitsiMeetViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C4C0A411FE602EFF5F4265F17BB1CC94 /* NativeToJsBridge.h in Headers */ = {isa = PBXBuildFile; fileRef = B5A729E304BCAA17639DE80581B2B82C /* NativeToJsBridge.h */; settings = {ATTRIBUTES = (Project, ); }; }; C4C603BD962E852D3D6ACCDC7E1FA6D9 /* UIImageView+HighlightedWebCache.h in Headers */ = {isa = PBXBuildFile; fileRef = 65140110B413F1F23561D57B4FAB24F0 /* UIImageView+HighlightedWebCache.h */; settings = {ATTRIBUTES = (Project, ); }; }; C4CF1A9274B26F538346FA24265C245B /* ExceptionWrapper.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FCB167E238DAE7C051F34D90252B9E55 /* ExceptionWrapper.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - C4D0C46A8BC7FD766E9C0B4A59572459 /* YGEnums.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3AAE05B3FC984B4ED394E8C3FD5F7513 /* YGEnums.cpp */; settings = {COMPILER_FLAGS = "-fno-omit-frame-pointer -fexceptions -Wall -Werror -std=c++1y -fPIC -fno-objc-arc"; }; }; + C4D0C46A8BC7FD766E9C0B4A59572459 /* YGEnums.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D036A8B91F9D274755D69D2C610FC578 /* YGEnums.cpp */; settings = {COMPILER_FLAGS = "-fno-omit-frame-pointer -fexceptions -Wall -Werror -std=c++1y -fPIC -fno-objc-arc"; }; }; C4ECEC9864CEFBADAB76ACF75704CFF3 /* FlipperConnectionImpl.h in Headers */ = {isa = PBXBuildFile; fileRef = 535B743A191F399420E426D8B0102A3D /* FlipperConnectionImpl.h */; settings = {ATTRIBUTES = (Project, ); }; }; C52EA3FB913ADE72343ED96051402BD4 /* SDWebImage-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 8F2EFC9F3617C8132B2F6ED699A3FC2E /* SDWebImage-dummy.m */; }; C573ADD266BB9FCD73F607FDF9683F58 /* pb_encode.h in Headers */ = {isa = PBXBuildFile; fileRef = AEBF8573CD3A0D7CC987247807516ECF /* pb_encode.h */; settings = {ATTRIBUTES = (Project, ); }; }; C5754429324490E0B719A268D20FDD4F /* Tearable.h in Headers */ = {isa = PBXBuildFile; fileRef = 7E3803028B3463B243421AE1D90AE493 /* Tearable.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C577EFA9933AA7DFD0C9DD27C65C9CF5 /* BSG_KSCrashState.h in Headers */ = {isa = PBXBuildFile; fileRef = EBE539977B2F1ECFBFDC2C16330E742C /* BSG_KSCrashState.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C57BE850AD61F126370C11804774D465 /* EXAVObject.h in Headers */ = {isa = PBXBuildFile; fileRef = 96F2D40B663B82645158A02DAE87A215 /* EXAVObject.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C577EFA9933AA7DFD0C9DD27C65C9CF5 /* BSG_KSCrashState.h in Headers */ = {isa = PBXBuildFile; fileRef = DB5CAB2057435456429FA3445FD1EAAC /* BSG_KSCrashState.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C57BE850AD61F126370C11804774D465 /* EXAVObject.h in Headers */ = {isa = PBXBuildFile; fileRef = 902C5ECA46518635A6D739983EE418D2 /* EXAVObject.h */; settings = {ATTRIBUTES = (Project, ); }; }; C5802BF2D7023EA04E528D82B48D9901 /* SDGraphicsImageRenderer.h in Headers */ = {isa = PBXBuildFile; fileRef = EB60EB90116FADA18E2A8985F0C44F46 /* SDGraphicsImageRenderer.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C583A63E1B56604298FD2FFC5AE4BC56 /* BSG_KSCrashC.h in Headers */ = {isa = PBXBuildFile; fileRef = 7652CEAA30BFE987D01F1A0D42B4EB0F /* BSG_KSCrashC.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C583A63E1B56604298FD2FFC5AE4BC56 /* BSG_KSCrashC.h in Headers */ = {isa = PBXBuildFile; fileRef = 6A2174BAE9FDA94986E9EE99590D8BAA /* BSG_KSCrashC.h */; settings = {ATTRIBUTES = (Project, ); }; }; C589A35739F4BFB30A730B9898674387 /* ScheduledSingleSubscription.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 318809000B2034C42F024E63559E32B6 /* ScheduledSingleSubscription.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0 -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; C5A6906F44D4B0C9AE50B1CC8EB9DA96 /* FirebaseCrashlytics.h in Headers */ = {isa = PBXBuildFile; fileRef = 8A814E92EA07C7E1929E2126C99FA790 /* FirebaseCrashlytics.h */; settings = {ATTRIBUTES = (Project, ); }; }; C5AB9C2CB629DC7637FC6C350274D3D0 /* FIRCoreDiagnosticsInterop.h in Headers */ = {isa = PBXBuildFile; fileRef = 9E0CA6933B225B17A6B95C12EB10D68E /* FIRCoreDiagnosticsInterop.h */; settings = {ATTRIBUTES = (Project, ); }; }; C5CCA75F65517FBAF1ABD1756E101744 /* FIRCLSMachOBinary.h in Headers */ = {isa = PBXBuildFile; fileRef = C6166541CE2D2D90907B298B5A2771CD /* FIRCLSMachOBinary.h */; settings = {ATTRIBUTES = (Project, ); }; }; C5F273B1A904F4556CC59978DAE262EC /* FIRCLSOnboardingOperation.h in Headers */ = {isa = PBXBuildFile; fileRef = 2685DB9664E678CB0C87EF6BD998FB13 /* FIRCLSOnboardingOperation.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C644C02A988787D6DBC7DD0DA9489024 /* RCTRefreshControlManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 85AB4DF292868E6093D2D5E475C5AC83 /* RCTRefreshControlManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - C64F4F00624C0150F8F1D9D766111693 /* RCTBridgeModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 21A289577DDEDFA5253CECFFD3E75F88 /* RCTBridgeModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C644C02A988787D6DBC7DD0DA9489024 /* RCTRefreshControlManager.m in Sources */ = {isa = PBXBuildFile; fileRef = DD623FD80DE9D923D9D24D2B198EB10F /* RCTRefreshControlManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + C64F4F00624C0150F8F1D9D766111693 /* RCTBridgeModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 0B4FA5D9415D468DD3DBB37EA8689571 /* RCTBridgeModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; C653F36D3272A555537151A6DC9CEE7F /* FIRCLSURLSession.h in Headers */ = {isa = PBXBuildFile; fileRef = 30163F074732A3DCD3326EAE9F1DF671 /* FIRCLSURLSession.h */; settings = {ATTRIBUTES = (Project, ); }; }; C67E74CD75F4E6B9D8ADDD965B00F75F /* Unistd.cpp in Sources */ = {isa = PBXBuildFile; fileRef = E140D805FEFE3701EC7E12BE2ABF66D0 /* Unistd.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - C680AAB543D4CFDB99EF76CED42462E4 /* ObservingInputAccessoryView.m in Sources */ = {isa = PBXBuildFile; fileRef = 735E9CFB0C211D545A1366F22F8E0B51 /* ObservingInputAccessoryView.m */; }; - C698EF32718CB847E5A2D18D7A80CCE6 /* RCTStatusBarManager.mm in Sources */ = {isa = PBXBuildFile; fileRef = 7600DAD6D334F62C90BE945F8BC5D102 /* RCTStatusBarManager.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + C680AAB543D4CFDB99EF76CED42462E4 /* ObservingInputAccessoryView.m in Sources */ = {isa = PBXBuildFile; fileRef = 3BFBE70DB9803AEE8F2839BAA8572BA6 /* ObservingInputAccessoryView.m */; }; + C698EF32718CB847E5A2D18D7A80CCE6 /* RCTStatusBarManager.mm in Sources */ = {isa = PBXBuildFile; fileRef = 22B2621B5452FBF1E9860F81384C7768 /* RCTStatusBarManager.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; C69D82AAFB23D14F38C990FDD557510B /* FlipperKitLayoutPlugin.h in Headers */ = {isa = PBXBuildFile; fileRef = 4ADC1964B240D9CBBF4C261A41861ADA /* FlipperKitLayoutPlugin.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C6A936FCFCA729233A8763BEE3CA052B /* RNNotifications.m in Sources */ = {isa = PBXBuildFile; fileRef = 7324299E30833A6A20255CF8DA2A73B6 /* RNNotifications.m */; }; + C6A936FCFCA729233A8763BEE3CA052B /* RNNotifications.m in Sources */ = {isa = PBXBuildFile; fileRef = DF3F8D40749CC44E4B77448B7CA36988 /* RNNotifications.m */; }; C6B1A2F2FB22FD061CBDEBC73699BF85 /* Retrying.h in Headers */ = {isa = PBXBuildFile; fileRef = 738A67103B504ECD54BC2B905A42B479 /* Retrying.h */; settings = {ATTRIBUTES = (Project, ); }; }; C6B33D87843409BFE30D6E184F503117 /* GULSceneDelegateSwizzler.h in Headers */ = {isa = PBXBuildFile; fileRef = FC5D54C7C94EC93BFDA6EB43F9CBB6A2 /* GULSceneDelegateSwizzler.h */; settings = {ATTRIBUTES = (Project, ); }; }; C6CC8CC7678B10107D83F3250F05CA3E /* RSocketErrors.h in Headers */ = {isa = PBXBuildFile; fileRef = D1F1766B7ADFBC8356A75896D0F97C98 /* RSocketErrors.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C6CE0DE6246C78130C0341CBF5CB5EAF /* RCTBorderStyle.h in Headers */ = {isa = PBXBuildFile; fileRef = D722703E17938E620687735EA8C983D9 /* RCTBorderStyle.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C6E32A2C5B362327367469B5A5AB707C /* RCTMessageThread.h in Headers */ = {isa = PBXBuildFile; fileRef = 7834B42B5EF58DFF8D1B3F3195EBF519 /* RCTMessageThread.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C6CE0DE6246C78130C0341CBF5CB5EAF /* RCTBorderStyle.h in Headers */ = {isa = PBXBuildFile; fileRef = CF207FF954594543030AF9A57CB88BCE /* RCTBorderStyle.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C6E32A2C5B362327367469B5A5AB707C /* RCTMessageThread.h in Headers */ = {isa = PBXBuildFile; fileRef = B938E33632785E0B00428F5CBC3F7CD6 /* RCTMessageThread.h */; settings = {ATTRIBUTES = (Project, ); }; }; C6FD6C0DC9F80A90245FCF4CA62032FF /* FrameHeader.h in Headers */ = {isa = PBXBuildFile; fileRef = 236024A068DDABE38303EA3FA7AC8994 /* FrameHeader.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C6FFA9AA032D3D9B5EC61F106F130182 /* threadsafe.h in Headers */ = {isa = PBXBuildFile; fileRef = DF2A0F63013D4687C700B4CD23A80AF7 /* threadsafe.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C6FFA9AA032D3D9B5EC61F106F130182 /* threadsafe.h in Headers */ = {isa = PBXBuildFile; fileRef = 27DE1E395E84CF3A9BA210BCAF52346C /* threadsafe.h */; settings = {ATTRIBUTES = (Project, ); }; }; C705373FEB64A9758E0642ADACF65A94 /* PriorityLifoSemMPMCQueue.h in Headers */ = {isa = PBXBuildFile; fileRef = 0366AE56DE9F436C200FBBE82DE0591C /* PriorityLifoSemMPMCQueue.h */; settings = {ATTRIBUTES = (Project, ); }; }; C716E94E1FC3FD317F9317D4B823F47B /* SKViewDescriptor.h in Headers */ = {isa = PBXBuildFile; fileRef = D0413152AC6892E64F76BAF43B060FB2 /* SKViewDescriptor.h */; settings = {ATTRIBUTES = (Project, ); }; }; C722F120971D6AAD6A8DFC845041263A /* Fingerprint.h in Headers */ = {isa = PBXBuildFile; fileRef = 09B5F3ED7A07A1DA4B7951D47BAC11EB /* Fingerprint.h */; settings = {ATTRIBUTES = (Project, ); }; }; C72CC6BD3565CD3EC264AF9A1ACA561A /* Flipper-DoubleConversion-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 09C9A4AB438A7D176F08CFFBD5383A8C /* Flipper-DoubleConversion-dummy.m */; }; - C73854B286010939B9CBF8DE8E4EB6F0 /* RCTRedBoxSetEnabled.m in Sources */ = {isa = PBXBuildFile; fileRef = 7E10CC96907CE1E161D8FD66DA528DB0 /* RCTRedBoxSetEnabled.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - C74E6E1B7E9C973388A7F33F4D1019A5 /* RCTExceptionsManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 40D44BA0ECCFDA52623C36E7DC52B50B /* RCTExceptionsManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C73854B286010939B9CBF8DE8E4EB6F0 /* RCTRedBoxSetEnabled.m in Sources */ = {isa = PBXBuildFile; fileRef = 41F1944D6B16E6CBFCAB66B4C76FCFF9 /* RCTRedBoxSetEnabled.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + C74E6E1B7E9C973388A7F33F4D1019A5 /* RCTExceptionsManager.h in Headers */ = {isa = PBXBuildFile; fileRef = FEED02E25B5D1959FA6688FC441AEC3E /* RCTExceptionsManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; C74EDD68BA9D43E389E690BC19C471EB /* GULKeychainUtils.m in Sources */ = {isa = PBXBuildFile; fileRef = E11D056E6F92331F74B6EAF8D0677E9C /* GULKeychainUtils.m */; }; - C78643F92D6BD8C75CF62D5602634503 /* RCTVersion.m in Sources */ = {isa = PBXBuildFile; fileRef = FFE1B62C7BFE512BE93821D330789AFC /* RCTVersion.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - C79105828CDD7137E612035CC4B9A5EB /* RCTRefreshableProtocol.h in Headers */ = {isa = PBXBuildFile; fileRef = 127B3603140E92E1392502E3A2B83823 /* RCTRefreshableProtocol.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C78643F92D6BD8C75CF62D5602634503 /* RCTVersion.m in Sources */ = {isa = PBXBuildFile; fileRef = A1977F6EED8F723F1AB1B88C7CC426FB /* RCTVersion.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + C79105828CDD7137E612035CC4B9A5EB /* RCTRefreshableProtocol.h in Headers */ = {isa = PBXBuildFile; fileRef = 2A83D3E6E07078C5186868A571FC7722 /* RCTRefreshableProtocol.h */; settings = {ATTRIBUTES = (Project, ); }; }; C7A9C914D1147D6A5DD39398DF218798 /* ConnectionFactory.h in Headers */ = {isa = PBXBuildFile; fileRef = AFB62303CC4672914C42861A7628B4AA /* ConnectionFactory.h */; settings = {ATTRIBUTES = (Project, ); }; }; C7AC334C71CD87B757084ED03CABC794 /* SequencedExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = 67BF88A6307856EAAFEE39B3AC5A73BC /* SequencedExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C7B54C967318F61468B5526684FC207A /* RNCMaskedViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 65FB729F1A489137605E6745BB996314 /* RNCMaskedViewManager.m */; }; + C7B54C967318F61468B5526684FC207A /* RNCMaskedViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = E8485B1132B261C16F96FE0F451A8E56 /* RNCMaskedViewManager.m */; }; C7C762139012AC78A94526A80497A74E /* FIRCLSLogger.h in Headers */ = {isa = PBXBuildFile; fileRef = 20EAB90EF822713B7D8AB265ED3C7BB0 /* FIRCLSLogger.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C7DCCDBFFDF42436901FC14DFF8F79D1 /* RCTPlatform.h in Headers */ = {isa = PBXBuildFile; fileRef = 7A6045222BB4406D914AF58D7C10BE03 /* RCTPlatform.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C7DCCDBFFDF42436901FC14DFF8F79D1 /* RCTPlatform.h in Headers */ = {isa = PBXBuildFile; fileRef = E2470D9217B50C94F245648D7D860C2F /* RCTPlatform.h */; settings = {ATTRIBUTES = (Project, ); }; }; C7EBA3555289B8BBEDD910BDB3C7FCC5 /* SSLSessionImpl.cpp in Sources */ = {isa = PBXBuildFile; fileRef = DDB5D7CD832670302786387AB4BC9336 /* SSLSessionImpl.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; C805F6088C0BA02E7153F45BB0997ABA /* Flipper-Folly-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 498249EACC04B3EAD707CCB97B1D05D5 /* Flipper-Folly-dummy.m */; }; - C83E5E636FE3D4BC3D5E0935412E5F4B /* RCTDivisionAnimatedNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 4102BD2284BF4B0EB444DFA425BD734F /* RCTDivisionAnimatedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C83E5E636FE3D4BC3D5E0935412E5F4B /* RCTDivisionAnimatedNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 24FFF063FB9972AAD27940D201948ADE /* RCTDivisionAnimatedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; C84B9A835932634C349577E1D787CD90 /* FIRAnalyticsInterop.h in Headers */ = {isa = PBXBuildFile; fileRef = BFFCB14A90D6148FB43FDF9D41AE16BA /* FIRAnalyticsInterop.h */; settings = {ATTRIBUTES = (Project, ); }; }; C86859572C69BC64FFBD0CDE09D902BF /* Event.h in Headers */ = {isa = PBXBuildFile; fileRef = 85E6F658BEB77105D9B54AC764256AF2 /* Event.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C88239BAB97F0174A93D4CEBCD773F0F /* EXAppleAuthentication.h in Headers */ = {isa = PBXBuildFile; fileRef = FA7C788A5A6CD1D7002EDCDC20F9879D /* EXAppleAuthentication.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C88239BAB97F0174A93D4CEBCD773F0F /* EXAppleAuthentication.h in Headers */ = {isa = PBXBuildFile; fileRef = 23798980D7D6B0CC21A97D3808881278 /* EXAppleAuthentication.h */; settings = {ATTRIBUTES = (Project, ); }; }; C887E31027E8BFCCC686D1ADBA9A51D0 /* FIRErrors.m in Sources */ = {isa = PBXBuildFile; fileRef = C66058D6B35811735A537386F5CC314D /* FIRErrors.m */; }; C8889525AB03223E9DDA3ED5DF1D31AD /* ja.lproj in Resources */ = {isa = PBXBuildFile; fileRef = 937F2556B135DB1FFA4339F72FF08A5C /* ja.lproj */; }; - C8ADB8A15F701A88C476DD0A3D66386E /* zh-Hans.lproj in Resources */ = {isa = PBXBuildFile; fileRef = C7EA47076F3D88179E77D0AEB8A23837 /* zh-Hans.lproj */; }; + C8ADB8A15F701A88C476DD0A3D66386E /* zh-Hans.lproj in Resources */ = {isa = PBXBuildFile; fileRef = B2DFDDBE737621171F95596BA013275B /* zh-Hans.lproj */; }; C8B2A7B002756926645AA7F6D5BEB658 /* FIRCLSThreadArrayOperation.m in Sources */ = {isa = PBXBuildFile; fileRef = BDFD3B6E209739769E4DC08A11737812 /* FIRCLSThreadArrayOperation.m */; }; - C8BFCEDD3B494A2F62E8BBDE90DD77CA /* RCTJavaScriptLoader.h in Headers */ = {isa = PBXBuildFile; fileRef = 849BF04E0AF0DED84B2C5DAF9AB8B368 /* RCTJavaScriptLoader.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C8BFCEDD3B494A2F62E8BBDE90DD77CA /* RCTJavaScriptLoader.h in Headers */ = {isa = PBXBuildFile; fileRef = A7AB3DBD690D8D4D5E19BD91149B0734 /* RCTJavaScriptLoader.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C8C5453ECC1C320B868FAADD729EF910 /* Pods-ShareRocketChatRN-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = FE03B59F2B5A0D48DBC11F41525B18BF /* Pods-ShareRocketChatRN-umbrella.h */; settings = {ATTRIBUTES = (Project, ); }; }; C8DC7F316AA448EFF2750D2E38A093BD /* IOBuf.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 0510874379DA08324AAC3DFC7D322508 /* IOBuf.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - C8E85F98C748E7A16FC78C6B8E773623 /* RCTActionSheetManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 3B2E6FA44C12C34928F7B351816FDC58 /* RCTActionSheetManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C8E9F47BAD370300BAAA1BCDBDF04C7F /* RCTLocalAssetImageLoader.h in Headers */ = {isa = PBXBuildFile; fileRef = EA8C8D79155ED0E61A01100950DC8D66 /* RCTLocalAssetImageLoader.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C90AFF718E45E2616D23519AC26AD09A /* UMAppRecordInterface.h in Headers */ = {isa = PBXBuildFile; fileRef = B3EBDFEF2FCB88FEEBA7C086A33B31BC /* UMAppRecordInterface.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C92BEBB81C19D306E0BD827BE321E6CC /* BSG_KSCrashDoctor.h in Headers */ = {isa = PBXBuildFile; fileRef = 17A1201A1B1373C0D4D869949DD6DC1D /* BSG_KSCrashDoctor.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C8E85F98C748E7A16FC78C6B8E773623 /* RCTActionSheetManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 1250E7DAB23472ECDE2C57774F7BB962 /* RCTActionSheetManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C8E9F47BAD370300BAAA1BCDBDF04C7F /* RCTLocalAssetImageLoader.h in Headers */ = {isa = PBXBuildFile; fileRef = B27A81E987ED9E9F1081B1945A115B47 /* RCTLocalAssetImageLoader.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C90AFF718E45E2616D23519AC26AD09A /* UMAppRecordInterface.h in Headers */ = {isa = PBXBuildFile; fileRef = 1FFB1EF336EF34B57AFE3F89A4A61682 /* UMAppRecordInterface.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C92BEBB81C19D306E0BD827BE321E6CC /* BSG_KSCrashDoctor.h in Headers */ = {isa = PBXBuildFile; fileRef = BDA7A4EDE2DBFAEDE97D7EC063957325 /* BSG_KSCrashDoctor.h */; settings = {ATTRIBUTES = (Project, ); }; }; C935EA88458F6D63A29BBB247BC8EE2A /* UIImage+ForceDecode.m in Sources */ = {isa = PBXBuildFile; fileRef = 9C31B69AFD927F9BE6E1A94CCD9164E1 /* UIImage+ForceDecode.m */; }; - C93D65290516F68BF10DACC8DD358833 /* InspectorInterfaces.h in Headers */ = {isa = PBXBuildFile; fileRef = 975098775A42414F7AAA7795254F9785 /* InspectorInterfaces.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C94909826EB31FE3C9016B6E13C2FCF6 /* UMViewManagerAdapter.m in Sources */ = {isa = PBXBuildFile; fileRef = 972D4F3CE9FD350F5376D01A66A01447 /* UMViewManagerAdapter.m */; }; - C959C30758688B00A7F89AB0065DBF4A /* EXFilePermissionModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 0BEDAED93228C373ADA8F3B7F3DC31E9 /* EXFilePermissionModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C93D65290516F68BF10DACC8DD358833 /* InspectorInterfaces.h in Headers */ = {isa = PBXBuildFile; fileRef = BD9F1AB83C59077E7EE570E9BB4FFC44 /* InspectorInterfaces.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C94909826EB31FE3C9016B6E13C2FCF6 /* UMViewManagerAdapter.m in Sources */ = {isa = PBXBuildFile; fileRef = 763B66916CA792042712037004F90D3A /* UMViewManagerAdapter.m */; }; + C959C30758688B00A7F89AB0065DBF4A /* EXFilePermissionModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 996CA1B2ED72FED261FD9F4EB0C4DF6B /* EXFilePermissionModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; C95C33E8EC0502927BCA940B2DB8C26A /* FIRCLSException.mm in Sources */ = {isa = PBXBuildFile; fileRef = 7CB6B95323D59DD380E20828F800A2BC /* FIRCLSException.mm */; }; C979C8642FE68CAADFB4D908E7CE958A /* FIRHeartbeatInfo.m in Sources */ = {isa = PBXBuildFile; fileRef = 945BA2FD8A0CFBC2569706DC93627D71 /* FIRHeartbeatInfo.m */; }; C97E9BE75C40B8D873C2FED2F30BD9B5 /* PromisesObjC-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = ED9AD358F92ACAE62BD4F17BF59D0D5C /* PromisesObjC-dummy.m */; }; C996524E284ABF18068EFC4E43751D3D /* FlipperKit-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 8A1979B97D255F084F2CDED967B5B6A9 /* FlipperKit-dummy.m */; }; C9CB98A908A38AD2F41310F40A53A5E8 /* MemoryFile.h in Headers */ = {isa = PBXBuildFile; fileRef = BFF6A27CD19A88C167BFDCA21098F735 /* MemoryFile.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C9D91EA8614D66BF4925A1B02C2440DB /* RCTConvert+FIROptions.h in Headers */ = {isa = PBXBuildFile; fileRef = AFCC6D612B0011E96730E8DFD27E6E85 /* RCTConvert+FIROptions.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C9EF392388DE1A342C2D371AD1E2C045 /* RCTTextShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = C042E6B28BC90C905A83E58EF3A2CFFB /* RCTTextShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C9F6C38E098D2DE6E919A5CB02024C3E /* BSG_KSSystemInfo.m in Sources */ = {isa = PBXBuildFile; fileRef = 6DE70F1E9ADAEFC680CB0DF56A0BA796 /* BSG_KSSystemInfo.m */; }; + C9D91EA8614D66BF4925A1B02C2440DB /* RCTConvert+FIROptions.h in Headers */ = {isa = PBXBuildFile; fileRef = A8F0290DFE7AD596019126092B9342BA /* RCTConvert+FIROptions.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C9EF392388DE1A342C2D371AD1E2C045 /* RCTTextShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = A0B44E05599C2819FCABBFC5AD39381B /* RCTTextShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C9F6C38E098D2DE6E919A5CB02024C3E /* BSG_KSSystemInfo.m in Sources */ = {isa = PBXBuildFile; fileRef = 0954E35DA7C8F7318DDA7A1DEBF5BA14 /* BSG_KSSystemInfo.m */; }; CA1B639183072FD3D497C782D81793C6 /* Subscriber.h in Headers */ = {isa = PBXBuildFile; fileRef = FF1CF0CD5E5832E3D28DE78D058DFE0A /* Subscriber.h */; settings = {ATTRIBUTES = (Project, ); }; }; - CA2FC0CC5BA6A8B14C7459EDB5E4AE74 /* RCTDevLoadingView.h in Headers */ = {isa = PBXBuildFile; fileRef = 8780292910933F9818B30E4F0C9F0ECF /* RCTDevLoadingView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + CA2FC0CC5BA6A8B14C7459EDB5E4AE74 /* RCTDevLoadingView.h in Headers */ = {isa = PBXBuildFile; fileRef = 1D6E3201AE259415F5A9F8E59B3AD6A2 /* RCTDevLoadingView.h */; settings = {ATTRIBUTES = (Project, ); }; }; CA358CA581FCD7B53B91B2DD197E9052 /* FireAndForgetResponder.h in Headers */ = {isa = PBXBuildFile; fileRef = 453CC615D2DAE67A94EDFB31C4B2AD85 /* FireAndForgetResponder.h */; settings = {ATTRIBUTES = (Project, ); }; }; CA41ACD4F3E8606385E277133F084FE6 /* FIRLoggerLevel.h in Headers */ = {isa = PBXBuildFile; fileRef = 6B8FDEC15882BDE790AF498EFE474716 /* FIRLoggerLevel.h */; settings = {ATTRIBUTES = (Project, ); }; }; CA4F510964D66B8A8ECE2B6A93084CDE /* GULSwizzler.m in Sources */ = {isa = PBXBuildFile; fileRef = 328CBCB00EDA5D464EAF30F38790A598 /* GULSwizzler.m */; }; - CA67199CAF85BD631A173567EACB114D /* Orientation.m in Sources */ = {isa = PBXBuildFile; fileRef = 366DE628851B630B8F8DB599E4A6EEBA /* Orientation.m */; }; + CA67199CAF85BD631A173567EACB114D /* Orientation.m in Sources */ = {isa = PBXBuildFile; fileRef = B28F5BB228E0E91117E90C901886DB8D /* Orientation.m */; }; CA6E8BCDD8BA3F3A19D47CFD4CA9E6E0 /* msa_macro.h in Headers */ = {isa = PBXBuildFile; fileRef = 1646C0FF650E80A243E24523B702B686 /* msa_macro.h */; settings = {ATTRIBUTES = (Project, ); }; }; - CA72BED4AFAA13C8832631FD16BF4272 /* RNFBCrashlyticsInitProvider.h in Headers */ = {isa = PBXBuildFile; fileRef = BA9E1BC397F2ABDF1DD232F2330432FC /* RNFBCrashlyticsInitProvider.h */; settings = {ATTRIBUTES = (Project, ); }; }; + CA72BED4AFAA13C8832631FD16BF4272 /* RNFBCrashlyticsInitProvider.h in Headers */ = {isa = PBXBuildFile; fileRef = 34669048484382716437ADB968C0C294 /* RNFBCrashlyticsInitProvider.h */; settings = {ATTRIBUTES = (Project, ); }; }; CA78D116295A9800B4B0DCB80CDEC217 /* FIRCLSDwarfUnwind.c in Sources */ = {isa = PBXBuildFile; fileRef = 9E235FB4D7E0FC2F6BB891FE35288C5D /* FIRCLSDwarfUnwind.c */; }; CA7C3CCDF100231E301CFFE195B6FA17 /* utilities.cc in Sources */ = {isa = PBXBuildFile; fileRef = A6A30629E47DB05D80D3CE9BC7C774F1 /* utilities.cc */; settings = {COMPILER_FLAGS = "-Wno-shorten-64-to-32"; }; }; CA7F2680DDBC7A3D04FBED8EF5242924 /* AtomicHashMap.h in Headers */ = {isa = PBXBuildFile; fileRef = E670F463C5CF96DE9B97852EF71F16D8 /* AtomicHashMap.h */; settings = {ATTRIBUTES = (Project, ); }; }; @@ -2740,29 +2728,29 @@ CA976FD6989F3B1EAA13A7F8760C1922 /* FIRCLSURLSessionConfiguration.m in Sources */ = {isa = PBXBuildFile; fileRef = 52B9A4F94F136CF7E36F8C113BC2A8F2 /* FIRCLSURLSessionConfiguration.m */; }; CAA79EA2F883D11144D8FFD4130687FB /* SysStat.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F25F87AA623BA162D848B5B3EC9C60B7 /* SysStat.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; CAB7B5DC1D0EB61717767389C3232654 /* SSLSession.h in Headers */ = {isa = PBXBuildFile; fileRef = 392E85A6858ABE7569F9F5529E2677B4 /* SSLSession.h */; settings = {ATTRIBUTES = (Project, ); }; }; - CABE3F62E437BA1D8178BC3D2168DCA2 /* UIView+Private.h in Headers */ = {isa = PBXBuildFile; fileRef = E5493E3E972597596B1E5C76E44C53C1 /* UIView+Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; - CAC7E02596426939C6B1169EB15CFA6A /* RNEventEmitter.m in Sources */ = {isa = PBXBuildFile; fileRef = 1432C6BB9FEE52615E1C14B4144900FB /* RNEventEmitter.m */; }; + CABE3F62E437BA1D8178BC3D2168DCA2 /* UIView+Private.h in Headers */ = {isa = PBXBuildFile; fileRef = 00D2DF48B6D69A1A3B7C96A665DE7675 /* UIView+Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; + CAC7E02596426939C6B1169EB15CFA6A /* RNEventEmitter.m in Sources */ = {isa = PBXBuildFile; fileRef = 9052DA01A55F1C47B7B92919552AAC8B /* RNEventEmitter.m */; }; CAEA7F7BBB0FE8A1CC81D246E71CF1A6 /* BitVectorCoding.h in Headers */ = {isa = PBXBuildFile; fileRef = 4C9D8E41C9347F5B9DF6F6B812193B39 /* BitVectorCoding.h */; settings = {ATTRIBUTES = (Project, ); }; }; - CB0D74E997007796BD50F14F96295806 /* UMExportedModule.m in Sources */ = {isa = PBXBuildFile; fileRef = 7230370AE5916F587D59EEDF896C55C2 /* UMExportedModule.m */; }; + CB0D74E997007796BD50F14F96295806 /* UMExportedModule.m in Sources */ = {isa = PBXBuildFile; fileRef = 860ADC7FE10C13203FCB23B98F88A5F5 /* UMExportedModule.m */; }; CB3A8EFBD7D962BB9B59F570F76E4B71 /* FIRCLSOperation.h in Headers */ = {isa = PBXBuildFile; fileRef = 6A5A3EC7FB31A95B5849F67973BBE458 /* FIRCLSOperation.h */; settings = {ATTRIBUTES = (Project, ); }; }; - CB4E28DDB810F86F6D34354BA9679305 /* React-jsiexecutor-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = E09E7AB54847BAC9FC2CC0A73B138BFD /* React-jsiexecutor-dummy.m */; }; - CB53CB8940FA626EDC9DA002C71F0199 /* RNCAppearanceProviderManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 25264852B45BDFBD98B571B5855691FC /* RNCAppearanceProviderManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - CB6F4DE004B91EF2022F808111AFA9BA /* RCTTypeSafety-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 38312F520B2C0F50CE500EB026C95A1C /* RCTTypeSafety-dummy.m */; }; + CB4E28DDB810F86F6D34354BA9679305 /* React-jsiexecutor-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = DBFB294D09E02F1A9071CDAF06E138EF /* React-jsiexecutor-dummy.m */; }; + CB53CB8940FA626EDC9DA002C71F0199 /* RNCAppearanceProviderManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 1453AA3D21916244EA043AC1D8D0E68B /* RNCAppearanceProviderManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + CB6F4DE004B91EF2022F808111AFA9BA /* RCTTypeSafety-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = E0B9144275C10AF7D0A6A184B9D5ACEB /* RCTTypeSafety-dummy.m */; }; CB70CA7763BD4D2B937C291757D03F8B /* UIView+WebCacheOperation.h in Headers */ = {isa = PBXBuildFile; fileRef = 4A95CCF2E6F533CAA1CDFC6D5E9FD390 /* UIView+WebCacheOperation.h */; settings = {ATTRIBUTES = (Project, ); }; }; CB72935343A22E6661702C05820F6ADE /* FIRConfiguration.h in Headers */ = {isa = PBXBuildFile; fileRef = 32F0C2598813B8577CA20426C6F8C906 /* FIRConfiguration.h */; settings = {ATTRIBUTES = (Project, ); }; }; CB7AF504CF55228FE97BE27D1AA84EB7 /* TcpConnectionFactory.h in Headers */ = {isa = PBXBuildFile; fileRef = E16514CEAEAB9670F41BC49A1B951351 /* TcpConnectionFactory.h */; settings = {ATTRIBUTES = (Project, ); }; }; - CBA0CD4EAFFE8DF9F513B94A1BA483F8 /* RCTBaseTextShadowView.m in Sources */ = {isa = PBXBuildFile; fileRef = 628A48282BAAAE6B0C755DE30A1A9626 /* RCTBaseTextShadowView.m */; }; - CC038B6CC87CFEDE744695A321D8AE5B /* jsi-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 0EDF185DE43B85FF16D5D778476B8FB7 /* jsi-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - CC06B3F867126F882C24D697CAF07276 /* RCTBridge.h in Headers */ = {isa = PBXBuildFile; fileRef = D041B3D0518D80877DEAF8464CD1ADF3 /* RCTBridge.h */; settings = {ATTRIBUTES = (Project, ); }; }; - CC2AB736007F0715B7BDD403B7D738E6 /* UMCore-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 19222004B82B95179F0AD56041CA0F2A /* UMCore-dummy.m */; }; - CC2E7A5892E595B5BA476ED0030918DC /* EXAudioRecordingPermissionRequester.h in Headers */ = {isa = PBXBuildFile; fileRef = FA9255819F526C93F918A5D638E130A5 /* EXAudioRecordingPermissionRequester.h */; settings = {ATTRIBUTES = (Project, ); }; }; + CBA0CD4EAFFE8DF9F513B94A1BA483F8 /* RCTBaseTextShadowView.m in Sources */ = {isa = PBXBuildFile; fileRef = 927D77391B15AFCED6611B2DC1F6AC61 /* RCTBaseTextShadowView.m */; }; + CC038B6CC87CFEDE744695A321D8AE5B /* jsi-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = EBB808858EC966E58ED90089C9C0409A /* jsi-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + CC06B3F867126F882C24D697CAF07276 /* RCTBridge.h in Headers */ = {isa = PBXBuildFile; fileRef = 0E611D80D06D1A7B2E7E0828F2CB02BE /* RCTBridge.h */; settings = {ATTRIBUTES = (Project, ); }; }; + CC2AB736007F0715B7BDD403B7D738E6 /* UMCore-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 7D456170E0B84B48E6B47976D2AE811D /* UMCore-dummy.m */; }; + CC2E7A5892E595B5BA476ED0030918DC /* EXAudioRecordingPermissionRequester.h in Headers */ = {isa = PBXBuildFile; fileRef = 743FB0BE232CB1494BF0E5BA46B04615 /* EXAudioRecordingPermissionRequester.h */; settings = {ATTRIBUTES = (Project, ); }; }; CCB6F59AABF0E21BC0F9A4A9021C9181 /* alpha_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = 04C6EFDE83470C158A2170DECD738DEB /* alpha_enc.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - CCB86DDE799FFFD82D6A82D2C74B0FAB /* RNFBVersion.h in Headers */ = {isa = PBXBuildFile; fileRef = FBB2FE1FA17DF5D5B67E9F37D47EDDBA /* RNFBVersion.h */; settings = {ATTRIBUTES = (Project, ); }; }; - CCC017781F5276E57F6FBABB37AF3077 /* BSG_KSSysCtl.h in Headers */ = {isa = PBXBuildFile; fileRef = B857BE38CB800BD45374F28A59CDA78C /* BSG_KSSysCtl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + CCB86DDE799FFFD82D6A82D2C74B0FAB /* RNFBVersion.h in Headers */ = {isa = PBXBuildFile; fileRef = 68C18BFAB40D1AC0B74712801B1BF7DC /* RNFBVersion.h */; settings = {ATTRIBUTES = (Project, ); }; }; + CCC017781F5276E57F6FBABB37AF3077 /* BSG_KSSysCtl.h in Headers */ = {isa = PBXBuildFile; fileRef = C0153177194E7A1F169E6329754AFD57 /* BSG_KSSysCtl.h */; settings = {ATTRIBUTES = (Project, ); }; }; CCD493CA845E56EFFB36328003F1B60A /* LockTraits.h in Headers */ = {isa = PBXBuildFile; fileRef = A13D90A8141DAE1C808F1D456817890E /* LockTraits.h */; settings = {ATTRIBUTES = (Project, ); }; }; CCE2222A3A80A75225E2F7E51A4BF168 /* UIImage+CropRotate.m in Sources */ = {isa = PBXBuildFile; fileRef = 49B2852213173F5CFF711D59E572336C /* UIImage+CropRotate.m */; }; - CCE8FCBC722FAF50E1207923BB9E831C /* EXFileSystem.m in Sources */ = {isa = PBXBuildFile; fileRef = 9BB8A71916E82392E9B0197A36C12033 /* EXFileSystem.m */; }; - CCFD6133C6A15F31E4F17B8EB6E3DDC3 /* RCTConvert.h in Headers */ = {isa = PBXBuildFile; fileRef = 1CDB7565B8CB41198F2CCE761B6460E3 /* RCTConvert.h */; settings = {ATTRIBUTES = (Project, ); }; }; + CCE8FCBC722FAF50E1207923BB9E831C /* EXFileSystem.m in Sources */ = {isa = PBXBuildFile; fileRef = B47B992DBDF6F13F5914DB2903224132 /* EXFileSystem.m */; }; + CCFD6133C6A15F31E4F17B8EB6E3DDC3 /* RCTConvert.h in Headers */ = {isa = PBXBuildFile; fileRef = 6F2E6313BF81DAAF1374B78917E08A51 /* RCTConvert.h */; settings = {ATTRIBUTES = (Project, ); }; }; CD06F8DF31B965A09D35AC883E850127 /* GDTCORUploadCoordinator.m in Sources */ = {isa = PBXBuildFile; fileRef = F6A7DF13027A944C7B28667B6B41ED7C /* GDTCORUploadCoordinator.m */; }; CD3AD11A8C4C775115560027F7AD3338 /* GDTCCTNanopbHelpers.m in Sources */ = {isa = PBXBuildFile; fileRef = 9EC316318A17B21512726BC118D88BED /* GDTCCTNanopbHelpers.m */; }; CD46B808BEAB53C8AEC3529826B8551F /* Assume.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 667F0DDA57E645FF1582C17C842878BE /* Assume.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; @@ -2772,104 +2760,103 @@ CD804FB79353F1D929886460D8F8817E /* RSocketConnectionEvents.h in Headers */ = {isa = PBXBuildFile; fileRef = 6CFBF16997CAB2F677E714F1C5AC2884 /* RSocketConnectionEvents.h */; settings = {ATTRIBUTES = (Project, ); }; }; CDA2E0586EEA705D076F557E182B0848 /* FrameTransportImpl.h in Headers */ = {isa = PBXBuildFile; fileRef = 0A05AF9229BB81A6A96C343D99EFA66D /* FrameTransportImpl.h */; settings = {ATTRIBUTES = (Project, ); }; }; CDAC7C662991CE550BB6F080249D45DF /* FirebaseCore.h in Headers */ = {isa = PBXBuildFile; fileRef = 4FDD2B0099449721B413A98305EC1602 /* FirebaseCore.h */; settings = {ATTRIBUTES = (Project, ); }; }; - CDBF9E5042AA209F0DC26458C3E0A33A /* EXConstants.h in Headers */ = {isa = PBXBuildFile; fileRef = DDE577EF29EBB9F6E2DC8FBF59646752 /* EXConstants.h */; settings = {ATTRIBUTES = (Project, ); }; }; + CDBF9E5042AA209F0DC26458C3E0A33A /* EXConstants.h in Headers */ = {isa = PBXBuildFile; fileRef = 80C0F9D8F07EF1FC795CD44A602D9EFA /* EXConstants.h */; settings = {ATTRIBUTES = (Project, ); }; }; CDE265747CB7B6A680D6189792C377CB /* json_pointer.h in Headers */ = {isa = PBXBuildFile; fileRef = 010C2584F22DD9546DF20B9967FF8F3C /* json_pointer.h */; settings = {ATTRIBUTES = (Project, ); }; }; CDE2F691E96FDD1A37506120DDC069C0 /* FIRCLSProcessReportOperation.h in Headers */ = {isa = PBXBuildFile; fileRef = 26B3C514048574CA7CDF45FBCFB6C059 /* FIRCLSProcessReportOperation.h */; settings = {ATTRIBUTES = (Project, ); }; }; CE018EF8459E8FBF8A9D9D34C2EC78FF /* GDTCORTransport.h in Headers */ = {isa = PBXBuildFile; fileRef = 9ED083F33A0F5839CEF34A1AAAA3E985 /* GDTCORTransport.h */; settings = {ATTRIBUTES = (Project, ); }; }; CE0C6EB5F386C798A10DE6CF9D9D3163 /* SKHighlightOverlay.h in Headers */ = {isa = PBXBuildFile; fileRef = 3B9018C017CE1F173655CFDBF3C9505A /* SKHighlightOverlay.h */; settings = {ATTRIBUTES = (Project, ); }; }; CE240EA868180FE4ECA7DDFF4A387514 /* SDWebImageDownloaderConfig.h in Headers */ = {isa = PBXBuildFile; fileRef = E4AC264BBD9EB4AF306F61129B26C7A6 /* SDWebImageDownloaderConfig.h */; settings = {ATTRIBUTES = (Project, ); }; }; - CE246B49EC4C8A293BE0DA3A8282AB7F /* QBImagePickerController.m in Sources */ = {isa = PBXBuildFile; fileRef = E3BE8FB9241672CD5414EBAB90C64914 /* QBImagePickerController.m */; }; - CE24C7E45F367E41E35E4146680AFF9C /* RCTFPSGraph.h in Headers */ = {isa = PBXBuildFile; fileRef = 0E83C6D92B0B8522BAB0BF0A43A41462 /* RCTFPSGraph.h */; settings = {ATTRIBUTES = (Project, ); }; }; - CE25C95BBF3F1E5830A8EF8E1F7A9929 /* RootView.m in Sources */ = {isa = PBXBuildFile; fileRef = B42DE144B58B9C676D6CEB7AA9A1956D /* RootView.m */; }; + CE246B49EC4C8A293BE0DA3A8282AB7F /* QBImagePickerController.m in Sources */ = {isa = PBXBuildFile; fileRef = 826BC97EA03E4B7720A396673C0ABCE6 /* QBImagePickerController.m */; }; + CE24C7E45F367E41E35E4146680AFF9C /* RCTFPSGraph.h in Headers */ = {isa = PBXBuildFile; fileRef = 79CE403031812C4DA38A52DFBAB12B83 /* RCTFPSGraph.h */; settings = {ATTRIBUTES = (Project, ); }; }; + CE25C95BBF3F1E5830A8EF8E1F7A9929 /* RootView.m in Sources */ = {isa = PBXBuildFile; fileRef = E35CE8EFF7AF2E155F9243DADCB3B0B9 /* RootView.m */; }; CE3A139FD95866808065114C3CE2F2F5 /* Cast.h in Headers */ = {isa = PBXBuildFile; fileRef = 075ECBF84686B11D2B7FB511729E0BA8 /* Cast.h */; settings = {ATTRIBUTES = (Project, ); }; }; CE5150E60AB674AB60524EF055A64D8D /* ConcurrentBitSet.h in Headers */ = {isa = PBXBuildFile; fileRef = FCBB2CEF07D023E0AAA53383EE462F01 /* ConcurrentBitSet.h */; settings = {ATTRIBUTES = (Project, ); }; }; CE535C17252BAFF7F01344DCD59DE2AD /* AsyncServerSocket.h in Headers */ = {isa = PBXBuildFile; fileRef = 100767696652CE6868B74285BA9629E2 /* AsyncServerSocket.h */; settings = {ATTRIBUTES = (Project, ); }; }; - CE535CDEB9D6DBBB9E70C19F3BE1369E /* RNCSafeAreaViewMode.h in Headers */ = {isa = PBXBuildFile; fileRef = 92CF9D8485DEFCA6FBF506106721C94B /* RNCSafeAreaViewMode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - CE7D2EC4BC4465158C1D7100CEB349A2 /* SharedProxyCxxModule.h in Headers */ = {isa = PBXBuildFile; fileRef = E388E2007F476ED07686865426FB85F5 /* SharedProxyCxxModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; + CE535CDEB9D6DBBB9E70C19F3BE1369E /* RNCSafeAreaViewMode.h in Headers */ = {isa = PBXBuildFile; fileRef = C1793DABBD4996169EA4A95C26FABD8F /* RNCSafeAreaViewMode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + CE7D2EC4BC4465158C1D7100CEB349A2 /* SharedProxyCxxModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 8FE9000EA3825958DF2C2198FD2C9EAD /* SharedProxyCxxModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; CE8304B7838F36B6DC0F8915DF399A22 /* FIRCLSUserLogging.h in Headers */ = {isa = PBXBuildFile; fileRef = 61876661DE00A6E1CCFEF073CF75F138 /* FIRCLSUserLogging.h */; settings = {ATTRIBUTES = (Project, ); }; }; CE92DF0BA0CC96BD819D5395E3F5D4AB /* NSBezierPath+SDRoundedCorners.h in Headers */ = {isa = PBXBuildFile; fileRef = EA6AE060BDB09ADB16FC1E1EED922690 /* NSBezierPath+SDRoundedCorners.h */; settings = {ATTRIBUTES = (Project, ); }; }; CE9BD8128FA43A9D3B12D8AD8D6A49CA /* CodedInputDataCrypt_OSX.cpp in Sources */ = {isa = PBXBuildFile; fileRef = C6114C15E0FCBBC21B34CB75B15B315C /* CodedInputDataCrypt_OSX.cpp */; settings = {COMPILER_FLAGS = "-x objective-c++ -fno-objc-arc"; }; }; CEAC4026292553F61925463F50AAD811 /* StreamsWriter.cpp in Sources */ = {isa = PBXBuildFile; fileRef = CB34B02012E0B2B4A50A5D88AB1ECA41 /* StreamsWriter.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0 -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - CEC319269D7BD620F821C9FD9E36E089 /* RCTCxxMethod.h in Headers */ = {isa = PBXBuildFile; fileRef = 7735EA531CE7D0CE05B9DCC8B9D002AC /* RCTCxxMethod.h */; settings = {ATTRIBUTES = (Project, ); }; }; - CEDAFDB3B3EA3DCE1E62FF82FCD516E3 /* RNFetchBlobProgress.h in Headers */ = {isa = PBXBuildFile; fileRef = AAC3E73845BB5A5E98B785C141C1A974 /* RNFetchBlobProgress.h */; settings = {ATTRIBUTES = (Project, ); }; }; + CEC319269D7BD620F821C9FD9E36E089 /* RCTCxxMethod.h in Headers */ = {isa = PBXBuildFile; fileRef = A12E12EE8EAF7671F7B4E3B99567F41A /* RCTCxxMethod.h */; settings = {ATTRIBUTES = (Project, ); }; }; CEE0D3B7FFD05BE2465C81B2684F976A /* SDWebImageCompat.h in Headers */ = {isa = PBXBuildFile; fileRef = 34CA3EAB8271BD27AC665FABD6262137 /* SDWebImageCompat.h */; settings = {ATTRIBUTES = (Project, ); }; }; - CEF6DC752682E4243AC785B96B9158C4 /* RNBridgeModule.m in Sources */ = {isa = PBXBuildFile; fileRef = BBB0CB6A13A1AB1E0718E673AB0288FF /* RNBridgeModule.m */; }; + CEF6DC752682E4243AC785B96B9158C4 /* RNBridgeModule.m in Sources */ = {isa = PBXBuildFile; fileRef = 924751BF042ACF3265E90211373C25C8 /* RNBridgeModule.m */; }; CEFA85387A5815500FDB776E71D8925D /* SDAssociatedObject.h in Headers */ = {isa = PBXBuildFile; fileRef = 4319295AF4FC4DA2D372A7A2242DBC0B /* SDAssociatedObject.h */; settings = {ATTRIBUTES = (Project, ); }; }; CF0F0EE11DEB7BDA2FB659D3F65ADE64 /* UIImage+GIF.h in Headers */ = {isa = PBXBuildFile; fileRef = 362E6DF70DDF44613FAF8E9C07757DA9 /* UIImage+GIF.h */; settings = {ATTRIBUTES = (Project, ); }; }; - CF110BF21690E9F07E17AD337B066562 /* RCTLayoutAnimation.m in Sources */ = {isa = PBXBuildFile; fileRef = 8235619D63A4D64D2653404D7CE56B96 /* RCTLayoutAnimation.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + CF110BF21690E9F07E17AD337B066562 /* RCTLayoutAnimation.m in Sources */ = {isa = PBXBuildFile; fileRef = D5D5255D1B7C92216193346313BCD7A1 /* RCTLayoutAnimation.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; CF28B6D2C7CB7060E1B6ED070988351A /* FBLPromise+Testing.m in Sources */ = {isa = PBXBuildFile; fileRef = AF02C242465A72DCBCF36847EA043397 /* FBLPromise+Testing.m */; }; - CF2D3F2E3A348ADF3DBD9EF35343E212 /* EXAV-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = AA3E15764E9368FDD8CF2727250DAC00 /* EXAV-dummy.m */; }; + CF2D3F2E3A348ADF3DBD9EF35343E212 /* EXAV-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 7F2EEEA4D466CF66AE76A8474AD38061 /* EXAV-dummy.m */; }; CF414AEB4CBAD8DF30894113E61CD76B /* AtomicLinkedList.h in Headers */ = {isa = PBXBuildFile; fileRef = 2D99345BBB430917AEB5318D87DBCE64 /* AtomicLinkedList.h */; settings = {ATTRIBUTES = (Project, ); }; }; CF44D440631F5B8957AD89ADED1F1D10 /* FlipperDiagnosticsViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = 00AA30777DD6CC881D652F611A1BBF07 /* FlipperDiagnosticsViewController.h */; settings = {ATTRIBUTES = (Project, ); }; }; - CF49B15B413D33BF83043EE3285D408A /* RNFBVersion.m in Sources */ = {isa = PBXBuildFile; fileRef = A75FE2F6701004FDD87621AEB89BF0AE /* RNFBVersion.m */; }; + CF49B15B413D33BF83043EE3285D408A /* RNFBVersion.m in Sources */ = {isa = PBXBuildFile; fileRef = C6198FE4A7665EA266F5F058ECC857E0 /* RNFBVersion.m */; }; CF5355174AE8A3C6572EAF4F036E5C6F /* NetOps.cpp in Sources */ = {isa = PBXBuildFile; fileRef = C1D072B63D09454F7C7CA56040E8109A /* NetOps.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; CF61BC82A77EAABC5ECA0BB0E57983C9 /* UniqueInstance.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F381A046A86C1216B2F66D645A3AED0D /* UniqueInstance.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; CF951D21CFD9031FE384D48969D63034 /* MacAddress.h in Headers */ = {isa = PBXBuildFile; fileRef = 14A6CF593FBE73A2A350E290B504E4F1 /* MacAddress.h */; settings = {ATTRIBUTES = (Project, ); }; }; CFB0EC291403E07E9728A8ABA7E36129 /* GULKeychainStorage.h in Headers */ = {isa = PBXBuildFile; fileRef = 048017DCC836D969DCB47524086360F8 /* GULKeychainStorage.h */; settings = {ATTRIBUTES = (Project, ); }; }; - CFB845C9C4AA6311EC16A3907F537C37 /* NativeToJsBridge.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 486DE2CD5FCBA4044A34B0A390647838 /* NativeToJsBridge.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + CFB845C9C4AA6311EC16A3907F537C37 /* NativeToJsBridge.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 6F23D82CBEDB822F248CFC7407393DE6 /* NativeToJsBridge.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; CFEA96EBFA4939A78536A1C1A6DD63D7 /* lossless_sse2.c in Sources */ = {isa = PBXBuildFile; fileRef = 159803000B055E9C735853D85E9ABD6F /* lossless_sse2.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - D0108264911D29A92E4A0F784F7D000A /* UIResponder+FirstResponder.h in Headers */ = {isa = PBXBuildFile; fileRef = 3889B761F61E92B86DAC2BC855208080 /* UIResponder+FirstResponder.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D017A2D31E3E20C791F6F44D7A01B8A6 /* RNCSafeAreaProviderManager.m in Sources */ = {isa = PBXBuildFile; fileRef = A02E3E4C96E1FCA8111B57A57848B543 /* RNCSafeAreaProviderManager.m */; }; + D0108264911D29A92E4A0F784F7D000A /* UIResponder+FirstResponder.h in Headers */ = {isa = PBXBuildFile; fileRef = 56894A1E0869F51CAF3052132E795BE1 /* UIResponder+FirstResponder.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D017A2D31E3E20C791F6F44D7A01B8A6 /* RNCSafeAreaProviderManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 0F86FFDB0F32A0B801112AA1324E48E7 /* RNCSafeAreaProviderManager.m */; }; D02983F9F8E968E99F28AC389A5C34EF /* FlipperPlugin.h in Headers */ = {isa = PBXBuildFile; fileRef = 97110259DEEEC959980EF0B409E72C19 /* FlipperPlugin.h */; settings = {ATTRIBUTES = (Project, ); }; }; D034FC411932B8C3C8F83C7E9D7687EA /* RangeCommon.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 0FA1A6B4E26C0F22B4D438DA1B41F034 /* RangeCommon.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; D04EF723ADBC7EEFD75A13EBAE5DFF93 /* MMKV_OSX.h in Headers */ = {isa = PBXBuildFile; fileRef = 21E0B16CB42C761661095F417C073820 /* MMKV_OSX.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D0A47FB0918164AE46084571A36FAB5E /* BugsnagReactNative.m in Sources */ = {isa = PBXBuildFile; fileRef = 6E300BF7F49E97B07CECDE4B42623983 /* BugsnagReactNative.m */; }; - D0A86616D5BBB90D996947E2E4A39F89 /* RCTDisplayLink.m in Sources */ = {isa = PBXBuildFile; fileRef = F72EC0773F19BCCA5A601D8F80BFAB38 /* RCTDisplayLink.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + D0A47FB0918164AE46084571A36FAB5E /* BugsnagReactNative.m in Sources */ = {isa = PBXBuildFile; fileRef = D96667B0CB8929D70CE32E41D9594035 /* BugsnagReactNative.m */; }; + D0A86616D5BBB90D996947E2E4A39F89 /* RCTDisplayLink.m in Sources */ = {isa = PBXBuildFile; fileRef = 495D717A01CA75C26F0E81EFDDE53B1B /* RCTDisplayLink.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; D0CC2110764169A031BB05D078F35A7F /* AsyncUDPServerSocket.h in Headers */ = {isa = PBXBuildFile; fileRef = AF025C179AC97F527B225FA45CC41CA4 /* AsyncUDPServerSocket.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D0D28C9CEC77D91A54DB5C41C9AED752 /* RCTRedBox.mm in Sources */ = {isa = PBXBuildFile; fileRef = 519F111A09359CF926879359B5087EDE /* RCTRedBox.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + D0D28C9CEC77D91A54DB5C41C9AED752 /* RCTRedBox.mm in Sources */ = {isa = PBXBuildFile; fileRef = 709B74F86C9DD5A0882AFFF117A95AD2 /* RCTRedBox.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; D0E3DBC2AC46A8D0D2E381F8644DF514 /* FIROptions.m in Sources */ = {isa = PBXBuildFile; fileRef = 3CADEB74AB3984448F4164432656C152 /* FIROptions.m */; }; - D0EBA27AEF7474B70F4BEA01687B42A4 /* RCTImageDataDecoder.h in Headers */ = {isa = PBXBuildFile; fileRef = 2D56973D72EFFB2983A3D55E085B3C2F /* RCTImageDataDecoder.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D0EBA27AEF7474B70F4BEA01687B42A4 /* RCTImageDataDecoder.h in Headers */ = {isa = PBXBuildFile; fileRef = 46CE1E433709DA258BD09643EE4944CC /* RCTImageDataDecoder.h */; settings = {ATTRIBUTES = (Project, ); }; }; D1249775C6575028B25BE687B4F0C982 /* FKUserDefaultsPlugin.m in Sources */ = {isa = PBXBuildFile; fileRef = C788DF693D5554D8D114BACE82CA597E /* FKUserDefaultsPlugin.m */; settings = {COMPILER_FLAGS = "-DDEBUG=1 -DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0"; }; }; D12DCE3C23ABB5C83BDAA983477883FE /* FIRAppInternal.h in Headers */ = {isa = PBXBuildFile; fileRef = B903A67830E160EE0EF8C295A48716BE /* FIRAppInternal.h */; settings = {ATTRIBUTES = (Project, ); }; }; D142D080A3D2C709F861A423CEFB0461 /* GoogleDataTransportCCTSupport-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 514821ADBB2F303EDBB9D58B2B41EE75 /* GoogleDataTransportCCTSupport-dummy.m */; }; D15B1D25AFE4F0CB60215790F195A38D /* quant_levels_utils.c in Sources */ = {isa = PBXBuildFile; fileRef = 484F863453629E403018AB42730698E7 /* quant_levels_utils.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - D186229DC550CEDA1B9D8412530B56A3 /* EXFileSystemLocalFileHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = FE789293614651E0AFF0065BE7CD5A36 /* EXFileSystemLocalFileHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D18F1AA016A320DF73EF1C46D21A9004 /* RCTSurfaceView.mm in Sources */ = {isa = PBXBuildFile; fileRef = 631536E35AEB6990AE1B373DD9B0DB26 /* RCTSurfaceView.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + D186229DC550CEDA1B9D8412530B56A3 /* EXFileSystemLocalFileHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 1592ACCCFF77D440050B899BA5BA5ED0 /* EXFileSystemLocalFileHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D18F1AA016A320DF73EF1C46D21A9004 /* RCTSurfaceView.mm in Sources */ = {isa = PBXBuildFile; fileRef = 1206F6B5498E2079C6C150892CE17234 /* RCTSurfaceView.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; D199E0C3F8DF1441C00AAAE2E597A99B /* Future-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = C7246FCAC6B53FE1B9FDDBAFE8F13490 /* Future-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; D1A587C0388303098B385EE306BFD2EC /* FIRComponentContainer.h in Headers */ = {isa = PBXBuildFile; fileRef = A69354C4F0ADF78BC18781EEEC84C7E2 /* FIRComponentContainer.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D1BA931BA03A98DC16F4F404CD1C0D82 /* React-jsi-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 592DD630DCEE777C58C1EED2A83E5781 /* React-jsi-dummy.m */; }; + D1BA931BA03A98DC16F4F404CD1C0D82 /* React-jsi-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 61FA1904373226CD5BA7427B930E8D20 /* React-jsi-dummy.m */; }; D1BD97AD13B56426DAA26A2468DA440C /* SDImageAssetManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 564CA8699EEB111B2ED88494E0150D5F /* SDImageAssetManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; D1C6F6705A1FE1010070DCC4A3102D3F /* Foreach.h in Headers */ = {isa = PBXBuildFile; fileRef = CBE24AE4D688274C453602C8841B3C2C /* Foreach.h */; settings = {ATTRIBUTES = (Project, ); }; }; D1DEC09BFB8020649801F18884526D9D /* SDImageCoder.m in Sources */ = {isa = PBXBuildFile; fileRef = E204630DEFB7ADAB35464A0408D565E9 /* SDImageCoder.m */; }; - D1EFA7416105B57A185CC4519F08C222 /* JSExecutor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 516082792493DFAFEC6A557841883134 /* JSExecutor.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + D1EFA7416105B57A185CC4519F08C222 /* JSExecutor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 85CD28A456C68B8603089211CD0FBFC2 /* JSExecutor.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; D20CB1F465B6DEC72F0A0FB85325E552 /* yuv.c in Sources */ = {isa = PBXBuildFile; fileRef = 96ED6D0B147039A5268A285F7593E9D4 /* yuv.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - D22B678E28A081430F5E92AAF0771B67 /* RCTNetworkPlugins.mm in Sources */ = {isa = PBXBuildFile; fileRef = 4619B5C4361835F94670FBF257AD04A2 /* RCTNetworkPlugins.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + D22B678E28A081430F5E92AAF0771B67 /* RCTNetworkPlugins.mm in Sources */ = {isa = PBXBuildFile; fileRef = A4FAF9DF220421D9D23C351781B0CCEE /* RCTNetworkPlugins.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; D290C257228A28FCC0A9CDE248452DDA /* MMKVMetaInfo.hpp in Headers */ = {isa = PBXBuildFile; fileRef = 7EF7838F5C51D7F6A7D9CFA412DBC1F5 /* MMKVMetaInfo.hpp */; settings = {ATTRIBUTES = (Project, ); }; }; - D29F28485DEE738B6FA3CCF80F59FAB2 /* RNLongPressHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = C0E4144BC58F74404DB8E91C49EBA0F1 /* RNLongPressHandler.m */; }; + D29F28485DEE738B6FA3CCF80F59FAB2 /* RNLongPressHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = 57BA216B1389E78492600FAD2A931D2A /* RNLongPressHandler.m */; }; D2A983A6F32EA1B5199960179F79261B /* SDImageCodersManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 508445BC9C1FB138C10A18EB86527087 /* SDImageCodersManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D2BEC0C591A1E9AB03001E1C376385E4 /* RCTBundleURLProvider.m in Sources */ = {isa = PBXBuildFile; fileRef = BAC2229CCF7F0A0550B5E0DC8FDDC0AF /* RCTBundleURLProvider.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + D2BEC0C591A1E9AB03001E1C376385E4 /* RCTBundleURLProvider.m in Sources */ = {isa = PBXBuildFile; fileRef = 8E6B1FC9174FFA5D5473016481D2A010 /* RCTBundleURLProvider.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; D2EF73B37E88FF241247DD0776642D6F /* Subscription.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BD37875EF15239DF7C195EA18DC9ECC8 /* Subscription.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0 -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - D3050C7C6584DE54F221A91A11DAB55F /* RCTImageLoader.h in Headers */ = {isa = PBXBuildFile; fileRef = D8BC2AA78AC028904E04F17D4307FB92 /* RCTImageLoader.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D32641F67070054A3F0AA83E3462C742 /* RCTScrollContentViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = DDC716AC6C440336F5C3AE88DC61EB85 /* RCTScrollContentViewManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - D33FA15C347D56E40DF4094E46FD25B8 /* YGNode.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2699322CEBD596B814121EEBAF62F5BC /* YGNode.cpp */; settings = {COMPILER_FLAGS = "-fno-omit-frame-pointer -fexceptions -Wall -Werror -std=c++1y -fPIC -fno-objc-arc"; }; }; + D3050C7C6584DE54F221A91A11DAB55F /* RCTImageLoader.h in Headers */ = {isa = PBXBuildFile; fileRef = AD426C18D4F5103D4315CD43CB77DE23 /* RCTImageLoader.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D32641F67070054A3F0AA83E3462C742 /* RCTScrollContentViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = E744B8569EF60BC8E2E2075A062CFFA2 /* RCTScrollContentViewManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + D33FA15C347D56E40DF4094E46FD25B8 /* YGNode.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 5A369F3FA666825DE880F424C909C974 /* YGNode.cpp */; settings = {COMPILER_FLAGS = "-fno-omit-frame-pointer -fexceptions -Wall -Werror -std=c++1y -fPIC -fno-objc-arc"; }; }; D3461F25CB195DE12347CFB156107C31 /* Payload.cpp in Sources */ = {isa = PBXBuildFile; fileRef = DA1148F902A42412AFD1269913C9C7BC /* Payload.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0 -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - D3579009269FEC6A34542333B942C9FB /* UMExportedModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 5FD278A54845C4E277E53EEE9948F093 /* UMExportedModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D368D48DCAC4E19BA3271451541AA811 /* RCTImageEditingManager.mm in Sources */ = {isa = PBXBuildFile; fileRef = 76848F6A8FBEF5989A2C3D9184C28D67 /* RCTImageEditingManager.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; - D38E6C4D9669114FBD6B9560CC87F16F /* RCTParserUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = 23A1D9B9BBAF772E9D698A408B44226B /* RCTParserUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D3579009269FEC6A34542333B942C9FB /* UMExportedModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 8B543C70BF53EF239BB3CF1359E80C83 /* UMExportedModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D368D48DCAC4E19BA3271451541AA811 /* RCTImageEditingManager.mm in Sources */ = {isa = PBXBuildFile; fileRef = 181E97046A4BEE5B6B92EF971D0CD2AE /* RCTImageEditingManager.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + D38E6C4D9669114FBD6B9560CC87F16F /* RCTParserUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = 50E330AF398B6E19F80FB6585541C4CB /* RCTParserUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; D39505AA86E323C96932E3A04B1A0351 /* alpha_processing.c in Sources */ = {isa = PBXBuildFile; fileRef = BCBB18C5F6F1839997C6A049C0D897DA /* alpha_processing.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; D3A5D5097DE0B5618568A96388A62D00 /* FIRInstallationsIIDStore.m in Sources */ = {isa = PBXBuildFile; fileRef = FE4D8A84FB7AA243383EB8997F046C3D /* FIRInstallationsIIDStore.m */; }; D3B16597778203DE6EDD2C915FC363E2 /* yuv_sse2.c in Sources */ = {isa = PBXBuildFile; fileRef = C9BB88A0911A06DA7814B56AB738E5E1 /* yuv_sse2.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - D3B5E7CD68B29084575732B1464A24CD /* pl.lproj in Resources */ = {isa = PBXBuildFile; fileRef = 19A82C65D20BC59DF5114BAFE3F18810 /* pl.lproj */; }; + D3B5E7CD68B29084575732B1464A24CD /* pl.lproj in Resources */ = {isa = PBXBuildFile; fileRef = A32C495876A6D67DA542344F3BBAD36D /* pl.lproj */; }; D3B75426ABB5BF990386B02043B53B75 /* FIRCLSHost.m in Sources */ = {isa = PBXBuildFile; fileRef = 838AA08C8AF575070CEF28CED0DD9667 /* FIRCLSHost.m */; }; - D3BBAAEC1BB62E99D63C32C6742A60ED /* UMLogManager.m in Sources */ = {isa = PBXBuildFile; fileRef = C5D601B7EBBF05100560CFD1E220236A /* UMLogManager.m */; }; - D3BC17F5F269A1DD35176BE79D74F2C4 /* RCTHTTPRequestHandler.mm in Sources */ = {isa = PBXBuildFile; fileRef = 2470AB757FBFC958CA8AFA7B924E6A36 /* RCTHTTPRequestHandler.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; - D3BE4AC7988B7A740B423AF784E299E1 /* ARTSurfaceView.m in Sources */ = {isa = PBXBuildFile; fileRef = D408A6090D5A52F2EAAD3BB6A15B2E68 /* ARTSurfaceView.m */; }; + D3BBAAEC1BB62E99D63C32C6742A60ED /* UMLogManager.m in Sources */ = {isa = PBXBuildFile; fileRef = BF90940C58FE52ED35CD05C8BF011C77 /* UMLogManager.m */; }; + D3BC17F5F269A1DD35176BE79D74F2C4 /* RCTHTTPRequestHandler.mm in Sources */ = {isa = PBXBuildFile; fileRef = 76D1545854377DFAA9F6ADDC4CA30C0C /* RCTHTTPRequestHandler.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + D3BE4AC7988B7A740B423AF784E299E1 /* ARTSurfaceView.m in Sources */ = {isa = PBXBuildFile; fileRef = E5C1ADFCB00A8F28FE31BE7F59AB57D4 /* ARTSurfaceView.m */; }; D3C108FFA4787ECDB0A68E07CDF2BDBA /* FlowableOperator.h in Headers */ = {isa = PBXBuildFile; fileRef = B172A9029098F47FCACF4F7708558907 /* FlowableOperator.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D3F1F2786E81D2998037E666F2138400 /* REAParamNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 28540FE171475E25406318DCED3482B5 /* REAParamNode.m */; }; + D3F1F2786E81D2998037E666F2138400 /* REAParamNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 2A7BD31EFF63B3F992B7DD689773C445 /* REAParamNode.m */; }; D4040F200D00D6261963F43CBE89C880 /* KeepaliveTimer.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 65CE076EC76385AA678905F342C2BE03 /* KeepaliveTimer.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0 -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - D412419822F9E10F0CA71836166FCEBD /* NSTextStorage+FontScaling.h in Headers */ = {isa = PBXBuildFile; fileRef = DC804774950FB558F15D16C53E14A2E3 /* NSTextStorage+FontScaling.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D412419822F9E10F0CA71836166FCEBD /* NSTextStorage+FontScaling.h in Headers */ = {isa = PBXBuildFile; fileRef = E51CF6B8DB4476AB9AEA0446FFE67FF1 /* NSTextStorage+FontScaling.h */; settings = {ATTRIBUTES = (Project, ); }; }; D41D18AF85CDD9141B0609341DCEE5DB /* GULLogger.h in Headers */ = {isa = PBXBuildFile; fileRef = AF613F926031A1C3D3E307B78680D2EB /* GULLogger.h */; settings = {ATTRIBUTES = (Project, ); }; }; D41E53EF9B0E35CDFF682EDEAA2B70AD /* Iterators.h in Headers */ = {isa = PBXBuildFile; fileRef = C4CD8B9BCF402EC556F8872B738F95AB /* Iterators.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D44929278211CCFCFC93414E2EF04F84 /* RCTDatePicker.m in Sources */ = {isa = PBXBuildFile; fileRef = 7F6A88B53A6E2E2C82A5B8E4633BC6DD /* RCTDatePicker.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - D4492AA35116BD68F0668FD3DBC22437 /* RNGestureHandlerManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 4F73DE85FFCAB9588F5CD8E37815637D /* RNGestureHandlerManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D44929278211CCFCFC93414E2EF04F84 /* RCTDatePicker.m in Sources */ = {isa = PBXBuildFile; fileRef = B48D0EC4D6AB87AC52C703AF50275207 /* RCTDatePicker.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + D4492AA35116BD68F0668FD3DBC22437 /* RNGestureHandlerManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 83DAE5534B0BE566CDA5BB76F172848B /* RNGestureHandlerManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; D44F4B162A48877F712281A9ACDD787D /* EventBaseManager.h in Headers */ = {isa = PBXBuildFile; fileRef = CF7079087917665847C821E2EBD3BC4E /* EventBaseManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D46387E3B0A1286B1C2AE3504677E6C8 /* RCTModuleMethod.mm in Sources */ = {isa = PBXBuildFile; fileRef = C96CEA7E32DCCEE86C7442DA65BC188C /* RCTModuleMethod.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + D46387E3B0A1286B1C2AE3504677E6C8 /* RCTModuleMethod.mm in Sources */ = {isa = PBXBuildFile; fileRef = 1EE0AC1E1F22C30D36B89A4E7D4B2975 /* RCTModuleMethod.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; D49C2B5AD12F94C14929E9614A269641 /* ThreadLocal.h in Headers */ = {isa = PBXBuildFile; fileRef = 4970DF907C454800B98BA5A0FA62DF26 /* ThreadLocal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D4C0E1A201222E7501D0ECE40ECB735D /* RCTScrollViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 0322873C7A1E58DBF96AFD30EE01AEEE /* RCTScrollViewManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + D4C0E1A201222E7501D0ECE40ECB735D /* RCTScrollViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = DA5DB30147897FCB5B1AC8EA2D6D4F68 /* RCTScrollViewManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; D4C5F57F127C8AD253CA39F549EA8142 /* FIRApp.m in Sources */ = {isa = PBXBuildFile; fileRef = CAC1FD759E3EA26A598645CA20B95EEF /* FIRApp.m */; }; D4CCA1BA396882B6AC8AE5EF772DB855 /* Baton.h in Headers */ = {isa = PBXBuildFile; fileRef = D67AD88258D8E17AF7A1230438184D6A /* Baton.h */; settings = {ATTRIBUTES = (Project, ); }; }; D4E76C84F728AE7A68A06809D4691592 /* FIRCLSURLBuilder.h in Headers */ = {isa = PBXBuildFile; fileRef = CA9DE3AFEE8924A7B1EA77B2663C05F2 /* FIRCLSURLBuilder.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D4EF29669510C233A73C4D1BF709A3F5 /* QBAssetsViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = 4AA219A24DF974BE1509319A31544E1A /* QBAssetsViewController.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D4EF29669510C233A73C4D1BF709A3F5 /* QBAssetsViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = 926D4CD55284EDD3FC2D802D0CC09EC7 /* QBAssetsViewController.h */; settings = {ATTRIBUTES = (Project, ); }; }; D4F03A622584B061121D482B0D08CBE1 /* GULNSData+zlib.m in Sources */ = {isa = PBXBuildFile; fileRef = 9936E01F702B68A71DF6FC5030D94EE3 /* GULNSData+zlib.m */; }; D4F870A3745DAC99F9D1DE10267A3FDC /* Codel.h in Headers */ = {isa = PBXBuildFile; fileRef = F74394FA55F7070CD095F5B64CE24EC2 /* Codel.h */; settings = {ATTRIBUTES = (Project, ); }; }; D50276F979C7915BC1E670A13F14C468 /* FlipperRSocketResponder.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BFF9E8564C7292628DA883FC605DB78E /* FlipperRSocketResponder.cpp */; settings = {COMPILER_FLAGS = "-DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0 -Wall\n -std=c++14\n -Wno-global-constructors"; }; }; @@ -2880,21 +2867,21 @@ D55F976F4368D978B696E3A99B3665E4 /* StreamStateMachineBase.h in Headers */ = {isa = PBXBuildFile; fileRef = 4462CFAAA8C9BBE3C17275FDC4EB45AB /* StreamStateMachineBase.h */; settings = {ATTRIBUTES = (Project, ); }; }; D56AEDCA89023A1E7C86652FEE5B716B /* DistributedMutex.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BD7A0DE31DB1CAEEB5FB5B670BBC31CF /* DistributedMutex.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; D5B67F8483C8FB4C3B5356D28C3374D7 /* Sockets.h in Headers */ = {isa = PBXBuildFile; fileRef = A13D2823D396306F5A6DD2B6663F7976 /* Sockets.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D5EB936081DE1ABD23F6EF6E9A31D4A9 /* RNGestureHandlerModule.m in Sources */ = {isa = PBXBuildFile; fileRef = C23F16BDE8465F7A056C4F4E75E894FD /* RNGestureHandlerModule.m */; }; - D620337A9B762FE1D97DC1C29D8D9590 /* RCTConvert+Text.m in Sources */ = {isa = PBXBuildFile; fileRef = 69CF3496F196E4B79AD75BC43B719A0C /* RCTConvert+Text.m */; }; - D63D855F5E5694B1078376751720F336 /* UMModuleRegistryAdapter.m in Sources */ = {isa = PBXBuildFile; fileRef = 239D9B2BD194E5E586A96FBFBDB4E0E6 /* UMModuleRegistryAdapter.m */; }; + D5EB936081DE1ABD23F6EF6E9A31D4A9 /* RNGestureHandlerModule.m in Sources */ = {isa = PBXBuildFile; fileRef = A932D3232297BB66850D71CE87750BD1 /* RNGestureHandlerModule.m */; }; + D620337A9B762FE1D97DC1C29D8D9590 /* RCTConvert+Text.m in Sources */ = {isa = PBXBuildFile; fileRef = 31DE601F5B00F05D733ACA7227878644 /* RCTConvert+Text.m */; }; + D63D855F5E5694B1078376751720F336 /* UMModuleRegistryAdapter.m in Sources */ = {isa = PBXBuildFile; fileRef = 622E54713720A1158C65FF55839ED85B /* UMModuleRegistryAdapter.m */; }; D63E8D24C60EFE8B5B1D85CD8003C1A0 /* SDFileAttributeHelper.h in Headers */ = {isa = PBXBuildFile; fileRef = 890AA27BE2BDEA25925DE114EDCA72EF /* SDFileAttributeHelper.h */; settings = {ATTRIBUTES = (Project, ); }; }; D657B1508E0606220A7DAFC0D6614475 /* EliasFanoCoding.h in Headers */ = {isa = PBXBuildFile; fileRef = B536DE787B684F3AA2D7A02FFC256A03 /* EliasFanoCoding.h */; settings = {ATTRIBUTES = (Project, ); }; }; D65D7C232EAFE669AF0F91D277BF2318 /* FIRCLSUnwind_arch.h in Headers */ = {isa = PBXBuildFile; fileRef = 24F58F88A4882E75DB6F2D62653C730F /* FIRCLSUnwind_arch.h */; settings = {ATTRIBUTES = (Project, ); }; }; D6673FCC4F15C960D35782A1349CFDED /* FIRCLSSignal.h in Headers */ = {isa = PBXBuildFile; fileRef = 6D64AD85EBBE2207BCFC09A8B336B7FE /* FIRCLSSignal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D6AC7EDB5587A21F751D2AFB473D2558 /* RCTScrollContentShadowView.m in Sources */ = {isa = PBXBuildFile; fileRef = B8F66399ADB837C4F6DDB78D18E61392 /* RCTScrollContentShadowView.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - D6BE43E386E838E2F1C713789DFF481D /* ARTText.h in Headers */ = {isa = PBXBuildFile; fileRef = 243D81831B5B5E8EC831CD0EAA6AA865 /* ARTText.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D6AC7EDB5587A21F751D2AFB473D2558 /* RCTScrollContentShadowView.m in Sources */ = {isa = PBXBuildFile; fileRef = BA7ACD2B3319D0FCEC206069A1D8C696 /* RCTScrollContentShadowView.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + D6BE43E386E838E2F1C713789DFF481D /* ARTText.h in Headers */ = {isa = PBXBuildFile; fileRef = 70BE5B577F98B3F54C1A2AA7574CAC6E /* ARTText.h */; settings = {ATTRIBUTES = (Project, ); }; }; D6EE21E0A81DC7E63751687071790BD2 /* SDImageLoadersManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 70842C9DE36B9595408A0070537B0B4D /* SDImageLoadersManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; D72503B8233647DFAB18589EFE0F1091 /* ExecutorWithPriority.h in Headers */ = {isa = PBXBuildFile; fileRef = EE881A6C211F134C1D5557409B6F55A8 /* ExecutorWithPriority.h */; settings = {ATTRIBUTES = (Project, ); }; }; D7386042B011F13F43898B1B9A5DEE54 /* Merge.h in Headers */ = {isa = PBXBuildFile; fileRef = 4208A3511E3AD49A9B859808AC623DAC /* Merge.h */; settings = {ATTRIBUTES = (Project, ); }; }; D738B9E26FD586C78BF0DAF81FB62ABB /* FIRCLSReportManager.m in Sources */ = {isa = PBXBuildFile; fileRef = D566CCB86225D9463BFAF68E2BA3D2CA /* FIRCLSReportManager.m */; }; - D74FFDC85A25F62F1B5AE4B8AB0B65D0 /* RNGestureHandlerRegistry.h in Headers */ = {isa = PBXBuildFile; fileRef = 9C64C7FE4B28EB30762C6FAF226BE8C8 /* RNGestureHandlerRegistry.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D753116B40ABF09DE9537CDC8985462E /* BSG_KSLogger.h in Headers */ = {isa = PBXBuildFile; fileRef = D83DD38AB207308D8139FAD7D1B222BA /* BSG_KSLogger.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D74FFDC85A25F62F1B5AE4B8AB0B65D0 /* RNGestureHandlerRegistry.h in Headers */ = {isa = PBXBuildFile; fileRef = 5F5F5B7BA0F1D8C949CDE8BADFE1B21E /* RNGestureHandlerRegistry.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D753116B40ABF09DE9537CDC8985462E /* BSG_KSLogger.h in Headers */ = {isa = PBXBuildFile; fileRef = 7EF3B553D41CFEFF9BFBAAB4F26BF38B /* BSG_KSLogger.h */; settings = {ATTRIBUTES = (Project, ); }; }; D7690664E9554486C6A08570CCA16219 /* alpha_dec.c in Sources */ = {isa = PBXBuildFile; fileRef = 4A9F53A4D7F2FE6DCFCECFCB4FCA2FCE /* alpha_dec.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; D76D243B815E6B6FBC1319E69838AC67 /* Singleton-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 603F3515483F15AD3C050F7F0B253AFD /* Singleton-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; D77CF59BDB5FC2113CF820C1C8CEC5DC /* FLEXNetworkObserver.mm in Sources */ = {isa = PBXBuildFile; fileRef = A8B487AB07482E9CA902D4680970FC82 /* FLEXNetworkObserver.mm */; settings = {COMPILER_FLAGS = "-DDEBUG=1 -DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0"; }; }; @@ -2904,7 +2891,7 @@ D7EE17DC61F2C233EA1F0DB1D29A9473 /* NamedThreadFactory.h in Headers */ = {isa = PBXBuildFile; fileRef = 93A400BE9A8667F9CE4942F5DF5C10C8 /* NamedThreadFactory.h */; settings = {ATTRIBUTES = (Project, ); }; }; D7FD43F4DBA506841D6A9E2A4EF20089 /* signalhandler.cc in Sources */ = {isa = PBXBuildFile; fileRef = 8F53895CE18DB5979CA76E1A13E482C2 /* signalhandler.cc */; settings = {COMPILER_FLAGS = "-Wno-shorten-64-to-32"; }; }; D80637FBB5211C6DA10EF1A6762A297C /* GULLoggerLevel.h in Headers */ = {isa = PBXBuildFile; fileRef = 4D0594E68D945E7A8AFE9B4364FC05E7 /* GULLoggerLevel.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D81AC0C4DC01BB7B898EF80BA080B002 /* RNCAssetsLibraryRequestHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = 128441885676DD4E8AB1FF7B1A115C41 /* RNCAssetsLibraryRequestHandler.m */; }; + D81AC0C4DC01BB7B898EF80BA080B002 /* RNCAssetsLibraryRequestHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = A011BD194B23AF009EB317519D100168 /* RNCAssetsLibraryRequestHandler.m */; }; D82111A4E6432431C15468B9E171C02B /* SerialExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = FF384C992C01C2239A0D62107ADC442C /* SerialExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; D82616F8D27871BA88D956CA6710D550 /* KeyValueHolder.cpp in Sources */ = {isa = PBXBuildFile; fileRef = EB64CA34DB64EE8B21063AB215C0306C /* KeyValueHolder.cpp */; settings = {COMPILER_FLAGS = "-x objective-c++ -fno-objc-arc"; }; }; D82A9BB2212B45FA75D895A40645B283 /* QueuedImmediateExecutor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A24640E466C96B084FEE8B215616C1DF /* QueuedImmediateExecutor.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; @@ -2912,67 +2899,64 @@ D88BE8A09092572D594C0337AD2C039C /* SDImageHEICCoder.h in Headers */ = {isa = PBXBuildFile; fileRef = F6B98771221062A48A96595D56507876 /* SDImageHEICCoder.h */; settings = {ATTRIBUTES = (Project, ); }; }; D8A14C1136C6E6F8D65875FB52ACC6F9 /* GULReachabilityChecker+Internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 2471035527AC86FFEA69DAB45EBE51D8 /* GULReachabilityChecker+Internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; D8BB8787764B7EB4D18B8371DFCDDB62 /* TimekeeperScheduledExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = CFFC5CEBE6998B8E15AEAC6F2D288C0B /* TimekeeperScheduledExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D8BE1C65E30421034BDF3B754E368854 /* UMAppLifecycleListener.h in Headers */ = {isa = PBXBuildFile; fileRef = DDAF9CAC69A201E7DEFDA5C32B1AA175 /* UMAppLifecycleListener.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D8C90CB5416F8ACD7A96BE492BE76CA7 /* BugsnagSession.h in Headers */ = {isa = PBXBuildFile; fileRef = 4B426F711340C853C74829217B94B748 /* BugsnagSession.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D8F0C0DA31A17B805ED9F1CF41673F8A /* RNCSafeAreaView.h in Headers */ = {isa = PBXBuildFile; fileRef = 91D62A8596825C76C9F5DF8594429232 /* RNCSafeAreaView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D8F8196B3132B554A7D3384B3420D59E /* BugsnagSessionFileStore.m in Sources */ = {isa = PBXBuildFile; fileRef = DE3F2300C171A649D6C5347D18C8084E /* BugsnagSessionFileStore.m */; }; + D8BE1C65E30421034BDF3B754E368854 /* UMAppLifecycleListener.h in Headers */ = {isa = PBXBuildFile; fileRef = C02676E9B7E1F93FE6C234DC97F32985 /* UMAppLifecycleListener.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D8C90CB5416F8ACD7A96BE492BE76CA7 /* BugsnagSession.h in Headers */ = {isa = PBXBuildFile; fileRef = FD4385FC9594D238BDC002A02351EEBD /* BugsnagSession.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D8F0C0DA31A17B805ED9F1CF41673F8A /* RNCSafeAreaView.h in Headers */ = {isa = PBXBuildFile; fileRef = 9EF4D85CD5500AE0E4C251422BD71977 /* RNCSafeAreaView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D8F8196B3132B554A7D3384B3420D59E /* BugsnagSessionFileStore.m in Sources */ = {isa = PBXBuildFile; fileRef = EE034849C71A392F5328CB6451C015B4 /* BugsnagSessionFileStore.m */; }; D9136385F86B439BF4110F471C710BCB /* FIRInstallationsItem.h in Headers */ = {isa = PBXBuildFile; fileRef = 5A336F63F5C60A88C645CAD3FEA23CEE /* FIRInstallationsItem.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D923D10E1895387F63D665FDE9B8B7AF /* RCTSegmentedControl.h in Headers */ = {isa = PBXBuildFile; fileRef = DD0D96E6D730314AE7C8034E6641B98D /* RCTSegmentedControl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D92CAE62ECAFE549B7CADB800BE130C3 /* RNJitsiMeetView.m in Sources */ = {isa = PBXBuildFile; fileRef = AFCF9E1E2D811F925E31D06D83E33E59 /* RNJitsiMeetView.m */; }; - D942F947E98B998E31292371B94924C1 /* RNFlingHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = F0842D2A48CFAEB9FD497B75F54C412F /* RNFlingHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D923D10E1895387F63D665FDE9B8B7AF /* RCTSegmentedControl.h in Headers */ = {isa = PBXBuildFile; fileRef = 077F8E04F2D3688403F8D340E4824BB6 /* RCTSegmentedControl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D92CAE62ECAFE549B7CADB800BE130C3 /* RNJitsiMeetView.m in Sources */ = {isa = PBXBuildFile; fileRef = 356D6C04D0A12FFEA005F737D50CB188 /* RNJitsiMeetView.m */; }; + D942F947E98B998E31292371B94924C1 /* RNFlingHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = ACAD9C78E056AD7226461F4926E827D4 /* RNFlingHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; D9509DE6780CB281F74D9447AC38ADD5 /* FBLPromise+Reduce.m in Sources */ = {isa = PBXBuildFile; fileRef = 0388A04B410B44CB2356334BAE78D71D /* FBLPromise+Reduce.m */; }; - D973144F4667728901E3B10EF2D56D9A /* RCTTextTransform.h in Headers */ = {isa = PBXBuildFile; fileRef = 5F2034C1AE93F00731ACD41C145FB977 /* RCTTextTransform.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D9BC1F14A53B515443E323E9031D582C /* EXReactNativeUserNotificationCenterProxy.m in Sources */ = {isa = PBXBuildFile; fileRef = 3C519268C53CCF0EE6CC0E33831B07F5 /* EXReactNativeUserNotificationCenterProxy.m */; }; + D973144F4667728901E3B10EF2D56D9A /* RCTTextTransform.h in Headers */ = {isa = PBXBuildFile; fileRef = 75F53B625267A4726F4510DBF32A4E81 /* RCTTextTransform.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D9BC1F14A53B515443E323E9031D582C /* EXReactNativeUserNotificationCenterProxy.m in Sources */ = {isa = PBXBuildFile; fileRef = 8D6AC6E074E3F8EFDEA205BAEBB6C0D0 /* EXReactNativeUserNotificationCenterProxy.m */; }; D9CE5C4ED521A9CCCEE7E5371A8FEC83 /* SDWebImageOptionsProcessor.m in Sources */ = {isa = PBXBuildFile; fileRef = A5E47FFFD2C6FCEDA03AD43688CF0763 /* SDWebImageOptionsProcessor.m */; }; - D9E8EF785F0508D50522BF668E520107 /* EXHaptics-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = BFAD44D90FC5A72757E1273280B5D544 /* EXHaptics-dummy.m */; }; + D9E8EF785F0508D50522BF668E520107 /* EXHaptics-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = B99CF8D44BD1984450386F171146D0FD /* EXHaptics-dummy.m */; }; D9EEB7D779C730BA8D7084CE1C82C2F7 /* FIRCLSReport_Private.h in Headers */ = {isa = PBXBuildFile; fileRef = E018D94A11FCCA293ADC877A2DAF7B4E /* FIRCLSReport_Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; D9EF1EACEF391E2D098EDDD48B5C1F7B /* SDAnimatedImageView+WebCache.h in Headers */ = {isa = PBXBuildFile; fileRef = 4A5232C627636ED7608172E5B61E740B /* SDAnimatedImageView+WebCache.h */; settings = {ATTRIBUTES = (Project, ); }; }; DA0494C97A2819836F2DABCB79CCC65E /* FIRCLSUnwind_x86.h in Headers */ = {isa = PBXBuildFile; fileRef = F5EED8B3D27FEB3E08D282761E4BE616 /* FIRCLSUnwind_x86.h */; settings = {ATTRIBUTES = (Project, ); }; }; - DA23FD140809F92486DC6C3AB6F20075 /* RNCookieManagerIOS.m in Sources */ = {isa = PBXBuildFile; fileRef = AA681D82870D8F25DE071604F1FBDE85 /* RNCookieManagerIOS.m */; }; + DA23FD140809F92486DC6C3AB6F20075 /* RNCookieManagerIOS.m in Sources */ = {isa = PBXBuildFile; fileRef = EF6B23356D4F5B0719EA31C081603848 /* RNCookieManagerIOS.m */; }; DA3E756FDDBB22F63B92675EE270BFD9 /* cpu.c in Sources */ = {isa = PBXBuildFile; fileRef = 7BBF8A1777BAFD5C973260BD26414770 /* cpu.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; DA5203CF64B1E9D5DAA840D3417F241E /* StaticTracepoint.h in Headers */ = {isa = PBXBuildFile; fileRef = 5490400C4A176BF4168D0F1F26459996 /* StaticTracepoint.h */; settings = {ATTRIBUTES = (Project, ); }; }; - DA553EAB5D6042B76746804E1EAB9AAC /* RNSScreen.m in Sources */ = {isa = PBXBuildFile; fileRef = 3B96DA6A06FBD277935AE7448D8629F6 /* RNSScreen.m */; }; - DA572D4C50F338A98DE859B93CF439DE /* BugsnagErrorReportApiClient.h in Headers */ = {isa = PBXBuildFile; fileRef = A73AE17CED95A80F8EA68BF8BB5ADDD0 /* BugsnagErrorReportApiClient.h */; settings = {ATTRIBUTES = (Project, ); }; }; + DA553EAB5D6042B76746804E1EAB9AAC /* RNSScreen.m in Sources */ = {isa = PBXBuildFile; fileRef = 0028EA52F9E2F0D541022D3AC1392849 /* RNSScreen.m */; }; + DA572D4C50F338A98DE859B93CF439DE /* BugsnagErrorReportApiClient.h in Headers */ = {isa = PBXBuildFile; fileRef = D77D07CF2BCA6D12243CC596897FE6E6 /* BugsnagErrorReportApiClient.h */; settings = {ATTRIBUTES = (Project, ); }; }; DA5EBAFC713BD2CA418F7A71F8351853 /* FIRCLSCodeMapping.h in Headers */ = {isa = PBXBuildFile; fileRef = 1740711C23139C0114C4B8488E76F0AF /* FIRCLSCodeMapping.h */; settings = {ATTRIBUTES = (Project, ); }; }; DA6126735254CBAD81AE08F7B1ED78B7 /* DrivableExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = ECD54472A4CCEA6C4BA8F079C59642EE /* DrivableExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; - DA658882BDB6CB0C758051C2BFF39DFA /* BSG_KSCrashReportStore.m in Sources */ = {isa = PBXBuildFile; fileRef = AC3EF53CAA285B0C3D591E0FCE119B5C /* BSG_KSCrashReportStore.m */; }; + DA658882BDB6CB0C758051C2BFF39DFA /* BSG_KSCrashReportStore.m in Sources */ = {isa = PBXBuildFile; fileRef = E6EFC9376699D27192EE2846F7017250 /* BSG_KSCrashReportStore.m */; }; DA779370248FFC40EA77D4D44A6BDB54 /* FIRDependency.h in Headers */ = {isa = PBXBuildFile; fileRef = D55333DDD6CA1FD906ED2DA4E53C9DA5 /* FIRDependency.h */; settings = {ATTRIBUTES = (Project, ); }; }; - DA9EE774CF939AFC136CFF0C1418CBD4 /* RNRotationHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 6224A7F4008F7612AA80D6FE489064FC /* RNRotationHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; - DAA91D743F867A4B65BF511DB61F5087 /* RCTModalHostView.h in Headers */ = {isa = PBXBuildFile; fileRef = 530B9636D742C698B4407CBF6D67B3BF /* RCTModalHostView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + DA9EE774CF939AFC136CFF0C1418CBD4 /* RNRotationHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = C97B622143A5155BF69A5EA97E062D0F /* RNRotationHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; + DAA91D743F867A4B65BF511DB61F5087 /* RCTModalHostView.h in Headers */ = {isa = PBXBuildFile; fileRef = EB930BAE07AEE8D8395B70E2A3394A9F /* RCTModalHostView.h */; settings = {ATTRIBUTES = (Project, ); }; }; DAAE0E3FED2202C7C92F463A7C4BAA2E /* CertificateUtils.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FCA28C7B67B55AC4450519080C138415 /* CertificateUtils.cpp */; settings = {COMPILER_FLAGS = "-DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0 -Wall\n -std=c++14\n -Wno-global-constructors"; }; }; - DAB77630ECE8FFDE64A9BEFBD0B44DFF /* RNFetchBlobFS.m in Sources */ = {isa = PBXBuildFile; fileRef = F70F3F6CE0625D11C3ECE4FC7838EF51 /* RNFetchBlobFS.m */; }; - DAB782CBA723F21A9F6BAC43E18B14CF /* RCTDevSettings.mm in Sources */ = {isa = PBXBuildFile; fileRef = D8DC4B537B3F8C5EF93104A387C91C75 /* RCTDevSettings.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; - DADC5939C3403C5244AD51F6C1CA548C /* BSG_KSCrashType.c in Sources */ = {isa = PBXBuildFile; fileRef = 64336ADBC3D8C459CB84D135DD365F93 /* BSG_KSCrashType.c */; }; + DAB782CBA723F21A9F6BAC43E18B14CF /* RCTDevSettings.mm in Sources */ = {isa = PBXBuildFile; fileRef = FADB94CE7A937E474B73DFEED2AAB8A9 /* RCTDevSettings.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + DADC5939C3403C5244AD51F6C1CA548C /* BSG_KSCrashType.c in Sources */ = {isa = PBXBuildFile; fileRef = 7B999C6D36107B57A55C835F39A8FB99 /* BSG_KSCrashType.c */; }; DAFC2F91BEA931FB9BA022CB9B77CA90 /* backward_references_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = 4866196335D72DFE1CA40EC5C33D70AB /* backward_references_enc.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; DB21EF42E208338E801F26621D3D544F /* openssl_aes_locl.h in Headers */ = {isa = PBXBuildFile; fileRef = D7DCDA0186EE5E3611A03951159C5C08 /* openssl_aes_locl.h */; settings = {ATTRIBUTES = (Project, ); }; }; DB23770DDD223F6F66DD3161FEED485E /* cached-powers.h in Headers */ = {isa = PBXBuildFile; fileRef = 57ACC4A2EB1803461192E7AF83BB585C /* cached-powers.h */; settings = {ATTRIBUTES = (Project, ); }; }; - DB48347AB0CFAFD261FBD2BE8861EE9D /* RCTDatePicker.h in Headers */ = {isa = PBXBuildFile; fileRef = B4C1EE3F74ED63353DA485AC922659BA /* RCTDatePicker.h */; settings = {ATTRIBUTES = (Project, ); }; }; - DB7453AA7276EAE43F16788C031FC022 /* RNGestureHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = 87AE74ADAF954E43ADFEF376FE1C35E7 /* RNGestureHandler.m */; }; - DB802AF253B585166A65DE3AF2807ACA /* IOS7Polyfill.h in Headers */ = {isa = PBXBuildFile; fileRef = EDBFCD6B15179805CF3E6FC80DC3B250 /* IOS7Polyfill.h */; settings = {ATTRIBUTES = (Project, ); }; }; - DB9717086AE45CE81AA97C3D12CDE9C7 /* rn-fetch-blob-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = A771D8CBDD067DB49AF9207743058629 /* rn-fetch-blob-dummy.m */; }; - DB98C51FFD075C2E920AE1CFE2B57068 /* ARTGroupManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 95F83EBEB4ECB16ACBC42F3E9CE72C42 /* ARTGroupManager.m */; }; + DB48347AB0CFAFD261FBD2BE8861EE9D /* RCTDatePicker.h in Headers */ = {isa = PBXBuildFile; fileRef = F401D73CEB90888EAF4B4FA4B04C2D01 /* RCTDatePicker.h */; settings = {ATTRIBUTES = (Project, ); }; }; + DB7453AA7276EAE43F16788C031FC022 /* RNGestureHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = 38023691E1EF8AA80C51B1C7203D1690 /* RNGestureHandler.m */; }; + DB98C51FFD075C2E920AE1CFE2B57068 /* ARTGroupManager.m in Sources */ = {isa = PBXBuildFile; fileRef = AC6B38274AAF8DA585D7959301C33AE0 /* ARTGroupManager.m */; }; DB99B89B363F703C56CC1CA9540AC911 /* SDAnimatedImageView.m in Sources */ = {isa = PBXBuildFile; fileRef = 10D9D3FE14A3CBFD301293F57EAC711B /* SDAnimatedImageView.m */; }; - DBB5DF09AA103C6B5C2410567FC0F306 /* RNGestureHandlerButton.m in Sources */ = {isa = PBXBuildFile; fileRef = E3E949AE1BC7DC75625C7108BFFB4FCE /* RNGestureHandlerButton.m */; }; - DBB7C961CF22090D0F1F8FB705151A2D /* REANodesManager.h in Headers */ = {isa = PBXBuildFile; fileRef = E95DB92B336BB03EBD89043B4102A6A1 /* REANodesManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - DC00358D8F13B35F5D00160272FCBCAE /* RCTImageURLLoaderWithAttribution.mm in Sources */ = {isa = PBXBuildFile; fileRef = 88CADC834E40FDC48B000DC05708E102 /* RCTImageURLLoaderWithAttribution.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; - DC0DB5E6E1AACF1F85DE463B864C97D8 /* RNFBAppModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 44C578DE64AD8D7487F4DA83FC07CD67 /* RNFBAppModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; - DC138CE0F250720A264B598D27AB4C84 /* UMUtilitiesInterface.h in Headers */ = {isa = PBXBuildFile; fileRef = 00EEACC7F27DDF885CBAEA844DEA2D33 /* UMUtilitiesInterface.h */; settings = {ATTRIBUTES = (Project, ); }; }; + DBB5DF09AA103C6B5C2410567FC0F306 /* RNGestureHandlerButton.m in Sources */ = {isa = PBXBuildFile; fileRef = C4F55E274BD829C8254C85756A40CA29 /* RNGestureHandlerButton.m */; }; + DBB7C961CF22090D0F1F8FB705151A2D /* REANodesManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 9089C34DED7890F744A034D53AC63CCD /* REANodesManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + DC00358D8F13B35F5D00160272FCBCAE /* RCTImageURLLoaderWithAttribution.mm in Sources */ = {isa = PBXBuildFile; fileRef = EAD45F45D4778E042FD25097DD107ACB /* RCTImageURLLoaderWithAttribution.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + DC0DB5E6E1AACF1F85DE463B864C97D8 /* RNFBAppModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 9527CB009A4357CB2F39838184EA439B /* RNFBAppModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; + DC138CE0F250720A264B598D27AB4C84 /* UMUtilitiesInterface.h in Headers */ = {isa = PBXBuildFile; fileRef = DCC569001FB6B2E5F2E4A1B3102FC676 /* UMUtilitiesInterface.h */; settings = {ATTRIBUTES = (Project, ); }; }; DC28E96BA8BC8E051CA66420F836DDB5 /* idec_dec.c in Sources */ = {isa = PBXBuildFile; fileRef = 062C82D54F9C09A401B970511851C116 /* idec_dec.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; DC47EFB7D481B5840B0D006FDB06611E /* FIRLogger.h in Headers */ = {isa = PBXBuildFile; fileRef = DA6B347B83E2AA2D3CC69D0CB37A05C9 /* FIRLogger.h */; settings = {ATTRIBUTES = (Project, ); }; }; DC49ABE2532839A7312B849463F539A0 /* FIRCLSUserDefaults.m in Sources */ = {isa = PBXBuildFile; fileRef = FD520F76FBD80356DA1FF8BED46E0FD9 /* FIRCLSUserDefaults.m */; }; - DC83F9A19E21E99237CA1E1903EE6DFD /* RNBackgroundTimer.m in Sources */ = {isa = PBXBuildFile; fileRef = 0EE044559665883CF4AA2F8703CDEC8A /* RNBackgroundTimer.m */; }; + DC83F9A19E21E99237CA1E1903EE6DFD /* RNBackgroundTimer.m in Sources */ = {isa = PBXBuildFile; fileRef = A9B68751E4B84B73C114ECBB96CA153B /* RNBackgroundTimer.m */; }; DC905C9E567307F38868AC249E90807E /* FileUtil.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8A469455F7808C1B76A4329258F6F6C0 /* FileUtil.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - DCA414020D88CAF6245519F286313FD1 /* UIView+React.h in Headers */ = {isa = PBXBuildFile; fileRef = 3918786E8E20C9BE29981AFDDF8D1ECA /* UIView+React.h */; settings = {ATTRIBUTES = (Project, ); }; }; - DCAF4A441F6D8402567162FCA828FE3D /* YGConfig.h in Headers */ = {isa = PBXBuildFile; fileRef = BF09E861AE844B8A7642206A6E1180E9 /* YGConfig.h */; settings = {ATTRIBUTES = (Project, ); }; }; + DCA414020D88CAF6245519F286313FD1 /* UIView+React.h in Headers */ = {isa = PBXBuildFile; fileRef = 9223FA494673CD43DA2500F7B4A51C60 /* UIView+React.h */; settings = {ATTRIBUTES = (Project, ); }; }; + DCAF4A441F6D8402567162FCA828FE3D /* YGConfig.h in Headers */ = {isa = PBXBuildFile; fileRef = A8D8B00F25FD4C3F8E777A0618B11F73 /* YGConfig.h */; settings = {ATTRIBUTES = (Project, ); }; }; DCB90D8D8966F8964BA8B9A333F44E4F /* Base.lproj in Resources */ = {isa = PBXBuildFile; fileRef = 2FC14241A4FB4A7C07F5B0D8922B4AEE /* Base.lproj */; }; DCC79093B0298C5C73431BAB4A5CD43A /* IPAddress.h in Headers */ = {isa = PBXBuildFile; fileRef = F40A53185836579E30C3EB206F36EFB9 /* IPAddress.h */; settings = {ATTRIBUTES = (Project, ); }; }; - DCD9FA4EA551EDAA53BFADF01A383A80 /* RCTSurfaceView.h in Headers */ = {isa = PBXBuildFile; fileRef = B570AD3288F646353B803C672C681ADB /* RCTSurfaceView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - DCE2782B3536ED43A64E1BE59D8A16AE /* en.lproj in Resources */ = {isa = PBXBuildFile; fileRef = 9F1539EF19F291E33E18CF6ACA7243FA /* en.lproj */; }; - DCEB1454DC848851872A3C10BA32C7BD /* RCTInputAccessoryShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = 18F15888BFDDF2FB46513A5BA7EA613E /* RCTInputAccessoryShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - DCFC4E68E23C6B0E490740857C70AA80 /* RCTSurfaceHostingProxyRootView.h in Headers */ = {isa = PBXBuildFile; fileRef = C4D98AC0B05A6CD79A27010C2E150F4C /* RCTSurfaceHostingProxyRootView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + DCD9FA4EA551EDAA53BFADF01A383A80 /* RCTSurfaceView.h in Headers */ = {isa = PBXBuildFile; fileRef = 6525A82A80E0F2393BB29B17E3EC8E1C /* RCTSurfaceView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + DCE2782B3536ED43A64E1BE59D8A16AE /* en.lproj in Resources */ = {isa = PBXBuildFile; fileRef = D2CF69080B3D62569BBC0C345A366519 /* en.lproj */; }; + DCEB1454DC848851872A3C10BA32C7BD /* RCTInputAccessoryShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = 9760996D61B1B09583A96BF0100D6BB7 /* RCTInputAccessoryShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + DCFC4E68E23C6B0E490740857C70AA80 /* RCTSurfaceHostingProxyRootView.h in Headers */ = {isa = PBXBuildFile; fileRef = 3E7CBC38A3E2B93C112071548EACE16F /* RCTSurfaceHostingProxyRootView.h */; settings = {ATTRIBUTES = (Project, ); }; }; DD0172C138C004D1206227573AB94742 /* Uri.h in Headers */ = {isa = PBXBuildFile; fileRef = D834EE573F3267BEE0E7CCB02EEA985A /* Uri.h */; settings = {ATTRIBUTES = (Project, ); }; }; DD0ED0194269A9546678AE2F538F3017 /* SDImageFrame.m in Sources */ = {isa = PBXBuildFile; fileRef = DD224B32342883A8147E2B54F6650F2B /* SDImageFrame.m */; }; - DD1BC3892CC8386218B2AC5A82F6D729 /* ReactNativeKeyboardInput-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 473F2EB36323A7D3EE84A937C6AD6108 /* ReactNativeKeyboardInput-dummy.m */; }; + DD1BC3892CC8386218B2AC5A82F6D729 /* ReactNativeKeyboardInput-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = B96043C0323920E970B3181930AD672F /* ReactNativeKeyboardInput-dummy.m */; }; DD31E664C8D93EBC57110B8E97E90E9C /* NSImage+Compatibility.m in Sources */ = {isa = PBXBuildFile; fileRef = C989C6DE38EB8BAEB6957E262B311396 /* NSImage+Compatibility.m */; }; DD3C43A54C47878799F16153478F5E3D /* crc32_armv8.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F1F65F86386B237B05B0316B1A3B4A55 /* crc32_armv8.cpp */; settings = {COMPILER_FLAGS = "-x objective-c++ -fno-objc-arc"; }; }; DD435B05F38B5E0576E48D7C760A2BB7 /* FIRCLSDataCollectionArbiter.m in Sources */ = {isa = PBXBuildFile; fileRef = B011AF2233ABBCA46FBEEC71BD95C430 /* FIRCLSDataCollectionArbiter.m */; }; @@ -2981,85 +2965,85 @@ DDC5B985B4264CEA5E226DE7E0AF90E0 /* FIRComponentType.h in Headers */ = {isa = PBXBuildFile; fileRef = 023639291EBD57E4AFDF09B7E1E95800 /* FIRComponentType.h */; settings = {ATTRIBUTES = (Project, ); }; }; DDEECFFF302A446DF9F1194D17A36925 /* FutureSplitter.h in Headers */ = {isa = PBXBuildFile; fileRef = CCFDF5247C0C4F27F981117EEAD08CC7 /* FutureSplitter.h */; settings = {ATTRIBUTES = (Project, ); }; }; DDFA735F743E8D12661098DC58DAE485 /* FIRLibrary.h in Headers */ = {isa = PBXBuildFile; fileRef = 755548BAF1B680D52CF25B4984E8CEA3 /* FIRLibrary.h */; settings = {ATTRIBUTES = (Project, ); }; }; - DE08A0A0EAB4D1F3D4205E9C02D6D771 /* EXSessionTaskDispatcher.h in Headers */ = {isa = PBXBuildFile; fileRef = 76A2AE1205D4BB60A9F35C15D32740E4 /* EXSessionTaskDispatcher.h */; settings = {ATTRIBUTES = (Project, ); }; }; + DE08A0A0EAB4D1F3D4205E9C02D6D771 /* EXSessionTaskDispatcher.h in Headers */ = {isa = PBXBuildFile; fileRef = 791E9B40DA141889C655B1F8F4E60B64 /* EXSessionTaskDispatcher.h */; settings = {ATTRIBUTES = (Project, ); }; }; DE362CD58EB6E55028F789361187A702 /* ThreadCachedArena.cpp in Sources */ = {isa = PBXBuildFile; fileRef = ADD9680BE4E70DAC99F4E8F28E80749D /* ThreadCachedArena.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - DE5F047EA25CC9CDD2F98D6EECD0CC07 /* RCTDisplayWeakRefreshable.m in Sources */ = {isa = PBXBuildFile; fileRef = CEF807FFCB1153598A37E625CFE33E50 /* RCTDisplayWeakRefreshable.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; - DE5F1EC1B7CB49F4ADFE01D959FD0D22 /* BSG_KSCrashSentry_User.c in Sources */ = {isa = PBXBuildFile; fileRef = 7628A6AD298E923A7804528851AF346C /* BSG_KSCrashSentry_User.c */; }; + DE5F047EA25CC9CDD2F98D6EECD0CC07 /* RCTDisplayWeakRefreshable.m in Sources */ = {isa = PBXBuildFile; fileRef = A929E14F1256AEF6A35A4618DFC278CE /* RCTDisplayWeakRefreshable.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + DE5F1EC1B7CB49F4ADFE01D959FD0D22 /* BSG_KSCrashSentry_User.c in Sources */ = {isa = PBXBuildFile; fileRef = CB2419D38E6A5851A62CBF61C80EC5B8 /* BSG_KSCrashSentry_User.c */; }; DE9795B12DC6F34813DDA08D4B8BA982 /* FrameType.h in Headers */ = {isa = PBXBuildFile; fileRef = 654A23D2C1C8537C84CAD0D175556716 /* FrameType.h */; settings = {ATTRIBUTES = (Project, ); }; }; DEA5C2E029C4386529EDF363FDD8BC67 /* FIRCLSFile.m in Sources */ = {isa = PBXBuildFile; fileRef = B8BF6B0504A160312240DE5D8E4D5032 /* FIRCLSFile.m */; }; DEBFD8640231926B88FE3CD4FDDDF381 /* ManualExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = 7EEEAF6D15E85574F3500AA19CFA1847 /* ManualExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; DEDBA7D5E0A65DE6FE7B04A4E3B87CDD /* StaticConst.h in Headers */ = {isa = PBXBuildFile; fileRef = 8281113021EE8CA8AEA3728AEF6D1060 /* StaticConst.h */; settings = {ATTRIBUTES = (Project, ); }; }; - DEE4EA1E653EC166B12DE85CB96230FD /* ARTRadialGradient.h in Headers */ = {isa = PBXBuildFile; fileRef = 74733A64EDFAE61A082AD26F50D916D6 /* ARTRadialGradient.h */; settings = {ATTRIBUTES = (Project, ); }; }; - DEF224658766C0BD97431F5DCA3B399E /* JSCRuntime.h in Headers */ = {isa = PBXBuildFile; fileRef = CA4B5F2CB05033C31AFD5B639471937C /* JSCRuntime.h */; settings = {ATTRIBUTES = (Project, ); }; }; + DEE4EA1E653EC166B12DE85CB96230FD /* ARTRadialGradient.h in Headers */ = {isa = PBXBuildFile; fileRef = ACFBEA7E7AC2EDFB06A70EE8713187D7 /* ARTRadialGradient.h */; settings = {ATTRIBUTES = (Project, ); }; }; + DEF224658766C0BD97431F5DCA3B399E /* JSCRuntime.h in Headers */ = {isa = PBXBuildFile; fileRef = 5D27CE6B5875497450F18C08BF021A24 /* JSCRuntime.h */; settings = {ATTRIBUTES = (Project, ); }; }; DF0051ABE6FEEEC784557052147EE672 /* FIRCLSDataCollectionToken.m in Sources */ = {isa = PBXBuildFile; fileRef = 86427295E421BD825AC814673C436CC9 /* FIRCLSDataCollectionToken.m */; }; DF22A8BEE5FCF76A31BE7C8A89E67C9F /* FIRCLSInstallIdentifierModel.m in Sources */ = {isa = PBXBuildFile; fileRef = A0860189B4CD7E1B30B0913458634F61 /* FIRCLSInstallIdentifierModel.m */; }; - DF230F67439A660A168B218C3660290D /* ModuleRegistry.h in Headers */ = {isa = PBXBuildFile; fileRef = 452D5FB1FF9EAD07A6DBDA261F49275F /* ModuleRegistry.h */; settings = {ATTRIBUTES = (Project, ); }; }; + DF230F67439A660A168B218C3660290D /* ModuleRegistry.h in Headers */ = {isa = PBXBuildFile; fileRef = EE3CA38F59F3E15A51082F3628F2FAEE /* ModuleRegistry.h */; settings = {ATTRIBUTES = (Project, ); }; }; DF404DA0B392DB192D47AC020D531A9A /* Demangle.h in Headers */ = {isa = PBXBuildFile; fileRef = F6CE4A460F7E91A4B4BD5716E288A58D /* Demangle.h */; settings = {ATTRIBUTES = (Project, ); }; }; DF417B206C991E16FF579777C4FF1C96 /* FIRInstallationsItem+RegisterInstallationAPI.m in Sources */ = {isa = PBXBuildFile; fileRef = 2A383877CCA66C0321486F218ECB64CB /* FIRInstallationsItem+RegisterInstallationAPI.m */; }; DF7078E5269EF7551228DFC3F9501FEC /* FrameFlags.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 550DDE9B1D1807636182189F5EA16B4E /* FrameFlags.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0 -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; DF75C756DB80CBFDFD43D0A99F83D035 /* PolyDetail.h in Headers */ = {isa = PBXBuildFile; fileRef = 35CC24F928CAC54296E03B0F051806F1 /* PolyDetail.h */; settings = {ATTRIBUTES = (Project, ); }; }; - DF817BD1F5C4F6F35E9B867D0DFABC10 /* RecoverableError.h in Headers */ = {isa = PBXBuildFile; fileRef = FC63095311C14548106688A9B3279C75 /* RecoverableError.h */; settings = {ATTRIBUTES = (Project, ); }; }; + DF817BD1F5C4F6F35E9B867D0DFABC10 /* RecoverableError.h in Headers */ = {isa = PBXBuildFile; fileRef = 5373E87BE0AEB1F0BA02C7EB052F8A41 /* RecoverableError.h */; settings = {ATTRIBUTES = (Project, ); }; }; DF8D5DA3700432625CCA28276EBC56FE /* RangeCommon.h in Headers */ = {isa = PBXBuildFile; fileRef = 6091F121AFA5D2D5CD9411F3E6D01B95 /* RangeCommon.h */; settings = {ATTRIBUTES = (Project, ); }; }; DF97168226658C94C8D943BA99ED557C /* FIRVersion.h in Headers */ = {isa = PBXBuildFile; fileRef = 3D671A8DB96D321151A22C7777886198 /* FIRVersion.h */; settings = {ATTRIBUTES = (Project, ); }; }; DFA2F79F9121657E2DF8E7DDE482828C /* ThreadCachedInts.h in Headers */ = {isa = PBXBuildFile; fileRef = 8B325C64F03917783D3F653A2700BF79 /* ThreadCachedInts.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E00AE219C77E8D17BBBF9A091E04A29D /* FFFastImageView.h in Headers */ = {isa = PBXBuildFile; fileRef = 22A3CFE580C92B99B0376CE5B0497DF8 /* FFFastImageView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E00AE219C77E8D17BBBF9A091E04A29D /* FFFastImageView.h in Headers */ = {isa = PBXBuildFile; fileRef = A671B4633078950803164D2C663B82E0 /* FFFastImageView.h */; settings = {ATTRIBUTES = (Project, ); }; }; E00BC402FDDAB7D225D87AB8410D1B1A /* DecoratedAsyncTransportWrapper.h in Headers */ = {isa = PBXBuildFile; fileRef = 5F62545782D513B0570CC4018A2E037F /* DecoratedAsyncTransportWrapper.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E00FAD0FDB26AF9FE9B56ED65F8587EB /* LNInterpolable.h in Headers */ = {isa = PBXBuildFile; fileRef = 2DF13A81DF5DC2707D07670437B879ED /* LNInterpolable.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E00FAD0FDB26AF9FE9B56ED65F8587EB /* LNInterpolable.h in Headers */ = {isa = PBXBuildFile; fileRef = 940BFA34F0166285361309FBAD942031 /* LNInterpolable.h */; settings = {ATTRIBUTES = (Project, ); }; }; E0362698CD153611761F5468EE9F1CB5 /* FlipperRSocketResponder.h in Headers */ = {isa = PBXBuildFile; fileRef = E65018B65877114579C0E4837C8E29E3 /* FlipperRSocketResponder.h */; settings = {ATTRIBUTES = (Project, ); }; }; E050964E1AB1383EA71092C52BA08CAC /* Syslog.h in Headers */ = {isa = PBXBuildFile; fileRef = FF1398287B0064DE78BA009BEFCBCCE3 /* Syslog.h */; settings = {ATTRIBUTES = (Project, ); }; }; E0598EB7CB9E335E0333E4E5170ADD1F /* FIRCLSUtility.m in Sources */ = {isa = PBXBuildFile; fileRef = 6B0B134EB010CB93640619051AD559EA /* FIRCLSUtility.m */; }; - E074CA82D2417D4A0D890DD071A453F4 /* RCTRootShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = 4778D802281AD0D545EFE32D9BF3FD75 /* RCTRootShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E074CA82D2417D4A0D890DD071A453F4 /* RCTRootShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = 534FDDBCB78BE7A8C4D8D39DF13F700E /* RCTRootShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; E087DB435044D30051DCE1885634E2C9 /* UIImageView+HighlightedWebCache.m in Sources */ = {isa = PBXBuildFile; fileRef = 8A154717B3B07FF994D000022B4FBFC5 /* UIImageView+HighlightedWebCache.m */; }; E0A95348DFCA5B73FAE577A45F6822FD /* Function.h in Headers */ = {isa = PBXBuildFile; fileRef = A9CAB9883D8334AFA0E33C8F4507BB6F /* Function.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E0B1006374966800475ECF303FC19508 /* RCTRootView.h in Headers */ = {isa = PBXBuildFile; fileRef = BAA9381E9B15567B41C7E2E4E1A54E62 /* RCTRootView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E0C46A52452ABB7A82187CF8BADC033D /* RNDateTimePicker.h in Headers */ = {isa = PBXBuildFile; fileRef = C7F09D8EEBA127CCF19F0EC01B60589A /* RNDateTimePicker.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E0B1006374966800475ECF303FC19508 /* RCTRootView.h in Headers */ = {isa = PBXBuildFile; fileRef = 56ECE2B3EE6E81D98563054DF5B9532A /* RCTRootView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E0C46A52452ABB7A82187CF8BADC033D /* RNDateTimePicker.h in Headers */ = {isa = PBXBuildFile; fileRef = 1DE5D6F059D9DA87F5CCB88A98789EFC /* RNDateTimePicker.h */; settings = {ATTRIBUTES = (Project, ); }; }; E102CFF1546031E99D8ED019337D349C /* SDWebImageDownloaderOperation.h in Headers */ = {isa = PBXBuildFile; fileRef = 9A0AEEA6606F62C0D917BF535E738CB7 /* SDWebImageDownloaderOperation.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E11061E344FB4CBB84F6A1202D9965EB /* RCTModalHostView.m in Sources */ = {isa = PBXBuildFile; fileRef = D30F484C51318F058A152C642B0920B9 /* RCTModalHostView.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + E11061E344FB4CBB84F6A1202D9965EB /* RCTModalHostView.m in Sources */ = {isa = PBXBuildFile; fileRef = 9A18F10C9821DF66F748687E16DED678 /* RCTModalHostView.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; E112A255C08943966E750880118D5170 /* GDTCOREvent+GDTCCTSupport.h in Headers */ = {isa = PBXBuildFile; fileRef = A73099DD75017003E8AAB31EE4015F3C /* GDTCOREvent+GDTCCTSupport.h */; settings = {ATTRIBUTES = (Project, ); }; }; E11E13EF27F699205C8B6E7CA84524E0 /* ar.lproj in Resources */ = {isa = PBXBuildFile; fileRef = 2C792AE38779EDE06A21B3BE620874DE /* ar.lproj */; }; E1266B55B38842C13A05CFD3DF2E4C0D /* StaticSingletonManager.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3750DCB8CD91AD520B68D632A0F0309E /* StaticSingletonManager.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; E15D130E3C58DDC3D2D8FFA5FBA60F8B /* FIRInstallationsHTTPError.m in Sources */ = {isa = PBXBuildFile; fileRef = 18D0B14CB21D552A9902E8BE99F064A5 /* FIRInstallationsHTTPError.m */; }; - E184ED1EF650D5B76404EEEB16CF6A83 /* RCTSourceCode.mm in Sources */ = {isa = PBXBuildFile; fileRef = 1ED5113556EDEA9A3BADC47429DE2171 /* RCTSourceCode.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; - E19B575090355E623900BC4E520EE66A /* REATransitionManager.m in Sources */ = {isa = PBXBuildFile; fileRef = BF97EB65D34483E03A6E8B7FCF89F179 /* REATransitionManager.m */; }; - E1ABB84690F52BCA204739061FB1D822 /* RCTPackagerConnection.mm in Sources */ = {isa = PBXBuildFile; fileRef = B4F7DE84791690C51E30C09DE392C126 /* RCTPackagerConnection.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + E184ED1EF650D5B76404EEEB16CF6A83 /* RCTSourceCode.mm in Sources */ = {isa = PBXBuildFile; fileRef = F1FD21236AAA501D54541BE94EF23DE8 /* RCTSourceCode.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + E19B575090355E623900BC4E520EE66A /* REATransitionManager.m in Sources */ = {isa = PBXBuildFile; fileRef = F6B30153BFAEAFB9FAFBEB193DD2597F /* REATransitionManager.m */; }; + E1ABB84690F52BCA204739061FB1D822 /* RCTPackagerConnection.mm in Sources */ = {isa = PBXBuildFile; fileRef = F0C0BF47FB1A237DDEDD08D6FF6A3A32 /* RCTPackagerConnection.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; E1B270459C9A3A1F331BAB2B69F8B319 /* Align.h in Headers */ = {isa = PBXBuildFile; fileRef = 762F91AA4CC210073E47021B742A3D5A /* Align.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E1C92AEEAF907D9FBB3D536670867DE4 /* UMAppLoaderProvider.m in Sources */ = {isa = PBXBuildFile; fileRef = F732528299336083E0EC2A0D9EB1D5BC /* UMAppLoaderProvider.m */; }; - E1E55537614C50B66D0A05AFA76CF618 /* RCTCxxModule.mm in Sources */ = {isa = PBXBuildFile; fileRef = 8ED6C5125E97E6C0BE9830041766E1FF /* RCTCxxModule.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + E1C92AEEAF907D9FBB3D536670867DE4 /* UMAppLoaderProvider.m in Sources */ = {isa = PBXBuildFile; fileRef = 5AED3CDAB8F993EF5F215585D86C4E7E /* UMAppLoaderProvider.m */; }; + E1E55537614C50B66D0A05AFA76CF618 /* RCTCxxModule.mm in Sources */ = {isa = PBXBuildFile; fileRef = 71769EBDB16C53B0BBB8EAB513CE9551 /* RCTCxxModule.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; E1E6C85C75FFE608F8639A084D7ADD81 /* Stdio.h in Headers */ = {isa = PBXBuildFile; fileRef = EA3190DAA7FB97C9C61B7A4D473A8419 /* Stdio.h */; settings = {ATTRIBUTES = (Project, ); }; }; E2067AE94EC192C9626F836E18255B3D /* SKInvalidation.h in Headers */ = {isa = PBXBuildFile; fileRef = CD4CC32F46263273DDFEA3E9FB6BEB27 /* SKInvalidation.h */; settings = {ATTRIBUTES = (Project, ); }; }; E208C5E8C08C4B7CD8BF285F8C6BBE3B /* GULLogger.m in Sources */ = {isa = PBXBuildFile; fileRef = B71AD9BCECD7CDE1AC011FA0CBC35ED9 /* GULLogger.m */; }; E22214E4EF2CE522B3E8311CF4A002F9 /* FrameTransport.h in Headers */ = {isa = PBXBuildFile; fileRef = F07F53D45BB15DCCEE60E68A08E9F892 /* FrameTransport.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E246B0FBD593E407AC5122AE3D282326 /* RCTSlider.h in Headers */ = {isa = PBXBuildFile; fileRef = FA4724C19C35BF54DCFD2A635A716A11 /* RCTSlider.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E246B0FBD593E407AC5122AE3D282326 /* RCTSlider.h in Headers */ = {isa = PBXBuildFile; fileRef = BC1726A8A195FCE50786A827566C5D5B /* RCTSlider.h */; settings = {ATTRIBUTES = (Project, ); }; }; E265227A4C1DB2311EFF7D1A481C37A6 /* SSLOptions.h in Headers */ = {isa = PBXBuildFile; fileRef = 93CBA8312ED75FAD8501C96FEFAB5F9C /* SSLOptions.h */; settings = {ATTRIBUTES = (Project, ); }; }; E275864857518C091CD5FF4CEEE87FB0 /* PTChannel.h in Headers */ = {isa = PBXBuildFile; fileRef = A02FCE0F66D4AD8D30EF8F3D3220A020 /* PTChannel.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E28C347037A4A0DFBD48DDF156857B2D /* YGLayout.h in Headers */ = {isa = PBXBuildFile; fileRef = 6C14D04AF4936D353627E14B2E93652A /* YGLayout.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E28DA42054EF0B4797C743DDC9F6795D /* RCTVirtualTextViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 0265D27998B6384C969077F10D629CE7 /* RCTVirtualTextViewManager.m */; }; - E2B505BA3561339CEE156D9624E37D99 /* RCTGIFImageDecoder.mm in Sources */ = {isa = PBXBuildFile; fileRef = 0FC1C89F649762C3221FFAFC5C91E2B9 /* RCTGIFImageDecoder.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; - E2B50BF3ED60EBB52F0FED02FF43B131 /* YGEnums.h in Headers */ = {isa = PBXBuildFile; fileRef = 8D7462D24C01C321F7282227C7D663F1 /* YGEnums.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E28C347037A4A0DFBD48DDF156857B2D /* YGLayout.h in Headers */ = {isa = PBXBuildFile; fileRef = F6DA36798F450E3C1D96AEBA2346B891 /* YGLayout.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E28DA42054EF0B4797C743DDC9F6795D /* RCTVirtualTextViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = F95DA952A03887E593F6A72FF89BD818 /* RCTVirtualTextViewManager.m */; }; + E2B505BA3561339CEE156D9624E37D99 /* RCTGIFImageDecoder.mm in Sources */ = {isa = PBXBuildFile; fileRef = AB9C060C9A1EE73FCF17E24F9E663F51 /* RCTGIFImageDecoder.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + E2B50BF3ED60EBB52F0FED02FF43B131 /* YGEnums.h in Headers */ = {isa = PBXBuildFile; fileRef = 57BF4EA60161A139C42C1FA0529DB664 /* YGEnums.h */; settings = {ATTRIBUTES = (Project, ); }; }; E2B75EB8E105F9156805FA135498B216 /* FIRInstallationsStoredItem.m in Sources */ = {isa = PBXBuildFile; fileRef = C1C86AC0E12A9C6E7EC6EF89D40170C9 /* FIRInstallationsStoredItem.m */; }; - E2C94D67399BCFD10FBDAA65B853AC31 /* RCTProfileTrampoline-x86_64.S in Sources */ = {isa = PBXBuildFile; fileRef = 7DF40FF6B975F6396C79CB878EF7628C /* RCTProfileTrampoline-x86_64.S */; }; + E2C94D67399BCFD10FBDAA65B853AC31 /* RCTProfileTrampoline-x86_64.S in Sources */ = {isa = PBXBuildFile; fileRef = BA901E7DBEC0BA22FF84DA57D36DAC46 /* RCTProfileTrampoline-x86_64.S */; }; E2D0E73041944854FC7C8B24B7C2D9D1 /* FBLPromise+Retry.h in Headers */ = {isa = PBXBuildFile; fileRef = 74C8BC1CD4600E60C84F3B0D429967C4 /* FBLPromise+Retry.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E2D1A3C05D90991A1A8F6DC350A98783 /* RCTPropsAnimatedNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 613CB7E41ABB9059B0BE45D7287F19F0 /* RCTPropsAnimatedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E2E490B23FB206AE0B3CD336767D0DC4 /* RNDeviceInfo-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 32AA328984C187EE8B0FADB47E97921F /* RNDeviceInfo-dummy.m */; }; - E2E76E1C58DF161E23D699B24CF713CF /* RCTInspectorPackagerConnection.m in Sources */ = {isa = PBXBuildFile; fileRef = 9AC7037A842FA66D08FF6BD2709717AF /* RCTInspectorPackagerConnection.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + E2D1A3C05D90991A1A8F6DC350A98783 /* RCTPropsAnimatedNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 527DDD151C134F679B2D642F96C3CDCA /* RCTPropsAnimatedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E2E490B23FB206AE0B3CD336767D0DC4 /* RNDeviceInfo-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 16E7744623DB14672C28A961D8EADD76 /* RNDeviceInfo-dummy.m */; }; + E2E76E1C58DF161E23D699B24CF713CF /* RCTInspectorPackagerConnection.m in Sources */ = {isa = PBXBuildFile; fileRef = 7DB02794A0FCD7198A16BD816D962867 /* RCTInspectorPackagerConnection.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; E2EAD453E4A4317DCF42ACCF7D081D48 /* FIRCLSHost.h in Headers */ = {isa = PBXBuildFile; fileRef = 7F1268F69DB9F48462D2E8AE12F62688 /* FIRCLSHost.h */; settings = {ATTRIBUTES = (Project, ); }; }; E305DF061F26647A3385379DB71FFDC6 /* RequestResponseRequester.h in Headers */ = {isa = PBXBuildFile; fileRef = C413BD72DDEBD4CCC83EC286C1FA5C99 /* RequestResponseRequester.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E3087E303D8E64C17038E7A303283D7F /* EXPermissions.m in Sources */ = {isa = PBXBuildFile; fileRef = 1E96054DFD340F0B512E53F8C3CF31F3 /* EXPermissions.m */; }; + E3087E303D8E64C17038E7A303283D7F /* EXPermissions.m in Sources */ = {isa = PBXBuildFile; fileRef = 5604F6A1E1D9E12C63B9ABF733DC7D47 /* EXPermissions.m */; }; E32C94E302AD5CB8E0E94BAD8A66D753 /* FIRCLSMachException.c in Sources */ = {isa = PBXBuildFile; fileRef = F25D520DE4EF61DA503BF3B66A93B846 /* FIRCLSMachException.c */; }; - E36929018C3957171BBCD0F33593A233 /* BSG_KSSingleton.h in Headers */ = {isa = PBXBuildFile; fileRef = 0D3C22A6CCD6685521812D4A6F5434B7 /* BSG_KSSingleton.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E36929018C3957171BBCD0F33593A233 /* BSG_KSSingleton.h in Headers */ = {isa = PBXBuildFile; fileRef = 5295CC5E3D7304F709069F1A7D292DDB /* BSG_KSSingleton.h */; settings = {ATTRIBUTES = (Project, ); }; }; E36CE82EE6E8EB310110289E09673AA7 /* Likely.h in Headers */ = {isa = PBXBuildFile; fileRef = A76F3740E25161D6CA04EFAEA904892B /* Likely.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E39E3634C4CA7E2E69BB72A8AF9DF0DC /* RCTKeyCommandsManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 9D7C3470532BBEEA08DDD0E597BF0C2F /* RCTKeyCommandsManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E3BEB1D6134538FEB6EF8E1F561712D1 /* REAOperatorNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 20083FCD33955CBF680506B2DA0CA847 /* REAOperatorNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E39E3634C4CA7E2E69BB72A8AF9DF0DC /* RCTKeyCommandsManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 02B0AFD0AFE2860DBA2E4EE0CA8F9940 /* RCTKeyCommandsManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E3BEB1D6134538FEB6EF8E1F561712D1 /* REAOperatorNode.h in Headers */ = {isa = PBXBuildFile; fileRef = F82B3731EBF63DA2A05EFEF28118970A /* REAOperatorNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; E3D417E505AF2104EB996901585FD373 /* UninitializedMemoryHacks.h in Headers */ = {isa = PBXBuildFile; fileRef = 395D5B2342644C97DDCBFEE82D2430B0 /* UninitializedMemoryHacks.h */; settings = {ATTRIBUTES = (Project, ); }; }; E3DEE879EF45B3369CCA589810AC4F9D /* Pretty.h in Headers */ = {isa = PBXBuildFile; fileRef = B7344D282B26110B08D7B8D7D1895AFE /* Pretty.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E3EEF9497ECA3E6A336597A52AFE725F /* RCTDevMenu.h in Headers */ = {isa = PBXBuildFile; fileRef = FA8FAA1FD937DAED70D1867C3A45EA3F /* RCTDevMenu.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E3EEF9497ECA3E6A336597A52AFE725F /* RCTDevMenu.h in Headers */ = {isa = PBXBuildFile; fileRef = 59E79A9C43DBE1DC8F04DFE61673CF5C /* RCTDevMenu.h */; settings = {ATTRIBUTES = (Project, ); }; }; E3F33BB478775D7C31E8EFF44424CABC /* String-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = D6F5F31CE1DC8AB6C91FC6B2B6B7B46C /* String-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E3FFAD5E1E8EB56B739FE7117329E4AA /* REACondNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 6F06679A9EB4706666C01F5581716CBE /* REACondNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E3FFD8F2909FB8E08E4EBB0C117005F5 /* BSG_KSFileUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = 209B08A2B00CCB936D9927233C013307 /* BSG_KSFileUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E3FFAD5E1E8EB56B739FE7117329E4AA /* REACondNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 490F639165FEF1EBB90D7CE4AEA832A1 /* REACondNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E3FFD8F2909FB8E08E4EBB0C117005F5 /* BSG_KSFileUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = 3C72812947390EF4F3FE3AC3C10D0C77 /* BSG_KSFileUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; E432F1ADFEA6AF93027885C4153879EB /* zh-Hans.lproj in Resources */ = {isa = PBXBuildFile; fileRef = E843110D34ACC36D6BEF37D1EFAACD13 /* zh-Hans.lproj */; }; E4346CBB30A1CE0D0CCFC60AB0111070 /* Aligned.h in Headers */ = {isa = PBXBuildFile; fileRef = 5D5D2817A32EBC04C23F895A96070206 /* Aligned.h */; settings = {ATTRIBUTES = (Project, ); }; }; E435A140ED65F86C87BCE291EDA0F8FE /* StringKeyedUnorderedSet.h in Headers */ = {isa = PBXBuildFile; fileRef = EC39F54F14999F11502ABA2AA129EC99 /* StringKeyedUnorderedSet.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E4371B1E44E185F3F7756EE3FFC0D0D4 /* RNLongPressHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 5776D2B1674A9AC9CE83D0E67BB4C08E /* RNLongPressHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E4371B1E44E185F3F7756EE3FFC0D0D4 /* RNLongPressHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 2F552E514D2EF12B47525EBC4FF41BB9 /* RNLongPressHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; E43956E9A9E6953EC5051321EF2BB8A4 /* FIRCLSDemangleOperation.mm in Sources */ = {isa = PBXBuildFile; fileRef = C5275B82FE252A5A80218CFC82C526A5 /* FIRCLSDemangleOperation.mm */; }; E44CC82BF34E84E10A31CF56B0A6337A /* SKYogaKitHelper.h in Headers */ = {isa = PBXBuildFile; fileRef = 06C6F2689B9C827B9FA44CF9C1F2FFC0 /* SKYogaKitHelper.h */; settings = {ATTRIBUTES = (Project, ); }; }; E490A09CBBCE0CDE87FE320AACBA49B5 /* Async.h in Headers */ = {isa = PBXBuildFile; fileRef = 8C52C315297E24DD1FD38925FB48D52D /* Async.h */; settings = {ATTRIBUTES = (Project, ); }; }; @@ -3070,48 +3054,48 @@ E4CB4269099FD9CEF2F73AB9439C7B4C /* FIRCLSDwarfExpressionMachine.h in Headers */ = {isa = PBXBuildFile; fileRef = B62F3C7D15B1B9DC583296B7645BB20A /* FIRCLSDwarfExpressionMachine.h */; settings = {ATTRIBUTES = (Project, ); }; }; E4D6FC3D6058A2F376C5C6D38B9C8442 /* FingerprintPolynomial.h in Headers */ = {isa = PBXBuildFile; fileRef = 4ED97801AF64B223BBECA86F35A42827 /* FingerprintPolynomial.h */; settings = {ATTRIBUTES = (Project, ); }; }; E4D838084D6CC4D8518F1896EB83CCE4 /* MallocImpl.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FEF7E267E91ED2930A54BC3EF13DEAEE /* MallocImpl.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - E4E551E1ABD6CEF778DA224C74B13641 /* BugsnagFileStore.m in Sources */ = {isa = PBXBuildFile; fileRef = 2733B021E283B7F19A3BBC606D0D93E3 /* BugsnagFileStore.m */; }; - E4F5ECEEEDC18FAF0FA4F228EF2A9596 /* BSG_KSCrashSentry.c in Sources */ = {isa = PBXBuildFile; fileRef = 62EA869E0FD95F6A5D60988D06E375EA /* BSG_KSCrashSentry.c */; }; + E4E551E1ABD6CEF778DA224C74B13641 /* BugsnagFileStore.m in Sources */ = {isa = PBXBuildFile; fileRef = 175A70968F69D3696ABAE351994F6E53 /* BugsnagFileStore.m */; }; + E4F5ECEEEDC18FAF0FA4F228EF2A9596 /* BSG_KSCrashSentry.c in Sources */ = {isa = PBXBuildFile; fileRef = B6E339C45A232633FEDBD95AF585254D /* BSG_KSCrashSentry.c */; }; E4FE62A73A78E2082178236455F1A718 /* Shell.h in Headers */ = {isa = PBXBuildFile; fileRef = 93DB970351CFB42D89631ED4E5475730 /* Shell.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E5197CAC70A0736A48A6B440088782AF /* RCTAssert.h in Headers */ = {isa = PBXBuildFile; fileRef = 76426A494B8D38A077E05F787E76ECE1 /* RCTAssert.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E5197CAC70A0736A48A6B440088782AF /* RCTAssert.h in Headers */ = {isa = PBXBuildFile; fileRef = DF1FF13E6E8D3CBF2EAD96AEBE0CD305 /* RCTAssert.h */; settings = {ATTRIBUTES = (Project, ); }; }; E54627196D731B399218E48C6FA9CF9C /* FBDefines.h in Headers */ = {isa = PBXBuildFile; fileRef = 115B15905C9E27E8F291210C81B4D2A6 /* FBDefines.h */; settings = {ATTRIBUTES = (Project, ); }; }; E547BCB79227691987B5794BFB30C99D /* StackTraceUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = 0DBCD73AE6E477EC41137748E2B30461 /* StackTraceUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E554598FD317EE9149AB8454AA9059F8 /* RNScreens-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = C5F67A1486AE8750C375B914FA3A8C3D /* RNScreens-dummy.m */; }; + E554598FD317EE9149AB8454AA9059F8 /* RNScreens-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 824FB8620083A7857CB4544205469C8A /* RNScreens-dummy.m */; }; E5782D8BD91896AAF55C1CBCBEF37684 /* SDImageWebPCoder.m in Sources */ = {isa = PBXBuildFile; fileRef = 048B99AAC8A1A2A86ABA6C8584D941F7 /* SDImageWebPCoder.m */; }; E5AC340EBD1517A25C5CD160306456FA /* TOCropToolbar.m in Sources */ = {isa = PBXBuildFile; fileRef = F7D0D31313F3FBE3369B22495015B0A1 /* TOCropToolbar.m */; }; E5CC97DD2276BCDD567C0F159E753813 /* SDImageLoader.m in Sources */ = {isa = PBXBuildFile; fileRef = 8581342460145C7EC9F6B5F357C02246 /* SDImageLoader.m */; }; E5E200E55C0D22A46FCBB2335FA84B25 /* ScopeGuard.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3489F8F38CF643B6E1A1188CFBF5A45F /* ScopeGuard.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - E5E972FB7DDF74A89E1E077D72F77FD4 /* RCTVibrationPlugins.mm in Sources */ = {isa = PBXBuildFile; fileRef = 6465BBA18EC33F3B5EE4492B2E668759 /* RCTVibrationPlugins.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; - E5FB31F6C23D375DE5CBC98123BE9B8D /* RNGestureHandlerManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 8187E8B4641324A844BDF9D6489123F6 /* RNGestureHandlerManager.m */; }; - E5FCB3B56EB9D8309120717E8C908ECB /* BSG_KSSignalInfo.c in Sources */ = {isa = PBXBuildFile; fileRef = FB2D495D2E4C57115567F408F1DD4A0E /* BSG_KSSignalInfo.c */; }; + E5E972FB7DDF74A89E1E077D72F77FD4 /* RCTVibrationPlugins.mm in Sources */ = {isa = PBXBuildFile; fileRef = 57E410A7F4B773880A4D4F1B53603A95 /* RCTVibrationPlugins.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + E5FB31F6C23D375DE5CBC98123BE9B8D /* RNGestureHandlerManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 2FF28F4AD267E8CC9B11CA62B73C5685 /* RNGestureHandlerManager.m */; }; + E5FCB3B56EB9D8309120717E8C908ECB /* BSG_KSSignalInfo.c in Sources */ = {isa = PBXBuildFile; fileRef = 3640393C5156F9C77C23B5441732D675 /* BSG_KSSignalInfo.c */; }; E5FF1743F9D79897E8139453D5C34C92 /* AsyncPipe.h in Headers */ = {isa = PBXBuildFile; fileRef = DC789D5F1A30C773EE83B38BF1D894B9 /* AsyncPipe.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E60C8A26C5147E5A4E959B202E1C7BDF /* RCTJSInvokerModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 3555D2278049B0F16B5CD2231BAE4CCE /* RCTJSInvokerModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E624CC4517B69DD2398DFBFCBB6C35AC /* RCTSurfaceStage.h in Headers */ = {isa = PBXBuildFile; fileRef = 792DBE47299BD2B68D5EB6DBD610DB7D /* RCTSurfaceStage.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E6264E5B361D4864874699CAC2CAC3D1 /* RCTMultipartStreamReader.h in Headers */ = {isa = PBXBuildFile; fileRef = 6EDAE9344FA470CF6BC3954CE47ACBC7 /* RCTMultipartStreamReader.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E60C8A26C5147E5A4E959B202E1C7BDF /* RCTJSInvokerModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 982337379B5505C2FF997F9BE7F00ACC /* RCTJSInvokerModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E624CC4517B69DD2398DFBFCBB6C35AC /* RCTSurfaceStage.h in Headers */ = {isa = PBXBuildFile; fileRef = 12318603634247B4D19AFC3EE97DE563 /* RCTSurfaceStage.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E6264E5B361D4864874699CAC2CAC3D1 /* RCTMultipartStreamReader.h in Headers */ = {isa = PBXBuildFile; fileRef = FE26C3940DF317A6CE0C308355B10250 /* RCTMultipartStreamReader.h */; settings = {ATTRIBUTES = (Project, ); }; }; E62D0F093E777DD81625A8DD305B63A7 /* FIRCLSExecutionIdentifierModel.h in Headers */ = {isa = PBXBuildFile; fileRef = 6B532D3A71FE4CCB1130CF0B704D9A0D /* FIRCLSExecutionIdentifierModel.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E6335683CD8324A549F41BBB5F393D3A /* ARTShape.m in Sources */ = {isa = PBXBuildFile; fileRef = 5D65BA6FD0D2C03EA801C528901BAA7F /* ARTShape.m */; }; + E6335683CD8324A549F41BBB5F393D3A /* ARTShape.m in Sources */ = {isa = PBXBuildFile; fileRef = 45103FAEF9BE9D4E0926E951DD2807C2 /* ARTShape.m */; }; E636F64793DF12561685F8A8C80F63FF /* stl_logging.h in Headers */ = {isa = PBXBuildFile; fileRef = 6AA5867FE895A65536F3F6148AA6BAE4 /* stl_logging.h */; settings = {ATTRIBUTES = (Project, ); }; }; E639715159F444D5BA9D88E495ABFF4B /* log_severity.h in Headers */ = {isa = PBXBuildFile; fileRef = 637BB8714C78B885B4751C684DD857C9 /* log_severity.h */; settings = {ATTRIBUTES = (Project, ); }; }; E63EA8710EE016ED7487643D8A30E255 /* FIRAnalyticsConfiguration.m in Sources */ = {isa = PBXBuildFile; fileRef = 69E34D6C25ADA1C118057E1787651A66 /* FIRAnalyticsConfiguration.m */; }; - E670EB08E92C89207D30458665DC8BA1 /* JSBundleType.h in Headers */ = {isa = PBXBuildFile; fileRef = 6A1D8524615EACD00EA8DFE4FD99791F /* JSBundleType.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E67397B57A67F4537980EFFB165C4138 /* NSDataBigString.mm in Sources */ = {isa = PBXBuildFile; fileRef = D5987EC0DF3517E6D9F5C244C1837F1B /* NSDataBigString.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + E670EB08E92C89207D30458665DC8BA1 /* JSBundleType.h in Headers */ = {isa = PBXBuildFile; fileRef = C07D82705129A0470532083F125AE78E /* JSBundleType.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E67397B57A67F4537980EFFB165C4138 /* NSDataBigString.mm in Sources */ = {isa = PBXBuildFile; fileRef = 1F0A457BA1B534C2D66A37D6CEAEDCE0 /* NSDataBigString.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; E67F1572C88EAE81A75D56813DC25A81 /* Init.cpp in Sources */ = {isa = PBXBuildFile; fileRef = CDB9221B769ECAD8F1A1D9A11975DBEE /* Init.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - E6B28EC2EAA76DA7CBCA209D55786E4C /* RNFastImage-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 9D6562AF4C78020462C6A942F8BE3937 /* RNFastImage-dummy.m */; }; - E6BE61368A0EB10BF9656C94C0B1F6ED /* RCTComponentEvent.h in Headers */ = {isa = PBXBuildFile; fileRef = 616759E5E19CC5E19518503433D74829 /* RCTComponentEvent.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E6B28EC2EAA76DA7CBCA209D55786E4C /* RNFastImage-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 34F954E9B90DF67149D1DF8AEA262E2B /* RNFastImage-dummy.m */; }; + E6BE61368A0EB10BF9656C94C0B1F6ED /* RCTComponentEvent.h in Headers */ = {isa = PBXBuildFile; fileRef = E7E0457D29F9D59DB17AB6FD06FAF418 /* RCTComponentEvent.h */; settings = {ATTRIBUTES = (Project, ); }; }; E6E661E87351F35E9363075A0879E1B8 /* UIView+Yoga.h in Headers */ = {isa = PBXBuildFile; fileRef = 9A3A339A287C5D9E83CC0225775DEA6B /* UIView+Yoga.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E6EEA57B39231F94F387361EDBC11C38 /* RNNotifications.h in Headers */ = {isa = PBXBuildFile; fileRef = F67E5206CC7CAF83831158393EBF1033 /* RNNotifications.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E6EEA57B39231F94F387361EDBC11C38 /* RNNotifications.h in Headers */ = {isa = PBXBuildFile; fileRef = 200DE445014A44C9F9D4B2F83F737F11 /* RNNotifications.h */; settings = {ATTRIBUTES = (Project, ); }; }; E6FE2807B85DDFB3EA91EEF768018D80 /* dec_sse2.c in Sources */ = {isa = PBXBuildFile; fileRef = D59554B9CAB55F861B07798C53BE7454 /* dec_sse2.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; E707A2FAC0C36218BA2830206A0D76B0 /* NSButton+WebCache.m in Sources */ = {isa = PBXBuildFile; fileRef = 3BF0A46C403E493EA8A1C2CCD49A4467 /* NSButton+WebCache.m */; }; - E7082C644CFE1566090060EC3C44F13D /* JSINativeModules.h in Headers */ = {isa = PBXBuildFile; fileRef = 01FE376F0F3AF767911A57088F87BBB1 /* JSINativeModules.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E7082C644CFE1566090060EC3C44F13D /* JSINativeModules.h in Headers */ = {isa = PBXBuildFile; fileRef = 2D8EC94C01ED675E63A875FCA6393D47 /* JSINativeModules.h */; settings = {ATTRIBUTES = (Project, ); }; }; E713C3CADA28F31EE3CAAF5FCC72E4EB /* GULReachabilityMessageCode.h in Headers */ = {isa = PBXBuildFile; fileRef = 61C940B8E70B47D19346B71BC35441D0 /* GULReachabilityMessageCode.h */; settings = {ATTRIBUTES = (Project, ); }; }; E71ABA1C157CF07D0AB0F5123F4B3DF8 /* FlipperUtil.m in Sources */ = {isa = PBXBuildFile; fileRef = BA640F40EF83A956AFC558E6EC6BDCF3 /* FlipperUtil.m */; settings = {COMPILER_FLAGS = "-DDEBUG=1 -DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0"; }; }; E71B72B642D137E677797CB142A8FF72 /* FIRInstallationsStoredAuthToken.m in Sources */ = {isa = PBXBuildFile; fileRef = C7F97FA9FF64711D9D0A4C2E3E403972 /* FIRInstallationsStoredAuthToken.m */; }; E71B7C43CA2B681CE0F3BE76936B0452 /* DynamicConverter.h in Headers */ = {isa = PBXBuildFile; fileRef = 363051A351FB101CB4DB757D0C56E942 /* DynamicConverter.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E725C71DABD8F1D1E7A7BD298B51CA30 /* RCTDevLoadingView.mm in Sources */ = {isa = PBXBuildFile; fileRef = AD6EB06C9B17E2743D7EF1A5BA5C5117 /* RCTDevLoadingView.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + E725C71DABD8F1D1E7A7BD298B51CA30 /* RCTDevLoadingView.mm in Sources */ = {isa = PBXBuildFile; fileRef = 4A7225A2194793114250CE1927337DD2 /* RCTDevLoadingView.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; E72CD319C8F15EBFB6810ECE7EDA7A3D /* dwarf.h in Headers */ = {isa = PBXBuildFile; fileRef = 7297C9E3B233B6C109D53F693029CB9C /* dwarf.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E738B749AC9DBA6C3C3873C41415DF75 /* RCTUIUtils.m in Sources */ = {isa = PBXBuildFile; fileRef = 83EB253967C7837D281EA81637EEFA3C /* RCTUIUtils.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + E738B749AC9DBA6C3C3873C41415DF75 /* RCTUIUtils.m in Sources */ = {isa = PBXBuildFile; fileRef = 2C6B8FF9417E97CC57C19588EC73AADC /* RCTUIUtils.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; E7584AD4F81B71B32D045FCA44EBC026 /* SKDescriptorMapper.mm in Sources */ = {isa = PBXBuildFile; fileRef = 7AEF9523DD3A511863BFB2E9AC5ACC12 /* SKDescriptorMapper.mm */; settings = {COMPILER_FLAGS = "-DDEBUG=1 -DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0"; }; }; - E79CC0FEF54CA45A7593ADEDEFEDF2F7 /* REABlockNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 841AD936110C13F90749C632ADF377FE /* REABlockNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E79CC0FEF54CA45A7593ADEDEFEDF2F7 /* REABlockNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 5D289C87CB35562DC78D801729917477 /* REABlockNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; E79E09130D1B077C25C4840E4C51B025 /* HazptrRec.h in Headers */ = {isa = PBXBuildFile; fileRef = 2C4669C842B9EB28FB777A181968F06D /* HazptrRec.h */; settings = {ATTRIBUTES = (Project, ); }; }; E7A62D6CDBAA229E65AE672373925C76 /* fa.lproj in Resources */ = {isa = PBXBuildFile; fileRef = 1AF5D3EC1100F113CC3D3F0470618427 /* fa.lproj */; }; E7B341F66C139B10A13B3829F1EF50BF /* F14Policy.h in Headers */ = {isa = PBXBuildFile; fileRef = 9A1FFCE20159753D7E09360DCAC6D3DC /* F14Policy.h */; settings = {ATTRIBUTES = (Project, ); }; }; @@ -3120,62 +3104,62 @@ E7C35E716B800BD4F5E87951BB2B21B6 /* strtod.h in Headers */ = {isa = PBXBuildFile; fileRef = A77E722608D3EE95549C9CCAF5BA7C98 /* strtod.h */; settings = {ATTRIBUTES = (Project, ); }; }; E7D2340812F03790C705D669D0BECD8D /* json.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 497B3EE29A71EFB193F3A3E014DA8053 /* json.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; E813A1041A763154AFD217F24E043128 /* GDTCORPrioritizer.h in Headers */ = {isa = PBXBuildFile; fileRef = AD504639AA59D8D167ABFBA539643A19 /* GDTCORPrioritizer.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E81B4FD413363CBA1C3EF0C8871AF34F /* REACallFuncNode.m in Sources */ = {isa = PBXBuildFile; fileRef = F73BE8E26076DC528C032DAD41B0A191 /* REACallFuncNode.m */; }; + E81B4FD413363CBA1C3EF0C8871AF34F /* REACallFuncNode.m in Sources */ = {isa = PBXBuildFile; fileRef = C87081B7A7CE9EBCD9709C1C321C4D4A /* REACallFuncNode.m */; }; E82C91CC8CEB33B774DB5E1C9E5D8FB8 /* MicroSpinLock.h in Headers */ = {isa = PBXBuildFile; fileRef = E32056F313D3A13B7028BEA5BD8D08A5 /* MicroSpinLock.h */; settings = {ATTRIBUTES = (Project, ); }; }; E835E2397E28D09CD18820BE0D360894 /* FIRCLSProcess.c in Sources */ = {isa = PBXBuildFile; fileRef = B95FD3CBCD00F7E4127E29929C64FE90 /* FIRCLSProcess.c */; }; - E84ABD9A0B93F64D9C7933A5EFC6C633 /* RCTCxxConvert.h in Headers */ = {isa = PBXBuildFile; fileRef = 6755B74140AB33575D7F7612912E3CCB /* RCTCxxConvert.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E84ABD9A0B93F64D9C7933A5EFC6C633 /* RCTCxxConvert.h in Headers */ = {isa = PBXBuildFile; fileRef = BEC5DF2A419DAEE79BE17C9027846C39 /* RCTCxxConvert.h */; settings = {ATTRIBUTES = (Project, ); }; }; E851828779F5FC7B8B8C177DB884EC6F /* FBLPromise+Do.h in Headers */ = {isa = PBXBuildFile; fileRef = 4CDB9425EF8E65082AEB3B13FB362BCD /* FBLPromise+Do.h */; settings = {ATTRIBUTES = (Project, ); }; }; E86715E049DB72C646A5223D1367BA05 /* AsyncTransportCertificate.h in Headers */ = {isa = PBXBuildFile; fileRef = 7095C3CCC82012A0435F91A76575C28A /* AsyncTransportCertificate.h */; settings = {ATTRIBUTES = (Project, ); }; }; E876DAF2BA76684D8B7601C3DA05A5FE /* SafeAssert.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 45809FAF67F2952419D4D7F8B3B2E511 /* SafeAssert.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - E88527231957C341D17DF6C918BACCB7 /* RCTMultipartDataTask.h in Headers */ = {isa = PBXBuildFile; fileRef = 9BBA329A5AFD8FB3EE0B6841AC58A737 /* RCTMultipartDataTask.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E889BAA1202A6A6A17D561D0EA03F2D0 /* RCTTextSelection.m in Sources */ = {isa = PBXBuildFile; fileRef = F0308CC8B4C0BB684833C4A8D160333B /* RCTTextSelection.m */; }; - E893729E87251274E6D1D3B51566E3B4 /* RNCAppearance.m in Sources */ = {isa = PBXBuildFile; fileRef = 9D94BC0386E5D8C156D64018EBAD9D52 /* RNCAppearance.m */; }; - E8A6ABDCF3C0C5876058B074C4E29BB6 /* UMJavaScriptContextProvider.h in Headers */ = {isa = PBXBuildFile; fileRef = 900EEA5C36AE7A75E22929B621BA6B8A /* UMJavaScriptContextProvider.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E88527231957C341D17DF6C918BACCB7 /* RCTMultipartDataTask.h in Headers */ = {isa = PBXBuildFile; fileRef = 2554F5BFBCAFD71425177DE0CF41C7C0 /* RCTMultipartDataTask.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E889BAA1202A6A6A17D561D0EA03F2D0 /* RCTTextSelection.m in Sources */ = {isa = PBXBuildFile; fileRef = E9F90B8FCB470D2192F31D6C144E76C7 /* RCTTextSelection.m */; }; + E893729E87251274E6D1D3B51566E3B4 /* RNCAppearance.m in Sources */ = {isa = PBXBuildFile; fileRef = 8346B6020B09E86465712F8EBDE2081E /* RNCAppearance.m */; }; + E8A6ABDCF3C0C5876058B074C4E29BB6 /* UMJavaScriptContextProvider.h in Headers */ = {isa = PBXBuildFile; fileRef = E5196A8601779BD3365AB38A763B910E /* UMJavaScriptContextProvider.h */; settings = {ATTRIBUTES = (Project, ); }; }; E8BD5EA5DBC41BFCA5B323A9C87DBAC1 /* FIRStackFrame_Private.h in Headers */ = {isa = PBXBuildFile; fileRef = 742912E2BCFF65A9888B6A3128937A57 /* FIRStackFrame_Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E8C7FC466065D3CE50FD279E21715A2A /* RCTJSStackFrame.h in Headers */ = {isa = PBXBuildFile; fileRef = 238862B6467AD75F3C8F74F4E60AC9A0 /* RCTJSStackFrame.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E8C7FC466065D3CE50FD279E21715A2A /* RCTJSStackFrame.h in Headers */ = {isa = PBXBuildFile; fileRef = 734D20FDB284D37C9DFD03C2E27A111F /* RCTJSStackFrame.h */; settings = {ATTRIBUTES = (Project, ); }; }; E8E57DC7FD3E1405D821BA98E547E940 /* CancellationToken.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 7F58BD9A54067B2D76E77DC7D89AEEBD /* CancellationToken.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - E90C8AD82ACBCAB7536776D26BA11D7C /* BSGOutOfMemoryWatchdog.m in Sources */ = {isa = PBXBuildFile; fileRef = 9C02F22582D35C53EC5190F4523609DA /* BSGOutOfMemoryWatchdog.m */; }; - E91AFE814DC9B57EED9EBDBB863931C2 /* RCTAnimatedImage.h in Headers */ = {isa = PBXBuildFile; fileRef = 867F664DB910791F9B7EF4223E8EC0FD /* RCTAnimatedImage.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E930EFA4028C347FB207A0C4EF2AB204 /* RNNotificationCenterListener.h in Headers */ = {isa = PBXBuildFile; fileRef = 329F61807C938F88028E324BD933C9C1 /* RNNotificationCenterListener.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E90C8AD82ACBCAB7536776D26BA11D7C /* BSGOutOfMemoryWatchdog.m in Sources */ = {isa = PBXBuildFile; fileRef = E805C3238B7934A407F4B9BA654A7E23 /* BSGOutOfMemoryWatchdog.m */; }; + E91AFE814DC9B57EED9EBDBB863931C2 /* RCTAnimatedImage.h in Headers */ = {isa = PBXBuildFile; fileRef = 94488B1BA3670A4CA9A874AF44BD6D20 /* RCTAnimatedImage.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E930EFA4028C347FB207A0C4EF2AB204 /* RNNotificationCenterListener.h in Headers */ = {isa = PBXBuildFile; fileRef = EF242DDAABF8F823999D3669E70D4280 /* RNNotificationCenterListener.h */; settings = {ATTRIBUTES = (Project, ); }; }; E94077F8910379C6DDA3AA207C762C86 /* FIRCLSDownloadAndSaveSettingsOperation.h in Headers */ = {isa = PBXBuildFile; fileRef = C83E2D2B8873871B6A699BA5EE085E0E /* FIRCLSDownloadAndSaveSettingsOperation.h */; settings = {ATTRIBUTES = (Project, ); }; }; E9420AC963BB88173D440157F5C2F49B /* ConsumerBase.h in Headers */ = {isa = PBXBuildFile; fileRef = 55EC19563235B84E3C16129902421BC6 /* ConsumerBase.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E9538D6C9D4813EAEC35C5BBA2C69479 /* RCTConvert.m in Sources */ = {isa = PBXBuildFile; fileRef = 9895AF8412268FD8D4DAF8A22D61597E /* RCTConvert.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + E9538D6C9D4813EAEC35C5BBA2C69479 /* RCTConvert.m in Sources */ = {isa = PBXBuildFile; fileRef = CE35B0B7DE4CDF90DDE767F2A716FAAC /* RCTConvert.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; E955BABD4485D7B2B958836126D6196A /* Cursor.h in Headers */ = {isa = PBXBuildFile; fileRef = E08EE662B7023E41FAC7EAB9F7F59ACB /* Cursor.h */; settings = {ATTRIBUTES = (Project, ); }; }; E98690E099869FCA322CDB7C8AB9B323 /* webp_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = 066B88BB8286C5B2C6FAC71D65B28F60 /* webp_enc.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - E98FCF4D10636570A0DA1EFE3CE47A45 /* RNFBCrashlyticsInitProvider.m in Sources */ = {isa = PBXBuildFile; fileRef = B03FF6E3B8D37404DA7BFDE30A6056DB /* RNFBCrashlyticsInitProvider.m */; }; + E98FCF4D10636570A0DA1EFE3CE47A45 /* RNFBCrashlyticsInitProvider.m in Sources */ = {isa = PBXBuildFile; fileRef = 01828797957A7587C171B391F5A35BDD /* RNFBCrashlyticsInitProvider.m */; }; E9A824AE0E78956A27149966A7E03D42 /* SKViewControllerDescriptor.m in Sources */ = {isa = PBXBuildFile; fileRef = 093C8B36D29A816F408DCA55BC1D3870 /* SKViewControllerDescriptor.m */; settings = {COMPILER_FLAGS = "-DDEBUG=1 -DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0"; }; }; - E9ACBB81BB2D21567E75CB08C2B132A4 /* RNLocalize.h in Headers */ = {isa = PBXBuildFile; fileRef = E87932547D9F3089483EE98DD7F6C76F /* RNLocalize.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E9DD087FC7A1ABEC08B8643910E0DDD8 /* StorageIndexer.h in Headers */ = {isa = PBXBuildFile; fileRef = D739322E3D043389E7DF466D7B076593 /* StorageIndexer.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E9ACBB81BB2D21567E75CB08C2B132A4 /* RNLocalize.h in Headers */ = {isa = PBXBuildFile; fileRef = 7F21174076AEA986138D327BA59C8384 /* RNLocalize.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E9DD087FC7A1ABEC08B8643910E0DDD8 /* StorageIndexer.h in Headers */ = {isa = PBXBuildFile; fileRef = 6169351F01CF3D26049E7D74D15BF376 /* StorageIndexer.h */; settings = {ATTRIBUTES = (Project, ); }; }; EA0FBF913FD0E76C393BC35D6CF6F339 /* SysUio.h in Headers */ = {isa = PBXBuildFile; fileRef = 84BD9B6AE5CF36F13E90AA9DB2458229 /* SysUio.h */; settings = {ATTRIBUTES = (Project, ); }; }; EA1177A39135D58784EC37A4E968A7C4 /* SKButtonDescriptor.mm in Sources */ = {isa = PBXBuildFile; fileRef = 14C01FD98C5420E932FC9F461013EFC3 /* SKButtonDescriptor.mm */; settings = {COMPILER_FLAGS = "-DDEBUG=1 -DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0"; }; }; EA3D6A64F2CFE7B38FF1161EBA89FD0D /* UnboundedQueue.h in Headers */ = {isa = PBXBuildFile; fileRef = DC84A14968ADD20000EC197FA05236A7 /* UnboundedQueue.h */; settings = {ATTRIBUTES = (Project, ); }; }; EA82D914F7C4376FA679563B04C8C252 /* SpinLock.h in Headers */ = {isa = PBXBuildFile; fileRef = 0DEBB16BC868F03B976E11D9D1EBACDE /* SpinLock.h */; settings = {ATTRIBUTES = (Project, ); }; }; - EA87C832CF6E91F3233B9E41993D100D /* UIImage+Resize.m in Sources */ = {isa = PBXBuildFile; fileRef = F58267D4AF5DDBE52E92608956536334 /* UIImage+Resize.m */; }; + EA87C832CF6E91F3233B9E41993D100D /* UIImage+Resize.m in Sources */ = {isa = PBXBuildFile; fileRef = 3D351820F33E5DB5B8D1AA53186907F9 /* UIImage+Resize.m */; }; EAA2B4C60F7BDB41A80308A76A4D9848 /* FlipperStateUpdateListener.h in Headers */ = {isa = PBXBuildFile; fileRef = 56B9C9D1B578DEE39C27584AC980B45C /* FlipperStateUpdateListener.h */; settings = {ATTRIBUTES = (Project, ); }; }; EAA8A9E74453CE1C374EFD94C1B7098F /* fixed-dtoa.cc in Sources */ = {isa = PBXBuildFile; fileRef = C50A9FFDA610BD2983A7ACF8123C704D /* fixed-dtoa.cc */; settings = {COMPILER_FLAGS = "-Wno-unreachable-code"; }; }; EABBB15709D35D5F8EA21BC4880847C9 /* UICollectionView+SKInvalidation.h in Headers */ = {isa = PBXBuildFile; fileRef = B1D93473A86CD934BD1038A56853136D /* UICollectionView+SKInvalidation.h */; settings = {ATTRIBUTES = (Project, ); }; }; EABEB2DE7ADB678B7E0DCFFBB64EA5F5 /* AtFork.h in Headers */ = {isa = PBXBuildFile; fileRef = A2A26598445C79F8BB93C4813FE13509 /* AtFork.h */; settings = {ATTRIBUTES = (Project, ); }; }; EAC3C6074678F577E47481233D845A7F /* OpenSSLVersionFinder.h in Headers */ = {isa = PBXBuildFile; fileRef = 6683C86DA58980A55D1577C5A8791350 /* OpenSSLVersionFinder.h */; settings = {ATTRIBUTES = (Project, ); }; }; - EADD59C554DA8E2CA0EA369DE78914EA /* RCTProfileTrampoline-arm.S in Sources */ = {isa = PBXBuildFile; fileRef = 427CDDF672A5EE2083898815F4294025 /* RCTProfileTrampoline-arm.S */; }; - EB0FFB8AB196A5D2E91C3B846CF0BCF4 /* RCTAutoInsetsProtocol.h in Headers */ = {isa = PBXBuildFile; fileRef = E05361AD140D4C433AC4E1646853CEAE /* RCTAutoInsetsProtocol.h */; settings = {ATTRIBUTES = (Project, ); }; }; - EB1040C3BACA0BB67C3278188C50D802 /* LongLivedObject.h in Headers */ = {isa = PBXBuildFile; fileRef = 1BAE84229D35B43443334AD1D87BD621 /* LongLivedObject.h */; settings = {ATTRIBUTES = (Project, ); }; }; - EB15609268E86B4D0F86331DBA9B9028 /* REABezierNode.m in Sources */ = {isa = PBXBuildFile; fileRef = A49A84F5A7DDF18E14CCA469FEB30E43 /* REABezierNode.m */; }; + EADD59C554DA8E2CA0EA369DE78914EA /* RCTProfileTrampoline-arm.S in Sources */ = {isa = PBXBuildFile; fileRef = E8BB93182E5D1696BD2481DBE4EA7E36 /* RCTProfileTrampoline-arm.S */; }; + EB0FFB8AB196A5D2E91C3B846CF0BCF4 /* RCTAutoInsetsProtocol.h in Headers */ = {isa = PBXBuildFile; fileRef = 729125632DBFA13BFE7708A0A929F1C8 /* RCTAutoInsetsProtocol.h */; settings = {ATTRIBUTES = (Project, ); }; }; + EB1040C3BACA0BB67C3278188C50D802 /* LongLivedObject.h in Headers */ = {isa = PBXBuildFile; fileRef = 735FF3BA937B89B448F48F56810653A3 /* LongLivedObject.h */; settings = {ATTRIBUTES = (Project, ); }; }; + EB15609268E86B4D0F86331DBA9B9028 /* REABezierNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 5A7A81D6A91D612D952CF94A50D5108C /* REABezierNode.m */; }; EB2C44784270DFBA3B582FB79FB0B4CA /* alpha_processing_mips_dsp_r2.c in Sources */ = {isa = PBXBuildFile; fileRef = EECDB4F3516EAB5D2A50505C6BCB7F66 /* alpha_processing_mips_dsp_r2.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - EB49C5BA84A9241B4A2FD914CBB83B70 /* JSBundleType.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 6F26F7CE4E362B14A8330F9980FFC004 /* JSBundleType.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - EB710D2C273757D2990DD2259396D5D3 /* BSG_KSJSONCodec.h in Headers */ = {isa = PBXBuildFile; fileRef = F111FB6EECFBAFD20B718467C3B4DA26 /* BSG_KSJSONCodec.h */; settings = {ATTRIBUTES = (Project, ); }; }; + EB49C5BA84A9241B4A2FD914CBB83B70 /* JSBundleType.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 4F1942E4D0A0369C9E03DA3771CFD59A /* JSBundleType.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + EB710D2C273757D2990DD2259396D5D3 /* BSG_KSJSONCodec.h in Headers */ = {isa = PBXBuildFile; fileRef = 31B30C0AF46CFD0E44714BC5856834C1 /* BSG_KSJSONCodec.h */; settings = {ATTRIBUTES = (Project, ); }; }; EB78DF06626706A548B14F9714BFCE81 /* FIRConfiguration.m in Sources */ = {isa = PBXBuildFile; fileRef = 2D78F9C00BF67245B935CA95223EBF9B /* FIRConfiguration.m */; }; - EB94E713B05C06FC5784C9D426370C86 /* RCTManagedPointer.h in Headers */ = {isa = PBXBuildFile; fileRef = 11CF8D68F59E5DA5A6FFA1A0685E8CB3 /* RCTManagedPointer.h */; settings = {ATTRIBUTES = (Project, ); }; }; - EBA79B0AE533BE87BCF47925BEEF5A58 /* RNGestureHandlerEvents.m in Sources */ = {isa = PBXBuildFile; fileRef = B39EAA6F5F6CB3CF0A02BD1B915B85EE /* RNGestureHandlerEvents.m */; }; - EBA878971E9F0642C4A9BB01CC1CF5CF /* EXKeepAwake.m in Sources */ = {isa = PBXBuildFile; fileRef = 5D921D2E62A6C3B4AD03A55DF0FB2A36 /* EXKeepAwake.m */; }; + EB94E713B05C06FC5784C9D426370C86 /* RCTManagedPointer.h in Headers */ = {isa = PBXBuildFile; fileRef = 498FF03499E9ACAF13027DCC30825AB7 /* RCTManagedPointer.h */; settings = {ATTRIBUTES = (Project, ); }; }; + EBA79B0AE533BE87BCF47925BEEF5A58 /* RNGestureHandlerEvents.m in Sources */ = {isa = PBXBuildFile; fileRef = AB626D9B1A1FBFA86A849604F6E5B786 /* RNGestureHandlerEvents.m */; }; + EBA878971E9F0642C4A9BB01CC1CF5CF /* EXKeepAwake.m in Sources */ = {isa = PBXBuildFile; fileRef = 4E7113059AEDDD56C9DFBFC85B58603F /* EXKeepAwake.m */; }; EBB0B32AE8A9FE7267668D1F2DF10CE4 /* FramedReader.h in Headers */ = {isa = PBXBuildFile; fileRef = 13388D990800B736F39CED712509D8EE /* FramedReader.h */; settings = {ATTRIBUTES = (Project, ); }; }; EBEB8E966F0000E5B9996ECAAA718A72 /* fa-IR.lproj in Resources */ = {isa = PBXBuildFile; fileRef = 8420AF8C1F6EB4650F970C34B7221111 /* fa-IR.lproj */; }; - EBF611C9DC3CABD7E29C5B423E167DC6 /* RCTModalHostViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 248F18943B4F4FC493379B54A4923084 /* RCTModalHostViewManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + EBF611C9DC3CABD7E29C5B423E167DC6 /* RCTModalHostViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = DEE6721A0D2ADFAC5D36D6CCD0D3490A /* RCTModalHostViewManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; EC60D5885663C26EC9E47C3CBEC60DF1 /* Sockets.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 325718916693D8D2D6BCEB6863EB2BDD /* Sockets.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - EC6FEA75CC5E02F4EC760C49A764BF56 /* REAStyleNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 5DA470C8D907128F39A23FF2A1926F01 /* REAStyleNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + EC6FEA75CC5E02F4EC760C49A764BF56 /* REAStyleNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 40E14CDDD4B220ACBCC5D0293B39C2EB /* REAStyleNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; EC7E6F8893A892C6B2B9C4EFE90D5452 /* FIRApp.h in Headers */ = {isa = PBXBuildFile; fileRef = 0C45139ECE89637DC802D68D4F19C389 /* FIRApp.h */; settings = {ATTRIBUTES = (Project, ); }; }; EC90A4E51EF3B2F0B3EBC17E4880A9C2 /* SetupResumeAcceptor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 6E9904691569AF1FB8D6897AE9E4FCDA /* SetupResumeAcceptor.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0 -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; EC97CB108E671D75C839203CDCE70E3E /* FIRConfigurationInternal.h in Headers */ = {isa = PBXBuildFile; fileRef = 8D5B9420E822B44A0D897C0AC9B8C336 /* FIRConfigurationInternal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - EC9C2D92DCCD546C61F62AD33DAADB73 /* RCTMessageThread.mm in Sources */ = {isa = PBXBuildFile; fileRef = 9DD1E5F69423AB2A0A02E30A9CA3ABFF /* RCTMessageThread.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + EC9C2D92DCCD546C61F62AD33DAADB73 /* RCTMessageThread.mm in Sources */ = {isa = PBXBuildFile; fileRef = C780B42FA63C09360BE3DA04772966D1 /* RCTMessageThread.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; ECB6B7BA94B66641FE3315168B7D0F3D /* FlipperKitNetworkPlugin.mm in Sources */ = {isa = PBXBuildFile; fileRef = 963491A9E62786E0785789D2BF070D8D /* FlipperKitNetworkPlugin.mm */; settings = {COMPILER_FLAGS = "-DDEBUG=1 -DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0"; }; }; ED241C44D1BE21C144A33B37AD586BD7 /* EventHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 23A6D752E35310294DA296C586EA1124 /* EventHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; ED31D2231242DCE2DAB3492A23A54349 /* diy-fp.h in Headers */ = {isa = PBXBuildFile; fileRef = 591C4155DA9D655F91FBCA3318F9E178 /* diy-fp.h */; settings = {ATTRIBUTES = (Project, ); }; }; @@ -3183,35 +3167,35 @@ ED62691B003B2C54B15DD706EBD7FA6B /* histogram_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = CFA731D8F9C8D39AA9BC49D7CD25ED70 /* histogram_enc.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; ED6BE8C0119B9A5D650B0BB3A16D44A6 /* MemoryFile.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FD0A87C22F99DC9A05A1B9880188B7C6 /* MemoryFile.cpp */; settings = {COMPILER_FLAGS = "-x objective-c++"; }; }; ED95751FEA58215AFA04947C656EF88D /* ColdResumeHandler.cpp in Sources */ = {isa = PBXBuildFile; fileRef = CCBBF9764FB6AD4BE86FB46A28A388B6 /* ColdResumeHandler.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0 -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - EDA4F24FC4EA7EFD49E6E768EDD66BD1 /* RCTSwitchManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 37176B64919F7E617125B15953291F78 /* RCTSwitchManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + EDA4F24FC4EA7EFD49E6E768EDD66BD1 /* RCTSwitchManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 827231DE3E978B0707E476CDA7825A31 /* RCTSwitchManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; EDC979A9D849201D6DBC483E8B92354A /* UIColor+SDHexString.h in Headers */ = {isa = PBXBuildFile; fileRef = 526BA19EC83345B82436604077420426 /* UIColor+SDHexString.h */; settings = {ATTRIBUTES = (Project, ); }; }; - EDD233C9479285705E6B9089299C576F /* RCTModuleData.h in Headers */ = {isa = PBXBuildFile; fileRef = EB1493B5B74339036BCAFEA4BEA1EB92 /* RCTModuleData.h */; settings = {ATTRIBUTES = (Project, ); }; }; + EDD233C9479285705E6B9089299C576F /* RCTModuleData.h in Headers */ = {isa = PBXBuildFile; fileRef = CAFE7FC8058A8AFE746C84010F2A9F5B /* RCTModuleData.h */; settings = {ATTRIBUTES = (Project, ); }; }; EDD81D5D065ECC3489D1E01E230664E5 /* SDImageLoadersManager.m in Sources */ = {isa = PBXBuildFile; fileRef = D277C5450FB38AE5E27874F9C715EC2E /* SDImageLoadersManager.m */; }; EDDC688091DA36B599E3070AF38C8E58 /* SKScrollViewDescriptor.h in Headers */ = {isa = PBXBuildFile; fileRef = 305E4461F20DCC332F3249BAEE807FBD /* SKScrollViewDescriptor.h */; settings = {ATTRIBUTES = (Project, ); }; }; - EDF498D208004568FE66A61A1AB0A557 /* CxxNativeModule.cpp in Sources */ = {isa = PBXBuildFile; fileRef = C80708D8630BF3DFED231B48F359C820 /* CxxNativeModule.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + EDF498D208004568FE66A61A1AB0A557 /* CxxNativeModule.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 74D9944C8A9A6EEF879C1802CFA5667A /* CxxNativeModule.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; EDFFD7558303EBB109FEC50A5C046509 /* FIRCLSCrashedMarkerFile.h in Headers */ = {isa = PBXBuildFile; fileRef = 08B6390357AA95B7AF60B6F72F9FA914 /* FIRCLSCrashedMarkerFile.h */; settings = {ATTRIBUTES = (Project, ); }; }; - EE1C06DD01F149D622523DFE51E65C41 /* RCTMultilineTextInputView.m in Sources */ = {isa = PBXBuildFile; fileRef = 76985D955D3B6775EC88E7EEFA9CA722 /* RCTMultilineTextInputView.m */; }; + EE1C06DD01F149D622523DFE51E65C41 /* RCTMultilineTextInputView.m in Sources */ = {isa = PBXBuildFile; fileRef = 82E77850EBDB8635AC976F667B8B9C87 /* RCTMultilineTextInputView.m */; }; EE26C68BA1E4A373F6AA58F711E44168 /* demangle.cc in Sources */ = {isa = PBXBuildFile; fileRef = E018F4831128EB129FE2410E15D941C2 /* demangle.cc */; settings = {COMPILER_FLAGS = "-Wno-shorten-64-to-32"; }; }; EE545CCD58E4A2E2390092397FF90035 /* DestructorCheck.h in Headers */ = {isa = PBXBuildFile; fileRef = 5A7F69942D29F7B96C7A01501E594784 /* DestructorCheck.h */; settings = {ATTRIBUTES = (Project, ); }; }; EE6BE6092C061EB63937F805AEEE9D40 /* FIRCLSUserDefaults.h in Headers */ = {isa = PBXBuildFile; fileRef = 4111E7D34BC0881ECCA3AF8731FB1175 /* FIRCLSUserDefaults.h */; settings = {ATTRIBUTES = (Project, ); }; }; EE7F301F7EB3117BC1E77E72245E3FDA /* Sse.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F86F12E26ACB0183CD35EFE067E43EA1 /* Sse.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; EE8A83128D8380211CB6876B0BD6CC89 /* Benchmark.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 5EA700B9347F08F911F2287AF43DF8DD /* Benchmark.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - EE905AFF52F9B74FA85C761F03DCE8A4 /* experiments-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = B94081F9AF625868C01702FE15ECE7CF /* experiments-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + EE905AFF52F9B74FA85C761F03DCE8A4 /* experiments-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = F752F688760BC50034CC98F8CB3C0670 /* experiments-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; EECE8417F87A642504A215B21A1BD894 /* Malloc.h in Headers */ = {isa = PBXBuildFile; fileRef = 2E93CBD601435B3B6E299AE1396B0156 /* Malloc.h */; settings = {ATTRIBUTES = (Project, ); }; }; EEEE7946609F4EB86E6A6971970E1A7C /* DistributedMutexSpecializations.h in Headers */ = {isa = PBXBuildFile; fileRef = 76D18DF309C2FE5E34364E98AFD5B5CC /* DistributedMutexSpecializations.h */; settings = {ATTRIBUTES = (Project, ); }; }; EEF97C679BEE5F2A9C7F7D95720C9AF6 /* lossless_enc_msa.c in Sources */ = {isa = PBXBuildFile; fileRef = 30E7216A300013A4FD7909722A8BC12B /* lossless_enc_msa.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; EF01BB9A24DE8FC2D257B34F391FC5E1 /* FIRCLSdSYM.h in Headers */ = {isa = PBXBuildFile; fileRef = C148D0C3AF01D9DAFCF5C2D8E557DE84 /* FIRCLSdSYM.h */; settings = {ATTRIBUTES = (Project, ); }; }; - EF040B9CD7BA50080DC1780BDC9236F3 /* RCTInputAccessoryViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 1E39BD45138B9D64B9B931FE16A1DC79 /* RCTInputAccessoryViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + EF040B9CD7BA50080DC1780BDC9236F3 /* RCTInputAccessoryViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 73B306321B65D553249B367A46C9B719 /* RCTInputAccessoryViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; EF0BEB03832B6EE08C1A5B8CC1007A9C /* SanitizeThread.h in Headers */ = {isa = PBXBuildFile; fileRef = 933C27038580EAD8CAE905C91C0BE11C /* SanitizeThread.h */; settings = {ATTRIBUTES = (Project, ); }; }; EF11639F4163606C334B78456636022E /* bignum-dtoa.h in Headers */ = {isa = PBXBuildFile; fileRef = 5447E2B09AD3989C8117F03B66368A75 /* bignum-dtoa.h */; settings = {ATTRIBUTES = (Project, ); }; }; - EF117E71F325A70F113BF280B230449C /* RCTRedBox.h in Headers */ = {isa = PBXBuildFile; fileRef = B54236F8BFE6D1E6E5F0234275E38574 /* RCTRedBox.h */; settings = {ATTRIBUTES = (Project, ); }; }; + EF117E71F325A70F113BF280B230449C /* RCTRedBox.h in Headers */ = {isa = PBXBuildFile; fileRef = E2880FB15A337679AF1C03C6AF64651A /* RCTRedBox.h */; settings = {ATTRIBUTES = (Project, ); }; }; EF22605AD9E69B3DD5D66D833CE2059D /* ExceptionString.h in Headers */ = {isa = PBXBuildFile; fileRef = 77D599491C6E13B1E7BA39C3E1DA0135 /* ExceptionString.h */; settings = {ATTRIBUTES = (Project, ); }; }; - EF5899B0D4193349FBF756DD61CBE8CD /* RCTSafeAreaViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 11AFE86C5FDD844462AE19C0333F1187 /* RCTSafeAreaViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + EF5899B0D4193349FBF756DD61CBE8CD /* RCTSafeAreaViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 7C86F8D9A8A1C3FA0031BE354FBD8CDC /* RCTSafeAreaViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; EF6FC5B8C01048CA9C2F2F96CFA6C81C /* FIRCLSUUID.m in Sources */ = {isa = PBXBuildFile; fileRef = B5C69E758FB2D3A24907A0129B96916E /* FIRCLSUUID.m */; }; EF78A78AAD79DFDE72D424FF8F35DB23 /* GlobalExecutor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B69E2979DB6DF82E5B9E92C3DCB55EAE /* GlobalExecutor.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - EF8E5F0797808048CADFC607D7BCFE5D /* RCTUIManagerObserverCoordinator.mm in Sources */ = {isa = PBXBuildFile; fileRef = 6A873C9787E0E58B4304FE774E0A2649 /* RCTUIManagerObserverCoordinator.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - EFA2192B074A6AE5BACE7456B28FC075 /* RCTDivisionAnimatedNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 998927E494E0F739E6998287E1AC76F0 /* RCTDivisionAnimatedNode.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; - EFA98193F4243EA8303D6508F5ACFD3F /* RCTLogBox.h in Headers */ = {isa = PBXBuildFile; fileRef = B4E0E6DFE4206A3F803116ECCF22DD90 /* RCTLogBox.h */; settings = {ATTRIBUTES = (Project, ); }; }; + EF8E5F0797808048CADFC607D7BCFE5D /* RCTUIManagerObserverCoordinator.mm in Sources */ = {isa = PBXBuildFile; fileRef = 940CAEA0D4D0F3B3EDA2ADB528E0CFD6 /* RCTUIManagerObserverCoordinator.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + EFA2192B074A6AE5BACE7456B28FC075 /* RCTDivisionAnimatedNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 0C1F0068FCF2D60B7506C7EF84F74BCB /* RCTDivisionAnimatedNode.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + EFA98193F4243EA8303D6508F5ACFD3F /* RCTLogBox.h in Headers */ = {isa = PBXBuildFile; fileRef = 66B202038A90A6F376B7521002FEED5E /* RCTLogBox.h */; settings = {ATTRIBUTES = (Project, ); }; }; EFBCD28CC96CC7D7629CE6C73653B2FF /* FIRCLSReport.h in Headers */ = {isa = PBXBuildFile; fileRef = BD6D68FA7B495C71FC7EF52EC2B20F9D /* FIRCLSReport.h */; settings = {ATTRIBUTES = (Project, ); }; }; EFD68E385A78185DD955ABACB421ED01 /* MapUtil.h in Headers */ = {isa = PBXBuildFile; fileRef = 7EF094B4DED4A47E606B128C16F4A3DE /* MapUtil.h */; settings = {ATTRIBUTES = (Project, ); }; }; EFDDDA86D58A5A3B5A5C52CD2E4684D8 /* random_utils.h in Headers */ = {isa = PBXBuildFile; fileRef = 209E7C68D889E228DBA3424F426809E6 /* random_utils.h */; settings = {ATTRIBUTES = (Project, ); }; }; @@ -3219,49 +3203,49 @@ EFFF616FD9B0B9494F7242A085F23A95 /* NotificationQueue.h in Headers */ = {isa = PBXBuildFile; fileRef = 6A0BE58E58F10D9043E9517CA36EE7B0 /* NotificationQueue.h */; settings = {ATTRIBUTES = (Project, ); }; }; F026131495373C5DE569B201034D9101 /* cost_mips32.c in Sources */ = {isa = PBXBuildFile; fileRef = 76605841FD1A47250E4EFE1499D3F6B7 /* cost_mips32.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; F029DBE2241C707F43B4AEF3919C8C0C /* NestedCommandLineApp.h in Headers */ = {isa = PBXBuildFile; fileRef = 03204A74A401AFC6F4F2E563632CDB53 /* NestedCommandLineApp.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F02C80E50A42C5C5D22B26EC7C971239 /* RNPinchHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = B0B33A952D7E8A3DB4FF06D7ADBF0D3B /* RNPinchHandler.m */; }; - F0552CB46A90D3030EAAE47B66962B44 /* BSG_KSObjC.c in Sources */ = {isa = PBXBuildFile; fileRef = FF50F9DDA7E430DBF3FBA1FC7435A753 /* BSG_KSObjC.c */; }; - F060BB0A99A818871B4FF4CDDE8131E6 /* RCTBlobCollector.mm in Sources */ = {isa = PBXBuildFile; fileRef = 0C7880A7732E76FCD556173067551E45 /* RCTBlobCollector.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + F02C80E50A42C5C5D22B26EC7C971239 /* RNPinchHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = B5C143AB3CA83518CFCD44C393AE9920 /* RNPinchHandler.m */; }; + F0552CB46A90D3030EAAE47B66962B44 /* BSG_KSObjC.c in Sources */ = {isa = PBXBuildFile; fileRef = C373C205427E8D0DB3CF4B34708EA1BB /* BSG_KSObjC.c */; }; + F060BB0A99A818871B4FF4CDDE8131E6 /* RCTBlobCollector.mm in Sources */ = {isa = PBXBuildFile; fileRef = C539389C4D288CED5913C12D77F06F79 /* RCTBlobCollector.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; F062B79236AA526A32FA60C8582C91A7 /* AtFork.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9622397634A3DEBEC00CE06C1B64BC8E /* AtFork.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; F064F5A353BC444A596AD767859C7E3D /* FIRCLSReportAdapter_Private.h in Headers */ = {isa = PBXBuildFile; fileRef = A4E59AA55DD9A126F59C095029C9772B /* FIRCLSReportAdapter_Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; F06D028A6F88B5E5C99E9486691C1816 /* SDImageHEICCoder.m in Sources */ = {isa = PBXBuildFile; fileRef = 3F56FEFBF48F3D0E555E22F8D5C2AA55 /* SDImageHEICCoder.m */; }; - F07371A2BF65324D8562074250CF350D /* YGFloatOptional.h in Headers */ = {isa = PBXBuildFile; fileRef = C12F586DA4893F2844808EC7671E61F6 /* YGFloatOptional.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F07371A2BF65324D8562074250CF350D /* YGFloatOptional.h in Headers */ = {isa = PBXBuildFile; fileRef = 9C278A6C573FD2DAEE0768B796883548 /* YGFloatOptional.h */; settings = {ATTRIBUTES = (Project, ); }; }; F089F83DA2C72E81AD2B58C6535A6626 /* Executor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 7F1001B1349B03B91C1356C3A36DD84A /* Executor.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - F08EF621568D6C92035F64B33AEC59C8 /* RCTLocalAssetImageLoader.mm in Sources */ = {isa = PBXBuildFile; fileRef = B1E63B313C110308E6EEECEE5E892694 /* RCTLocalAssetImageLoader.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + F08EF621568D6C92035F64B33AEC59C8 /* RCTLocalAssetImageLoader.mm in Sources */ = {isa = PBXBuildFile; fileRef = C88BCA0778A10C685BF4174828456698 /* RCTLocalAssetImageLoader.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; F0A43A4B163BF7CDF1684938F768C1D5 /* Synchronized.h in Headers */ = {isa = PBXBuildFile; fileRef = A567147B5F4623BAA13C514E701A3F52 /* Synchronized.h */; settings = {ATTRIBUTES = (Project, ); }; }; F1077AB8D86DD9D6C3C84F7EB71B01FD /* SDWebImageCacheKeyFilter.m in Sources */ = {isa = PBXBuildFile; fileRef = C7BCEB4CE467EAC79C8D872A409D3DA1 /* SDWebImageCacheKeyFilter.m */; }; - F11FC2CA1B4985D0A99985893A55EA80 /* RCTCxxMethod.mm in Sources */ = {isa = PBXBuildFile; fileRef = 49C05D2BFB60A03B270CB32F22D85CAD /* RCTCxxMethod.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + F11FC2CA1B4985D0A99985893A55EA80 /* RCTCxxMethod.mm in Sources */ = {isa = PBXBuildFile; fileRef = A4540BAF73AE068913CA929A5297D2FC /* RCTCxxMethod.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; F1270B3BF10D921BCFC9023E8D24D71D /* LockFreeRingBuffer.h in Headers */ = {isa = PBXBuildFile; fileRef = 2068A1B107DAE2DB15594D7FF000125F /* LockFreeRingBuffer.h */; settings = {ATTRIBUTES = (Project, ); }; }; F128E5421AFDD733B6EA5E6DC0BDBBBF /* dec_sse41.c in Sources */ = {isa = PBXBuildFile; fileRef = 9E29D0D7334990552C28F6888E1C4D0A /* dec_sse41.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; F13D5204BA38F81E8AABCCEEFF2EBB49 /* EventBaseThread.h in Headers */ = {isa = PBXBuildFile; fileRef = 1B3FCA272A3DFBC42DEEA24756A4472A /* EventBaseThread.h */; settings = {ATTRIBUTES = (Project, ); }; }; F14AEB46631F4B9EE89D67F568E6713F /* SDWebImagePrefetcher.h in Headers */ = {isa = PBXBuildFile; fileRef = DA09D60C3C3C3D3785B8CA0A73841744 /* SDWebImagePrefetcher.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F14F3611C17F09635194628971D7D0CE /* RCTResizeMode.m in Sources */ = {isa = PBXBuildFile; fileRef = 0DFCBE08863B015EEA71DCC6B52DB6EC /* RCTResizeMode.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; - F15EEC0BB24783CE4BA749F8D9268035 /* RCTMultilineTextInputView.h in Headers */ = {isa = PBXBuildFile; fileRef = C6868C8457E5B8FA9B29D3E5C23D62C6 /* RCTMultilineTextInputView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F14F3611C17F09635194628971D7D0CE /* RCTResizeMode.m in Sources */ = {isa = PBXBuildFile; fileRef = 04862A22908BDB951726B6084DC36B36 /* RCTResizeMode.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + F15EEC0BB24783CE4BA749F8D9268035 /* RCTMultilineTextInputView.h in Headers */ = {isa = PBXBuildFile; fileRef = 30F398055ADF624F0EDC591B8B0BE805 /* RCTMultilineTextInputView.h */; settings = {ATTRIBUTES = (Project, ); }; }; F161334CFD6395BBE0856CEBF4DE186B /* WaitOptions.cpp in Sources */ = {isa = PBXBuildFile; fileRef = C3AB91CE88C910CCB9294D27147C129C /* WaitOptions.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; F165EDAD91DD10268DC4ABD69FCA84F7 /* GULHeartbeatDateStorage.m in Sources */ = {isa = PBXBuildFile; fileRef = A8D27969317372F0383D1B9F1533BFAF /* GULHeartbeatDateStorage.m */; }; - F1861F0B801CC50205C1F7C444A3FB42 /* BugsnagKSCrashSysInfoParser.h in Headers */ = {isa = PBXBuildFile; fileRef = BE035A1847ED0C87F79AE8A0DBD1E3B0 /* BugsnagKSCrashSysInfoParser.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F1861F0B801CC50205C1F7C444A3FB42 /* BugsnagKSCrashSysInfoParser.h in Headers */ = {isa = PBXBuildFile; fileRef = 0931CD748FE203E76C584140BA32A179 /* BugsnagKSCrashSysInfoParser.h */; settings = {ATTRIBUTES = (Project, ); }; }; F1964D3CBC02560AE36785B0F166FEE2 /* FIRCLSDwarfUnwind.h in Headers */ = {isa = PBXBuildFile; fileRef = 023EA38835E76BD2F08BBF15724EDCF5 /* FIRCLSDwarfUnwind.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F1A2DD210F5AEAC81A8D438321D1A16F /* EXResumablesManager.h in Headers */ = {isa = PBXBuildFile; fileRef = C33D94D2CA59CDD044F5356C10911747 /* EXResumablesManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F1A2DD210F5AEAC81A8D438321D1A16F /* EXResumablesManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 7F2324BE8CE2196436392EEFCAC75808 /* EXResumablesManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; F1CFAD1BBFF7E0BDA26021957C170257 /* vp8_dec.h in Headers */ = {isa = PBXBuildFile; fileRef = 2187EE7FD2E6F6DDD7C64F9F46B17BBA /* vp8_dec.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F1D29EEE977196CF2060E83F8D6DC9F4 /* ARTSolidColor.h in Headers */ = {isa = PBXBuildFile; fileRef = 67D64D02C9D8DCD5F4A39C7A99EA1593 /* ARTSolidColor.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F1D29EEE977196CF2060E83F8D6DC9F4 /* ARTSolidColor.h in Headers */ = {isa = PBXBuildFile; fileRef = BB7B5A274FB264D81BAB0F0814C17943 /* ARTSolidColor.h */; settings = {ATTRIBUTES = (Project, ); }; }; F1D8204CAEC154C28A303A0B0E0D8B7A /* TimeoutManager.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BFE64C332B5D529A57DB416EB659E120 /* TimeoutManager.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - F1E1333AEA9A20A7D09582045666A987 /* EXVideoView.h in Headers */ = {isa = PBXBuildFile; fileRef = 650AA7E9A990289D39BFFC4C3C6BEDCD /* EXVideoView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F219A70CF27FA9A9415A213BE789E6B5 /* RCTViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 7A03B7173987B901D446E319A432F813 /* RCTViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F242BAB0E83DD4405CC1FCE0D2D9B7BA /* RNCWKProcessPoolManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 4EF08DD896ED55D2EC8EAF7B071FB542 /* RNCWKProcessPoolManager.m */; }; - F252EE542CF5FAC448CADE1D81F56DF6 /* RCTCustomKeyboardViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 425D9D18F9684EFF4B131BC102AD46EE /* RCTCustomKeyboardViewController.m */; }; + F1E1333AEA9A20A7D09582045666A987 /* EXVideoView.h in Headers */ = {isa = PBXBuildFile; fileRef = 3EF08125CF8DDE18554D11E023C24F76 /* EXVideoView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F219A70CF27FA9A9415A213BE789E6B5 /* RCTViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 7DCDAFE44FE167FC68E9A412325E8F37 /* RCTViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F242BAB0E83DD4405CC1FCE0D2D9B7BA /* RNCWKProcessPoolManager.m in Sources */ = {isa = PBXBuildFile; fileRef = AB59FF6546A546154F21A868491CDA72 /* RNCWKProcessPoolManager.m */; }; + F252EE542CF5FAC448CADE1D81F56DF6 /* RCTCustomKeyboardViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 0E721F73DBFF0584B6779F20A79840BE /* RCTCustomKeyboardViewController.m */; }; F255767A43EB01B5324B1B7536288503 /* AtomicHashUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = 0818D39E633BAA54EC2D71D8C25E6A8B /* AtomicHashUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; F26D41F01E683998AAEC1A00C470EB59 /* GULKeychainStorage.h in Headers */ = {isa = PBXBuildFile; fileRef = 62E90BFD41A96959799C69CEA9F27A13 /* GULKeychainStorage.h */; settings = {ATTRIBUTES = (Project, ); }; }; F277DD730C5DC4670DEE570B9E364BE5 /* FIRCLSURLSessionDataTask_PrivateMethods.h in Headers */ = {isa = PBXBuildFile; fileRef = DCC0177033322577FE17C0A5DB7D6D70 /* FIRCLSURLSessionDataTask_PrivateMethods.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F2945935232CD99D498FB3FE1736D00E /* EXFileSystem-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = D99064BDB173558498756B3D1F2C2938 /* EXFileSystem-dummy.m */; }; - F2BB2DE2C45DD98C2F6464408C4D3532 /* JsArgumentHelpers-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 3F860474CE8CA0FC1EC7491B30FFE313 /* JsArgumentHelpers-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F2DB009793E935272AA918B905E0008D /* RCTInputAccessoryViewContent.m in Sources */ = {isa = PBXBuildFile; fileRef = 711DB2C8D8A7E87450B0382B3FB4E062 /* RCTInputAccessoryViewContent.m */; }; - F2DC4D68D95807B1FAB1279790CB7918 /* RNTapHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = 296698780DFB4EC12AFDDA86CD429674 /* RNTapHandler.m */; }; - F2F6974CB2911E6E418367E261E1CB4A /* UMReactNativeAdapter.h in Headers */ = {isa = PBXBuildFile; fileRef = 89E516836790BAB8B152D990125FC698 /* UMReactNativeAdapter.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F30EE47AEFB6C802DE984F833AF2E8A1 /* React-RCTVibration-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 69B0AD9383B016DD49BC331DF8241707 /* React-RCTVibration-dummy.m */; }; + F2945935232CD99D498FB3FE1736D00E /* EXFileSystem-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = ECA5015656D5D7DA4D6A2225F2EEF4E7 /* EXFileSystem-dummy.m */; }; + F2BB2DE2C45DD98C2F6464408C4D3532 /* JsArgumentHelpers-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = F40F806F534E3396E5FB95C458A3DCA6 /* JsArgumentHelpers-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F2DB009793E935272AA918B905E0008D /* RCTInputAccessoryViewContent.m in Sources */ = {isa = PBXBuildFile; fileRef = 9FF293186ED50310BDCC3A0C25E87310 /* RCTInputAccessoryViewContent.m */; }; + F2DC4D68D95807B1FAB1279790CB7918 /* RNTapHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = 165CECF72188936C82EE111426516F28 /* RNTapHandler.m */; }; + F2F6974CB2911E6E418367E261E1CB4A /* UMReactNativeAdapter.h in Headers */ = {isa = PBXBuildFile; fileRef = 32744568A11593303C3B498CB700AD54 /* UMReactNativeAdapter.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F30EE47AEFB6C802DE984F833AF2E8A1 /* React-RCTVibration-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 92BDCD7D6F411370B1DCFD5DA2976D9A /* React-RCTVibration-dummy.m */; }; F32F2C636023C27F22172F64D4D1936D /* EventUtil.h in Headers */ = {isa = PBXBuildFile; fileRef = CFDD9897B420437740F2C790E28FFCA8 /* EventUtil.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F33C3F5A2DEF21B318B13E1FA9513B5B /* RCTSubtractionAnimatedNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 8DBF8053988363F40F01EF45A5F20C51 /* RCTSubtractionAnimatedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F3760352C6E2106593BD9B3363324DFF /* RCTEventDispatcher.h in Headers */ = {isa = PBXBuildFile; fileRef = ABBA8DE8B575DFFF2C4935CD563CBB42 /* RCTEventDispatcher.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F393DD4C89DD0E8E5458A560789491A4 /* RCTKeyboardObserver.h in Headers */ = {isa = PBXBuildFile; fileRef = 5F9008CF3189F888B288C33FCDD63C6D /* RCTKeyboardObserver.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F33C3F5A2DEF21B318B13E1FA9513B5B /* RCTSubtractionAnimatedNode.h in Headers */ = {isa = PBXBuildFile; fileRef = C4689B14EA62388B0528481789F70DDB /* RCTSubtractionAnimatedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F3760352C6E2106593BD9B3363324DFF /* RCTEventDispatcher.h in Headers */ = {isa = PBXBuildFile; fileRef = 76B50BE6D55C4A5811D51DE8969DB714 /* RCTEventDispatcher.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F393DD4C89DD0E8E5458A560789491A4 /* RCTKeyboardObserver.h in Headers */ = {isa = PBXBuildFile; fileRef = B4F5793294B2FB7F9C1461C7A9A11DCD /* RCTKeyboardObserver.h */; settings = {ATTRIBUTES = (Project, ); }; }; F3A009B81FF8A92B347826968ED9AF1E /* demux.c in Sources */ = {isa = PBXBuildFile; fileRef = A538681767405B4E9FF83C15780AE054 /* demux.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; F3B34CBCC961EF36E3ACA1228C478F39 /* FlipperConnectionManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 98BDFC3334866AB049C88363913B1E61 /* FlipperConnectionManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; F3B80E2B758010DEDA95D8CD4B00CB84 /* OpenSSL.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BEB79A4431F3C32CF55295A0BB31B7D4 /* OpenSSL.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; @@ -3273,8 +3257,8 @@ F4354D6C88C4F7CFDDF66638852FE083 /* FIRComponentContainerInternal.h in Headers */ = {isa = PBXBuildFile; fileRef = 33D51A8AFF07DCF68B2BB41459E9B8A1 /* FIRComponentContainerInternal.h */; settings = {ATTRIBUTES = (Project, ); }; }; F43EF5DB5AC2D8D783DCCDD92DEF2232 /* HHWheelTimer-fwd.h in Headers */ = {isa = PBXBuildFile; fileRef = B52CD50EEB7B58A8AAB4403DB7C3A509 /* HHWheelTimer-fwd.h */; settings = {ATTRIBUTES = (Project, ); }; }; F444CF6C93B81884CF0CA3309DCCC8F5 /* FBLPromisePrivate.h in Headers */ = {isa = PBXBuildFile; fileRef = 7395B37403EE0C69672FF57413CF7877 /* FBLPromisePrivate.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F473CBA9591B30E13DB1413498313348 /* RCTFrameUpdate.h in Headers */ = {isa = PBXBuildFile; fileRef = C5892E5E14023368F105BBFBE97321F2 /* RCTFrameUpdate.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F478015B710CAC703BD59AF8CB9D2791 /* RCTRootViewInternal.h in Headers */ = {isa = PBXBuildFile; fileRef = 05F43FC6C16D097AE21402A3F610130B /* RCTRootViewInternal.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F473CBA9591B30E13DB1413498313348 /* RCTFrameUpdate.h in Headers */ = {isa = PBXBuildFile; fileRef = 883757E4B7C80E441843B2082413BBD3 /* RCTFrameUpdate.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F478015B710CAC703BD59AF8CB9D2791 /* RCTRootViewInternal.h in Headers */ = {isa = PBXBuildFile; fileRef = 4D8B3371FE0AD99CE7A75B25562E7F77 /* RCTRootViewInternal.h */; settings = {ATTRIBUTES = (Project, ); }; }; F48A0381C51B2F0D24730133B0C5D5FA /* GlobalThreadPoolList.cpp in Sources */ = {isa = PBXBuildFile; fileRef = EF848C3AAEB2094BCE44541A8B4DEE0A /* GlobalThreadPoolList.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; F48DC19A7DE41508D245FE55D1995E1A /* ColdResumeHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = C92C8A75373FDD65BA140C3FC5D19412 /* ColdResumeHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; F49F1B5A4B1DA201D133771E9923D648 /* webp_dec.c in Sources */ = {isa = PBXBuildFile; fileRef = 2C6DB314BF7A6F6636587528F40E6E63 /* webp_dec.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; @@ -3283,56 +3267,56 @@ F4FA192DF8E95C26C55DAC65EE6B310F /* EmitterFlowable.h in Headers */ = {isa = PBXBuildFile; fileRef = 6B085D1FB16245A0F198DB2406EB08DA /* EmitterFlowable.h */; settings = {ATTRIBUTES = (Project, ); }; }; F506CCC7C34A049D1253C979B7807514 /* SKNetworkReporter.h in Headers */ = {isa = PBXBuildFile; fileRef = B8929613C676A28B292CACE916AB8B84 /* SKNetworkReporter.h */; settings = {ATTRIBUTES = (Project, ); }; }; F5106A9D245E7C593DA00BD467654ADF /* Chrono.h in Headers */ = {isa = PBXBuildFile; fileRef = 2B14B0084BF02DE15FE62812E1288436 /* Chrono.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F518CDF6FC7F5085F4C33D36E71E6B35 /* RNCAppearance.h in Headers */ = {isa = PBXBuildFile; fileRef = FC2686CF9ED2ECCBE0D4CD6BE1DA146F /* RNCAppearance.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F518CDF6FC7F5085F4C33D36E71E6B35 /* RNCAppearance.h in Headers */ = {isa = PBXBuildFile; fileRef = AB1796D5C0A137C49EB9C6558CD794B6 /* RNCAppearance.h */; settings = {ATTRIBUTES = (Project, ); }; }; F52336859BB9F756E055C93AE2968A87 /* TOCropView.h in Headers */ = {isa = PBXBuildFile; fileRef = 99720D30D4764EB212A54A8391F1E358 /* TOCropView.h */; settings = {ATTRIBUTES = (Project, ); }; }; F523644CE74F3F365E8C1E26EE20FE0F /* GDTCORTransport.m in Sources */ = {isa = PBXBuildFile; fileRef = 754E0BE205AB1A8A7039CFC8FA3BD918 /* GDTCORTransport.m */; }; F5254D7669A08E6C5EC0EF0BA4AE59D9 /* FIRCLSDataParsing.h in Headers */ = {isa = PBXBuildFile; fileRef = 7E687F5C65DD3BEAFF47BB5E8EF7D5D9 /* FIRCLSDataParsing.h */; settings = {ATTRIBUTES = (Project, ); }; }; F5292BB5CF2C799435F4B1E53237DFA4 /* CString.h in Headers */ = {isa = PBXBuildFile; fileRef = 871DCC73830C467E5BA61CC8CD0BEB2A /* CString.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F5461BEB4C9D9CA55F6CC819DC1E4E79 /* RCTMultilineTextInputViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 1B29FE125F86A52CEC396A449E54AAB9 /* RCTMultilineTextInputViewManager.m */; }; + F5461BEB4C9D9CA55F6CC819DC1E4E79 /* RCTMultilineTextInputViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 886C400CDA37EF7577E77029071CFB6C /* RCTMultilineTextInputViewManager.m */; }; F555F8C238747A97FF295FA277B84567 /* lossless_common.h in Headers */ = {isa = PBXBuildFile; fileRef = 2BDD96A156450AC5802467E6C6112C3D /* lossless_common.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F5569D7601768A0E8A97A9EDE6CCE8E0 /* RNNotificationsStore.m in Sources */ = {isa = PBXBuildFile; fileRef = D102A58EC56219DFF7B68A696EE2B0A7 /* RNNotificationsStore.m */; }; + F5569D7601768A0E8A97A9EDE6CCE8E0 /* RNNotificationsStore.m in Sources */ = {isa = PBXBuildFile; fileRef = 958AA812FE979273FA6E04F1FCCF266A /* RNNotificationsStore.m */; }; F557D614321C8F93BE3F898A9BCAA82A /* ParkingLot.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 08EAD2C7144A6857141F7C8AD8FFA1A7 /* ParkingLot.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - F55AAA8E0EA9C9CAC7F32F6391C66828 /* BSG_KSString.c in Sources */ = {isa = PBXBuildFile; fileRef = 79E279554A094F65CDDAB71F3B065F51 /* BSG_KSString.c */; }; - F5716B71E408328E02A7D09CA4FBDACA /* RNFBPreferences.m in Sources */ = {isa = PBXBuildFile; fileRef = 19AA7A1C7A54F2CDF0D9ED234CA46358 /* RNFBPreferences.m */; }; + F55AAA8E0EA9C9CAC7F32F6391C66828 /* BSG_KSString.c in Sources */ = {isa = PBXBuildFile; fileRef = D5D6340F5678DBCBB48C6854343E05D9 /* BSG_KSString.c */; }; + F5716B71E408328E02A7D09CA4FBDACA /* RNFBPreferences.m in Sources */ = {isa = PBXBuildFile; fileRef = CE09A37DC922DC3974CE8B6614EB48F6 /* RNFBPreferences.m */; }; F5978CC4D77598D1A49F9D24FA00C184 /* EventCount.h in Headers */ = {isa = PBXBuildFile; fileRef = 90C235A36EF61092E414856544339A50 /* EventCount.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F5BC03175EE7232A1912FE3CDDCD970A /* QBVideoIndicatorView.m in Sources */ = {isa = PBXBuildFile; fileRef = 1840C8EC140BE053111A6398B51C3200 /* QBVideoIndicatorView.m */; }; + F5BC03175EE7232A1912FE3CDDCD970A /* QBVideoIndicatorView.m in Sources */ = {isa = PBXBuildFile; fileRef = 48EEC0F86D7BE8EDF11D9FA1FED2D07D /* QBVideoIndicatorView.m */; }; F5CCC2820D92DA02FC629CD7A119C9E6 /* cct.nanopb.h in Headers */ = {isa = PBXBuildFile; fileRef = A805DAB37BDE5B7587D60828B5C486DA /* cct.nanopb.h */; settings = {ATTRIBUTES = (Project, ); }; }; F5D8D91CB3F9C56E62D0576785A26819 /* FirebaseInstallations.h in Headers */ = {isa = PBXBuildFile; fileRef = CAB825B7A88F0CB25190C21C70EECB21 /* FirebaseInstallations.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F5E6629EE09FD61F74EFA87FD5FFFF1B /* RCTMaskedViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 9095C8C20E0F58DB23E6714B8B6B30E6 /* RCTMaskedViewManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + F5E6629EE09FD61F74EFA87FD5FFFF1B /* RCTMaskedViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 92B3D1C9836ABB9BC4DE52FEC56CD705 /* RCTMaskedViewManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; F5E7FC21D89006A4336348040B83A54A /* InterProcessLock_Win32.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BA9DBC64DF6D0336A60497A93DA45E7E /* InterProcessLock_Win32.cpp */; settings = {COMPILER_FLAGS = "-x objective-c++ -fno-objc-arc"; }; }; F6086ADBCBE0EF97E2FEAD8C5415439D /* MemoryIdler.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 120B3B53F3711422390FAE868F810DE1 /* MemoryIdler.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; F60BE74EC0CAAE86DF95B244A4C5151B /* UIColor+SDHexString.m in Sources */ = {isa = PBXBuildFile; fileRef = 90FC79C77E4F46863DD475533D06E8F4 /* UIColor+SDHexString.m */; }; F657530EEA9AC9426F2F7045A997234F /* Singleton.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 283746EB44A8BA8825A36D950715DA43 /* Singleton.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - F65BC508CC7F01D9AE11B7A5FC011ABA /* RCTModuleMethod.h in Headers */ = {isa = PBXBuildFile; fileRef = 422C1530677F86317F308C22C22F6788 /* RCTModuleMethod.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F65BC508CC7F01D9AE11B7A5FC011ABA /* RCTModuleMethod.h in Headers */ = {isa = PBXBuildFile; fileRef = 669B53B0F1825B1394A00752270DA103 /* RCTModuleMethod.h */; settings = {ATTRIBUTES = (Project, ); }; }; F680A09D6874079978F4C5CAD3748BF4 /* fr.lproj in Resources */ = {isa = PBXBuildFile; fileRef = 31242A4A3BA081BE176B63314AA7D197 /* fr.lproj */; }; - F6A08EBB2786817789F85782D918A2DB /* BugsnagFileStore.h in Headers */ = {isa = PBXBuildFile; fileRef = 19A88C10610D50662B932BCDFD19B609 /* BugsnagFileStore.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F6A08EBB2786817789F85782D918A2DB /* BugsnagFileStore.h in Headers */ = {isa = PBXBuildFile; fileRef = E61FC7FA4C9D8CE81CBE9AFC46072A47 /* BugsnagFileStore.h */; settings = {ATTRIBUTES = (Project, ); }; }; F6F66797F0FC78C2248492479CBE62CE /* IPAddress.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A990F3724B389E9A3F1D99AF48703368 /* IPAddress.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; F70C1B48EE8C32FBC9AF78B84C715BB0 /* TLSDefinitions.h in Headers */ = {isa = PBXBuildFile; fileRef = 8ADA55D682457995E872F8370FDB53AC /* TLSDefinitions.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F71009C4536A27002D076CDBFEAB8B0E /* BSG_KSMachHeaders.m in Sources */ = {isa = PBXBuildFile; fileRef = 09B2AC3210802A7AE1D972D3F3C233A3 /* BSG_KSMachHeaders.m */; }; + F71009C4536A27002D076CDBFEAB8B0E /* BSG_KSMachHeaders.m in Sources */ = {isa = PBXBuildFile; fileRef = 70EC929738BE759A09F7E0A5BE0CDC79 /* BSG_KSMachHeaders.m */; }; F7141CF921934893B165972EF3CF53BF /* FBLPromise+Reduce.h in Headers */ = {isa = PBXBuildFile; fileRef = 1EE56E1ED3667A5E18BCC2A966F68318 /* FBLPromise+Reduce.h */; settings = {ATTRIBUTES = (Project, ); }; }; F714A528842E6AC83C6A9282ABE869CD /* Exception.h in Headers */ = {isa = PBXBuildFile; fileRef = 3A4F4C0BCDE1E7222A9C16BB552976D5 /* Exception.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F72A290CFFE4FFF5B6E75CE55490C392 /* BugsnagLogger.h in Headers */ = {isa = PBXBuildFile; fileRef = A50D9EEAD28365B704D5679A4507324A /* BugsnagLogger.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F72A290CFFE4FFF5B6E75CE55490C392 /* BugsnagLogger.h in Headers */ = {isa = PBXBuildFile; fileRef = 0612E2A68FE8BC4C41BA849DD2046748 /* BugsnagLogger.h */; settings = {ATTRIBUTES = (Project, ); }; }; F75DC605FC8D1F7681541CE667AB7CB4 /* huffman_encode_utils.h in Headers */ = {isa = PBXBuildFile; fileRef = 738B85F81340FD1619ABC152FCE14868 /* huffman_encode_utils.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F7792BF3636610713062788116665BF3 /* RNCSafeAreaViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 4720C31A4DEA72B773C99CD7387E0C8B /* RNCSafeAreaViewManager.m */; }; + F7792BF3636610713062788116665BF3 /* RNCSafeAreaViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = A04698F69678504C1A8CA9E946179C70 /* RNCSafeAreaViewManager.m */; }; F79075F88B5F0A11693594549A7B8C5F /* SKScrollViewDescriptor.m in Sources */ = {isa = PBXBuildFile; fileRef = 586FFADA846B4528EB8C44A427BFFDE4 /* SKScrollViewDescriptor.m */; settings = {COMPILER_FLAGS = "-DDEBUG=1 -DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0"; }; }; F792B40741251C6B961A49C5E56AC7EB /* ScheduledFrameTransport.h in Headers */ = {isa = PBXBuildFile; fileRef = 229FC863351FC15A1ADA9A4F9477F91F /* ScheduledFrameTransport.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F7957488A7E05B294D0FDCB86F08DE8B /* react-native-slider-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = B843E54074EDB62A3C081817E57AC38B /* react-native-slider-dummy.m */; }; + F7957488A7E05B294D0FDCB86F08DE8B /* react-native-slider-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = EC14D56E14AF1C0C68A3A29516DD80CD /* react-native-slider-dummy.m */; }; F7A64B1A662F62B2B52185C92B653CC9 /* FBLPromise+All.h in Headers */ = {isa = PBXBuildFile; fileRef = 1EABEB5B0ED4B2FF486465703D6185F2 /* FBLPromise+All.h */; settings = {ATTRIBUTES = (Project, ); }; }; F7AA02141B7C9712F22D1023EE2FA272 /* syntax_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = E9EE8F4CEFDDE7CDA6FF80FA8BCEC846 /* syntax_enc.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; F7ACA0219D0817840C5BDC9A69E4BF5C /* Conv.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A086D7B4B5A4FE6CDB6218F2B406B9C9 /* Conv.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - F7BDB07A4A5F108754DD90CC9A907A43 /* BSG_KSMach.h in Headers */ = {isa = PBXBuildFile; fileRef = 90FF7CA990EA226AB6851046F9699FD9 /* BSG_KSMach.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F7BDB07A4A5F108754DD90CC9A907A43 /* BSG_KSMach.h in Headers */ = {isa = PBXBuildFile; fileRef = F57DC3AF076F8144C6408C3C79755B62 /* BSG_KSMach.h */; settings = {ATTRIBUTES = (Project, ); }; }; F7DB28588EC66275F9EF5B5DCA2330A8 /* GULAppEnvironmentUtil.m in Sources */ = {isa = PBXBuildFile; fileRef = EE4CD9DB36CBD104B31440FD4D2C255B /* GULAppEnvironmentUtil.m */; }; - F7E91880C97DE47E2B17DBDA5B8F9966 /* RCTLinkingPlugins.h in Headers */ = {isa = PBXBuildFile; fileRef = 9DF08272BC2BBD540559EBBF70AB3D38 /* RCTLinkingPlugins.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F80C986987B98CBEAB69F7AADF7F696B /* RCTBaseTextInputShadowView.m in Sources */ = {isa = PBXBuildFile; fileRef = 666BAD526FFAE2C6EDB4F7546A6EEE17 /* RCTBaseTextInputShadowView.m */; }; + F7E91880C97DE47E2B17DBDA5B8F9966 /* RCTLinkingPlugins.h in Headers */ = {isa = PBXBuildFile; fileRef = 1F36DED43E9E5069A7212B9596A46DB4 /* RCTLinkingPlugins.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F80C986987B98CBEAB69F7AADF7F696B /* RCTBaseTextInputShadowView.m in Sources */ = {isa = PBXBuildFile; fileRef = 6EC31A7E21065C343EAC68D90EFC2994 /* RCTBaseTextInputShadowView.m */; }; F8382867AA53861CD193DAF210EAE2DD /* BitIteratorDetail.h in Headers */ = {isa = PBXBuildFile; fileRef = F8FA5857F1B0D25AFEEE689587A6A350 /* BitIteratorDetail.h */; settings = {ATTRIBUTES = (Project, ); }; }; F83D6DC16A3DDE2C67D8E9F41EF111A9 /* yuv_mips32.c in Sources */ = {isa = PBXBuildFile; fileRef = CB40206B43B5992748747DC69CEF0B41 /* yuv_mips32.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - F85DFEC9533FEB34EB9F11A895890A80 /* SecureStorage.h in Headers */ = {isa = PBXBuildFile; fileRef = 642ABBCB9815AA342641F7FA6FBAC887 /* SecureStorage.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F85DFEC9533FEB34EB9F11A895890A80 /* SecureStorage.h in Headers */ = {isa = PBXBuildFile; fileRef = 37B911D1E27C8FAA0F25F0FC68E46ECA /* SecureStorage.h */; settings = {ATTRIBUTES = (Project, ); }; }; F868B0F2EB72D34861497F45B6754CFD /* CString.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3DB80E5B203ED5541F1AE27D3A1D23A2 /* CString.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; F86BDEE0D96DC60283796B6F863E564A /* FIRCLSSerializeSymbolicatedFramesOperation.h in Headers */ = {isa = PBXBuildFile; fileRef = 5FA48097A60E3C79497DF00BF16B6F8B /* FIRCLSSerializeSymbolicatedFramesOperation.h */; settings = {ATTRIBUTES = (Project, ); }; }; F87291CF6BE44C7D989180B811879180 /* ProtocolVersion.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A019E28A9E6E9CEEEC24F9DD589D9797 /* ProtocolVersion.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0 -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; F89E3730A9F2FFE81F7F870BBA9EB924 /* FIRCLSCompactUnwind.h in Headers */ = {isa = PBXBuildFile; fileRef = 83E6288D790089E7241E112CDD898675 /* FIRCLSCompactUnwind.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F8B02098A9ED6DA1336E35FC2E2937E0 /* experiments.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A6B147977EE9C8E4A1286D4C6094C385 /* experiments.cpp */; settings = {COMPILER_FLAGS = "-fno-omit-frame-pointer -fexceptions -Wall -Werror -std=c++1y -fPIC -fno-objc-arc"; }; }; - F8CE0653087E1B5A8D3BDEBC4D9AC6C1 /* RCTMultilineTextInputViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 904B9C0F5B5A4A0CC2B435A98A9779B8 /* RCTMultilineTextInputViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F8B02098A9ED6DA1336E35FC2E2937E0 /* experiments.cpp in Sources */ = {isa = PBXBuildFile; fileRef = C60505C3653E8C5F6662118B0D010A7E /* experiments.cpp */; settings = {COMPILER_FLAGS = "-fno-omit-frame-pointer -fexceptions -Wall -Werror -std=c++1y -fPIC -fno-objc-arc"; }; }; + F8CE0653087E1B5A8D3BDEBC4D9AC6C1 /* RCTMultilineTextInputViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 2B14DE84C4710921B5FC4F09908D4E1E /* RCTMultilineTextInputViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; F8DB5DE2E38CD1A3156CE3DE8EDB3FB5 /* pt-BR.lproj in Resources */ = {isa = PBXBuildFile; fileRef = D4B57FFBBEA9176B766C2461071C934B /* pt-BR.lproj */; }; F8DF4276E3FB3B7C5B8439933EF119CF /* FLEXNetworkRecorder.mm in Sources */ = {isa = PBXBuildFile; fileRef = 3E376827002A3EFDF2F7F169CA20C0AF /* FLEXNetworkRecorder.mm */; settings = {COMPILER_FLAGS = "-DDEBUG=1 -DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0"; }; }; F9231F6B75F9828C1E7E7BACA93EC40C /* CpuId.h in Headers */ = {isa = PBXBuildFile; fileRef = 7E09AEB3FAC9D47ECBE2D91BA4E05E5F /* CpuId.h */; settings = {ATTRIBUTES = (Project, ); }; }; @@ -3340,90 +3324,90 @@ F942FD556E631FA6501AE10641961074 /* GULNetworkURLSession.h in Headers */ = {isa = PBXBuildFile; fileRef = EB5A1D5A4E1EF92B70E662A22B8801D7 /* GULNetworkURLSession.h */; settings = {ATTRIBUTES = (Project, ); }; }; F978ED42F40D061340DAF5CD22373734 /* GDTCOREventDataObject.h in Headers */ = {isa = PBXBuildFile; fileRef = AD3BAF3EA12400C8FB7278F1F215FDFE /* GDTCOREventDataObject.h */; settings = {ATTRIBUTES = (Project, ); }; }; F97BED093A11441ADBF6C0E05D48E8CE /* ProxyLockable.h in Headers */ = {isa = PBXBuildFile; fileRef = D62D9D438AA2A488B83ECB8FEC332DEF /* ProxyLockable.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F97D19A1506555DC36F3E885262E13B2 /* BSG_KSObjC.h in Headers */ = {isa = PBXBuildFile; fileRef = C9F5CB0B8E3B1E1DA9C367F33FC0E935 /* BSG_KSObjC.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F97D19A1506555DC36F3E885262E13B2 /* BSG_KSObjC.h in Headers */ = {isa = PBXBuildFile; fileRef = 5C8803E9BC5AB715FD5DFA10E7517347 /* BSG_KSObjC.h */; settings = {ATTRIBUTES = (Project, ); }; }; F9825A64AE0EA188A375ACC599B19B8F /* FIRCLSSettings.h in Headers */ = {isa = PBXBuildFile; fileRef = E26B13FE8996444B3DCDD20D59675527 /* FIRCLSSettings.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F99C6EF148A5F929C6714A10414821BB /* react-native-jitsi-meet-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 6C24BF558E329697628671627C08884D /* react-native-jitsi-meet-dummy.m */; }; + F99C6EF148A5F929C6714A10414821BB /* react-native-jitsi-meet-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 5F7199B5364E560C0666E3EA98C08D89 /* react-native-jitsi-meet-dummy.m */; }; F9C79E07315E4101EE1E6284DBE96B6D /* json_patch.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9C58E09797BE08EE799C7076EE6C01B0 /* json_patch.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; F9D66462790E3ECCB90C80157BFEE731 /* DeferFlowable.h in Headers */ = {isa = PBXBuildFile; fileRef = EF239415A954509CD83CCCBD7D6BAEEE /* DeferFlowable.h */; settings = {ATTRIBUTES = (Project, ); }; }; F9F5491A40F3CD7B492D73AFDCD9B8CA /* FIRInstallationsVersion.h in Headers */ = {isa = PBXBuildFile; fileRef = 2312870F8AA8F7E32810D2C3A482E216 /* FIRInstallationsVersion.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F9FA39DEE8351B67F7194784AEE28EB3 /* BugsnagBreadcrumb.h in Headers */ = {isa = PBXBuildFile; fileRef = FD08EEFC8959C748FB4439D751F1204F /* BugsnagBreadcrumb.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F9FA39DEE8351B67F7194784AEE28EB3 /* BugsnagBreadcrumb.h in Headers */ = {isa = PBXBuildFile; fileRef = D5E11206EEC78033A85D721E4491E54C /* BugsnagBreadcrumb.h */; settings = {ATTRIBUTES = (Project, ); }; }; FA14342E79B4712BB89BFD6F442A6A64 /* enc_msa.c in Sources */ = {isa = PBXBuildFile; fileRef = 9ACDD1DA4A9D536AC0542C4DF7A4D413 /* enc_msa.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - FA261EF55BDA4678D08512DF89105B12 /* RNSScreenStackHeaderConfig.h in Headers */ = {isa = PBXBuildFile; fileRef = CF25046EDD37FD4274ED2A9926FF12FE /* RNSScreenStackHeaderConfig.h */; settings = {ATTRIBUTES = (Project, ); }; }; - FA3D5C2B97EFF2FCD6ADB8D56A187AED /* RCTAnimationUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = 41001AD7FDEAF2D3404E598ED3B7DDAD /* RCTAnimationUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; - FA3FCEE4D4F5F67613699A79BA042772 /* BugsnagCollections.h in Headers */ = {isa = PBXBuildFile; fileRef = 67853E7876459EC6320FDB3D34003ACC /* BugsnagCollections.h */; settings = {ATTRIBUTES = (Project, ); }; }; + FA261EF55BDA4678D08512DF89105B12 /* RNSScreenStackHeaderConfig.h in Headers */ = {isa = PBXBuildFile; fileRef = AE660E52BD52E517608D6753347FEC4C /* RNSScreenStackHeaderConfig.h */; settings = {ATTRIBUTES = (Project, ); }; }; + FA3D5C2B97EFF2FCD6ADB8D56A187AED /* RCTAnimationUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = B969A70BD950304E1BDA85E61297D663 /* RCTAnimationUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; + FA3FCEE4D4F5F67613699A79BA042772 /* BugsnagCollections.h in Headers */ = {isa = PBXBuildFile; fileRef = 64853B39BB2260A3B9B2115A7E38179D /* BugsnagCollections.h */; settings = {ATTRIBUTES = (Project, ); }; }; FA4153C149EF3F1DDED6E4846513C67F /* ThriftStreamShim.h in Headers */ = {isa = PBXBuildFile; fileRef = 02F6E3B8432991B587BE178EB2A2934B /* ThriftStreamShim.h */; settings = {ATTRIBUTES = (Project, ); }; }; FA4347EF4A800F16CE57D834D4859D8D /* CocoaAsyncSocket-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 59F68D916F77D550FA740E5871A2C700 /* CocoaAsyncSocket-dummy.m */; }; - FA6CDEB2A292F61C8FA52F4239629B79 /* RNVectorIconsManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 6B2074348619E86D6B3FA2F6F9BB3DB4 /* RNVectorIconsManager.m */; }; + FA6CDEB2A292F61C8FA52F4239629B79 /* RNVectorIconsManager.m in Sources */ = {isa = PBXBuildFile; fileRef = D0F2DC87E7E74A05A17321E86C47778C /* RNVectorIconsManager.m */; }; FA93C80941FFA425F6A8217DC86AF716 /* FIRCLSURLSession_PrivateMethods.h in Headers */ = {isa = PBXBuildFile; fileRef = 79053C64F1C59AFD89510405CF94C623 /* FIRCLSURLSession_PrivateMethods.h */; settings = {ATTRIBUTES = (Project, ); }; }; - FABD46C0F909DA26B81CFB9726F25A3D /* RCTUITextField.h in Headers */ = {isa = PBXBuildFile; fileRef = 13DE7CDF0865FCA5347076BF7571D525 /* RCTUITextField.h */; settings = {ATTRIBUTES = (Project, ); }; }; - FAC72EEDE680CE42571135D4F06ACD0C /* RCTTextDecorationLineType.h in Headers */ = {isa = PBXBuildFile; fileRef = BFC463CEF72F1D3708AA52C16EFAF580 /* RCTTextDecorationLineType.h */; settings = {ATTRIBUTES = (Project, ); }; }; + FABD46C0F909DA26B81CFB9726F25A3D /* RCTUITextField.h in Headers */ = {isa = PBXBuildFile; fileRef = 36CB10181D1D80A37D6563FE6C1E5E78 /* RCTUITextField.h */; settings = {ATTRIBUTES = (Project, ); }; }; + FAC72EEDE680CE42571135D4F06ACD0C /* RCTTextDecorationLineType.h in Headers */ = {isa = PBXBuildFile; fileRef = 4691158A680561562C3BD4EFCA236E87 /* RCTTextDecorationLineType.h */; settings = {ATTRIBUTES = (Project, ); }; }; FAD325C61C1C6B01789917FAD2FA0541 /* FIRCLSDownloadAndSaveSettingsOperation.m in Sources */ = {isa = PBXBuildFile; fileRef = 3BA42568CD090374443F4F1F27941531 /* FIRCLSDownloadAndSaveSettingsOperation.m */; }; FAE0FE7AD22D774BD0A3DF4A75DB5761 /* GULNetworkConstants.h in Headers */ = {isa = PBXBuildFile; fileRef = 242A428FC17181DE990E8D5A2153E786 /* GULNetworkConstants.h */; settings = {ATTRIBUTES = (Project, ); }; }; FAE7FB7F49C39C5CC3B15E412575429D /* sorted_vector_types.h in Headers */ = {isa = PBXBuildFile; fileRef = F7BF8F2CDC46F4D4D6CABE542F655172 /* sorted_vector_types.h */; settings = {ATTRIBUTES = (Project, ); }; }; - FB0A28191AAB089A2B180B0CDD512FD5 /* BSG_KSString.h in Headers */ = {isa = PBXBuildFile; fileRef = 87CC06497D4C74FD903F4554543BA3AF /* BSG_KSString.h */; settings = {ATTRIBUTES = (Project, ); }; }; + FB0A28191AAB089A2B180B0CDD512FD5 /* BSG_KSString.h in Headers */ = {isa = PBXBuildFile; fileRef = E78DE3EEC7497C553D96A7096BA63A3C /* BSG_KSString.h */; settings = {ATTRIBUTES = (Project, ); }; }; FB0F92706EF1B0B3F1CCF387BAFC3433 /* RSocketStats.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 707A486419CB0C06F413C938309E1ACD /* RSocketStats.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0 -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; FB0FC8AE6675285761278B79CA6D28FA /* InlineExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = 957C501B84FB837BF8EECF92583374B2 /* InlineExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; FB11A9AB3FB910CA62559D1E7D872869 /* FIRCLSAllocate.c in Sources */ = {isa = PBXBuildFile; fileRef = C4EC78950AF5C05FE297047021A519B3 /* FIRCLSAllocate.c */; }; FB363DD0DCCE96B7BA6C098C27EE5B4F /* FBLPromise+Timeout.h in Headers */ = {isa = PBXBuildFile; fileRef = A9FBDD16D8524D04F2E9A34E9A7A877C /* FBLPromise+Timeout.h */; settings = {ATTRIBUTES = (Project, ); }; }; FB530F1A567791D6927710373B7B9DE6 /* FIRCLSProcess.h in Headers */ = {isa = PBXBuildFile; fileRef = EB6ACA9BC0EC68183524CFAF50825AA1 /* FIRCLSProcess.h */; settings = {ATTRIBUTES = (Project, ); }; }; - FB5AC6BF479F7E96E183355FECFFDC4A /* RCTShadowView+Internal.m in Sources */ = {isa = PBXBuildFile; fileRef = 71EE0824B08F01894BCE4A04CBCCE009 /* RCTShadowView+Internal.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + FB5AC6BF479F7E96E183355FECFFDC4A /* RCTShadowView+Internal.m in Sources */ = {isa = PBXBuildFile; fileRef = E2E9DD9B3DC7A406C1CA8D7ABD12D7AE /* RCTShadowView+Internal.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; FB623A4CA5268F0DB215580161FD6A2E /* FIRCLSURLSessionUploadTask.m in Sources */ = {isa = PBXBuildFile; fileRef = CF01E9EEBAC70776C6CA2B3B5A114740 /* FIRCLSURLSessionUploadTask.m */; }; - FB64BA5C11ED82DB5C4BF04D0FFA4C4C /* JsArgumentHelpers.h in Headers */ = {isa = PBXBuildFile; fileRef = 236F1FBC6537DF2EE700BB743C408869 /* JsArgumentHelpers.h */; settings = {ATTRIBUTES = (Project, ); }; }; - FB72FD83F67C894AD142EB1845000CF2 /* RNCAsyncStorage.h in Headers */ = {isa = PBXBuildFile; fileRef = 010DF4C6234863CFFFE2649352EB2007 /* RNCAsyncStorage.h */; settings = {ATTRIBUTES = (Project, ); }; }; + FB64BA5C11ED82DB5C4BF04D0FFA4C4C /* JsArgumentHelpers.h in Headers */ = {isa = PBXBuildFile; fileRef = 647E05C8967F8DC91DA71C9B6858BE11 /* JsArgumentHelpers.h */; settings = {ATTRIBUTES = (Project, ); }; }; + FB72FD83F67C894AD142EB1845000CF2 /* RNCAsyncStorage.h in Headers */ = {isa = PBXBuildFile; fileRef = 215F110BC3E8F5FFB49CB62DA9EA5C88 /* RNCAsyncStorage.h */; settings = {ATTRIBUTES = (Project, ); }; }; FB8C1E2C48F2AD8515C5E099C749C5BF /* AtomicUnorderedMapUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = F1427BAE4902839B19780BC178D4AFBE /* AtomicUnorderedMapUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; FB8D27E9459831E52B2A77FFE785BDDE /* FIRErrors.h in Headers */ = {isa = PBXBuildFile; fileRef = EBFD1D03F0F485F3443D4B980F19DCF5 /* FIRErrors.h */; settings = {ATTRIBUTES = (Project, ); }; }; FB90E24396C26ED6126824A52A788876 /* SDDiskCache.h in Headers */ = {isa = PBXBuildFile; fileRef = 5C8C278630EACD4C65DF9089CB815DE8 /* SDDiskCache.h */; settings = {ATTRIBUTES = (Project, ); }; }; - FB9DEAA3FF6C672E354650B1ECAF88D1 /* RNCSafeAreaViewLocalData.h in Headers */ = {isa = PBXBuildFile; fileRef = AA8C028E57D4CDCD305CB1769B638432 /* RNCSafeAreaViewLocalData.h */; settings = {ATTRIBUTES = (Project, ); }; }; + FB9DEAA3FF6C672E354650B1ECAF88D1 /* RNCSafeAreaViewLocalData.h in Headers */ = {isa = PBXBuildFile; fileRef = 1DF95089FEB8EE5AFFCEFD1085BCB730 /* RNCSafeAreaViewLocalData.h */; settings = {ATTRIBUTES = (Project, ); }; }; FBB80ADC1665D487FDD0E9CAF78FECF9 /* GDTCORClock.h in Headers */ = {isa = PBXBuildFile; fileRef = 06BC2718366E7D446A460E9A3C051889 /* GDTCORClock.h */; settings = {ATTRIBUTES = (Project, ); }; }; - FBBFCCFE4689AE3908F40EC73AA360EF /* BugsnagNotifier.m in Sources */ = {isa = PBXBuildFile; fileRef = F86EF7F7A35F79FBD533532E642F5B86 /* BugsnagNotifier.m */; }; + FBBFCCFE4689AE3908F40EC73AA360EF /* BugsnagNotifier.m in Sources */ = {isa = PBXBuildFile; fileRef = 203ADEB243DDF0066313450E8FB412BD /* BugsnagNotifier.m */; }; FBC0D2805C929A4C5832392FC8E13163 /* ThreadFactory.h in Headers */ = {isa = PBXBuildFile; fileRef = 049042B3DF2FDABEB9BBE38636CFBE88 /* ThreadFactory.h */; settings = {ATTRIBUTES = (Project, ); }; }; FBD7C4826F1DD46AE003317225C0D984 /* raw_logging.cc in Sources */ = {isa = PBXBuildFile; fileRef = 84BEB0EBE212A77C545C1D889DEE8C90 /* raw_logging.cc */; settings = {COMPILER_FLAGS = "-Wno-shorten-64-to-32"; }; }; - FBEC4776C49342CC3B3405DF9F36297D /* jsi.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 387B70E27F656C0E6E9F164C880931BE /* jsi.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + FBEC4776C49342CC3B3405DF9F36297D /* jsi.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 06604141F87AF3B9A7452D0A31C70A6A /* jsi.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; FBF3EB6CF65A10370AFADD62954AE881 /* GULNetworkLoggerProtocol.h in Headers */ = {isa = PBXBuildFile; fileRef = D9667B3D1005C483DFE4C9B9B9D8DA62 /* GULNetworkLoggerProtocol.h */; settings = {ATTRIBUTES = (Project, ); }; }; FBF4EEFCACA4C3C85581D62F93473E7F /* Partial.h in Headers */ = {isa = PBXBuildFile; fileRef = A307C23F73060CC6EBC22ED024F3512F /* Partial.h */; settings = {ATTRIBUTES = (Project, ); }; }; - FBF5B5AFCD5AD341EA226D9D65CE3DE6 /* FBReactNativeSpec-generated.mm in Sources */ = {isa = PBXBuildFile; fileRef = 83BB5276CCBAD0A5948874E042BED951 /* FBReactNativeSpec-generated.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; - FBF7FD35E8A619A09CAF79E1283D5153 /* RCTAnimationDriver.h in Headers */ = {isa = PBXBuildFile; fileRef = 0018D8E1CFAD743DC022DF9AB7FEFB8F /* RCTAnimationDriver.h */; settings = {ATTRIBUTES = (Project, ); }; }; - FC3B69D90B512F571A269423E054E63E /* RNFBRCTEventEmitter.m in Sources */ = {isa = PBXBuildFile; fileRef = AD0C793B510FC63C24840A849BD60F0F /* RNFBRCTEventEmitter.m */; }; + FBF5B5AFCD5AD341EA226D9D65CE3DE6 /* FBReactNativeSpec-generated.mm in Sources */ = {isa = PBXBuildFile; fileRef = 3AC0A07E8362BC69AA57954BD756718A /* FBReactNativeSpec-generated.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + FBF7FD35E8A619A09CAF79E1283D5153 /* RCTAnimationDriver.h in Headers */ = {isa = PBXBuildFile; fileRef = D1908C07ECC1F8AD68708EB21D7278F6 /* RCTAnimationDriver.h */; settings = {ATTRIBUTES = (Project, ); }; }; + FC3B69D90B512F571A269423E054E63E /* RNFBRCTEventEmitter.m in Sources */ = {isa = PBXBuildFile; fileRef = DD4B0FD90EC53F24ED9D645DE9F28329 /* RNFBRCTEventEmitter.m */; }; FC6B3ABED8B138EF2E98AD6E2819FBF0 /* PasswordInFile.h in Headers */ = {isa = PBXBuildFile; fileRef = 3CD7BE93FBD27AE0A01D306CED6B70D6 /* PasswordInFile.h */; settings = {ATTRIBUTES = (Project, ); }; }; FC75D51E54C6036FB1E4A073F39DE7B2 /* ScheduledSubscriber.h in Headers */ = {isa = PBXBuildFile; fileRef = 460A56D8ECBF18816FA81ED31CF827B0 /* ScheduledSubscriber.h */; settings = {ATTRIBUTES = (Project, ); }; }; - FC76BBC6DF50A8445C9B5C0C87C73CD1 /* RCTInputAccessoryViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 1E39BD45138B9D64B9B931FE16A1DC79 /* RCTInputAccessoryViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + FC76BBC6DF50A8445C9B5C0C87C73CD1 /* RCTInputAccessoryViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 73B306321B65D553249B367A46C9B719 /* RCTInputAccessoryViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; FC87714A41923AA16685BCF5EA2F22F7 /* SDImageCodersManager.m in Sources */ = {isa = PBXBuildFile; fileRef = FEEADAE395EFAD95880D4ADFC657B6A4 /* SDImageCodersManager.m */; }; - FC98D260B0CFC32AFF56A78B6D25EEFA /* DeviceUID.h in Headers */ = {isa = PBXBuildFile; fileRef = ED9CD1A8E4D2EAC4740033F246A5FEC6 /* DeviceUID.h */; settings = {ATTRIBUTES = (Project, ); }; }; - FC9B2F29DAFE983130380A286B62F354 /* RCTUtilsUIOverride.m in Sources */ = {isa = PBXBuildFile; fileRef = 4695251E28F41008C9F3DFF460FEECE8 /* RCTUtilsUIOverride.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + FC98D260B0CFC32AFF56A78B6D25EEFA /* DeviceUID.h in Headers */ = {isa = PBXBuildFile; fileRef = EE2A81427693ACA8E46CED098BF2F541 /* DeviceUID.h */; settings = {ATTRIBUTES = (Project, ); }; }; + FC9B2F29DAFE983130380A286B62F354 /* RCTUtilsUIOverride.m in Sources */ = {isa = PBXBuildFile; fileRef = 16FCE78241F592B11B57CF463BBB48D2 /* RCTUtilsUIOverride.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; FC9DD498F5C8931F8D854BCBE5027F26 /* FIROptions.h in Headers */ = {isa = PBXBuildFile; fileRef = 40BA46164F7B6B7BF35D6C75120060FB /* FIROptions.h */; settings = {ATTRIBUTES = (Project, ); }; }; FCD3515E17588302448E1EEEDB5DE753 /* FlipperClient.mm in Sources */ = {isa = PBXBuildFile; fileRef = BA49F138F43529241E7715ED61E9CB03 /* FlipperClient.mm */; settings = {COMPILER_FLAGS = "-DDEBUG=1 -DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0"; }; }; - FCDC5F5AF807DB5781447F7EC845B581 /* RNDeviceInfo.m in Sources */ = {isa = PBXBuildFile; fileRef = B7FF49D4BB2C9495FBA60F00F6FF7785 /* RNDeviceInfo.m */; }; + FCDC5F5AF807DB5781447F7EC845B581 /* RNDeviceInfo.m in Sources */ = {isa = PBXBuildFile; fileRef = 168D38584A334CC1075ED6E11A0146E2 /* RNDeviceInfo.m */; }; FCE3A33F83836596ACAE1381D52942AB /* Cursor-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 429CF81F3064960AD6BC66B20969F187 /* Cursor-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; FCE7CEB488C7CDAA0D5B1F278245D27C /* FIRInstallationsAuthTokenResultInternal.h in Headers */ = {isa = PBXBuildFile; fileRef = BA47EF8355AC85F812DDC3DDC0F6B2F6 /* FIRInstallationsAuthTokenResultInternal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - FCEEE57C164203D44D5FA52C3A94696A /* RCTAssert.m in Sources */ = {isa = PBXBuildFile; fileRef = EA97DFEA09BDD82EED983AFE1835DA12 /* RCTAssert.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - FD4075015771EB548EE8ADB386FA5E20 /* REANode.m in Sources */ = {isa = PBXBuildFile; fileRef = A7B125F1892F0C21D8BE2A40FE16C7F7 /* REANode.m */; }; + FCEEE57C164203D44D5FA52C3A94696A /* RCTAssert.m in Sources */ = {isa = PBXBuildFile; fileRef = A1973DE2E5FBE48CC98F42EDE0A4F185 /* RCTAssert.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + FD4075015771EB548EE8ADB386FA5E20 /* REANode.m in Sources */ = {isa = PBXBuildFile; fileRef = 77B19152B494BA1B36F7AB79B984AB98 /* REANode.m */; }; FD70F4A9596E68CFB8B1CE1F177A85DB /* GULNetwork.m in Sources */ = {isa = PBXBuildFile; fileRef = 9D02B362DE7861F6C9B7347A03D2D01A /* GULNetwork.m */; }; FD89528F6BA64ACD4765E0B56ED98D81 /* FIRCLSApplicationIdentifierModel.h in Headers */ = {isa = PBXBuildFile; fileRef = 27F486B66D01BBEC7C8F93CF3AB4032B /* FIRCLSApplicationIdentifierModel.h */; settings = {ATTRIBUTES = (Project, ); }; }; - FDA29132398C15CB3513C3537F84AABA /* RCTBackedTextInputDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = 7B5FDE5D3E7563BEFA60D070D48F4919 /* RCTBackedTextInputDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; }; + FDA29132398C15CB3513C3537F84AABA /* RCTBackedTextInputDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = EFAEC012E5E9EAD8122E72B6C1B41073 /* RCTBackedTextInputDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; }; FDD5FCFCFF3A1F08C968E2B47BEEF20A /* SSLErrors.h in Headers */ = {isa = PBXBuildFile; fileRef = 6D52261B21B4B2B17750F2AA5645AEA7 /* SSLErrors.h */; settings = {ATTRIBUTES = (Project, ); }; }; FDD98AFFE343DEF1281990CB755B5933 /* Demangle.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 6368CF85B3E4010BE953086B81C23FC6 /* Demangle.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; FDE050EAD80EBE0E02D981562F432050 /* ThreadLocalDetail.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D7AE28A75D2D7B71B61DA10E63B35FDC /* ThreadLocalDetail.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - FDEB8AED12B5ABC32102D7283197E186 /* RCTBaseTextShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = A677CF88C75F1C80A59F60569405718A /* RCTBaseTextShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + FDEB8AED12B5ABC32102D7283197E186 /* RCTBaseTextShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = B7FDE4513DB617FCC57BE7A7D3369E80 /* RCTBaseTextShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; FE165B226B01BF0E5282096678842384 /* FIRCLSContext.h in Headers */ = {isa = PBXBuildFile; fileRef = ECFE26448E3C1C7112FACD71232CF62D /* FIRCLSContext.h */; settings = {ATTRIBUTES = (Project, ); }; }; FE570C55427946ABBAB0EF448040C12E /* CancelingSubscriber.h in Headers */ = {isa = PBXBuildFile; fileRef = FE66489133152A3CAA539993880A3833 /* CancelingSubscriber.h */; settings = {ATTRIBUTES = (Project, ); }; }; FE5B55CC4A37EF0D7B2C1E92CAF12F99 /* NetworkSocket.h in Headers */ = {isa = PBXBuildFile; fileRef = CD1470D09E1D46A280291B16028B7C2F /* NetworkSocket.h */; settings = {ATTRIBUTES = (Project, ); }; }; - FE7D0BE1B4F581460DB11DCED18BCE1B /* RNCAssetsLibraryRequestHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = EF3D382978D78DB8C4A2717909EED7DC /* RNCAssetsLibraryRequestHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; + FE7D0BE1B4F581460DB11DCED18BCE1B /* RNCAssetsLibraryRequestHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 66B27C2CBEB364D204180DF161B01B67 /* RNCAssetsLibraryRequestHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; FE9B01DC938E8FF1AE38579797F5CBB0 /* EnvUtil.h in Headers */ = {isa = PBXBuildFile; fileRef = E3C648D81314F24EA3DC0F1A9544B718 /* EnvUtil.h */; settings = {ATTRIBUTES = (Project, ); }; }; FEA267B227B0E81D22A07384FA7CD1BB /* logging.h in Headers */ = {isa = PBXBuildFile; fileRef = 64F86ABAB87C308982C8C8ECB369E1E3 /* logging.h */; settings = {ATTRIBUTES = (Project, ); }; }; FEBADA0CFA3CA34FC5F4D96D5B93A299 /* MiniPBCoder.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1A7680062F22F4745F5BE8D384CD6260 /* MiniPBCoder.cpp */; settings = {COMPILER_FLAGS = "-x objective-c++ -fno-objc-arc"; }; }; FEC142C629BFD9083352310B4B259F98 /* FIRInstallationsIIDTokenStore.h in Headers */ = {isa = PBXBuildFile; fileRef = DEE9AA9F55B3C2237B0A1C5B7BB72374 /* FIRInstallationsIIDTokenStore.h */; settings = {ATTRIBUTES = (Project, ); }; }; FEC2AAA000CDAF71ECCE958D866EBC30 /* FBLPromise+Testing.h in Headers */ = {isa = PBXBuildFile; fileRef = E34ED41386B129A0DE2B4C49679D6F57 /* FBLPromise+Testing.h */; settings = {ATTRIBUTES = (Project, ); }; }; - FED21ACC025E093B843CD351A1C0045B /* RCTImageBlurUtils.m in Sources */ = {isa = PBXBuildFile; fileRef = 41D91F20540EB4D8074EB34C2891B094 /* RCTImageBlurUtils.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + FED21ACC025E093B843CD351A1C0045B /* RCTImageBlurUtils.m in Sources */ = {isa = PBXBuildFile; fileRef = AF3725A1FB3293E2E6B03AB140D810D8 /* RCTImageBlurUtils.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; FF081E923FA97838EF4E4001A676D9FE /* firebasecore.nanopb.h in Headers */ = {isa = PBXBuildFile; fileRef = 209D16DF7BE26200292E3AF53D619384 /* firebasecore.nanopb.h */; settings = {ATTRIBUTES = (Project, ); }; }; FF20886F669DA038DCB2D84F30D71D5E /* IOBufQueue.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 4B9FD8B9EFE1CC37430E650C6D194813 /* IOBufQueue.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - FF217BF4F60D6ABBE53FF634B951F784 /* FFFastImageSource.h in Headers */ = {isa = PBXBuildFile; fileRef = 8529E67141DA8CCDE842D0C1AFA6FD12 /* FFFastImageSource.h */; settings = {ATTRIBUTES = (Project, ); }; }; + FF217BF4F60D6ABBE53FF634B951F784 /* FFFastImageSource.h in Headers */ = {isa = PBXBuildFile; fileRef = 72A876A2858E5A450906DA4D566FA040 /* FFFastImageSource.h */; settings = {ATTRIBUTES = (Project, ); }; }; FF25A72AFBFDD3B1F8A677B56EE3F6C6 /* rescaler_sse2.c in Sources */ = {isa = PBXBuildFile; fileRef = 823198FFD540E2221CB3DDE2502289AE /* rescaler_sse2.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - FF28A2B722BF2ACB2EEEA732848F44CD /* UMViewManagerAdapterClassesRegistry.h in Headers */ = {isa = PBXBuildFile; fileRef = D58A394D72B6C488E64A3371BDF02758 /* UMViewManagerAdapterClassesRegistry.h */; settings = {ATTRIBUTES = (Project, ); }; }; + FF28A2B722BF2ACB2EEEA732848F44CD /* UMViewManagerAdapterClassesRegistry.h in Headers */ = {isa = PBXBuildFile; fileRef = 87B7231DF0D484A9D88649C7D3A310B0 /* UMViewManagerAdapterClassesRegistry.h */; settings = {ATTRIBUTES = (Project, ); }; }; FF35D631BBD7CE3793F2585E076ABE37 /* UIImage+ForceDecode.h in Headers */ = {isa = PBXBuildFile; fileRef = 7F0DAE1D2DAEBD977A1EB235FA09069F /* UIImage+ForceDecode.h */; settings = {ATTRIBUTES = (Project, ); }; }; FF4F3D0AA50BA3ECBBA1A905D7F84797 /* FIRExceptionModel_Private.h in Headers */ = {isa = PBXBuildFile; fileRef = 10F7CF035EED2DD93173B8F2549A3E92 /* FIRExceptionModel_Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; FF8366ADAE423B2AFB5753C39F314128 /* alpha_processing_sse41.c in Sources */ = {isa = PBXBuildFile; fileRef = 53802D932EE90CEEEEC3100997F04314 /* alpha_processing_sse41.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - FF8CB9E251EB7C4BA892E2F6B2E1D351 /* RCTI18nManager.mm in Sources */ = {isa = PBXBuildFile; fileRef = 268A625EECBD14EC6303D7B0EEE25B46 /* RCTI18nManager.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; - FF9E21A6087B13223BBAD7DE03C03FB7 /* REASetNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 2744D9AB6AFC3C47A5773B2A45689556 /* REASetNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + FF8CB9E251EB7C4BA892E2F6B2E1D351 /* RCTI18nManager.mm in Sources */ = {isa = PBXBuildFile; fileRef = 3224C3AF12965DCE435D987250A52E53 /* RCTI18nManager.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + FF9E21A6087B13223BBAD7DE03C03FB7 /* REASetNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 1CB8B41FF44F17347FE529F0BF24AE17 /* REASetNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; FFB9245D233A3C0CCA0F2A43466826E2 /* SDImageHEICCoderInternal.h in Headers */ = {isa = PBXBuildFile; fileRef = EFA80C524A1A4B7C125DC537833790CB /* SDImageHEICCoderInternal.h */; settings = {ATTRIBUTES = (Project, ); }; }; FFC03B7D8F37AE0403024D9BD66DB19C /* vp8li_dec.h in Headers */ = {isa = PBXBuildFile; fileRef = E6C652BF06E9356BE321D1E2FFE10499 /* vp8li_dec.h */; settings = {ATTRIBUTES = (Project, ); }; }; FFC5A9F8C44A1A39274334B81662239D /* FIRCLSUnwind_x86.c in Sources */ = {isa = PBXBuildFile; fileRef = 73D9980559B77CA957A03153403CA841 /* FIRCLSUnwind_x86.c */; }; @@ -3438,13 +3422,6 @@ remoteGlobalIDString = 2D4D3D5AD93ADCCF3DD45A88009E48D6; remoteInfo = "TOCropViewController-TOCropViewControllerBundle"; }; - 004FA2E654FEBF63CCD05540DA336B45 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 13D7009C3736FB694854D88BAD4742B6; - remoteInfo = EXAV; - }; 0053ED9B78FA78A3C6C3F5BE362C5CF1 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -3459,20 +3436,6 @@ remoteGlobalIDString = 2AB2EF542954AB1C999E03BFEF8DE806; remoteInfo = DoubleConversion; }; - 014631622F227A6D87B0D598C9D2C7BE /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 64F427905796B33B78A704063422979D; - remoteInfo = "rn-fetch-blob"; - }; - 01F5F7C6F02F04A143C849817B1EAEC0 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 8CC4EAA817AA86310D1900F1DAB3580F; - remoteInfo = FBLazyVector; - }; 02884AC05BC4B650EBE6E310CA3916B7 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -3501,12 +3464,19 @@ remoteGlobalIDString = D2B5E7DCCBBFB32341D857D01211A1A3; remoteInfo = nanopb; }; - 053CBA4A033207F937660B9FAA1F787B /* PBXContainerItemProxy */ = { + 05984DE6E676A3F073A33DF0C1AF1FDF /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 33B041E5D061336F88B875C8B86E45FB; - remoteInfo = ReactNativeKeyboardInput; + remoteGlobalIDString = DBD2D83E10F8B7D3F4E0E34E6A9FCFA6; + remoteInfo = "React-RCTText"; + }; + 06B2DFF9E38F9B03402EC227F2548A95 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = B9E8F4CA2A4A8599389FEB665A9B96FF; + remoteInfo = RNGestureHandler; }; 071222278FB4DF525C9E63FA3E8CE461 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -3522,27 +3492,6 @@ remoteGlobalIDString = 8D7F5D5DD528D21A72DC87ADA5B12E2D; remoteInfo = GoogleUtilities; }; - 08A82DD4762F44182AF578189EB14138 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 53D121F9F9BB0F8AC1C94A12C5A8572F; - remoteInfo = "React-RCTVibration"; - }; - 08F25805D8C5B150DD4A0C68F961AA89 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 6A9637F1BC8154F777335A6420579C05; - remoteInfo = "Flipper-Glog"; - }; - 0952F224D73C10AD091CCE30556CB93B /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 2AB2EF542954AB1C999E03BFEF8DE806; - remoteInfo = DoubleConversion; - }; 0992EA3BAB1334D3D4F32C329D61E5D8 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -3550,13 +3499,6 @@ remoteGlobalIDString = 072CEA044D2EF26F03496D5996BBF59F; remoteInfo = Firebase; }; - 099969C9E93FA925F2EEA8736E1F28C3 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = E16E206437995280D349D4B67695C894; - remoteInfo = "React-CoreModules"; - }; 0A78C568CA90DDDEBA5BDB1A9F02EBD9 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -3564,20 +3506,6 @@ remoteGlobalIDString = 1BEE828C124E6416179B904A9F66D794; remoteInfo = React; }; - 0AE44B11678348277B6D82B5666F431B /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 0D82774D2A533D3FFAE27CAB4A6E9CB2; - remoteInfo = RNImageCropPicker; - }; - 0B64855C0AEA66A554B7ACEAB1DA5C73 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = D20469A9A1E5CFB26045EAEBE3F88E5E; - remoteInfo = RCTTypeSafety; - }; 0B7BA2BED87BC1DD6BBFA3C1A07E4E46 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -3585,47 +3513,33 @@ remoteGlobalIDString = D20469A9A1E5CFB26045EAEBE3F88E5E; remoteInfo = RCTTypeSafety; }; - 0C0E5D11EF771190FDC74DC37EE99089 /* PBXContainerItemProxy */ = { + 0BB7224F9B411319353FAAB4511016F2 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 5B40FBDAD0AB75D17C4760F4054BFF71; - remoteInfo = JitsiMeetSDK; + remoteGlobalIDString = 6FE9147F8AAA4DE676C190F680F47AE2; + remoteInfo = "React-RCTLinking"; }; - 0D4D30F628010BCD0383210B1E0DC928 /* PBXContainerItemProxy */ = { + 0F6B2204F8C20AC44CD62FFF2878A788 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 96150F524B245896B800F84F369A9A5A; - remoteInfo = RNVectorIcons; + remoteGlobalIDString = AC8AE887C706A43711D115E69B9D988A; + remoteInfo = MMKVCore; }; - 0D8E6B479003FA5233845F90101E52CD /* PBXContainerItemProxy */ = { + 0FB1811BEC058B556FC00D44A231234B /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 28A005E00FB77DDB2543047A07ED99A5; - remoteInfo = EXAppleAuthentication; + remoteGlobalIDString = DBD2D83E10F8B7D3F4E0E34E6A9FCFA6; + remoteInfo = "React-RCTText"; }; - 0ED929DBE6F405943A8D2040EC34600C /* PBXContainerItemProxy */ = { + 0FCE3EA5C5BA2C4EFA38B03BDF32F58B /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = B53D977A951AFC38B21751B706C1DF83; - remoteInfo = GoogleAppMeasurement; - }; - 0F0A09BA8B6C05637754A9E77DD061A6 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 74DAFD196634D10887C9A4E7BA19A5E4; - remoteInfo = "react-native-mmkv-storage"; - }; - 0F287469A23991276050BA94E399AE38 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 27E277B43A5F7AE00EC5051AB99AC38E; - remoteInfo = ReactNativeKeyboardTrackingView; + remoteGlobalIDString = D20469A9A1E5CFB26045EAEBE3F88E5E; + remoteInfo = RCTTypeSafety; }; 0FD6A4ED78388214475895E97458EB68 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -3634,6 +3548,13 @@ remoteGlobalIDString = 1BEE828C124E6416179B904A9F66D794; remoteInfo = React; }; + 100394E41F587574C44D267F568EF184 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 47D2E85A78C25869BB13521D8561A638; + remoteInfo = libwebp; + }; 105C14933DE14E3D661907FB45821DCA /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -3641,20 +3562,6 @@ remoteGlobalIDString = 463F41A7E8B252F8AC5024DA1F4AF6DA; remoteInfo = "React-cxxreact"; }; - 108DC8621AD9F628AAD847B4A59603BB /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = ADC4ACC657481AD27F9936D08FF7F49A; - remoteInfo = "react-native-cookies"; - }; - 10B79FB38CF1670237CDF99655006C94 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = DC0D417AC8ABB7AA10C20A5E0F065812; - remoteInfo = RNConfigReader; - }; 11B05BDD0953E25B9974D84FC93A4F79 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -3662,13 +3569,6 @@ remoteGlobalIDString = 4402AFF83DBDC4DD07E198685FDC2DF2; remoteInfo = FirebaseCore; }; - 128EEB4453BAEC2733570788B4AF21C9 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = D0EFEFB685D97280256C559792236873; - remoteInfo = glog; - }; 12BB121C6C62E9D130D1F1C4061597FC /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -3676,6 +3576,13 @@ remoteGlobalIDString = 2AB2EF542954AB1C999E03BFEF8DE806; remoteInfo = DoubleConversion; }; + 12FA68BEC75BB24DB4A18EB56DBBEEB5 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 27E277B43A5F7AE00EC5051AB99AC38E; + remoteInfo = ReactNativeKeyboardTrackingView; + }; 132A4A8CBAE2EBFF485A847482DF06DD /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -3697,13 +3604,6 @@ remoteGlobalIDString = 9668C19AA6D8EA320F83875FA286855A; remoteInfo = UMConstantsInterface; }; - 13E95A94E455EFCC0490394B4FD99849 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = BD9A27D8398DEB3205D3F8937B0672A0; - remoteInfo = "react-native-safe-area-context"; - }; 14FABE1DA2D29D5AE8EE8EE26F763525 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -3711,47 +3611,19 @@ remoteGlobalIDString = 32CA4CBD6B28983076BD93DA221AD027; remoteInfo = YogaKit; }; - 15120471ADC187E59B8EA4D14A82D2D4 /* PBXContainerItemProxy */ = { + 15AFA94F85E7504FC41BC8AF6B0613A1 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 33B041E5D061336F88B875C8B86E45FB; - remoteInfo = ReactNativeKeyboardInput; + remoteGlobalIDString = D11E74324175FE5B0E78DB046527F233; + remoteInfo = "react-native-document-picker"; }; - 15123C46531DEBAFECCCD37A68518535 /* PBXContainerItemProxy */ = { + 15CCD7D1A790618E4B3B3D4EC7545035 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 74DAFD196634D10887C9A4E7BA19A5E4; - remoteInfo = "react-native-mmkv-storage"; - }; - 15260BC1B6E26DA77110C9DF4777C21A /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = D39AB631E8050865DE01F6D5678797D2; - remoteInfo = "react-native-jitsi-meet"; - }; - 16A88BF0190C20E14C0C438C39B8C40F /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = D2B5E7DCCBBFB32341D857D01211A1A3; - remoteInfo = nanopb; - }; - 1750AB13A34CA42DC71D1092115E57AE /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = B6D39E083AE0FF45BA30D7CDF6198A03; - remoteInfo = "Flipper-Folly"; - }; - 1780DC19A6FDAECCB7C4F3E5B8C8A9AE /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = DBCB1B4965863DDD3B9DED9A0918A526; - remoteInfo = UMCore; + remoteGlobalIDString = 072CEA044D2EF26F03496D5996BBF59F; + remoteInfo = Firebase; }; 18124B833F1C5B50A22FEF874AA062F3 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -3767,12 +3639,33 @@ remoteGlobalIDString = AC8AE887C706A43711D115E69B9D988A; remoteInfo = MMKVCore; }; - 1876CF7039FCB2B7162F5AB5EF5FF651 /* PBXContainerItemProxy */ = { + 189DCC07C50626C34F515689DD3567F8 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 014495932E402CA67C37681988047CA2; - remoteInfo = UMFontInterface; + remoteGlobalIDString = FF879E718031128A75E7DE54046E6219; + remoteInfo = RNReanimated; + }; + 19004D4B8CE6FB7C39623F4A2B555D1F /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 2B25F90D819B9ADF2AF2D8733A890333; + remoteInfo = Yoga; + }; + 194693ED2215476F183A3CD36FBCBA26 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 1A0445474DA11CA659C4BCC5AB64B1BF; + remoteInfo = RNCMaskedView; + }; + 1A0CF85F14DD7A5897452BC57889B20F /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 807428FE76D80865C9F59F3502600E89; + remoteInfo = RNDeviceInfo; }; 1A59764CA4DE4DAF5D504EF530F5428C /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -3788,13 +3681,6 @@ remoteGlobalIDString = 1BEE828C124E6416179B904A9F66D794; remoteInfo = React; }; - 1B388C4137AB2141375A8FD417E09E5C /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 2644525CCE081E967809A8163D893A93; - remoteInfo = UMFileSystemInterface; - }; 1B427832E8B2D091A989E92604487DCF /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -3802,13 +3688,6 @@ remoteGlobalIDString = 1BEE828C124E6416179B904A9F66D794; remoteInfo = React; }; - 1B7966D0BE90311D585C88DBD10AC968 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 8D7F5D5DD528D21A72DC87ADA5B12E2D; - remoteInfo = GoogleUtilities; - }; 1BAE415AD39A73F89D396EA40AB1B0C5 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -3816,19 +3695,19 @@ remoteGlobalIDString = 4402AFF83DBDC4DD07E198685FDC2DF2; remoteInfo = FirebaseCore; }; - 1C978A3749CB2A3C50A7FC845800FE06 /* PBXContainerItemProxy */ = { + 1C257445202E0003B7F961F5431E4AA8 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 6FE9147F8AAA4DE676C190F680F47AE2; - remoteInfo = "React-RCTLinking"; + remoteGlobalIDString = 74DAFD196634D10887C9A4E7BA19A5E4; + remoteInfo = "react-native-mmkv-storage"; }; - 1DAAA56D32867009B163D8F4D90B9AF4 /* PBXContainerItemProxy */ = { + 1D5F34C602ACB909D42488AE4BE353C2 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = C452F579644C83E8D8E36EC24A9BBD46; - remoteInfo = UMAppLoader; + remoteGlobalIDString = 2B25F90D819B9ADF2AF2D8733A890333; + remoteInfo = Yoga; }; 1DCB3309999BFDB2222EDB72D85FDB78 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -3837,6 +3716,27 @@ remoteGlobalIDString = D0EFEFB685D97280256C559792236873; remoteInfo = glog; }; + 1DE4ED15691CDF9568D1A9665410433A /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 072CEA044D2EF26F03496D5996BBF59F; + remoteInfo = Firebase; + }; + 1E1DD1C81CB420E3B823BB16D309416D /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = B53D977A951AFC38B21751B706C1DF83; + remoteInfo = GoogleAppMeasurement; + }; + 1E37E8D3AB9CAD06D42B37A6E3A3B0F9 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = A238B7CE3865946D1F214E1FE0023AAE; + remoteInfo = "rn-extensions-share"; + }; 1EECCDC5376D77D4DC29D8ACA3551B3F /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -3844,26 +3744,19 @@ remoteGlobalIDString = 2B25F90D819B9ADF2AF2D8733A890333; remoteInfo = Yoga; }; - 1F18FB0E0D0D91B591AD6CC00A9DA5C1 /* PBXContainerItemProxy */ = { + 1FE36D0ED51B5F4E373D3C0D934D5DF4 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 2BBF7206D7FAC92C82A042A99C4A98F8; - remoteInfo = PromisesObjC; + remoteGlobalIDString = 3847153A6E5EEFB86565BA840768F429; + remoteInfo = SDWebImage; }; - 1F554564FFE8094747DBBD929F8168E9 /* PBXContainerItemProxy */ = { + 2042AE6122CEDCCD1BEEA32C007EE3F0 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = B51433D546A38C51AA781F192E8836F8; - remoteInfo = RNLocalize; - }; - 20A5E64EBB816538F63A6EF241E993FA /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 9EB556EE511D43F3D5D7AAF51D8D0397; - remoteInfo = EXWebBrowser; + remoteGlobalIDString = 6677891AC2F7AB93E04BFF30B293A46B; + remoteInfo = RNBootSplash; }; 20D015A06332AED4640AE8BC78F18710 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -3872,13 +3765,6 @@ remoteGlobalIDString = FA877ADC442CB19CF61793D234C8B131; remoteInfo = "React-jsi"; }; - 20DA3D40EBE3814E7F078F7986BBBC48 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = A4EF87F5681665EAE943D9B06BBB17DF; - remoteInfo = "react-native-slider"; - }; 218BD48A74E10DEDDDAF4D13C755DC86 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -3886,13 +3772,6 @@ remoteGlobalIDString = 7ACAA9BE580DD31A5CB9D97C45D9492D; remoteInfo = "React-Core"; }; - 21A9A3D7E7AE8C468D07BCB1E7B24CC5 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = A4F685BE3CAC127BDCE4E0DBBD88D191; - remoteInfo = Folly; - }; 21B7FFD1A14C9DCA797642821E09A7B1 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -3900,20 +3779,6 @@ remoteGlobalIDString = 1BEE828C124E6416179B904A9F66D794; remoteInfo = React; }; - 21D092A006540CC828B9B4E97A92C229 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = E7E7CE52C8C68B17224FF8C262D80ABF; - remoteInfo = RCTRequired; - }; - 22349DE3618B5AE204E71B8D0AC0DE1C /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 718DB7D0A7E90B531AD577B3356C4161; - remoteInfo = "Flipper-PeerTalk"; - }; 2284921B4FC397971FFFACC555D01A18 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -3921,6 +3786,13 @@ remoteGlobalIDString = DBCB1B4965863DDD3B9DED9A0918A526; remoteInfo = UMCore; }; + 22FA2DB24A8046562C4C1CF445D4EB84 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 4402AFF83DBDC4DD07E198685FDC2DF2; + remoteInfo = FirebaseCore; + }; 23C9EE150BBDDD445CE0ADCFAE6D68ED /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -3928,12 +3800,19 @@ remoteGlobalIDString = A4F685BE3CAC127BDCE4E0DBBD88D191; remoteInfo = Folly; }; - 23FBC0E71514F0468E02B715CD71A813 /* PBXContainerItemProxy */ = { + 23FC33D3C00824A044C779FC6EBE7E64 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 0A915EE9D35CA5636731F8763E774951; - remoteInfo = UMCameraInterface; + remoteGlobalIDString = 4402AFF83DBDC4DD07E198685FDC2DF2; + remoteInfo = FirebaseCore; + }; + 24494216E4D02ADE208EF8D9C22232A5 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 74DAFD196634D10887C9A4E7BA19A5E4; + remoteInfo = "react-native-mmkv-storage"; }; 24974EF4CEED07AAC5B78292095CECB5 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -3942,6 +3821,20 @@ remoteGlobalIDString = 1BEE828C124E6416179B904A9F66D794; remoteInfo = React; }; + 24A82AD923F7977B827C04058DC98DD4 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 3FF2E78BB54ED67CA7FAD8DA2590DBEE; + remoteInfo = "react-native-appearance"; + }; + 252AD1F8E6085F4D211672D10D5EF709 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 32CA4CBD6B28983076BD93DA221AD027; + remoteInfo = YogaKit; + }; 2539C386890D7883A108FF4E3829524A /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -3956,6 +3849,13 @@ remoteGlobalIDString = 7ACAA9BE580DD31A5CB9D97C45D9492D; remoteInfo = "React-Core"; }; + 25B2335823BB35529EC2568E39827224 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 90D0DE2F3348233618414728C35311CA; + remoteInfo = RNFBApp; + }; 25D53C490A206BE5B5E6B5EB62789294 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -3963,12 +3863,19 @@ remoteGlobalIDString = A4F685BE3CAC127BDCE4E0DBBD88D191; remoteInfo = Folly; }; - 25E4DAD6C0D27028A06A4BE93C513BD2 /* PBXContainerItemProxy */ = { + 2640DCC15AE96DBD3DF4397CED9022C2 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = AC8AE887C706A43711D115E69B9D988A; - remoteInfo = MMKVCore; + remoteGlobalIDString = 6514D69CB93B41626AE1A05581F97B07; + remoteInfo = "react-native-background-timer"; + }; + 2771E9A165AB1C5AC25A04E119FE1371 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 6C1893932A69822CBE3502F2E0BCFB6D; + remoteInfo = EXConstants; }; 286C7DA34EBE9F8A3EC10424B36A30C8 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -3977,6 +3884,13 @@ remoteGlobalIDString = 1FAAE067C1BFDEA17DFB657C3379AB56; remoteInfo = "Flipper-RSocket"; }; + 28A8B185A146F278A56FFCD9A702E3AA /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = ADC4ACC657481AD27F9936D08FF7F49A; + remoteInfo = "react-native-cookies"; + }; 28AC9515063BFADC2266499CDC9BFFDC /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -3984,19 +3898,33 @@ remoteGlobalIDString = ED2506AE7DE35D654F61254441EA7155; remoteInfo = "boost-for-react-native"; }; - 2AA593C97AE98C33FF81D0F83CF47DFD /* PBXContainerItemProxy */ = { + 28E14CC668F98708446F7FACF9C4DFC6 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 9EB556EE511D43F3D5D7AAF51D8D0397; - remoteInfo = EXWebBrowser; + remoteGlobalIDString = 0A72FB88825FDC7D301C9DD1F8F96824; + remoteInfo = EXPermissions; }; - 2AAEECB156AACBE3F463997666BCF578 /* PBXContainerItemProxy */ = { + 29D59A75E56FFB538CF6CA3D44A8C550 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 214E42634D1E187D876346D36184B655; - remoteInfo = RNScreens; + remoteGlobalIDString = D11E74324175FE5B0E78DB046527F233; + remoteInfo = "react-native-document-picker"; + }; + 29EA71BA90D1671607BCCFE2306AC58A /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 0745200E60DC80C9A0A48B7E6C1518D7; + remoteInfo = BugsnagReactNative; + }; + 2A0C36D38110A034EB692C0BF173217E /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = D760AF58E12ABBB51F84160FB02B5F39; + remoteInfo = RNDateTimePicker; }; 2AB4E316E2673B76ACA537189D619922 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -4005,6 +3933,13 @@ remoteGlobalIDString = 1BEE828C124E6416179B904A9F66D794; remoteInfo = React; }; + 2AC72A2F9E48F6E6D4A7C725BA24A60C /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 651511D7DA7F07F9FC9AA40A2E86270D; + remoteInfo = "React-RCTNetwork"; + }; 2AEBE4AB92FD40BE88FF7AA27EDB8876 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -4012,19 +3947,26 @@ remoteGlobalIDString = D20469A9A1E5CFB26045EAEBE3F88E5E; remoteInfo = RCTTypeSafety; }; - 2B3176C374F5C2F9A1DA8C817FF32AF2 /* PBXContainerItemProxy */ = { + 2C8F63D03DA26C2368B92798FF7A4F54 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = C452F579644C83E8D8E36EC24A9BBD46; - remoteInfo = UMAppLoader; + remoteGlobalIDString = 6083682834ABE0AE7BD1CBF06CADD036; + remoteInfo = CocoaAsyncSocket; }; - 2C9BD51072B3256C7990CF6A8B8B9A07 /* PBXContainerItemProxy */ = { + 2C96384B61987222138D52EA81C772F2 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 680299219D3A48D42A648AF6706275A9; - remoteInfo = "React-RCTSettings"; + remoteGlobalIDString = 0BB7745637E0758DEA373456197090C6; + remoteInfo = RNFastImage; + }; + 2CC3FDC7D41C1CDD3E84DD5A4F92AD1A /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 463F41A7E8B252F8AC5024DA1F4AF6DA; + remoteInfo = "React-cxxreact"; }; 2D2C4648FB3AB375786117A39F3D1919 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -4033,6 +3975,13 @@ remoteGlobalIDString = 7ACAA9BE580DD31A5CB9D97C45D9492D; remoteInfo = "React-Core"; }; + 2D9E3D84E43975F2D53DF515F05F81DA /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 7F591BD8674041AAAA4F37DC699B5518; + remoteInfo = KeyCommands; + }; 2E1E454B327932AE914124C66C371526 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -4040,13 +3989,6 @@ remoteGlobalIDString = DBCB1B4965863DDD3B9DED9A0918A526; remoteInfo = UMCore; }; - 2E4F96E81B0FC3D6A54B9B7EC388705E /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = E7E7CE52C8C68B17224FF8C262D80ABF; - remoteInfo = RCTRequired; - }; 2E8FE62F5F6B8EF737DB919ED66B630A /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -4054,6 +3996,13 @@ remoteGlobalIDString = FA877ADC442CB19CF61793D234C8B131; remoteInfo = "React-jsi"; }; + 2EBE64EFFA9566A7AA37AB486A3E8D21 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 2BBF7206D7FAC92C82A042A99C4A98F8; + remoteInfo = PromisesObjC; + }; 2EEDA8CE75E6D0DC62A3B88EAA06ADD9 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -4061,40 +4010,26 @@ remoteGlobalIDString = 6D979AB5FDA2E858850D9903776A30B3; remoteInfo = "RNImageCropPicker-QBImagePicker"; }; - 300ADC8C9753BFA8AE1F776005FC80FF /* PBXContainerItemProxy */ = { + 2FE99D15EED78A649A813D11E08CD1DC /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 982644B5B647690B2E4F5B3F54EB5717; - remoteInfo = FlipperKit; + remoteGlobalIDString = 2BBF7206D7FAC92C82A042A99C4A98F8; + remoteInfo = PromisesObjC; }; - 3023F3DB7EB2EC0FB03E424D23834964 /* PBXContainerItemProxy */ = { + 304B1C6889806B98023FE0A037E104F2 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = FA877ADC442CB19CF61793D234C8B131; - remoteInfo = "React-jsi"; + remoteGlobalIDString = F4F25FCAC51B51FD5F986EB939BF1F87; + remoteInfo = GoogleDataTransportCCTSupport; }; - 3065BB7EC5AA13F1901EE05531BCFA2C /* PBXContainerItemProxy */ = { + 306E04BA3E7BB7990C09A3B8EB08F0F6 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 18B56DB36E1F066C927E49DBAE590128; - remoteInfo = RNRootView; - }; - 30C067FEB06401C556BCDE677CB4D59A /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = BA3F5E5AA483B263B69601DE2FA269CB; - remoteInfo = "react-native-cameraroll"; - }; - 31488C1D3FD4169FDE8F28F03FA6818D /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = BDD119F8782FABE2707D3D913EC3EDE5; - remoteInfo = RNFBAnalytics; + remoteGlobalIDString = 938CCE22F6C4094B3FB6CF1478579E4B; + remoteInfo = "React-RCTAnimation"; }; 31D39D46BAFDD97C6BABCAAE6105564A /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -4103,6 +4038,27 @@ remoteGlobalIDString = 2681CB7EF647E61F4F9A43029C235607; remoteInfo = "React-callinvoker"; }; + 327331659658752804AC8CE210968EFD /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = E16E206437995280D349D4B67695C894; + remoteInfo = "React-CoreModules"; + }; + 33188952EEB28FA82FF64B6475A4F3AB /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = BD9A27D8398DEB3205D3F8937B0672A0; + remoteInfo = "react-native-safe-area-context"; + }; + 3358883A7C545FBAA9F7120B0E17B496 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = B53D977A951AFC38B21751B706C1DF83; + remoteInfo = GoogleAppMeasurement; + }; 3386A20F5DC9F446AF718DB214EB40DB /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -4110,6 +4066,13 @@ remoteGlobalIDString = FA877ADC442CB19CF61793D234C8B131; remoteInfo = "React-jsi"; }; + 3412521ADF1AC6787350DE9936D4B86C /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 53D121F9F9BB0F8AC1C94A12C5A8572F; + remoteInfo = "React-RCTVibration"; + }; 343C5B3B96C0727BF01188E5154FBE61 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -4117,20 +4080,6 @@ remoteGlobalIDString = 7A020DAB6F3F0BA0A6D9946E84B38B7F; remoteInfo = "React-Core-AccessibilityResources"; }; - 34547D0A56C9383C89332A1674D38CEB /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = E3573FB7AF659C42B699003C73722241; - remoteInfo = RNFBCrashlytics; - }; - 34692FF1FA28E04DCB7AFD252F474664 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 8D18C49071FC5370C25F5758A85BA5F6; - remoteInfo = "react-native-webview"; - }; 3574B1BC6D98AB920A3CF341F2BCD349 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -4145,12 +4094,12 @@ remoteGlobalIDString = 4F265533AAB7C8985856EC78A33164BB; remoteInfo = "React-RCTImage"; }; - 35CAD206EAF7D407F7096C027CFC8C19 /* PBXContainerItemProxy */ = { + 3644B88692F0E78F27DE71A7B4305E55 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = DA0709CAAD589C6E7963495210438021; - remoteInfo = "React-jsiexecutor"; + remoteGlobalIDString = DBCB1B4965863DDD3B9DED9A0918A526; + remoteInfo = UMCore; }; 36831ECA54BDE0210098C683E1128ADE /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -4180,33 +4129,47 @@ remoteGlobalIDString = E7E7CE52C8C68B17224FF8C262D80ABF; remoteInfo = RCTRequired; }; - 3740443C37EFA7763F991A0FA35AADC2 /* PBXContainerItemProxy */ = { + 3739A3B1321254FEA8B54225B1124FF4 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 938CCE22F6C4094B3FB6CF1478579E4B; - remoteInfo = "React-RCTAnimation"; + remoteGlobalIDString = 0745200E60DC80C9A0A48B7E6C1518D7; + remoteInfo = BugsnagReactNative; }; - 38D4B2857E04B56A8B7E45E22D2F7DFA /* PBXContainerItemProxy */ = { + 37EC2B7F7529367468A8D43F97C08B4E /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = D760AF58E12ABBB51F84160FB02B5F39; - remoteInfo = RNDateTimePicker; + remoteGlobalIDString = 2681CB7EF647E61F4F9A43029C235607; + remoteInfo = "React-callinvoker"; }; - 399797907E32469038FB616E6C02FFE2 /* PBXContainerItemProxy */ = { + 38C3F9E0CDE60C8FE41E6AA45C779442 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 90D0DE2F3348233618414728C35311CA; - remoteInfo = RNFBApp; + remoteGlobalIDString = 95D98F901D07557EF7CA38D3F03832C5; + remoteInfo = "React-RCTBlob"; }; - 3A56C2B666E4B90E21BCAC38C655944F /* PBXContainerItemProxy */ = { + 39811B5ACCD7AC636470F25E9F437714 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 7ACAA9BE580DD31A5CB9D97C45D9492D; - remoteInfo = "React-Core"; + remoteGlobalIDString = 1092C13E1E1172209537C28D0C8D4D3C; + remoteInfo = "react-native-orientation-locker"; + }; + 399F4881142B841BCF02A817DD0E3E03 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 5B40FBDAD0AB75D17C4760F4054BFF71; + remoteInfo = JitsiMeetSDK; + }; + 3A42F62B40BF839932F4A20CA0C4A556 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = B9ED5194E665042005069EF06C82A050; + remoteInfo = "OpenSSL-Universal"; }; 3A7FA56DDB4EA79231EDF6205B7D02B9 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -4215,6 +4178,20 @@ remoteGlobalIDString = B53D977A951AFC38B21751B706C1DF83; remoteInfo = GoogleAppMeasurement; }; + 3AE95151F5E2FDE67C90FBA5EE51DA71 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 7F591BD8674041AAAA4F37DC699B5518; + remoteInfo = KeyCommands; + }; + 3B0301AC45D70D79FABF41CB8EE93E66 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = D760AF58E12ABBB51F84160FB02B5F39; + remoteInfo = RNDateTimePicker; + }; 3B2CB4C09D3A44183329A2C1357EC2EF /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -4222,13 +4199,6 @@ remoteGlobalIDString = B9ED5194E665042005069EF06C82A050; remoteInfo = "OpenSSL-Universal"; }; - 3B50AC7C5DDC6E409BB383170BC07882 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = ED2506AE7DE35D654F61254441EA7155; - remoteInfo = "boost-for-react-native"; - }; 3B55969C388D341FB93F6072DA04150C /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -4243,19 +4213,12 @@ remoteGlobalIDString = FA877ADC442CB19CF61793D234C8B131; remoteInfo = "React-jsi"; }; - 3CDE6EBF741ECD6F8BD338F3D59C2860 /* PBXContainerItemProxy */ = { + 3DB1FF54ABA808D82CD51EA2CA1EB645 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = DA0709CAAD589C6E7963495210438021; - remoteInfo = "React-jsiexecutor"; - }; - 3D4B00CC40A207DFDC2ED957C782D927 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 0CF4D9052577C85B6B8C4E957332626B; - remoteInfo = EXKeepAwake; + remoteGlobalIDString = 0A915EE9D35CA5636731F8763E774951; + remoteInfo = UMCameraInterface; }; 3E044DBA2E61AA8C64AED9F68101D5A8 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -4264,12 +4227,12 @@ remoteGlobalIDString = 7ACAA9BE580DD31A5CB9D97C45D9492D; remoteInfo = "React-Core"; }; - 403D87285AAE71BF635F9E1850AD7C4D /* PBXContainerItemProxy */ = { + 3FC52892FF95348E5B937E0F6BEAAE28 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 620E05868772C10B4920DC7E324F2C87; - remoteInfo = FirebaseCoreDiagnostics; + remoteGlobalIDString = 2AB2EF542954AB1C999E03BFEF8DE806; + remoteInfo = DoubleConversion; }; 407E86C85F781DAACF0C39B7C1F77209 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -4292,6 +4255,13 @@ remoteGlobalIDString = FA877ADC442CB19CF61793D234C8B131; remoteInfo = "React-jsi"; }; + 423490F2197112FAFD1C82AA877D3E89 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 1953860EA9853AA2BC8022B242F08512; + remoteInfo = SDWebImageWebPCoder; + }; 42F97C29084691AA0F01785A3193AF04 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -4306,6 +4276,13 @@ remoteGlobalIDString = 95D98F901D07557EF7CA38D3F03832C5; remoteInfo = "React-RCTBlob"; }; + 4422063DCF2548C1E253C33195AFFA5A /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 680299219D3A48D42A648AF6706275A9; + remoteInfo = "React-RCTSettings"; + }; 449D79087AC8EFD285D3D6948D363A86 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -4313,47 +4290,19 @@ remoteGlobalIDString = 1BEE828C124E6416179B904A9F66D794; remoteInfo = React; }; - 450DA2BBB66038E196229F60D5B353B8 /* PBXContainerItemProxy */ = { + 469029E1439130BF3B2BB285CF022C20 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 897EF6A99176326E24F51E2F2103828C; - remoteInfo = UMReactNativeAdapter; + remoteGlobalIDString = E63939AA6EFD3D6A8C09E45929F11DBD; + remoteInfo = Flipper; }; - 45F2D7DD647A233F76F6438AF8AF9EC5 /* PBXContainerItemProxy */ = { + 47E2FC67157B92962AA302F3CA2154D1 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 9668C19AA6D8EA320F83875FA286855A; - remoteInfo = UMConstantsInterface; - }; - 460BBB26393D24C1BE8194398CB97299 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 0BB7745637E0758DEA373456197090C6; - remoteInfo = RNFastImage; - }; - 470138E7CEAB20BAB087ACA9705EA57D /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 8D7F5D5DD528D21A72DC87ADA5B12E2D; - remoteInfo = GoogleUtilities; - }; - 47C54555D2F5B34078D26D3DF0107418 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 0A72FB88825FDC7D301C9DD1F8F96824; - remoteInfo = EXPermissions; - }; - 49287802C8948376837016255295EFEA /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 807428FE76D80865C9F59F3502600E89; - remoteInfo = RNDeviceInfo; + remoteGlobalIDString = 87803597EB3F20FC46472B85392EC4FD; + remoteInfo = FirebaseInstallations; }; 4929FE3F288D63DE59928493EE949592 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -4362,6 +4311,13 @@ remoteGlobalIDString = D0EFEFB685D97280256C559792236873; remoteInfo = glog; }; + 49561BC6EADCB630C313F30F96CB523B /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 869CED37B4B77AAE35DF8B6E70788BBC; + remoteInfo = EXLocalAuthentication; + }; 4995181EAD88B0A6D8B25B4EBD7059C0 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -4369,27 +4325,6 @@ remoteGlobalIDString = A4F685BE3CAC127BDCE4E0DBBD88D191; remoteInfo = Folly; }; - 49A63A6EC45BD3F7683990F6BE9FD789 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 0745200E60DC80C9A0A48B7E6C1518D7; - remoteInfo = BugsnagReactNative; - }; - 49B7635A50C65BB18A0954221A1EF8EE /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 2B25F90D819B9ADF2AF2D8733A890333; - remoteInfo = Yoga; - }; - 49CFEE179D55C7E33574ADF87BF5875B /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 87803597EB3F20FC46472B85392EC4FD; - remoteInfo = FirebaseInstallations; - }; 49F50ECEA44D3E4F8BB4ABF723720AB8 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -4397,12 +4332,19 @@ remoteGlobalIDString = 7ACAA9BE580DD31A5CB9D97C45D9492D; remoteInfo = "React-Core"; }; - 4A4AEC90E6CDD106016CCBC957FBAD3C /* PBXContainerItemProxy */ = { + 4AC19206448269D3D5806360A0039A76 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 263266A9E29FFF0E9C8CA0E4582BFCF4; - remoteInfo = EXImageLoader; + remoteGlobalIDString = 1FAAE067C1BFDEA17DFB657C3379AB56; + remoteInfo = "Flipper-RSocket"; + }; + 4B1C7D3888EE5D664BF3527EDDA609FD /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 4A95B7CD1D5F80C5E8CD9CDA00D41F70; + remoteInfo = EXVideoThumbnails; }; 4C0C596ADC9E293A7A58D1310730D1F4 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -4418,12 +4360,19 @@ remoteGlobalIDString = 620E05868772C10B4920DC7E324F2C87; remoteInfo = FirebaseCoreDiagnostics; }; - 4C3C6FCDA2BC474E37DAF02BA320ECE6 /* PBXContainerItemProxy */ = { + 4C67A55E557311E303130364CDC684B6 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = D20469A9A1E5CFB26045EAEBE3F88E5E; - remoteInfo = RCTTypeSafety; + remoteGlobalIDString = 9EB556EE511D43F3D5D7AAF51D8D0397; + remoteInfo = EXWebBrowser; + }; + 4C80F9467495FC84CC0B549968093B79 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 13D7009C3736FB694854D88BAD4742B6; + remoteInfo = EXAV; }; 4CAFA9778CDD44DF406CDBD2D4E93969 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -4446,6 +4395,83 @@ remoteGlobalIDString = A4F685BE3CAC127BDCE4E0DBBD88D191; remoteInfo = Folly; }; + 4D5B4B4F496B5D499340E1FD210EDC7B /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 28A005E00FB77DDB2543047A07ED99A5; + remoteInfo = EXAppleAuthentication; + }; + 4DE32D39E2EAEFEB97ED125A0D4209BA /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 2681CB7EF647E61F4F9A43029C235607; + remoteInfo = "React-callinvoker"; + }; + 4E321E4AFB162F0B83FB1FFF567BC08E /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = BA3F5E5AA483B263B69601DE2FA269CB; + remoteInfo = "react-native-cameraroll"; + }; + 4E6EA4CF349C8F94E598BD0A09129393 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = DBCB1B4965863DDD3B9DED9A0918A526; + remoteInfo = UMCore; + }; + 4E7A35F3BCB25E5712FC1D8841F19039 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = A4EF87F5681665EAE943D9B06BBB17DF; + remoteInfo = "react-native-slider"; + }; + 4FA2DB139F66648D73C256BA3C68DFAA /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 50188AAB5FAECCA9583327DBA2B0AF2B; + remoteInfo = UMTaskManagerInterface; + }; + 4FA32230A56C238B7CA699A1EBA770FA /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = D2B5E7DCCBBFB32341D857D01211A1A3; + remoteInfo = nanopb; + }; + 4FDA141A0F25E3F0256093E6CD4380F4 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 3FF2E78BB54ED67CA7FAD8DA2590DBEE; + remoteInfo = "react-native-appearance"; + }; + 4FEAB1BDA5B01A0A7514D9CC2EC72876 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = D0EFEFB685D97280256C559792236873; + remoteInfo = glog; + }; + 502D63D912FAE57E44142DA1DC63015F /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 4A95B7CD1D5F80C5E8CD9CDA00D41F70; + remoteInfo = EXVideoThumbnails; + }; + 5118E2F45FAE838717B9382A90C5FC13 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = B6D39E083AE0FF45BA30D7CDF6198A03; + remoteInfo = "Flipper-Folly"; + }; 5199EEE170B03E6034771D7D410366D6 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -4460,12 +4486,19 @@ remoteGlobalIDString = DBCB1B4965863DDD3B9DED9A0918A526; remoteInfo = UMCore; }; - 526B41979D8AB3CC9D844673F11FBF33 /* PBXContainerItemProxy */ = { + 5294D3BBE7D1816DE1382AC017C9DCC5 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 2AB2EF542954AB1C999E03BFEF8DE806; - remoteInfo = DoubleConversion; + remoteGlobalIDString = F3966F664F3CFAEFAB57C40FB54D3788; + remoteInfo = TOCropViewController; + }; + 52A9D9B76981D3C2F43294FB71AFEA63 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 718DB7D0A7E90B531AD577B3356C4161; + remoteInfo = "Flipper-PeerTalk"; }; 52D75569EE8B532085465A5470C6C390 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -4481,6 +4514,13 @@ remoteGlobalIDString = 463F41A7E8B252F8AC5024DA1F4AF6DA; remoteInfo = "React-cxxreact"; }; + 5363490420AADCE4CFDD9363029C7E44 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 1FAAE067C1BFDEA17DFB657C3379AB56; + remoteInfo = "Flipper-RSocket"; + }; 5475A7D10F548823793DA8859F6773CE /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -4488,20 +4528,6 @@ remoteGlobalIDString = D20469A9A1E5CFB26045EAEBE3F88E5E; remoteInfo = RCTTypeSafety; }; - 54A2E4D4849D25BB6D0130EE0BE4871C /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 53D121F9F9BB0F8AC1C94A12C5A8572F; - remoteInfo = "React-RCTVibration"; - }; - 54C7A68A1655F93CF300983E589D38D0 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 0A72FB88825FDC7D301C9DD1F8F96824; - remoteInfo = EXPermissions; - }; 553C9E2156C22165A3D5F8E54F781E1E /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -4509,26 +4535,33 @@ remoteGlobalIDString = 1BEE828C124E6416179B904A9F66D794; remoteInfo = React; }; - 564F51F1E802FEA11B38D12A8A2B1FE3 /* PBXContainerItemProxy */ = { + 55CCE51B65FB7B60808B5C5566E7FDDD /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = D11E74324175FE5B0E78DB046527F233; - remoteInfo = "react-native-document-picker"; + remoteGlobalIDString = F4F25FCAC51B51FD5F986EB939BF1F87; + remoteInfo = GoogleDataTransportCCTSupport; }; - 56C68608CA588E8B57869127EAEAD446 /* PBXContainerItemProxy */ = { + 56D4AFB9AEC75C1CF6DADE4A06C38E67 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 6C1893932A69822CBE3502F2E0BCFB6D; - remoteInfo = EXConstants; + remoteGlobalIDString = A4EF87F5681665EAE943D9B06BBB17DF; + remoteInfo = "react-native-slider"; }; - 57DEEBFBCD0C5C94A7F17AD8BDA303E4 /* PBXContainerItemProxy */ = { + 5743F45AA8EF96E45C212C3136C36C62 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 2681CB7EF647E61F4F9A43029C235607; - remoteInfo = "React-callinvoker"; + remoteGlobalIDString = B6D5DD49633DFF0657B8C3F08EB3ABA9; + remoteInfo = ReactCommon; + }; + 57776AF4D0E8CFC1B79C1A4CA6F3AD47 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = F7D033C4C128EECAA020990641FA985F; + remoteInfo = "React-jsinspector"; }; 58945C0A8D3B5F0C45E87A28652D0430 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -4537,6 +4570,13 @@ remoteGlobalIDString = FA877ADC442CB19CF61793D234C8B131; remoteInfo = "React-jsi"; }; + 590B50FF98ABB8C3B330F2DF61D564B1 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 11989A5E568B3B69655EE0C13DCDA3F9; + remoteInfo = "React-RCTActionSheet"; + }; 592671C6C3F74111AF89BE688E45B730 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -4544,13 +4584,6 @@ remoteGlobalIDString = 1BEE828C124E6416179B904A9F66D794; remoteInfo = React; }; - 59765C4E326AB45E49AD9EE9A3AAFF9E /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 1FAAE067C1BFDEA17DFB657C3379AB56; - remoteInfo = "Flipper-RSocket"; - }; 599D1944ADF3E4137B0FD9AF2380696C /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -4565,19 +4598,12 @@ remoteGlobalIDString = 3847153A6E5EEFB86565BA840768F429; remoteInfo = SDWebImage; }; - 5A2CFA42B4693CF6FE9200F6951B50BB /* PBXContainerItemProxy */ = { + 59B57C83FA339944205200B28C0AFA5E /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 90D0DE2F3348233618414728C35311CA; - remoteInfo = RNFBApp; - }; - 5A6BA097196337DBD7E5078F01804D6E /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = D63EF582C3FFEAFBF76242E9637C6E0A; - remoteInfo = CocoaLibEvent; + remoteGlobalIDString = FA877ADC442CB19CF61793D234C8B131; + remoteInfo = "React-jsi"; }; 5A9DED21300713AA6D50E96B3E2A6CE4 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -4586,19 +4612,26 @@ remoteGlobalIDString = 90D0DE2F3348233618414728C35311CA; remoteInfo = RNFBApp; }; - 5AA10308010480DDC169D81C3F01B9BB /* PBXContainerItemProxy */ = { + 5B4C217DD05CCB642BDD57C4C53BD590 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = FF879E718031128A75E7DE54046E6219; - remoteInfo = RNReanimated; + remoteGlobalIDString = B51433D546A38C51AA781F192E8836F8; + remoteInfo = RNLocalize; }; - 5B37EA4226FE52627F04050F38E6A0EC /* PBXContainerItemProxy */ = { + 5B97ECC2A192216098D835AC2BFBCD45 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = F7D033C4C128EECAA020990641FA985F; - remoteInfo = "React-jsinspector"; + remoteGlobalIDString = 8D18C49071FC5370C25F5758A85BA5F6; + remoteInfo = "react-native-webview"; + }; + 5BD6A1F317DFB0136DB449B3A3D8633A /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 6514D69CB93B41626AE1A05581F97B07; + remoteInfo = "react-native-background-timer"; }; 5BE1625FF2C73ACD1127D4A9DDADF1AF /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -4607,13 +4640,6 @@ remoteGlobalIDString = 7ACAA9BE580DD31A5CB9D97C45D9492D; remoteInfo = "React-Core"; }; - 5BE9BC41E57D92505C2594E1632E9A33 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 2BBF7206D7FAC92C82A042A99C4A98F8; - remoteInfo = PromisesObjC; - }; 5C468A63879B83D44F982682FB98470B /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -4621,6 +4647,13 @@ remoteGlobalIDString = 87803597EB3F20FC46472B85392EC4FD; remoteInfo = FirebaseInstallations; }; + 5CB40BE9CC1FDD3FB28D2C8B3A457357 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 409F3A0DB395F53FFB6AB30E5CD8ACD1; + remoteInfo = EXHaptics; + }; 5CCEC9141DF983E90BD5AE3E05C21A7B /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -4628,6 +4661,13 @@ remoteGlobalIDString = 8D7F5D5DD528D21A72DC87ADA5B12E2D; remoteInfo = GoogleUtilities; }; + 5D3A54348C9B5E4923B0F6F56030065F /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 6A9637F1BC8154F777335A6420579C05; + remoteInfo = "Flipper-Glog"; + }; 5D7263A8C3B911982BA2A84F9C447C16 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -4635,13 +4675,6 @@ remoteGlobalIDString = 1BEE828C124E6416179B904A9F66D794; remoteInfo = React; }; - 5D759D2F645416D7485E00355A920316 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 27E277B43A5F7AE00EC5051AB99AC38E; - remoteInfo = ReactNativeKeyboardTrackingView; - }; 5DCA67E832A9675BB0A0994ED38A5284 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -4656,27 +4689,6 @@ remoteGlobalIDString = 1BEE828C124E6416179B904A9F66D794; remoteInfo = React; }; - 5F937F4A75E914913CC5896822B01E28 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = ED2506AE7DE35D654F61254441EA7155; - remoteInfo = "boost-for-react-native"; - }; - 60B30FD9301A97122C6B9F9F1AF2DC4E /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 2038C6F97563AAD6162C284B3EDD5B3B; - remoteInfo = UMSensorsInterface; - }; - 60D2FB323C69C021CEDC07C8AB73C97A /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = E63939AA6EFD3D6A8C09E45929F11DBD; - remoteInfo = Flipper; - }; 625664485E68882E020182B4B8593A0B /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -4684,27 +4696,6 @@ remoteGlobalIDString = C49E7A4D59E5C8BE8DE9FB1EFB150185; remoteInfo = FirebaseAnalytics; }; - 62639906936EF38BCDC9EF967235DFE0 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = D39AB631E8050865DE01F6D5678797D2; - remoteInfo = "react-native-jitsi-meet"; - }; - 6291088887E5F4CBCBF87414DB0B736D /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 6C1893932A69822CBE3502F2E0BCFB6D; - remoteInfo = EXConstants; - }; - 62937B4F48D1B3DF569AF42C5F9088D7 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = DBD2D83E10F8B7D3F4E0E34E6A9FCFA6; - remoteInfo = "React-RCTText"; - }; 6295B26D9349A23F0AF1DE7C6AD8A1B3 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -4712,26 +4703,26 @@ remoteGlobalIDString = 2644525CCE081E967809A8163D893A93; remoteInfo = UMFileSystemInterface; }; - 6423924A022902547DBE5FC8EF93BD4D /* PBXContainerItemProxy */ = { + 635E9C329C5A5682B1F1601A69A04F7E /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 96150F524B245896B800F84F369A9A5A; + remoteInfo = RNVectorIcons; + }; + 639D48C1C02BA14C3BE0FE9FEA65FEE1 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; remoteGlobalIDString = 1BEE828C124E6416179B904A9F66D794; remoteInfo = React; }; - 6470C478622A642820D917DE237D13E9 /* PBXContainerItemProxy */ = { + 6423924A022902547DBE5FC8EF93BD4D /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 47D2E85A78C25869BB13521D8561A638; - remoteInfo = libwebp; - }; - 64CCC0537E5A09CF5ACD9529A77E40A5 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = B6D5DD49633DFF0657B8C3F08EB3ABA9; - remoteInfo = ReactCommon; + remoteGlobalIDString = 1BEE828C124E6416179B904A9F66D794; + remoteInfo = React; }; 6514B943829E36F02B9A139465155A84 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -4740,47 +4731,47 @@ remoteGlobalIDString = E63939AA6EFD3D6A8C09E45929F11DBD; remoteInfo = Flipper; }; - 65ED8DA6C4DDA777F5189F5214DB08C6 /* PBXContainerItemProxy */ = { + 6590ABB43129C43BA9C356535402A600 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 6677891AC2F7AB93E04BFF30B293A46B; - remoteInfo = RNBootSplash; + remoteGlobalIDString = 0A915EE9D35CA5636731F8763E774951; + remoteInfo = UMCameraInterface; }; - 65FE65EBD75575AB45FFFD5E444F15E3 /* PBXContainerItemProxy */ = { + 66CE193504C1672BFB2C2DE4227C0E2C /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = BDD119F8782FABE2707D3D913EC3EDE5; - remoteInfo = RNFBAnalytics; + remoteGlobalIDString = D9245543B79C09FAC40FC8B9F291536A; + remoteInfo = "Flipper-DoubleConversion"; }; - 665EBDBCB745605BA5D2BFA2B5DCA5C1 /* PBXContainerItemProxy */ = { + 66F4221E848EE7BDE76D94C17A9F5790 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 5C0371EE948D0357B8EE0E34ABB44BF0; - remoteInfo = GoogleDataTransport; + remoteGlobalIDString = 9668C19AA6D8EA320F83875FA286855A; + remoteInfo = UMConstantsInterface; }; - 66BC8BDD65D904B0C8F402B91E10D846 /* PBXContainerItemProxy */ = { + 66FFF6A9AC007E4EBD3392F8AF6957CF /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = F4F25FCAC51B51FD5F986EB939BF1F87; - remoteInfo = GoogleDataTransportCCTSupport; + remoteGlobalIDString = C49E7A4D59E5C8BE8DE9FB1EFB150185; + remoteInfo = FirebaseAnalytics; }; - 67B89DFA59221A394F419AADE64895BE /* PBXContainerItemProxy */ = { + 6710E8A0464E57F1C1A3E3F0D19375D1 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = D11E74324175FE5B0E78DB046527F233; - remoteInfo = "react-native-document-picker"; + remoteGlobalIDString = 33B041E5D061336F88B875C8B86E45FB; + remoteInfo = ReactNativeKeyboardInput; }; - 6864D85F409B8AF9B3CC17A57AAE3E27 /* PBXContainerItemProxy */ = { + 6785CAB45F7C371575A0AC01FFC325F9 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = AC8AE887C706A43711D115E69B9D988A; - remoteInfo = MMKVCore; + remoteGlobalIDString = E63939AA6EFD3D6A8C09E45929F11DBD; + remoteInfo = Flipper; }; 68768374A1E75E492CE01513CA6C20AF /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -4796,12 +4787,12 @@ remoteGlobalIDString = F3966F664F3CFAEFAB57C40FB54D3788; remoteInfo = TOCropViewController; }; - 689A10223BAA9BD30C6CE5AE9E05F406 /* PBXContainerItemProxy */ = { + 68B460EB3255F6C75CAE197807035EE2 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = D9245543B79C09FAC40FC8B9F291536A; - remoteInfo = "Flipper-DoubleConversion"; + remoteGlobalIDString = 33B041E5D061336F88B875C8B86E45FB; + remoteInfo = ReactNativeKeyboardInput; }; 693D404670546F8992A85D966A95020E /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -4810,6 +4801,13 @@ remoteGlobalIDString = FA877ADC442CB19CF61793D234C8B131; remoteInfo = "React-jsi"; }; + 6AD9650C32F3F1377032400EFDDEEC6D /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 6083682834ABE0AE7BD1CBF06CADD036; + remoteInfo = CocoaAsyncSocket; + }; 6AE2918D3E48649BDFDD0650FD43651D /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -4824,26 +4822,47 @@ remoteGlobalIDString = DA0709CAAD589C6E7963495210438021; remoteInfo = "React-jsiexecutor"; }; - 6BCE5AF2977E77BA7F45F1518615194F /* PBXContainerItemProxy */ = { + 6B0DB2D4901EFAD0A54DAB070C099E55 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = A238B7CE3865946D1F214E1FE0023AAE; - remoteInfo = "rn-extensions-share"; + remoteGlobalIDString = 2AD4F40E67E1874A0816F6B34289EB41; + remoteInfo = UMFaceDetectorInterface; }; - 6BD86AA5AB57BF84E754C50CE5E8964C /* PBXContainerItemProxy */ = { + 6B575BD1B27F77B4405539E18FC8F277 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 90148E8FD1C445D7A019D504FA8CBC53; - remoteInfo = ReactNativeART; + remoteGlobalIDString = 4F265533AAB7C8985856EC78A33164BB; + remoteInfo = "React-RCTImage"; }; - 6C1B51F74344439554EE8AA63BD0ACA0 /* PBXContainerItemProxy */ = { + 6B9F08ACEDFEAA0BFE4346819C3F3872 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = C3496D0495E700CF08A90C41EA8FA4BB; - remoteInfo = FBReactNativeSpec; + remoteGlobalIDString = ED2506AE7DE35D654F61254441EA7155; + remoteInfo = "boost-for-react-native"; + }; + 6C53188F3C65B9E6FDF670FAF916E696 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 18B56DB36E1F066C927E49DBAE590128; + remoteInfo = RNRootView; + }; + 6C9F3E26AFF6772B398157306315B68B /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 6FE9147F8AAA4DE676C190F680F47AE2; + remoteInfo = "React-RCTLinking"; + }; + 6CF89B7F2F3618B6641E7EC5DC555538 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 97C4DE84FA3CC4EC06AA6D8C249949B7; + remoteInfo = UMImageLoaderInterface; }; 6D74EB11AB3E0B0AB860EC4C23ACB427 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -4852,12 +4871,12 @@ remoteGlobalIDString = 2AB2EF542954AB1C999E03BFEF8DE806; remoteInfo = DoubleConversion; }; - 6F6B2F1207D9806CAF405EA0BBFF4FAC /* PBXContainerItemProxy */ = { + 706D09C8D2D1E95FFDB8EBBEEEBC41EB /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 463F41A7E8B252F8AC5024DA1F4AF6DA; - remoteInfo = "React-cxxreact"; + remoteGlobalIDString = 90148E8FD1C445D7A019D504FA8CBC53; + remoteInfo = ReactNativeART; }; 70AC81A917439EA0D74DCF9C1BF144DF /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -4873,6 +4892,13 @@ remoteGlobalIDString = F7845084F0CF03F54107EEF7411760AD; remoteInfo = UMPermissionsInterface; }; + 72C17454E6A9984B6C1C99F65E51BD75 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = C3496D0495E700CF08A90C41EA8FA4BB; + remoteInfo = FBReactNativeSpec; + }; 735E3AA43CA3DBC1B064B58F38C962B2 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -4887,20 +4913,6 @@ remoteGlobalIDString = 1BEE828C124E6416179B904A9F66D794; remoteInfo = React; }; - 74A4C7B9761C9EA22AFA61504187AE88 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 263266A9E29FFF0E9C8CA0E4582BFCF4; - remoteInfo = EXImageLoader; - }; - 74F5410359CE4416E203EB2B23BE5E4F /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 1092C13E1E1172209537C28D0C8D4D3C; - remoteInfo = "react-native-orientation-locker"; - }; 74F8831E48B81E5BF2E301334BA3ED41 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -4908,6 +4920,13 @@ remoteGlobalIDString = A4F685BE3CAC127BDCE4E0DBBD88D191; remoteInfo = Folly; }; + 754892AD453E93791D0719D10D50235D /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = D20469A9A1E5CFB26045EAEBE3F88E5E; + remoteInfo = RCTTypeSafety; + }; 754A10E91DFCDC79FEAD4753861638F2 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -4915,26 +4934,12 @@ remoteGlobalIDString = 1BEE828C124E6416179B904A9F66D794; remoteInfo = React; }; - 7556712C98F7DD098FFF0427831DB435 /* PBXContainerItemProxy */ = { + 75F4AA9988F0BA24B036B3E24EFF7CAC /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 96150F524B245896B800F84F369A9A5A; - remoteInfo = RNVectorIcons; - }; - 765D3CD938C8DB04A622CDBE3D3088EA /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 32CA4CBD6B28983076BD93DA221AD027; - remoteInfo = YogaKit; - }; - 7723DD25534A61313C280084D2519194 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 95D98F901D07557EF7CA38D3F03832C5; - remoteInfo = "React-RCTBlob"; + remoteGlobalIDString = 526C4398D095B3704EB933DADBC30093; + remoteInfo = FirebaseCrashlytics; }; 77650DB9BCD15D3DBD659DF4437F2533 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -4943,68 +4948,26 @@ remoteGlobalIDString = 1BEE828C124E6416179B904A9F66D794; remoteInfo = React; }; - 779020CAA93B9C0531EB528333D7FFA6 /* PBXContainerItemProxy */ = { + 7A50AD7BE7295FC60D773B51B78170B1 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; remoteGlobalIDString = 28A005E00FB77DDB2543047A07ED99A5; remoteInfo = EXAppleAuthentication; }; - 7800F09BF976D735911B0AB40947A5B4 /* PBXContainerItemProxy */ = { + 7AB4F3A3EE85D678114DBBFC233D7851 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 3847153A6E5EEFB86565BA840768F429; - remoteInfo = SDWebImage; + remoteGlobalIDString = 6677891AC2F7AB93E04BFF30B293A46B; + remoteInfo = RNBootSplash; }; - 78EF6A877B32D8DD5EFF9DD471F68F77 /* PBXContainerItemProxy */ = { + 7AF81B19D03DC7BFBFDC841B9D66C6D0 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 4402AFF83DBDC4DD07E198685FDC2DF2; - remoteInfo = FirebaseCore; - }; - 790B29BB6CAA36C2A22440FA382F7267 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 4402AFF83DBDC4DD07E198685FDC2DF2; - remoteInfo = FirebaseCore; - }; - 79F05FADCEAB382BCD7E3897BFEE8654 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 50188AAB5FAECCA9583327DBA2B0AF2B; - remoteInfo = UMTaskManagerInterface; - }; - 7A7C3CCADB41B0B5AE44B4BD0662A2B5 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 4A95B7CD1D5F80C5E8CD9CDA00D41F70; - remoteInfo = EXVideoThumbnails; - }; - 7A9FE54492E830C23AC41F90A8890A98 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 463F41A7E8B252F8AC5024DA1F4AF6DA; - remoteInfo = "React-cxxreact"; - }; - 7BEE664881F985CDE0CA3CEDC0D9C96D /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = D63EF582C3FFEAFBF76242E9637C6E0A; - remoteInfo = CocoaLibEvent; - }; - 7C075DE06CAF5414973463DCBA08A9F9 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = CA400829100F0628EC209FBB08347D42; - remoteInfo = "react-native-notifications"; + remoteGlobalIDString = BDD119F8782FABE2707D3D913EC3EDE5; + remoteInfo = RNFBAnalytics; }; 7C0B9E22BBC11A64C90E2F48A14F8E0A /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -5020,26 +4983,26 @@ remoteGlobalIDString = 1BEE828C124E6416179B904A9F66D794; remoteInfo = React; }; - 7F7C9A1EB46E2E592A9098108DF7B5F6 /* PBXContainerItemProxy */ = { + 7D9E8840DA78A1212C253249569814CD /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = CA400829100F0628EC209FBB08347D42; - remoteInfo = "react-native-notifications"; + remoteGlobalIDString = 49821C2B9E764AEDF2B35DFE9AA7022F; + remoteInfo = UMBarCodeScannerInterface; }; - 7FAEC34078D0014FFAB5CFBAFC5DC47C /* PBXContainerItemProxy */ = { + 7DDEC539A177EFDAE6F834EB2DE1FA56 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 7ACAA9BE580DD31A5CB9D97C45D9492D; - remoteInfo = "React-Core"; + remoteGlobalIDString = 4F265533AAB7C8985856EC78A33164BB; + remoteInfo = "React-RCTImage"; }; - 800932E87B7C36881C3AD4B4D212639E /* PBXContainerItemProxy */ = { + 7E398DE5EF7B0CBEF5D422372B07B9A7 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 651511D7DA7F07F9FC9AA40A2E86270D; - remoteInfo = "React-RCTNetwork"; + remoteGlobalIDString = 938CCE22F6C4094B3FB6CF1478579E4B; + remoteInfo = "React-RCTAnimation"; }; 8075D3C81C368FF63B92A7E7DC84BF6B /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -5048,19 +5011,12 @@ remoteGlobalIDString = DBCB1B4965863DDD3B9DED9A0918A526; remoteInfo = UMCore; }; - 8077927E31C01EF89F7ABB62547873FF /* PBXContainerItemProxy */ = { + 80F434008A711F7EEDD5932900316656 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 409F3A0DB395F53FFB6AB30E5CD8ACD1; - remoteInfo = EXHaptics; - }; - 808FC4055BB5086D79DD31542375C1BF /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = C49E7A4D59E5C8BE8DE9FB1EFB150185; - remoteInfo = FirebaseAnalytics; + remoteGlobalIDString = 014495932E402CA67C37681988047CA2; + remoteInfo = UMFontInterface; }; 80FA676E34C136BD514521000FACCDC2 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -5083,12 +5039,12 @@ remoteGlobalIDString = C3496D0495E700CF08A90C41EA8FA4BB; remoteInfo = FBReactNativeSpec; }; - 8197E0D8D5DD8D284DA5E9647EBA2389 /* PBXContainerItemProxy */ = { + 81AD5AA1E11C38E7F4843BA88EA9976D /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 2038C6F97563AAD6162C284B3EDD5B3B; - remoteInfo = UMSensorsInterface; + remoteGlobalIDString = 7ACAA9BE580DD31A5CB9D97C45D9492D; + remoteInfo = "React-Core"; }; 81B20C29D8DE0AECFEEA7BFC3548E125 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -5097,13 +5053,6 @@ remoteGlobalIDString = 9668C19AA6D8EA320F83875FA286855A; remoteInfo = UMConstantsInterface; }; - 81C79203E7941C605365961EA5D2CE71 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 6677891AC2F7AB93E04BFF30B293A46B; - remoteInfo = RNBootSplash; - }; 81F66A0718CC2ED8851B3DF46E7A1E2B /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -5111,33 +5060,54 @@ remoteGlobalIDString = C3496D0495E700CF08A90C41EA8FA4BB; remoteInfo = FBReactNativeSpec; }; - 82D6B1F06E05F5B9A8EAE729D1D5F1DC /* PBXContainerItemProxy */ = { + 822A0DC5F59222E4E31F2313EBD1DAC6 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 072CEA044D2EF26F03496D5996BBF59F; - remoteInfo = Firebase; + remoteGlobalIDString = 2038C6F97563AAD6162C284B3EDD5B3B; + remoteInfo = UMSensorsInterface; }; - 864244C5E2B6B5B570A8C84066F8BC14 /* PBXContainerItemProxy */ = { + 82B75BF90B8BE372308320C1675FD674 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 651511D7DA7F07F9FC9AA40A2E86270D; - remoteInfo = "React-RCTNetwork"; + remoteGlobalIDString = A4F685BE3CAC127BDCE4E0DBBD88D191; + remoteInfo = Folly; }; - 86B7120016BA7DCE1A0D63EEF7F3F26C /* PBXContainerItemProxy */ = { + 83B9C13DF68BAAAD7F4EAE831A301BE1 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 1BEE828C124E6416179B904A9F66D794; - remoteInfo = React; + remoteGlobalIDString = 8D7F5D5DD528D21A72DC87ADA5B12E2D; + remoteInfo = GoogleUtilities; }; - 870DD11CB797048CDE4F277C95873C94 /* PBXContainerItemProxy */ = { + 848CAC14B528BF5A56E06FE67F9C1778 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = B53D977A951AFC38B21751B706C1DF83; - remoteInfo = GoogleAppMeasurement; + remoteGlobalIDString = 897EF6A99176326E24F51E2F2103828C; + remoteInfo = UMReactNativeAdapter; + }; + 849C5DBDF59A33E98027D5CBEDD34120 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 87803597EB3F20FC46472B85392EC4FD; + remoteInfo = FirebaseInstallations; + }; + 84A20C051E6FD99354F4683AE0132503 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 6C1893932A69822CBE3502F2E0BCFB6D; + remoteInfo = EXConstants; + }; + 85B5AE0B28715BBA907F73C18C01DD33 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 89F573A6B1292B3B2296B2206BFDC3D7; + remoteInfo = RNCAsyncStorage; }; 87DDD74C6168E8F38B8554781DEEC63B /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -5153,12 +5123,12 @@ remoteGlobalIDString = 1BEE828C124E6416179B904A9F66D794; remoteInfo = React; }; - 88605ED7CD4DD4F4F3FA159EDD76A738 /* PBXContainerItemProxy */ = { + 88ABFB27D0120C2C684DC0B8DB05B869 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 868B90C74770285449C60DBA82181479; - remoteInfo = EXFileSystem; + remoteGlobalIDString = 91A6826828CB9FCD0169A7547E8A79EA; + remoteInfo = MMKV; }; 88D72330C8DCE3BF856F9C1ED31ACD43 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -5188,20 +5158,6 @@ remoteGlobalIDString = 2BBF7206D7FAC92C82A042A99C4A98F8; remoteInfo = PromisesObjC; }; - 8A95A9BC4AF69857178041F5461671D8 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = B9ED5194E665042005069EF06C82A050; - remoteInfo = "OpenSSL-Universal"; - }; - 8AD8A612931AB5375BCA927B1355BAE6 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 014495932E402CA67C37681988047CA2; - remoteInfo = UMFontInterface; - }; 8B10525073A1E3A812765DACA9E0E5F9 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -5209,26 +5165,12 @@ remoteGlobalIDString = 7ACAA9BE580DD31A5CB9D97C45D9492D; remoteInfo = "React-Core"; }; - 8B636AF29046A1F2D78E4D3EE7989511 /* PBXContainerItemProxy */ = { + 8C6F11BAF90EF78AABA433DBF944E311 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 868B90C74770285449C60DBA82181479; - remoteInfo = EXFileSystem; - }; - 8C595B2D95DDAAF440F896B3A0D33727 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = B6D39E083AE0FF45BA30D7CDF6198A03; - remoteInfo = "Flipper-Folly"; - }; - 8D4B6BB47D5DD009C0A3260967DB4EDE /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 869CED37B4B77AAE35DF8B6E70788BBC; - remoteInfo = EXLocalAuthentication; + remoteGlobalIDString = D39AB631E8050865DE01F6D5678797D2; + remoteInfo = "react-native-jitsi-meet"; }; 8DF020BBAD4E0EEEBB161574ABB68916 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -5237,6 +5179,27 @@ remoteGlobalIDString = D2B5E7DCCBBFB32341D857D01211A1A3; remoteInfo = nanopb; }; + 8E7429B2A7CD5E9C29FB8DC74C5C9835 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 263266A9E29FFF0E9C8CA0E4582BFCF4; + remoteInfo = EXImageLoader; + }; + 8E9BE4FB64D11D84DD457D72C5FD54CF /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 3847153A6E5EEFB86565BA840768F429; + remoteInfo = SDWebImage; + }; + 8EA36E2709F8BFDDF7D090BC2C257E61 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 0BB7745637E0758DEA373456197090C6; + remoteInfo = RNFastImage; + }; 8F0EBEBA4BE85E40F3FB183B179404E7 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -5244,33 +5207,12 @@ remoteGlobalIDString = 5C0371EE948D0357B8EE0E34ABB44BF0; remoteInfo = GoogleDataTransport; }; - 8FC5FD35FB57F455A4EDB1E39A19295C /* PBXContainerItemProxy */ = { + 90F4929FC3457E05184C1C7A1DFBD23B /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = D760AF58E12ABBB51F84160FB02B5F39; - remoteInfo = RNDateTimePicker; - }; - 9034F508583D9F6FF9B2A7D5E2F4DF27 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 6A9637F1BC8154F777335A6420579C05; - remoteInfo = "Flipper-Glog"; - }; - 9076C72B616E94B208DDB891D8268FD8 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = A4F685BE3CAC127BDCE4E0DBBD88D191; - remoteInfo = Folly; - }; - 910EA2213B18CCB6F2700A1F9FFA83B5 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = E3573FB7AF659C42B699003C73722241; - remoteInfo = RNFBCrashlytics; + remoteGlobalIDString = F7845084F0CF03F54107EEF7411760AD; + remoteInfo = UMPermissionsInterface; }; 91345979BEE4768EF9136EE4EE3D00FB /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -5286,19 +5228,12 @@ remoteGlobalIDString = 1BEE828C124E6416179B904A9F66D794; remoteInfo = React; }; - 9194AF57E6537EB866800A58DC2D1CC5 /* PBXContainerItemProxy */ = { + 91BF9EB82E133B99590C0DCAB17E1FD0 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = D9245543B79C09FAC40FC8B9F291536A; - remoteInfo = "Flipper-DoubleConversion"; - }; - 91E18086BF5B384550F843BD29FC2DF8 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 87803597EB3F20FC46472B85392EC4FD; - remoteInfo = FirebaseInstallations; + remoteGlobalIDString = 214E42634D1E187D876346D36184B655; + remoteInfo = RNScreens; }; 925B94B36D67D27AF51664D1645EC2F7 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -5314,12 +5249,12 @@ remoteGlobalIDString = 1BEE828C124E6416179B904A9F66D794; remoteInfo = React; }; - 9319D41494CA189C63F106011C84CF6C /* PBXContainerItemProxy */ = { + 932CA5A3BB57738BD81E40BA4FFC3BF0 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 897EF6A99176326E24F51E2F2103828C; - remoteInfo = UMReactNativeAdapter; + remoteGlobalIDString = 47D2E85A78C25869BB13521D8561A638; + remoteInfo = libwebp; }; 935BBCA2BD6E481D46FA01E32BFEF1E3 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -5328,47 +5263,19 @@ remoteGlobalIDString = B6D39E083AE0FF45BA30D7CDF6198A03; remoteInfo = "Flipper-Folly"; }; - 9373EF73D46B96FF24F7CD66AA175577 /* PBXContainerItemProxy */ = { + 94226F6DFE8ECF329D288A0199680F75 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = F7D033C4C128EECAA020990641FA985F; - remoteInfo = "React-jsinspector"; + remoteGlobalIDString = DC0D417AC8ABB7AA10C20A5E0F065812; + remoteInfo = RNConfigReader; }; - 93BB0CA2AF6AEC194DFF674DAF5CA31D /* PBXContainerItemProxy */ = { + 958F630DF7FFBBC9D0E8086AE0011CA0 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 95D98F901D07557EF7CA38D3F03832C5; - remoteInfo = "React-RCTBlob"; - }; - 94E19DDA2E997B7F31609C1F4018369E /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 526C4398D095B3704EB933DADBC30093; - remoteInfo = FirebaseCrashlytics; - }; - 950F5960DF8B777DB1E2ADDF1B28C197 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 2AD4F40E67E1874A0816F6B34289EB41; - remoteInfo = UMFaceDetectorInterface; - }; - 9568D82C9A65E0A7EB4E486EB9A61359 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 869CED37B4B77AAE35DF8B6E70788BBC; - remoteInfo = EXLocalAuthentication; - }; - 96C40D085BFA33F463C7F1D894077319 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 4F265533AAB7C8985856EC78A33164BB; - remoteInfo = "React-RCTImage"; + remoteGlobalIDString = F3966F664F3CFAEFAB57C40FB54D3788; + remoteInfo = TOCropViewController; }; 97B2B0B02B655684D330E426FC91572F /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -5377,6 +5284,20 @@ remoteGlobalIDString = 7ACAA9BE580DD31A5CB9D97C45D9492D; remoteInfo = "React-Core"; }; + 986FEFEF45C6DCB415822FB26188B117 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 7ACAA9BE580DD31A5CB9D97C45D9492D; + remoteInfo = "React-Core"; + }; + 992B5E2D68BBA676A5B1126FEB71502F /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = D63EF582C3FFEAFBF76242E9637C6E0A; + remoteInfo = CocoaLibEvent; + }; 9A2D94180C1D8549B209C4F116F4FC88 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -5391,12 +5312,12 @@ remoteGlobalIDString = 7ACAA9BE580DD31A5CB9D97C45D9492D; remoteInfo = "React-Core"; }; - 9AEC03F5DF4B88581F22BC49DE03F7B9 /* PBXContainerItemProxy */ = { + 9B6304EAF01A2146F369F8E38346A41C /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = FA877ADC442CB19CF61793D234C8B131; - remoteInfo = "React-jsi"; + remoteGlobalIDString = 9EB556EE511D43F3D5D7AAF51D8D0397; + remoteInfo = EXWebBrowser; }; 9BAAC27A785084FD67CA13B8EDA42C7D /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -5412,20 +5333,6 @@ remoteGlobalIDString = A4F685BE3CAC127BDCE4E0DBBD88D191; remoteInfo = Folly; }; - 9CB3D12FFDA9B263E917D55AC11473AA /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 7F591BD8674041AAAA4F37DC699B5518; - remoteInfo = KeyCommands; - }; - 9D62B5E989A1ED0CB0D8B6148516A694 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 807428FE76D80865C9F59F3502600E89; - remoteInfo = RNDeviceInfo; - }; 9E534D42CEE0BAE16AFBC5CDD1AE05CE /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -5433,26 +5340,12 @@ remoteGlobalIDString = D9245543B79C09FAC40FC8B9F291536A; remoteInfo = "Flipper-DoubleConversion"; }; - 9E696E0618AA76B6D6AE836E8D3EED0C /* PBXContainerItemProxy */ = { + 9E86078DE97BE5BB6166065D0187FD2A /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 938CCE22F6C4094B3FB6CF1478579E4B; - remoteInfo = "React-RCTAnimation"; - }; - 9E9419B4B356101BC66673255E89AAEE /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 0BB7745637E0758DEA373456197090C6; - remoteInfo = RNFastImage; - }; - 9EDF538C1A2C0382470B3FA10D982282 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = ADC4ACC657481AD27F9936D08FF7F49A; - remoteInfo = "react-native-cookies"; + remoteGlobalIDString = E7E7CE52C8C68B17224FF8C262D80ABF; + remoteInfo = RCTRequired; }; 9F22B1056BC978E122F2EAE6CD9D7ED1 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -5475,75 +5368,61 @@ remoteGlobalIDString = 4402AFF83DBDC4DD07E198685FDC2DF2; remoteInfo = FirebaseCore; }; - A0E5C722A4A4DA8D4C98FEA0F8BEBD38 /* PBXContainerItemProxy */ = { + 9FF76036129878D2E7E21F8D14158BAD /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 6083682834ABE0AE7BD1CBF06CADD036; - remoteInfo = CocoaAsyncSocket; + remoteGlobalIDString = 868B90C74770285449C60DBA82181479; + remoteInfo = EXFileSystem; }; - A1C06E7FD761C9EDB256A1E38B6A13C7 /* PBXContainerItemProxy */ = { + A06E4B119219382CB281D9C8AB18F601 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = E63939AA6EFD3D6A8C09E45929F11DBD; - remoteInfo = Flipper; + remoteGlobalIDString = D9245543B79C09FAC40FC8B9F291536A; + remoteInfo = "Flipper-DoubleConversion"; }; - A2E2629CBCFEC2C2C29C237120574870 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 89F573A6B1292B3B2296B2206BFDC3D7; - remoteInfo = RNCAsyncStorage; - }; - A2F373E9BE916CCDC4F81B2A701B7DA0 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 5B40FBDAD0AB75D17C4760F4054BFF71; - remoteInfo = JitsiMeetSDK; - }; - A3DD6C33315A46471FBE713775EC18E3 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 1FAAE067C1BFDEA17DFB657C3379AB56; - remoteInfo = "Flipper-RSocket"; - }; - A40B48DCA7DDBD4BF84F5AA14043F823 /* PBXContainerItemProxy */ = { + A0843ECBB8CD69120A277AD1B1CDF01A /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; remoteGlobalIDString = 1953860EA9853AA2BC8022B242F08512; remoteInfo = SDWebImageWebPCoder; }; - A43995CBC5D30B8CB870E8210E2E6015 /* PBXContainerItemProxy */ = { + A19E586210DAA5DFB45258DEBF75E2D6 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 7F591BD8674041AAAA4F37DC699B5518; - remoteInfo = KeyCommands; + remoteGlobalIDString = E7E7CE52C8C68B17224FF8C262D80ABF; + remoteInfo = RCTRequired; }; - A4E93EEF24D1C58BDB57A84D06EF6728 /* PBXContainerItemProxy */ = { + A3407E6E4E5C40F9F356EE8CCCA73DC1 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 3FF2E78BB54ED67CA7FAD8DA2590DBEE; - remoteInfo = "react-native-appearance"; + remoteGlobalIDString = 6A9637F1BC8154F777335A6420579C05; + remoteInfo = "Flipper-Glog"; }; - A5CCA68CC16FD07FA28BF00B5FE92E47 /* PBXContainerItemProxy */ = { + A3A3BB2C14C04AB599D69120C2C59DD4 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 49821C2B9E764AEDF2B35DFE9AA7022F; - remoteInfo = UMBarCodeScannerInterface; + remoteGlobalIDString = 982644B5B647690B2E4F5B3F54EB5717; + remoteInfo = FlipperKit; }; - A5EAB879BC1635C6D9A383131EC00A9B /* PBXContainerItemProxy */ = { + A6AC5329A34BBF9450CAA9EEAE870CC9 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = B9E8F4CA2A4A8599389FEB665A9B96FF; - remoteInfo = RNGestureHandler; + remoteGlobalIDString = 13D7009C3736FB694854D88BAD4742B6; + remoteInfo = EXAV; + }; + A6C3E23F87699BAE1625D350DA82D1BE /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = C3496D0495E700CF08A90C41EA8FA4BB; + remoteInfo = FBReactNativeSpec; }; A71AF0599E370DE67697EB341A4717CC /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -5552,6 +5431,13 @@ remoteGlobalIDString = 5C0371EE948D0357B8EE0E34ABB44BF0; remoteInfo = GoogleDataTransport; }; + A7B4F357CD5D6FD653F396B5117EB714 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 90148E8FD1C445D7A019D504FA8CBC53; + remoteInfo = ReactNativeART; + }; A7E5D397C11338DEED5E896EF959836C /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -5559,6 +5445,13 @@ remoteGlobalIDString = 47D2E85A78C25869BB13521D8561A638; remoteInfo = libwebp; }; + A853F8602D85981D01C3C0238ABE72F6 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 5C0371EE948D0357B8EE0E34ABB44BF0; + remoteInfo = GoogleDataTransport; + }; A86A3721252494F286B714B8A88F95BA /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -5573,6 +5466,13 @@ remoteGlobalIDString = 1BEE828C124E6416179B904A9F66D794; remoteInfo = React; }; + AAB98120C35A684C60CBF2EC5DF4B124 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 651511D7DA7F07F9FC9AA40A2E86270D; + remoteInfo = "React-RCTNetwork"; + }; AB5BB564F6EBF1F38CE73BBBE2C88987 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -5580,13 +5480,6 @@ remoteGlobalIDString = 680299219D3A48D42A648AF6706275A9; remoteInfo = "React-RCTSettings"; }; - AB6DAB6359E4ACD364B27F682A933853 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 0CF4D9052577C85B6B8C4E957332626B; - remoteInfo = EXKeepAwake; - }; AC4A774AD4298B03F7153D4FC3C59F8D /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -5594,26 +5487,12 @@ remoteGlobalIDString = 6083682834ABE0AE7BD1CBF06CADD036; remoteInfo = CocoaAsyncSocket; }; - AD7529713B9FB7B24ABDD07CEAD1A00D /* PBXContainerItemProxy */ = { + AD4B543D25F071E73D569AF215718EC0 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 1BEE828C124E6416179B904A9F66D794; - remoteInfo = React; - }; - AD9460844A2F1FC4E101FFEA9C9E574E /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 6514D69CB93B41626AE1A05581F97B07; - remoteInfo = "react-native-background-timer"; - }; - AE56E6F6F9CA42BF6E509A6242477C0D /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 5C0371EE948D0357B8EE0E34ABB44BF0; - remoteInfo = GoogleDataTransport; + remoteGlobalIDString = BD9A27D8398DEB3205D3F8937B0672A0; + remoteInfo = "react-native-safe-area-context"; }; AE8FB3B2C3A8E8F3BDFCE223A4C9943E /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -5622,26 +5501,40 @@ remoteGlobalIDString = B6D5DD49633DFF0657B8C3F08EB3ABA9; remoteInfo = ReactCommon; }; - AF6F38B3643EAF8422CCA8952166A344 /* PBXContainerItemProxy */ = { + B195D1D32A2F6FBD961D9139E8F3E57E /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 47D2E85A78C25869BB13521D8561A638; - remoteInfo = libwebp; + remoteGlobalIDString = D63EF582C3FFEAFBF76242E9637C6E0A; + remoteInfo = CocoaLibEvent; }; - B047DC9DF8C887CE40051981E9BB0C73 /* PBXContainerItemProxy */ = { + B199BE47947B11FE2450D3528200B6DD /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 409F3A0DB395F53FFB6AB30E5CD8ACD1; - remoteInfo = EXHaptics; + remoteGlobalIDString = 0CF4D9052577C85B6B8C4E957332626B; + remoteInfo = EXKeepAwake; }; - B2E9D38A62719B6E1DC2297923A2AE42 /* PBXContainerItemProxy */ = { + B1A8D4E61DE68D60745E23A991B6CE11 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = B9ED5194E665042005069EF06C82A050; - remoteInfo = "OpenSSL-Universal"; + remoteGlobalIDString = 0D82774D2A533D3FFAE27CAB4A6E9CB2; + remoteInfo = RNImageCropPicker; + }; + B1C456CDA6A2866DF73EFA68365917B6 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 680299219D3A48D42A648AF6706275A9; + remoteInfo = "React-RCTSettings"; + }; + B2E7F9B3EC78E18144CC2A9D1CE7155A /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = E3573FB7AF659C42B699003C73722241; + remoteInfo = RNFBCrashlytics; }; B2FA3966A49A0C9A1B7398D28D027638 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -5678,6 +5571,13 @@ remoteGlobalIDString = 1BEE828C124E6416179B904A9F66D794; remoteInfo = React; }; + B48227AA657EA322BE307A572F603A67 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 5B40FBDAD0AB75D17C4760F4054BFF71; + remoteInfo = JitsiMeetSDK; + }; B4D453DE31A865E38FCE41018FF05012 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -5692,13 +5592,6 @@ remoteGlobalIDString = D20469A9A1E5CFB26045EAEBE3F88E5E; remoteInfo = RCTTypeSafety; }; - B58A73DC85AD293D40714358511EE624 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = FF879E718031128A75E7DE54046E6219; - remoteInfo = RNReanimated; - }; B5E90F5A93A4DF2C85CB04E1C028E70E /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -5706,19 +5599,12 @@ remoteGlobalIDString = 072CEA044D2EF26F03496D5996BBF59F; remoteInfo = Firebase; }; - B61396F36AAADF0F250891B0A1EA083F /* PBXContainerItemProxy */ = { + B62FB0486B121D80953FD1715CE2F4A5 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 11989A5E568B3B69655EE0C13DCDA3F9; - remoteInfo = "React-RCTActionSheet"; - }; - B6639071EF86B47807EC3AF44867D4B8 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 91A6826828CB9FCD0169A7547E8A79EA; - remoteInfo = MMKV; + remoteGlobalIDString = D2B5E7DCCBBFB32341D857D01211A1A3; + remoteInfo = nanopb; }; B6677D6DAB197C7676A97F624A434B26 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -5727,33 +5613,19 @@ remoteGlobalIDString = 014495932E402CA67C37681988047CA2; remoteInfo = UMFontInterface; }; - B7F0780E57F9BDE184ECB53C994E0404 /* PBXContainerItemProxy */ = { + B7DD0CD0DA484A267B59E95C3888BC1C /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 4A95B7CD1D5F80C5E8CD9CDA00D41F70; - remoteInfo = EXVideoThumbnails; + remoteGlobalIDString = 0D82774D2A533D3FFAE27CAB4A6E9CB2; + remoteInfo = RNImageCropPicker; }; - B824D77829D3143A291C7A8B0FF4AD97 /* PBXContainerItemProxy */ = { + B83D77664CF2EE8B2A541A19F312706E /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 1092C13E1E1172209537C28D0C8D4D3C; - remoteInfo = "react-native-orientation-locker"; - }; - B8972ADAF3FD274BD38594CD56DD4C2F /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = E16E206437995280D349D4B67695C894; - remoteInfo = "React-CoreModules"; - }; - B9AE5CF754F371EA8ED61D8E3A8DB330 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = C3496D0495E700CF08A90C41EA8FA4BB; - remoteInfo = FBReactNativeSpec; + remoteGlobalIDString = DA0709CAAD589C6E7963495210438021; + remoteInfo = "React-jsiexecutor"; }; BA8918FF1CDCF34A08912891E7A9FE85 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -5762,26 +5634,19 @@ remoteGlobalIDString = FA877ADC442CB19CF61793D234C8B131; remoteInfo = "React-jsi"; }; - BB9BEAC6B1FA07781BAA7BEAA32322C0 /* PBXContainerItemProxy */ = { + BBB50B4E4D638D3F839E23FB025DB8AF /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 97C4DE84FA3CC4EC06AA6D8C249949B7; - remoteInfo = UMImageLoaderInterface; + remoteGlobalIDString = 5C0371EE948D0357B8EE0E34ABB44BF0; + remoteInfo = GoogleDataTransport; }; - BBD5B0330948F442A1998768A05CF21E /* PBXContainerItemProxy */ = { + BBB63A34AA3F68806974DBA15D63A11B /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 11989A5E568B3B69655EE0C13DCDA3F9; - remoteInfo = "React-RCTActionSheet"; - }; - BCD59447AA44DF60D40010358189EF8C /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = D2B5E7DCCBBFB32341D857D01211A1A3; - remoteInfo = nanopb; + remoteGlobalIDString = 869CED37B4B77AAE35DF8B6E70788BBC; + remoteInfo = EXLocalAuthentication; }; BCDA17519A7296DCC9E213B0E9337C93 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -5811,28 +5676,56 @@ remoteGlobalIDString = 53D121F9F9BB0F8AC1C94A12C5A8572F; remoteInfo = "React-RCTVibration"; }; - BFA0BD96FBDA31D6B7CFCD20069D69D1 /* PBXContainerItemProxy */ = { + BF3D7998E0F6D8FBD6103624F347405F /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = BD9A27D8398DEB3205D3F8937B0672A0; - remoteInfo = "react-native-safe-area-context"; + remoteGlobalIDString = D0EFEFB685D97280256C559792236873; + remoteInfo = glog; }; - C0F2926A4D41DFE23BBE2BEEB453D07A /* PBXContainerItemProxy */ = { + C0395502CD40F2DACB2CD680ADF4636B /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 3847153A6E5EEFB86565BA840768F429; - remoteInfo = SDWebImage; + remoteGlobalIDString = 2644525CCE081E967809A8163D893A93; + remoteInfo = UMFileSystemInterface; }; - C2E15D1D4A770A1600799D971A2F80B2 /* PBXContainerItemProxy */ = { + C18FA81A2E7F0D7CED9F9E02912AD363 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 18B56DB36E1F066C927E49DBAE590128; - remoteInfo = RNRootView; + remoteGlobalIDString = DC0D417AC8ABB7AA10C20A5E0F065812; + remoteInfo = RNConfigReader; }; - C32340CAC5F1C51EA0C1471082555F25 /* PBXContainerItemProxy */ = { + C200A128A9BE2E4DE6B6C77CEEBB785F /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 91A6826828CB9FCD0169A7547E8A79EA; + remoteInfo = MMKV; + }; + C27F0A72893CE4C5C18451525DD20397 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 89F573A6B1292B3B2296B2206BFDC3D7; + remoteInfo = RNCAsyncStorage; + }; + C284BB2260DDF14E6D1063F4F3CAC4CE /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = B6D39E083AE0FF45BA30D7CDF6198A03; + remoteInfo = "Flipper-Folly"; + }; + C28EBF1FFC70BB88DBBEFA0E147FFD13 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = AC8AE887C706A43711D115E69B9D988A; + remoteInfo = MMKVCore; + }; + C29C47D6A018E56BEC22AD2DFFF8AECE /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; @@ -5846,12 +5739,12 @@ remoteGlobalIDString = 651511D7DA7F07F9FC9AA40A2E86270D; remoteInfo = "React-RCTNetwork"; }; - C3FA10AB18D8BAEC05212296139E968F /* PBXContainerItemProxy */ = { + C47B76B40FA14E4599E2E5BC561F8DB7 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 982644B5B647690B2E4F5B3F54EB5717; - remoteInfo = FlipperKit; + remoteGlobalIDString = 263266A9E29FFF0E9C8CA0E4582BFCF4; + remoteInfo = EXImageLoader; }; C53F6A668A1B81EA8D5EFA236BBDC391 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -5874,12 +5767,12 @@ remoteGlobalIDString = 7ACAA9BE580DD31A5CB9D97C45D9492D; remoteInfo = "React-Core"; }; - C696719409EB5F8B1A80CA88B35DB432 /* PBXContainerItemProxy */ = { + C63A91951B86819533E454E477C98ACC /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 1A0445474DA11CA659C4BCC5AB64B1BF; - remoteInfo = RNCMaskedView; + remoteGlobalIDString = 0CF4D9052577C85B6B8C4E957332626B; + remoteInfo = EXKeepAwake; }; C6B0262EE0DC1586E56807A2383ABFED /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -5909,12 +5802,12 @@ remoteGlobalIDString = A4F685BE3CAC127BDCE4E0DBBD88D191; remoteInfo = Folly; }; - C7CB89C35D31A04737539DC2444F3BC8 /* PBXContainerItemProxy */ = { + C79514DE98D295E0F99161AC497C438A /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 2B25F90D819B9ADF2AF2D8733A890333; - remoteInfo = Yoga; + remoteGlobalIDString = A238B7CE3865946D1F214E1FE0023AAE; + remoteInfo = "rn-extensions-share"; }; C7ED593E81C9992CB3136F8B3479E783 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -5923,20 +5816,6 @@ remoteGlobalIDString = C3496D0495E700CF08A90C41EA8FA4BB; remoteInfo = FBReactNativeSpec; }; - C895E3DD10CA4287995C612A7F015A4E /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 1A0445474DA11CA659C4BCC5AB64B1BF; - remoteInfo = RNCMaskedView; - }; - C8AE47212130A7DD948D9AF9BF9060A8 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 4F265533AAB7C8985856EC78A33164BB; - remoteInfo = "React-RCTImage"; - }; C9548D5EC1772128ADFB40684079BE57 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -5944,13 +5823,6 @@ remoteGlobalIDString = C3496D0495E700CF08A90C41EA8FA4BB; remoteInfo = FBReactNativeSpec; }; - C9D2FF05C5151639C62AD471334EF076 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 3FF2E78BB54ED67CA7FAD8DA2590DBEE; - remoteInfo = "react-native-appearance"; - }; CA39C5F52F69F8B71F02BEA427544E35 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -5965,6 +5837,13 @@ remoteGlobalIDString = ED2506AE7DE35D654F61254441EA7155; remoteInfo = "boost-for-react-native"; }; + CABCEB829E4E01FE05848BEF9D7805C5 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = ED2506AE7DE35D654F61254441EA7155; + remoteInfo = "boost-for-react-native"; + }; CAC5E63A0DB508761FB7D52FA119FB6F /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -5986,13 +5865,6 @@ remoteGlobalIDString = D0EFEFB685D97280256C559792236873; remoteInfo = glog; }; - CCBE0668DBBFB2AB470FA9F7ACD1B2EA /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = F7845084F0CF03F54107EEF7411760AD; - remoteInfo = UMPermissionsInterface; - }; CCC71DC98DA1BFF43521E8CF40226C64 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -6000,19 +5872,19 @@ remoteGlobalIDString = D20469A9A1E5CFB26045EAEBE3F88E5E; remoteInfo = RCTTypeSafety; }; - CDDDEA47CED9C55D5F7FBA3AC4F4D309 /* PBXContainerItemProxy */ = { + CD55F19F98AB9BA3CC5CBC7E9F262116 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 90148E8FD1C445D7A019D504FA8CBC53; - remoteInfo = ReactNativeART; + remoteGlobalIDString = 2AB2EF542954AB1C999E03BFEF8DE806; + remoteInfo = DoubleConversion; }; - CEDABBEB37F44C5DA4A262C2AF98CB64 /* PBXContainerItemProxy */ = { + CECA42D91CCCF839BD82959388FB8235 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 6FE9147F8AAA4DE676C190F680F47AE2; - remoteInfo = "React-RCTLinking"; + remoteGlobalIDString = 50188AAB5FAECCA9583327DBA2B0AF2B; + remoteInfo = UMTaskManagerInterface; }; D03C059055772F3A6BB4DDB9B59D9473 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -6021,6 +5893,13 @@ remoteGlobalIDString = F7D033C4C128EECAA020990641FA985F; remoteInfo = "React-jsinspector"; }; + D1741C8AFB17FD4B53439EBBED966861 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 2AD4F40E67E1874A0816F6B34289EB41; + remoteInfo = UMFaceDetectorInterface; + }; D1B6676933B6091F594BD94DE1B18D11 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -6028,19 +5907,19 @@ remoteGlobalIDString = DBCB1B4965863DDD3B9DED9A0918A526; remoteInfo = UMCore; }; - D21329A3FB37B67FE4A6299B450E2730 /* PBXContainerItemProxy */ = { + D2A4DFF8317AF077259E12735E38ED91 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; remoteGlobalIDString = 620E05868772C10B4920DC7E324F2C87; remoteInfo = FirebaseCoreDiagnostics; }; - D2F805B8B051FE86210844FF0C2603C3 /* PBXContainerItemProxy */ = { + D2C3998D0F4EB7B5CEC49105528C603A /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = D0EFEFB685D97280256C559792236873; - remoteInfo = glog; + remoteGlobalIDString = E16E206437995280D349D4B67695C894; + remoteInfo = "React-CoreModules"; }; D30F9BCE2D5F265AFC3B77B3F8D0505D /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -6049,13 +5928,6 @@ remoteGlobalIDString = 7ACAA9BE580DD31A5CB9D97C45D9492D; remoteInfo = "React-Core"; }; - D327C0743CB82C753FCDBBE7A28DC40A /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = F3966F664F3CFAEFAB57C40FB54D3788; - remoteInfo = TOCropViewController; - }; D3A2BE59053796870DA91971C0D7C401 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -6070,20 +5942,6 @@ remoteGlobalIDString = 1953860EA9853AA2BC8022B242F08512; remoteInfo = SDWebImageWebPCoder; }; - D4DFDCBC1CF6917D194B9925D365B65E /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 0745200E60DC80C9A0A48B7E6C1518D7; - remoteInfo = BugsnagReactNative; - }; - D539F68A72984D3A7D46CF619E7D2483 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 9668C19AA6D8EA320F83875FA286855A; - remoteInfo = UMConstantsInterface; - }; D5CA4506EB72978BF9DA2DDCDB29D54A /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -6098,40 +5956,19 @@ remoteGlobalIDString = DBCB1B4965863DDD3B9DED9A0918A526; remoteInfo = UMCore; }; - D72E79F61E7E9BDBBFAE7BC0BCAF0527 /* PBXContainerItemProxy */ = { + D779DF0BD4FD5DA49119280682215B94 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 49821C2B9E764AEDF2B35DFE9AA7022F; - remoteInfo = UMBarCodeScannerInterface; + remoteGlobalIDString = 11989A5E568B3B69655EE0C13DCDA3F9; + remoteInfo = "React-RCTActionSheet"; }; - D7C7A7AC44FDBC34E0FB68067263CA53 /* PBXContainerItemProxy */ = { + D8312C53FB69321F553B39C03E2ED6B9 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 97C4DE84FA3CC4EC06AA6D8C249949B7; - remoteInfo = UMImageLoaderInterface; - }; - D93524B4354C70E4EF0CE0427845AF95 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 2AD4F40E67E1874A0816F6B34289EB41; - remoteInfo = UMFaceDetectorInterface; - }; - D997B5A0462BDB05FB628E0599477C72 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 50188AAB5FAECCA9583327DBA2B0AF2B; - remoteInfo = UMTaskManagerInterface; - }; - D9C9A931B83779CBA7DCF6838A60126D /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = A4EF87F5681665EAE943D9B06BBB17DF; - remoteInfo = "react-native-slider"; + remoteGlobalIDString = 409F3A0DB395F53FFB6AB30E5CD8ACD1; + remoteInfo = EXHaptics; }; DA27884C3FBE229B7E04DBFA9F4A58F9 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -6161,6 +5998,13 @@ remoteGlobalIDString = F4F25FCAC51B51FD5F986EB939BF1F87; remoteInfo = GoogleDataTransportCCTSupport; }; + DB30CD0BBC5DDB6EE92C59A5D169CE54 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 463F41A7E8B252F8AC5024DA1F4AF6DA; + remoteInfo = "React-cxxreact"; + }; DB5002EE87028969B0D9E669730AF039 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -6168,12 +6012,12 @@ remoteGlobalIDString = 7ACAA9BE580DD31A5CB9D97C45D9492D; remoteInfo = "React-Core"; }; - DC2BBD8C4BC119437D8206F916B81D3C /* PBXContainerItemProxy */ = { + DB5EFE151847369D32B4F389EC4B1065 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 526C4398D095B3704EB933DADBC30093; - remoteInfo = FirebaseCrashlytics; + remoteGlobalIDString = F7D033C4C128EECAA020990641FA985F; + remoteInfo = "React-jsinspector"; }; DC35D17457841C5E413EC553D87DADE8 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -6182,19 +6026,12 @@ remoteGlobalIDString = 072CEA044D2EF26F03496D5996BBF59F; remoteInfo = Firebase; }; - DCAD8B7C1DB94EAD7456F090A0F1519C /* PBXContainerItemProxy */ = { + DDA5CE18295AA24F907E4F4EF2ACB21A /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = B9E8F4CA2A4A8599389FEB665A9B96FF; - remoteInfo = RNGestureHandler; - }; - DD96CCC95C2B7340BD82E7ADFA0FC4F8 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = DC0D417AC8ABB7AA10C20A5E0F065812; - remoteInfo = RNConfigReader; + remoteGlobalIDString = B9ED5194E665042005069EF06C82A050; + remoteInfo = "OpenSSL-Universal"; }; DDFCA674E1FE8DC1DB86D5A0C0A1FB6A /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -6217,6 +6054,13 @@ remoteGlobalIDString = 8D7F5D5DD528D21A72DC87ADA5B12E2D; remoteInfo = GoogleUtilities; }; + DEDAE25B915D5D267B38EECD355E558F /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 718DB7D0A7E90B531AD577B3356C4161; + remoteInfo = "Flipper-PeerTalk"; + }; DF83807DED7F8C5AF770B13C6BAA9515 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -6224,6 +6068,13 @@ remoteGlobalIDString = DBCB1B4965863DDD3B9DED9A0918A526; remoteInfo = UMCore; }; + DFCEC3F1A3F053F37981959A9F0959A5 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 868B90C74770285449C60DBA82181479; + remoteInfo = EXFileSystem; + }; DFFBFD630CC61B0FB41AF5DEFC377BDE /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -6238,12 +6089,19 @@ remoteGlobalIDString = C3496D0495E700CF08A90C41EA8FA4BB; remoteInfo = FBReactNativeSpec; }; - E0DF18865EE7C7CE2840B33D3039ADB9 /* PBXContainerItemProxy */ = { + E1125BF3A241A7EB805E20B5470539E3 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 13D7009C3736FB694854D88BAD4742B6; - remoteInfo = EXAV; + remoteGlobalIDString = E3573FB7AF659C42B699003C73722241; + remoteInfo = RNFBCrashlytics; + }; + E11E8BE92E216F687B035656839612D2 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 014495932E402CA67C37681988047CA2; + remoteInfo = UMFontInterface; }; E1ABECEC3DA6B13E2002259B8170D9CB /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -6252,12 +6110,12 @@ remoteGlobalIDString = B6D5DD49633DFF0657B8C3F08EB3ABA9; remoteInfo = ReactCommon; }; - E1C8F98CB2FD5EB8B53868CFD292CAAA /* PBXContainerItemProxy */ = { + E1C0E6B985378CD592FF24260BCBDE86 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = BA3F5E5AA483B263B69601DE2FA269CB; - remoteInfo = "react-native-cameraroll"; + remoteGlobalIDString = 1BEE828C124E6416179B904A9F66D794; + remoteInfo = React; }; E2539B18E07B9C243AC0276439480F3D /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -6266,41 +6124,6 @@ remoteGlobalIDString = FA877ADC442CB19CF61793D234C8B131; remoteInfo = "React-jsi"; }; - E2D829E31904FEAF8BA25D5A90BC2BDE /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 2644525CCE081E967809A8163D893A93; - remoteInfo = UMFileSystemInterface; - }; - E3AB06117E18103D2672CC63EEA08C5A /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 91A6826828CB9FCD0169A7547E8A79EA; - remoteInfo = MMKV; - }; - E3BE5F2E3C5CBA4D36DC2AF9928A47FD /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 1953860EA9853AA2BC8022B242F08512; - remoteInfo = SDWebImageWebPCoder; - }; - E43F8D6863C8E89DE96E163B8698D22B /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 0D82774D2A533D3FFAE27CAB4A6E9CB2; - remoteInfo = RNImageCropPicker; - }; - E48C9A9EEB0A0DEA62C0917C00C419E5 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 0A915EE9D35CA5636731F8763E774951; - remoteInfo = UMCameraInterface; - }; E4C5288E9590D734DF4231687F5AE711 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -6315,6 +6138,27 @@ remoteGlobalIDString = 4402AFF83DBDC4DD07E198685FDC2DF2; remoteInfo = FirebaseCore; }; + E55B2CD111C6E7602519BE1E0D7C528B /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = C452F579644C83E8D8E36EC24A9BBD46; + remoteInfo = UMAppLoader; + }; + E61FB21A2C821C82E9ABBCCAC3FCF78A /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = BDD119F8782FABE2707D3D913EC3EDE5; + remoteInfo = RNFBAnalytics; + }; + E6211F7D68EF8137E668EF84382070D8 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = A4F685BE3CAC127BDCE4E0DBBD88D191; + remoteInfo = Folly; + }; E679399E70A1302F64F34F5147A0D753 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -6322,12 +6166,12 @@ remoteGlobalIDString = 6A9637F1BC8154F777335A6420579C05; remoteInfo = "Flipper-Glog"; }; - E69C296627F5F80625C985DD92E566FE /* PBXContainerItemProxy */ = { + E67B530BE2C46F0C73C25C49A22C7C87 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = A238B7CE3865946D1F214E1FE0023AAE; - remoteInfo = "rn-extensions-share"; + remoteGlobalIDString = F7845084F0CF03F54107EEF7411760AD; + remoteInfo = UMPermissionsInterface; }; E6A312D4FD065D132CE86F699ADC006F /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -6336,12 +6180,19 @@ remoteGlobalIDString = 7ACAA9BE580DD31A5CB9D97C45D9492D; remoteInfo = "React-Core"; }; - E6B36208046973F45B58DCACD4550C6D /* PBXContainerItemProxy */ = { + E6F306934E0CD1CDC545C4A7C2877017 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 214E42634D1E187D876346D36184B655; - remoteInfo = RNScreens; + remoteGlobalIDString = 9668C19AA6D8EA320F83875FA286855A; + remoteInfo = UMConstantsInterface; + }; + E70A5297D3DDB9D892777CFAA2EDE16E /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = FA877ADC442CB19CF61793D234C8B131; + remoteInfo = "React-jsi"; }; E78EB90AEEC70687EFA88E5AA41058AA /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -6357,6 +6208,13 @@ remoteGlobalIDString = 1BEE828C124E6416179B904A9F66D794; remoteInfo = React; }; + E7DAFBDEF1DCA5752EEDB5017421FC51 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = B9E8F4CA2A4A8599389FEB665A9B96FF; + remoteInfo = RNGestureHandler; + }; E82ACE99C02A32E8354DEFDEE354DAB2 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -6371,19 +6229,33 @@ remoteGlobalIDString = DBCB1B4965863DDD3B9DED9A0918A526; remoteInfo = UMCore; }; - E9499D3C727B97B3F5A75BE0EBDB981A /* PBXContainerItemProxy */ = { + E8791CD60578CCF218F454FF4E6E2A38 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 64F427905796B33B78A704063422979D; - remoteInfo = "rn-fetch-blob"; + remoteGlobalIDString = 53D121F9F9BB0F8AC1C94A12C5A8572F; + remoteInfo = "React-RCTVibration"; }; - EA6BF5FDBD62B9C15B4BF979A1C85E05 /* PBXContainerItemProxy */ = { + E888F123C92F82485C98B734E586179E /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = B51433D546A38C51AA781F192E8836F8; - remoteInfo = RNLocalize; + remoteGlobalIDString = 897EF6A99176326E24F51E2F2103828C; + remoteInfo = UMReactNativeAdapter; + }; + EA45851322E6CB405A94DF9B1095EB9A /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 0A72FB88825FDC7D301C9DD1F8F96824; + remoteInfo = EXPermissions; + }; + EA9545133A714FFADB0F01FA7A8FAB34 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = C452F579644C83E8D8E36EC24A9BBD46; + remoteInfo = UMAppLoader; }; EAA9F477386E52EB30E75431006FAA8C /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -6392,19 +6264,12 @@ remoteGlobalIDString = 1BEE828C124E6416179B904A9F66D794; remoteInfo = React; }; - EB59584C82AA84B7D794E2BE4D515203 /* PBXContainerItemProxy */ = { + EB3819649F2CF2C63E55AAC0E0D36F7B /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 718DB7D0A7E90B531AD577B3356C4161; - remoteInfo = "Flipper-PeerTalk"; - }; - EC0B7672EEE8620DF47F2E21D5EBE10F /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = F3966F664F3CFAEFAB57C40FB54D3788; - remoteInfo = TOCropViewController; + remoteGlobalIDString = 807428FE76D80865C9F59F3502600E89; + remoteInfo = RNDeviceInfo; }; EC27520D8FECFB4E9412291A616D4F07 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -6413,20 +6278,6 @@ remoteGlobalIDString = 938CCE22F6C4094B3FB6CF1478579E4B; remoteInfo = "React-RCTAnimation"; }; - EC9FE53500BCB1756D40269A0C34FF4A /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = DBD2D83E10F8B7D3F4E0E34E6A9FCFA6; - remoteInfo = "React-RCTText"; - }; - ECA965FF42B4C8F6981E031A7A71A37A /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 072CEA044D2EF26F03496D5996BBF59F; - remoteInfo = Firebase; - }; ECADD9C57FC2C24C9729ACF2EB4520A8 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -6448,6 +6299,27 @@ remoteGlobalIDString = A4F685BE3CAC127BDCE4E0DBBD88D191; remoteInfo = Folly; }; + ECEC1E0689D4CB8A666EBC21F2C7CDC7 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 2038C6F97563AAD6162C284B3EDD5B3B; + remoteInfo = UMSensorsInterface; + }; + ED4B3D9EC49DE6543E0FC83983D332EB /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 95D98F901D07557EF7CA38D3F03832C5; + remoteInfo = "React-RCTBlob"; + }; + EDAB836035A0B368A2A717C1D030AC2E /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = CA400829100F0628EC209FBB08347D42; + remoteInfo = "react-native-notifications"; + }; EFB0AF13D239174FC9CDAFF9D17ECDFC /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -6455,6 +6327,20 @@ remoteGlobalIDString = 11989A5E568B3B69655EE0C13DCDA3F9; remoteInfo = "React-RCTActionSheet"; }; + EFBB50FD49D8D47D67650641FC1A5F36 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 620E05868772C10B4920DC7E324F2C87; + remoteInfo = FirebaseCoreDiagnostics; + }; + F0291A8DA4C8644325FE8F56141DFC15 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 96150F524B245896B800F84F369A9A5A; + remoteInfo = RNVectorIcons; + }; F0595A3A8DC327024422604AADDB6501 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -6476,12 +6362,40 @@ remoteGlobalIDString = 1BEE828C124E6416179B904A9F66D794; remoteInfo = React; }; - F2717BB7528C97650678B11CC251CD1F /* PBXContainerItemProxy */ = { + F1EA7B4AD5EB32636BD82F967C770CB6 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 32CA4CBD6B28983076BD93DA221AD027; - remoteInfo = YogaKit; + remoteGlobalIDString = 2644525CCE081E967809A8163D893A93; + remoteInfo = UMFileSystemInterface; + }; + F28DAC7572E96E5DA606E2D56CCAA448 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 1A0445474DA11CA659C4BCC5AB64B1BF; + remoteInfo = RNCMaskedView; + }; + F2A9728A1B4AAC52E3A64E18642DD9A9 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = DA0709CAAD589C6E7963495210438021; + remoteInfo = "React-jsiexecutor"; + }; + F2D27E2CC2D3C2552C65752D01E4E3C4 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 1092C13E1E1172209537C28D0C8D4D3C; + remoteInfo = "react-native-orientation-locker"; + }; + F34ED61346AB473116886C5E70885619 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 8D7F5D5DD528D21A72DC87ADA5B12E2D; + remoteInfo = GoogleUtilities; }; F492237E8E3448E5615C106672F7C914 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -6490,13 +6404,6 @@ remoteGlobalIDString = 1BEE828C124E6416179B904A9F66D794; remoteInfo = React; }; - F4BF459131F18B2AC247C24158AE88A4 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = F7845084F0CF03F54107EEF7411760AD; - remoteInfo = UMPermissionsInterface; - }; F4D41B9BAEE1E0D644EE2DC36C19D572 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -6504,13 +6411,6 @@ remoteGlobalIDString = C3496D0495E700CF08A90C41EA8FA4BB; remoteInfo = FBReactNativeSpec; }; - F56EBC18CB64EE0482444624DFEC06A2 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 7ACAA9BE580DD31A5CB9D97C45D9492D; - remoteInfo = "React-Core"; - }; F58E9777EB3ADF88D9527C53980828B5 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -6518,19 +6418,12 @@ remoteGlobalIDString = ED2506AE7DE35D654F61254441EA7155; remoteInfo = "boost-for-react-native"; }; - F6A5DB87AF0C01932A85897A5411EB7E /* PBXContainerItemProxy */ = { + F65D35A3A9A8C2B84C096311EAC00F03 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 89F573A6B1292B3B2296B2206BFDC3D7; - remoteInfo = RNCAsyncStorage; - }; - F6C2459C9B6C3F3D211CD139CFF446E1 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = B6D5DD49633DFF0657B8C3F08EB3ABA9; - remoteInfo = ReactCommon; + remoteGlobalIDString = 97C4DE84FA3CC4EC06AA6D8C249949B7; + remoteInfo = UMImageLoaderInterface; }; F6D03AA427E993C8552AA921EA59A306 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -6546,54 +6439,61 @@ remoteGlobalIDString = D20469A9A1E5CFB26045EAEBE3F88E5E; remoteInfo = RCTTypeSafety; }; - F8154B0D0F0F17E1E3CFC639897DD146 /* PBXContainerItemProxy */ = { + F6FE96A1811F0515CB6BE990C27A4683 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = DBCB1B4965863DDD3B9DED9A0918A526; - remoteInfo = UMCore; + remoteGlobalIDString = 8CC4EAA817AA86310D1900F1DAB3580F; + remoteInfo = FBLazyVector; }; - F8A0D282E39D390F981958223346C018 /* PBXContainerItemProxy */ = { + F81157FF60AC569683821FF69B3FE9C6 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 6083682834ABE0AE7BD1CBF06CADD036; - remoteInfo = CocoaAsyncSocket; + remoteGlobalIDString = B51433D546A38C51AA781F192E8836F8; + remoteInfo = RNLocalize; }; - F8ACE3707A35ECE1DDDA6A49FFF5095F /* PBXContainerItemProxy */ = { + F877DFF68485F14473F5A412106A1294 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 680299219D3A48D42A648AF6706275A9; - remoteInfo = "React-RCTSettings"; + remoteGlobalIDString = FF879E718031128A75E7DE54046E6219; + remoteInfo = RNReanimated; }; - F8BCA8351356969B0EF95D36D2ABCBD9 /* PBXContainerItemProxy */ = { + F897C86013C497CDC441C72F7CD6F00A /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = F4F25FCAC51B51FD5F986EB939BF1F87; - remoteInfo = GoogleDataTransportCCTSupport; + remoteGlobalIDString = 27E277B43A5F7AE00EC5051AB99AC38E; + remoteInfo = ReactNativeKeyboardTrackingView; }; - F977DF79B6E5ECB23AEF8F7C9A1F0E74 /* PBXContainerItemProxy */ = { + F8E61769580AA193DBEF0722A215EC66 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = C49E7A4D59E5C8BE8DE9FB1EFB150185; - remoteInfo = FirebaseAnalytics; + remoteGlobalIDString = B6D5DD49633DFF0657B8C3F08EB3ABA9; + remoteInfo = ReactCommon; }; - FA13AA3252B429D6363752C78343B710 /* PBXContainerItemProxy */ = { + F8FF17F961ED44F892CD461A4882C49C /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = CA400829100F0628EC209FBB08347D42; + remoteInfo = "react-native-notifications"; + }; + FAC8C855DE4B137CAFFEF028DBFCAFB7 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; remoteGlobalIDString = 8D18C49071FC5370C25F5758A85BA5F6; remoteInfo = "react-native-webview"; }; - FB266484A3ABACAE4B155B5AF66113FD /* PBXContainerItemProxy */ = { + FBA4078BC03046291D581B487606A899 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 6514D69CB93B41626AE1A05581F97B07; - remoteInfo = "react-native-background-timer"; + remoteGlobalIDString = 49821C2B9E764AEDF2B35DFE9AA7022F; + remoteInfo = UMBarCodeScannerInterface; }; FC08646CEFADC8729C286DFED21F92F1 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -6602,12 +6502,61 @@ remoteGlobalIDString = 651511D7DA7F07F9FC9AA40A2E86270D; remoteInfo = "React-RCTNetwork"; }; - FC2E9CCCA8551E569F3C65F9D2845793 /* PBXContainerItemProxy */ = { + FC28DB2664A7D9161CFB5FB08FC0E4B2 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 2681CB7EF647E61F4F9A43029C235607; - remoteInfo = "React-callinvoker"; + remoteGlobalIDString = 32CA4CBD6B28983076BD93DA221AD027; + remoteInfo = YogaKit; + }; + FC566E06125B7DBA5F472C6DB1347681 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 90D0DE2F3348233618414728C35311CA; + remoteInfo = RNFBApp; + }; + FC6BF927E9F3195D28033222EBA81A4C /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = C49E7A4D59E5C8BE8DE9FB1EFB150185; + remoteInfo = FirebaseAnalytics; + }; + FCD0CA2919E53CAC1E011A1FB6B93C29 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 214E42634D1E187D876346D36184B655; + remoteInfo = RNScreens; + }; + FCD1FFF264504B9CC69DDB60FE4EE3DD /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = BA3F5E5AA483B263B69601DE2FA269CB; + remoteInfo = "react-native-cameraroll"; + }; + FCEBFCC68A28AABEF5A12E4DF89E6884 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 526C4398D095B3704EB933DADBC30093; + remoteInfo = FirebaseCrashlytics; + }; + FD3A89631850F110A2CF510E73972490 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = D39AB631E8050865DE01F6D5678797D2; + remoteInfo = "react-native-jitsi-meet"; + }; + FDA9375D53948B27A5B4B432F20A53C4 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 18B56DB36E1F066C927E49DBAE590128; + remoteInfo = RNRootView; }; FDE949C946FC4658F2DE21F4C568B19A /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -6616,6 +6565,20 @@ remoteGlobalIDString = 651511D7DA7F07F9FC9AA40A2E86270D; remoteInfo = "React-RCTNetwork"; }; + FE0CBE8B937140F39BC4BF2AFBEAA20F /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 982644B5B647690B2E4F5B3F54EB5717; + remoteInfo = FlipperKit; + }; + FF569EFFCDAE61E1768E62F2A7C871D6 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = ADC4ACC657481AD27F9936D08FF7F49A; + remoteInfo = "react-native-cookies"; + }; FF694E354EABEF39E4806B5AB437E5E8 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -6627,487 +6590,492 @@ /* Begin PBXFileReference section */ 000CF15380CA63A5710AC6578740E307 /* Subprocess.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = Subprocess.cpp; path = folly/Subprocess.cpp; sourceTree = ""; }; - 0016706FD6DA60F70AC4877B2ACA65BA /* UMSensorsInterface.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMSensorsInterface.debug.xcconfig; sourceTree = ""; }; - 0018D8E1CFAD743DC022DF9AB7FEFB8F /* RCTAnimationDriver.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTAnimationDriver.h; sourceTree = ""; }; 001FAF61F03707AB27BAB14D7F043EAF /* raw_logging.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = raw_logging.h; path = src/glog/raw_logging.h; sourceTree = ""; }; 0020B7C7852D686E210F8660BAD74922 /* rpc_struct.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = rpc_struct.h; path = src/event2/rpc_struct.h; sourceTree = ""; }; + 0028EA52F9E2F0D541022D3AC1392849 /* RNSScreen.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNSScreen.m; path = ios/RNSScreen.m; sourceTree = ""; }; + 0038443937503E8F7775EB12685926F9 /* RNNativeViewHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNNativeViewHandler.h; sourceTree = ""; }; 00394DC74E7E0D168314BDF7B23C819E /* FIRCLSSettingsOnboardingManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSSettingsOnboardingManager.h; path = Crashlytics/Crashlytics/Settings/FIRCLSSettingsOnboardingManager.h; sourceTree = ""; }; + 00404CDA3D285D5E043FDD98DC7821DA /* UMViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = UMViewManager.m; path = UMCore/UMViewManager.m; sourceTree = ""; }; 0043880CE50D21543C9A3B70EDA3D203 /* FBLPromise+Delay.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FBLPromise+Delay.h"; path = "Sources/FBLPromises/include/FBLPromise+Delay.h"; sourceTree = ""; }; 004BD555B4C3AAC417004AFDB70857C0 /* OpenSSLPtrTypes.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = OpenSSLPtrTypes.h; path = folly/ssl/OpenSSLPtrTypes.h; sourceTree = ""; }; - 006014C47BE7976F74E8506743E2E6AE /* RCTJavaScriptExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTJavaScriptExecutor.h; sourceTree = ""; }; + 00530FD95701E1318366E6EEC13905C8 /* RNDocumentPicker.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNDocumentPicker.m; path = ios/RNDocumentPicker/RNDocumentPicker.m; sourceTree = ""; }; 007A425D647F56FBFE1500110E23D2C8 /* Throughput.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Throughput.h; path = rsocket/benchmarks/Throughput.h; sourceTree = ""; }; + 00892DBCDA5DECE33799697A8BDCEAB7 /* TurboCxxModule.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = TurboCxxModule.cpp; path = turbomodule/core/TurboCxxModule.cpp; sourceTree = ""; }; + 0097B831D5A9B39C1A487D43145B7CAF /* RNNotificationsStore.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNNotificationsStore.h; path = RNNotifications/RNNotificationsStore.h; sourceTree = ""; }; 00AA30777DD6CC881D652F611A1BBF07 /* FlipperDiagnosticsViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FlipperDiagnosticsViewController.h; path = iOS/FlipperKit/FlipperDiagnosticsViewController.h; sourceTree = ""; }; 00C3061994058F4C72768B07FED2FE18 /* stop_watch.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = stop_watch.h; path = folly/stop_watch.h; sourceTree = ""; }; + 00D2DF48B6D69A1A3B7C96A665DE7675 /* UIView+Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "UIView+Private.h"; sourceTree = ""; }; 00D61C2E3EB88ADFEA656CD45A144DB5 /* FlipperKitReactPlugin.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FlipperKitReactPlugin.m; path = iOS/Plugins/FlipperKitReactPlugin/FlipperKitReactPlugin/FlipperKitReactPlugin.m; sourceTree = ""; }; 00E89C7237B3349F0BC8441CEC8099B7 /* AsyncTrace.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AsyncTrace.h; path = folly/detail/AsyncTrace.h; sourceTree = ""; }; - 00EEACC7F27DDF885CBAEA844DEA2D33 /* UMUtilitiesInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMUtilitiesInterface.h; sourceTree = ""; }; + 00EC4CE6F1F7EC1C98F06E4935F70880 /* react-native-cameraroll-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "react-native-cameraroll-dummy.m"; sourceTree = ""; }; 010C2584F22DD9546DF20B9967FF8F3C /* json_pointer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = json_pointer.h; path = folly/json_pointer.h; sourceTree = ""; }; - 010DF4C6234863CFFFE2649352EB2007 /* RNCAsyncStorage.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCAsyncStorage.h; path = ios/RNCAsyncStorage.h; sourceTree = ""; }; - 010F1417BBCD68412849A986F5CCA6AB /* React-RCTVibration.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-RCTVibration.debug.xcconfig"; sourceTree = ""; }; 0113683947F2278F3838BAF591B83056 /* HardwareConcurrency.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = HardwareConcurrency.cpp; path = folly/system/HardwareConcurrency.cpp; sourceTree = ""; }; 012242E4480B29DF1D5791EC61C27FEE /* libreact-native-notifications.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libreact-native-notifications.a"; path = "libreact-native-notifications.a"; sourceTree = BUILT_PRODUCTS_DIR; }; 012B713C1CA9852F2D7F841FA563F477 /* FIRBundleUtil.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRBundleUtil.m; path = FirebaseCore/Sources/FIRBundleUtil.m; sourceTree = ""; }; 01376D456DEA9117D59A2869FA227E66 /* FlowableConcatOperators.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FlowableConcatOperators.h; path = yarpl/flowable/FlowableConcatOperators.h; sourceTree = ""; }; - 0137B39BC50F3262C2E164A39B235DD4 /* react-native-cameraroll-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "react-native-cameraroll-prefix.pch"; sourceTree = ""; }; 013B2032DCD7235581AEB305E07D9AB9 /* JitsiMeet.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = JitsiMeet.framework; path = Frameworks/JitsiMeet.framework; sourceTree = ""; }; - 015A25D2F24C5E05205779B1A4BAC1D8 /* ReactNativeKeyboardTrackingView-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "ReactNativeKeyboardTrackingView-prefix.pch"; sourceTree = ""; }; - 015E65E1EDEC6865B8F3E2EBDE6234D2 /* BSG_KSBacktrace.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSBacktrace.c; sourceTree = ""; }; + 01416F5AC4744A28E93F13269C8866B7 /* TurboModule.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = TurboModule.cpp; path = turbomodule/core/TurboModule.cpp; sourceTree = ""; }; + 0159D057369B74CBE0C3471C25A61664 /* RCTDatePickerManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTDatePickerManager.m; sourceTree = ""; }; + 016F354F6F47AD212F113D6388C9F138 /* RCTLinkingManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTLinkingManager.h; path = Libraries/LinkingIOS/RCTLinkingManager.h; sourceTree = ""; }; 0179F72397C268C054558F5D8E4420DC /* RValueReferenceWrapper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RValueReferenceWrapper.h; path = folly/lang/RValueReferenceWrapper.h; sourceTree = ""; }; + 01828797957A7587C171B391F5A35BDD /* RNFBCrashlyticsInitProvider.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNFBCrashlyticsInitProvider.m; path = ios/RNFBCrashlytics/RNFBCrashlyticsInitProvider.m; sourceTree = ""; }; 0188C60B434E703DABBF44094087009B /* FIRCLSRecordIdentity.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCLSRecordIdentity.m; path = Crashlytics/Crashlytics/Models/Record/FIRCLSRecordIdentity.m; sourceTree = ""; }; - 0198722D68E03C4B9B279C4D4CD8A0D6 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; - 0199983D50A443E1BE0A11F50D48F716 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; - 01C96BB76A2059556A480B926E409D77 /* React-jsinspector.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-jsinspector.debug.xcconfig"; sourceTree = ""; }; + 01B0712393C95CA9E119CC0694FD8247 /* NSData+EXFileSystem.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSData+EXFileSystem.m"; path = "EXFileSystem/NSData+EXFileSystem.m"; sourceTree = ""; }; 01C9D446945ECE405FCF08C06E01CAC6 /* SKIOSNetworkAdapter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SKIOSNetworkAdapter.h; path = iOS/Plugins/FlipperKitNetworkPlugin/SKIOSNetworkPlugin/SKIOSNetworkAdapter.h; sourceTree = ""; }; 01D2FE3E0A6EAEBBCC00B5722CD50421 /* FIRInstallationsSingleOperationPromiseCache.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstallationsSingleOperationPromiseCache.m; path = FirebaseInstallations/Source/Library/InstallationsIDController/FIRInstallationsSingleOperationPromiseCache.m; sourceTree = ""; }; - 01FE376F0F3AF767911A57088F87BBB1 /* JSINativeModules.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = JSINativeModules.h; path = jsireact/JSINativeModules.h; sourceTree = ""; }; + 01DD8651408BF0EF21DCC30536D473C6 /* UMAppDelegateWrapper.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = UMAppDelegateWrapper.m; path = UMCore/UMAppDelegateWrapper.m; sourceTree = ""; }; + 01FBB60C12BF83A6945FAB06D9E0D432 /* REABlockNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REABlockNode.m; sourceTree = ""; }; 0212AD1BA59EBDB927F3B3CE574A2FB0 /* enc_neon.c */ = {isa = PBXFileReference; includeInIndex = 1; name = enc_neon.c; path = src/dsp/enc_neon.c; sourceTree = ""; }; - 0220E7FC3C4159B65505E2B219D9A9A0 /* RCTInputAccessoryViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTInputAccessoryViewManager.m; sourceTree = ""; }; 02290B6692FB3DC0450A6BD5137AE1C9 /* ConnectionContextStore.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = ConnectionContextStore.cpp; path = xplat/Flipper/ConnectionContextStore.cpp; sourceTree = ""; }; 023639291EBD57E4AFDF09B7E1E95800 /* FIRComponentType.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRComponentType.h; path = FirebaseCore/Sources/Private/FIRComponentType.h; sourceTree = ""; }; 023EA38835E76BD2F08BBF15724EDCF5 /* FIRCLSDwarfUnwind.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSDwarfUnwind.h; path = Crashlytics/Crashlytics/Unwind/Dwarf/FIRCLSDwarfUnwind.h; sourceTree = ""; }; - 0265D27998B6384C969077F10D629CE7 /* RCTVirtualTextViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTVirtualTextViewManager.m; sourceTree = ""; }; + 024903648BB05BFC1AA91A07253C9509 /* React-CoreModules.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-CoreModules.release.xcconfig"; sourceTree = ""; }; + 026BEC126F4F1395BF37300DB4E3530E /* UMLogManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMLogManager.h; sourceTree = ""; }; 02736950502345C1DFE6797B12EEBE67 /* AsyncSSLSocket.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AsyncSSLSocket.h; path = folly/io/async/AsyncSSLSocket.h; sourceTree = ""; }; - 0284DE4C19F2509FDD20EF26DEB7B970 /* BugsnagUser.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagUser.m; sourceTree = ""; }; 028965E7D68DB3024840F17A1CF938E3 /* FIRErrorCode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRErrorCode.h; path = FirebaseCore/Sources/Private/FIRErrorCode.h; sourceTree = ""; }; - 02948B026F500E93FBFD47F71D5FA2E7 /* QBCheckmarkView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = QBCheckmarkView.m; path = ios/QBImagePicker/QBImagePicker/QBCheckmarkView.m; sourceTree = ""; }; - 029679B8621034F8B9F9E2A6331F37A5 /* RCTBackedTextInputDelegateAdapter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBackedTextInputDelegateAdapter.h; sourceTree = ""; }; 029CD850ACBBD3E4731687B582DC3129 /* SDWebImageTransition.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageTransition.h; path = SDWebImage/Core/SDWebImageTransition.h; sourceTree = ""; }; 02A52226F2EB3FCF1FF4CEDF15A00E9C /* GDTCORTransformer.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GDTCORTransformer.m; path = GoogleDataTransport/GDTCORLibrary/GDTCORTransformer.m; sourceTree = ""; }; - 02C7A9F63BB29B3D692C7CAD3431F9AA /* CxxModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = CxxModule.h; sourceTree = ""; }; - 02D1C5E816420BA606B3A5F7CAB19B28 /* RCTInputAccessoryViewContent.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTInputAccessoryViewContent.h; sourceTree = ""; }; + 02B0AFD0AFE2860DBA2E4EE0CA8F9940 /* RCTKeyCommandsManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTKeyCommandsManager.h; path = ios/KeyCommands/RCTKeyCommandsManager.h; sourceTree = ""; }; 02DDC82FED4407CCE78238F4C023A21D /* SpookyHashV1.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SpookyHashV1.h; path = folly/hash/SpookyHashV1.h; sourceTree = ""; }; - 02EDDF8800B6E8AC8B0D81262371EA6F /* UMErrorCodes.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = UMErrorCodes.m; path = UMCore/UMErrorCodes.m; sourceTree = ""; }; + 02F1047B882E0C8E3E1C90A862861A8B /* RCTParserUtils.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTParserUtils.m; sourceTree = ""; }; 02F6E3B8432991B587BE178EB2A2934B /* ThriftStreamShim.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ThriftStreamShim.h; path = yarpl/flowable/ThriftStreamShim.h; sourceTree = ""; }; - 0318045AAA150FBF6B3FFF4706ABF521 /* BSG_KSFileUtils.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSFileUtils.c; sourceTree = ""; }; + 0305A06A28104F6A5F208F3E489C7E66 /* RCTVibration.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTVibration.h; path = Libraries/Vibration/RCTVibration.h; sourceTree = ""; }; + 03193C021255D8D8E0E758BBB6DB8410 /* EXWebBrowser-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "EXWebBrowser-prefix.pch"; sourceTree = ""; }; 03204A74A401AFC6F4F2E563632CDB53 /* NestedCommandLineApp.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = NestedCommandLineApp.h; path = folly/experimental/NestedCommandLineApp.h; sourceTree = ""; }; - 0322873C7A1E58DBF96AFD30EE01AEEE /* RCTScrollViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTScrollViewManager.m; sourceTree = ""; }; 0325CF8B511CC74E7EB485247DDA1080 /* PublisherBase.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = PublisherBase.cpp; path = rsocket/statemachine/PublisherBase.cpp; sourceTree = ""; }; - 03392E5EB7FAEE948555583AF17458BE /* RCTVibrationPlugins.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTVibrationPlugins.h; path = Libraries/Vibration/RCTVibrationPlugins.h; sourceTree = ""; }; - 0347C0A851766107F39596C3D2D1F806 /* RNImageCropPicker-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNImageCropPicker-dummy.m"; sourceTree = ""; }; - 03558578463C6B25BF4DBB9DB9A0A3B1 /* RCTImageView.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTImageView.mm; sourceTree = ""; }; + 0350EAAB6124BECE22642E630F0062A2 /* RNSScreen.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNSScreen.h; path = ios/RNSScreen.h; sourceTree = ""; }; 0360F96A7961E872BD9F22FD43F4BA38 /* openssl_arm_arch.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = openssl_arm_arch.h; path = Core/aes/openssl/openssl_arm_arch.h; sourceTree = ""; }; 0366AE56DE9F436C200FBBE82DE0591C /* PriorityLifoSemMPMCQueue.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PriorityLifoSemMPMCQueue.h; path = folly/executors/task_queue/PriorityLifoSemMPMCQueue.h; sourceTree = ""; }; + 03706A3E4C111F65A8CD82315D1F8A22 /* RCTUtilsUIOverride.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTUtilsUIOverride.h; sourceTree = ""; }; 037CFAC9C81542A028851020ED965541 /* RSocketResponder.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = RSocketResponder.cpp; path = rsocket/RSocketResponder.cpp; sourceTree = ""; }; - 0386096EA2720666899EFDA16ECCBCCF /* RCTBaseTextInputViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBaseTextInputViewManager.h; sourceTree = ""; }; 0388A04B410B44CB2356334BAE78D71D /* FBLPromise+Reduce.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "FBLPromise+Reduce.m"; path = "Sources/FBLPromises/FBLPromise+Reduce.m"; sourceTree = ""; }; - 03B00ACAA3137CF8B42479932AA84B11 /* RCTDevSettings.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTDevSettings.h; path = React/CoreModules/RCTDevSettings.h; sourceTree = ""; }; - 03B41CA63595A4D875D08B1223752E36 /* RNFBApp-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNFBApp-prefix.pch"; sourceTree = ""; }; + 03DB0FC7F9536554FBD485B61B73B984 /* RCTInspectorPackagerConnection.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTInspectorPackagerConnection.h; sourceTree = ""; }; 03E69871B5382F5B39FB85A896684FC1 /* FIRCLSReportUploader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSReportUploader.h; path = Crashlytics/Crashlytics/Controllers/FIRCLSReportUploader.h; sourceTree = ""; }; - 03EC0553FD9D0ADAA93CA2C561E2762A /* RNRootView.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RNRootView.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - 04264099B10AC369360E77DC32FBA9A5 /* rn-fetch-blob.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "rn-fetch-blob.debug.xcconfig"; sourceTree = ""; }; 044230C5304F3E6B8C7DB6B5FCDC17D2 /* GDTCORReachability.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCORReachability.h; path = GoogleDataTransport/GDTCORLibrary/Public/GDTCORReachability.h; sourceTree = ""; }; 044C372F86C8E48BC0C7C3E65F591321 /* MMKVCore.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = MMKVCore.debug.xcconfig; sourceTree = ""; }; - 0455FD41E2FB33B420BDBC210151390C /* React-RCTImage-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-RCTImage-dummy.m"; sourceTree = ""; }; - 045982EF673658512F71EE801CC44B39 /* RCTRootContentView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTRootContentView.h; sourceTree = ""; }; + 047D4F307EC93C3354A248AB48A174E9 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; 048017DCC836D969DCB47524086360F8 /* GULKeychainStorage.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULKeychainStorage.h; path = GoogleUtilities/Environment/Private/GULKeychainStorage.h; sourceTree = ""; }; 048103DFC8DAADF4924EEF0E3ACB98B3 /* UIView+WebCache.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIView+WebCache.h"; path = "SDWebImage/Core/UIView+WebCache.h"; sourceTree = ""; }; + 04862A22908BDB951726B6084DC36B36 /* RCTResizeMode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTResizeMode.m; sourceTree = ""; }; 048B99AAC8A1A2A86ABA6C8584D941F7 /* SDImageWebPCoder.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageWebPCoder.m; path = SDWebImageWebPCoder/Classes/SDImageWebPCoder.m; sourceTree = ""; }; 049042B3DF2FDABEB9BBE38636CFBE88 /* ThreadFactory.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ThreadFactory.h; path = folly/executors/thread_factory/ThreadFactory.h; sourceTree = ""; }; 04B602E919331F6E10D07406173CBE47 /* SysMman.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SysMman.h; path = folly/portability/SysMman.h; sourceTree = ""; }; 04BA0BD1CC68B0FFFDC1E257AC87BBDF /* ThreadLock_Win32.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = ThreadLock_Win32.cpp; path = Core/ThreadLock_Win32.cpp; sourceTree = ""; }; 04BF9679CC9E22B954E0BCFF9DE3D48E /* ssim_sse2.c */ = {isa = PBXFileReference; includeInIndex = 1; name = ssim_sse2.c; path = src/dsp/ssim_sse2.c; sourceTree = ""; }; 04C6EFDE83470C158A2170DECD738DEB /* alpha_enc.c */ = {isa = PBXFileReference; includeInIndex = 1; name = alpha_enc.c; path = src/enc/alpha_enc.c; sourceTree = ""; }; + 04C7199F89520D6B44F7C1B306AB3DA9 /* RCTPickerManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTPickerManager.m; sourceTree = ""; }; 04D54CD2B7E9D3D2968B6808528891D0 /* FramedDuplexConnection.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FramedDuplexConnection.h; path = rsocket/framing/FramedDuplexConnection.h; sourceTree = ""; }; 04DAB6A2124050E4A50E687C0C6ADBA3 /* FIRInstallationsErrors.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstallationsErrors.h; path = FirebaseInstallations/Source/Library/Public/FIRInstallationsErrors.h; sourceTree = ""; }; 04E7E2155201EF39EF2514273042232A /* Traits.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Traits.h; path = folly/Traits.h; sourceTree = ""; }; + 05017CE8ABDD7A47FC93E01E39E48638 /* RNNotificationParser.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNNotificationParser.h; path = RNNotifications/RNNotificationParser.h; sourceTree = ""; }; 0510874379DA08324AAC3DFC7D322508 /* IOBuf.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = IOBuf.cpp; path = folly/io/IOBuf.cpp; sourceTree = ""; }; - 05200422CF221FE64B404ED285B28A81 /* react-native-webview.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "react-native-webview.release.xcconfig"; sourceTree = ""; }; 0532C0A55B5C10F896B040B55DBAEE2B /* FIRAEvent+Internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FIRAEvent+Internal.h"; path = "Crashlytics/Crashlytics/Helpers/FIRAEvent+Internal.h"; sourceTree = ""; }; - 054C9445767DD83D0012B423A3B2BE4E /* RNImageCropPicker-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNImageCropPicker-prefix.pch"; sourceTree = ""; }; - 055C284639A098D954F94C5789FC657E /* RCTLogBox.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTLogBox.mm; sourceTree = ""; }; 05A7A7FF7CD4C4F405C3CFF889CBFF97 /* ChannelResponder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ChannelResponder.h; path = rsocket/statemachine/ChannelResponder.h; sourceTree = ""; }; 05AFD5AC20FA42C696EE0AD06F4E7ED8 /* SDImageGIFCoder.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageGIFCoder.m; path = SDWebImage/Core/SDImageGIFCoder.m; sourceTree = ""; }; + 05B047251FF7E78077FD10153B9D1534 /* RCTTypedModuleConstants.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTTypedModuleConstants.mm; sourceTree = ""; }; 05C36B610E67067EB1DF01028DF5B045 /* SDAnimatedImageView+WebCache.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "SDAnimatedImageView+WebCache.m"; path = "SDWebImage/Core/SDAnimatedImageView+WebCache.m"; sourceTree = ""; }; 05C5CAF6C029051A210C459C610E623F /* rescaler_utils.c */ = {isa = PBXFileReference; includeInIndex = 1; name = rescaler_utils.c; path = src/utils/rescaler_utils.c; sourceTree = ""; }; - 05F43FC6C16D097AE21402A3F610130B /* RCTRootViewInternal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTRootViewInternal.h; sourceTree = ""; }; - 061E275A1BE4FF3A74299CB2F8DBC4A7 /* RCTPackagerClient.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTPackagerClient.m; sourceTree = ""; }; + 05EFEFFB6FBAEB2187CB89FEDE0E72BF /* RCTRefreshControl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTRefreshControl.h; sourceTree = ""; }; + 0612E2A68FE8BC4C41BA849DD2046748 /* BugsnagLogger.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagLogger.h; sourceTree = ""; }; 062C82D54F9C09A401B970511851C116 /* idec_dec.c */ = {isa = PBXFileReference; includeInIndex = 1; name = idec_dec.c; path = src/dec/idec_dec.c; sourceTree = ""; }; - 063BAEFED377695B7B330F91977A4541 /* RCTBorderDrawing.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTBorderDrawing.m; sourceTree = ""; }; - 063E2E543E65D3B537179D7975167DBD /* RCTNetworkTask.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTNetworkTask.h; path = Libraries/Network/RCTNetworkTask.h; sourceTree = ""; }; 06489499588BFA8FD5E63DD6375CD533 /* libFolly.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libFolly.a; path = libFolly.a; sourceTree = BUILT_PRODUCTS_DIR; }; 065FCC25B084C2FE50C2AB02663D8DE7 /* ExecutorWithPriority-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "ExecutorWithPriority-inl.h"; path = "folly/executors/ExecutorWithPriority-inl.h"; sourceTree = ""; }; + 06604141F87AF3B9A7452D0A31C70A6A /* jsi.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = jsi.cpp; sourceTree = ""; }; 066B88BB8286C5B2C6FAC71D65B28F60 /* webp_enc.c */ = {isa = PBXFileReference; includeInIndex = 1; name = webp_enc.c; path = src/enc/webp_enc.c; sourceTree = ""; }; 06A0EA90E932E5FF5DA7235B3B28B11D /* stl_logging.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = stl_logging.h; path = src/glog/stl_logging.h; sourceTree = ""; }; 06BC2718366E7D446A460E9A3C051889 /* GDTCORClock.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCORClock.h; path = GoogleDataTransport/GDTCORLibrary/Public/GDTCORClock.h; sourceTree = ""; }; 06BD537C2CCD93C2293EFEEC85836499 /* pl.lproj */ = {isa = PBXFileReference; includeInIndex = 1; name = pl.lproj; path = "Objective-C/TOCropViewController/Resources/pl.lproj"; sourceTree = ""; }; 06C6F2689B9C827B9FA44CF9C1F2FFC0 /* SKYogaKitHelper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SKYogaKitHelper.h; path = iOS/Plugins/FlipperKitLayoutPlugin/FlipperKitLayoutPlugin/utils/SKYogaKitHelper.h; sourceTree = ""; }; + 06EEC01857B5F8830F5EDF081D9558C9 /* RNCSafeAreaView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCSafeAreaView.m; path = ios/SafeAreaView/RNCSafeAreaView.m; sourceTree = ""; }; 06FC5C9CF96D60C50FCD47D339C91951 /* libnanopb.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libnanopb.a; path = libnanopb.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 0709BBC41221895334569C4856137579 /* react-native-slider.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "react-native-slider.debug.xcconfig"; sourceTree = ""; }; - 072DE48FF7AFCF659B873ABA2A201904 /* BSG_KSCrashReportFilterCompletion.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashReportFilterCompletion.h; sourceTree = ""; }; + 070C30D6B59F6646B698C3B35C4E4F63 /* RCTBundleURLProvider.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBundleURLProvider.h; sourceTree = ""; }; + 074278C80DA4533D8AE15C7D373FBA2E /* UMTaskConsumerInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMTaskConsumerInterface.h; path = UMTaskManagerInterface/UMTaskConsumerInterface.h; sourceTree = ""; }; + 0746D017C244257B3E9BE536E78751C5 /* JSIndexedRAMBundle.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = JSIndexedRAMBundle.cpp; sourceTree = ""; }; 075ECBF84686B11D2B7FB511729E0BA8 /* Cast.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Cast.h; path = folly/lang/Cast.h; sourceTree = ""; }; + 0772CD1EB03764865FC293C8347E4598 /* RCTScrollContentView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTScrollContentView.h; sourceTree = ""; }; 077BD30C8E48BD860BD0650D25B4E864 /* SKSwizzle.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = SKSwizzle.mm; path = iOS/Plugins/FlipperKitLayoutPlugin/FlipperKitLayoutPlugin/utils/SKSwizzle.mm; sourceTree = ""; }; - 0786D6F091FA6543F6D2353917518AEB /* RNGestureHandlerButton.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNGestureHandlerButton.h; path = ios/RNGestureHandlerButton.h; sourceTree = ""; }; - 078BB89A64C2CB0B267C97A9A63E54C2 /* RNFBUtilsModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNFBUtilsModule.h; path = ios/RNFBApp/RNFBUtilsModule.h; sourceTree = ""; }; + 077F8E04F2D3688403F8D340E4824BB6 /* RCTSegmentedControl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSegmentedControl.h; sourceTree = ""; }; 07928018B1902ED19163ED0D46E0B78B /* AESCrypt.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AESCrypt.h; path = Core/aes/AESCrypt.h; sourceTree = ""; }; 0797D4DAA2370A5E22527A6B4C533CFD /* lossless_enc_neon.c */ = {isa = PBXFileReference; includeInIndex = 1; name = lossless_enc_neon.c; path = src/dsp/lossless_enc_neon.c; sourceTree = ""; }; - 079D29802D409D114AFD1A998A0365F7 /* QBAssetCell.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = QBAssetCell.m; path = ios/QBImagePicker/QBImagePicker/QBAssetCell.m; sourceTree = ""; }; + 079B3F18C0DB4CAEA4C8E49D4DD50C33 /* RCTProfileTrampoline-arm64.S */ = {isa = PBXFileReference; includeInIndex = 1; path = "RCTProfileTrampoline-arm64.S"; sourceTree = ""; }; 07D9CB90B75FF0BF6CB45B6CF79056D6 /* FIRInstallationsIDController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstallationsIDController.h; path = FirebaseInstallations/Source/Library/InstallationsIDController/FIRInstallationsIDController.h; sourceTree = ""; }; - 07E6C850E620161FEB0E005308D7E900 /* UMPermissionsInterface-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "UMPermissionsInterface-dummy.m"; sourceTree = ""; }; + 07E46AF9C96EE50EE5FFB1E6032FC442 /* BSG_KSCrashSentry_NSException.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashSentry_NSException.h; sourceTree = ""; }; 07F65FB03B85510F0B6531AF44EE9976 /* FlipperPlugin.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FlipperPlugin.h; path = xplat/Flipper/FlipperPlugin.h; sourceTree = ""; }; 08051D2A5089A408C5C8CD59BCA08707 /* json_pointer.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = json_pointer.cpp; path = folly/json_pointer.cpp; sourceTree = ""; }; - 0810F33036DAB18C702F91D1600E5DB6 /* EXVideoThumbnails-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "EXVideoThumbnails-prefix.pch"; sourceTree = ""; }; + 080B01DE6DFDF879F44491595E30CE94 /* QBVideoIndicatorView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = QBVideoIndicatorView.h; path = ios/QBImagePicker/QBImagePicker/QBVideoIndicatorView.h; sourceTree = ""; }; 0818D39E633BAA54EC2D71D8C25E6A8B /* AtomicHashUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AtomicHashUtils.h; path = folly/detail/AtomicHashUtils.h; sourceTree = ""; }; - 0821334E8D60BE031718CEE781329506 /* RCTLayoutAnimation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTLayoutAnimation.h; sourceTree = ""; }; + 082B8945EB9FF5BC4550ED07BCBAE377 /* RCTTrackingAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTTrackingAnimatedNode.m; sourceTree = ""; }; 082D79B728F74A2B01212186ED9B5B3A /* FLEXNetworkTransaction.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FLEXNetworkTransaction.h; path = iOS/Plugins/FlipperKitNetworkPlugin/SKIOSNetworkPlugin/FLEXNetworkLib/FLEXNetworkTransaction.h; sourceTree = ""; }; - 08410A292904F624C2DE426ADEAF70BB /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; 084CC30BDCC156941702CFF69B60F30E /* DiscriminatedPtr.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DiscriminatedPtr.h; path = folly/DiscriminatedPtr.h; sourceTree = ""; }; 084E16E8ADA877574CEFCADB0A2E393C /* pb_common.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = pb_common.h; sourceTree = ""; }; - 08519E82B954DA60AF0DDFA56AB29551 /* ARTNodeManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = ARTNodeManager.h; sourceTree = ""; }; - 087C479264A1B317065A9E54BCCE3C08 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; 08B6390357AA95B7AF60B6F72F9FA914 /* FIRCLSCrashedMarkerFile.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSCrashedMarkerFile.h; path = Crashlytics/Crashlytics/Components/FIRCLSCrashedMarkerFile.h; sourceTree = ""; }; + 08BC175DFF581A63F45FB432E7265A80 /* BSG_KSLogger.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BSG_KSLogger.m; sourceTree = ""; }; 08C8FBA463275A77C4AD39D317052A28 /* Fixture.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = Fixture.cpp; path = rsocket/benchmarks/Fixture.cpp; sourceTree = ""; }; 08D1FFC2980C1ED72AE9A4C44A0544C3 /* libreact-native-document-picker.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libreact-native-document-picker.a"; path = "libreact-native-document-picker.a"; sourceTree = BUILT_PRODUCTS_DIR; }; - 08DDD533763FE910E40EFBF265C91E3E /* ARTTextManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = ARTTextManager.h; sourceTree = ""; }; - 08E9EA705803A7C8E505CFBA35398591 /* React-RCTVibration.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = "React-RCTVibration.podspec"; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 08E57BBBF49E38C54901029AAA8A529B /* BSG_KSObjCApple.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSObjCApple.h; sourceTree = ""; }; 08EAD2C7144A6857141F7C8AD8FFA1A7 /* ParkingLot.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = ParkingLot.cpp; path = folly/synchronization/ParkingLot.cpp; sourceTree = ""; }; 08F44F326DC1E043211293A01EC3647C /* libevent_core.a */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = archive.ar; name = libevent_core.a; path = lib/libevent_core.a; sourceTree = ""; }; 08F6A5E20FB2CE3EC0275DD8D1FFE7DF /* MMKV-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "MMKV-prefix.pch"; sourceTree = ""; }; 091722FF494A2188DDC63E7D19D48557 /* MMBuffer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MMBuffer.h; path = Core/MMBuffer.h; sourceTree = ""; }; + 091A39083067C5138C5C26C048F15F3A /* RNConfigReader.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNConfigReader.m; path = ios/RNConfigReader.m; sourceTree = ""; }; 0920195F8B40BCD1B1C407316C045235 /* buffer_compat.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = buffer_compat.h; path = src/event2/buffer_compat.h; sourceTree = ""; }; 092333F46742ECA6DCDDB1D667A1AB77 /* UIImage+MemoryCacheCost.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIImage+MemoryCacheCost.m"; path = "SDWebImage/Core/UIImage+MemoryCacheCost.m"; sourceTree = ""; }; - 093BFCF0BDEDAC7D53A0FD539605E3CA /* jsi.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = jsi.h; sourceTree = ""; }; + 0931CD748FE203E76C584140BA32A179 /* BugsnagKSCrashSysInfoParser.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagKSCrashSysInfoParser.h; sourceTree = ""; }; 093C8B36D29A816F408DCA55BC1D3870 /* SKViewControllerDescriptor.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SKViewControllerDescriptor.m; path = iOS/Plugins/FlipperKitLayoutPlugin/FlipperKitLayoutPlugin/descriptors/SKViewControllerDescriptor.m; sourceTree = ""; }; 094B208492CF8A55850C1DF164B54F3D /* String.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = String.h; path = folly/portability/String.h; sourceTree = ""; }; - 094F0D34BFD6E291AE123770D2E87600 /* RCTVibration.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTVibration.h; path = Libraries/Vibration/RCTVibration.h; sourceTree = ""; }; 0952FA79941FD9CF60D8FF8C44E18B65 /* libevent_extra.a */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = archive.ar; name = libevent_extra.a; path = lib/libevent_extra.a; sourceTree = ""; }; - 095520942B02639F2E03356974350135 /* UMAppDelegateWrapper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMAppDelegateWrapper.h; path = UMCore/UMAppDelegateWrapper.h; sourceTree = ""; }; - 09553FDB3FD9974E7D3B99CB02D84EA2 /* LICENSE.md */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE.md; sourceTree = ""; }; - 09558B8383ECB49A8A125922CB9388B6 /* fr.lproj */ = {isa = PBXFileReference; includeInIndex = 1; name = fr.lproj; path = ios/QBImagePicker/QBImagePicker/fr.lproj; sourceTree = ""; }; - 0956FB3C42355DF5911478E276BEC1D9 /* jsilib-windows.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = "jsilib-windows.cpp"; sourceTree = ""; }; + 0954E35DA7C8F7318DDA7A1DEBF5BA14 /* BSG_KSSystemInfo.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BSG_KSSystemInfo.m; sourceTree = ""; }; + 0955127522441E460AE779ACA23C7C48 /* BugsnagReactNative.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = BugsnagReactNative.h; path = cocoa/BugsnagReactNative.h; sourceTree = ""; }; + 095CE3142C95791DDB77685CC1DD8285 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; + 095EB85F1881745BA00AC9D7BAA39BE9 /* react-native-webview-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "react-native-webview-prefix.pch"; sourceTree = ""; }; 096045BDD8D0A09996FCCE24B6A570E8 /* upsampling_msa.c */ = {isa = PBXFileReference; includeInIndex = 1; name = upsampling_msa.c; path = src/dsp/upsampling_msa.c; sourceTree = ""; }; 096A0A2F847360CF1FCB976B8084BB4C /* ConsumerBase.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = ConsumerBase.cpp; path = rsocket/statemachine/ConsumerBase.cpp; sourceTree = ""; }; - 0975B5CBDB0385B52AA9FD97F4962042 /* UMErrorCodes.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMErrorCodes.h; path = UMCore/UMErrorCodes.h; sourceTree = ""; }; 09858444B14CB83AEA70BD5C14FDCB5C /* FIRCLSNetworkClient.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCLSNetworkClient.m; path = Crashlytics/Crashlytics/Controllers/FIRCLSNetworkClient.m; sourceTree = ""; }; 09863058CABE4F4D75527B7D7AFFF3A9 /* SDImageTransformer.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageTransformer.m; path = SDWebImage/Core/SDImageTransformer.m; sourceTree = ""; }; 09899EEE1275EB46A839E7472C1D1858 /* SDWebImageDownloader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageDownloader.h; path = SDWebImage/Core/SDWebImageDownloader.h; sourceTree = ""; }; - 098A8102A7A2650315A84E65070320DA /* experiments.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = experiments.h; sourceTree = ""; }; - 09B2AC3210802A7AE1D972D3F3C233A3 /* BSG_KSMachHeaders.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BSG_KSMachHeaders.m; sourceTree = ""; }; 09B5856105EF7C6447B9EC57E7E36B34 /* libEXKeepAwake.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libEXKeepAwake.a; path = libEXKeepAwake.a; sourceTree = BUILT_PRODUCTS_DIR; }; 09B5F3ED7A07A1DA4B7951D47BAC11EB /* Fingerprint.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Fingerprint.h; path = folly/Fingerprint.h; sourceTree = ""; }; 09BE02A071B1A6C4088818D458AA09CF /* FIRAnalyticsConnector.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = FIRAnalyticsConnector.framework; path = Frameworks/FIRAnalyticsConnector.framework; sourceTree = ""; }; 09C9A4AB438A7D176F08CFFBD5383A8C /* Flipper-DoubleConversion-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Flipper-DoubleConversion-dummy.m"; sourceTree = ""; }; - 09DB0608DD97244012DFDB6A79C8085F /* React-jsi-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-jsi-prefix.pch"; sourceTree = ""; }; - 09E934C0432AD032CB0B45BCB48CE5BB /* React-RCTBlob-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-RCTBlob-dummy.m"; sourceTree = ""; }; + 09DB3431E7B74E6C586FD2AFF18A1D68 /* ReactNativeART.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = ReactNativeART.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 09F07623EF792B7E062D8915EA0CF9C8 /* REATransformNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REATransformNode.h; sourceTree = ""; }; 0A05AF9229BB81A6A96C343D99EFA66D /* FrameTransportImpl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FrameTransportImpl.h; path = rsocket/framing/FrameTransportImpl.h; sourceTree = ""; }; - 0A2E4B6CE4169FF363E84BAA68A17746 /* RCTTouchHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTouchHandler.h; sourceTree = ""; }; 0A30242BC57DFE4D332A7228C8E5EC28 /* MMKV.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = MMKV.cpp; path = Core/MMKV.cpp; sourceTree = ""; }; - 0A6004443115709FE18B9DDF74161C07 /* React-Core.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = "React-Core.podspec"; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 0A3FAE4B5FB2A07F5E1F06F05C543414 /* BugsnagSessionTracker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagSessionTracker.h; sourceTree = ""; }; + 0A471759F497FD68797578567C427CDA /* RNFBRCTEventEmitter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNFBRCTEventEmitter.h; path = ios/RNFBApp/RNFBRCTEventEmitter.h; sourceTree = ""; }; + 0A584D274903A564E120260FBAEC163F /* RCTConvert+Transform.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RCTConvert+Transform.h"; sourceTree = ""; }; + 0A655009077EB9C203871714A1D29383 /* RCTFileReaderModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTFileReaderModule.h; path = Libraries/Blob/RCTFileReaderModule.h; sourceTree = ""; }; + 0A79E8FFBD8D77CB2FD1CE9F13CFDBDF /* RNCSafeAreaViewEdges.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCSafeAreaViewEdges.h; path = ios/SafeAreaView/RNCSafeAreaViewEdges.h; sourceTree = ""; }; + 0A8BD8715F66E697FEAC7397BE88D4A3 /* RCTFPSGraph.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTFPSGraph.m; sourceTree = ""; }; 0AA27275AE70878ED9596408A6A4C83A /* mdc2.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = mdc2.h; path = ios/include/openssl/mdc2.h; sourceTree = ""; }; 0AD1AC690771CE2BB2E847CC45FBBDC4 /* Semaphore.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Semaphore.h; path = folly/portability/Semaphore.h; sourceTree = ""; }; 0AD84C00A9493DE4ACFC079372DDA730 /* openssl_aesv8-armx.S */ = {isa = PBXFileReference; includeInIndex = 1; name = "openssl_aesv8-armx.S"; path = "Core/aes/openssl/openssl_aesv8-armx.S"; sourceTree = ""; }; 0ADD6EEC74318B8FC73905C199941380 /* GCDAsyncSocket.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GCDAsyncSocket.h; path = Source/GCD/GCDAsyncSocket.h; sourceTree = ""; }; 0AFDB24D195B1C26075A0338826D2DAE /* FBLPromise+Any.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "FBLPromise+Any.m"; path = "Sources/FBLPromises/FBLPromise+Any.m"; sourceTree = ""; }; - 0B10AB992B97BBD69B235538CBC74ED3 /* React-RCTActionSheet.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-RCTActionSheet.release.xcconfig"; sourceTree = ""; }; - 0B21DF4FED56ECFFFF4EF7E4936FD328 /* QBSlomoIconView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = QBSlomoIconView.h; path = ios/QBImagePicker/QBImagePicker/QBSlomoIconView.h; sourceTree = ""; }; 0B2347BCCA21DAA5052BA753E0EFDF4E /* FBLPromise+Always.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "FBLPromise+Always.m"; path = "Sources/FBLPromises/FBLPromise+Always.m"; sourceTree = ""; }; 0B3C3D246460633B8E7681B3AE2B683D /* AtomicUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AtomicUtils.h; path = folly/synchronization/detail/AtomicUtils.h; sourceTree = ""; }; - 0B3CCACC1F606AC236D18A603EDDF651 /* RNCSafeAreaProvider.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCSafeAreaProvider.m; path = ios/SafeAreaView/RNCSafeAreaProvider.m; sourceTree = ""; }; - 0B54E26720C532089346FE86B3132868 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; + 0B46F02D35C6E887BE14C61F272C0792 /* BSG_KSCrashSentry_MachException.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSCrashSentry_MachException.c; sourceTree = ""; }; + 0B4FA5D9415D468DD3DBB37EA8689571 /* RCTBridgeModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBridgeModule.h; sourceTree = ""; }; 0B7618A5EE564C44A089744E27664CE0 /* AtomicNotification-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "AtomicNotification-inl.h"; path = "folly/synchronization/AtomicNotification-inl.h"; sourceTree = ""; }; - 0B8EE857E27AB051A823505483952AA2 /* RCTTextViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTTextViewManager.m; sourceTree = ""; }; + 0B917A53DD1B477441F60A343F5D9EEE /* EXSessionTaskDelegate.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = EXSessionTaskDelegate.m; sourceTree = ""; }; 0B97A049CE2233B5E8631885350B11E1 /* DynamicBoundedQueue.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DynamicBoundedQueue.h; path = folly/concurrency/DynamicBoundedQueue.h; sourceTree = ""; }; 0BA876504656FABC90F13B3308000FC0 /* DynamicParser.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DynamicParser.h; path = folly/experimental/DynamicParser.h; sourceTree = ""; }; - 0BE0F9192683E20BA98C8C2EA4ECF5A3 /* RNDateTimePicker.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNDateTimePicker.release.xcconfig; sourceTree = ""; }; 0BE8B2C29B9ADCB7104634B4AA15013E /* DefaultKeepAliveExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DefaultKeepAliveExecutor.h; path = folly/DefaultKeepAliveExecutor.h; sourceTree = ""; }; - 0BEDAED93228C373ADA8F3B7F3DC31E9 /* EXFilePermissionModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXFilePermissionModule.h; path = EXFileSystem/EXFilePermissionModule.h; sourceTree = ""; }; 0BF0F4A8A615BF132A32374BA90CBF6C /* String.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = String.cpp; path = folly/String.cpp; sourceTree = ""; }; - 0BFA466E5FDAB6CCE83BF9DDCBE72305 /* ImageCropPicker.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = ImageCropPicker.m; path = ios/src/ImageCropPicker.m; sourceTree = ""; }; + 0C1F0068FCF2D60B7506C7EF84F74BCB /* RCTDivisionAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTDivisionAnimatedNode.m; sourceTree = ""; }; + 0C26863A8FB144BCB7420104DE244091 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; + 0C29A1CAF05604A13712D500C0875703 /* RNBridgeModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNBridgeModule.h; path = RNNotifications/RNBridgeModule.h; sourceTree = ""; }; + 0C2E0DB3EC3A10C78EA0FD8DF4E6815D /* 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; }; 0C45139ECE89637DC802D68D4F19C389 /* FIRApp.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRApp.h; path = FirebaseCore/Sources/Public/FIRApp.h; sourceTree = ""; }; - 0C60821A40C373B9D45D5A2378D78185 /* BSG_KSSysCtl.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSSysCtl.c; sourceTree = ""; }; 0C742A20ADD9E0E46F4B632E3181BDCB /* FIRCLSReportAdapter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCLSReportAdapter.m; path = Crashlytics/Crashlytics/Models/Record/FIRCLSReportAdapter.m; sourceTree = ""; }; - 0C7880A7732E76FCD556173067551E45 /* RCTBlobCollector.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTBlobCollector.mm; sourceTree = ""; }; 0C7FF184A0AF9CFE6F3436FBAD3EE7E0 /* GlobalExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GlobalExecutor.h; path = folly/executors/GlobalExecutor.h; sourceTree = ""; }; - 0CA915474D78F85DA6EDC4CB123DFBA4 /* RNFBCrashlytics.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RNFBCrashlytics.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; 0CADD08B73E2965179229D42D64F18DB /* FBLPromise+Always.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FBLPromise+Always.h"; path = "Sources/FBLPromises/include/FBLPromise+Always.h"; sourceTree = ""; }; 0CB2B3CA01250FB7926FCCAE2B028D75 /* AtomicRef.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AtomicRef.h; path = folly/synchronization/AtomicRef.h; sourceTree = ""; }; + 0CB914CB5A4080A4AEFD0FAF60BEBC18 /* BSG_KSCrashSentry_Signal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashSentry_Signal.h; sourceTree = ""; }; + 0CC12829A005EDB7C7DA51D767D80E5F /* React-RCTText-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-RCTText-prefix.pch"; sourceTree = ""; }; 0CC456DA880CCB4C69A228EC88B34D5E /* FIRCLSURLSessionAvailability.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSURLSessionAvailability.h; path = Crashlytics/Crashlytics/FIRCLSURLSession/FIRCLSURLSessionAvailability.h; sourceTree = ""; }; - 0CC9FF6D49C90B0AE45C0E6B55E83EB5 /* RCTTiming.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTTiming.h; path = React/CoreModules/RCTTiming.h; sourceTree = ""; }; - 0CE0ADC960B2D5F61F04A203B563AEC0 /* react-native-safe-area-context.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "react-native-safe-area-context.debug.xcconfig"; sourceTree = ""; }; - 0CE19452558BC74C3D8AE5F85508DFB1 /* RCTUIUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTUIUtils.h; sourceTree = ""; }; + 0CCC9B9077994E16977981A08043DDCC /* EXImageLoader.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = EXImageLoader.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; 0CEDFF0CE53E9D577F3D7A453DD6D566 /* Flipper-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Flipper-dummy.m"; sourceTree = ""; }; + 0CF1E70BD129B3642E9FD40999CC5999 /* UMReactLogHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = UMReactLogHandler.m; sourceTree = ""; }; 0CF9C8130E99CB673275987865FAF118 /* evutil.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = evutil.h; path = src/evutil.h; sourceTree = ""; }; + 0D16BD08552EE1721EDADB365EE02470 /* StorageGetters.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = StorageGetters.m; path = ios/StorageGetters.m; sourceTree = ""; }; 0D212A38E6188F241EA5EFD43E4C8B77 /* SKRequestInfo.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SKRequestInfo.m; path = iOS/Plugins/FlipperKitNetworkPlugin/FlipperKitNetworkPlugin/SKRequestInfo.m; sourceTree = ""; }; 0D2E437AE12824A83B8C1A82F77A3FD2 /* ChannelResponder.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = ChannelResponder.cpp; path = rsocket/statemachine/ChannelResponder.cpp; sourceTree = ""; }; - 0D3C22A6CCD6685521812D4A6F5434B7 /* BSG_KSSingleton.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSSingleton.h; sourceTree = ""; }; - 0D57A3B97BBF036A0F89F1C8EB0028D8 /* UMTaskManagerInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMTaskManagerInterface.h; path = UMTaskManagerInterface/UMTaskManagerInterface.h; sourceTree = ""; }; - 0D66B5ED4F0CC77DB4C0D910890326CB /* EXAppleAuthenticationButtonViewManagers.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXAppleAuthenticationButtonViewManagers.m; path = EXAppleAuthentication/EXAppleAuthenticationButtonViewManagers.m; sourceTree = ""; }; + 0D39F7E1FE32756922D3B71C6C66AD11 /* UMCameraInterface.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = UMCameraInterface.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; 0D7FC7F419E7B19628522F0ECA592B84 /* RequestResponseResponder.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = RequestResponseResponder.cpp; path = rsocket/statemachine/RequestResponseResponder.cpp; sourceTree = ""; }; - 0DBC7C0BA6564C2A676E375BAA7B3464 /* RCTMultiplicationAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTMultiplicationAnimatedNode.h; sourceTree = ""; }; + 0D8009D6AF05952E39439DA147AC32B1 /* RNImageCropPicker-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNImageCropPicker-prefix.pch"; sourceTree = ""; }; + 0D9221B3FB20A788F4AF98B718E061AE /* EXImageLoader.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = EXImageLoader.release.xcconfig; sourceTree = ""; }; 0DBCD73AE6E477EC41137748E2B30461 /* StackTraceUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = StackTraceUtils.h; path = rsocket/internal/StackTraceUtils.h; sourceTree = ""; }; 0DBE51BDF32CA10D7DC3BE81397606A3 /* Poly.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Poly.h; path = folly/Poly.h; sourceTree = ""; }; + 0DC32B9E5DF32440966958300E1E528E /* React-cxxreact.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-cxxreact.release.xcconfig"; sourceTree = ""; }; 0DD0B61330B9878D2A0D152EF587ED4F /* demux.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = demux.h; path = src/webp/demux.h; sourceTree = ""; }; - 0DD269157CA10F350C3350C38D4D7F15 /* RNGestureHandler.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RNGestureHandler.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - 0DE57190FDC2F44ED1F1772CD8BBFC8A /* BSG_KSDynamicLinker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSDynamicLinker.h; sourceTree = ""; }; + 0DD0CB02F42B830138997DC9393DE174 /* RNGestureHandlerRegistry.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNGestureHandlerRegistry.m; path = ios/RNGestureHandlerRegistry.m; sourceTree = ""; }; 0DEBB16BC868F03B976E11D9D1EBACDE /* SpinLock.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SpinLock.h; path = folly/SpinLock.h; sourceTree = ""; }; 0DF0BF8FCE4EB3AA709D50E9D36F789B /* FIRCLSMachOSlice.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCLSMachOSlice.m; path = Crashlytics/Shared/FIRCLSMachO/FIRCLSMachOSlice.m; sourceTree = ""; }; - 0DFCBE08863B015EEA71DCC6B52DB6EC /* RCTResizeMode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTResizeMode.m; sourceTree = ""; }; + 0DF94A484DD1F8459AF2DBFE0AA9B633 /* RCTSpringAnimation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSpringAnimation.h; sourceTree = ""; }; 0DFE79970AAB3A128637F0D90756AFD0 /* MMKVCore.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = MMKVCore.release.xcconfig; sourceTree = ""; }; + 0E11A2018B39EB68BCE6F950D686826E /* BSG_KSCrashType.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashType.h; sourceTree = ""; }; 0E11F253C1B79EACC5EEA0071F470DD8 /* muxedit.c */ = {isa = PBXFileReference; includeInIndex = 1; name = muxedit.c; path = src/mux/muxedit.c; sourceTree = ""; }; - 0E2178102CF4EA9F7EB3C78F2273F61C /* RCTSlider.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSlider.m; sourceTree = ""; }; - 0E3BA941AFEBE0FBEA5D4A1BF58490AC /* JSDeltaBundleClient.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = JSDeltaBundleClient.cpp; sourceTree = ""; }; + 0E17EFBA0C00CC4DF880CC3D1D3E8219 /* UMReactFontManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMReactFontManager.h; sourceTree = ""; }; + 0E3666B201224AEA5752F509B548A672 /* RCTPointerEvents.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTPointerEvents.h; sourceTree = ""; }; + 0E43DDDE5E19719542B8E4E9D445DEA6 /* React-RCTImage-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-RCTImage-prefix.pch"; sourceTree = ""; }; + 0E587E6D478E105E756238B7D7B4EF25 /* react-native-cameraroll.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "react-native-cameraroll.debug.xcconfig"; sourceTree = ""; }; + 0E611D80D06D1A7B2E7E0828F2CB02BE /* RCTBridge.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBridge.h; sourceTree = ""; }; 0E61516147E350A335181DADF7D69B54 /* UniqueInstance.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = UniqueInstance.cpp; path = folly/detail/UniqueInstance.cpp; sourceTree = ""; }; 0E6957E1C7331CD490BD9C6BCF481CCF /* F14Mask.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = F14Mask.h; path = folly/container/detail/F14Mask.h; sourceTree = ""; }; - 0E83C6D92B0B8522BAB0BF0A43A41462 /* RCTFPSGraph.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTFPSGraph.h; path = React/CoreModules/RCTFPSGraph.h; sourceTree = ""; }; - 0E8D08598952C115C8C26E5B1E95284E /* UIImage+Resize.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIImage+Resize.h"; path = "ios/src/UIImage+Resize.h"; sourceTree = ""; }; + 0E721F73DBFF0584B6779F20A79840BE /* RCTCustomKeyboardViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTCustomKeyboardViewController.m; sourceTree = ""; }; 0E9E95C01E1CBD9C23922DC994B492F3 /* libevent.a */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = archive.ar; name = libevent.a; path = lib/libevent.a; sourceTree = ""; }; - 0ED415A1D72AF8ED46007836A649B44C /* ReactNativeART-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "ReactNativeART-prefix.pch"; sourceTree = ""; }; - 0EDF185DE43B85FF16D5D778476B8FB7 /* jsi-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "jsi-inl.h"; sourceTree = ""; }; - 0EE044559665883CF4AA2F8703CDEC8A /* RNBackgroundTimer.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNBackgroundTimer.m; path = ios/RNBackgroundTimer.m; sourceTree = ""; }; - 0EE189513282D54B02C8FE1103565049 /* MMKVStorage.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = MMKVStorage.m; path = ios/MMKVStorage.m; sourceTree = ""; }; 0EE831D13D49F2CD1A4D84E28E855FCA /* File.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = File.h; path = folly/File.h; sourceTree = ""; }; 0EFCFB70036015BF9C9044D8BE5515A8 /* picture_tools_enc.c */ = {isa = PBXFileReference; includeInIndex = 1; name = picture_tools_enc.c; path = src/enc/picture_tools_enc.c; sourceTree = ""; }; + 0F098786269C29117E9E9941D354A2F5 /* decorator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = decorator.h; sourceTree = ""; }; 0F0E0C5C69D2F5B477CB9AD4BEC168B6 /* Pods-RocketChatRN-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Pods-RocketChatRN-dummy.m"; sourceTree = ""; }; - 0F1328892B70A565CE6934664BB7B0DF /* RCTLog.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTLog.mm; sourceTree = ""; }; - 0F35EB0C64A8531ECD14981713A8C2D1 /* BSG_KSDynamicLinker.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSDynamicLinker.c; sourceTree = ""; }; - 0F47700E673A622CD04C3474EC7AEC62 /* RCTTurboModule.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTTurboModule.mm; sourceTree = ""; }; - 0F74DED5CCE9B88A2F10D02E10B256A1 /* React-jsi.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-jsi.debug.xcconfig"; sourceTree = ""; }; + 0F394CB1A791D488D9E3FA92F2295844 /* ImageCropPicker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ImageCropPicker.h; path = ios/src/ImageCropPicker.h; sourceTree = ""; }; + 0F6A26B25688950A36ACE7E69C8EC081 /* RNNotificationCenterMulticast.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNNotificationCenterMulticast.h; path = RNNotifications/RNNotificationCenterMulticast.h; sourceTree = ""; }; + 0F6AE8861B7DFAC3DB672F5BBB668797 /* REAPropsNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REAPropsNode.h; sourceTree = ""; }; + 0F72D240444052BFB4D254000D63B413 /* UMMagnetometerUncalibratedInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMMagnetometerUncalibratedInterface.h; path = UMSensorsInterface/UMMagnetometerUncalibratedInterface.h; sourceTree = ""; }; 0F75699D4BC5083760831FCA919BD21C /* SetupResumeAcceptor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SetupResumeAcceptor.h; path = rsocket/internal/SetupResumeAcceptor.h; sourceTree = ""; }; 0F81143A1CBF0E5975925B934520B1C8 /* x509_vfy.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = x509_vfy.h; path = ios/include/openssl/x509_vfy.h; sourceTree = ""; }; - 0F919D9C2C8ADB90E776350580593764 /* UMMagnetometerUncalibratedInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMMagnetometerUncalibratedInterface.h; path = UMSensorsInterface/UMMagnetometerUncalibratedInterface.h; sourceTree = ""; }; + 0F86FFDB0F32A0B801112AA1324E48E7 /* RNCSafeAreaProviderManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCSafeAreaProviderManager.m; path = ios/SafeAreaView/RNCSafeAreaProviderManager.m; sourceTree = ""; }; 0F98970A670689B1A268B0D0469F00A3 /* FlipperInitConfig.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FlipperInitConfig.h; path = xplat/Flipper/FlipperInitConfig.h; sourceTree = ""; }; 0FA1A6B4E26C0F22B4D438DA1B41F034 /* RangeCommon.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = RangeCommon.cpp; path = folly/detail/RangeCommon.cpp; sourceTree = ""; }; - 0FC1C89F649762C3221FFAFC5C91E2B9 /* RCTGIFImageDecoder.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTGIFImageDecoder.mm; sourceTree = ""; }; 0FF1075E4207285244501E30AE60F2B6 /* InitThreadFactory.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = InitThreadFactory.h; path = folly/executors/thread_factory/InitThreadFactory.h; sourceTree = ""; }; 0FF3FC2FC411C033C8E598DF75DB8E69 /* GDTCORAssert.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GDTCORAssert.m; path = GoogleDataTransport/GDTCORLibrary/GDTCORAssert.m; sourceTree = ""; }; 0FFF989E3CC045B3D32C4E5CEC8B9AB0 /* SDImageAPNGCoder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageAPNGCoder.h; path = SDWebImage/Core/SDImageAPNGCoder.h; sourceTree = ""; }; 100767696652CE6868B74285BA9629E2 /* AsyncServerSocket.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AsyncServerSocket.h; path = folly/io/async/AsyncServerSocket.h; sourceTree = ""; }; - 1013CAE8755C03986C3D8333C92DA2BB /* EXConstantsService.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXConstantsService.h; path = EXConstants/EXConstantsService.h; sourceTree = ""; }; 1016CCB8E58BD5D4E51E717699746205 /* QuotientMultiSet.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = QuotientMultiSet.h; path = folly/experimental/QuotientMultiSet.h; sourceTree = ""; }; + 10348EA59250727C0D8BF271D8DB4733 /* LNInterpolation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = LNInterpolation.h; sourceTree = ""; }; 1053EEB0FB1AB2AE94835CC5900BE7BE /* UIView+SKInvalidation.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = "UIView+SKInvalidation.mm"; path = "iOS/Plugins/FlipperKitLayoutPlugin/FlipperKitLayoutPlugin/UIView+SKInvalidation.mm"; sourceTree = ""; }; + 10586F4EBB6F94DBCA6929DE382470E4 /* KeyCommands.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = KeyCommands.debug.xcconfig; sourceTree = ""; }; 106165C45E0317EB7ABC82DD367CB99A /* ErrorCode.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = ErrorCode.cpp; path = rsocket/framing/ErrorCode.cpp; sourceTree = ""; }; - 1061DD7D7CAC8550321BD6B46CD6CB7F /* UMModuleRegistryHolderReactModule.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = UMModuleRegistryHolderReactModule.m; sourceTree = ""; }; - 106331FE6D581CF0C0EA01A2E6FD2214 /* EXImageLoader-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "EXImageLoader-dummy.m"; sourceTree = ""; }; 106A0E6452DBB4A050E3FCA45B2B8607 /* FrameFlags.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FrameFlags.h; path = rsocket/framing/FrameFlags.h; sourceTree = ""; }; 107158AEDA420D7D0BB0D17FA8A6EA0F /* Libgen.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = Libgen.cpp; path = folly/portability/Libgen.cpp; sourceTree = ""; }; 108B8A013394A4B9DF6805473D14F6D6 /* FBLPromise+Recover.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "FBLPromise+Recover.m"; path = "Sources/FBLPromises/FBLPromise+Recover.m"; sourceTree = ""; }; 10B27EDDF96A9EEEEF410A5D770206A5 /* dns.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = dns.h; path = src/event2/dns.h; sourceTree = ""; }; 10C45B8DDD9ABCB0C1B7CADF0DC586E9 /* bit_writer_utils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = bit_writer_utils.h; path = src/utils/bit_writer_utils.h; sourceTree = ""; }; + 10C9FFAA7F46BF08423E200731C17AC7 /* QBAlbumsViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = QBAlbumsViewController.h; path = ios/QBImagePicker/QBImagePicker/QBAlbumsViewController.h; sourceTree = ""; }; 10D9D3FE14A3CBFD301293F57EAC711B /* SDAnimatedImageView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDAnimatedImageView.m; path = SDWebImage/Core/SDAnimatedImageView.m; sourceTree = ""; }; + 10E184C63986B93D328D3635BFBB66EC /* QBVideoIconView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = QBVideoIconView.m; path = ios/QBImagePicker/QBImagePicker/QBVideoIconView.m; sourceTree = ""; }; 10E98B42DD40D4369D494747760E7B00 /* TestObserver.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TestObserver.h; path = yarpl/observable/TestObserver.h; sourceTree = ""; }; + 10F66C46F441031C10CF3596A8C4324A /* BSG_KSCrashCallCompletion.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashCallCompletion.h; sourceTree = ""; }; 10F7CF035EED2DD93173B8F2549A3E92 /* FIRExceptionModel_Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRExceptionModel_Private.h; path = Crashlytics/Crashlytics/Private/FIRExceptionModel_Private.h; sourceTree = ""; }; - 1134AA4CCD4E29C74879D6BDCF6D501B /* EXPermissions.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = EXPermissions.debug.xcconfig; sourceTree = ""; }; + 11339A94BDAF9D0A20F50A3489FE5BCB /* RCTSurfaceRootShadowViewDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSurfaceRootShadowViewDelegate.h; sourceTree = ""; }; + 1135F54BE20F138B7BACB896A2F50D0C /* RCTStyleAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTStyleAnimatedNode.h; sourceTree = ""; }; + 1145CFD6C1B9D39F994C35C72283FB63 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; + 114EDCDFE3786116DF043067ECF15619 /* RCTProfileTrampoline-i386.S */ = {isa = PBXFileReference; includeInIndex = 1; path = "RCTProfileTrampoline-i386.S"; sourceTree = ""; }; 1152CBE4ACB0D497EB34FBEE9B1FFD83 /* quant_dec.c */ = {isa = PBXFileReference; includeInIndex = 1; name = quant_dec.c; path = src/dec/quant_dec.c; sourceTree = ""; }; 115B15905C9E27E8F291210C81B4D2A6 /* FBDefines.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBDefines.h; path = iOS/FBDefines/FBDefines.h; sourceTree = ""; }; - 1163286817EABFB4D7BA7E76A1C85633 /* React-jsiexecutor.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-jsiexecutor.release.xcconfig"; sourceTree = ""; }; 1165274293DA486B43870F755943D0E8 /* tree_dec.c */ = {isa = PBXFileReference; includeInIndex = 1; name = tree_dec.c; path = src/dec/tree_dec.c; sourceTree = ""; }; 1165635BCC4B3A2A2ACC5FAA33C9E9A8 /* JitsiMeetSDK.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = JitsiMeetSDK.release.xcconfig; sourceTree = ""; }; - 1174981182DD83078F016F79F7A9B9DA /* RCTRedBoxSetEnabled.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTRedBoxSetEnabled.h; sourceTree = ""; }; 11781FC8B970EF2BD34FA55A5B0464DD /* MoveWrapper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MoveWrapper.h; path = folly/MoveWrapper.h; sourceTree = ""; }; - 119A9B97855E170C276D8B2120614DFA /* RCTRootViewDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTRootViewDelegate.h; sourceTree = ""; }; - 119AA163EE5A0DE3389EA0D439315F22 /* TurboCxxModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TurboCxxModule.h; path = turbomodule/core/TurboCxxModule.h; sourceTree = ""; }; - 11A363990FC741E2B320C14C3DA11CA7 /* Yoga-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Yoga-dummy.m"; sourceTree = ""; }; - 11AFE86C5FDD844462AE19C0333F1187 /* RCTSafeAreaViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSafeAreaViewManager.h; sourceTree = ""; }; + 119546EB68A8A19D1526AA9274BCF7B0 /* RCTSinglelineTextInputView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSinglelineTextInputView.m; sourceTree = ""; }; + 119664C5DB633E01FA1E09ED44FE65C0 /* READebugNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = READebugNode.m; sourceTree = ""; }; + 11ACB07EF32CFC78268CD12D6F193D37 /* JSIndexedRAMBundle.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = JSIndexedRAMBundle.h; sourceTree = ""; }; + 11BBD474529D9A2A7A5EBE5B6E9249F0 /* ARTPattern.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = ARTPattern.h; sourceTree = ""; }; 11C71A6B2DA5B6BE79A7FE5C1F2E6B42 /* JemallocNodumpAllocator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = JemallocNodumpAllocator.h; path = folly/experimental/JemallocNodumpAllocator.h; sourceTree = ""; }; - 11CF8D68F59E5DA5A6FFA1A0685E8CB3 /* RCTManagedPointer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTManagedPointer.h; sourceTree = ""; }; 12040043997D5E4561E199109FB51685 /* GDTCORTargets.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCORTargets.h; path = GoogleDataTransport/GDTCORLibrary/Public/GDTCORTargets.h; sourceTree = ""; }; + 1206F6B5498E2079C6C150892CE17234 /* RCTSurfaceView.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTSurfaceView.mm; sourceTree = ""; }; 120B3B53F3711422390FAE868F810DE1 /* MemoryIdler.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = MemoryIdler.cpp; path = folly/detail/MemoryIdler.cpp; sourceTree = ""; }; 122530F5C1AA8ADB22E4D156F88A8621 /* SDWebImageDownloaderRequestModifier.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageDownloaderRequestModifier.h; path = SDWebImage/Core/SDWebImageDownloaderRequestModifier.h; sourceTree = ""; }; - 1245B0690D02632BE78785FF84AA32E6 /* RCTManagedPointer.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTManagedPointer.mm; sourceTree = ""; }; + 12318603634247B4D19AFC3EE97DE563 /* RCTSurfaceStage.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSurfaceStage.h; sourceTree = ""; }; + 1250E7DAB23472ECDE2C57774F7BB962 /* RCTActionSheetManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTActionSheetManager.h; path = React/CoreModules/RCTActionSheetManager.h; sourceTree = ""; }; 125DA5CF7E18315B69A50B3F8669057D /* FIRCLSDataCollectionToken.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSDataCollectionToken.h; path = Crashlytics/Crashlytics/DataCollection/FIRCLSDataCollectionToken.h; sourceTree = ""; }; - 12769C158B809904700E4888E6AFFE0E /* RCTTextViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTextViewManager.h; sourceTree = ""; }; 12797FC69B985D90312EDCE7ECAB876E /* animi.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = animi.h; path = src/mux/animi.h; sourceTree = ""; }; - 127B3603140E92E1392502E3A2B83823 /* RCTRefreshableProtocol.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTRefreshableProtocol.h; sourceTree = ""; }; - 128441885676DD4E8AB1FF7B1A115C41 /* RNCAssetsLibraryRequestHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCAssetsLibraryRequestHandler.m; path = ios/RNCAssetsLibraryRequestHandler.m; sourceTree = ""; }; 12988D186411E3A76037468305A57D46 /* SingletonThreadLocal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SingletonThreadLocal.h; path = folly/SingletonThreadLocal.h; sourceTree = ""; }; + 129F978EBF8760785DAABFC36BA4AD08 /* UMAppDelegateWrapper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMAppDelegateWrapper.h; path = UMCore/UMAppDelegateWrapper.h; sourceTree = ""; }; + 12A3BD37E6C4373B9441485A21AD018F /* BugsnagSessionTrackingApiClient.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagSessionTrackingApiClient.h; sourceTree = ""; }; 12A674432C94F3EE2ECEEA35BD0DB182 /* Hazptr-fwd.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "Hazptr-fwd.h"; path = "folly/synchronization/Hazptr-fwd.h"; sourceTree = ""; }; 12AEECED6AF7D715C1A84D61FF91DF3A /* FIRComponentType.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRComponentType.m; path = FirebaseCore/Sources/FIRComponentType.m; sourceTree = ""; }; 12CDF115C8E984969B1745E1B99C5D5E /* glog-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "glog-dummy.m"; sourceTree = ""; }; + 12D9F6F007EB9471C4A0E33F9D167C2D /* BugsnagCrashSentry.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagCrashSentry.m; sourceTree = ""; }; + 12FB1FD075CE4489FF614176A888A7CB /* UMModuleRegistryConsumer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMModuleRegistryConsumer.h; sourceTree = ""; }; 130335B611EDD6AFF8824641E06138D6 /* libEXVideoThumbnails.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libEXVideoThumbnails.a; path = libEXVideoThumbnails.a; sourceTree = BUILT_PRODUCTS_DIR; }; + 1306C79220C637C4B3A5DD27B752486B /* Foundation.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = Foundation.ttf; path = Fonts/Foundation.ttf; sourceTree = ""; }; 130AD96653DFB0B85D96782F91BE1413 /* SDImageCache.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageCache.m; path = SDWebImage/Core/SDImageCache.m; sourceTree = ""; }; + 1317BAA69CB885635DCB474C181AE897 /* event.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = event.cpp; sourceTree = ""; }; + 13208548F575F5B4256D6DA56C7C79DA /* UMModuleRegistryHolderReactModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMModuleRegistryHolderReactModule.h; sourceTree = ""; }; 13388D990800B736F39CED712509D8EE /* FramedReader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FramedReader.h; path = rsocket/framing/FramedReader.h; sourceTree = ""; }; + 133D5D6D11BFD245C2D50B38F5DE3339 /* RNCSafeAreaViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCSafeAreaViewManager.h; path = ios/SafeAreaView/RNCSafeAreaViewManager.h; sourceTree = ""; }; + 136AD780318D71CEC1CAD01049A43192 /* RCTUIImageViewAnimated.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTUIImageViewAnimated.h; path = Libraries/Image/RCTUIImageViewAnimated.h; sourceTree = ""; }; + 1370EFCE9426360B0A07FEE144120715 /* EXImageLoader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXImageLoader.h; path = EXImageLoader/EXImageLoader.h; sourceTree = ""; }; + 13760B5A97CDEC3F96A6319E3B671158 /* EXPermissions-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "EXPermissions-dummy.m"; sourceTree = ""; }; + 1380835923090445C46163B372DDC657 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; 13887FB8E29B4C286A4446F6D1C8E926 /* GoogleDataTransportCCTSupport.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = GoogleDataTransportCCTSupport.release.xcconfig; sourceTree = ""; }; - 1391CAE7988E836552045C7CEE132EAB /* project.pbxproj */ = {isa = PBXFileReference; includeInIndex = 1; path = project.pbxproj; sourceTree = ""; }; - 13A41C305F7690029293963F88BEFD61 /* RCTComponent.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTComponent.h; sourceTree = ""; }; + 13ACD9ADA5090986B21F242D58D5A40F /* YGNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YGNode.h; path = yoga/YGNode.h; sourceTree = ""; }; 13B132553B56176DECF6284C474251A6 /* Try.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Try.h; path = folly/Try.h; sourceTree = ""; }; - 13BE659A6BB32780BE92A7BC3C7C9B52 /* RCTNetworking.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTNetworking.h; path = Libraries/Network/RCTNetworking.h; sourceTree = ""; }; 13C8C8B254851998F9289F71229B28A2 /* libFirebaseInstallations.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libFirebaseInstallations.a; path = libFirebaseInstallations.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 13CCDB2DB6B8BD5C8770E6E735D8CA21 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; - 13D4C0A6ADE1730A37B433AEB26BA301 /* RCTPerformanceLogger.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTPerformanceLogger.h; sourceTree = ""; }; 13D80DD75B0709974E73A04CB390F73D /* BitIterator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = BitIterator.h; path = folly/container/BitIterator.h; sourceTree = ""; }; - 13DC17260854E0110731D49511FAF2D4 /* RCTRootContentView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTRootContentView.m; sourceTree = ""; }; - 13DE7CDF0865FCA5347076BF7571D525 /* RCTUITextField.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTUITextField.h; sourceTree = ""; }; - 13EEA1AA3B6103677B576AA768061BB4 /* EXWebBrowser-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "EXWebBrowser-prefix.pch"; sourceTree = ""; }; 13F876D48D3CAF83C601684F414D9FF1 /* GoogleUtilities.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = GoogleUtilities.debug.xcconfig; sourceTree = ""; }; 1406AEFDE1A4D3B267A63FF43CF1B241 /* RSocketClient.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = RSocketClient.cpp; path = rsocket/RSocketClient.cpp; sourceTree = ""; }; - 1432C6BB9FEE52615E1C14B4144900FB /* RNEventEmitter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNEventEmitter.m; path = RNNotifications/RNEventEmitter.m; sourceTree = ""; }; 144101C0AEEEB344D88EA4FEE7E49167 /* AsyncSocket.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AsyncSocket.h; path = folly/io/async/AsyncSocket.h; sourceTree = ""; }; - 14504F5E0923FCE3A204B710B6BC8118 /* Yoga.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = Yoga.modulemap; sourceTree = ""; }; + 1453AA3D21916244EA043AC1D8D0E68B /* RNCAppearanceProviderManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCAppearanceProviderManager.h; path = ios/Appearance/RNCAppearanceProviderManager.h; sourceTree = ""; }; + 1473448D95B518282D24564BECDF5F19 /* RCTImageCache.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTImageCache.m; sourceTree = ""; }; 147A0B1D3150527DDA8B90E08D5EC3B8 /* MMKVAppExtension.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = MMKVAppExtension.release.xcconfig; sourceTree = ""; }; 147AE981124964810C620F4CCECAC115 /* Pods-RocketChatRN-acknowledgements.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-RocketChatRN-acknowledgements.plist"; sourceTree = ""; }; 147BDCA90DC5E70DBCD86D079279CC22 /* Pods-ShareRocketChatRN.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-ShareRocketChatRN.debug.xcconfig"; sourceTree = ""; }; 147CF0CDE16DC97ADC53CBCC97D436B5 /* Folly.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = Folly.debug.xcconfig; sourceTree = ""; }; + 1498BD2ACEA68034CA0FB3D0DBEAEDDF /* EXWebBrowser.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXWebBrowser.m; path = EXWebBrowser/EXWebBrowser.m; sourceTree = ""; }; 14A6CF593FBE73A2A350E290B504E4F1 /* MacAddress.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MacAddress.h; path = folly/MacAddress.h; sourceTree = ""; }; 14C01FD98C5420E932FC9F461013EFC3 /* SKButtonDescriptor.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = SKButtonDescriptor.mm; path = iOS/Plugins/FlipperKitLayoutPlugin/FlipperKitLayoutPlugin/descriptors/SKButtonDescriptor.mm; sourceTree = ""; }; 14C6DE34A9B04BD83040B031CFC770D1 /* RSocketServerState.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RSocketServerState.h; path = rsocket/RSocketServerState.h; sourceTree = ""; }; - 14CB29676D814E0DEAA45EA8C904B47B /* RCTSourceCode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTSourceCode.h; path = React/CoreModules/RCTSourceCode.h; sourceTree = ""; }; 14D6573E2B8E215491914EED243DF4F1 /* SDImageGraphics.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageGraphics.h; path = SDWebImage/Core/SDImageGraphics.h; sourceTree = ""; }; 14E52C28E304F1B0A77B0DA8EF064AF0 /* FunctionScheduler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FunctionScheduler.h; path = folly/experimental/FunctionScheduler.h; sourceTree = ""; }; - 14F2DBCCF63939F5750FC51309DC6CCC /* DispatchMessageQueueThread.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = DispatchMessageQueueThread.h; sourceTree = ""; }; 14F619F27EC6BCC194E4949C5678266D /* vlog_is_on.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = vlog_is_on.cc; path = src/vlog_is_on.cc; sourceTree = ""; }; + 14FC7C467B63A006869982C7C1DFC1FA /* RCTShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTShadowView.m; sourceTree = ""; }; 14FDE41E6579BCAFF7961770163DF8CA /* Random.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = Random.cpp; path = folly/Random.cpp; sourceTree = ""; }; - 1501F319DBC9B49B8E077339A70A46AF /* BugsnagSink.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagSink.m; sourceTree = ""; }; - 150F31FD99A8C71C538F0D0D60D10127 /* RCTPicker.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTPicker.m; sourceTree = ""; }; - 15263F0050ADD74E6AE7351DBB60370C /* RNPanHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNPanHandler.h; sourceTree = ""; }; + 1514FBF9E2F5ACA5F0779042C8A6D2E5 /* React-Core.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-Core.release.xcconfig"; sourceTree = ""; }; + 15188A9990A396DDDBF42E12C6EF721D /* RNFBAnalytics-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNFBAnalytics-dummy.m"; sourceTree = ""; }; + 152285078E580B2302C262BBC8BDBB63 /* RCTTVNavigationEventEmitter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTTVNavigationEventEmitter.h; path = React/CoreModules/RCTTVNavigationEventEmitter.h; sourceTree = ""; }; + 152AB3C2E234CCADCE73213C078179BD /* react-native-document-picker-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "react-native-document-picker-prefix.pch"; sourceTree = ""; }; + 152FF61C227005E810D18BED6D345EEF /* react-native-document-picker.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "react-native-document-picker.debug.xcconfig"; sourceTree = ""; }; 154143703F771A56F60AEAC01B1781D0 /* keyvalq_struct.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = keyvalq_struct.h; path = src/event2/keyvalq_struct.h; sourceTree = ""; }; - 1555F15820E29E453831005769838B1B /* ReactCommon-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "ReactCommon-prefix.pch"; sourceTree = ""; }; - 157534A2B0421B718C5B1C4E52FFBFC3 /* RCTFrameAnimation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTFrameAnimation.m; sourceTree = ""; }; 1581C03739BE8695CA4E41A4A213FD91 /* GoogleDataTransportCCTSupport.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = GoogleDataTransportCCTSupport.debug.xcconfig; sourceTree = ""; }; 15912309AA610251329D74FA111DE5CA /* libRNLocalize.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libRNLocalize.a; path = libRNLocalize.a; sourceTree = BUILT_PRODUCTS_DIR; }; + 1592ACCCFF77D440050B899BA5BA5ED0 /* EXFileSystemLocalFileHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXFileSystemLocalFileHandler.h; path = EXFileSystem/EXFileSystemLocalFileHandler.h; sourceTree = ""; }; 1594E1D940D0C8841465B42DEFA3FA1B /* lossless.c */ = {isa = PBXFileReference; includeInIndex = 1; name = lossless.c; path = src/dsp/lossless.c; sourceTree = ""; }; 159803000B055E9C735853D85E9ABD6F /* lossless_sse2.c */ = {isa = PBXFileReference; includeInIndex = 1; name = lossless_sse2.c; path = src/dsp/lossless_sse2.c; sourceTree = ""; }; 15A80F17EFAE83359F19CB3301D8F0AA /* SDWebImageDefine.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageDefine.h; path = SDWebImage/Core/SDWebImageDefine.h; sourceTree = ""; }; 15B61FCD03DA2E21AEC3A554EDE9861B /* SysSyscall.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SysSyscall.h; path = folly/portability/SysSyscall.h; sourceTree = ""; }; 15BEACAEC37CB5497CD018285BA8ED4D /* crashlytics.nanopb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = crashlytics.nanopb.h; path = Crashlytics/Protogen/nanopb/crashlytics.nanopb.h; sourceTree = ""; }; - 15DB6119A63F2B953674A42920CFA829 /* RCTEventDispatcher.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTEventDispatcher.m; sourceTree = ""; }; + 15E9F2CF35CC04E2A708F42F319A3363 /* React-RCTText.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-RCTText.release.xcconfig"; sourceTree = ""; }; + 15F9210C803B8C538F79B6F81450930F /* REAValueNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REAValueNode.h; sourceTree = ""; }; 15FF2806A2FA1A8BA1E9F9E19A2CF205 /* FBString.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBString.h; path = folly/FBString.h; sourceTree = ""; }; - 160AEF770132CB83E79919C0160B15DC /* UMImageLoaderInterface.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = UMImageLoaderInterface.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 15FF8E66C2AADEFE4D4C020B8A6C3D1E /* UMReactNativeAdapter.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = UMReactNativeAdapter.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; 1646C0FF650E80A243E24523B702B686 /* msa_macro.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = msa_macro.h; path = src/dsp/msa_macro.h; sourceTree = ""; }; 165A5D6A943859F7AC5F5CAD7698DFB6 /* ConnectionSet.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = ConnectionSet.cpp; path = rsocket/internal/ConnectionSet.cpp; sourceTree = ""; }; - 165C875049AFFD54BF2D90A27C1F409B /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; - 169D03E9EBF659079B622BDDFCA18349 /* RNFBAnalytics.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNFBAnalytics.release.xcconfig; sourceTree = ""; }; + 165CECF72188936C82EE111426516F28 /* RNTapHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNTapHandler.m; sourceTree = ""; }; + 168D38584A334CC1075ED6E11A0146E2 /* RNDeviceInfo.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNDeviceInfo.m; path = ios/RNDeviceInfo/RNDeviceInfo.m; sourceTree = ""; }; + 169BCAFC2A880127CA3F55F3C5352981 /* RCTScrollContentViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTScrollContentViewManager.h; sourceTree = ""; }; 169D99DCFEEDF6CF638F3AB5ABAB18E9 /* lossless.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = lossless.h; path = src/dsp/lossless.h; sourceTree = ""; }; - 16A494163BFD15DCF69AF6F747C88391 /* UMConstantsInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMConstantsInterface.h; path = UMConstantsInterface/UMConstantsInterface.h; sourceTree = ""; }; 16AF4951CB167E4AC89CBF0EBE9F1FAD /* FIRLogger.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRLogger.h; path = FirebaseCore/Sources/Private/FIRLogger.h; sourceTree = ""; }; 16B075F0D892A69B9FA1F1E4D3AE22DF /* Demangle.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = Demangle.cpp; path = folly/Demangle.cpp; sourceTree = ""; }; + 16C434122E7AFD7FB0E97BE8DF9AC03E /* RCTCxxModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTCxxModule.h; sourceTree = ""; }; 16DB1707BC9908C3518722B608F5B223 /* FIRComponentType.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRComponentType.h; path = FirebaseCore/Sources/Private/FIRComponentType.h; sourceTree = ""; }; + 16E7744623DB14672C28A961D8EADD76 /* RNDeviceInfo-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNDeviceInfo-dummy.m"; sourceTree = ""; }; 16E9F31EC059F2E6FADBF7D544CCCA1D /* libReactNativeKeyboardInput.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libReactNativeKeyboardInput.a; path = libReactNativeKeyboardInput.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 1704838BFA01DE086B84967801D4C522 /* ARTCGFloatArray.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ARTCGFloatArray.h; path = ios/ARTCGFloatArray.h; sourceTree = ""; }; - 1707FE631BF1D82FC7C5F34615DA6293 /* RNFBAnalytics-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNFBAnalytics-dummy.m"; sourceTree = ""; }; + 16FCE78241F592B11B57CF463BBB48D2 /* RCTUtilsUIOverride.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTUtilsUIOverride.m; sourceTree = ""; }; 170DE10ABC42423AC407238DF71D2C88 /* DuplexConnection.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DuplexConnection.h; path = rsocket/DuplexConnection.h; sourceTree = ""; }; 170EA1256DCB7A8BFF4CE9DCA88CCF10 /* GULAppEnvironmentUtil.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULAppEnvironmentUtil.h; path = GoogleUtilities/Environment/Private/GULAppEnvironmentUtil.h; sourceTree = ""; }; - 171B38A2E9137BE249B73C8DD7650557 /* RCTSurfaceRootView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSurfaceRootView.h; sourceTree = ""; }; 172985D8CA509CD3BEAB0FC8DFBB0237 /* FirebaseAnalytics.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = FirebaseAnalytics.release.xcconfig; sourceTree = ""; }; 172E4EA66F6FA3C4E3A133F4C547335D /* Log.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Log.h; path = xplat/Flipper/Log.h; sourceTree = ""; }; 1740711C23139C0114C4B8488E76F0AF /* FIRCLSCodeMapping.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSCodeMapping.h; path = Crashlytics/Shared/FIRCLSMachO/FIRCLSCodeMapping.h; sourceTree = ""; }; - 175DC646FB21045009343C18BC975F4B /* RCTReconnectingWebSocket.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTReconnectingWebSocket.h; path = Libraries/WebSocket/RCTReconnectingWebSocket.h; sourceTree = ""; }; + 17545BA851B1DFBC2089233450EF5AA9 /* RCTTypeSafety-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RCTTypeSafety-prefix.pch"; sourceTree = ""; }; + 175A70968F69D3696ABAE351994F6E53 /* BugsnagFileStore.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagFileStore.m; sourceTree = ""; }; + 1763C60D0A0CE66E39FB0432910B2318 /* RNCAsyncStorageDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCAsyncStorageDelegate.h; path = ios/RNCAsyncStorageDelegate.h; sourceTree = ""; }; 17652CC3D1020B1A27F319034C7F6C63 /* Invoke.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Invoke.h; path = folly/functional/Invoke.h; sourceTree = ""; }; 176F21493F611F5287867F3BBAEDF283 /* FIRCLSSymbolicationOperation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCLSSymbolicationOperation.m; path = Crashlytics/Crashlytics/Operations/Symbolication/FIRCLSSymbolicationOperation.m; sourceTree = ""; }; - 17762E112CF7FDA3FF991A591EE56FC3 /* RNFBCrashlytics.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNFBCrashlytics.release.xcconfig; sourceTree = ""; }; 17772905A5DCAAE05D22C2CC78ABB63D /* libReactNativeKeyboardTrackingView.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libReactNativeKeyboardTrackingView.a; path = libReactNativeKeyboardTrackingView.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 17A1201A1B1373C0D4D869949DD6DC1D /* BSG_KSCrashDoctor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashDoctor.h; sourceTree = ""; }; + 177C58289CCB8340F454EFD21A4267DE /* RCTRootViewDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTRootViewDelegate.h; sourceTree = ""; }; 17A7DBE9DC87F5C81E3903AB4A98AE86 /* AsyncTimeout.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = AsyncTimeout.cpp; path = folly/io/async/AsyncTimeout.cpp; sourceTree = ""; }; + 17AB22E4FF65EEC008990CA61A55310A /* react-native-background-timer-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "react-native-background-timer-prefix.pch"; sourceTree = ""; }; 17C5C1254E18A45E76E2A7930DDDF167 /* strtod.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = strtod.cc; path = "double-conversion/strtod.cc"; sourceTree = ""; }; - 17C6B8E82996223DC96A44FA24D60F06 /* RCTJSStackFrame.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTJSStackFrame.m; sourceTree = ""; }; - 17CA2A15F132AD8F57DDE3E9D6AF1E11 /* UMNativeModulesProxy.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMNativeModulesProxy.h; sourceTree = ""; }; 17D5D96A5D5DB15988EECE23ADDC378C /* SysStat.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SysStat.h; path = folly/portability/SysStat.h; sourceTree = ""; }; 180B5A25AD0875E50337E7AED56B3FC7 /* Folly-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Folly-dummy.m"; sourceTree = ""; }; + 181E97046A4BEE5B6B92EF971D0CD2AE /* RCTImageEditingManager.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTImageEditingManager.mm; sourceTree = ""; }; 18343429EC371A0D798414A686989445 /* SonarKitNetworkPlugin+CPPInitialization.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "SonarKitNetworkPlugin+CPPInitialization.h"; path = "iOS/Plugins/FlipperKitNetworkPlugin/FlipperKitNetworkPlugin/SonarKitNetworkPlugin+CPPInitialization.h"; sourceTree = ""; }; - 1840C8EC140BE053111A6398B51C3200 /* QBVideoIndicatorView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = QBVideoIndicatorView.m; path = ios/QBImagePicker/QBImagePicker/QBVideoIndicatorView.m; sourceTree = ""; }; - 18655F332376A6C0A76D021BA7F31217 /* RNGestureHandlerState.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNGestureHandlerState.h; path = ios/RNGestureHandlerState.h; sourceTree = ""; }; + 186DAA847ADDDA4FCE625E3A62D12BC8 /* RCTTransformAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTransformAnimatedNode.h; sourceTree = ""; }; 187319D1797E7B7B488AB5426C9483C0 /* SDWeakProxy.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWeakProxy.h; path = SDWebImage/Private/SDWeakProxy.h; sourceTree = ""; }; - 18789E868EC609FF031C4FF9E7A205F2 /* React-RCTSettings-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-RCTSettings-prefix.pch"; sourceTree = ""; }; 187E87502130366CEDEE391457285975 /* GULHeartbeatDateStorage.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULHeartbeatDateStorage.h; path = GoogleUtilities/Environment/Private/GULHeartbeatDateStorage.h; sourceTree = ""; }; 1888FA74262945412C925AC57AC0924D /* Pods-RocketChatRN-frameworks.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-RocketChatRN-frameworks.sh"; sourceTree = ""; }; 188AAF0E2A8507CAA00770FC50A0A6D9 /* srp.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = srp.h; path = ios/include/openssl/srp.h; sourceTree = ""; }; + 18956606EBD6845E159A386DDE4E058E /* 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; }; 1895FF20474DD5D4B240DC2E8AD0B961 /* YogaKit-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "YogaKit-umbrella.h"; sourceTree = ""; }; + 189631C628859E4658BE8042210DB85E /* RCTTouchHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTTouchHandler.m; sourceTree = ""; }; 189C1F7D18C017CBF6C9E71491B371D9 /* err.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = err.h; path = ios/include/openssl/err.h; sourceTree = ""; }; 18A13DCC135781C94C0CF101CD05E3F3 /* FlipperCppBridgingResponder.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = FlipperCppBridgingResponder.mm; path = iOS/FlipperKit/CppBridge/FlipperCppBridgingResponder.mm; sourceTree = ""; }; + 18A6F6191B6BB7A9F68ED627E36E0403 /* RCTConvert+RNNotifications.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "RCTConvert+RNNotifications.h"; path = "RNNotifications/RCTConvert+RNNotifications.h"; sourceTree = ""; }; + 18ABAE27442876292334E0FFA745E1DB /* RCTDiffClampAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTDiffClampAnimatedNode.h; sourceTree = ""; }; 18AC4670DD43EE89F57C05872BB5D2E3 /* TcpDuplexConnection.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = TcpDuplexConnection.cpp; path = rsocket/transports/tcp/TcpDuplexConnection.cpp; sourceTree = ""; }; 18B4A2F730A71DC95AD052A05C77F01F /* FIRCLSURLSessionUploadTask.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSURLSessionUploadTask.h; path = Crashlytics/Crashlytics/FIRCLSURLSession/Tasks/FIRCLSURLSessionUploadTask.h; sourceTree = ""; }; 18C0993205E2FC51861E4E74D88F0386 /* AsyncGeneratorShim.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AsyncGeneratorShim.h; path = yarpl/flowable/AsyncGeneratorShim.h; sourceTree = ""; }; 18D0B14CB21D552A9902E8BE99F064A5 /* FIRInstallationsHTTPError.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstallationsHTTPError.m; path = FirebaseInstallations/Source/Library/Errors/FIRInstallationsHTTPError.m; sourceTree = ""; }; 18D0B1E13C69654196028DD6EDCC3452 /* libRNFBApp.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libRNFBApp.a; path = libRNFBApp.a; sourceTree = BUILT_PRODUCTS_DIR; }; 18E4E0618B189BF1F1B0F02FA592A47D /* F14Table.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = F14Table.cpp; path = folly/container/detail/F14Table.cpp; sourceTree = ""; }; - 18ECC5D3A0E19C8299925BE0DA146E03 /* ReactNativeShareExtension.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ReactNativeShareExtension.h; path = ios/ReactNativeShareExtension.h; sourceTree = ""; }; - 18F15888BFDDF2FB46513A5BA7EA613E /* RCTInputAccessoryShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTInputAccessoryShadowView.h; sourceTree = ""; }; + 19153D097CD7D2C239B4CDB0599A8D64 /* UMLogHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMLogHandler.h; sourceTree = ""; }; 1917B88D75689E8876B6520174F6EB97 /* UIImageView+WebCache.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIImageView+WebCache.m"; path = "SDWebImage/Core/UIImageView+WebCache.m"; sourceTree = ""; }; - 19222004B82B95179F0AD56041CA0F2A /* UMCore-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "UMCore-dummy.m"; sourceTree = ""; }; + 1919D4695751A83FBE052BBA9998B780 /* ARTShapeManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = ARTShapeManager.h; sourceTree = ""; }; 1937A7452A3C0AC9EDC3543CCD8F6484 /* yuv_sse41.c */ = {isa = PBXFileReference; includeInIndex = 1; name = yuv_sse41.c; path = src/dsp/yuv_sse41.c; sourceTree = ""; }; 1942676D70CFCB685C06399F6540B1D4 /* GDTCCTNanopbHelpers.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCCTNanopbHelpers.h; path = GoogleDataTransportCCTSupport/GDTCCTLibrary/Private/GDTCCTNanopbHelpers.h; sourceTree = ""; }; - 195D57C1FDD7157567742C3B29C9148F /* REAJSCallNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REAJSCallNode.h; sourceTree = ""; }; - 1992F6EEFEAC307A87A495787C244ADD /* RNCCameraRollManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCCameraRollManager.m; path = ios/RNCCameraRollManager.m; sourceTree = ""; }; + 19775B292FBC33D8E72DE17AB66B8048 /* REAJSCallNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REAJSCallNode.h; sourceTree = ""; }; + 1996D3629424831EF5298F79630FB91A /* EXConstantsService.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXConstantsService.m; path = EXConstants/EXConstantsService.m; sourceTree = ""; }; 19A51701C91E692C478F8575254A50AC /* F14MapFallback.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = F14MapFallback.h; path = folly/container/detail/F14MapFallback.h; sourceTree = ""; }; - 19A82C65D20BC59DF5114BAFE3F18810 /* pl.lproj */ = {isa = PBXFileReference; includeInIndex = 1; name = pl.lproj; path = ios/QBImagePicker/QBImagePicker/pl.lproj; sourceTree = ""; }; - 19A88C10610D50662B932BCDFD19B609 /* BugsnagFileStore.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagFileStore.h; sourceTree = ""; }; - 19AA7A1C7A54F2CDF0D9ED234CA46358 /* RNFBPreferences.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNFBPreferences.m; path = ios/RNFBApp/RNFBPreferences.m; sourceTree = ""; }; - 19ABD26097A488C817B74BF4E757A868 /* ARTRenderableManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = ARTRenderableManager.m; sourceTree = ""; }; + 19A6E450ED992CDA89F06974AEC38E43 /* EXVideoThumbnails.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = EXVideoThumbnails.release.xcconfig; sourceTree = ""; }; 19E3E2F80B0678F1C170F3A41784526C /* UIColor+SKSonarValueCoder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIColor+SKSonarValueCoder.h"; path = "iOS/Plugins/FlipperKitLayoutPlugin/FlipperKitLayoutPlugin/UIColor+SKSonarValueCoder.h"; sourceTree = ""; }; + 19F477349FD2D794BE96B2CD391FD731 /* ReactNativeShareExtension.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = ReactNativeShareExtension.m; path = ios/ReactNativeShareExtension.m; sourceTree = ""; }; 1A0C2324472838D2CD186B6034CDB790 /* FutureExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FutureExecutor.h; path = folly/executors/FutureExecutor.h; sourceTree = ""; }; 1A153D979AB35844103EF2D0015FFE7F /* Overload.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Overload.h; path = folly/Overload.h; sourceTree = ""; }; 1A1551993C495CED13DC4CDB275A213C /* FramedReader.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = FramedReader.cpp; path = rsocket/framing/FramedReader.cpp; sourceTree = ""; }; - 1A4B5F865AFB2739B350B643C913D14E /* React-RCTImage-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-RCTImage-prefix.pch"; sourceTree = ""; }; - 1A6B8A76588B050F37838D0473CF9A6C /* BugsnagBreadcrumb.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagBreadcrumb.m; sourceTree = ""; }; + 1A3541823C7111D0BE86D2903E0A7BE6 /* RCTFileRequestHandler.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTFileRequestHandler.mm; sourceTree = ""; }; + 1A6DB46779E29DB2464654BA3618F2D8 /* ARTTextManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = ARTTextManager.m; sourceTree = ""; }; 1A6F9CCB44759262D04CE2A22C1AB1FB /* nanopb-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "nanopb-dummy.m"; sourceTree = ""; }; 1A706E3D75EE13566AA1BB2D4C1FF5C4 /* CacheLocality.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CacheLocality.h; path = folly/concurrency/CacheLocality.h; sourceTree = ""; }; 1A7680062F22F4745F5BE8D384CD6260 /* MiniPBCoder.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = MiniPBCoder.cpp; path = Core/MiniPBCoder.cpp; sourceTree = ""; }; - 1A9107FC3F4CEAEA3FCC427E9402BEDA /* RCTSurfaceHostingProxyRootView.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTSurfaceHostingProxyRootView.mm; sourceTree = ""; }; + 1A8F4B45E99C3EC1D2801E55BC49FC17 /* RCTSubtractionAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSubtractionAnimatedNode.m; sourceTree = ""; }; 1A966C2CDD7579B225F47BC2239EB02F /* quant.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = quant.h; path = src/dsp/quant.h; sourceTree = ""; }; - 1AA015F5428D10F6DEC0993B6F7B7009 /* RNCWebView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCWebView.h; path = apple/RNCWebView.h; sourceTree = ""; }; 1AA5BB944A0D64D02A3687D8A39FD262 /* HazptrDomain.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = HazptrDomain.h; path = folly/synchronization/HazptrDomain.h; sourceTree = ""; }; + 1AA6229619C534AF55FA40D24BA5F883 /* React-RCTLinking-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-RCTLinking-dummy.m"; sourceTree = ""; }; + 1AA8A91C60BA6671113A4594AEE98240 /* RCTConvert+ART.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "RCTConvert+ART.m"; path = "ios/RCTConvert+ART.m"; sourceTree = ""; }; 1AAD56FF574E284F5AFAE7608EA372EC /* HHWheelTimer.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = HHWheelTimer.cpp; path = folly/io/async/HHWheelTimer.cpp; sourceTree = ""; }; 1AB3FE2A17BEDABCF0D67499A4E02A4F /* RSocket.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = RSocket.cpp; path = rsocket/RSocket.cpp; sourceTree = ""; }; - 1ABF16CB3517F42488E18B40B3754435 /* RCTI18nManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTI18nManager.h; path = React/CoreModules/RCTI18nManager.h; sourceTree = ""; }; + 1AB730AA47D1B6D33939F2F91C0C1735 /* RCTObjcExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTObjcExecutor.h; sourceTree = ""; }; 1ADD7810C6DF1440631D2AA8C8C12E13 /* TOCropViewController-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "TOCropViewController-dummy.m"; sourceTree = ""; }; - 1ADE52A64FCBC1A4E3AF6DA3B109A369 /* RCTMultipartStreamReader.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTMultipartStreamReader.m; sourceTree = ""; }; - 1AE31F037F1E36CF47AF8B257751AA55 /* TurboModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TurboModule.h; path = turbomodule/core/TurboModule.h; sourceTree = ""; }; - 1AE7D0739FA5806E6F14673765F78C79 /* React-jsinspector.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-jsinspector.release.xcconfig"; sourceTree = ""; }; 1AF5D3EC1100F113CC3D3F0470618427 /* fa.lproj */ = {isa = PBXFileReference; includeInIndex = 1; name = fa.lproj; path = "Objective-C/TOCropViewController/Resources/fa.lproj"; sourceTree = ""; }; - 1B29FE125F86A52CEC396A449E54AAB9 /* RCTMultilineTextInputViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTMultilineTextInputViewManager.m; sourceTree = ""; }; + 1AFF22FB1084BC1D0400D1DE8A080001 /* RCTRefreshControlManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTRefreshControlManager.h; sourceTree = ""; }; 1B32C813FCD1F6971FA1A058EAC37DC9 /* TcpDuplexConnection.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TcpDuplexConnection.h; path = rsocket/transports/tcp/TcpDuplexConnection.h; sourceTree = ""; }; + 1B3992AF1B85A8F16608E275651353E3 /* UMFaceDetectorInterface.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMFaceDetectorInterface.release.xcconfig; sourceTree = ""; }; 1B3E342EAF652660551C85D45C60C4C3 /* FBLPromise+Wrap.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "FBLPromise+Wrap.m"; path = "Sources/FBLPromises/FBLPromise+Wrap.m"; sourceTree = ""; }; 1B3FCA272A3DFBC42DEEA24756A4472A /* EventBaseThread.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EventBaseThread.h; path = folly/io/async/EventBaseThread.h; sourceTree = ""; }; - 1B4BE88B476F9BF18B1EB4988958D7CF /* EXAudioRecordingPermissionRequester.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXAudioRecordingPermissionRequester.m; path = EXAV/EXAudioRecordingPermissionRequester.m; sourceTree = ""; }; + 1B557278197DE57EA74BF48C60BB2D68 /* UMAppLoader.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMAppLoader.debug.xcconfig; sourceTree = ""; }; + 1B8513CD935F79A6758B932AC79ACB93 /* UMBarCodeScannerInterface.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMBarCodeScannerInterface.release.xcconfig; sourceTree = ""; }; + 1B909F75B55B78AED9EF7A2C9DAF3CE0 /* BugsnagPlugin.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagPlugin.h; sourceTree = ""; }; + 1BAAEFED317DFDF0BEC292644471A471 /* REATransitionManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REATransitionManager.h; sourceTree = ""; }; 1BAC394FB94FD235D2C93E53AEFFE515 /* FIRCLSAsyncOperation_Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSAsyncOperation_Private.h; path = Crashlytics/Crashlytics/Operations/FIRCLSAsyncOperation_Private.h; sourceTree = ""; }; - 1BAE84229D35B43443334AD1D87BD621 /* LongLivedObject.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = LongLivedObject.h; path = turbomodule/core/LongLivedObject.h; sourceTree = ""; }; - 1BBB24CA1832696C3E346DCBB17EEECB /* RNDocumentPicker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNDocumentPicker.h; path = ios/RNDocumentPicker/RNDocumentPicker.h; sourceTree = ""; }; - 1BC3F2740B073A772939D6504C8CE0A4 /* LICENSE.md */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE.md; sourceTree = ""; }; - 1BC9CB7B045CE844691F03CAE351A04D /* FBLazyVector.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBLazyVector.h; path = FBLazyVector/FBLazyVector.h; sourceTree = ""; }; 1BCBA980A13E88667208D6B5240409E1 /* PriorityThreadFactory.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PriorityThreadFactory.h; path = folly/executors/thread_factory/PriorityThreadFactory.h; sourceTree = ""; }; + 1BDC53BE56E2FAD7A13C39E18F650CAF /* UMErrorCodes.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMErrorCodes.h; path = UMCore/UMErrorCodes.h; sourceTree = ""; }; + 1BE24326339EA5D793FFC93396F5A933 /* JSCExecutorFactory.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = JSCExecutorFactory.mm; sourceTree = ""; }; + 1C0848D5A04E38224699DC9B7823DE29 /* UMCore.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMCore.debug.xcconfig; sourceTree = ""; }; 1C2D2CBA9EA90FFED579FBA1865DA44B /* nanopb.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = nanopb.release.xcconfig; sourceTree = ""; }; - 1C34E365003A2E9CEC40FFFB2D0F621A /* RCTView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTView.h; sourceTree = ""; }; - 1C44DCB2276F1187E5C4D51085144927 /* EXLocalAuthentication-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "EXLocalAuthentication-dummy.m"; sourceTree = ""; }; - 1C49D74D57313D0A9739A2DD5DB57CFF /* RCTKeyboardObserver.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTKeyboardObserver.mm; sourceTree = ""; }; 1C54E2024A58E50FF56C28D2288AA2E0 /* SysUio.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = SysUio.cpp; path = folly/portability/SysUio.cpp; sourceTree = ""; }; - 1C6ACE4E4DFE257A04FBBBD84F6F6E9E /* RCTView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTView.m; sourceTree = ""; }; + 1C7BBD0C8EB2D2875B6E17063539A218 /* Yoga.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = Yoga.cpp; path = yoga/Yoga.cpp; sourceTree = ""; }; 1C93D5B59C2FF4DC3E07CCD8D7EB844B /* GoogleAppMeasurement.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = GoogleAppMeasurement.debug.xcconfig; sourceTree = ""; }; 1CB0228004BDF55526EF77A96B5DE9C1 /* BaselinesAsyncSocket.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = BaselinesAsyncSocket.cpp; path = rsocket/benchmarks/BaselinesAsyncSocket.cpp; sourceTree = ""; }; + 1CB8B41FF44F17347FE529F0BF24AE17 /* REASetNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REASetNode.h; sourceTree = ""; }; 1CBCD274CE6130A2ADD36622E909A653 /* Format.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Format.h; path = folly/Format.h; sourceTree = ""; }; 1CC728135D062FD542E1642F6D3CFC90 /* Future-pre.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "Future-pre.h"; path = "folly/futures/Future-pre.h"; sourceTree = ""; }; - 1CD39A256D86B123C40027930CB1D817 /* RCTUtils.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTUtils.m; sourceTree = ""; }; - 1CDB7565B8CB41198F2CCE761B6460E3 /* RCTConvert.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTConvert.h; sourceTree = ""; }; - 1CDE50EA2C2F3D84048A4674DC950D74 /* RCTScrollContentShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTScrollContentShadowView.h; sourceTree = ""; }; 1D03BE39E1D34EB361F341CDBCE0EC8B /* ThreadedExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ThreadedExecutor.h; path = folly/executors/ThreadedExecutor.h; sourceTree = ""; }; - 1D2C2930D49F43DFFB1B58B951B9A649 /* YGStyle.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YGStyle.h; path = yoga/YGStyle.h; sourceTree = ""; }; 1D2D281233B93C81791D7901BD3F2964 /* FIRCLSInternalReport.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSInternalReport.h; path = Crashlytics/Crashlytics/Models/FIRCLSInternalReport.h; sourceTree = ""; }; + 1D2E42F38790ADB9266E27984F40DF2B /* EXFileSystem.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXFileSystem.h; path = EXFileSystem/EXFileSystem.h; sourceTree = ""; }; + 1D2FB4BA6EB58E9957A9B89A188AC154 /* rn-extensions-share-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "rn-extensions-share-dummy.m"; sourceTree = ""; }; 1D33CC779D89B078E3BCE411E5728460 /* EnableSharedFromThis.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EnableSharedFromThis.h; path = folly/memory/EnableSharedFromThis.h; sourceTree = ""; }; - 1D35B8F90C4B0C183884AE2D6077C005 /* KeyCommands.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = KeyCommands.release.xcconfig; sourceTree = ""; }; + 1D6C6244700B527CBC318758B65B81C8 /* react-native-cookies.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "react-native-cookies.debug.xcconfig"; sourceTree = ""; }; + 1D6E3201AE259415F5A9F8E59B3AD6A2 /* RCTDevLoadingView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTDevLoadingView.h; path = React/CoreModules/RCTDevLoadingView.h; sourceTree = ""; }; 1D7CBF06506FC0C5E499836B0E8DC898 /* Pods-NotificationService-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Pods-NotificationService-dummy.m"; sourceTree = ""; }; - 1D9376156616C8FA56B743E4A3F73513 /* EXConstantsService.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXConstantsService.m; path = EXConstants/EXConstantsService.m; sourceTree = ""; }; + 1D812D9B141E45485A16077001C2371A /* REAPropsNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REAPropsNode.m; sourceTree = ""; }; + 1D8D36404A4931903010BBF9C9AB890A /* React-RCTSettings-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-RCTSettings-dummy.m"; sourceTree = ""; }; + 1D9BD610EC7E9A2C0043A8CA1E22A9D1 /* RCTInputAccessoryView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTInputAccessoryView.h; sourceTree = ""; }; 1DAA23231DAB08A0DD9D85E02F043AA6 /* String.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = String.cpp; path = folly/portability/String.cpp; sourceTree = ""; }; + 1DD971E56B60DD2C8BAFC21B6F3C2D2B /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; 1DDBFA43E5FEA69E2EE892A2AE4B33AF /* FIRStackFrame.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRStackFrame.m; path = Crashlytics/Crashlytics/FIRStackFrame.m; sourceTree = ""; }; - 1DDFF192969E5F39CBE160C9D07FF0A7 /* UMImageLoaderInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMImageLoaderInterface.h; path = UMImageLoaderInterface/UMImageLoaderInterface.h; sourceTree = ""; }; + 1DE5D6F059D9DA87F5CCB88A98789EFC /* RNDateTimePicker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNDateTimePicker.h; path = ios/RNDateTimePicker.h; sourceTree = ""; }; + 1DED3251A30B105D2548A9613D5B28EA /* RCTReloadCommand.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTReloadCommand.m; sourceTree = ""; }; + 1DF95089FEB8EE5AFFCEFD1085BCB730 /* RNCSafeAreaViewLocalData.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCSafeAreaViewLocalData.h; path = ios/SafeAreaView/RNCSafeAreaViewLocalData.h; sourceTree = ""; }; 1E038CC21A6ADE42B2F2439769668BD7 /* ChannelRequester.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = ChannelRequester.cpp; path = rsocket/statemachine/ChannelRequester.cpp; sourceTree = ""; }; - 1E098669008D834D746C72C165990C67 /* JSCExecutorFactory.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = JSCExecutorFactory.mm; sourceTree = ""; }; 1E12A3CC6A1AB9AAFDE508C8D7D08945 /* CocoaAsyncSocket-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "CocoaAsyncSocket-prefix.pch"; sourceTree = ""; }; + 1E1C2C4244877057C8EF07689B58B137 /* RCTConvert+FIRApp.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "RCTConvert+FIRApp.m"; path = "ios/RNFBApp/RCTConvert+FIRApp.m"; sourceTree = ""; }; 1E24704F1B43C47872C83FA3EF020D63 /* SKNamed.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = SKNamed.mm; path = iOS/Plugins/FlipperKitLayoutPlugin/FlipperKitLayoutPlugin/SKNamed.mm; sourceTree = ""; }; - 1E39BD45138B9D64B9B931FE16A1DC79 /* RCTInputAccessoryViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTInputAccessoryViewManager.h; sourceTree = ""; }; - 1E3F85E2699763383E840DB66FE280F3 /* react-native-webview.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "react-native-webview.debug.xcconfig"; sourceTree = ""; }; - 1E401050B6E345CA57EA75CA7F1B7F83 /* BSG_KSCrashIdentifier.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BSG_KSCrashIdentifier.m; sourceTree = ""; }; + 1E343992E1FAC98C935CAFF46CCCCF32 /* RNFBSharedUtils.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNFBSharedUtils.m; path = ios/RNFBApp/RNFBSharedUtils.m; sourceTree = ""; }; + 1E45F82FEADDDB60B0FB36E6274AD585 /* RCTVirtualTextShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTVirtualTextShadowView.h; sourceTree = ""; }; 1E526059DE298C4026C050A54B2D6EA6 /* TOCroppedImageAttributes.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = TOCroppedImageAttributes.m; path = "Objective-C/TOCropViewController/Models/TOCroppedImageAttributes.m"; sourceTree = ""; }; 1E56CE9021435E07FAA058AEC9A2529B /* AtomicNotification.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AtomicNotification.h; path = folly/synchronization/AtomicNotification.h; sourceTree = ""; }; 1E7ED01554864BF8265C2F62B2AB1689 /* RSocketStats.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RSocketStats.h; path = rsocket/RSocketStats.h; sourceTree = ""; }; - 1E96054DFD340F0B512E53F8C3CF31F3 /* EXPermissions.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXPermissions.m; path = EXPermissions/EXPermissions.m; sourceTree = ""; }; - 1E9B6FAAB475D7894E7744678258A6D6 /* BugsnagCrashSentry.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagCrashSentry.h; sourceTree = ""; }; + 1E839DEBB6721E5C36DBBB66B4BA2DF5 /* api.md */ = {isa = PBXFileReference; includeInIndex = 1; name = api.md; path = docs/api.md; sourceTree = ""; }; + 1E8F60E9F04E72F87227CA2A8BEED97C /* RNImageCropPicker-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNImageCropPicker-dummy.m"; sourceTree = ""; }; + 1E9A0DF777E7551F1861824A97D82460 /* UMCameraInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMCameraInterface.h; path = UMCameraInterface/UMCameraInterface.h; sourceTree = ""; }; 1EA0409148B59D082372AAE9C1784E37 /* SDmetamacros.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDmetamacros.h; path = SDWebImage/Private/SDmetamacros.h; sourceTree = ""; }; 1EA4B2885A0007DEB2C35082014F4ED0 /* SKTapListenerImpl.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SKTapListenerImpl.m; path = iOS/Plugins/FlipperKitLayoutPlugin/FlipperKitLayoutPlugin/SKTapListenerImpl.m; sourceTree = ""; }; + 1EA9C762A351B70116596A2E7CB74C77 /* RCTRequired.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTRequired.h; path = RCTRequired/RCTRequired.h; sourceTree = ""; }; 1EABEB5B0ED4B2FF486465703D6185F2 /* FBLPromise+All.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FBLPromise+All.h"; path = "Sources/FBLPromises/include/FBLPromise+All.h"; sourceTree = ""; }; 1EAE339C1344DA746DDEC8CFD59BF5AC /* FIRCLSBinaryImage.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSBinaryImage.h; path = Crashlytics/Crashlytics/Components/FIRCLSBinaryImage.h; sourceTree = ""; }; - 1ED5113556EDEA9A3BADC47429DE2171 /* RCTSourceCode.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTSourceCode.mm; sourceTree = ""; }; + 1EE0AC1E1F22C30D36B89A4E7D4B2975 /* RCTModuleMethod.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTModuleMethod.mm; sourceTree = ""; }; 1EE56E1ED3667A5E18BCC2A966F68318 /* FBLPromise+Reduce.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FBLPromise+Reduce.h"; path = "Sources/FBLPromises/include/FBLPromise+Reduce.h"; sourceTree = ""; }; 1EF2BA687545FFAD96B628E428424C36 /* IPAddressV4.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = IPAddressV4.h; path = folly/IPAddressV4.h; sourceTree = ""; }; 1EF843E5552E2BB730DFBFD2EB0CCA76 /* des_old.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = des_old.h; path = ios/include/openssl/des_old.h; sourceTree = ""; }; - 1F06B9289CD38CD20D09F965A84E1F92 /* UMFontInterface.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMFontInterface.release.xcconfig; sourceTree = ""; }; + 1F0A457BA1B534C2D66A37D6CEAEDCE0 /* NSDataBigString.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = NSDataBigString.mm; sourceTree = ""; }; + 1F161F4847E6A08FD89C0690394D5246 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; 1F2CA285C0A6E2486013BAF599AA9B58 /* SlowFingerprint.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SlowFingerprint.h; path = folly/detail/SlowFingerprint.h; sourceTree = ""; }; - 1F8095A28ECC27ECAFF09D8B4157F95C /* BSG_KSCrashSentry.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashSentry.h; sourceTree = ""; }; - 1FAE1DED76F1FEADC50895673E572B86 /* react-native-orientation-locker-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "react-native-orientation-locker-dummy.m"; sourceTree = ""; }; + 1F36DED43E9E5069A7212B9596A46DB4 /* RCTLinkingPlugins.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTLinkingPlugins.h; path = Libraries/LinkingIOS/RCTLinkingPlugins.h; sourceTree = ""; }; + 1F4BB69159BA2D58EB20DE06F56D7C88 /* FBReactNativeSpec-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "FBReactNativeSpec-prefix.pch"; sourceTree = ""; }; + 1F94AC55D7DB04DD2126D714E8F0526C /* RNCWebView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCWebView.m; path = apple/RNCWebView.m; sourceTree = ""; }; + 1FA083C52BE41BD164D10B6C4FCA9721 /* RCTImageBlurUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageBlurUtils.h; path = Libraries/Image/RCTImageBlurUtils.h; sourceTree = ""; }; + 1FB8B81346229A35FFC8613A8CCB527F /* RNFBMeta.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNFBMeta.m; path = ios/RNFBApp/RNFBMeta.m; sourceTree = ""; }; + 1FE852AD4A00AD90F2F8490F4A630BF0 /* Yoga.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = Yoga.debug.xcconfig; sourceTree = ""; }; 1FEEE13E5F6B5E2C02CD4F4BA783D628 /* HazptrUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = HazptrUtils.h; path = folly/synchronization/detail/HazptrUtils.h; sourceTree = ""; }; 1FF23D93A87E9997852AAF4CB31C4A8C /* ko.lproj */ = {isa = PBXFileReference; includeInIndex = 1; name = ko.lproj; path = "Objective-C/TOCropViewController/Resources/ko.lproj"; sourceTree = ""; }; - 1FF42A80F80327EFF19C442895701E4F /* react-native-safe-area-context-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "react-native-safe-area-context-prefix.pch"; sourceTree = ""; }; - 20083FCD33955CBF680506B2DA0CA847 /* REAOperatorNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REAOperatorNode.h; sourceTree = ""; }; - 2011F6C1CC56078ADC0A9D6F4BED7B69 /* RNCSafeAreaShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCSafeAreaShadowView.h; path = ios/SafeAreaView/RNCSafeAreaShadowView.h; sourceTree = ""; }; + 1FFB1EF336EF34B57AFE3F89A4A61682 /* UMAppRecordInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMAppRecordInterface.h; sourceTree = ""; }; + 200DE445014A44C9F9D4B2F83F737F11 /* RNNotifications.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNNotifications.h; path = RNNotifications/RNNotifications.h; sourceTree = ""; }; 2024B1BB04C689EF0F6D537E234FB04B /* util.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = util.h; path = src/event2/util.h; sourceTree = ""; }; 202722AA0D229A11350F6DC0F267A0BA /* libRNBootSplash.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libRNBootSplash.a; path = libRNBootSplash.a; sourceTree = BUILT_PRODUCTS_DIR; }; 2033EAA4F936C298EA59D434BB594FB2 /* SparseByteSet.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SparseByteSet.h; path = folly/container/SparseByteSet.h; sourceTree = ""; }; + 203ADEB243DDF0066313450E8FB412BD /* BugsnagNotifier.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagNotifier.m; sourceTree = ""; }; 204AA1F34D0CD579FA1FEA2882DBC382 /* Time.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Time.h; path = folly/portability/Time.h; sourceTree = ""; }; 204BF9F230931D6B8A99E4488DD5A2C0 /* openssl_md5_locl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = openssl_md5_locl.h; path = Core/aes/openssl/openssl_md5_locl.h; sourceTree = ""; }; 2060D26E0317CE676D424E22009E7555 /* cmac.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = cmac.h; path = ios/include/openssl/cmac.h; sourceTree = ""; }; @@ -7117,140 +7085,116 @@ 208B4E659AB8A1C35128F4A68ED6CB67 /* SKTouch.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SKTouch.h; path = iOS/Plugins/FlipperKitLayoutPlugin/FlipperKitLayoutPlugin/SKTouch.h; sourceTree = ""; }; 2092880DC576AC0B9FD739B2CF2DB729 /* AsyncUDPSocket.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = AsyncUDPSocket.cpp; path = folly/io/async/AsyncUDPSocket.cpp; sourceTree = ""; }; 20953006648FCA7D3E6AB8BFB0E02E4A /* JemallocHugePageAllocator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = JemallocHugePageAllocator.h; path = folly/experimental/JemallocHugePageAllocator.h; sourceTree = ""; }; - 209B08A2B00CCB936D9927233C013307 /* BSG_KSFileUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSFileUtils.h; sourceTree = ""; }; 209D16DF7BE26200292E3AF53D619384 /* firebasecore.nanopb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = firebasecore.nanopb.h; path = Firebase/CoreDiagnostics/FIRCDLibrary/Protogen/nanopb/firebasecore.nanopb.h; sourceTree = ""; }; 209E7C68D889E228DBA3424F426809E6 /* random_utils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = random_utils.h; path = src/utils/random_utils.h; sourceTree = ""; }; + 20A49CA9DE94DFE86B4BA259A03AA132 /* RCTAdditionAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTAdditionAnimatedNode.h; sourceTree = ""; }; 20EAB90EF822713B7D8AB265ED3C7BB0 /* FIRCLSLogger.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSLogger.h; path = Crashlytics/Crashlytics/Helpers/FIRCLSLogger.h; sourceTree = ""; }; 21174BB77457E4F7273613A16BB08744 /* YGLayout.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = YGLayout.m; path = YogaKit/Source/YGLayout.m; sourceTree = ""; }; + 212E87F4E56036CBA470C4BD58DFFB23 /* RNVectorIcons.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNVectorIcons.debug.xcconfig; sourceTree = ""; }; 213357BE51F85CA354F34E93E29CA4A5 /* PTUSBHub.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = PTUSBHub.m; path = peertalk/PTUSBHub.m; sourceTree = ""; }; 2147009ACA77C71C0042CE90F8F9FC1D /* GDTCORTransformer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCORTransformer.h; path = GoogleDataTransport/GDTCORLibrary/Private/GDTCORTransformer.h; sourceTree = ""; }; - 216AFA1AEF9D705AC54D210237DE10EF /* RCTSurfaceRootView.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTSurfaceRootView.mm; sourceTree = ""; }; + 215F110BC3E8F5FFB49CB62DA9EA5C88 /* RNCAsyncStorage.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCAsyncStorage.h; path = ios/RNCAsyncStorage.h; sourceTree = ""; }; 21717E3C7228C968D72955CB29D078F3 /* StreamResponder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = StreamResponder.h; path = rsocket/statemachine/StreamResponder.h; sourceTree = ""; }; 217BCA3060C1EB4F73E25CBBAAAE9633 /* Promise-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "Promise-inl.h"; path = "folly/futures/Promise-inl.h"; sourceTree = ""; }; + 217E2944D2DCF8DE519D0192E0A9E44D /* 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; }; + 2181B6496948B00951555D7B00482551 /* REATransformNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REATransformNode.m; sourceTree = ""; }; 2187EE7FD2E6F6DDD7C64F9F46B17BBA /* vp8_dec.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = vp8_dec.h; path = src/dec/vp8_dec.h; sourceTree = ""; }; - 2188A85B4A309F414FC01E664E37F683 /* RCTDevLoadingViewSetEnabled.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTDevLoadingViewSetEnabled.m; sourceTree = ""; }; - 21A289577DDEDFA5253CECFFD3E75F88 /* RCTBridgeModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBridgeModule.h; sourceTree = ""; }; - 21AD3D8C3CE74761E6C014B0471120B6 /* RCTUIManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTUIManager.h; sourceTree = ""; }; - 21C25CB38B6A575937CCDBD087F8E3BA /* RNDateTimePicker-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNDateTimePicker-prefix.pch"; sourceTree = ""; }; + 21AA5E423691326E6A1899EA853E4857 /* Utils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Utils.h; path = yoga/Utils.h; sourceTree = ""; }; 21E0B16CB42C761661095F417C073820 /* MMKV_OSX.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MMKV_OSX.h; path = Core/MMKV_OSX.h; sourceTree = ""; }; 21F3594DFCA45CA204AC184CC6A1914B /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; name = README.md; path = rsocket/README.md; sourceTree = ""; }; 21F61F41ABDD6244A91BD73515AB9C3C /* SDWebImageCacheKeyFilter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageCacheKeyFilter.h; path = SDWebImage/Core/SDWebImageCacheKeyFilter.h; sourceTree = ""; }; 2202230CEA646EACF64B721865C58DD8 /* GULKeychainUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULKeychainUtils.h; path = GoogleUtilities/Environment/Private/GULKeychainUtils.h; sourceTree = ""; }; 220361FF3B2778F8F38C2C4DCC5B49FD /* libEXConstants.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libEXConstants.a; path = libEXConstants.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 2212A3443B87C1435F3F8662B641B1A3 /* JSCRuntime.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = JSCRuntime.cpp; sourceTree = ""; }; - 221EAFBF8C4EFA60E7201C7605DA24F7 /* REATransformNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REATransformNode.h; sourceTree = ""; }; - 22247E6BC5D6A3B1C48E23C163EA26AB /* UMFilePermissionModuleInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMFilePermissionModuleInterface.h; path = UMFileSystemInterface/UMFilePermissionModuleInterface.h; sourceTree = ""; }; + 2221E3E897138BC48618528FD55EC913 /* EXVideoManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = EXVideoManager.h; sourceTree = ""; }; + 2235F3F4971587F92D12EC2AE37D81A5 /* JSINativeModules.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = JSINativeModules.cpp; path = jsireact/JSINativeModules.cpp; sourceTree = ""; }; 224449707078BECC1912130BDDB3FA41 /* dh.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = dh.h; path = ios/include/openssl/dh.h; sourceTree = ""; }; 224CDF3D28B97DC3F74B7C94A47DEB17 /* FIRCLSURLSession.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCLSURLSession.m; path = Crashlytics/Crashlytics/FIRCLSURLSession/FIRCLSURLSession.m; sourceTree = ""; }; 22543CFC8553BDC4AC26E293C01A5569 /* da-DK.lproj */ = {isa = PBXFileReference; includeInIndex = 1; name = "da-DK.lproj"; path = "Objective-C/TOCropViewController/Resources/da-DK.lproj"; sourceTree = ""; }; 225455752F6E169BAB78BCDF65CCC8E3 /* CodedOutputData.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CodedOutputData.h; path = Core/CodedOutputData.h; sourceTree = ""; }; + 22629D11EB2B355DA16B970AFFDB7450 /* EXConstants.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = EXConstants.release.xcconfig; sourceTree = ""; }; 2284E5DA42D24A8ABC297F049439F808 /* RSocketParameters.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = RSocketParameters.cpp; path = rsocket/RSocketParameters.cpp; sourceTree = ""; }; + 2293EA91890914A585875B2CE1F8408F /* RNDateTimePicker.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNDateTimePicker.debug.xcconfig; sourceTree = ""; }; 229FC863351FC15A1ADA9A4F9477F91F /* ScheduledFrameTransport.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ScheduledFrameTransport.h; path = rsocket/framing/ScheduledFrameTransport.h; sourceTree = ""; }; - 22A3CFE580C92B99B0376CE5B0497DF8 /* FFFastImageView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FFFastImageView.h; path = ios/FastImage/FFFastImageView.h; sourceTree = ""; }; - 22B2FC9B1379734F4632EC03F671F938 /* RNScreens.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNScreens.debug.xcconfig; sourceTree = ""; }; + 22A3E937F0938445194AE986BDD05F25 /* React-RCTActionSheet.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-RCTActionSheet.debug.xcconfig"; sourceTree = ""; }; + 22B2621B5452FBF1E9860F81384C7768 /* RCTStatusBarManager.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTStatusBarManager.mm; sourceTree = ""; }; 22D5A0A3D76A2E8006E0D6AA16AE8B83 /* UIImage+ExtendedCacheData.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIImage+ExtendedCacheData.h"; path = "SDWebImage/Core/UIImage+ExtendedCacheData.h"; sourceTree = ""; }; 22DA82FF7F1C63B1FD40CB5EF1745FAF /* GDTCCTPrioritizer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCCTPrioritizer.h; path = GoogleDataTransportCCTSupport/GDTCCTLibrary/Private/GDTCCTPrioritizer.h; sourceTree = ""; }; - 22FEE90964CE911CF9B035C2DE71DDBD /* React-RCTSettings.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = "React-RCTSettings.podspec"; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; 23057612E2F96F6EA0C08460935202EF /* SDAnimatedImage.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDAnimatedImage.h; path = SDWebImage/Core/SDAnimatedImage.h; sourceTree = ""; }; 2312870F8AA8F7E32810D2C3A482E216 /* FIRInstallationsVersion.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstallationsVersion.h; path = FirebaseInstallations/Source/Library/Public/FIRInstallationsVersion.h; sourceTree = ""; }; - 232C7FC1437EA058474400006D750CB1 /* RCTFileReaderModule.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTFileReaderModule.mm; sourceTree = ""; }; 23308581FAC968AE6B96CBE461F93822 /* format_constants.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = format_constants.h; path = src/webp/format_constants.h; sourceTree = ""; }; - 233FEC3F1ECAB8D606435734B496DE94 /* React-callinvoker.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-callinvoker.release.xcconfig"; sourceTree = ""; }; + 2336BB0C3723DC4A5D1330D6AFBC0934 /* IDStore.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = IDStore.m; path = ios/IDStore.m; sourceTree = ""; }; 23483A32107EA6FC876494AFEEC048B6 /* UnboundedBlockingQueue.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UnboundedBlockingQueue.h; path = folly/executors/task_queue/UnboundedBlockingQueue.h; sourceTree = ""; }; 234D27B3B35A09D366BDE4F3841A6C71 /* Atomic.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Atomic.h; path = folly/portability/Atomic.h; sourceTree = ""; }; - 23515F140F314D38FF8E744CA13832D4 /* react-native-background-timer.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "react-native-background-timer.debug.xcconfig"; sourceTree = ""; }; - 23529667C0DDF44BF8A988F5851961DE /* Instance.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = Instance.cpp; sourceTree = ""; }; 2358E4C41369E72DA278AD42A8221CBD /* FIRCLSURLSessionTask.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCLSURLSessionTask.m; path = Crashlytics/Crashlytics/FIRCLSURLSession/Tasks/FIRCLSURLSessionTask.m; sourceTree = ""; }; 236024A068DDABE38303EA3FA7AC8994 /* FrameHeader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FrameHeader.h; path = rsocket/framing/FrameHeader.h; sourceTree = ""; }; - 236CD514762B113C1A45F11E0FDE64D4 /* RCTURLRequestHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTURLRequestHandler.h; sourceTree = ""; }; - 236F1FBC6537DF2EE700BB743C408869 /* JsArgumentHelpers.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = JsArgumentHelpers.h; sourceTree = ""; }; - 23884F2077F3BCEBCC32F255C583030B /* RNCAsyncStorage-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNCAsyncStorage-dummy.m"; sourceTree = ""; }; - 238862B6467AD75F3C8F74F4E60AC9A0 /* RCTJSStackFrame.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTJSStackFrame.h; sourceTree = ""; }; - 239D9B2BD194E5E586A96FBFBDB4E0E6 /* UMModuleRegistryAdapter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = UMModuleRegistryAdapter.m; sourceTree = ""; }; - 23A1D9B9BBAF772E9D698A408B44226B /* RCTParserUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTParserUtils.h; sourceTree = ""; }; + 23798980D7D6B0CC21A97D3808881278 /* EXAppleAuthentication.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXAppleAuthentication.h; path = EXAppleAuthentication/EXAppleAuthentication.h; sourceTree = ""; }; 23A6D752E35310294DA296C586EA1124 /* EventHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EventHandler.h; path = folly/io/async/EventHandler.h; sourceTree = ""; }; + 23BF68F9A6B7345B97B6CD4C263EE2E6 /* BugsnagApiClient.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagApiClient.h; sourceTree = ""; }; 23E0F83B878A2015EE63E9131CE3F4E4 /* RSocketTransport.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RSocketTransport.h; path = rsocket/transports/RSocketTransport.h; sourceTree = ""; }; 23E9107ABDF1DFBB3B3DC9EDDA6574E9 /* ObservableOperator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ObservableOperator.h; path = yarpl/observable/ObservableOperator.h; sourceTree = ""; }; - 240A0604FB3B4D9B563670304DDF5727 /* EXKeepAwake.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = EXKeepAwake.release.xcconfig; sourceTree = ""; }; - 24110D29E603430427BC166880317C02 /* RNPushKitEventHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNPushKitEventHandler.m; path = RNNotifications/RNPushKitEventHandler.m; sourceTree = ""; }; + 23FA3FE79EB3DA0D9D49D8A3397545F8 /* RNFBCrashlyticsModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNFBCrashlyticsModule.h; path = ios/RNFBCrashlytics/RNFBCrashlyticsModule.h; sourceTree = ""; }; 2411FA79D201C0BEF5FBAEE14F689966 /* srtp.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = srtp.h; path = ios/include/openssl/srtp.h; sourceTree = ""; }; 241479B1A70265C5EF920CEA1B30E3C8 /* CallstackHelper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CallstackHelper.h; path = xplat/Flipper/utils/CallstackHelper.h; sourceTree = ""; }; - 24243C6D7595BD403DF417621300CC31 /* RCTProfileTrampoline-arm64.S */ = {isa = PBXFileReference; includeInIndex = 1; path = "RCTProfileTrampoline-arm64.S"; sourceTree = ""; }; 242758B9EDFF146ABE411909CAC8F130 /* libreact-native-appearance.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libreact-native-appearance.a"; path = "libreact-native-appearance.a"; sourceTree = BUILT_PRODUCTS_DIR; }; 242A428FC17181DE990E8D5A2153E786 /* GULNetworkConstants.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULNetworkConstants.h; path = GoogleUtilities/Network/Private/GULNetworkConstants.h; sourceTree = ""; }; + 2432A98B30D26D6A0EB943B7B4062D10 /* RCTShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTShadowView.h; sourceTree = ""; }; 2432C8A76487AC835CB14BF897ECF870 /* FIRCLSReport.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCLSReport.m; path = Crashlytics/Crashlytics/Models/FIRCLSReport.m; sourceTree = ""; }; - 243D81831B5B5E8EC831CD0EAA6AA865 /* ARTText.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ARTText.h; path = ios/ARTText.h; sourceTree = ""; }; 2443987C91F8174E5D7EBDE73B40EFCB /* SKDispatchQueue.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SKDispatchQueue.h; path = iOS/Plugins/FlipperKitNetworkPlugin/FlipperKitNetworkPlugin/SKDispatchQueue.h; sourceTree = ""; }; - 246949E5FF4118302D0130A6CE306257 /* FBLazyVector.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = FBLazyVector.debug.xcconfig; sourceTree = ""; }; - 246B2548D9EB5B906A07596E70E8FA1A /* Yoga-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Yoga-prefix.pch"; sourceTree = ""; }; - 2470AB757FBFC958CA8AFA7B924E6A36 /* RCTHTTPRequestHandler.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTHTTPRequestHandler.mm; sourceTree = ""; }; + 244F8B921D69A96B1E64C7A77F10835E /* RCTMultipartStreamReader.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTMultipartStreamReader.m; sourceTree = ""; }; 2471035527AC86FFEA69DAB45EBE51D8 /* GULReachabilityChecker+Internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "GULReachabilityChecker+Internal.h"; path = "GoogleUtilities/Reachability/GULReachabilityChecker+Internal.h"; sourceTree = ""; }; 2488CEDBFF4B43A5A73FE5D4D3EB1DA5 /* FIRCLSUnwind.c */ = {isa = PBXFileReference; includeInIndex = 1; name = FIRCLSUnwind.c; path = Crashlytics/Crashlytics/Unwind/FIRCLSUnwind.c; sourceTree = ""; }; - 248F18943B4F4FC493379B54A4923084 /* RCTModalHostViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTModalHostViewManager.m; sourceTree = ""; }; 2497AD2C3A38487B2E6A2C14553F93DE /* GDTCORRegistrar.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCORRegistrar.h; path = GoogleDataTransport/GDTCORLibrary/Public/GDTCORRegistrar.h; sourceTree = ""; }; 24B3CC1D6BFB09CE852315D68783AF14 /* TupleOps.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TupleOps.h; path = folly/experimental/TupleOps.h; sourceTree = ""; }; - 24B943E24D1352DDB5ADA65A72D201B9 /* EXAppleAuthentication.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXAppleAuthentication.m; path = EXAppleAuthentication/EXAppleAuthentication.m; sourceTree = ""; }; - 24BB1AAFB0BC44F0254A6ADB350F52F0 /* QBCheckmarkView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = QBCheckmarkView.h; path = ios/QBImagePicker/QBImagePicker/QBCheckmarkView.h; sourceTree = ""; }; - 24DB158EC9EA65C84421AFC06D2F8CBA /* RCTShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTShadowView.m; sourceTree = ""; }; - 24DFBF706C9184D2B5F4031090E6DC03 /* QBAlbumsViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = QBAlbumsViewController.h; path = ios/QBImagePicker/QBImagePicker/QBAlbumsViewController.h; sourceTree = ""; }; + 24BBBAA55A1CC02EE32B8B426C15516D /* BSG_KSMach.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSMach.c; sourceTree = ""; }; + 24DF1BCD3CD68CFBB4E023D7DFB1E5E6 /* BugsnagMetaData.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagMetaData.h; sourceTree = ""; }; + 24EF4F21CA0981558A2E33447B04DCF0 /* RCTAlertManager.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTAlertManager.mm; sourceTree = ""; }; + 24EFC63E862C3EC720F077DAE67C3147 /* RCTConvert+FIROptions.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "RCTConvert+FIROptions.m"; path = "ios/RNFBApp/RCTConvert+FIROptions.m"; sourceTree = ""; }; 24F55790C52341EE3DA7424D39C6155A /* Pods-NotificationService-acknowledgements.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-NotificationService-acknowledgements.plist"; sourceTree = ""; }; 24F58F88A4882E75DB6F2D62653C730F /* FIRCLSUnwind_arch.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSUnwind_arch.h; path = Crashlytics/Crashlytics/Unwind/FIRCLSUnwind_arch.h; sourceTree = ""; }; + 24F7B7E183DEA9C6609CEB0D8EEC5572 /* EXAppleAuthentication.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = EXAppleAuthentication.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; 24FEE9D59B580AD1E776BF92C274BB04 /* Pods-ShareRocketChatRN-acknowledgements.markdown */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; path = "Pods-ShareRocketChatRN-acknowledgements.markdown"; sourceTree = ""; }; - 25264852B45BDFBD98B571B5855691FC /* RNCAppearanceProviderManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCAppearanceProviderManager.h; path = ios/Appearance/RNCAppearanceProviderManager.h; sourceTree = ""; }; + 24FFF063FB9972AAD27940D201948ADE /* RCTDivisionAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTDivisionAnimatedNode.h; sourceTree = ""; }; 252F20F357703BC3ED2A24EC0FFC9F20 /* FIRInstallationsLogger.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstallationsLogger.m; path = FirebaseInstallations/Source/Library/FIRInstallationsLogger.m; sourceTree = ""; }; - 253B9A685B03722020ACAA2653DDBDCF /* RNGestureHandler.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNGestureHandler.debug.xcconfig; sourceTree = ""; }; + 2554F5BFBCAFD71425177DE0CF41C7C0 /* RCTMultipartDataTask.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTMultipartDataTask.h; sourceTree = ""; }; 255D72B71BDB0BB5FEFE4E338122CF8E /* FIRCLSThreadState.c */ = {isa = PBXFileReference; includeInIndex = 1; name = FIRCLSThreadState.c; path = Crashlytics/Crashlytics/Helpers/FIRCLSThreadState.c; sourceTree = ""; }; + 2566A1804E4853C29DEEF2A318128070 /* RNNotificationEventHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNNotificationEventHandler.m; path = RNNotifications/RNNotificationEventHandler.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; }; - 2599F813746E4AE45113571B4A91D023 /* RCTViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTViewManager.m; sourceTree = ""; }; 259BCF6CD8BAE89C80BECAB813297A51 /* HardwareConcurrency.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = HardwareConcurrency.h; path = folly/system/HardwareConcurrency.h; sourceTree = ""; }; 25ABD9EAFDA114E22BF8ABFBAAA6A1E2 /* FrameHeader.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = FrameHeader.cpp; path = rsocket/framing/FrameHeader.cpp; sourceTree = ""; }; - 25BAD2A26CE22DF9B0A00BA43CDC30A6 /* react-native-background-timer-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "react-native-background-timer-dummy.m"; sourceTree = ""; }; + 25D411FCF75BE42191E210883867EC33 /* REASetNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REASetNode.m; sourceTree = ""; }; + 25E101047A1BCAA18A100456D9C1C2C3 /* REATransition.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REATransition.m; sourceTree = ""; }; + 25E310781B155F8BF728BFE1DB73F3CD /* UMImageLoaderInterface.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMImageLoaderInterface.release.xcconfig; sourceTree = ""; }; 25F7E87473388FF62E1EF44A8044A21A /* FIROptionsInternal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIROptionsInternal.h; path = FirebaseCore/Sources/Private/FIROptionsInternal.h; sourceTree = ""; }; - 2603074FEBFC477C3D117AB5C694CAD9 /* localNotifications.md */ = {isa = PBXFileReference; includeInIndex = 1; name = localNotifications.md; path = docs/localNotifications.md; sourceTree = ""; }; - 2608A00DB071AABD68B93DFC7C46A01B /* react-native-background-timer.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = "react-native-background-timer.podspec"; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - 262653AEBD7EA70BB4AD8AB620DA21C8 /* RCTCxxBridge.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTCxxBridge.mm; sourceTree = ""; }; 262E9C9B6F4347B5DD35E88568FD8D34 /* utils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = utils.h; path = "double-conversion/utils.h"; sourceTree = ""; }; - 2631E8762A1DFC1BA0B0348CC1451B19 /* React-jsinspector.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = "React-jsinspector.podspec"; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - 263274F1FC8F196D9F7C9F2C12F26D52 /* React-RCTVibration-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-RCTVibration-prefix.pch"; sourceTree = ""; }; 2636254F42F58F2C1C77ABFB08F3DCBD /* encode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = encode.h; path = src/webp/encode.h; sourceTree = ""; }; 266151A83F20C54689F48626C35E50A8 /* event.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = event.h; path = src/event2/event.h; sourceTree = ""; }; 267CB5D5CC6EEB55D13D01B7E6864A1B /* SDWebImageCacheSerializer.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWebImageCacheSerializer.m; path = SDWebImage/Core/SDWebImageCacheSerializer.m; sourceTree = ""; }; 268311C9CFEF146103EE89227C3AF2B8 /* GULHeartbeatDateStorage.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULHeartbeatDateStorage.h; path = GoogleUtilities/Environment/Private/GULHeartbeatDateStorage.h; sourceTree = ""; }; 2685DB9664E678CB0C87EF6BD998FB13 /* FIRCLSOnboardingOperation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSOnboardingOperation.h; path = Crashlytics/Crashlytics/Settings/Operations/FIRCLSOnboardingOperation.h; sourceTree = ""; }; - 268A625EECBD14EC6303D7B0EEE25B46 /* RCTI18nManager.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTI18nManager.mm; sourceTree = ""; }; - 2691AC68E52992AFB4E33BA65C93DE50 /* BSG_KSMach_Arm.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSMach_Arm.c; sourceTree = ""; }; - 2699322CEBD596B814121EEBAF62F5BC /* YGNode.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = YGNode.cpp; path = yoga/YGNode.cpp; sourceTree = ""; }; + 269103AE2842B6139A3CB355BF124290 /* RCTAccessibilityManager.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTAccessibilityManager.mm; sourceTree = ""; }; 269BE773C9482484B70949A40F4EA525 /* libReact-RCTSettings.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libReact-RCTSettings.a"; path = "libReact-RCTSettings.a"; sourceTree = BUILT_PRODUCTS_DIR; }; 26B3C514048574CA7CDF45FBCFB6C059 /* FIRCLSProcessReportOperation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSProcessReportOperation.h; path = Crashlytics/Crashlytics/Operations/Reports/FIRCLSProcessReportOperation.h; sourceTree = ""; }; 26CA0968F6DB5D4F3978C98664823F04 /* FIRDependency.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRDependency.m; path = FirebaseCore/Sources/FIRDependency.m; sourceTree = ""; }; - 26D494ED4409B9A7C3E31544FB3C8766 /* REAFunctionNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REAFunctionNode.m; sourceTree = ""; }; - 26E3E79468DED17BAF45FD27958BF791 /* REAEventNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REAEventNode.m; sourceTree = ""; }; - 2705064DEB16DB24F040925BCA5F6004 /* RNCCameraRollManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCCameraRollManager.h; path = ios/RNCCameraRollManager.h; sourceTree = ""; }; + 26DE4267CDFB8A8BA0F41D4EA688FB75 /* Bugsnag.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = Bugsnag.h; sourceTree = ""; }; 2707E2961B55803E7B7AEA39B57A14DA /* http_compat.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = http_compat.h; path = src/event2/http_compat.h; sourceTree = ""; }; - 270DFF8EC28AE8B3070C199EC52B0751 /* RCTSurfaceSizeMeasureMode.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTSurfaceSizeMeasureMode.mm; sourceTree = ""; }; - 2726389FEBA35766473DE059CB0C6DF5 /* ARTRenderable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ARTRenderable.h; path = ios/ARTRenderable.h; sourceTree = ""; }; + 27115A58C44A611EE094D04B426E7BFB /* RNFBAnalyticsModule.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNFBAnalyticsModule.m; path = ios/RNFBAnalytics/RNFBAnalyticsModule.m; sourceTree = ""; }; 272C770751661D7921F1846D2ECEF1CF /* filters_neon.c */ = {isa = PBXFileReference; includeInIndex = 1; name = filters_neon.c; path = src/dsp/filters_neon.c; sourceTree = ""; }; - 2733B021E283B7F19A3BBC606D0D93E3 /* BugsnagFileStore.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagFileStore.m; sourceTree = ""; }; 2735C75D069E8CB064C5056FAA472EE1 /* Unicode.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = Unicode.cpp; path = folly/Unicode.cpp; sourceTree = ""; }; - 2744D9AB6AFC3C47A5773B2A45689556 /* REASetNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REASetNode.h; sourceTree = ""; }; + 2754616E67EED413A0F9B16D7F22D690 /* RCTSurfaceHostingView.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTSurfaceHostingView.mm; sourceTree = ""; }; + 27666DEC379C23CE7A127AAD36CC062A /* RCTSurfaceStage.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSurfaceStage.m; sourceTree = ""; }; 276F3F91D7A31DD7EED2F990FDE60364 /* FIRInstallationsSingleOperationPromiseCache.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstallationsSingleOperationPromiseCache.h; path = FirebaseInstallations/Source/Library/InstallationsIDController/FIRInstallationsSingleOperationPromiseCache.h; sourceTree = ""; }; 279390C893577F74DD2049383E1EDD1A /* libKeyCommands.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libKeyCommands.a; path = libKeyCommands.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 27C50D36969AF24EB251E6592A7A1BFE /* ReactMarker.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = ReactMarker.cpp; sourceTree = ""; }; - 27CACEA45457F24C054262D1715A08E3 /* RCTValueAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTValueAnimatedNode.m; sourceTree = ""; }; - 27D3620E5516A7CD19F78992AAD108CF /* UMCore-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "UMCore-prefix.pch"; sourceTree = ""; }; + 2797B474D8F9D83190CCB3A0734B7B13 /* RCTTypedModuleConstants.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTypedModuleConstants.h; sourceTree = ""; }; + 27D780ADCF667BA69C62A0E9E90982CF /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; + 27DE1E395E84CF3A9BA210BCAF52346C /* threadsafe.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = threadsafe.h; sourceTree = ""; }; 27F486B66D01BBEC7C8F93CF3AB4032B /* FIRCLSApplicationIdentifierModel.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSApplicationIdentifierModel.h; path = Crashlytics/Crashlytics/Settings/Models/FIRCLSApplicationIdentifierModel.h; sourceTree = ""; }; - 280A32BBCE7F8146256E7F950329E303 /* react-native-cameraroll.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = "react-native-cameraroll.podspec"; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; 280AE93CC3396E5BACA7C3D85E999106 /* GCDAsyncUdpSocket.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GCDAsyncUdpSocket.m; path = Source/GCD/GCDAsyncUdpSocket.m; sourceTree = ""; }; - 28105B13EA351F4B508FE0E4AD5B2230 /* ReactNativeKeyboardTrackingView.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = ReactNativeKeyboardTrackingView.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - 281680EF1F0C0F8D5876B932CC6961E6 /* SystraceSection.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = SystraceSection.h; sourceTree = ""; }; + 281D8CF916CAEB88471D37D11BFF690A /* RNCSafeAreaProvider.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCSafeAreaProvider.h; path = ios/SafeAreaView/RNCSafeAreaProvider.h; sourceTree = ""; }; + 282FB6D72191F808CC7817388052329B /* JSIExecutor.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = JSIExecutor.cpp; path = jsireact/JSIExecutor.cpp; sourceTree = ""; }; 283746EB44A8BA8825A36D950715DA43 /* Singleton.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = Singleton.cpp; path = folly/Singleton.cpp; sourceTree = ""; }; - 28476FAB62AA82A560208FCD2225F979 /* UMSensorsInterface.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMSensorsInterface.release.xcconfig; sourceTree = ""; }; 284D0BD80F7C7263935C9B333C8C7128 /* ThreadId.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ThreadId.h; path = folly/system/ThreadId.h; sourceTree = ""; }; 28523C655665EF3B1660B49735AA01FB /* GULMutableDictionary.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULMutableDictionary.h; path = GoogleUtilities/Network/Private/GULMutableDictionary.h; sourceTree = ""; }; - 28540FE171475E25406318DCED3482B5 /* REAParamNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REAParamNode.m; sourceTree = ""; }; - 2858B3C406226118D28DC967086236A6 /* MaterialCommunityIcons.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = MaterialCommunityIcons.ttf; path = Fonts/MaterialCommunityIcons.ttf; sourceTree = ""; }; - 286281A976AB56971B58CBCAD49A3A0B /* RCTCxxUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTCxxUtils.h; sourceTree = ""; }; - 28884FB1DDBDD4E9BB48826466D84D31 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; + 287449DDCA44CB382B8D443DAC8BB4AD /* FFFastImageView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FFFastImageView.m; path = ios/FastImage/FFFastImageView.m; sourceTree = ""; }; 28A50FB61E64F7087DD199F877950810 /* random_utils.c */ = {isa = PBXFileReference; includeInIndex = 1; name = random_utils.c; path = src/utils/random_utils.c; sourceTree = ""; }; 28BFE045C9B62D7C872945AF797A0997 /* FBLPromise+Validate.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "FBLPromise+Validate.m"; path = "Sources/FBLPromises/FBLPromise+Validate.m"; sourceTree = ""; }; 28C6B44415916C55BF988662090BAF2A /* F14Map.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = F14Map.h; path = folly/container/F14Map.h; sourceTree = ""; }; @@ -7258,162 +7202,161 @@ 28D0D3BB92A46FD0A2EA36558524FA54 /* diy-fp.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = "diy-fp.cc"; path = "double-conversion/diy-fp.cc"; sourceTree = ""; }; 28D6D678892B43BFF90B8EA1E9393866 /* bignum-dtoa.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = "bignum-dtoa.cc"; path = "double-conversion/bignum-dtoa.cc"; sourceTree = ""; }; 28E4EFE5ABDFAAE5543E2DC0B5E63800 /* StringKeyedMap.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = StringKeyedMap.h; path = folly/experimental/StringKeyedMap.h; sourceTree = ""; }; - 28FCEF2162CFCC3718107CF2DB058AEC /* UMModuleRegistryAdapter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMModuleRegistryAdapter.h; sourceTree = ""; }; - 290719AB3B8C5CDAB1C89C312F465D55 /* React-RCTImage.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = "React-RCTImage.podspec"; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - 29155DCB0B25BB8B8C3322D366B643AB /* RNFetchBlobNetwork.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNFetchBlobNetwork.m; path = ios/RNFetchBlobNetwork.m; sourceTree = ""; }; + 290849471BE6ACFDA1FF76063D549969 /* RCTSinglelineTextInputView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSinglelineTextInputView.h; sourceTree = ""; }; 291B8471134F121BF9EE155EDDAB0AED /* StreamThroughputMemory.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = StreamThroughputMemory.cpp; path = rsocket/benchmarks/StreamThroughputMemory.cpp; sourceTree = ""; }; 291ECEDE7675204DB498E8FB478238F6 /* Fixture.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Fixture.h; path = rsocket/benchmarks/Fixture.h; sourceTree = ""; }; - 2939EB4E5E7E94A02C3A9CD37B99AC49 /* react-native-slider.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "react-native-slider.release.xcconfig"; sourceTree = ""; }; - 293D51E101661C9122D96301994C6B38 /* RCTTurboModuleManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTurboModuleManager.h; sourceTree = ""; }; - 29622706EC0A8413E4BCAC4ED3B8A4A9 /* UMCore.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = UMCore.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - 296698780DFB4EC12AFDDA86CD429674 /* RNTapHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNTapHandler.m; sourceTree = ""; }; - 297CF7B1C1F8AF6ADB5A3A8D798FA91C /* React-RCTImage.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-RCTImage.debug.xcconfig"; sourceTree = ""; }; - 2986E583E38AE39D873687509F8863B7 /* RNConfigReader.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNConfigReader.debug.xcconfig; sourceTree = ""; }; + 29231BF818B69943DC71AD853540CA87 /* RNFBApp-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNFBApp-prefix.pch"; sourceTree = ""; }; + 2984CC6A40868FD7BF5A2ED6CB4EF964 /* 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; }; 2987799D477A67FEA74BC1C02AEB1F48 /* PTUSBHub.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PTUSBHub.h; path = peertalk/PTUSBHub.h; sourceTree = ""; }; 298958769545D0A0CD4F77FBC0018816 /* SDGraphicsImageRenderer.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDGraphicsImageRenderer.m; path = SDWebImage/Core/SDGraphicsImageRenderer.m; sourceTree = ""; }; - 299246C1B027F6E7FA58E83A9150AFB5 /* UMFileSystemInterface.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMFileSystemInterface.debug.xcconfig; sourceTree = ""; }; 2994D9A17BFD3845635A5464DF64D026 /* OpenSSLCertUtils.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = OpenSSLCertUtils.cpp; path = folly/ssl/OpenSSLCertUtils.cpp; sourceTree = ""; }; - 299C8DA531747C55BA8ADE68D2446C52 /* RCTImageURLLoader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageURLLoader.h; path = Libraries/Image/RCTImageURLLoader.h; sourceTree = ""; }; - 29F2E4B180DDD47F010CB79BD33A19F5 /* RCTTrackingAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTTrackingAnimatedNode.m; sourceTree = ""; }; + 29E4473A03AA93B9B6C749809A611532 /* RCTRawTextShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTRawTextShadowView.m; sourceTree = ""; }; + 29F56857296C165FD75A3B08606C0E30 /* RCTView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTView.h; sourceTree = ""; }; 2A0D48513A8D99ED1A00A076F46C3816 /* FBLPromises.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBLPromises.h; path = Sources/FBLPromises/include/FBLPromises.h; sourceTree = ""; }; 2A19DD955D3BD5CC92BD4C467B640CA3 /* PackedSyncPtr.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PackedSyncPtr.h; path = folly/PackedSyncPtr.h; sourceTree = ""; }; - 2A1A2A8E443074927DC64B652B49B61D /* EXVideoPlayerViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = EXVideoPlayerViewController.m; sourceTree = ""; }; + 2A2BE72BF262867899367F5232C7E751 /* BSG_KSCrashSentry_Signal.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSCrashSentry_Signal.c; sourceTree = ""; }; 2A383877CCA66C0321486F218ECB64CB /* FIRInstallationsItem+RegisterInstallationAPI.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "FIRInstallationsItem+RegisterInstallationAPI.m"; path = "FirebaseInstallations/Source/Library/InstallationsAPI/FIRInstallationsItem+RegisterInstallationAPI.m"; sourceTree = ""; }; 2A5457C15579961852C2E4BAE3AC7CE1 /* SDWebImageOptionsProcessor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageOptionsProcessor.h; path = SDWebImage/Core/SDWebImageOptionsProcessor.h; sourceTree = ""; }; 2A59565B3D6519C10DEBBEA7F5EBB4AB /* analysis_enc.c */ = {isa = PBXFileReference; includeInIndex = 1; name = analysis_enc.c; path = src/enc/analysis_enc.c; sourceTree = ""; }; - 2A739BFF788A257962081AB5BBFF9D61 /* React-cxxreact.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-cxxreact.debug.xcconfig"; sourceTree = ""; }; + 2A7A06B9C6BB0524CF511FA038538A70 /* UMPermissionsInterface-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "UMPermissionsInterface-dummy.m"; sourceTree = ""; }; + 2A7BD31EFF63B3F992B7DD689773C445 /* REAParamNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REAParamNode.m; sourceTree = ""; }; 2A8180D9D0600FBB6EFA7C626EDA808A /* GULSceneDelegateSwizzler_Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULSceneDelegateSwizzler_Private.h; path = GoogleUtilities/SceneDelegateSwizzler/Internal/GULSceneDelegateSwizzler_Private.h; sourceTree = ""; }; + 2A83D3E6E07078C5186868A571FC7722 /* RCTRefreshableProtocol.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTRefreshableProtocol.h; sourceTree = ""; }; 2A8BFAABE911D0257D142DF57EFBB406 /* MPMCPipeline.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MPMCPipeline.h; path = folly/MPMCPipeline.h; sourceTree = ""; }; - 2A97F85E390D25B7EC89FDE313270B1F /* RCTRawTextShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTRawTextShadowView.m; sourceTree = ""; }; - 2A9E642B7438B584CE40B00822D623B6 /* React-cxxreact.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-cxxreact.release.xcconfig"; sourceTree = ""; }; - 2AC79DC8FF5BFA7C2F59FAF82DA5340E /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; 2AD6776FCE89F01F4AE3F91AB433250E /* SSLSessionImpl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SSLSessionImpl.h; path = folly/ssl/detail/SSLSessionImpl.h; sourceTree = ""; }; 2ADA4F6534A98D5CDE31EBF47F865BA5 /* fixed-dtoa.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "fixed-dtoa.h"; path = "double-conversion/fixed-dtoa.h"; sourceTree = ""; }; - 2AE8ED4D47EA19D4D505FAC25A66067E /* UMCameraInterface.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMCameraInterface.debug.xcconfig; sourceTree = ""; }; 2AF63C27DA331326A58B61F06A0B59F6 /* SDWebImageWebPCoder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageWebPCoder.h; path = SDWebImageWebPCoder/Module/SDWebImageWebPCoder.h; sourceTree = ""; }; - 2AFB8E0F83F5D33F086E1ADC77CE19AE /* RCTFileRequestHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTFileRequestHandler.h; path = Libraries/Network/RCTFileRequestHandler.h; sourceTree = ""; }; - 2B036968A8C7DBCF9A7AA935283F37A3 /* YGValue.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = YGValue.cpp; path = yoga/YGValue.cpp; sourceTree = ""; }; 2B14B0084BF02DE15FE62812E1288436 /* Chrono.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Chrono.h; path = folly/Chrono.h; sourceTree = ""; }; + 2B14DE84C4710921B5FC4F09908D4E1E /* RCTMultilineTextInputViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTMultilineTextInputViewManager.h; sourceTree = ""; }; + 2B1707F6B00B819F5C1CDFBCFE481E89 /* REAEventNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REAEventNode.h; sourceTree = ""; }; 2B17A71888AA28CEFEC37B72F2A68A91 /* libreact-native-slider.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libreact-native-slider.a"; path = "libreact-native-slider.a"; sourceTree = BUILT_PRODUCTS_DIR; }; 2B2893702A7AE0EE6CE82C97E8B04B27 /* AsyncTrace.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = AsyncTrace.cpp; path = folly/detail/AsyncTrace.cpp; sourceTree = ""; }; - 2B50EC2EE1F19486F0667713AD0A20B3 /* React-RCTImage.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-RCTImage.release.xcconfig"; sourceTree = ""; }; - 2B7086B4FF95C12A48AD94660A6FC301 /* BSG_KSCrashDoctor.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BSG_KSCrashDoctor.m; sourceTree = ""; }; - 2B71EBC4ACEA997915594817EF22B58D /* RNConfigReader.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RNConfigReader.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - 2B7D76FB8E7D5C448AAF50B694A3A684 /* RCTConvert+Transform.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RCTConvert+Transform.h"; sourceTree = ""; }; - 2B89E79FFCEFF8600B29DAC31CD75A3F /* RCTLayout.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTLayout.h; sourceTree = ""; }; - 2B8BE2ECD06D9EDDE367C058CB0E9DA7 /* RCTScrollEvent.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTScrollEvent.m; sourceTree = ""; }; - 2BA1698D2D331C65A608DE1328A6271B /* BugsnagSessionTrackingPayload.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagSessionTrackingPayload.h; sourceTree = ""; }; + 2B2F1745446D0F6241D56B08FD7EB45F /* UIView+React.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "UIView+React.m"; sourceTree = ""; }; + 2B81C4E9BF098522968AA822A50BA6E0 /* RCTInterpolationAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTInterpolationAnimatedNode.m; sourceTree = ""; }; + 2B8F49EBED007C3C57746CBB11AD0027 /* BSG_KSCrashReportFilterCompletion.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashReportFilterCompletion.h; sourceTree = ""; }; 2BAC07D32C32084ABEF37A044773789D /* SDWebImage-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "SDWebImage-prefix.pch"; sourceTree = ""; }; 2BBB0AC7C7BD3E24D4B5BCF36443E456 /* SDWebImageManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageManager.h; path = SDWebImage/Core/SDWebImageManager.h; sourceTree = ""; }; - 2BC358F51655E4F09B0743DEB24C139F /* RCTFont.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTFont.h; sourceTree = ""; }; 2BC3B279EC7B3584AF1AA293619E4DCA /* FBLPromise+Then.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FBLPromise+Then.h"; path = "Sources/FBLPromises/include/FBLPromise+Then.h"; sourceTree = ""; }; + 2BCB019D2283916B6DE5028E48214C59 /* CxxNativeModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = CxxNativeModule.h; sourceTree = ""; }; + 2BD7FDD1B56BB354DA0C308C895A5D9C /* BSG_KSSystemInfoC.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSSystemInfoC.h; sourceTree = ""; }; 2BDD96A156450AC5802467E6C6112C3D /* lossless_common.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = lossless_common.h; path = src/dsp/lossless_common.h; sourceTree = ""; }; - 2BE4FA566B375DBA3B4DB6BC27B5AA1C /* EXFileSystem.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = EXFileSystem.debug.xcconfig; sourceTree = ""; }; 2BF49EF972AFDCEF4147E3631E9E8D1F /* RSocketRequester.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RSocketRequester.h; path = rsocket/RSocketRequester.h; sourceTree = ""; }; 2C05937C718A1A204DE6AC17B844F985 /* StreamFragmentAccumulator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = StreamFragmentAccumulator.h; path = rsocket/statemachine/StreamFragmentAccumulator.h; sourceTree = ""; }; - 2C212828F45BD3FAD79DE375E3F12874 /* RCTImageLoaderProtocol.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageLoaderProtocol.h; path = Libraries/Image/RCTImageLoaderProtocol.h; sourceTree = ""; }; - 2C22B13F2F4E2FF515288C827574A36E /* ARTSurfaceView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ARTSurfaceView.h; path = ios/ARTSurfaceView.h; sourceTree = ""; }; - 2C32E99342E5E34910332E53E0FAC48F /* EXSessionUploadTaskDelegate.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = EXSessionUploadTaskDelegate.m; sourceTree = ""; }; - 2C3C2C2520927D3630BA92AE7435D042 /* RCTImageShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTImageShadowView.m; sourceTree = ""; }; + 2C142AB8070F9269433A87A09A93B5F7 /* BugsnagReactNative-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "BugsnagReactNative-dummy.m"; sourceTree = ""; }; + 2C21A4FA570095AF52C1319C2686BDE5 /* UMSingletonModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMSingletonModule.h; path = UMCore/UMSingletonModule.h; sourceTree = ""; }; + 2C33A92650B97110B906CA98E455BE4A /* React-cxxreact-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-cxxreact-dummy.m"; sourceTree = ""; }; 2C4669C842B9EB28FB777A181968F06D /* HazptrRec.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = HazptrRec.h; path = folly/synchronization/HazptrRec.h; sourceTree = ""; }; + 2C5377271D73E125FB18FD740DDD776A /* QBAssetCell.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = QBAssetCell.h; path = ios/QBImagePicker/QBImagePicker/QBAssetCell.h; sourceTree = ""; }; 2C573CAD70E719BB6148A58884594153 /* Futex.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = Futex.cpp; path = folly/detail/Futex.cpp; sourceTree = ""; }; + 2C6B8FF9417E97CC57C19588EC73AADC /* RCTUIUtils.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTUIUtils.m; sourceTree = ""; }; 2C6DB314BF7A6F6636587528F40E6E63 /* webp_dec.c */ = {isa = PBXFileReference; includeInIndex = 1; name = webp_dec.c; path = src/dec/webp_dec.c; sourceTree = ""; }; + 2C704C8083AFB4F2D56D934673F6990F /* RCTDeviceInfo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTDeviceInfo.h; path = React/CoreModules/RCTDeviceInfo.h; sourceTree = ""; }; 2C792AE38779EDE06A21B3BE620874DE /* ar.lproj */ = {isa = PBXFileReference; includeInIndex = 1; name = ar.lproj; path = "Objective-C/TOCropViewController/Resources/ar.lproj"; sourceTree = ""; }; 2C907FD202E0FFDA105B5A509A977743 /* Log.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = Log.cpp; path = xplat/Flipper/Log.cpp; sourceTree = ""; }; 2C9DB9B33169804F44FB8B9867315459 /* RSocketStateMachine.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RSocketStateMachine.h; path = rsocket/statemachine/RSocketStateMachine.h; sourceTree = ""; }; - 2CB3EFDC81A28CBE01F1EEB0EC2F230A /* RNEventEmitter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNEventEmitter.h; path = RNNotifications/RNEventEmitter.h; sourceTree = ""; }; - 2CBA6A2E7DE164CC9864FFAF6AD15BEA /* ARTPattern.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = ARTPattern.m; sourceTree = ""; }; - 2CD6D224057491F744E5DBA1308419E7 /* Bugsnag.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = Bugsnag.m; sourceTree = ""; }; + 2CCB4045B1B01154F0030D1D0BD6319D /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; 2CD7195F3910E7BBF1092BE51F12F91D /* FIRCLSReportManager_Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSReportManager_Private.h; path = Crashlytics/Crashlytics/Controllers/FIRCLSReportManager_Private.h; sourceTree = ""; }; - 2CE8F089F68FD8BFECA4B8721154937C /* RNFBSharedUtils.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNFBSharedUtils.m; path = ios/RNFBApp/RNFBSharedUtils.m; sourceTree = ""; }; 2CF0981CDCF6AD04CB4CBBBF64708A21 /* pb_common.c */ = {isa = PBXFileReference; includeInIndex = 1; path = pb_common.c; sourceTree = ""; }; 2CF6864156391147F5F50F664D9034C2 /* StampedPtr.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = StampedPtr.h; path = folly/experimental/StampedPtr.h; sourceTree = ""; }; + 2D25EF979879F9BF08A6DA3734FB2921 /* RNReanimated.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNReanimated.debug.xcconfig; sourceTree = ""; }; 2D31F2C1537ADFB0C1D3169560037E9B /* pem.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = pem.h; path = ios/include/openssl/pem.h; sourceTree = ""; }; 2D54B60E17BD1E4A90B5E9DADA8D9256 /* YogaKit.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = YogaKit.release.xcconfig; sourceTree = ""; }; - 2D56973D72EFFB2983A3D55E085B3C2F /* RCTImageDataDecoder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageDataDecoder.h; path = Libraries/Image/RCTImageDataDecoder.h; sourceTree = ""; }; 2D5854CEEE48171B65B02E63F0EE548F /* SDWebImage.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = SDWebImage.release.xcconfig; sourceTree = ""; }; + 2D5CE50786E06319A046DE429D71F1D8 /* react-native-appearance-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "react-native-appearance-dummy.m"; sourceTree = ""; }; + 2D63FE46107F16946A2BEA13BA0868EE /* RCTLayoutAnimationGroup.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTLayoutAnimationGroup.m; sourceTree = ""; }; + 2D65F88990F3839685AA02C6C80A6D60 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; 2D6FBE67EA6C7D82BF4E3C55391CC500 /* CheckedMath.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CheckedMath.h; path = folly/lang/CheckedMath.h; sourceTree = ""; }; 2D78F9C00BF67245B935CA95223EBF9B /* FIRConfiguration.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRConfiguration.m; path = FirebaseCore/Sources/FIRConfiguration.m; sourceTree = ""; }; - 2D8130D2885D398FABB766D2D6CC2C4D /* EXAppleAuthenticationButton.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXAppleAuthenticationButton.h; path = EXAppleAuthentication/EXAppleAuthenticationButton.h; sourceTree = ""; }; + 2D805B65BB1D28514278D8AAB986AD18 /* RCTClipboard.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTClipboard.h; path = React/CoreModules/RCTClipboard.h; sourceTree = ""; }; 2D86D213801ABEF7CD86291D4F3FDD34 /* libUMAppLoader.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libUMAppLoader.a; path = libUMAppLoader.a; sourceTree = BUILT_PRODUCTS_DIR; }; 2D88FF40C3C206819A95777E179C8465 /* Math.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Math.h; path = folly/portability/Math.h; sourceTree = ""; }; + 2D8EC94C01ED675E63A875FCA6393D47 /* JSINativeModules.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = JSINativeModules.h; path = jsireact/JSINativeModules.h; sourceTree = ""; }; 2D99345BBB430917AEB5318D87DBCE64 /* AtomicLinkedList.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AtomicLinkedList.h; path = folly/AtomicLinkedList.h; sourceTree = ""; }; 2DC7121300C3748D152EF165854E476D /* FIRCLSMultipartMimeStreamEncoder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSMultipartMimeStreamEncoder.h; path = Crashlytics/Shared/FIRCLSNetworking/FIRCLSMultipartMimeStreamEncoder.h; sourceTree = ""; }; 2DE6EAA6583B7AEA30CD4407AD012766 /* FIRCLSUUID.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSUUID.h; path = Crashlytics/Shared/FIRCLSUUID.h; sourceTree = ""; }; 2DEC40F401684953C7258242084802C9 /* opensslv.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = opensslv.h; path = ios/include/openssl/opensslv.h; sourceTree = ""; }; - 2DF13A81DF5DC2707D07670437B879ED /* LNInterpolable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = LNInterpolable.h; sourceTree = ""; }; + 2DF0BCAF251563DCC19C1943043DDE9B /* ReactNativeKeyboardInput.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = ReactNativeKeyboardInput.release.xcconfig; sourceTree = ""; }; 2DF33430257562D27ABB73A05C9ED0FD /* ExceptionWrapper-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "ExceptionWrapper-inl.h"; path = "folly/ExceptionWrapper-inl.h"; sourceTree = ""; }; + 2E11A16FC5E4BF78B586932EF0D7DF75 /* UMReactNativeEventEmitter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMReactNativeEventEmitter.h; sourceTree = ""; }; + 2E24CB94ACDE4208A2F74AFF8B370964 /* RCTReconnectingWebSocket.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCTReconnectingWebSocket.m; path = Libraries/WebSocket/RCTReconnectingWebSocket.m; sourceTree = ""; }; 2E291DD718D8678E695D1CB3D12E569E /* Utility.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Utility.h; path = folly/synchronization/Utility.h; sourceTree = ""; }; 2E3B7B5D952279C78CC0490C8F4C222E /* RangeSse42.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = RangeSse42.cpp; path = folly/detail/RangeSse42.cpp; sourceTree = ""; }; 2E3BBBF03432E9D906358AA7E355DD63 /* FrameTransportImpl.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = FrameTransportImpl.cpp; path = rsocket/framing/FrameTransportImpl.cpp; sourceTree = ""; }; - 2E5FC021907B516E89D8CC0F3E05853E /* LICENCE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENCE; sourceTree = ""; }; + 2E70A33A18E5E1955F5C3B52D6D4D65C /* RCTTextView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTTextView.m; sourceTree = ""; }; 2E71255E3D468B7D445092B63D2AB02A /* Sleeper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Sleeper.h; path = folly/synchronization/detail/Sleeper.h; sourceTree = ""; }; 2E84B732C1D63BD1ADCB8C8869AD6650 /* MasterPtr.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MasterPtr.h; path = folly/experimental/MasterPtr.h; sourceTree = ""; }; 2E93CBD601435B3B6E299AE1396B0156 /* Malloc.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Malloc.h; path = folly/portability/Malloc.h; sourceTree = ""; }; - 2EAFCBAA5D97BE2F1EBB907AC5FA7666 /* EXHaptics.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = EXHaptics.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - 2EDF61BAC33F363752AAA16B0E492F18 /* RCTGIFImageDecoder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTGIFImageDecoder.h; path = Libraries/Image/RCTGIFImageDecoder.h; sourceTree = ""; }; - 2EE7BC04B336F4E7738CF15ADD4B1334 /* React-jsiexecutor.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = "React-jsiexecutor.podspec"; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - 2EF14D6F56A69BDC6B6D7C00339BA895 /* Instance.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = Instance.h; sourceTree = ""; }; + 2EC61611D7A38B4BDCDFDB8347C4F1E3 /* RCTShadowView+Internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RCTShadowView+Internal.h"; sourceTree = ""; }; + 2EDFC82A9FA6B812A1C11B6226D57CA9 /* BugsnagReactNative.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = BugsnagReactNative.release.xcconfig; sourceTree = ""; }; 2EF375909FB5EA0AD94C44236A72537E /* YogaKit.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = YogaKit.modulemap; sourceTree = ""; }; + 2EF3E4F1F17D048546EFD84791B3A7B9 /* RCTI18nManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTI18nManager.h; path = React/CoreModules/RCTI18nManager.h; sourceTree = ""; }; + 2F083888A736E2C447072045F24C02D2 /* UMFaceDetectorInterface.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMFaceDetectorInterface.debug.xcconfig; sourceTree = ""; }; 2F17AE626AB48BA2FECB01DC890BE7B1 /* FIRAnalyticsConfiguration.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAnalyticsConfiguration.h; path = FirebaseCore/Sources/FIRAnalyticsConfiguration.h; sourceTree = ""; }; + 2F1D595180249D6C411CEBF375E6B6C4 /* RCTURLRequestDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTURLRequestDelegate.h; sourceTree = ""; }; + 2F1D943C474D374641A31A797A9E40C2 /* localNotifications.md */ = {isa = PBXFileReference; includeInIndex = 1; name = localNotifications.md; path = docs/localNotifications.md; sourceTree = ""; }; 2F3DB85865D79F4A726C43AAF5A91103 /* SDWeakProxy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWeakProxy.m; path = SDWebImage/Private/SDWeakProxy.m; sourceTree = ""; }; - 2F4AD124F81A8C5AE7F31882E70B16F0 /* RNDateTimePickerManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNDateTimePickerManager.m; path = ios/RNDateTimePickerManager.m; sourceTree = ""; }; + 2F552E514D2EF12B47525EBC4FF41BB9 /* RNLongPressHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNLongPressHandler.h; sourceTree = ""; }; 2F6398AD8936BEFE99D1B77E39D38A53 /* SDAnimatedImage.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDAnimatedImage.m; path = SDWebImage/Core/SDAnimatedImage.m; sourceTree = ""; }; 2F657A85EE3B3EEC36D93838FDAA2691 /* GDTCORUploadPackage.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCORUploadPackage.h; path = GoogleDataTransport/GDTCORLibrary/Public/GDTCORUploadPackage.h; sourceTree = ""; }; - 2F6ED76AB342C2BED3A639A29841D55B /* BugsnagReactNative.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = BugsnagReactNative.h; path = cocoa/BugsnagReactNative.h; sourceTree = ""; }; + 2F673D9D1B32092D286D80FB690741AE /* YGValue.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YGValue.h; path = yoga/YGValue.h; sourceTree = ""; }; 2F92B6663CEAC4B5F3C08886E565F523 /* GULAppDelegateSwizzler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULAppDelegateSwizzler.h; path = GoogleUtilities/AppDelegateSwizzler/Private/GULAppDelegateSwizzler.h; sourceTree = ""; }; + 2F97963337E937189EA9C8BF0BD95C63 /* RCTImageLoaderProtocol.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageLoaderProtocol.h; path = Libraries/Image/RCTImageLoaderProtocol.h; sourceTree = ""; }; 2FC14241A4FB4A7C07F5B0D8922B4AEE /* Base.lproj */ = {isa = PBXFileReference; includeInIndex = 1; name = Base.lproj; path = "Objective-C/TOCropViewController/Resources/Base.lproj"; sourceTree = ""; }; - 2FDDAB84D4269E33EEEF7CB3E15DF2BE /* EXHapticsModule.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXHapticsModule.m; path = EXHaptics/EXHapticsModule.m; sourceTree = ""; }; + 2FC31B85AE901CDD404EF5E4319E4997 /* ReactNativeKeyboardTrackingView.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = ReactNativeKeyboardTrackingView.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; 2FDDFD2EDD603B22FB67D2FDE3651F3E /* krb5_asn.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = krb5_asn.h; path = ios/include/openssl/krb5_asn.h; sourceTree = ""; }; - 2FE823472FBF17C51C7D186752692E69 /* RCTCxxUtils.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTCxxUtils.mm; sourceTree = ""; }; + 2FDFDE9284FAFA29E93E69931DBB6D93 /* BSG_KSJSONCodecObjC.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BSG_KSJSONCodecObjC.m; sourceTree = ""; }; + 2FEE374725A51DAC67D32BEDE90A543B /* contents.xcworkspacedata */ = {isa = PBXFileReference; includeInIndex = 1; path = contents.xcworkspacedata; sourceTree = ""; }; + 2FF28F4AD267E8CC9B11CA62B73C5685 /* RNGestureHandlerManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNGestureHandlerManager.m; path = ios/RNGestureHandlerManager.m; sourceTree = ""; }; + 30027C4C59F07D43E67791AD69BE78A3 /* ReactNativeART.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = ReactNativeART.release.xcconfig; sourceTree = ""; }; 30163F074732A3DCD3326EAE9F1DF671 /* FIRCLSURLSession.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSURLSession.h; path = Crashlytics/Crashlytics/FIRCLSURLSession/FIRCLSURLSession.h; sourceTree = ""; }; - 305863733A333402FB662DE3CD2030D9 /* Bugsnag.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = Bugsnag.h; sourceTree = ""; }; + 302C8310BE1D09F70010C1F701DB41F6 /* UMReactNativeAdapter-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "UMReactNativeAdapter-prefix.pch"; sourceTree = ""; }; + 302F23A8F0AA3C919D8F58AAED5AF0F7 /* FBLazyVector.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = FBLazyVector.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; 305E4461F20DCC332F3249BAEE807FBD /* SKScrollViewDescriptor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SKScrollViewDescriptor.h; path = iOS/Plugins/FlipperKitLayoutPlugin/FlipperKitLayoutPlugin/descriptors/SKScrollViewDescriptor.h; sourceTree = ""; }; - 3073C8F0BE8E66485FAA5EFA26999703 /* React-RCTLinking-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-RCTLinking-prefix.pch"; sourceTree = ""; }; + 30815AA414A9806DC08E8FFF479F2E66 /* RNFastImage-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNFastImage-prefix.pch"; sourceTree = ""; }; + 3094008CAE112CF6ED6AF1675211F86A /* RCTBridge.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTBridge.m; sourceTree = ""; }; + 309CC8389030B4B592160DADDB0C242D /* RNFBCrashlytics.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNFBCrashlytics.debug.xcconfig; sourceTree = ""; }; 309FD4BB766095C8FFCE8F8CA5ECB8C8 /* utils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = utils.h; path = src/utils/utils.h; sourceTree = ""; }; + 30B81318CEBAC9029D39DB0942C62F50 /* RCTVirtualTextShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTVirtualTextShadowView.m; sourceTree = ""; }; + 30D04107196DB48732830DC1309046AC /* RCTSurfaceRootShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSurfaceRootShadowView.h; sourceTree = ""; }; + 30D9AD3BD7FB649598B7D77965B6F417 /* React-RCTVibration.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-RCTVibration.release.xcconfig"; sourceTree = ""; }; 30E7216A300013A4FD7909722A8BC12B /* lossless_enc_msa.c */ = {isa = PBXFileReference; includeInIndex = 1; name = lossless_enc_msa.c; path = src/dsp/lossless_enc_msa.c; sourceTree = ""; }; + 30F398055ADF624F0EDC591B8B0BE805 /* RCTMultilineTextInputView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTMultilineTextInputView.h; sourceTree = ""; }; 310035D1FB78DE2D64DB8961EFE8ED01 /* ScheduledSubscription.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = ScheduledSubscription.cpp; path = rsocket/internal/ScheduledSubscription.cpp; sourceTree = ""; }; 310A9521535921338D30708091A337CD /* FlipperStateUpdateListener.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FlipperStateUpdateListener.h; path = iOS/FlipperKit/FlipperStateUpdateListener.h; sourceTree = ""; }; + 3113BA32877CA6A0FA4EA673733A0AA6 /* KeyboardTrackingViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = KeyboardTrackingViewManager.h; path = lib/KeyboardTrackingViewManager.h; sourceTree = ""; }; 31242A4A3BA081BE176B63314AA7D197 /* fr.lproj */ = {isa = PBXFileReference; includeInIndex = 1; name = fr.lproj; path = "Objective-C/TOCropViewController/Resources/fr.lproj"; sourceTree = ""; }; - 312D6C38A39D7D464027E4AC1F6CA3F6 /* EXSessionResumableDownloadTaskDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = EXSessionResumableDownloadTaskDelegate.h; sourceTree = ""; }; 3132647FADA358D1B0D5C4B448AE9F02 /* Init.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Init.h; path = folly/ssl/Init.h; sourceTree = ""; }; 3132BE5A532EA723F412A6285AC85FC2 /* DelayedDestruction.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DelayedDestruction.h; path = folly/io/async/DelayedDestruction.h; sourceTree = ""; }; - 315B96E1A389F5742EECA6EB59B63DA4 /* UMReactNativeAdapter.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMReactNativeAdapter.debug.xcconfig; sourceTree = ""; }; 315C9092CAC50B21E5C250DEA359D298 /* CocoaLibEvent.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = CocoaLibEvent.debug.xcconfig; sourceTree = ""; }; 31680BAC2B5D1D52543FCFEB90059311 /* TimedDrivableExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TimedDrivableExecutor.h; path = folly/executors/TimedDrivableExecutor.h; sourceTree = ""; }; - 317DDD2002E14CF31540476448A321F8 /* RAMBundleRegistry.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RAMBundleRegistry.h; sourceTree = ""; }; + 317CD09139094B722D0843CBCF1A7877 /* Feather.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = Feather.ttf; path = Fonts/Feather.ttf; sourceTree = ""; }; 317F01BDECBC5146ADC88CB6C75D1F83 /* TokenBucket.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TokenBucket.h; path = folly/TokenBucket.h; sourceTree = ""; }; 317F36784686BE8DA048215444CF35F1 /* SKStateUpdateCPPWrapper.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = SKStateUpdateCPPWrapper.mm; path = iOS/FlipperKit/SKStateUpdateCPPWrapper.mm; sourceTree = ""; }; 3181D83556FA3489517437FB958CB6BF /* bignum.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = bignum.cc; path = "double-conversion/bignum.cc"; sourceTree = ""; }; 318809000B2034C42F024E63559E32B6 /* ScheduledSingleSubscription.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = ScheduledSingleSubscription.cpp; path = rsocket/internal/ScheduledSingleSubscription.cpp; sourceTree = ""; }; 3198919F3064B327D1044E70E2ED666A /* cct.nanopb.c */ = {isa = PBXFileReference; includeInIndex = 1; name = cct.nanopb.c; path = GoogleDataTransportCCTSupport/GDTCCTLibrary/Protogen/nanopb/cct.nanopb.c; sourceTree = ""; }; - 31ADD9F6D606D4723C903E071B53FF57 /* RNReanimated-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNReanimated-prefix.pch"; sourceTree = ""; }; + 319A7BC1F0DC1A8C2E8611F0E3E9C8F6 /* UMConstantsInterface.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMConstantsInterface.release.xcconfig; sourceTree = ""; }; + 31B287BFBC3F666064A1C36269F07FD1 /* RNScreens.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNScreens.release.xcconfig; sourceTree = ""; }; + 31B30C0AF46CFD0E44714BC5856834C1 /* BSG_KSJSONCodec.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSJSONCodec.h; sourceTree = ""; }; 31B9F5606C0A003A29164747152FD690 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; name = README.md; path = rsocket/benchmarks/README.md; sourceTree = ""; }; - 31CADE3B22E1E32AA799BEBC96C89F2E /* RNCAppearanceProvider.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCAppearanceProvider.m; path = ios/Appearance/RNCAppearanceProvider.m; sourceTree = ""; }; - 31DB51E8A3D5205CAF06CD795DA37168 /* RCTTurboModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTurboModule.h; sourceTree = ""; }; - 31DEE730FE333EEBD7688AF684C1DB65 /* BSG_RFC3339DateTool.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BSG_RFC3339DateTool.m; sourceTree = ""; }; - 31EE4D699487DFA9B5739BFE68377FE6 /* LNInterpolable.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = LNInterpolable.m; sourceTree = ""; }; + 31C9AE489D0D1FCEA6B25AEADFB67EAF /* UMCore-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "UMCore-prefix.pch"; sourceTree = ""; }; + 31DE601F5B00F05D733ACA7227878644 /* RCTConvert+Text.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RCTConvert+Text.m"; sourceTree = ""; }; 3217A87B53EF22776DC07F1BB8099DA2 /* PriorityUnboundedBlockingQueue.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PriorityUnboundedBlockingQueue.h; path = folly/executors/task_queue/PriorityUnboundedBlockingQueue.h; sourceTree = ""; }; - 3238AE70650330AAB8D19818EC248F8D /* RNReanimated.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNReanimated.debug.xcconfig; sourceTree = ""; }; - 323CACA5D98061184BA9E6A93C37C476 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; + 32200620D32082C1EB6293DC0C0D5F53 /* 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; }; + 3224C3AF12965DCE435D987250A52E53 /* RCTI18nManager.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTI18nManager.mm; sourceTree = ""; }; + 3245A244A5A861415340CD0618037C91 /* BugsnagUser.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagUser.m; sourceTree = ""; }; 325718916693D8D2D6BCEB6863EB2BDD /* Sockets.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = Sockets.cpp; path = folly/portability/Sockets.cpp; sourceTree = ""; }; - 325811BC34872EF4BBB0B1FD669575DB /* RCTBundleURLProvider.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBundleURLProvider.h; sourceTree = ""; }; - 325ADD0A48DABBEE1E40955FFF936717 /* UMSingletonModule.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = UMSingletonModule.m; path = UMCore/UMSingletonModule.m; sourceTree = ""; }; - 328B0CA65EF2262F638651C7A6AA1AFF /* installation.md */ = {isa = PBXFileReference; includeInIndex = 1; name = installation.md; path = docs/installation.md; sourceTree = ""; }; + 32744568A11593303C3B498CB700AD54 /* UMReactNativeAdapter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMReactNativeAdapter.h; sourceTree = ""; }; 328CBCB00EDA5D464EAF30F38790A598 /* GULSwizzler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GULSwizzler.m; path = GoogleUtilities/MethodSwizzler/GULSwizzler.m; sourceTree = ""; }; - 328D33677E43C627904AA64DB0C9ADAB /* UMCameraInterface.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMCameraInterface.release.xcconfig; sourceTree = ""; }; 329C548D9C662F038B5B5394345EB26B /* Unicode.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = Unicode.cpp; path = folly/Unicode.cpp; sourceTree = ""; }; - 329F61807C938F88028E324BD933C9C1 /* RNNotificationCenterListener.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNNotificationCenterListener.h; path = RNNotifications/RNNotificationCenterListener.h; sourceTree = ""; }; - 32A2F852FACB7687260A645A7CA35306 /* EXVideoThumbnails.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = EXVideoThumbnails.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; 32A30B52E9C591000F8E2A982098C433 /* FIRCLSSymbolicationOperation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSSymbolicationOperation.h; path = Crashlytics/Crashlytics/Operations/Symbolication/FIRCLSSymbolicationOperation.h; sourceTree = ""; }; - 32A9756511569DC9C0C6BEF16C916092 /* RCTLayout.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTLayout.m; sourceTree = ""; }; - 32AA328984C187EE8B0FADB47E97921F /* RNDeviceInfo-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNDeviceInfo-dummy.m"; sourceTree = ""; }; - 32B6AFB4FF39246C40AF62895EEDFAFB /* LICENSE.txt */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE.txt; sourceTree = ""; }; 32C409F711D136ABBE7706D44CB72419 /* e_os2.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = e_os2.h; path = ios/include/openssl/e_os2.h; sourceTree = ""; }; 32E1731084B4625473B52CDDD4F4CE46 /* RSocketServer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RSocketServer.h; path = rsocket/RSocketServer.h; sourceTree = ""; }; - 32EFF23C5D7562F6C858A50A7A4258A8 /* AntDesign.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = AntDesign.ttf; path = Fonts/AntDesign.ttf; sourceTree = ""; }; + 32EBE25597E3A830306E0B8C13C95089 /* RCTImageURLLoaderWithAttribution.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageURLLoaderWithAttribution.h; path = Libraries/Image/RCTImageURLLoaderWithAttribution.h; sourceTree = ""; }; 32F0C2598813B8577CA20426C6F8C906 /* FIRConfiguration.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRConfiguration.h; path = FirebaseCore/Sources/Public/FIRConfiguration.h; sourceTree = ""; }; + 32F9D824DCFDD5012667D8142EEEF07A /* ARTSurfaceView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ARTSurfaceView.h; path = ios/ARTSurfaceView.h; sourceTree = ""; }; 3301911E754A4C286ABC7C729C5CE04B /* cached-powers.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = "cached-powers.cc"; path = "double-conversion/cached-powers.cc"; sourceTree = ""; }; + 3306740FAB8D11FC5678EF7CE743EAD3 /* BSG_KSSystemInfo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSSystemInfo.h; sourceTree = ""; }; 331430CBE1AD5DB6F0251DA42DF33E66 /* SKNodeDescriptor.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = SKNodeDescriptor.mm; path = iOS/Plugins/FlipperKitLayoutPlugin/FlipperKitLayoutPlugin/SKNodeDescriptor.mm; sourceTree = ""; }; 332A6D43F1C91CA8F795E921BCA7D747 /* FIRCLSCompactUnwind_Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSCompactUnwind_Private.h; path = Crashlytics/Crashlytics/Unwind/Compact/FIRCLSCompactUnwind_Private.h; sourceTree = ""; }; 33362207E38B4AB33CC5504F86067DB6 /* Flipper-Folly-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Flipper-Folly-prefix.pch"; sourceTree = ""; }; @@ -7422,77 +7365,82 @@ 336CEDFFACA0C972208DE707FD79F5B5 /* SocketFastOpen.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SocketFastOpen.h; path = folly/detail/SocketFastOpen.h; sourceTree = ""; }; 33910D6A569B0891909C64F4355FD973 /* FirebaseCoreDiagnostics.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = FirebaseCoreDiagnostics.release.xcconfig; sourceTree = ""; }; 3391B4E3F9BE2D0663AA02FA39A6B896 /* DistributedMutex-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "DistributedMutex-inl.h"; path = "folly/synchronization/DistributedMutex-inl.h"; sourceTree = ""; }; - 33ADF32D45491F36ACC04AA21786D9FC /* RNFetchBlobConst.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNFetchBlobConst.h; path = ios/RNFetchBlobConst.h; sourceTree = ""; }; + 33923137DA40CC87E0CF534F2AC99F0E /* EXConstantsService.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXConstantsService.h; path = EXConstants/EXConstantsService.h; sourceTree = ""; }; + 33AE7E2BC8F03949CB5151D11F1C3A81 /* RNGestureHandler.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNGestureHandler.release.xcconfig; sourceTree = ""; }; 33D51A8AFF07DCF68B2BB41459E9B8A1 /* FIRComponentContainerInternal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRComponentContainerInternal.h; path = FirebaseCore/Sources/FIRComponentContainerInternal.h; sourceTree = ""; }; - 33D8BB538F1828D9A00AA9BC55D2FCC3 /* RCTBorderDrawing.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBorderDrawing.h; sourceTree = ""; }; - 33FB5D491BE3A8B7C1FA069F1D1922EE /* RCTLayoutAnimationGroup.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTLayoutAnimationGroup.h; sourceTree = ""; }; + 3402DA64B25D07D2CEFDF8467D46662A /* EXFileSystem-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "EXFileSystem-prefix.pch"; sourceTree = ""; }; 34035BD0C190B26A0634E24C0E63A8D3 /* ThreadCachedInt.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ThreadCachedInt.h; path = folly/ThreadCachedInt.h; sourceTree = ""; }; 340A87757E3E91E2BD60537F55EB75DA /* Lazy.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Lazy.h; path = folly/Lazy.h; sourceTree = ""; }; + 34105583E55E11A350CC94C083EE0812 /* RNDeviceInfo.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNDeviceInfo.release.xcconfig; sourceTree = ""; }; + 3411586E47B7D03288A8ED57EF5342AF /* Yoga.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = Yoga.release.xcconfig; sourceTree = ""; }; 343EA6117AFE0D52C41B73F2E515E0D0 /* Core.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Core.h; path = folly/futures/detail/Core.h; sourceTree = ""; }; - 3448D6404B855EB294BFB114FA1124DF /* KeyCommands-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "KeyCommands-prefix.pch"; sourceTree = ""; }; - 346D51C0E4A81A54101A5E224D1D0E0D /* RCTInvalidating.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTInvalidating.h; sourceTree = ""; }; + 34630BFFDAF5F576B1AD4719823F7FE3 /* UMUtilities.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMUtilities.h; path = UMCore/UMUtilities.h; sourceTree = ""; }; + 34669048484382716437ADB968C0C294 /* RNFBCrashlyticsInitProvider.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNFBCrashlyticsInitProvider.h; path = ios/RNFBCrashlytics/RNFBCrashlyticsInitProvider.h; sourceTree = ""; }; 3489F8F38CF643B6E1A1188CFBF5A45F /* ScopeGuard.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = ScopeGuard.cpp; path = folly/ScopeGuard.cpp; sourceTree = ""; }; 349608C8E9EB5761A5358BDF70EC0EA2 /* SDWebImage.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = SDWebImage.debug.xcconfig; sourceTree = ""; }; 34B5E838B457CDB0B30A72FC203E30A7 /* PropagateConst.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PropagateConst.h; path = folly/lang/PropagateConst.h; sourceTree = ""; }; + 34C6DEE7DC2BA828BDB505D8B6B68001 /* FBLazyVector.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBLazyVector.h; path = FBLazyVector/FBLazyVector.h; sourceTree = ""; }; 34C842CD40D88AB4B2BF24FC77DA0009 /* libRNFBAnalytics.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libRNFBAnalytics.a; path = libRNFBAnalytics.a; sourceTree = BUILT_PRODUCTS_DIR; }; 34CA3EAB8271BD27AC665FABD6262137 /* SDWebImageCompat.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageCompat.h; path = SDWebImage/Core/SDWebImageCompat.h; sourceTree = ""; }; - 34E3E2F0D3B69CBBF936FF8309660F15 /* KeyboardTrackingViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = KeyboardTrackingViewManager.m; path = lib/KeyboardTrackingViewManager.m; sourceTree = ""; }; + 34D4B8A8DB7C8315218A6C7FF6F0A203 /* React-RCTLinking.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-RCTLinking.debug.xcconfig"; sourceTree = ""; }; + 34DCC42FA67629FEB512605D1BFEBDE0 /* RNForceTouchHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNForceTouchHandler.h; sourceTree = ""; }; 34EDFC0601787FF6E6B34F444FC4958B /* FrameType.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = FrameType.cpp; path = rsocket/framing/FrameType.cpp; sourceTree = ""; }; - 3539ED59EB09425783D209F803C06F29 /* RNPushKitEventHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNPushKitEventHandler.h; path = RNNotifications/RNPushKitEventHandler.h; sourceTree = ""; }; - 3555D2278049B0F16B5CD2231BAE4CCE /* RCTJSInvokerModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTJSInvokerModule.h; sourceTree = ""; }; - 3569675BAA3D9C4169046144EAD8ED54 /* NSTextStorage+FontScaling.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "NSTextStorage+FontScaling.m"; sourceTree = ""; }; - 356C3802AAB930F1B1EC52AD86B24EB9 /* RNFBAnalytics-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNFBAnalytics-prefix.pch"; sourceTree = ""; }; + 34F954E9B90DF67149D1DF8AEA262E2B /* RNFastImage-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNFastImage-dummy.m"; sourceTree = ""; }; + 352005A5ACDE7F22EC4B50DA27C86DCC /* UMAccelerometerInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMAccelerometerInterface.h; path = UMSensorsInterface/UMAccelerometerInterface.h; sourceTree = ""; }; + 352A9DF0D33189F7B359EABBD63C3260 /* RCTErrorInfo.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTErrorInfo.m; sourceTree = ""; }; + 356D6C04D0A12FFEA005F737D50CB188 /* RNJitsiMeetView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNJitsiMeetView.m; path = ios/RNJitsiMeetView.m; sourceTree = ""; }; 3576D97114092E1C8E8FF8FBA128C15B /* SKHiddenWindow.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SKHiddenWindow.h; path = iOS/Plugins/FlipperKitLayoutPlugin/FlipperKitLayoutPlugin/utils/SKHiddenWindow.h; sourceTree = ""; }; 35837220F1231EFFCA25FBC405F6FC14 /* dynamic.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = dynamic.h; path = folly/dynamic.h; sourceTree = ""; }; + 359486B7286C835AC9695AACF2722EAE /* JSBigString.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = JSBigString.cpp; sourceTree = ""; }; 35967FA5DF24995ED311FEED8F36AB8F /* FIRCLSNetworkOperation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCLSNetworkOperation.m; path = Crashlytics/Crashlytics/Settings/Operations/FIRCLSNetworkOperation.m; sourceTree = ""; }; 359B99B052DDAC66B0B97187C86BEA36 /* ClockGettimeWrappers.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = ClockGettimeWrappers.cpp; path = folly/ClockGettimeWrappers.cpp; sourceTree = ""; }; 35A494A764DF4FE9DAE895F6592A6FEE /* SDWebImageDownloaderConfig.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWebImageDownloaderConfig.m; path = SDWebImage/Core/SDWebImageDownloaderConfig.m; sourceTree = ""; }; + 35C05C495ECA8F3B74C1608D5698E1F0 /* EXSessionDownloadTaskDelegate.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = EXSessionDownloadTaskDelegate.m; sourceTree = ""; }; 35CC24F928CAC54296E03B0F051806F1 /* PolyDetail.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PolyDetail.h; path = folly/detail/PolyDetail.h; sourceTree = ""; }; - 35E6909514C72A28D802A5BA1D95000C /* React-Core.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-Core.debug.xcconfig"; sourceTree = ""; }; - 35EA8D7C682966B982E188098EC2D382 /* UMModuleRegistry.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMModuleRegistry.h; sourceTree = ""; }; 35FAE16347FD77AD4FA13BE95B2EA6EA /* ScopedEventBaseThread.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ScopedEventBaseThread.h; path = folly/io/async/ScopedEventBaseThread.h; sourceTree = ""; }; + 362C0F2F708B1CA634761D478284C74B /* RCTInputAccessoryViewContent.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTInputAccessoryViewContent.h; sourceTree = ""; }; 362E6DF70DDF44613FAF8E9C07757DA9 /* UIImage+GIF.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIImage+GIF.h"; path = "SDWebImage/Core/UIImage+GIF.h"; sourceTree = ""; }; 363051A351FB101CB4DB757D0C56E942 /* DynamicConverter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DynamicConverter.h; path = folly/DynamicConverter.h; sourceTree = ""; }; + 3638E68D65EF41AD7607076000BEAF83 /* RCTNullability.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTNullability.h; sourceTree = ""; }; + 3640393C5156F9C77C23B5441732D675 /* BSG_KSSignalInfo.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSSignalInfo.c; sourceTree = ""; }; 36532AC1B65DC9D399C97E41F28ACC54 /* FIRInstallationsItem.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstallationsItem.m; path = FirebaseInstallations/Source/Library/FIRInstallationsItem.m; sourceTree = ""; }; 3663B2B47DA53BA34C56D1CBC6DCD2D4 /* WarmResumeManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = WarmResumeManager.h; path = rsocket/internal/WarmResumeManager.h; sourceTree = ""; }; - 366DE628851B630B8F8DB599E4A6EEBA /* Orientation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = Orientation.m; path = iOS/RCTOrientation/Orientation.m; sourceTree = ""; }; - 367C34093ECA2E67BD089EBD9DB8457E /* RCTPointerEvents.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTPointerEvents.h; sourceTree = ""; }; + 36657BF4BBB7BE8059A6EBD1E10C37A0 /* EXAppleAuthenticationButtonViewManagers.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXAppleAuthenticationButtonViewManagers.m; path = EXAppleAuthentication/EXAppleAuthenticationButtonViewManagers.m; sourceTree = ""; }; + 36853FC6F15D3BD1A734B57036B0E500 /* RCTConvert+FIRApp.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "RCTConvert+FIRApp.h"; path = "ios/RNFBApp/RCTConvert+FIRApp.h"; sourceTree = ""; }; + 36CB10181D1D80A37D6563FE6C1E5E78 /* RCTUITextField.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTUITextField.h; sourceTree = ""; }; + 36CB4A6EA92CE59262530D8A63D84FEC /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; 36D23D83A4287B8F5CD12CFA96EB3202 /* FixedString.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FixedString.h; path = folly/FixedString.h; sourceTree = ""; }; - 36F6E40F093384CB14CB295B27ABC9F9 /* EXHaptics.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = EXHaptics.debug.xcconfig; sourceTree = ""; }; - 37176B64919F7E617125B15953291F78 /* RCTSwitchManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSwitchManager.h; sourceTree = ""; }; + 36FAA34B9091992AC29AD6C429424384 /* UMInternalModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMInternalModule.h; sourceTree = ""; }; 37260B6F95E6B538C77461B4B6D05114 /* FIRCLSBinaryImage.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCLSBinaryImage.m; path = Crashlytics/Crashlytics/Components/FIRCLSBinaryImage.m; sourceTree = ""; }; + 3737D2F084443F0B2F0104E57A8E33D9 /* project.pbxproj */ = {isa = PBXFileReference; includeInIndex = 1; path = project.pbxproj; sourceTree = ""; }; 373838BA43BFCEFAE7F39B409FCC7B47 /* ScopeGuard.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = ScopeGuard.cpp; path = folly/ScopeGuard.cpp; sourceTree = ""; }; 3750DCB8CD91AD520B68D632A0F0309E /* StaticSingletonManager.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = StaticSingletonManager.cpp; path = folly/detail/StaticSingletonManager.cpp; sourceTree = ""; }; 37592FDAD45752511010F4B06AC57355 /* libReact-cxxreact.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libReact-cxxreact.a"; path = "libReact-cxxreact.a"; sourceTree = BUILT_PRODUCTS_DIR; }; 377F76457D9B686BE546688AA47B8CBC /* Pods-NotificationService.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-NotificationService.release.xcconfig"; sourceTree = ""; }; 37880D003F3EF2EC6BD191F6E5B2A95A /* FIRCLSReportManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSReportManager.h; path = Crashlytics/Crashlytics/Controllers/FIRCLSReportManager.h; sourceTree = ""; }; 379E0871E8C66FF621CE516373586224 /* upsampling_sse2.c */ = {isa = PBXFileReference; includeInIndex = 1; name = upsampling_sse2.c; path = src/dsp/upsampling_sse2.c; sourceTree = ""; }; + 37ACDF2E77393C4BB6C57BEAEA4AD1D0 /* React-RCTSettings.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-RCTSettings.release.xcconfig"; sourceTree = ""; }; + 37B911D1E27C8FAA0F25F0FC68E46ECA /* SecureStorage.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SecureStorage.h; path = ios/SecureStorage.h; sourceTree = ""; }; 37C6BC43D1C6C0993A711E4BCF33874C /* SDWebImageWebPCoder.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = SDWebImageWebPCoder.debug.xcconfig; sourceTree = ""; }; + 37C7AE9BC89E33B1AF117DB143AB6435 /* React-RCTLinking.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-RCTLinking.release.xcconfig"; sourceTree = ""; }; 37CDB61E056A7D391B5880650C9902FC /* FBCxxFollyDynamicConvert.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBCxxFollyDynamicConvert.h; path = iOS/FlipperKit/FBCxxFollyDynamicConvert/FBCxxFollyDynamicConvert.h; sourceTree = ""; }; + 37D3068A0E311819E00D25AE438C4D41 /* RCTConvertHelpers.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTConvertHelpers.h; sourceTree = ""; }; 37EC3FDE845C5437D57F971031211C33 /* MicroLock.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = MicroLock.cpp; path = folly/MicroLock.cpp; sourceTree = ""; }; - 37FC2B874DAAE07CE3174D9DFFE5CAFB /* RCTSurfaceView+Internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RCTSurfaceView+Internal.h"; sourceTree = ""; }; - 381810022A980CE3E07CBAFCCA20F69B /* React-RCTSettings.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-RCTSettings.release.xcconfig"; sourceTree = ""; }; + 37EFAE7AC35E13608EE858E835CBE78C /* RNCMaskedViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCMaskedViewManager.h; path = ios/RNCMaskedViewManager.h; sourceTree = ""; }; + 38023691E1EF8AA80C51B1C7203D1690 /* RNGestureHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNGestureHandler.m; path = ios/RNGestureHandler.m; sourceTree = ""; }; + 380F52237572AF309222A94D8E4F5089 /* RCTFileRequestHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTFileRequestHandler.h; path = Libraries/Network/RCTFileRequestHandler.h; sourceTree = ""; }; 3819EA000C553270B052608173ED0BAA /* buffer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = buffer.h; path = src/event2/buffer.h; sourceTree = ""; }; - 381F8C518E1401676014CF63F3ADA4D3 /* RCTBaseTextInputView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTBaseTextInputView.m; sourceTree = ""; }; 382B7ED7CC50FCC22787DB5FEAE68964 /* FBLPromise+Await.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "FBLPromise+Await.m"; path = "Sources/FBLPromises/FBLPromise+Await.m"; sourceTree = ""; }; 382C6B3C504308633B94D4FA7269C619 /* dec_mips_dsp_r2.c */ = {isa = PBXFileReference; includeInIndex = 1; name = dec_mips_dsp_r2.c; path = src/dsp/dec_mips_dsp_r2.c; sourceTree = ""; }; - 382EFED58DCA8E7193FCFBD1BB62B4B1 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; - 38312F520B2C0F50CE500EB026C95A1C /* RCTTypeSafety-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RCTTypeSafety-dummy.m"; sourceTree = ""; }; - 383144616A9AB20CBE8698C62B6FD237 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; - 38722CCD059CF731E8EB87988132C588 /* RCTExceptionsManager.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTExceptionsManager.mm; sourceTree = ""; }; - 387B70E27F656C0E6E9F164C880931BE /* jsi.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = jsi.cpp; sourceTree = ""; }; + 385C921A580DD41425132470A995ADA8 /* RCTAppState.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTAppState.mm; sourceTree = ""; }; + 3868817D9BE5906C6B8EA876A82A24C0 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; 3883532CCFB6AAFFAD2F38BCA6B4A0F9 /* NetOps.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = NetOps.h; path = folly/net/NetOps.h; sourceTree = ""; }; - 3889B761F61E92B86DAC2BC855208080 /* UIResponder+FirstResponder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIResponder+FirstResponder.h"; path = "lib/UIResponder+FirstResponder.h"; sourceTree = ""; }; 3890A2E9E1D29DF9E05B62849B17B7BD /* IPAddress.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = IPAddress.h; path = folly/IPAddress.h; sourceTree = ""; }; - 3893ACF63DD49DECAE775B6F18CE99D1 /* YGNodePrint.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = YGNodePrint.cpp; path = yoga/YGNodePrint.cpp; sourceTree = ""; }; - 38A9A8F8C0F7BC70FFB6E6D23E57F3A6 /* React-jsi.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = "React-jsi.podspec"; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - 38CE52EF9655323D0BB6B719D3109487 /* CxxNativeModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = CxxNativeModule.h; sourceTree = ""; }; - 38E507208666EAA5E97F8CE95EE71C4C /* RNNativeViewHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNNativeViewHandler.h; sourceTree = ""; }; - 38E974DE38662217A03138E2F4A82ED9 /* JSIndexedRAMBundle.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = JSIndexedRAMBundle.h; sourceTree = ""; }; + 38C9DA88C6E31707D52117B58DC2F0A3 /* jsi.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = jsi.h; sourceTree = ""; }; + 38DE84983C96F3CEF7C835E037BA8B09 /* RCTDevLoadingViewSetEnabled.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTDevLoadingViewSetEnabled.m; sourceTree = ""; }; 38ED227967D423511B8471BC47BF9760 /* FBLPromise+Delay.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "FBLPromise+Delay.m"; path = "Sources/FBLPromises/FBLPromise+Delay.m"; sourceTree = ""; }; 38FF482A8A3F534C5AFE2BE09662E9AC /* FlipperConnectionManagerImpl.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = FlipperConnectionManagerImpl.cpp; path = xplat/Flipper/FlipperConnectionManagerImpl.cpp; sourceTree = ""; }; - 3901A3B3F06ECD8EC4958E1172ACCF1B /* EXPermissions-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "EXPermissions-dummy.m"; sourceTree = ""; }; - 3918786E8E20C9BE29981AFDDF8D1ECA /* UIView+React.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "UIView+React.h"; sourceTree = ""; }; + 391C453007A91D79C24F5D247EF4CBE2 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; 392D8F649B573D0B71F6FED94B8ADB3A /* dec.c */ = {isa = PBXFileReference; includeInIndex = 1; name = dec.c; path = src/dsp/dec.c; sourceTree = ""; }; 392E85A6858ABE7569F9F5529E2677B4 /* SSLSession.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SSLSession.h; path = folly/ssl/SSLSession.h; sourceTree = ""; }; 3933450B6CBB5C6E3C628F46928CF0AD /* UIView+SKInvalidation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIView+SKInvalidation.h"; path = "iOS/Plugins/FlipperKitLayoutPlugin/FlipperKitLayoutPlugin/UIView+SKInvalidation.h"; sourceTree = ""; }; @@ -7500,54 +7448,61 @@ 3947E3976826D1D8395F15F91E0EFC29 /* engine.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = engine.h; path = ios/include/openssl/engine.h; sourceTree = ""; }; 395D5B2342644C97DDCBFEE82D2430B0 /* UninitializedMemoryHacks.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UninitializedMemoryHacks.h; path = folly/memory/UninitializedMemoryHacks.h; sourceTree = ""; }; 3966967B277AC2F3E8AE6BCF38087818 /* Flowable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Flowable.h; path = yarpl/flowable/Flowable.h; sourceTree = ""; }; - 397D798D80CF6E15765D698BD0E3762A /* RCTRefreshControl.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTRefreshControl.m; sourceTree = ""; }; - 39A0AD781D6BD52414608D51D30D7885 /* UMBarCodeScannerInterface.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMBarCodeScannerInterface.debug.xcconfig; sourceTree = ""; }; - 39BC26BC21FB366CB0D48385D4F5E46A /* UMReactNativeAdapter.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = UMReactNativeAdapter.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - 39CBC53CBC21C37833DE520B3FBB4902 /* REAStyleNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REAStyleNode.m; sourceTree = ""; }; + 397FF534712EA1ED510833A4DA72C638 /* react-native-cookies-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "react-native-cookies-prefix.pch"; sourceTree = ""; }; + 39AC9E745BA68706B0AE89D9D66F8D50 /* BSG_KSDynamicLinker.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSDynamicLinker.c; sourceTree = ""; }; + 39B3A5D82B7D2DC68150994DD9133159 /* UMFontInterface.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMFontInterface.debug.xcconfig; sourceTree = ""; }; 39D0DBE2677AD7AEB0D115FAB6DA6B3C /* ObservableConcatOperators.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ObservableConcatOperators.h; path = yarpl/observable/ObservableConcatOperators.h; sourceTree = ""; }; 39D749A4B1348C9699081C2A129C5607 /* FlipperState.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = FlipperState.cpp; path = xplat/Flipper/FlipperState.cpp; sourceTree = ""; }; - 39F46680FF08FA6F0073C1BD702C5DCF /* SimpleLineIcons.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = SimpleLineIcons.ttf; path = Fonts/SimpleLineIcons.ttf; sourceTree = ""; }; - 3A0D9D341A2829B61652D7C008D135C0 /* EXWebBrowser.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXWebBrowser.h; path = EXWebBrowser/EXWebBrowser.h; sourceTree = ""; }; + 39D8A22073378B2ECD14D0A37DAB59D2 /* react-native-jitsi-meet.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "react-native-jitsi-meet.release.xcconfig"; sourceTree = ""; }; + 39ED455DE694BB55F4FAD599B2904A76 /* BugsnagSink.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagSink.m; sourceTree = ""; }; + 39EE41BBF9CE955A0BE21705EDCB6103 /* EXVideoPlayerViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = EXVideoPlayerViewController.h; sourceTree = ""; }; + 3A003B35916E626E6D132BEBE8E7FE71 /* 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; }; + 3A1E8F9C133F6B57A5702F13BF0F9E12 /* LICENSE.md */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE.md; sourceTree = ""; }; + 3A237921D4094A3F7DB5E38517E535ED /* BSG_KSCrashC.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSCrashC.c; sourceTree = ""; }; 3A3D1A76F4A5CF45A49B858F6A0DF324 /* FIRCLSCrashedMarkerFile.c */ = {isa = PBXFileReference; includeInIndex = 1; name = FIRCLSCrashedMarkerFile.c; path = Crashlytics/Crashlytics/Components/FIRCLSCrashedMarkerFile.c; sourceTree = ""; }; + 3A4010E0820914403105766CA640AA0A /* RCTDeviceInfo.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTDeviceInfo.mm; sourceTree = ""; }; + 3A40270ABBA4DDB8980ECC88D0C87EE2 /* MessageQueueThread.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = MessageQueueThread.h; sourceTree = ""; }; 3A41EF9B487EC8CB415C49EAF6C94677 /* StaticTracepoint-ELFx86.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "StaticTracepoint-ELFx86.h"; path = "folly/tracing/StaticTracepoint-ELFx86.h"; sourceTree = ""; }; 3A4F4C0BCDE1E7222A9C16BB552976D5 /* Exception.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Exception.h; path = folly/lang/Exception.h; sourceTree = ""; }; 3A5C68C3E06CABDDC5A1124E030379E2 /* CancellationToken.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CancellationToken.h; path = folly/CancellationToken.h; sourceTree = ""; }; 3A629223F976F71639D71C0F1B2F28BB /* FIRCLSRecordBase.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCLSRecordBase.m; path = Crashlytics/Crashlytics/Models/Record/FIRCLSRecordBase.m; sourceTree = ""; }; 3A7A586F95076EB0F0E104A783BD36ED /* MicroSpinLock.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MicroSpinLock.h; path = folly/synchronization/MicroSpinLock.h; sourceTree = ""; }; 3A989A3AA197F38D1E3B7C0B70A38760 /* logging.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = logging.h; path = src/glog/logging.h; sourceTree = ""; }; - 3AAE05B3FC984B4ED394E8C3FD5F7513 /* YGEnums.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = YGEnums.cpp; path = yoga/YGEnums.cpp; sourceTree = ""; }; + 3AC0A07E8362BC69AA57954BD756718A /* FBReactNativeSpec-generated.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = "FBReactNativeSpec-generated.mm"; path = "FBReactNativeSpec/FBReactNativeSpec-generated.mm"; sourceTree = ""; }; 3AC5281D725EF697C3F1C31564DE860D /* SDAnimatedImageRep.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDAnimatedImageRep.h; path = SDWebImage/Core/SDAnimatedImageRep.h; sourceTree = ""; }; 3ADB54D5118EF457C66703A234F34BCA /* FlipperKit.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = FlipperKit.debug.xcconfig; sourceTree = ""; }; 3AEA4A114C08533A2C0F8E039A4C5EB9 /* libRNImageCropPicker.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libRNImageCropPicker.a; path = libRNImageCropPicker.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 3AF58C59174E3A5F769E8C8E86C4AC78 /* REAPropsNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REAPropsNode.h; sourceTree = ""; }; 3AFF9FAF94EB8249D1B1287FF2C0FF3B /* SharedPromise.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SharedPromise.h; path = folly/futures/SharedPromise.h; sourceTree = ""; }; 3B0B72635B68DDFBEB61861EB08A22AF /* GULSwizzler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULSwizzler.h; path = GoogleUtilities/MethodSwizzler/Private/GULSwizzler.h; sourceTree = ""; }; 3B0D4BEE27801FE7549D8D8F0F0D82EF /* aes.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = aes.h; path = ios/include/openssl/aes.h; sourceTree = ""; }; - 3B15E1593096E9804FCEE5EF743A465A /* RCTModuloAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTModuloAnimatedNode.h; sourceTree = ""; }; - 3B218203D8DD8518EEDF8E41F1B5FAF9 /* RNCSafeAreaViewEdges.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCSafeAreaViewEdges.h; path = ios/SafeAreaView/RNCSafeAreaViewEdges.h; sourceTree = ""; }; - 3B2E6FA44C12C34928F7B351816FDC58 /* RCTActionSheetManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTActionSheetManager.h; path = React/CoreModules/RCTActionSheetManager.h; sourceTree = ""; }; + 3B18616BAD314F5FB22B423EC02BB277 /* react-native-notifications.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "react-native-notifications.release.xcconfig"; sourceTree = ""; }; + 3B62982E6042F7291CD4CCBF2C8A112F /* RCTInspector.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTInspector.h; sourceTree = ""; }; 3B640835BAA914DD267B5E780D8CFEC7 /* libUMReactNativeAdapter.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libUMReactNativeAdapter.a; path = libUMReactNativeAdapter.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 3B71CD884560072342CD67020641D666 /* EXVideoThumbnails.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = EXVideoThumbnails.debug.xcconfig; sourceTree = ""; }; + 3B81C5658EA30CBAC7F3ECEADAA14F25 /* BSG_KSCrashSentry_CPPException.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashSentry_CPPException.h; sourceTree = ""; }; 3B8785CDB575B476AA2434A57D38EA65 /* pkcs12.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = pkcs12.h; path = ios/include/openssl/pkcs12.h; sourceTree = ""; }; 3B9018C017CE1F173655CFDBF3C9505A /* SKHighlightOverlay.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SKHighlightOverlay.h; path = iOS/Plugins/FlipperKitPluginUtils/FlipperKitHighlightOverlay/SKHighlightOverlay.h; sourceTree = ""; }; - 3B96DA6A06FBD277935AE7448D8629F6 /* RNSScreen.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNSScreen.m; path = ios/RNSScreen.m; sourceTree = ""; }; 3BA42568CD090374443F4F1F27941531 /* FIRCLSDownloadAndSaveSettingsOperation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCLSDownloadAndSaveSettingsOperation.m; path = Crashlytics/Crashlytics/Settings/Operations/FIRCLSDownloadAndSaveSettingsOperation.m; sourceTree = ""; }; 3BB695259EFD1A6F97D63899C791A673 /* NSData+ImageContentType.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSData+ImageContentType.m"; path = "SDWebImage/Core/NSData+ImageContentType.m"; sourceTree = ""; }; 3BBB608478F4976B5227E0BA4CB6140D /* SDImageCacheDefine.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageCacheDefine.h; path = SDWebImage/Core/SDImageCacheDefine.h; sourceTree = ""; }; 3BBF5ED6E7690FA18D4B7A816F99EA92 /* FirebaseCoreDiagnostics-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "FirebaseCoreDiagnostics-dummy.m"; sourceTree = ""; }; 3BC5033AF0CAFB17D2BD347A0CD9E3BA /* double-conversion.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "double-conversion.h"; path = "double-conversion/double-conversion.h"; sourceTree = ""; }; + 3BC5DF46B8687E39806371E7E7E4EE8B /* UMFileSystemInterface.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMFileSystemInterface.debug.xcconfig; sourceTree = ""; }; 3BC736F5F5CDA57D61E6A6765CC3A096 /* ScheduledSingleObserver.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ScheduledSingleObserver.h; path = rsocket/internal/ScheduledSingleObserver.h; sourceTree = ""; }; - 3BC93B6831CA460AE41FA2A1BDC200AE /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; - 3BE6681C640A8D82C22D08B78CD22781 /* react-native-slider-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "react-native-slider-prefix.pch"; sourceTree = ""; }; 3BEB19D93D64C83153DF541927A16A6C /* RecordIO.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RecordIO.h; path = folly/io/RecordIO.h; sourceTree = ""; }; 3BF0A46C403E493EA8A1C2CCD49A4467 /* NSButton+WebCache.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSButton+WebCache.m"; path = "SDWebImage/Core/NSButton+WebCache.m"; sourceTree = ""; }; - 3C1A76D1F95A16DDFD31E78CDE0813A7 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; - 3C24D7E1C7D5F3E9E5DDCD4B96C7FAF8 /* RCTFollyConvert.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTFollyConvert.mm; sourceTree = ""; }; + 3BFBE70DB9803AEE8F2839BAA8572BA6 /* ObservingInputAccessoryView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = ObservingInputAccessoryView.m; path = lib/ObservingInputAccessoryView.m; sourceTree = ""; }; + 3C115D12044E576618D7D93097AA2E59 /* RNBootSplash.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RNBootSplash.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 3C321E819A4F442A64CB128BC31AD740 /* BSG_KSCrashState.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BSG_KSCrashState.m; sourceTree = ""; }; + 3C3404C0F297D00A0B67F3F1D0F415FA /* RCTMultipartDataTask.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTMultipartDataTask.m; sourceTree = ""; }; 3C3430F5A0D8A81F8525A9C95E35EB43 /* TurnSequencer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TurnSequencer.h; path = folly/detail/TurnSequencer.h; sourceTree = ""; }; 3C45C204ACA134AF52D11B8A41D1B43B /* FarmHash.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FarmHash.h; path = folly/hash/FarmHash.h; sourceTree = ""; }; - 3C519268C53CCF0EE6CC0E33831B07F5 /* EXReactNativeUserNotificationCenterProxy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXReactNativeUserNotificationCenterProxy.m; path = EXPermissions/EXReactNativeUserNotificationCenterProxy.m; sourceTree = ""; }; + 3C4961EE6893C92B8D556E78119823E7 /* BSG_KSCrashSentry_User.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashSentry_User.h; sourceTree = ""; }; 3C6452F13967E498C581E927CA7720D3 /* ConnectionAcceptor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ConnectionAcceptor.h; path = rsocket/ConnectionAcceptor.h; sourceTree = ""; }; 3C67B195860C64A4CC32AB983E044735 /* FIRHeartbeatInfo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRHeartbeatInfo.h; path = FirebaseCore/Sources/Private/FIRHeartbeatInfo.h; sourceTree = ""; }; + 3C684B70EB0AB1F720D07F47EFD1B30A /* ARTRadialGradient.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = ARTRadialGradient.m; sourceTree = ""; }; + 3C6C88F000D42E1E401C7075ADC15AF3 /* RNEventEmitter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNEventEmitter.h; path = RNNotifications/RNEventEmitter.h; sourceTree = ""; }; + 3C726C2821E39B78211ECB184B1D69B4 /* MethodCall.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = MethodCall.cpp; sourceTree = ""; }; + 3C72812947390EF4F3FE3AC3C10D0C77 /* BSG_KSFileUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSFileUtils.h; sourceTree = ""; }; 3C730A18F65EBB943DD2FCF35B15CD7A /* Flipper-DoubleConversion.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Flipper-DoubleConversion.release.xcconfig"; sourceTree = ""; }; 3C7EB4BDFCD396924476A09480A4AB23 /* MMKVAppExtension.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = MMKVAppExtension.debug.xcconfig; sourceTree = ""; }; 3CA677BF651865EC11C8D20C8EE515DE /* Benchmarks.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = Benchmarks.cpp; path = rsocket/benchmarks/Benchmarks.cpp; sourceTree = ""; }; @@ -7557,700 +7512,672 @@ 3CBE4B35B932B5B32DE48A6B3EAE8C5A /* FrameSerializer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FrameSerializer.h; path = rsocket/framing/FrameSerializer.h; sourceTree = ""; }; 3CD3466D9D3651B36C3E28D89CD26C97 /* FlipperResponder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FlipperResponder.h; path = iOS/FlipperKit/FlipperResponder.h; sourceTree = ""; }; 3CD7BE93FBD27AE0A01D306CED6B70D6 /* PasswordInFile.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PasswordInFile.h; path = folly/io/async/PasswordInFile.h; sourceTree = ""; }; - 3CF82021B17801ABC7DB9FCB55A532FF /* FBReactNativeSpec-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "FBReactNativeSpec-dummy.m"; sourceTree = ""; }; - 3D05B4ABDF0E6711F632BA6226F45A95 /* UMTaskManagerInterface.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMTaskManagerInterface.debug.xcconfig; sourceTree = ""; }; - 3D162487F6288CFED91B2E9F8EDA87F6 /* react-native-webview-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "react-native-webview-dummy.m"; sourceTree = ""; }; 3D217D6323376C94A847B7E3E0C06B74 /* Firebase.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = Firebase.debug.xcconfig; sourceTree = ""; }; - 3D2D37BF95E30FBBE4595336259D4477 /* StorageGetters.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = StorageGetters.h; path = ios/StorageGetters.h; sourceTree = ""; }; + 3D34D1147FF5825D85B7C27FCE3BE555 /* BSG_KSCrashIdentifier.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BSG_KSCrashIdentifier.m; sourceTree = ""; }; + 3D351820F33E5DB5B8D1AA53186907F9 /* UIImage+Resize.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIImage+Resize.m"; path = "ios/src/UIImage+Resize.m"; sourceTree = ""; }; 3D54A3464FC502058D8DAEAB77A89182 /* VirtualEventBase.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = VirtualEventBase.cpp; path = folly/io/async/VirtualEventBase.cpp; sourceTree = ""; }; + 3D6018E5288BE28B9EC1F1A143AEACC8 /* RNScreens.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNScreens.debug.xcconfig; sourceTree = ""; }; 3D6234CA033ABFD8DB0D4C4A979F1E9B /* Demangle.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = Demangle.cpp; path = folly/Demangle.cpp; sourceTree = ""; }; 3D671A8DB96D321151A22C7777886198 /* FIRVersion.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRVersion.h; path = FirebaseCore/Sources/FIRVersion.h; sourceTree = ""; }; + 3D6AC701B973EEF8DC457CFC29353416 /* 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; }; 3D77FCCC3D68CE58388AE633913FFA2E /* FIRCoreDiagnosticsData.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCoreDiagnosticsData.h; path = Interop/CoreDiagnostics/Public/FIRCoreDiagnosticsData.h; sourceTree = ""; }; 3D7EF236CE7D5CE2A1C72FF683F2061C /* FIRCLSFeatures.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSFeatures.h; path = Crashlytics/Crashlytics/Helpers/FIRCLSFeatures.h; sourceTree = ""; }; 3D8B57121FD848BE72A353E5A4934B38 /* FIRAEvent.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAEvent.h; path = Crashlytics/Crashlytics/Helpers/FIRAEvent.h; sourceTree = ""; }; 3D97A62D5F7FFFED570E9717C1B77CA0 /* FIRCLSReportUploader_Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSReportUploader_Private.h; path = Crashlytics/Crashlytics/Controllers/FIRCLSReportUploader_Private.h; sourceTree = ""; }; 3DB80E5B203ED5541F1AE27D3A1D23A2 /* CString.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = CString.cpp; path = folly/lang/CString.cpp; sourceTree = ""; }; + 3DC75F5CC22AA9F7A705303B776365C3 /* UMFontInterface.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMFontInterface.release.xcconfig; sourceTree = ""; }; 3DC9980050C1C0795120E178659C52BE /* AtomicStruct.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AtomicStruct.h; path = folly/synchronization/AtomicStruct.h; sourceTree = ""; }; 3DCCC9C42EB3E07CFD81800EC8A2515D /* QBImagePicker.bundle */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; name = QBImagePicker.bundle; path = "RNImageCropPicker-QBImagePicker.bundle"; sourceTree = BUILT_PRODUCTS_DIR; }; + 3DE2034E122154A0BBED46729EF813C2 /* YGNodePrint.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YGNodePrint.h; path = yoga/YGNodePrint.h; sourceTree = ""; }; 3DEE9AB9AC721D2590B458D6A97C44D8 /* FIRInstallationsErrorUtil.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstallationsErrorUtil.m; path = FirebaseInstallations/Source/Library/Errors/FIRInstallationsErrorUtil.m; sourceTree = ""; }; - 3DF4A13929EE3DC753F4163E47F811E8 /* EXAVPlayerData.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXAVPlayerData.h; path = EXAV/EXAVPlayerData.h; sourceTree = ""; }; + 3DFAD60463B3AEAE2E413CA40595B32A /* YGStyle.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YGStyle.h; path = yoga/YGStyle.h; sourceTree = ""; }; + 3DFE153F31FEFF2CCE0DD9BDB0668990 /* RCTGIFImageDecoder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTGIFImageDecoder.h; path = Libraries/Image/RCTGIFImageDecoder.h; sourceTree = ""; }; + 3E1073C68C346E573EBD24D1AE3E1397 /* RNRootViewGestureRecognizer.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNRootViewGestureRecognizer.m; path = ios/RNRootViewGestureRecognizer.m; sourceTree = ""; }; 3E376827002A3EFDF2F7F169CA20C0AF /* FLEXNetworkRecorder.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = FLEXNetworkRecorder.mm; path = iOS/Plugins/FlipperKitNetworkPlugin/SKIOSNetworkPlugin/FLEXNetworkLib/FLEXNetworkRecorder.mm; sourceTree = ""; }; - 3E43E4A7656C1FEDFEE67B0C8BE02219 /* RNNotificationCenterMulticast.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNNotificationCenterMulticast.h; path = RNNotifications/RNNotificationCenterMulticast.h; sourceTree = ""; }; - 3E49EF9E33E2321EBECA937DDBCD35C1 /* React-callinvoker.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = "React-callinvoker.podspec"; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - 3E698A7E4C8F177AB5E6894F03DEA9D8 /* KeyboardTrackingViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = KeyboardTrackingViewManager.h; path = lib/KeyboardTrackingViewManager.h; sourceTree = ""; }; - 3E78DDF7C688CE7245EE832878376B92 /* RNFetchBlobNetwork.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNFetchBlobNetwork.h; path = ios/RNFetchBlobNetwork.h; sourceTree = ""; }; + 3E65EE62F274902F911EBC8F7DABC14B /* ReactMarker.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = ReactMarker.cpp; sourceTree = ""; }; + 3E7CBC38A3E2B93C112071548EACE16F /* RCTSurfaceHostingProxyRootView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSurfaceHostingProxyRootView.h; sourceTree = ""; }; 3E8D77C595107F9ADB666FE144CC4495 /* FlipperStep.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = FlipperStep.cpp; path = xplat/Flipper/FlipperStep.cpp; sourceTree = ""; }; 3E9242EEAF4956D0A3E9005B662766EC /* MMKVLog.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MMKVLog.h; path = Core/MMKVLog.h; sourceTree = ""; }; - 3E96E36F5AAF6A80F189E890142C6790 /* REATransition.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REATransition.m; sourceTree = ""; }; - 3EA3048D138BB2659A8B1B01BBDA9042 /* RCTRedBoxExtraDataViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTRedBoxExtraDataViewController.h; sourceTree = ""; }; + 3E97FC25847E19B484E133B42AD4BD49 /* EXVideoThumbnails-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "EXVideoThumbnails-dummy.m"; sourceTree = ""; }; 3EB61D181C72318042B364540B702319 /* TimedDrivableExecutor.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = TimedDrivableExecutor.cpp; path = folly/executors/TimedDrivableExecutor.cpp; sourceTree = ""; }; - 3EC6BB4C8486782F353D4B94B9CDC207 /* BSG_KSCrashType.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashType.h; sourceTree = ""; }; 3ECDD200CF993CB41FDFA3BF409D7DE0 /* FIRCLSDwarfUnwindRegisters.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSDwarfUnwindRegisters.h; path = Crashlytics/Crashlytics/Unwind/Dwarf/FIRCLSDwarfUnwindRegisters.h; sourceTree = ""; }; - 3ED925A34FE0D8E8329AD72EAB430562 /* ModuleRegistry.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = ModuleRegistry.cpp; sourceTree = ""; }; 3EDD75C463805A61CE3A8A8B3F02D62F /* FlipperClient.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FlipperClient.h; path = iOS/FlipperKit/FlipperClient.h; sourceTree = ""; }; - 3EE1742852808EF29B7A46B5EBE710C7 /* RCTBackedTextInputViewProtocol.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBackedTextInputViewProtocol.h; sourceTree = ""; }; 3EEAA606F6866DA20E6601B9655B1027 /* libBugsnagReactNative.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libBugsnagReactNative.a; path = libBugsnagReactNative.a; sourceTree = BUILT_PRODUCTS_DIR; }; + 3EF08125CF8DDE18554D11E023C24F76 /* EXVideoView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = EXVideoView.h; sourceTree = ""; }; 3EF274C30290A8E7AA8535DB4CC73D04 /* FBLPromise+Race.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FBLPromise+Race.h"; path = "Sources/FBLPromises/include/FBLPromise+Race.h"; sourceTree = ""; }; 3EFA24A2B42781B009412AFED35E2FE0 /* TLRefCount.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TLRefCount.h; path = folly/experimental/TLRefCount.h; sourceTree = ""; }; - 3F0BB8309F9346A40B0FC1DDF6EC9719 /* ARTShadow.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ARTShadow.h; path = ios/ARTShadow.h; sourceTree = ""; }; 3F0F60A319F2108039CA8F128E66CBD6 /* camellia.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = camellia.h; path = ios/include/openssl/camellia.h; sourceTree = ""; }; - 3F13EB1F5655AF4A8A32C61FD6D851E8 /* react-native-jitsi-meet.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = "react-native-jitsi-meet.podspec"; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - 3F223A82902DD313C050DCD91B7F3FC5 /* ARTNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ARTNode.h; path = ios/ARTNode.h; sourceTree = ""; }; - 3F23D900DBB1BA73C5A72BE100ABA7FB /* RCTReloadCommand.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTReloadCommand.m; sourceTree = ""; }; + 3F0FA46A006F4936B0915FD4910BC10B /* RNCMaskedView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCMaskedView.m; path = ios/RNCMaskedView.m; sourceTree = ""; }; + 3F1EA77028986CCD2B226BBBDFBF7208 /* RCTRequired.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RCTRequired.debug.xcconfig; sourceTree = ""; }; 3F2C303396B0FFDD7D6A3AEC6A490B96 /* utilities.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = utilities.cc; path = src/utilities.cc; sourceTree = ""; }; - 3F3CC24B132DD75E565BFEF28EAEDC5A /* RCTWebSocketExecutor.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTWebSocketExecutor.mm; sourceTree = ""; }; 3F4107EB691C1753CB2A9F8D56920179 /* SDImageAssetManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageAssetManager.m; path = SDWebImage/Private/SDImageAssetManager.m; sourceTree = ""; }; - 3F49986B7019EA92B663E6C018816E88 /* SecureStorage.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SecureStorage.m; path = ios/SecureStorage.m; sourceTree = ""; }; 3F56FEFBF48F3D0E555E22F8D5C2AA55 /* SDImageHEICCoder.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageHEICCoder.m; path = SDWebImage/Core/SDImageHEICCoder.m; sourceTree = ""; }; 3F6DC6A2F7A5A7A399F24BF1D784F4BE /* FKPortForwardingCommon.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FKPortForwardingCommon.h; path = iOS/FlipperKit/FKPortForwarding/FKPortForwardingCommon.h; sourceTree = ""; }; 3F767A46DE9CEBA6202BBE963441F3B7 /* asn1t.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = asn1t.h; path = ios/include/openssl/asn1t.h; sourceTree = ""; }; - 3F860474CE8CA0FC1EC7491B30FFE313 /* JsArgumentHelpers-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "JsArgumentHelpers-inl.h"; sourceTree = ""; }; + 3F77891D595E4C844D2662EDC090247D /* LICENSE.md */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE.md; sourceTree = ""; }; + 3F7EEAFD16171C39C8A7624C6D953D9D /* RCTEventEmitter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTEventEmitter.h; sourceTree = ""; }; 3FA4F4A0876C0F4828B223294121BEC4 /* Future.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = Future.cpp; path = folly/futures/Future.cpp; sourceTree = ""; }; - 3FA5349F4BBD0D79B49E22361071C670 /* RCTSafeAreaViewLocalData.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSafeAreaViewLocalData.h; sourceTree = ""; }; 3FAC56C1C627D0D35175C1C8DE550A10 /* FIRCoreDiagnosticsConnector.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCoreDiagnosticsConnector.h; path = FirebaseCore/Sources/Private/FIRCoreDiagnosticsConnector.h; sourceTree = ""; }; - 3FD424B19F510D11C516CA1189411478 /* RCTImageView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageView.h; path = Libraries/Image/RCTImageView.h; sourceTree = ""; }; 3FD75A2D68DEE72F3B6230F56AF69715 /* FirebaseCrashlytics.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = FirebaseCrashlytics.debug.xcconfig; sourceTree = ""; }; 3FDB5AC702E5812B74CD37395DA72867 /* ShutdownSocketSet.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = ShutdownSocketSet.cpp; path = folly/io/ShutdownSocketSet.cpp; sourceTree = ""; }; + 3FEDBA1E9385ABCDE5AEFCA1E59ECAEB /* RNDateTimePickerManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNDateTimePickerManager.h; path = ios/RNDateTimePickerManager.h; sourceTree = ""; }; + 4028F623E36DBC1D2074617120AB1570 /* RCTSurfaceDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSurfaceDelegate.h; sourceTree = ""; }; 404087D898128DB18555B2F000165B9F /* openssl_md32_common.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = openssl_md32_common.h; path = Core/aes/openssl/openssl_md32_common.h; sourceTree = ""; }; 4047BC0750B116B1191149A8E7B5389B /* libreact-native-mmkv-storage.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libreact-native-mmkv-storage.a"; path = "libreact-native-mmkv-storage.a"; sourceTree = BUILT_PRODUCTS_DIR; }; - 4058209DFF0440C625A956E49C868465 /* React-jsiexecutor-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-jsiexecutor-prefix.pch"; sourceTree = ""; }; 405905D8326629E31F5EAFB935A3EF01 /* SDWebImageTransitionInternal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageTransitionInternal.h; path = SDWebImage/Private/SDWebImageTransitionInternal.h; sourceTree = ""; }; 405C114DA410609B3B3DFA9B4B7E5D31 /* Range.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Range.h; path = folly/Range.h; sourceTree = ""; }; - 40612F8CF2A2C92FE9200274E48A38F5 /* React-jsiexecutor.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-jsiexecutor.debug.xcconfig"; sourceTree = ""; }; + 405E63383517A48ECE794BE1DE87EFBB /* UMBarCodeScannerInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMBarCodeScannerInterface.h; path = UMBarCodeScannerInterface/UMBarCodeScannerInterface.h; sourceTree = ""; }; + 40848FC226D472BC482EDEFBAB3ADC72 /* UMFileSystemInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMFileSystemInterface.h; path = UMFileSystemInterface/UMFileSystemInterface.h; sourceTree = ""; }; 40875AD0B326AFC7FA447DED64B32BDA /* GFlags.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GFlags.h; path = folly/portability/GFlags.h; sourceTree = ""; }; - 4091633735C27CE006EE16DA0ED3F70A /* react-native-jitsi-meet.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "react-native-jitsi-meet.debug.xcconfig"; sourceTree = ""; }; 409A77FBCA194CDF50804A2106A459DB /* ErrorCode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ErrorCode.h; path = rsocket/framing/ErrorCode.h; sourceTree = ""; }; - 40A24F50073CE00C418C807155B60D0B /* RCTAnimationUtils.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTAnimationUtils.m; sourceTree = ""; }; 40A2A9441C2073C5C62DF14189442683 /* dynamic-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "dynamic-inl.h"; path = "folly/dynamic-inl.h"; sourceTree = ""; }; 40BA46164F7B6B7BF35D6C75120060FB /* FIROptions.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIROptions.h; path = FirebaseCore/Sources/Public/FIROptions.h; sourceTree = ""; }; - 40D44BA0ECCFDA52623C36E7DC52B50B /* RCTExceptionsManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTExceptionsManager.h; path = React/CoreModules/RCTExceptionsManager.h; sourceTree = ""; }; - 41001AD7FDEAF2D3404E598ED3B7DDAD /* RCTAnimationUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTAnimationUtils.h; path = Libraries/NativeAnimation/RCTAnimationUtils.h; sourceTree = ""; }; - 4102BD2284BF4B0EB444DFA425BD734F /* RCTDivisionAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTDivisionAnimatedNode.h; sourceTree = ""; }; + 40DC9AE657A1D013F7C0A23E0D8B1DA1 /* RCTProgressViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTProgressViewManager.m; sourceTree = ""; }; + 40E14CDDD4B220ACBCC5D0293B39C2EB /* REAStyleNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REAStyleNode.h; sourceTree = ""; }; 4111E7D34BC0881ECCA3AF8731FB1175 /* FIRCLSUserDefaults.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSUserDefaults.h; path = Crashlytics/Crashlytics/FIRCLSUserDefaults/FIRCLSUserDefaults.h; sourceTree = ""; }; 4118C5AECDFC37DB9CD67E44741E5F90 /* FlipperResponder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FlipperResponder.h; path = xplat/Flipper/FlipperResponder.h; sourceTree = ""; }; 41190A372C1F0B2BB22D5CFEFCD71099 /* Spin.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Spin.h; path = folly/synchronization/detail/Spin.h; sourceTree = ""; }; 412B38AB8ABA12580A6E2542B6393808 /* FBLPromise+Then.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "FBLPromise+Then.m"; path = "Sources/FBLPromises/FBLPromise+Then.m"; sourceTree = ""; }; - 4131217A97BD723A6DD165DE07ED6B67 /* RCTMaskedViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTMaskedViewManager.h; sourceTree = ""; }; 4144DFC0E38513E8A0F0651E267AEF63 /* SDInternalMacros.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDInternalMacros.m; path = SDWebImage/Private/SDInternalMacros.m; sourceTree = ""; }; 414709D1E0A881DFA14BF6ACA8171DFD /* Pods-RocketChatRN-acknowledgements.markdown */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; path = "Pods-RocketChatRN-acknowledgements.markdown"; sourceTree = ""; }; + 416C31CEE3C675FA03825DEB93D218EE /* RNFastImage.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNFastImage.release.xcconfig; sourceTree = ""; }; 416FED6D5C634CCE9FD36AB52F46D134 /* FirebaseCore.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = FirebaseCore.debug.xcconfig; sourceTree = ""; }; + 417775EC0167B9C6DFDE3E238F3799D0 /* KeyCommands.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = KeyCommands.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; 4183BD06849CA1A16C75157F6A8A7827 /* SKResponseInfo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SKResponseInfo.h; path = iOS/Plugins/FlipperKitNetworkPlugin/FlipperKitNetworkPlugin/SKResponseInfo.h; sourceTree = ""; }; + 418C567F66532F9B89662F5044CF75A0 /* REATransitionValues.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REATransitionValues.m; sourceTree = ""; }; 4195015D26D9AC88BE151FE609A81EBD /* libMMKVAppExtension.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libMMKVAppExtension.a; path = libMMKVAppExtension.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 41C2E2C1CD378DA7F3D84F4A99A6B16E /* UMFaceDetectorManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMFaceDetectorManager.h; path = UMFaceDetectorInterface/UMFaceDetectorManager.h; sourceTree = ""; }; - 41C3198A7870114D0CB5B74114B559EC /* BSG_KSCrashReportVersion.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashReportVersion.h; sourceTree = ""; }; - 41D91F20540EB4D8074EB34C2891B094 /* RCTImageBlurUtils.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTImageBlurUtils.m; sourceTree = ""; }; - 41DF63D0BEE787859D69E4C80B1A8C0C /* RCTRequired.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RCTRequired.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; 41E8306CB1F27800347C7C82B616F599 /* sha.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = sha.h; path = ios/include/openssl/sha.h; sourceTree = ""; }; 41EA283E65F1C71F711C4134E71A771B /* GULSecureCoding.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULSecureCoding.h; path = GoogleUtilities/Environment/Private/GULSecureCoding.h; sourceTree = ""; }; + 41F1944D6B16E6CBFCAB66B4C76FCFF9 /* RCTRedBoxSetEnabled.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTRedBoxSetEnabled.m; sourceTree = ""; }; + 41FB6A343FFAD380319589F5195849A6 /* BugsnagHandledState.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagHandledState.m; sourceTree = ""; }; 42020D0F7AABDA3F155C2F8E5B8EC948 /* filter_enc.c */ = {isa = PBXFileReference; includeInIndex = 1; name = filter_enc.c; path = src/enc/filter_enc.c; sourceTree = ""; }; 4208A3511E3AD49A9B859808AC623DAC /* Merge.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Merge.h; path = folly/container/Merge.h; sourceTree = ""; }; - 42096D708DBD77844D92805BB3460723 /* RCTWebSocketModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTWebSocketModule.h; path = React/CoreModules/RCTWebSocketModule.h; sourceTree = ""; }; 421264897478D2046C35BC7685C02D81 /* common_sse41.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = common_sse41.h; path = src/dsp/common_sse41.h; sourceTree = ""; }; - 4222C44105ACF9CD2A045D9134622C61 /* REAAllTransitions.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REAAllTransitions.h; sourceTree = ""; }; - 422C1530677F86317F308C22C22F6788 /* RCTModuleMethod.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTModuleMethod.h; sourceTree = ""; }; - 422CC267D87A8AE97C06618B7875D538 /* RCTAnimatedImage.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTAnimatedImage.m; sourceTree = ""; }; + 422D4000FA1A4B67FABBF26D5D4DCB2B /* RCTTextViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTTextViewManager.m; sourceTree = ""; }; 4232D2FD77BA802AFEEAB02E4A2EA05C /* Flowables.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = Flowables.cpp; path = yarpl/flowable/Flowables.cpp; sourceTree = ""; }; 4233895B66E94BB940774660B1D548A2 /* SKMacros.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SKMacros.h; path = iOS/FlipperKit/SKMacros.h; sourceTree = ""; }; - 4254EA19599D272695DD40CEC74ED86E /* BugsnagConfiguration.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagConfiguration.m; sourceTree = ""; }; - 425D9D18F9684EFF4B131BC102AD46EE /* RCTCustomKeyboardViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTCustomKeyboardViewController.m; sourceTree = ""; }; - 427A9B8B6278E24E05EFFFA7F26432DA /* RCTImageViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageViewManager.h; path = Libraries/Image/RCTImageViewManager.h; sourceTree = ""; }; - 427CDDF672A5EE2083898815F4294025 /* RCTProfileTrampoline-arm.S */ = {isa = PBXFileReference; includeInIndex = 1; path = "RCTProfileTrampoline-arm.S"; sourceTree = ""; }; - 42817937F1E875A7A8871155D62D0947 /* de.lproj */ = {isa = PBXFileReference; includeInIndex = 1; name = de.lproj; path = ios/QBImagePicker/QBImagePicker/de.lproj; sourceTree = ""; }; - 428829B9D99E52C02D9F9C48851D307F /* RCTTextAttributes.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTTextAttributes.m; sourceTree = ""; }; - 428C6C0EE85E68F26CB4D2AADAFA755F /* REABlockNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REABlockNode.m; sourceTree = ""; }; - 42947D7AAB454BC900125EFBFE4C2750 /* React-CoreModules-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-CoreModules-dummy.m"; sourceTree = ""; }; - 4295B57AAE8A51F29CF4FA7D56C33278 /* EXPermissions-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "EXPermissions-prefix.pch"; sourceTree = ""; }; + 428136ED943AB31EFCA02F5CC8730F15 /* RCTSafeAreaShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSafeAreaShadowView.m; sourceTree = ""; }; 4298B632D8662ADA04F5546E967DA855 /* GDTCCTCompressionHelper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCCTCompressionHelper.h; path = GoogleDataTransportCCTSupport/GDTCCTLibrary/Private/GDTCCTCompressionHelper.h; sourceTree = ""; }; + 4299A8736AD931DFC768E57E6425F72D /* 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; }; 429CF81F3064960AD6BC66B20969F187 /* Cursor-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "Cursor-inl.h"; path = "folly/io/Cursor-inl.h"; sourceTree = ""; }; + 429F0924225DC7AEB742861D59E5F780 /* BugsnagSessionTrackingPayload.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagSessionTrackingPayload.h; sourceTree = ""; }; 42A313947B20CDB26F47B4EC13C31194 /* yuv_neon.c */ = {isa = PBXFileReference; includeInIndex = 1; name = yuv_neon.c; path = src/dsp/yuv_neon.c; sourceTree = ""; }; 42AF36E09DEF089E3AC8A2CF3A8A811B /* TOCropToolbar.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TOCropToolbar.h; path = "Objective-C/TOCropViewController/Views/TOCropToolbar.h"; sourceTree = ""; }; 42B1D14BA71FB1347DB1A28BE8DCBF6F /* Rcu-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "Rcu-inl.h"; path = "folly/synchronization/Rcu-inl.h"; sourceTree = ""; }; 42CADC23AE51C0C0973C83B906D51A90 /* SanitizeThread.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = SanitizeThread.cpp; path = folly/synchronization/SanitizeThread.cpp; sourceTree = ""; }; 42CDAD17D9AE3F90E1F51B66A1822465 /* event_struct.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = event_struct.h; path = src/event2/event_struct.h; sourceTree = ""; }; + 430573CAF63D4ADA555F3293195E4B4D /* RCTSurfaceRootShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSurfaceRootShadowView.m; sourceTree = ""; }; + 43084D396086F8741F536FD67182EEFF /* RNDeviceInfo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNDeviceInfo.h; path = ios/RNDeviceInfo/RNDeviceInfo.h; sourceTree = ""; }; + 430F4B67EE4F003FA1DE540BE9E380EF /* EXSessionResumableDownloadTaskDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = EXSessionResumableDownloadTaskDelegate.h; sourceTree = ""; }; + 4314F3FA5C3A1791804E35FB074F4C9B /* RCTCustomInputController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTCustomInputController.m; sourceTree = ""; }; 431639D851E7F30F69FFC10118B1A28A /* iterator_enc.c */ = {isa = PBXFileReference; includeInIndex = 1; name = iterator_enc.c; path = src/enc/iterator_enc.c; sourceTree = ""; }; 4319295AF4FC4DA2D372A7A2242DBC0B /* SDAssociatedObject.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDAssociatedObject.h; path = SDWebImage/Private/SDAssociatedObject.h; sourceTree = ""; }; 431D80E032AC703E4C57DD6BACFA373C /* Exception.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Exception.h; path = folly/Exception.h; sourceTree = ""; }; + 43504F047FFD564514378D7164DA9179 /* Compression.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = Compression.m; path = ios/src/Compression.m; sourceTree = ""; }; 435279C77066A21BF19D14BA7885DCFF /* ieee.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ieee.h; path = "double-conversion/ieee.h"; sourceTree = ""; }; - 43580BF100C066A52A315A024BACB30C /* UMAppLoaderInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMAppLoaderInterface.h; sourceTree = ""; }; - 4382086837B45B455742559DF0B47770 /* FBLazyVector.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = FBLazyVector.release.xcconfig; sourceTree = ""; }; + 437EEDF51183CE95AF08B8B294DDB401 /* EXPermissions.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXPermissions.h; path = EXPermissions/EXPermissions.h; sourceTree = ""; }; 43861A3E9C38CDB6C58D8536D09FB96B /* PasswordInFile.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = PasswordInFile.cpp; path = folly/io/async/PasswordInFile.cpp; sourceTree = ""; }; 438BCF03D12826D667D099BABE52E169 /* Singleton.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Singleton.h; path = folly/detail/Singleton.h; sourceTree = ""; }; - 43A61F7152F5A0FB61A6562D7B38CE10 /* RCTSurfacePresenterStub.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSurfacePresenterStub.h; sourceTree = ""; }; + 439DADA5C0DE465B1963F6556AAAD1FB /* BugsnagCrashSentry.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagCrashSentry.h; sourceTree = ""; }; + 43B1E6BF4478C0A4B47133EC7479F672 /* BugsnagKeys.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagKeys.h; sourceTree = ""; }; 43B82A8E2CCDE55D7BAECC9C37FF1734 /* FirebaseCrashlytics-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "FirebaseCrashlytics-dummy.m"; sourceTree = ""; }; - 43BB592AC682C7916135FFA71B6E7D2B /* RNLocalize.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNLocalize.m; path = ios/RNLocalize.m; sourceTree = ""; }; + 43BB4B54C3A88520DC42ABCC419B342E /* Entypo.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = Entypo.ttf; path = Fonts/Entypo.ttf; sourceTree = ""; }; 43C6269C3EA36731F03303FD9456F208 /* Types.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Types.h; path = folly/futures/detail/Types.h; sourceTree = ""; }; - 43CAF26635546AAF8D1D9FA621E9E9E2 /* RCTProfile.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTProfile.h; sourceTree = ""; }; - 43D430E6596600DC08C865EE93659233 /* RCTStyleAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTStyleAnimatedNode.h; sourceTree = ""; }; - 43D8ECC247297367CF91FB34E32382CF /* BugsnagSession.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagSession.m; sourceTree = ""; }; 43F78F152FE91303A0E243061A1E2998 /* Core-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "Core-inl.h"; path = "folly/gen/Core-inl.h"; sourceTree = ""; }; - 443098314628D666DC0EDE6A03600032 /* FFFastImageView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FFFastImageView.m; path = ios/FastImage/FFFastImageView.m; sourceTree = ""; }; 44377F6BC1FAF629CE1B8348F488032D /* ssl2.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ssl2.h; path = ios/include/openssl/ssl2.h; sourceTree = ""; }; - 44539B969639A3408C91032DED89095C /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; + 4441E75262506BBBDB0C14D0AF8ADC9F /* RNFBAnalytics.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNFBAnalytics.release.xcconfig; sourceTree = ""; }; + 4441F2940C6722DD773BFA75CCA20F84 /* RNBootSplash.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNBootSplash.debug.xcconfig; sourceTree = ""; }; + 44444F96D7488D183BE5DC55D7264A82 /* NativeModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = NativeModule.h; sourceTree = ""; }; + 4454195B694BFC9D8732F4E94496F38F /* RCTScrollView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTScrollView.h; sourceTree = ""; }; 44589B4B1C5771DE5CCCBD34FCD9E7EC /* Optional.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Optional.h; path = folly/Optional.h; sourceTree = ""; }; 4462CFAAA8C9BBE3C17275FDC4EB45AB /* StreamStateMachineBase.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = StreamStateMachineBase.h; path = rsocket/statemachine/StreamStateMachineBase.h; sourceTree = ""; }; 446A7B4CAC5AD80116A78511256976DE /* AtomicSharedPtr.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AtomicSharedPtr.h; path = folly/concurrency/AtomicSharedPtr.h; sourceTree = ""; }; - 4470E7F334F720A2442836C4DE1412F9 /* React-RCTNetwork.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-RCTNetwork.release.xcconfig"; sourceTree = ""; }; - 4491DCC9940E25C6DE1E4F960C6AF784 /* RNFetchBlob.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNFetchBlob.h; sourceTree = ""; }; + 44876E888F86BD38FFCF21901E02AFE2 /* RCTFrameAnimation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTFrameAnimation.h; sourceTree = ""; }; 449F342C2751DCD055BE843E0851F4DB /* SDAsyncBlockOperation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDAsyncBlockOperation.m; path = SDWebImage/Private/SDAsyncBlockOperation.m; sourceTree = ""; }; - 44A95C29C46FABC2B4AB1DF51CEF3A4D /* RCTConvert+FIROptions.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "RCTConvert+FIROptions.m"; path = "ios/RNFBApp/RCTConvert+FIROptions.m"; sourceTree = ""; }; 44C20E449661C3A845F1FF5A829A3E6F /* FBLPromise+Wrap.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FBLPromise+Wrap.h"; path = "Sources/FBLPromises/include/FBLPromise+Wrap.h"; sourceTree = ""; }; - 44C578DE64AD8D7487F4DA83FC07CD67 /* RNFBAppModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNFBAppModule.h; path = ios/RNFBApp/RNFBAppModule.h; sourceTree = ""; }; 44E626EE32F3CF1BEDA84CBE08DC2091 /* Uri.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = Uri.cpp; path = folly/Uri.cpp; sourceTree = ""; }; 44F4D9618C4088D58BC5692C82AD25CE /* filters.c */ = {isa = PBXFileReference; includeInIndex = 1; name = filters.c; path = src/dsp/filters.c; sourceTree = ""; }; - 44F812BAD233C2A22A6461790EBE5AD6 /* React-RCTLinking.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-RCTLinking.release.xcconfig"; sourceTree = ""; }; - 44FA0CCC87E584A5543A1280B803CA4F /* EXConstants.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = EXConstants.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 45103FAEF9BE9D4E0926E951DD2807C2 /* ARTShape.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = ARTShape.m; path = ios/ARTShape.m; sourceTree = ""; }; + 451ABB101F357DD2EBE5104DCDABCDE2 /* UMCore.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMCore.release.xcconfig; sourceTree = ""; }; 45285BDC1BE6A2B4446854BEBD3F9B64 /* GDTCCTCompressionHelper.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GDTCCTCompressionHelper.m; path = GoogleDataTransportCCTSupport/GDTCCTLibrary/GDTCCTCompressionHelper.m; sourceTree = ""; }; - 452D5FB1FF9EAD07A6DBDA261F49275F /* ModuleRegistry.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = ModuleRegistry.h; sourceTree = ""; }; 452E87A8A1899C42EFBEF4E5BF46216A /* FIRComponent.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRComponent.m; path = FirebaseCore/Sources/FIRComponent.m; sourceTree = ""; }; 453CC615D2DAE67A94EDFB31C4B2AD85 /* FireAndForgetResponder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FireAndForgetResponder.h; path = rsocket/statemachine/FireAndForgetResponder.h; sourceTree = ""; }; + 454642A70E639C89D118ABE1A81999C7 /* RCTReconnectingWebSocket.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTReconnectingWebSocket.h; path = Libraries/WebSocket/RCTReconnectingWebSocket.h; sourceTree = ""; }; 455647DA819AB2181BB6A6A53BEA523B /* IOBuf.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = IOBuf.h; path = folly/io/IOBuf.h; sourceTree = ""; }; - 456108B3214E143622CB7C6C724916A5 /* RCTLinkingManager.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTLinkingManager.mm; sourceTree = ""; }; - 45778D15AB03D0B85694B79BC8729514 /* RNDocumentPicker.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNDocumentPicker.m; path = ios/RNDocumentPicker/RNDocumentPicker.m; sourceTree = ""; }; 45809FAF67F2952419D4D7F8B3B2E511 /* SafeAssert.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = SafeAssert.cpp; path = folly/lang/SafeAssert.cpp; sourceTree = ""; }; 4587D2F17BE183AE3AA2838593FCB33F /* StringKeyedCommon.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = StringKeyedCommon.h; path = folly/experimental/StringKeyedCommon.h; sourceTree = ""; }; 45A23E988D94A96CF49665CFDBFE0B28 /* ec.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ec.h; path = ios/include/openssl/ec.h; sourceTree = ""; }; 45A74F59BDD0FE86114178946340A7D9 /* thread.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = thread.h; path = src/event2/thread.h; sourceTree = ""; }; 45B231AEE93B68860961A4A535E629CB /* Varint.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Varint.h; path = folly/Varint.h; sourceTree = ""; }; - 45B4F243A295CB5198BCAC4555E428EB /* UMBarCodeScannerInterface.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMBarCodeScannerInterface.release.xcconfig; sourceTree = ""; }; 45B590ABBD900CDDF8DE8BB2836E4339 /* quant_enc.c */ = {isa = PBXFileReference; includeInIndex = 1; name = quant_enc.c; path = src/enc/quant_enc.c; sourceTree = ""; }; - 45CD1220444708014B7486B3406BF5BA /* react-native-appearance.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "react-native-appearance.release.xcconfig"; sourceTree = ""; }; - 45E4D1EAD09F7CA0D14E56863A6BF8F9 /* EXKeepAwake-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "EXKeepAwake-dummy.m"; sourceTree = ""; }; - 45F3245C26DABB977EA20BA2530315D8 /* BSG_KSSignalInfo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSSignalInfo.h; sourceTree = ""; }; - 45F9306FAFA433BFB7107599688C2234 /* EXFileSystemLocalFileHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXFileSystemLocalFileHandler.m; path = EXFileSystem/EXFileSystemLocalFileHandler.m; sourceTree = ""; }; + 45C82CEBDC9D4DE4A535DDA83FF2865F /* Octicons.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = Octicons.ttf; path = Fonts/Octicons.ttf; sourceTree = ""; }; + 45F2D635013A38FABB1F7EA15B060F86 /* EXAV-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "EXAV-prefix.pch"; sourceTree = ""; }; + 46083C0E068C7594F3A25D90821204BC /* EXVideoThumbnails-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "EXVideoThumbnails-prefix.pch"; sourceTree = ""; }; 460A56D8ECBF18816FA81ED31CF827B0 /* ScheduledSubscriber.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ScheduledSubscriber.h; path = rsocket/internal/ScheduledSubscriber.h; sourceTree = ""; }; - 4619B5C4361835F94670FBF257AD04A2 /* RCTNetworkPlugins.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTNetworkPlugins.mm; sourceTree = ""; }; - 462B30AE206A35B4582AD7E286A895D6 /* RCTWeakProxy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTWeakProxy.m; sourceTree = ""; }; 462F24E629C595A36A26BB3523701DED /* event-config.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "event-config.h"; path = "src/event2/event-config.h"; sourceTree = ""; }; - 4647488323356C67846E7D3A4E25D40C /* StorageSetters.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = StorageSetters.m; path = ios/StorageSetters.m; sourceTree = ""; }; + 4631007E5F5E335DF5E2EAFA10A61E6E /* BSG_KSBacktrace.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSBacktrace.c; sourceTree = ""; }; 464E12AB95B3A7254CF4C5447E9369FA /* Pods-ShareRocketChatRN.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-ShareRocketChatRN.release.xcconfig"; sourceTree = ""; }; 4655489B1F8508C8D8E42A11861B59C6 /* small_vector.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = small_vector.h; path = folly/small_vector.h; sourceTree = ""; }; 465882AA71039061DF7EAF94045B05B5 /* Arena.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Arena.h; path = folly/memory/Arena.h; sourceTree = ""; }; - 467975AFD9EDB1602266121543BE4CBF /* Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = Private.h; sourceTree = ""; }; - 4695251E28F41008C9F3DFF460FEECE8 /* RCTUtilsUIOverride.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTUtilsUIOverride.m; sourceTree = ""; }; + 4666F0B31DCA585F6B9ADA16B9208840 /* RCTNetworking.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTNetworking.h; path = Libraries/Network/RCTNetworking.h; sourceTree = ""; }; + 4691158A680561562C3BD4EFCA236E87 /* RCTTextDecorationLineType.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTextDecorationLineType.h; sourceTree = ""; }; + 4696A8C52F32F67C00333F98532DB9C4 /* RNSScreenContainer.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNSScreenContainer.m; path = ios/RNSScreenContainer.m; sourceTree = ""; }; 46C3F960F2F470828033491C1D3D158F /* FireAndForgetResponder.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = FireAndForgetResponder.cpp; path = rsocket/statemachine/FireAndForgetResponder.cpp; sourceTree = ""; }; + 46CE1E433709DA258BD09643EE4944CC /* RCTImageDataDecoder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageDataDecoder.h; path = Libraries/Image/RCTImageDataDecoder.h; sourceTree = ""; }; + 46D1906EE5CBCD96DE5885EE452ED41D /* RNNotificationCenterListener.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNNotificationCenterListener.m; path = RNNotifications/RNNotificationCenterListener.m; sourceTree = ""; }; 46DCB7305D8602FB7F98C639EA262C75 /* TcpConnectionAcceptor.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = TcpConnectionAcceptor.cpp; path = rsocket/transports/tcp/TcpConnectionAcceptor.cpp; sourceTree = ""; }; - 46FC02C46C54CAD113B87A9F8462B5EA /* RCTRawTextShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTRawTextShadowView.h; sourceTree = ""; }; - 47118A9ACC1AB1735068E8ABAE09B11C /* EXSessionTaskDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = EXSessionTaskDelegate.h; sourceTree = ""; }; - 47135A5C5BE770C65EB3FEF779F3097D /* UMConstantsInterface.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMConstantsInterface.debug.xcconfig; sourceTree = ""; }; 471C8FB7DF0F4F3CFAFB00D4C3C24BD7 /* Base-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "Base-inl.h"; path = "folly/gen/Base-inl.h"; sourceTree = ""; }; - 4720C31A4DEA72B773C99CD7387E0C8B /* RNCSafeAreaViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCSafeAreaViewManager.m; path = ios/SafeAreaView/RNCSafeAreaViewManager.m; sourceTree = ""; }; + 472C79CEAE9B20FA4753D176E4E34C02 /* React-jsinspector-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-jsinspector-dummy.m"; sourceTree = ""; }; 47399E8B0D6F2C448463580DCD3137AA /* IOExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = IOExecutor.h; path = folly/executors/IOExecutor.h; sourceTree = ""; }; - 473F2EB36323A7D3EE84A937C6AD6108 /* ReactNativeKeyboardInput-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "ReactNativeKeyboardInput-dummy.m"; sourceTree = ""; }; - 47499BB309F53E2C9508CE83D0567930 /* RCTPlatform.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTPlatform.mm; sourceTree = ""; }; - 47731A58CB137A580E8F69F39B228C1B /* RCTUIImageViewAnimated.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTUIImageViewAnimated.m; sourceTree = ""; }; - 4778D802281AD0D545EFE32D9BF3FD75 /* RCTRootShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTRootShadowView.h; sourceTree = ""; }; - 4795778D8BCF15D67E23D2125CB39C08 /* BSGConnectivity.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BSGConnectivity.m; sourceTree = ""; }; - 479AD4FF8D6EDE3854F66F693EC50FC4 /* Color+Interpolation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Color+Interpolation.m"; sourceTree = ""; }; + 475533E523D9AAB2D6357E18AC25B45E /* UMTaskServiceInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMTaskServiceInterface.h; path = UMTaskManagerInterface/UMTaskServiceInterface.h; sourceTree = ""; }; + 477B28B03343F5C67D5E1D1B4D06EBC1 /* RNGestureHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNGestureHandler.h; path = ios/RNGestureHandler.h; sourceTree = ""; }; 479D4739F12395A5D7A99B49ED3351C2 /* RecordIO.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = RecordIO.cpp; path = folly/io/RecordIO.cpp; sourceTree = ""; }; + 47A0B6814246A0469242343FA7ADCE6F /* RCTDefines.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTDefines.h; sourceTree = ""; }; 47A611239770596FBAABEF02CE533C53 /* FIRInstallationsIIDStore.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstallationsIIDStore.h; path = FirebaseInstallations/Source/Library/IIDMigration/FIRInstallationsIIDStore.h; sourceTree = ""; }; 47B0637420115E94A5E606433A5CB9A6 /* GDTCORLifecycle.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GDTCORLifecycle.m; path = GoogleDataTransport/GDTCORLibrary/GDTCORLifecycle.m; sourceTree = ""; }; - 47C4BF0B542880B1B7650996662A4FD5 /* BSG_KSCrashCallCompletion.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BSG_KSCrashCallCompletion.m; sourceTree = ""; }; + 47B2CFFA7BB9D017FD9B29C2B45AC44B /* React-callinvoker.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-callinvoker.debug.xcconfig"; sourceTree = ""; }; 47DA31411E38B59F058F2A72E0D3B893 /* mux_types.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = mux_types.h; path = src/webp/mux_types.h; sourceTree = ""; }; - 47E1E5D649A8A15164BAFEA889F9012E /* RCTTiming.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTTiming.mm; sourceTree = ""; }; 47EEC04E68C554C648F1C10500C90103 /* webpi_dec.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = webpi_dec.h; path = src/dec/webpi_dec.h; sourceTree = ""; }; 47EF3DE89344103E4EFFB2621B2A847D /* vi.lproj */ = {isa = PBXFileReference; includeInIndex = 1; name = vi.lproj; path = "Objective-C/TOCropViewController/Resources/vi.lproj"; sourceTree = ""; }; 4806111C0F5EA9A33CFCBC19A7408D66 /* IPAddressV6.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = IPAddressV6.h; path = folly/IPAddressV6.h; sourceTree = ""; }; + 48077F3173C437980E344105E6538C8B /* EXWebBrowser.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = EXWebBrowser.debug.xcconfig; sourceTree = ""; }; + 481DA64D7FB2B0664EB8FE3C83DDDBA9 /* Ionicons.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = Ionicons.ttf; path = Fonts/Ionicons.ttf; sourceTree = ""; }; 482963E68B742542703CB33AA739B756 /* Flipper-Glog-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Flipper-Glog-dummy.m"; sourceTree = ""; }; 48410582EC986A3E6F0649D9FE8F9D39 /* ReadMostlySharedPtr.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ReadMostlySharedPtr.h; path = folly/experimental/ReadMostlySharedPtr.h; sourceTree = ""; }; - 48423A8E18B39E0755E7A8FE8F1A4A6A /* RNGestureHandlerRegistry.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNGestureHandlerRegistry.m; path = ios/RNGestureHandlerRegistry.m; sourceTree = ""; }; 48425DA2F01D82A20786D5E55E264A29 /* libreact-native-orientation-locker.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libreact-native-orientation-locker.a"; path = "libreact-native-orientation-locker.a"; sourceTree = BUILT_PRODUCTS_DIR; }; - 484DAD558E09523E40F732EB23805655 /* BugsnagUser.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagUser.h; sourceTree = ""; }; 484F863453629E403018AB42730698E7 /* quant_levels_utils.c */ = {isa = PBXFileReference; includeInIndex = 1; name = quant_levels_utils.c; path = src/utils/quant_levels_utils.c; sourceTree = ""; }; 485209EA6D0397BC5BCA057BB7370F2E /* SDImageLoader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageLoader.h; path = SDWebImage/Core/SDImageLoader.h; sourceTree = ""; }; - 4856E4B99BCEC6FFAED5E4BED783FF19 /* EXImageLoader-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "EXImageLoader-prefix.pch"; sourceTree = ""; }; + 48593C2AFF37B5B233CDDEF1B17273D5 /* RNSScreenStackHeaderConfig.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNSScreenStackHeaderConfig.m; path = ios/RNSScreenStackHeaderConfig.m; sourceTree = ""; }; 485E3C444F6F2D3117FE1ED31D9B6242 /* raw_logging.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = raw_logging.cc; path = src/raw_logging.cc; sourceTree = ""; }; 4866196335D72DFE1CA40EC5C33D70AB /* backward_references_enc.c */ = {isa = PBXFileReference; includeInIndex = 1; name = backward_references_enc.c; path = src/enc/backward_references_enc.c; sourceTree = ""; }; - 48684E712058B9F3CABC3CFA659529DB /* ARTGroup.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ARTGroup.h; path = ios/ARTGroup.h; sourceTree = ""; }; 486C141CD8F90940D6398170558F0B40 /* Format.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = Format.cpp; path = folly/Format.cpp; sourceTree = ""; }; - 486DE2CD5FCBA4044A34B0A390647838 /* NativeToJsBridge.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = NativeToJsBridge.cpp; sourceTree = ""; }; 48700365D910E7342D98964C607737A0 /* FlipperConnectionManagerImpl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FlipperConnectionManagerImpl.h; path = xplat/Flipper/FlipperConnectionManagerImpl.h; sourceTree = ""; }; - 4893A3AABA60A4D947B9185E9D78C41F /* RNCSafeAreaView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCSafeAreaView.m; path = ios/SafeAreaView/RNCSafeAreaView.m; sourceTree = ""; }; - 489A6810B51514E0051BE26046CD4E30 /* UMDefines.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMDefines.h; path = UMCore/UMDefines.h; sourceTree = ""; }; - 48B8C83706E6EB956E9B582DE0DE15E4 /* RNGestureHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNGestureHandler.h; path = ios/RNGestureHandler.h; sourceTree = ""; }; - 48CF9C5580DE586E095C781BF30E40E1 /* RNFBSharedUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNFBSharedUtils.h; path = ios/RNFBApp/RNFBSharedUtils.h; sourceTree = ""; }; + 488772C4721EA1135056A14045EA6C13 /* RCTBlobPlugins.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTBlobPlugins.mm; sourceTree = ""; }; 48E2D5BDDC08A1611AE371598671BB5B /* vp8li_enc.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = vp8li_enc.h; path = src/enc/vp8li_enc.h; sourceTree = ""; }; - 48F31C9E21AD82BF2534690A1ADD63F6 /* RNRootView.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNRootView.debug.xcconfig; sourceTree = ""; }; - 49016DEC42E0326308CC1D75DD26B6AA /* RNCAppearanceProvider.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCAppearanceProvider.h; path = ios/Appearance/RNCAppearanceProvider.h; sourceTree = ""; }; - 4908928E270C6B7358719FDD46676BD8 /* RNCMaskedView.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNCMaskedView.release.xcconfig; sourceTree = ""; }; - 491BE702DDF7794091447DE465250257 /* RCTTypeSafety.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RCTTypeSafety.release.xcconfig; sourceTree = ""; }; - 493F59935E3C8D6F7007BE5F62DDA46E /* BSG_KSCrashSentry_MachException.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashSentry_MachException.h; sourceTree = ""; }; + 48EEC0F86D7BE8EDF11D9FA1FED2D07D /* QBVideoIndicatorView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = QBVideoIndicatorView.m; path = ios/QBImagePicker/QBImagePicker/QBVideoIndicatorView.m; sourceTree = ""; }; + 48FF4E16D3117C99285385E40CCF0B5E /* RCTLayout.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTLayout.m; sourceTree = ""; }; + 490F639165FEF1EBB90D7CE4AEA832A1 /* REACondNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REACondNode.h; sourceTree = ""; }; + 492C85600670CE9FD205E89A0C4E01F9 /* UMBarCodeScannerInterface.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = UMBarCodeScannerInterface.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; 4940DDDF644EF093529DDFB834F409BE /* token_enc.c */ = {isa = PBXFileReference; includeInIndex = 1; name = token_enc.c; path = src/enc/token_enc.c; sourceTree = ""; }; 494E934B4070A029E1A8D42C9BDF4646 /* libEXImageLoader.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libEXImageLoader.a; path = libEXImageLoader.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 4956774B7CEB3C00668F241520D85D57 /* React-RCTText.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-RCTText.debug.xcconfig"; sourceTree = ""; }; - 495A404B632FA445146F59B8245C9C04 /* JSModulesUnbundle.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = JSModulesUnbundle.h; sourceTree = ""; }; + 495243FF42C15581544BD8D57776765B /* RCTRequired.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RCTRequired.release.xcconfig; sourceTree = ""; }; + 495D717A01CA75C26F0E81EFDDE53B1B /* RCTDisplayLink.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTDisplayLink.m; sourceTree = ""; }; 4970DF907C454800B98BA5A0FA62DF26 /* ThreadLocal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ThreadLocal.h; path = folly/ThreadLocal.h; sourceTree = ""; }; 497B3EE29A71EFB193F3A3E014DA8053 /* json.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = json.cpp; path = folly/json.cpp; sourceTree = ""; }; 498249EACC04B3EAD707CCB97B1D05D5 /* Flipper-Folly-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Flipper-Folly-dummy.m"; sourceTree = ""; }; - 498405A338574FB0C01830D63D402ACD /* RCTEventAnimation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTEventAnimation.h; sourceTree = ""; }; + 498FF03499E9ACAF13027DCC30825AB7 /* RCTManagedPointer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTManagedPointer.h; sourceTree = ""; }; + 49A248D983C45A39C2271CFD250FCC4F /* RCTInspectorDevServerHelper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTInspectorDevServerHelper.h; sourceTree = ""; }; 49B2852213173F5CFF711D59E572336C /* UIImage+CropRotate.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIImage+CropRotate.m"; path = "Objective-C/TOCropViewController/Categories/UIImage+CropRotate.m"; sourceTree = ""; }; - 49BCB1B013AE59C44FF4F38FDAC4FFDD /* TurboModuleUtils.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = TurboModuleUtils.cpp; path = turbomodule/core/TurboModuleUtils.cpp; sourceTree = ""; }; - 49C05D2BFB60A03B270CB32F22D85CAD /* RCTCxxMethod.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTCxxMethod.mm; sourceTree = ""; }; - 49CB22390E5D62971366462E93DB7C3B /* ARTTextManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = ARTTextManager.m; sourceTree = ""; }; 49D61B0F77E923C8AD911A206F2F169A /* bio.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = bio.h; path = ios/include/openssl/bio.h; sourceTree = ""; }; 49DBC109B89F7D5A72A4000B12774106 /* FIRCLSFile.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSFile.h; path = Crashlytics/Crashlytics/Helpers/FIRCLSFile.h; sourceTree = ""; }; - 49ED025249CB4A7430D5D452F66433E0 /* BitUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = BitUtils.h; path = yoga/BitUtils.h; sourceTree = ""; }; - 4A16DF5A7F78ED5DC9A873E9D0302993 /* react-native-orientation-locker.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = "react-native-orientation-locker.podspec"; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - 4A2378F2FB50DFD412D018A3BACB56D7 /* RCTConvert+CoreLocation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RCTConvert+CoreLocation.h"; sourceTree = ""; }; + 49DC05020B3EE5FC65B07DC95C77E61B /* RCTSwitch.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSwitch.h; sourceTree = ""; }; + 49F6C22414F842ABC3D5C2364213EA49 /* EXWebBrowser.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = EXWebBrowser.release.xcconfig; sourceTree = ""; }; + 4A045E7E48512490673FEB5EEC4A5E0D /* RNCSafeAreaShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCSafeAreaShadowView.h; path = ios/SafeAreaView/RNCSafeAreaShadowView.h; sourceTree = ""; }; + 4A109ADFD9DF216B0398F92BF13E6105 /* RNLocalize.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNLocalize.debug.xcconfig; sourceTree = ""; }; 4A3F3D3D3660DF724982F579A18B9D82 /* opensslconf-arm64.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "opensslconf-arm64.h"; path = "ios/include/openssl/opensslconf-arm64.h"; sourceTree = ""; }; - 4A40C8F59798D8A2BCE6790DFB979A47 /* StorageGetters.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = StorageGetters.m; path = ios/StorageGetters.m; sourceTree = ""; }; 4A5232C627636ED7608172E5B61E740B /* SDAnimatedImageView+WebCache.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "SDAnimatedImageView+WebCache.h"; path = "SDWebImage/Core/SDAnimatedImageView+WebCache.h"; sourceTree = ""; }; - 4A5AC3525D69BAF7B7174D3D76953776 /* RCTFileRequestHandler.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTFileRequestHandler.mm; sourceTree = ""; }; - 4A6834DBD5AA0D91D155DBECA8185C54 /* YGConfig.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = YGConfig.cpp; path = yoga/YGConfig.cpp; sourceTree = ""; }; - 4A7BF203C0C01D2D63E560D4851E24A2 /* RCTPickerManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTPickerManager.m; sourceTree = ""; }; + 4A7225A2194793114250CE1927337DD2 /* RCTDevLoadingView.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTDevLoadingView.mm; sourceTree = ""; }; + 4A7C72C531674FE141DC42F4307DC998 /* RCTImageUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageUtils.h; path = Libraries/Image/RCTImageUtils.h; sourceTree = ""; }; 4A82CDB88107436DD2D192B9F33EB9FB /* Sched.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Sched.h; path = folly/portability/Sched.h; sourceTree = ""; }; + 4A93A3F0212383F09DF1C628E805EEE8 /* FBLazyVector.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = FBLazyVector.release.xcconfig; sourceTree = ""; }; 4A95CCF2E6F533CAA1CDFC6D5E9FD390 /* UIView+WebCacheOperation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIView+WebCacheOperation.h"; path = "SDWebImage/Core/UIView+WebCacheOperation.h"; sourceTree = ""; }; + 4A96ADC3AFABCAD4DBCA96ED20BAB417 /* RCTImageViewManager.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTImageViewManager.mm; sourceTree = ""; }; 4A9F53A4D7F2FE6DCFCECFCB4FCA2FCE /* alpha_dec.c */ = {isa = PBXFileReference; includeInIndex = 1; name = alpha_dec.c; path = src/dec/alpha_dec.c; sourceTree = ""; }; - 4AA219A24DF974BE1509319A31544E1A /* QBAssetsViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = QBAssetsViewController.h; path = ios/QBImagePicker/QBImagePicker/QBAssetsViewController.h; sourceTree = ""; }; - 4AA9214E80ABD8633D03CE765739D87E /* RNJitsiMeetViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNJitsiMeetViewManager.h; path = ios/RNJitsiMeetViewManager.h; sourceTree = ""; }; 4AAACEC58ABAB756C14C9B043CF24A0C /* FIRCLSRecordApplication.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSRecordApplication.h; path = Crashlytics/Crashlytics/Models/Record/FIRCLSRecordApplication.h; sourceTree = ""; }; - 4AAD645A89AA53AA46FF2F2EA406D435 /* RNLocalize-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNLocalize-prefix.pch"; sourceTree = ""; }; + 4AAE0836A9A0CFAFFF721D6884637306 /* UMImageLoaderInterface.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMImageLoaderInterface.debug.xcconfig; sourceTree = ""; }; 4AAE8646B15DEB7323FBDB87255F1019 /* GDTCORFlatFileStorage.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GDTCORFlatFileStorage.m; path = GoogleDataTransport/GDTCORLibrary/GDTCORFlatFileStorage.m; sourceTree = ""; }; 4AB02C78C715E4FAAFFA79E3129116C8 /* FIRHeartbeatInfo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRHeartbeatInfo.h; path = FirebaseCore/Sources/Private/FIRHeartbeatInfo.h; sourceTree = ""; }; - 4AB53F9C77EF8C2263666249468A480A /* RNVectorIcons-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNVectorIcons-prefix.pch"; sourceTree = ""; }; 4AB5FC4247F0BB39E819B3CA773180AA /* dynamic.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = dynamic.cpp; path = folly/dynamic.cpp; sourceTree = ""; }; - 4AC68D790CEC3B99E278CE3D11F66364 /* RCTSinglelineTextInputViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSinglelineTextInputViewManager.m; sourceTree = ""; }; 4AC72A1D88D2EF29FF478C63A05978F2 /* SDWebImageCacheSerializer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageCacheSerializer.h; path = SDWebImage/Core/SDWebImageCacheSerializer.h; sourceTree = ""; }; + 4ACF2C969C112E2DFE877438009B3A07 /* EXVideoView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = EXVideoView.m; sourceTree = ""; }; + 4AD0D94ADB6F6074C7902E7BBE3758A8 /* react-native-cookies-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "react-native-cookies-dummy.m"; sourceTree = ""; }; 4AD64825828096788A5172C0A9C52AD2 /* Parallel-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "Parallel-inl.h"; path = "folly/gen/Parallel-inl.h"; sourceTree = ""; }; 4ADC1964B240D9CBBF4C261A41861ADA /* FlipperKitLayoutPlugin.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FlipperKitLayoutPlugin.h; path = iOS/Plugins/FlipperKitLayoutPlugin/FlipperKitLayoutPlugin/FlipperKitLayoutPlugin.h; sourceTree = ""; }; - 4AE9D6CF50E23989C0B2606E12509C7E /* RNCMaskedView-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNCMaskedView-prefix.pch"; sourceTree = ""; }; - 4AF9E7B8683D29B68734C324C35039C1 /* RNFBAppModule.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNFBAppModule.m; path = ios/RNFBApp/RNFBAppModule.m; sourceTree = ""; }; + 4B0055F7A69A13F253B736E78AF9A1C7 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; + 4B17AB4D5E54B942BCD0E3A01D2855AF /* BSGSerialization.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BSGSerialization.m; sourceTree = ""; }; 4B2FA3F110E2F5285F8EFD3757E2E7F1 /* crashlytics.nanopb.c */ = {isa = PBXFileReference; includeInIndex = 1; name = crashlytics.nanopb.c; path = Crashlytics/Protogen/nanopb/crashlytics.nanopb.c; sourceTree = ""; }; - 4B426F711340C853C74829217B94B748 /* BugsnagSession.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagSession.h; sourceTree = ""; }; + 4B532F7FE42EEB81ED448064B1E331EB /* BugsnagNotifier.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagNotifier.h; sourceTree = ""; }; 4B53E40ABBBFEB903E35684CAD1B0D67 /* SDDeviceHelper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDDeviceHelper.h; path = SDWebImage/Private/SDDeviceHelper.h; sourceTree = ""; }; - 4B59F134317903C5ECDD3566B6791F82 /* RCTKeyCommandConstants.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCTKeyCommandConstants.m; path = ios/KeyCommands/RCTKeyCommandConstants.m; sourceTree = ""; }; - 4B7875F27F127CF8396F2E6645C875E5 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; + 4B59D82DF9BD9A69732E769401112AB2 /* EXConstants.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXConstants.m; path = EXConstants/EXConstants.m; sourceTree = ""; }; + 4B603DA70AA28DDFC4E541E64EA93064 /* RNLocalize.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RNLocalize.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; 4B78FF6506357498CC492CA458DCCA57 /* FIRInstallationsItem+RegisterInstallationAPI.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FIRInstallationsItem+RegisterInstallationAPI.h"; path = "FirebaseInstallations/Source/Library/InstallationsAPI/FIRInstallationsItem+RegisterInstallationAPI.h"; sourceTree = ""; }; + 4B96DA14C0476D9773D2097026D319C3 /* EXAppleAuthentication-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "EXAppleAuthentication-prefix.pch"; sourceTree = ""; }; 4B9FD8B9EFE1CC37430E650C6D194813 /* IOBufQueue.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = IOBufQueue.cpp; path = folly/io/IOBufQueue.cpp; sourceTree = ""; }; + 4BA15B734C612FDB44FE65B69238926A /* React-RCTImage-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-RCTImage-dummy.m"; sourceTree = ""; }; + 4BC5A56778094AD5E9BB7C4D450DBE43 /* EXKeepAwake-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "EXKeepAwake-dummy.m"; sourceTree = ""; }; 4BF09CDE71F1FF8C5D5DD40D1CE53E0C /* ReentrantAllocator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ReentrantAllocator.h; path = folly/memory/ReentrantAllocator.h; sourceTree = ""; }; - 4C18F28129AEAC8720CA8DCB98650F8F /* RCTImageLoaderWithAttributionProtocol.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageLoaderWithAttributionProtocol.h; path = Libraries/Image/RCTImageLoaderWithAttributionProtocol.h; sourceTree = ""; }; + 4C08794CC6CFFA790237F6122718141C /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; 4C1FD842D301365DD7B5A66F61D69513 /* GoogleAppMeasurement.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = GoogleAppMeasurement.release.xcconfig; sourceTree = ""; }; - 4C252EAA8CF16E6B6EFAE130677D843F /* EXKeepAwake.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXKeepAwake.h; path = EXKeepAwake/EXKeepAwake.h; sourceTree = ""; }; + 4C21257485BC2D51DCD260B4DC14D4AA /* RCTAnimationPlugins.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTAnimationPlugins.mm; sourceTree = ""; }; 4C2D97964960BE1EB78FEB26FFB22972 /* StaticSingletonManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = StaticSingletonManager.h; path = folly/detail/StaticSingletonManager.h; sourceTree = ""; }; - 4C4071AB9401DC258473B72A13E2BD27 /* RNNotificationUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNNotificationUtils.h; path = RNNotifications/RNNotificationUtils.h; sourceTree = ""; }; - 4C5A24F7869DACEA94D29F59EDDCA90D /* Yoga.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = Yoga.cpp; path = yoga/Yoga.cpp; sourceTree = ""; }; - 4C5BC8126FADA854265387D3DD55D91F /* RNFBApp.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RNFBApp.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - 4C62D3D798D7679A8D9B0CE220A26558 /* RNFetchBlobConst.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNFetchBlobConst.m; path = ios/RNFetchBlobConst.m; sourceTree = ""; }; - 4C8C11AD6FA6470DC663D9FAE13E49A5 /* RNLocalize-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNLocalize-dummy.m"; sourceTree = ""; }; + 4C6E9D1C5FDE09F9764B1853523ACF43 /* RCTVibrationPlugins.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTVibrationPlugins.h; path = Libraries/Vibration/RCTVibrationPlugins.h; sourceTree = ""; }; + 4C8C119F60CED5873359325CC7F0E23A /* DispatchMessageQueueThread.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = DispatchMessageQueueThread.h; sourceTree = ""; }; 4C8C64BF31A681D4543C73482131964B /* rescaler.c */ = {isa = PBXFileReference; includeInIndex = 1; name = rescaler.c; path = src/dsp/rescaler.c; sourceTree = ""; }; + 4C8D045B0A04D24DA32BF001F961EEB6 /* FontAwesome5_Regular.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = FontAwesome5_Regular.ttf; path = Fonts/FontAwesome5_Regular.ttf; sourceTree = ""; }; + 4C914DF697DC9BB70A9CDBD1157CFCEB /* instrumentation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = instrumentation.h; sourceTree = ""; }; 4C9501DFA8FCAB26095C27C948853084 /* ScheduledExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ScheduledExecutor.h; path = folly/executors/ScheduledExecutor.h; sourceTree = ""; }; 4C9D8E41C9347F5B9DF6F6B812193B39 /* BitVectorCoding.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = BitVectorCoding.h; path = folly/experimental/BitVectorCoding.h; sourceTree = ""; }; - 4CCD990451BB54C2D5F71B2EC8118674 /* UMReactFontManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = UMReactFontManager.m; sourceTree = ""; }; 4CDB9425EF8E65082AEB3B13FB362BCD /* FBLPromise+Do.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FBLPromise+Do.h"; path = "Sources/FBLPromises/include/FBLPromise+Do.h"; sourceTree = ""; }; 4CF414035C434D8AD1F8AFB3E6EB47BC /* alpha_processing_sse2.c */ = {isa = PBXFileReference; includeInIndex = 1; name = alpha_processing_sse2.c; path = src/dsp/alpha_processing_sse2.c; sourceTree = ""; }; 4D0594E68D945E7A8AFE9B4364FC05E7 /* GULLoggerLevel.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULLoggerLevel.h; path = GoogleUtilities/Logger/Public/GULLoggerLevel.h; sourceTree = ""; }; 4D34A9DCDE2F562665FE562C08C0FA4B /* Malloc.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = Malloc.cpp; path = folly/portability/Malloc.cpp; sourceTree = ""; }; + 4D53EB47529C35BFAD253421073C5C34 /* RCTI18nUtil.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTI18nUtil.m; sourceTree = ""; }; 4D592DC0D8F76DE84571E878CA12A13D /* GoogleUtilities-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "GoogleUtilities-prefix.pch"; sourceTree = ""; }; 4D60C99B1B4C99EB0D05E65A41B11DBD /* FBLPromise+Race.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "FBLPromise+Race.m"; path = "Sources/FBLPromises/FBLPromise+Race.m"; sourceTree = ""; }; 4D61674381C4C65445B8F2A346E6D32F /* cost_sse2.c */ = {isa = PBXFileReference; includeInIndex = 1; name = cost_sse2.c; path = src/dsp/cost_sse2.c; sourceTree = ""; }; - 4D99BA9B27AB22CAB03D1EFE09E33E0E /* Ionicons.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = Ionicons.ttf; path = Fonts/Ionicons.ttf; sourceTree = ""; }; - 4D9B5E822DFD353429E2CCC69F4124F3 /* react-native-cookies-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "react-native-cookies-prefix.pch"; sourceTree = ""; }; + 4D6C67EE4AAE1608440115931A0FAAFA /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; + 4D8B3371FE0AD99CE7A75B25562E7F77 /* RCTRootViewInternal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTRootViewInternal.h; sourceTree = ""; }; 4D9F3BB9AA002ADE44729B78D65ABB82 /* TOCropViewController-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "TOCropViewController-prefix.pch"; sourceTree = ""; }; - 4DAA2E264016C6BCA8387D91C85749CD /* UMUtilities.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMUtilities.h; path = UMCore/UMUtilities.h; sourceTree = ""; }; - 4DAC573399AFC1F7C2300C1DB4400553 /* REAFunctionNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REAFunctionNode.h; sourceTree = ""; }; + 4DB4BF1F7BBD3AE397B5253BFDCB6814 /* RCTView+SafeAreaCompat.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "RCTView+SafeAreaCompat.m"; path = "ios/SafeAreaView/RCTView+SafeAreaCompat.m"; sourceTree = ""; }; + 4DC75A2C7C2F0F85EDF4369731E1D6F6 /* RNCCameraRollManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCCameraRollManager.h; path = ios/RNCCameraRollManager.h; sourceTree = ""; }; 4DCB530F37CDD6129D7DC4E184037CCF /* UIView+WebCacheOperation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIView+WebCacheOperation.m"; path = "SDWebImage/Core/UIView+WebCacheOperation.m"; sourceTree = ""; }; - 4DCE9007D77EB18D5FAB788689DE140A /* Foundation.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = Foundation.ttf; path = Fonts/Foundation.ttf; sourceTree = ""; }; + 4DCCCBFC081BF5B4C91152F758174B31 /* RCTDecayAnimation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTDecayAnimation.m; sourceTree = ""; }; + 4DCCF6CA395570A3BEF1F3A2775A17ED /* EXFileSystemLocalFileHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXFileSystemLocalFileHandler.m; path = EXFileSystem/EXFileSystemLocalFileHandler.m; sourceTree = ""; }; + 4DE488FC1A00492FF950068953C3E320 /* RCTPerfMonitor.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTPerfMonitor.mm; sourceTree = ""; }; 4DE4E309CA0BC85CD4E6A063E9780708 /* GULNetworkURLSession.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GULNetworkURLSession.m; path = GoogleUtilities/Network/GULNetworkURLSession.m; sourceTree = ""; }; 4DED4D23B0669071B283468905049422 /* SDWebImageDownloaderDecryptor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageDownloaderDecryptor.h; path = SDWebImage/Core/SDWebImageDownloaderDecryptor.h; sourceTree = ""; }; - 4DF56AC782AF734F69C643530BEAC53C /* BugsnagSessionTracker.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagSessionTracker.m; sourceTree = ""; }; - 4E076C44C413E47F342AC4EE67E397E2 /* EXConstants.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = EXConstants.release.xcconfig; sourceTree = ""; }; - 4E0B485BCE1A2A3D1063FAE9CCCBD5CF /* RCTVibration.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTVibration.mm; sourceTree = ""; }; + 4DF9BDC94D7D090AAC215443CF1F8E86 /* RNPinchHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNPinchHandler.h; sourceTree = ""; }; + 4E040406828D0E4CB1DDA95C793D0466 /* RNCSafeAreaProviderManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCSafeAreaProviderManager.h; path = ios/SafeAreaView/RNCSafeAreaProviderManager.h; sourceTree = ""; }; 4E22E2AED665251378C43B45AE08032E /* SDWebImageDownloaderRequestModifier.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWebImageDownloaderRequestModifier.m; path = SDWebImage/Core/SDWebImageDownloaderRequestModifier.m; sourceTree = ""; }; 4E39F7CE4B77FAE97B47107518D3F547 /* IStream.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = IStream.h; path = folly/gen/IStream.h; sourceTree = ""; }; - 4E539C386CF7E1BFC17E306D127E55E8 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; + 4E7113059AEDDD56C9DFBFC85B58603F /* EXKeepAwake.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXKeepAwake.m; path = EXKeepAwake/EXKeepAwake.m; sourceTree = ""; }; 4E8B2D26280BC86F63522EC0DBB03402 /* SDWebImageError.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageError.h; path = SDWebImage/Core/SDWebImageError.h; sourceTree = ""; }; - 4EA4CC2A061E9F9A7572AA7386EE9278 /* Utils.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = Utils.cpp; path = yoga/Utils.cpp; sourceTree = ""; }; + 4E9F575BBA84EFAAC5776009B7D2282E /* UMBarCodeScannerProviderInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMBarCodeScannerProviderInterface.h; path = UMBarCodeScannerInterface/UMBarCodeScannerProviderInterface.h; sourceTree = ""; }; + 4EA016B8FFFAB2E1D4D2BBC0CEF441CD /* RCTComponentData.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTComponentData.h; sourceTree = ""; }; 4EADDB39BC2F7D6BB1A80CEFD58B09D5 /* rc2.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = rc2.h; path = ios/include/openssl/rc2.h; sourceTree = ""; }; 4EBA92B532BE23DFCB3F304972B74DEB /* FIRCLSNetworkResponseHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSNetworkResponseHandler.h; path = Crashlytics/Shared/FIRCLSNetworking/FIRCLSNetworkResponseHandler.h; sourceTree = ""; }; - 4EBC7FACB50E141DA6A4D7EA34FC21DE /* RNFastImage.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNFastImage.release.xcconfig; sourceTree = ""; }; - 4EBDDC34DD5EA2B46AFD7CF6924496D1 /* UMFontProcessorInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMFontProcessorInterface.h; path = UMFontInterface/UMFontProcessorInterface.h; sourceTree = ""; }; 4ED0B1D843E6B1401918FC160A37D0BB /* PublishProcessor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PublishProcessor.h; path = yarpl/flowable/PublishProcessor.h; sourceTree = ""; }; 4ED27D63CA277829D5E58F99430AD316 /* FIRCLSURLSessionTask_PrivateMethods.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSURLSessionTask_PrivateMethods.h; path = Crashlytics/Crashlytics/FIRCLSURLSession/Tasks/FIRCLSURLSessionTask_PrivateMethods.h; sourceTree = ""; }; + 4ED4B6718B25734BD6CC3C40AA8BB7A9 /* RCTPackagerClient.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTPackagerClient.h; sourceTree = ""; }; 4ED97801AF64B223BBECA86F35A42827 /* FingerprintPolynomial.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FingerprintPolynomial.h; path = folly/detail/FingerprintPolynomial.h; sourceTree = ""; }; - 4EF08DD896ED55D2EC8EAF7B071FB542 /* RNCWKProcessPoolManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCWKProcessPoolManager.m; path = apple/RNCWKProcessPoolManager.m; sourceTree = ""; }; - 4EFE0B1BA18DBCCC4A83B871AFB1E0A3 /* EXPermissions.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = EXPermissions.release.xcconfig; sourceTree = ""; }; + 4EE5F56CD5B36D1A2F93F85A7A7E33CE /* RNBackgroundTimer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNBackgroundTimer.h; path = ios/RNBackgroundTimer.h; sourceTree = ""; }; + 4F09632D02FC9C4ED72FDBC95E756300 /* JSModulesUnbundle.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = JSModulesUnbundle.h; sourceTree = ""; }; + 4F1942E4D0A0369C9E03DA3771CFD59A /* JSBundleType.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = JSBundleType.cpp; sourceTree = ""; }; 4F2055BDB57180E82727365BDBEA6CBB /* Config.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Config.h; path = folly/portability/Config.h; sourceTree = ""; }; - 4F27C91073AFBF5FA95E871D937BBD41 /* RNSScreenContainer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNSScreenContainer.h; path = ios/RNSScreenContainer.h; sourceTree = ""; }; - 4F2D633E76287494814E1FC604145383 /* RCTShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTShadowView.h; sourceTree = ""; }; 4F46D2C4EA18AD659465E7C64770227C /* rescaler_mips_dsp_r2.c */ = {isa = PBXFileReference; includeInIndex = 1; name = rescaler_mips_dsp_r2.c; path = src/dsp/rescaler_mips_dsp_r2.c; sourceTree = ""; }; 4F505FB26EAE16EA0A8AC26397048EB3 /* openssl_md5.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = openssl_md5.h; path = Core/aes/openssl/openssl_md5.h; sourceTree = ""; }; - 4F73DE85FFCAB9588F5CD8E37815637D /* RNGestureHandlerManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNGestureHandlerManager.h; path = ios/RNGestureHandlerManager.h; sourceTree = ""; }; 4F806D732ECB4440DCAC96A045EE05C2 /* yuv.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = yuv.h; path = src/dsp/yuv.h; sourceTree = ""; }; 4F80DD90C6A1DA871F6F33CBFFF8BC2F /* SDImageCacheDefine.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageCacheDefine.m; path = SDWebImage/Core/SDImageCacheDefine.m; sourceTree = ""; }; 4F82EAFB74F63EB62458ADB027AEFC7F /* GDTCOREvent.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GDTCOREvent.m; path = GoogleDataTransport/GDTCORLibrary/GDTCOREvent.m; sourceTree = ""; }; 4F87D1A058F174B42F92C136D26FCC41 /* FIRInstallations.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstallations.m; path = FirebaseInstallations/Source/Library/FIRInstallations.m; sourceTree = ""; }; - 4FC5FD206FDA8596406D871F557C3CC8 /* RNFBAnalytics.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RNFBAnalytics.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - 4FDA96879D96070EB1983E98E655CBDC /* librn-fetch-blob.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "librn-fetch-blob.a"; path = "librn-fetch-blob.a"; sourceTree = BUILT_PRODUCTS_DIR; }; + 4F8B93F03BF0E888249779E7300BEBBB /* BugsnagSessionTrackingPayload.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagSessionTrackingPayload.m; sourceTree = ""; }; + 4F91B3C9FF3A0A1D807ED2E81EC0EA58 /* RCTConvert+Text.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "RCTConvert+Text.h"; path = "Libraries/Text/RCTConvert+Text.h"; sourceTree = ""; }; + 4FA90284218FAB4C910CF0CD7D02CEE8 /* ARTSurfaceViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = ARTSurfaceViewManager.m; sourceTree = ""; }; + 4FAF0B9C17758811C5D83729554EACA3 /* RNFBCrashlytics-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNFBCrashlytics-prefix.pch"; sourceTree = ""; }; + 4FCDB1CF016AFCD58C3DC21A0B326BCE /* RAMBundleRegistry.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RAMBundleRegistry.h; sourceTree = ""; }; 4FDD2B0099449721B413A98305EC1602 /* FirebaseCore.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FirebaseCore.h; path = FirebaseCore/Sources/Public/FirebaseCore.h; sourceTree = ""; }; - 4FE4232C3853E464413871A3558E5B9F /* JSIDynamic.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = JSIDynamic.cpp; sourceTree = ""; }; + 4FDF8D5BD33BEF9E73173B4AAF01D661 /* RNCAsyncStorage-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNCAsyncStorage-prefix.pch"; sourceTree = ""; }; + 4FEE944880F89AA298E1FA6DA1AEB54E /* RCTWebSocketExecutor.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTWebSocketExecutor.mm; sourceTree = ""; }; 4FFC77F4A5A209D32104BFFA64ECA5D1 /* MallctlHelper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MallctlHelper.h; path = folly/memory/MallctlHelper.h; sourceTree = ""; }; + 5017E37A73391D7682EFB3F743ACF5CF /* RCTBorderDrawing.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBorderDrawing.h; sourceTree = ""; }; 5038C337F9F4692F1393891BFBA14580 /* IPAddressSource.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = IPAddressSource.h; path = folly/detail/IPAddressSource.h; sourceTree = ""; }; - 504CCEB26B7B4EDACBA51B3383961FF7 /* RNFBJSON.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNFBJSON.m; path = ios/RNFBApp/RNFBJSON.m; sourceTree = ""; }; + 505AC2CA7722CF9458A590359F9B9E5D /* RNRotationHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNRotationHandler.m; sourceTree = ""; }; + 506885F1F9D961E9262E32A677A81A49 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; 506901FC236A1E68773A2C4EE47C2941 /* ui_compat.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ui_compat.h; path = ios/include/openssl/ui_compat.h; sourceTree = ""; }; + 506B898C953993C1D0B3BB7580BE46F8 /* react-native-orientation-locker-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "react-native-orientation-locker-dummy.m"; sourceTree = ""; }; 506F061F7EBB50BA4B72D1A358EFE177 /* lossless_enc_sse2.c */ = {isa = PBXFileReference; includeInIndex = 1; name = lossless_enc_sse2.c; path = src/dsp/lossless_enc_sse2.c; sourceTree = ""; }; 506FCC70C04FCDAF0FFEBB0EA7B20F57 /* json.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = json.cpp; path = folly/json.cpp; sourceTree = ""; }; 508445BC9C1FB138C10A18EB86527087 /* SDImageCodersManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageCodersManager.h; path = SDWebImage/Core/SDImageCodersManager.h; sourceTree = ""; }; 5084940063354722127AA25C453D6FF3 /* pb_decode.c */ = {isa = PBXFileReference; includeInIndex = 1; path = pb_decode.c; sourceTree = ""; }; - 509BC14C2BB4F28EA7406F0BAEAEF662 /* React-RCTAnimation-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-RCTAnimation-dummy.m"; sourceTree = ""; }; 50ABED557B2727B15D5F04BF4D42865C /* TimeoutManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TimeoutManager.h; path = folly/io/async/TimeoutManager.h; sourceTree = ""; }; - 50AFA3ACD007907EC69B44532DDC1F43 /* RCTCxxConvert.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTCxxConvert.m; sourceTree = ""; }; 50B5347C9A6E93B7D4CFC3673BA6FB7E /* libRNScreens.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libRNScreens.a; path = libRNScreens.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 50D066D05FC3400486D0BACEAC86C157 /* React-RCTBlob.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-RCTBlob.release.xcconfig"; sourceTree = ""; }; + 50B6AD4B9670098A8950CE549EDEAE3A /* BSG_KSMach_x86_64.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSMach_x86_64.c; sourceTree = ""; }; 50D1012FBF01F82968D1B23DE7B2AA62 /* safestack.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = safestack.h; path = ios/include/openssl/safestack.h; sourceTree = ""; }; + 50E330AF398B6E19F80FB6585541C4CB /* RCTParserUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTParserUtils.h; sourceTree = ""; }; 50E99880D429EB1D95CA9C9481A7723A /* GlobalShutdownSocketSet.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = GlobalShutdownSocketSet.cpp; path = folly/io/GlobalShutdownSocketSet.cpp; sourceTree = ""; }; 50FC14BC25E0E93C7E481559276BB9A3 /* FBLPromise+All.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "FBLPromise+All.m"; path = "Sources/FBLPromises/FBLPromise+All.m"; sourceTree = ""; }; - 511FB5C01E05C9515B9DE2BE7DBCF5E6 /* RNDateTimePicker.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RNDateTimePicker.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - 51357BA4D6EAB4480E755316731DC52C /* NSDataBigString.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = NSDataBigString.h; sourceTree = ""; }; - 513F6A6502ECD4B1324FF330C306774E /* JSINativeModules.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = JSINativeModules.cpp; path = jsireact/JSINativeModules.cpp; sourceTree = ""; }; + 51096531E43B6447C0D9B1D945A4D005 /* React-CoreModules-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-CoreModules-dummy.m"; sourceTree = ""; }; + 510992EFF4DEE6FF27671ECBAC566D0F /* MethodCall.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = MethodCall.h; sourceTree = ""; }; 5145977F0E57DB5CB2A88B1FFAD79FB9 /* CodedInputData.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = CodedInputData.cpp; path = Core/CodedInputData.cpp; sourceTree = ""; }; 514821ADBB2F303EDBB9D58B2B41EE75 /* GoogleDataTransportCCTSupport-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "GoogleDataTransportCCTSupport-dummy.m"; sourceTree = ""; }; - 515F60BAA2C44398E4C432812DFAEF87 /* RCTInputAccessoryShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTInputAccessoryShadowView.m; sourceTree = ""; }; - 516082792493DFAFEC6A557841883134 /* JSExecutor.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = JSExecutor.cpp; sourceTree = ""; }; - 519F111A09359CF926879359B5087EDE /* RCTRedBox.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTRedBox.mm; sourceTree = ""; }; + 518CE931EA6EC0DFA47A99DADD8103F2 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; + 518E63188022A48CEF7F42D956D94343 /* EXVideoThumbnails.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = EXVideoThumbnails.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; 51A15AC41CA6565459F389839B62A39A /* LifoSemMPMCQueue.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = LifoSemMPMCQueue.h; path = folly/executors/task_queue/LifoSemMPMCQueue.h; sourceTree = ""; }; + 51AC465D2E94A1376C41C66FFE261AD3 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; 51B50F20C76CF72E2BEF8D4764235306 /* libReactNativeART.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libReactNativeART.a; path = libReactNativeART.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 51BA07ABF915C2A2F65BD24E8396E90E /* QBAssetCell.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = QBAssetCell.h; path = ios/QBImagePicker/QBImagePicker/QBAssetCell.h; sourceTree = ""; }; - 51C591DF70D6A2D0ECE3DC79836853EC /* RCTNetworking.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTNetworking.mm; sourceTree = ""; }; 51E64B2B3D62A2355AED489906EE2961 /* SDWebImageWebPCoder.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = SDWebImageWebPCoder.release.xcconfig; sourceTree = ""; }; + 51F507B8FC55018207BC94B50E557268 /* RNBootSplash.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNBootSplash.h; path = ios/RNBootSplash.h; sourceTree = ""; }; + 51FC8BB9E63F020580FC266822E48C4A /* EXLocalAuthentication.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = EXLocalAuthentication.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; 5203742332341C0090DE075D3F7A6699 /* FileUtilDetail.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FileUtilDetail.h; path = folly/detail/FileUtilDetail.h; sourceTree = ""; }; - 5204AA6A9301A33C12E1F8E92D471B5A /* BSG_KSSystemInfo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSSystemInfo.h; sourceTree = ""; }; - 521B70D5DD2C6D7EEB6391518ACE1CAF /* EXAppleAuthentication.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = EXAppleAuthentication.release.xcconfig; sourceTree = ""; }; 524155739FC18AF285E601C5421DF51D /* SKObjectHash.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SKObjectHash.h; path = iOS/Plugins/FlipperKitLayoutPlugin/FlipperKitLayoutPlugin/utils/SKObjectHash.h; sourceTree = ""; }; 5262A96869073E1B25783F9E6FCE1685 /* ThreadPoolExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ThreadPoolExecutor.h; path = folly/executors/ThreadPoolExecutor.h; sourceTree = ""; }; 526AE4F7621EF6AA86F6624CD97483D0 /* AsyncSocketBase.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AsyncSocketBase.h; path = folly/io/async/AsyncSocketBase.h; sourceTree = ""; }; 526BA19EC83345B82436604077420426 /* UIColor+SDHexString.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIColor+SDHexString.h"; path = "SDWebImage/Private/UIColor+SDHexString.h"; sourceTree = ""; }; - 52714A2CCD2587FBB70807FBE809B006 /* REAAlwaysNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REAAlwaysNode.m; sourceTree = ""; }; - 527B6226DF8E360CB7C26327EF6A624C /* RCTFPSGraph.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTFPSGraph.m; sourceTree = ""; }; + 527DDD151C134F679B2D642F96C3CDCA /* RCTPropsAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTPropsAnimatedNode.h; sourceTree = ""; }; + 5285EE84BCD6E6DD1FB358E81D58A297 /* react-native-cookies.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "react-native-cookies.release.xcconfig"; sourceTree = ""; }; + 5295CC5E3D7304F709069F1A7D292DDB /* BSG_KSSingleton.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSSingleton.h; sourceTree = ""; }; 52A6FCBE370D580A0D0FAF2F6EAB917F /* CPortability.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CPortability.h; path = folly/CPortability.h; sourceTree = ""; }; + 52AB5CE635BF5BEDED856389BCE8036A /* Instance.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = Instance.cpp; sourceTree = ""; }; 52B0111728A81A7F015E84FA28C08909 /* Barrier.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = Barrier.cpp; path = folly/futures/Barrier.cpp; sourceTree = ""; }; 52B9A4F94F136CF7E36F8C113BC2A8F2 /* FIRCLSURLSessionConfiguration.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCLSURLSessionConfiguration.m; path = Crashlytics/Crashlytics/FIRCLSURLSession/FIRCLSURLSessionConfiguration.m; sourceTree = ""; }; - 52CB8EBF34160CEFC2CB2675D6FB6492 /* UMReactNativeAdapter-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "UMReactNativeAdapter-prefix.pch"; sourceTree = ""; }; 52DE54239AB0D7C69BE7689F26E4FFA0 /* SpookyHashV2.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = SpookyHashV2.cpp; path = folly/hash/SpookyHashV2.cpp; sourceTree = ""; }; - 52ED500EA48961193188CD27BF85587D /* RNBootSplash.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNBootSplash.release.xcconfig; sourceTree = ""; }; 52FCF98CEFF94C742080B6965D537AD0 /* libreact-native-safe-area-context.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libreact-native-safe-area-context.a"; path = "libreact-native-safe-area-context.a"; sourceTree = BUILT_PRODUCTS_DIR; }; - 53050823CDDA9B15EDE2BCBA4DF9FEAC /* RCTDatePickerManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTDatePickerManager.h; sourceTree = ""; }; - 530B9636D742C698B4407CBF6D67B3BF /* RCTModalHostView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTModalHostView.h; sourceTree = ""; }; - 53189377CC587CA423403F74E0A8613D /* UMAppLoader-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "UMAppLoader-prefix.pch"; sourceTree = ""; }; 531D2B71FA6B7E9275671F117385490B /* FKTextSearchable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FKTextSearchable.h; path = iOS/Plugins/FlipperKitLayoutPlugin/FlipperKitLayoutTextSearchable/FKTextSearchable.h; sourceTree = ""; }; 5330812D0A621BACD7B7D952A9E42A82 /* HazptrThrLocal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = HazptrThrLocal.h; path = folly/synchronization/HazptrThrLocal.h; sourceTree = ""; }; - 5332510E48716BCC1053DA998FCBB751 /* RNConfigReader-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNConfigReader-prefix.pch"; sourceTree = ""; }; 533287C913A304B3274CA5BF049ACD95 /* openssl_aes-armv4.S */ = {isa = PBXFileReference; includeInIndex = 1; name = "openssl_aes-armv4.S"; path = "Core/aes/openssl/openssl_aes-armv4.S"; sourceTree = ""; }; 5336EF9ED47680F00F818CD94A8C5461 /* Bits.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Bits.h; path = folly/Bits.h; sourceTree = ""; }; - 53388542A3913EF6F7FDFEC30720D2B0 /* ARTRenderableManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = ARTRenderableManager.h; sourceTree = ""; }; 5343C119674227B662AD65232D789027 /* FIRCLSInstallIdentifierModel.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSInstallIdentifierModel.h; path = Crashlytics/Crashlytics/Models/FIRCLSInstallIdentifierModel.h; sourceTree = ""; }; - 534CFD59426C3B661C2A805A51FE615E /* UMTaskManagerInterface.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMTaskManagerInterface.release.xcconfig; sourceTree = ""; }; 534D29CE3C9383C583A3057269CB9F1F /* Iterator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Iterator.h; path = folly/container/Iterator.h; sourceTree = ""; }; + 534FDDBCB78BE7A8C4D8D39DF13F700E /* RCTRootShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTRootShadowView.h; sourceTree = ""; }; 535B743A191F399420E426D8B0102A3D /* FlipperConnectionImpl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FlipperConnectionImpl.h; path = xplat/Flipper/FlipperConnectionImpl.h; sourceTree = ""; }; 53603E349ED12173875E797E6F2F58C8 /* double-conversion.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "double-conversion.h"; path = "double-conversion/double-conversion.h"; sourceTree = ""; }; - 5362C7DC59923D5194301DF1C28D45F2 /* RCTAnimationType.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTAnimationType.h; sourceTree = ""; }; + 5364E6248DFEA3869A0CAFA5203B94CB /* RCTBlobManager.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTBlobManager.mm; sourceTree = ""; }; 536768DAFD91F3C9D31A0F9259BF0826 /* Shell.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = Shell.cpp; path = folly/system/Shell.cpp; sourceTree = ""; }; + 5373E87BE0AEB1F0BA02C7EB052F8A41 /* RecoverableError.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RecoverableError.h; sourceTree = ""; }; 53802D932EE90CEEEEC3100997F04314 /* alpha_processing_sse41.c */ = {isa = PBXFileReference; includeInIndex = 1; name = alpha_processing_sse41.c; path = src/dsp/alpha_processing_sse41.c; sourceTree = ""; }; - 53AF5325ADA63E488A4037CA58FFFF66 /* EXAudioSessionManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXAudioSessionManager.h; path = EXAV/EXAudioSessionManager.h; sourceTree = ""; }; - 53B21F3EF5F0D817E9D21979C164A79A /* Yoga.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = Yoga.release.xcconfig; sourceTree = ""; }; - 53F35907FAA3E87EC41A5869F4B00646 /* FontAwesome5_Solid.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = FontAwesome5_Solid.ttf; path = Fonts/FontAwesome5_Solid.ttf; sourceTree = ""; }; - 53F5CACA26BE72413969279AC505C1E4 /* RNDateTimePicker.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNDateTimePicker.m; path = ios/RNDateTimePicker.m; sourceTree = ""; }; + 538524D3A13CF548117D6D2F14640A67 /* RCTAccessibilityManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTAccessibilityManager.h; path = React/CoreModules/RCTAccessibilityManager.h; sourceTree = ""; }; + 53AEDE8E2CF908FDA04B03D3CAE253E3 /* FBReactNativeSpec-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "FBReactNativeSpec-dummy.m"; sourceTree = ""; }; + 53F2BC6BB9CB18C7B87A9AEC2493CC88 /* RNConfigReader.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RNConfigReader.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; 541001CDA928E0618A23816C3D812E19 /* dns_struct.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = dns_struct.h; path = src/event2/dns_struct.h; sourceTree = ""; }; 542587AD8D684CE26F95275D3D6DCCCF /* FIRInstallationsAPIService.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstallationsAPIService.h; path = FirebaseInstallations/Source/Library/InstallationsAPI/FIRInstallationsAPIService.h; sourceTree = ""; }; + 54331796F2353B1FA7883FEEBBCB63CB /* RCTTypeSafety.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RCTTypeSafety.debug.xcconfig; sourceTree = ""; }; 5447E2B09AD3989C8117F03B66368A75 /* bignum-dtoa.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "bignum-dtoa.h"; path = "double-conversion/bignum-dtoa.h"; sourceTree = ""; }; + 544922217666899EE7914E0FBCBCCE02 /* UMDefines.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMDefines.h; path = UMCore/UMDefines.h; sourceTree = ""; }; + 5449E244F235CF29D6B99C7A8C78E5C0 /* RNPushKit.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNPushKit.h; path = RNNotifications/RNPushKit.h; sourceTree = ""; }; + 547129D34C29E1AC795160BBF42D1F9B /* FontAwesome.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = FontAwesome.ttf; path = Fonts/FontAwesome.ttf; sourceTree = ""; }; 5490400C4A176BF4168D0F1F26459996 /* StaticTracepoint.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = StaticTracepoint.h; path = folly/tracing/StaticTracepoint.h; sourceTree = ""; }; - 54CB7EA5B2B24ECCA34D090CDF1F8B4D /* RNBridgeModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNBridgeModule.h; path = RNNotifications/RNBridgeModule.h; sourceTree = ""; }; + 54B3C96FE12939E703B1F783D14F380C /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; + 54C09965849900B70828F856EFC6730A /* subscription.md */ = {isa = PBXFileReference; includeInIndex = 1; name = subscription.md; path = docs/subscription.md; sourceTree = ""; }; + 54C5EA6C70A5DA65CCB60876A49B0561 /* EXImageLoader.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = EXImageLoader.debug.xcconfig; sourceTree = ""; }; 54D41B96EE4B65363EC4BA183A382418 /* FIRInstallationsStoredAuthToken.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstallationsStoredAuthToken.h; path = FirebaseInstallations/Source/Library/InstallationsStore/FIRInstallationsStoredAuthToken.h; sourceTree = ""; }; - 54DCD51CAE6B956241E6E223E1CCF329 /* BSG_KSCrashSentry_CPPException.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSCrashSentry_CPPException.mm; sourceTree = ""; }; - 54E0E251A765F0B9EDE3FF7BF0185594 /* UMModuleRegistryProvider.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = UMModuleRegistryProvider.m; sourceTree = ""; }; - 54E2A3033243CD5D1DC83180245A17A0 /* RCTSubtractionAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSubtractionAnimatedNode.m; sourceTree = ""; }; - 54F7C32BAB3628DAEBFE16E3D1A963BC /* BSG_KSCrashAdvanced.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashAdvanced.h; sourceTree = ""; }; - 54FF2D11BA429E0F948085B94423EDB5 /* RNPushKitEventListener.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNPushKitEventListener.h; path = RNNotifications/RNPushKitEventListener.h; sourceTree = ""; }; + 55080F3098DF4E2325515CD506183A7D /* React-RCTActionSheet.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-RCTActionSheet.release.xcconfig"; sourceTree = ""; }; 550DDE9B1D1807636182189F5EA16B4E /* FrameFlags.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = FrameFlags.cpp; path = rsocket/framing/FrameFlags.cpp; sourceTree = ""; }; 551CB042CE6C647799E32E8656CAFF10 /* SpookyHashV2.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = SpookyHashV2.cpp; path = folly/hash/SpookyHashV2.cpp; sourceTree = ""; }; + 5554B2B126205BAA767E68749790AE07 /* UMFileSystemInterface.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = UMFileSystemInterface.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 555D52D7CAF8E5F798AE34AD2134D58B /* RNDateTimePicker-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNDateTimePicker-prefix.pch"; sourceTree = ""; }; 556BFA2EC56CA0C1FC63839589D38A7E /* MMKV_IO.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MMKV_IO.h; path = Core/MMKV_IO.h; sourceTree = ""; }; 55A1DBC2A01AB6C06BE89546618B8587 /* FBLPromise+Await.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FBLPromise+Await.h"; path = "Sources/FBLPromises/include/FBLPromise+Await.h"; sourceTree = ""; }; 55C148DD9C760727E79E0E7E047ECBAB /* TypeList.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TypeList.h; path = folly/detail/TypeList.h; sourceTree = ""; }; 55C8E8C591C46A9D06F786270C1060D5 /* rescaler_utils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = rescaler_utils.h; path = src/utils/rescaler_utils.h; sourceTree = ""; }; 55C9337079C479AAA349F5708DD01725 /* openssl_aes.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = openssl_aes.h; path = Core/aes/openssl/openssl_aes.h; sourceTree = ""; }; - 55D10A0B7C4CD81504231DEC178F3312 /* RCTImageLoader.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTImageLoader.mm; sourceTree = ""; }; 55E479C3D615B6CF1D28016626DAEFAF /* SDImageCachesManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageCachesManager.h; path = SDWebImage/Core/SDImageCachesManager.h; sourceTree = ""; }; 55EC19563235B84E3C16129902421BC6 /* ConsumerBase.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ConsumerBase.h; path = rsocket/statemachine/ConsumerBase.h; sourceTree = ""; }; 55FD0B27006A8D0CA898A67F3118A13A /* filters_utils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = filters_utils.h; path = src/utils/filters_utils.h; sourceTree = ""; }; 560348BE2BA7FE148BB7A43B4B1FBE2E /* dns_compat.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = dns_compat.h; path = src/event2/dns_compat.h; sourceTree = ""; }; - 5616FE4883461F428F373266531C33AA /* RCTConvertHelpers.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTConvertHelpers.h; sourceTree = ""; }; + 5604F6A1E1D9E12C63B9ABF733DC7D47 /* EXPermissions.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXPermissions.m; path = EXPermissions/EXPermissions.m; sourceTree = ""; }; + 560DBAC8BE666C72A31C0A72190FE10B /* react-native-webview-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "react-native-webview-dummy.m"; sourceTree = ""; }; + 561F8C652888B481FAA6AB4EE4FD77CC /* RCTScrollViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTScrollViewManager.h; sourceTree = ""; }; 563E0A0FEB65B564D6A02A0A948B2E62 /* libPods-NotificationService.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libPods-NotificationService.a"; path = "libPods-NotificationService.a"; sourceTree = BUILT_PRODUCTS_DIR; }; 56461E06661E0F052AB26B2AB7499CEE /* io_dec.c */ = {isa = PBXFileReference; includeInIndex = 1; name = io_dec.c; path = src/dec/io_dec.c; sourceTree = ""; }; 564CA8699EEB111B2ED88494E0150D5F /* SDImageAssetManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageAssetManager.h; path = SDWebImage/Private/SDImageAssetManager.h; sourceTree = ""; }; 565351C7D9EC3CA46AEF022A4814280E /* FIRCLSFCRAnalytics.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCLSFCRAnalytics.m; path = Crashlytics/Crashlytics/Helpers/FIRCLSFCRAnalytics.m; sourceTree = ""; }; - 565BFBD8A300386DF3D6B7DA63170832 /* RCTDeviceInfo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTDeviceInfo.h; path = React/CoreModules/RCTDeviceInfo.h; sourceTree = ""; }; + 565DCFAAE81C7FABF42B4DFF9756E7F6 /* UMFontManagerInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMFontManagerInterface.h; path = UMFontInterface/UMFontManagerInterface.h; sourceTree = ""; }; 56654F409553C3328B0163C2CCE56603 /* Allowance.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Allowance.h; path = rsocket/internal/Allowance.h; sourceTree = ""; }; 566D950549D6BD2E8E75319C81486A88 /* huffman_utils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = huffman_utils.h; path = src/utils/huffman_utils.h; sourceTree = ""; }; - 5676A9119066D19F58C747370FDFB455 /* ARTLinearGradient.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = ARTLinearGradient.m; sourceTree = ""; }; + 5673330D50DEB45B91BB1B7FF27E69A1 /* RCTSinglelineTextInputViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSinglelineTextInputViewManager.h; sourceTree = ""; }; 567F2C0D0A1DAE9A369027A7A121B6E5 /* YGLayoutExtensions.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = YGLayoutExtensions.swift; path = YogaKit/Source/YGLayoutExtensions.swift; sourceTree = ""; }; - 568155784873CBBA8CE28A9D27D4077F /* UMFontInterface.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = UMFontInterface.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - 5689DBABB6F7C93E584F9F5AEEC5068E /* EXAppleAuthentication.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = EXAppleAuthentication.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 56894A1E0869F51CAF3052132E795BE1 /* UIResponder+FirstResponder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIResponder+FirstResponder.h"; path = "lib/UIResponder+FirstResponder.h"; sourceTree = ""; }; 568DCAB4405DB14F4D48C8583397499E /* SysTime.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SysTime.h; path = folly/portability/SysTime.h; sourceTree = ""; }; 5691846E62D41417D7ECC5B8CEA51CAA /* FIRLibrary.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRLibrary.h; path = FirebaseCore/Sources/Private/FIRLibrary.h; sourceTree = ""; }; 56A05E6E745281FC8E38CEF381D72BA5 /* FIRCLSReportUploader.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCLSReportUploader.m; path = Crashlytics/Crashlytics/Controllers/FIRCLSReportUploader.m; sourceTree = ""; }; 56B9C9D1B578DEE39C27584AC980B45C /* FlipperStateUpdateListener.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FlipperStateUpdateListener.h; path = xplat/Flipper/FlipperStateUpdateListener.h; sourceTree = ""; }; - 56BA74359E64F1AFBD8D47B4C2B9F026 /* RCTCustomKeyboardViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTCustomKeyboardViewController.h; sourceTree = ""; }; - 56D1AC6199D6D9BCA7F42097A4D29D47 /* BugsnagReactNative-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "BugsnagReactNative-dummy.m"; sourceTree = ""; }; + 56C7FD11D465FA3932202B5F6C1DF1DE /* RCTNetworkTask.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTNetworkTask.h; path = Libraries/Network/RCTNetworkTask.h; sourceTree = ""; }; + 56ECE2B3EE6E81D98563054DF5B9532A /* RCTRootView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTRootView.h; sourceTree = ""; }; + 56F783BA26ECFE6176DBD2A9EDBB6BD8 /* YGValue.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = YGValue.cpp; path = yoga/YGValue.cpp; sourceTree = ""; }; + 57150F7492269C3822B057D6A8B76967 /* RNConfigReader-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNConfigReader-prefix.pch"; sourceTree = ""; }; 5737DDB4BC95AD399B3206838AB97095 /* libRNCAsyncStorage.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libRNCAsyncStorage.a; path = libRNCAsyncStorage.a; sourceTree = BUILT_PRODUCTS_DIR; }; + 573BD7573CC2D618C251A8172FBAE621 /* REANode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REANode.h; sourceTree = ""; }; 574E8A849B86DCF8EE5726418D974721 /* libEXWebBrowser.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libEXWebBrowser.a; path = libEXWebBrowser.a; sourceTree = BUILT_PRODUCTS_DIR; }; + 5763BB2974F7CAEA067D9FAD8B0AEA22 /* UMPermissionsInterface.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = UMPermissionsInterface.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 5764F17A53D7D7950BCA737785F5D7BF /* QBAssetCell.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = QBAssetCell.m; path = ios/QBImagePicker/QBImagePicker/QBAssetCell.m; sourceTree = ""; }; 5765AAB98C6396F70703386F034304A8 /* Preprocessor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Preprocessor.h; path = folly/Preprocessor.h; sourceTree = ""; }; 57682730C5EEF91CD96A67BBDDCDEA8A /* Launder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Launder.h; path = folly/lang/Launder.h; sourceTree = ""; }; 576DC4F828CB1BD80A51684E1474B47A /* event.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = event.h; path = src/event.h; sourceTree = ""; }; - 5776D2B1674A9AC9CE83D0E67BB4C08E /* RNLongPressHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNLongPressHandler.h; sourceTree = ""; }; - 577C1C8DC38F16DD4F965E1B128C0CE4 /* Fontisto.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = Fontisto.ttf; path = Fonts/Fontisto.ttf; sourceTree = ""; }; 5785C1E2790EDD34B14952BC5F668B16 /* SDImageGIFCoder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageGIFCoder.h; path = SDWebImage/Core/SDImageGIFCoder.h; sourceTree = ""; }; - 578B5CE66C427B004D7E569ACA77F66F /* RNPushKit.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNPushKit.h; path = RNNotifications/RNPushKit.h; sourceTree = ""; }; - 57A13CEB3147F872D0A166EEF0D2A3E5 /* RCTScrollView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTScrollView.m; sourceTree = ""; }; + 579794ADECEF661ED2F0E8C42D1ED6CA /* UMModuleRegistry.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMModuleRegistry.h; sourceTree = ""; }; + 57A22BA5D38492DB82CE68692B202F87 /* BugsnagReactNative.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = BugsnagReactNative.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; 57ACC4A2EB1803461192E7AF83BB585C /* cached-powers.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "cached-powers.h"; path = "double-conversion/cached-powers.h"; sourceTree = ""; }; - 57D800A46525F67798217208F27F8799 /* RCTPerfMonitor.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTPerfMonitor.mm; sourceTree = ""; }; + 57BA216B1389E78492600FAD2A931D2A /* RNLongPressHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNLongPressHandler.m; sourceTree = ""; }; + 57BF4EA60161A139C42C1FA0529DB664 /* YGEnums.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YGEnums.h; path = yoga/YGEnums.h; sourceTree = ""; }; + 57CDFDB0156BBE2F00007E46835F25AB /* RNRootView-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNRootView-dummy.m"; sourceTree = ""; }; + 57E410A7F4B773880A4D4F1B53603A95 /* RCTVibrationPlugins.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTVibrationPlugins.mm; sourceTree = ""; }; 57E672092DD39DA8E468857221841AB5 /* json_pointer.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = json_pointer.cpp; path = folly/json_pointer.cpp; sourceTree = ""; }; 57EA5080E0100BD28FB9E83EF1DBB2EB /* Flipper-RSocket-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Flipper-RSocket-dummy.m"; sourceTree = ""; }; 57F94E78779960579BA8E3D95887285D /* Assume.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Assume.h; path = folly/lang/Assume.h; sourceTree = ""; }; - 5824C874CD967A5B1C78DA4C750E2D41 /* RNCAsyncStorage-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNCAsyncStorage-prefix.pch"; sourceTree = ""; }; + 580E450AB444454946C16BDA4B345374 /* EXImageLoader-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "EXImageLoader-prefix.pch"; sourceTree = ""; }; 583F7F082C7E9067D1A86DCCD4C42980 /* idea.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = idea.h; path = ios/include/openssl/idea.h; sourceTree = ""; }; - 5860BF973B9388FB83C1661EBC61C337 /* Yoga-internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "Yoga-internal.h"; path = "yoga/Yoga-internal.h"; sourceTree = ""; }; 586602EDE69E2D273945D156ECB89853 /* libPods-RocketChatRN.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libPods-RocketChatRN.a"; path = "libPods-RocketChatRN.a"; sourceTree = BUILT_PRODUCTS_DIR; }; 586FFADA846B4528EB8C44A427BFFDE4 /* SKScrollViewDescriptor.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SKScrollViewDescriptor.m; path = iOS/Plugins/FlipperKitLayoutPlugin/FlipperKitLayoutPlugin/descriptors/SKScrollViewDescriptor.m; sourceTree = ""; }; - 58840BBD57946D3826AF7D7B7BE3460A /* EXAppleAuthentication-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "EXAppleAuthentication-dummy.m"; sourceTree = ""; }; - 5892DD31D90BCEF5E3B5507CAEA2EE67 /* BugsnagHandledState.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagHandledState.m; sourceTree = ""; }; + 5876CFCE328DC4C4BBF3769AD582D59C /* RCTI18nUtil.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTI18nUtil.h; sourceTree = ""; }; 5893C1031EF50C30EDF56EA0B4249FDB /* F14Set-fwd.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "F14Set-fwd.h"; path = "folly/container/F14Set-fwd.h"; sourceTree = ""; }; - 5899B0AD4E23B58ED31078117CB6934B /* RCTSafeAreaShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSafeAreaShadowView.m; sourceTree = ""; }; 58BE37D0CFA670B165C00D3DEFD85E65 /* SysFile.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SysFile.h; path = folly/portability/SysFile.h; sourceTree = ""; }; 58BFCA34CE520AE47C12AB8FE5E89E18 /* Unicode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Unicode.h; path = folly/Unicode.h; sourceTree = ""; }; - 58C18FE91FB67242278A44685447B26F /* RCTSinglelineTextInputView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSinglelineTextInputView.m; sourceTree = ""; }; + 58ED3C3FE5BC1C02FF6ACDFA481C0A86 /* RCTBaseTextInputView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBaseTextInputView.h; sourceTree = ""; }; 58F222E7537A0134B613713ACF0E5447 /* SKResponseInfo.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SKResponseInfo.m; path = iOS/Plugins/FlipperKitNetworkPlugin/FlipperKitNetworkPlugin/SKResponseInfo.m; sourceTree = ""; }; 58F45912CD5BB643A8BF9E1502089FF5 /* CacheLocality.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = CacheLocality.cpp; path = folly/concurrency/CacheLocality.cpp; sourceTree = ""; }; 5908855AE8F1A6DA636E4A44861817A7 /* YGLayout+Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "YGLayout+Private.h"; path = "YogaKit/Source/YGLayout+Private.h"; sourceTree = ""; }; + 590AA0284A185DEB2F6E7EB478B87474 /* EXAppleAuthentication.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = EXAppleAuthentication.release.xcconfig; sourceTree = ""; }; 591C4155DA9D655F91FBCA3318F9E178 /* diy-fp.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "diy-fp.h"; path = "double-conversion/diy-fp.h"; sourceTree = ""; }; - 591C71BB3B796D89B345747C9C9A26B7 /* react-native-notifications.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "react-native-notifications.release.xcconfig"; sourceTree = ""; }; - 591CF5DE291F6F3D7B2E3D7F3559571E /* RNFetchBlobFS.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNFetchBlobFS.h; path = ios/RNFetchBlobFS.h; sourceTree = ""; }; 591D5CE70F0224E56390E436F0C0F733 /* WTCallback.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = WTCallback.h; path = folly/futures/WTCallback.h; sourceTree = ""; }; - 592DD630DCEE777C58C1EED2A83E5781 /* React-jsi-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-jsi-dummy.m"; sourceTree = ""; }; + 593848E320E7B0CB4ED7A4AAC418DD90 /* UMEventEmitter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMEventEmitter.h; sourceTree = ""; }; + 594714BFF43C3D926765DDD84658BA73 /* RNFBCrashlytics-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNFBCrashlytics-dummy.m"; sourceTree = ""; }; + 594DB85767F9B7D7C188F0D0ECA4D30C /* LNAnimator.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = LNAnimator.m; sourceTree = ""; }; 5953481880AC05A5A0256CD16F6B6C80 /* ThreadName.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = ThreadName.cpp; path = folly/system/ThreadName.cpp; sourceTree = ""; }; 595A94AF4B94EB0044011648ED952300 /* es.lproj */ = {isa = PBXFileReference; includeInIndex = 1; name = es.lproj; path = "Objective-C/TOCropViewController/Resources/es.lproj"; sourceTree = ""; }; + 5970D65E17317AF469A8541B7F146C0A /* ARTNodeManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = ARTNodeManager.m; sourceTree = ""; }; 5974D8F45A5814D581CBC194E78D1FBB /* EventBaseLocal.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = EventBaseLocal.cpp; path = folly/io/async/EventBaseLocal.cpp; sourceTree = ""; }; - 59AC7D749ED5E79488C3134A037A83BC /* ARTSurfaceViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = ARTSurfaceViewManager.m; sourceTree = ""; }; - 59B32B64163E777D7B6963D22BD83B87 /* RCTUITextField.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTUITextField.m; sourceTree = ""; }; + 5975D7D6704CDCF5D8EF4744561C1261 /* RCTSettingsManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTSettingsManager.h; path = Libraries/Settings/RCTSettingsManager.h; sourceTree = ""; }; + 59E79A9C43DBE1DC8F04DFE61673CF5C /* RCTDevMenu.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTDevMenu.h; path = React/CoreModules/RCTDevMenu.h; sourceTree = ""; }; 59F68D916F77D550FA740E5871A2C700 /* CocoaAsyncSocket-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "CocoaAsyncSocket-dummy.m"; sourceTree = ""; }; - 5A2C14A8D023869B15AE3C8A886173EC /* rn-extensions-share-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "rn-extensions-share-prefix.pch"; sourceTree = ""; }; + 5A09B84FE66CD31475E6E02E791E6AE1 /* React-RCTAnimation.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-RCTAnimation.release.xcconfig"; sourceTree = ""; }; + 5A247209A37DE56BA718A900261D68C8 /* EXVideoPlayerViewControllerDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = EXVideoPlayerViewControllerDelegate.h; sourceTree = ""; }; + 5A28B748E256BC23CEBC3D8B3C85F8A7 /* QBAlbumsViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = QBAlbumsViewController.m; path = ios/QBImagePicker/QBImagePicker/QBAlbumsViewController.m; sourceTree = ""; }; 5A32E7EA27BFF86EC84B8888A3DE0290 /* FlipperKitReactPlugin.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FlipperKitReactPlugin.h; path = iOS/Plugins/FlipperKitReactPlugin/FlipperKitReactPlugin/FlipperKitReactPlugin.h; sourceTree = ""; }; 5A336F63F5C60A88C645CAD3FEA23CEE /* FIRInstallationsItem.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstallationsItem.h; path = FirebaseInstallations/Source/Library/FIRInstallationsItem.h; sourceTree = ""; }; 5A34DE3E221842CC83469D3E228715AE /* InterProcessLock.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = InterProcessLock.cpp; path = Core/InterProcessLock.cpp; sourceTree = ""; }; - 5A4FE053B78720A4028DA213C773CC15 /* RCTPicker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTPicker.h; sourceTree = ""; }; + 5A369F3FA666825DE880F424C909C974 /* YGNode.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = YGNode.cpp; path = yoga/YGNode.cpp; sourceTree = ""; }; + 5A383BA2FD009C3FD7909E354E65AE36 /* ARTRenderableManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = ARTRenderableManager.h; sourceTree = ""; }; + 5A58CCA661B2E7CAEBCFE13029FC264A /* RNDeviceInfo.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RNDeviceInfo.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 5A5E19C7F9E618E9F0D4AF7EE50F9FAE /* RCTImageViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageViewManager.h; path = Libraries/Image/RCTImageViewManager.h; sourceTree = ""; }; + 5A7A81D6A91D612D952CF94A50D5108C /* REABezierNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REABezierNode.m; sourceTree = ""; }; 5A7F69942D29F7B96C7A01501E594784 /* DestructorCheck.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DestructorCheck.h; path = folly/io/async/DestructorCheck.h; sourceTree = ""; }; 5A88740BFEF9E93420EA41D40E2785CE /* ProtocolVersion.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ProtocolVersion.h; path = rsocket/framing/ProtocolVersion.h; sourceTree = ""; }; - 5A890AEA1B62F48472037A6E4B8FBDB8 /* RNSScreen.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNSScreen.h; path = ios/RNSScreen.h; sourceTree = ""; }; 5AC8611EA20C4E9E9125A4EB162777B5 /* FileUtil.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FileUtil.h; path = folly/FileUtil.h; sourceTree = ""; }; - 5AF7F58E6E57D439716425CEA864ECE4 /* RCTView+SafeAreaCompat.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "RCTView+SafeAreaCompat.m"; path = "ios/SafeAreaView/RCTView+SafeAreaCompat.m"; sourceTree = ""; }; - 5B094BF3F5248F9220D403A8D4AECFC5 /* React-RCTBlob.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-RCTBlob.debug.xcconfig"; sourceTree = ""; }; + 5AEB87B4EAC3FA3B75267CEC218264AE /* Yoga.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Yoga.h; path = yoga/Yoga.h; sourceTree = ""; }; + 5AED3CDAB8F993EF5F215585D86C4E7E /* UMAppLoaderProvider.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = UMAppLoaderProvider.m; path = UMAppLoader/UMAppLoaderProvider.m; sourceTree = ""; }; + 5AFB77D91B861C98ECA2289609DA904B /* RCTObjcExecutor.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTObjcExecutor.mm; sourceTree = ""; }; 5B0A69416E97C57EA05236CFC7270896 /* HeterogeneousAccess-fwd.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "HeterogeneousAccess-fwd.h"; path = "folly/container/HeterogeneousAccess-fwd.h"; sourceTree = ""; }; 5B0F4BF42A2AC476866DA8552C7F5588 /* ManualTimekeeper.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = ManualTimekeeper.cpp; path = folly/futures/ManualTimekeeper.cpp; sourceTree = ""; }; 5B24135BF3E27AD67AD78E014B6DF9F5 /* FirebaseCore-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "FirebaseCore-dummy.m"; sourceTree = ""; }; + 5B2A93BF0331B2DD1FA0130AC6DE5F35 /* ReactNativeART.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = ReactNativeART.debug.xcconfig; sourceTree = ""; }; 5B31C00F86A06EFB0136A743BAB25CED /* anim_encode.c */ = {isa = PBXFileReference; includeInIndex = 1; name = anim_encode.c; path = src/mux/anim_encode.c; sourceTree = ""; }; 5B3357A1CE67C0BF4AE31936A1BE6888 /* libYogaKit.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libYogaKit.a; path = libYogaKit.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 5B7DAB3E1CA7A2F1AC4AD61C61C4DCC7 /* MethodCall.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = MethodCall.h; sourceTree = ""; }; - 5B8262D25D30A6111A0B6A817AF55FB2 /* RCTFileReaderModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTFileReaderModule.h; path = Libraries/Blob/RCTFileReaderModule.h; sourceTree = ""; }; - 5B93654EC83C18D9034376903964105B /* RNReanimated.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNReanimated.release.xcconfig; sourceTree = ""; }; + 5B5ED57220183E7BAC4E525CC7ED74A8 /* TurboModuleUtils.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = TurboModuleUtils.cpp; path = turbomodule/core/TurboModuleUtils.cpp; sourceTree = ""; }; + 5B6F4DD3391EEC4009CBB847FED6DDC8 /* react-native-background-timer.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "react-native-background-timer.release.xcconfig"; sourceTree = ""; }; + 5B796E5BBC9DF22B686425DE79FB6F1C /* Yoga-internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "Yoga-internal.h"; path = "yoga/Yoga-internal.h"; sourceTree = ""; }; 5BA67FB4B490864158D645577BB7D080 /* FIRInstallationsStatus.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstallationsStatus.h; path = FirebaseInstallations/Source/Library/InstallationsIDController/FIRInstallationsStatus.h; sourceTree = ""; }; - 5BA7580AF58046B433F62CB89385F78E /* RCTConvert+RNNotifications.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "RCTConvert+RNNotifications.h"; path = "RNNotifications/RCTConvert+RNNotifications.h"; sourceTree = ""; }; + 5BA85AB8C4133808A097138366097B46 /* RNRootView-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNRootView-prefix.pch"; sourceTree = ""; }; 5BBB53EC3DB6AA6AA25C9D3D328E9200 /* backward_references_cost_enc.c */ = {isa = PBXFileReference; includeInIndex = 1; name = backward_references_cost_enc.c; path = src/enc/backward_references_cost_enc.c; sourceTree = ""; }; + 5BBFF8E539D698791E5EA61FB18F767A /* RCTSurfaceRootView.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTSurfaceRootView.mm; sourceTree = ""; }; 5BCBA3305D0C7ACCE77288EE92A0701B /* pb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = pb.h; sourceTree = ""; }; - 5BF35C7F72737B7AB6A3EB72AF10184D /* RCTAccessibilityManager.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTAccessibilityManager.mm; sourceTree = ""; }; - 5BFF236C040D554B572D0078D72502BC /* RCTScrollView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTScrollView.h; sourceTree = ""; }; - 5C1400EE7D0C77C4DCC222F93DBBF116 /* RNLocalize.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNLocalize.release.xcconfig; sourceTree = ""; }; + 5BD79D5982EEC74EA7BF3EEBD47EA196 /* BugsnagSessionTrackingApiClient.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagSessionTrackingApiClient.m; sourceTree = ""; }; + 5C09459D38513CA3B0FAE57A38D711B7 /* RCTCxxBridgeDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTCxxBridgeDelegate.h; sourceTree = ""; }; 5C375199C5FB66581663FA8CB016F62D /* Promise.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Promise.h; path = folly/futures/Promise.h; sourceTree = ""; }; + 5C493E0644D3B3FC851DDFF7D22A38C4 /* react-native-appearance-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "react-native-appearance-prefix.pch"; sourceTree = ""; }; 5C4F7A26EFA8C7A068F457F025BF1CB7 /* dsa.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = dsa.h; path = ios/include/openssl/dsa.h; sourceTree = ""; }; + 5C5E3037378DBB781445FABD2949953D /* RCTImageShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTImageShadowView.m; sourceTree = ""; }; + 5C8803E9BC5AB715FD5DFA10E7517347 /* BSG_KSObjC.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSObjC.h; sourceTree = ""; }; 5C8C278630EACD4C65DF9089CB815DE8 /* SDDiskCache.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDDiskCache.h; path = SDWebImage/Core/SDDiskCache.h; sourceTree = ""; }; 5CA20EC06BDF84FDD22DE7DD7A603327 /* SaturatingSemaphore.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SaturatingSemaphore.h; path = folly/synchronization/SaturatingSemaphore.h; sourceTree = ""; }; - 5CB7E1115201551D332C260A83C0DE6F /* MethodCall.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = MethodCall.cpp; sourceTree = ""; }; - 5CB9B40FE0E1C19F97282A5575AFE13D /* UMAppLoader-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "UMAppLoader-dummy.m"; sourceTree = ""; }; + 5CB5D959EFFF3A5E3124AC174A3814D9 /* BSG_KSCrashReport.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSCrashReport.c; sourceTree = ""; }; + 5CD71215B8EE60E18EEDF1C2D5F124F9 /* FBReactNativeSpec.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = FBReactNativeSpec.release.xcconfig; sourceTree = ""; }; 5CDC547FF7A95A71C57CF1992E1C59D3 /* TOCropViewController.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = TOCropViewController.debug.xcconfig; sourceTree = ""; }; 5CE5C5C34D7AC5559328A2A311322501 /* bit_reader_inl_utils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = bit_reader_inl_utils.h; path = src/utils/bit_reader_inl_utils.h; sourceTree = ""; }; - 5CFFBDDC4D6EA6D00B0120B61EA6182A /* RCTScrollEvent.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTScrollEvent.h; sourceTree = ""; }; - 5D03500B231468259C09116F18949D72 /* TurboModuleUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TurboModuleUtils.h; path = turbomodule/core/TurboModuleUtils.h; sourceTree = ""; }; + 5CF9D92D59921D8CB9755CFCBB2553D5 /* EXResumablesManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = EXResumablesManager.m; sourceTree = ""; }; + 5D05064985ABDECFAD90DAA8EA7A3E7B /* RNFBAppModule.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNFBAppModule.m; path = ios/RNFBApp/RNFBAppModule.m; sourceTree = ""; }; 5D068D916BBBB1CF821F31827B18FADB /* bignum.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = bignum.h; path = "double-conversion/bignum.h"; sourceTree = ""; }; - 5D06BF3EB1FB6553A48935C109173930 /* EXLocalAuthentication.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = EXLocalAuthentication.release.xcconfig; sourceTree = ""; }; - 5D1A49894D5699B239A8EC446C4C5BFD /* RCTConstants.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTConstants.m; sourceTree = ""; }; + 5D27CE6B5875497450F18C08BF021A24 /* JSCRuntime.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = JSCRuntime.h; sourceTree = ""; }; + 5D289C87CB35562DC78D801729917477 /* REABlockNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REABlockNode.h; sourceTree = ""; }; 5D462EB7698BAB22FC3D470A86C03554 /* hu.lproj */ = {isa = PBXFileReference; includeInIndex = 1; name = hu.lproj; path = "Objective-C/TOCropViewController/Resources/hu.lproj"; sourceTree = ""; }; 5D47D1761FDDD109DF7A044A48F90918 /* DoubleConversion-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "DoubleConversion-prefix.pch"; sourceTree = ""; }; 5D47E74EDA59580CDDFB291043FB6694 /* SKObject.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = SKObject.mm; path = iOS/Plugins/FlipperKitLayoutPlugin/FlipperKitLayoutPlugin/SKObject.mm; sourceTree = ""; }; + 5D5B6DDBD1676530D94609E7A91E5A0B /* BSG_KSCrashSentry_Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashSentry_Private.h; sourceTree = ""; }; 5D5D2817A32EBC04C23F895A96070206 /* Aligned.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Aligned.h; path = folly/lang/Aligned.h; sourceTree = ""; }; - 5D625997709A600E1B6A27420452A233 /* RCTRedBoxExtraDataViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTRedBoxExtraDataViewController.m; sourceTree = ""; }; - 5D65BA6FD0D2C03EA801C528901BAA7F /* ARTShape.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = ARTShape.m; path = ios/ARTShape.m; sourceTree = ""; }; - 5D7E1A1A103C6C31878F10EE018CA0C5 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; - 5D825969D5BF6A91812A4A90C337F5D0 /* IDStore.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = IDStore.m; path = ios/IDStore.m; sourceTree = ""; }; - 5D921D2E62A6C3B4AD03A55DF0FB2A36 /* EXKeepAwake.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXKeepAwake.m; path = EXKeepAwake/EXKeepAwake.m; sourceTree = ""; }; + 5D804EAA43D9C8F4567BC675A3A5DEAF /* RCTSurfaceHostingView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSurfaceHostingView.h; sourceTree = ""; }; 5D9451B5759186B2FEFC890E00B66CF3 /* FIRComponentContainer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRComponentContainer.h; path = FirebaseCore/Sources/Private/FIRComponentContainer.h; sourceTree = ""; }; - 5DA470C8D907128F39A23FF2A1926F01 /* REAStyleNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REAStyleNode.h; sourceTree = ""; }; 5DA94A4C46543CA8BF8CAB0E4C79E992 /* alphai_dec.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = alphai_dec.h; path = src/dec/alphai_dec.h; sourceTree = ""; }; - 5DDE8D8C46A684C9E2E623560792AE43 /* RCTKeyCommandsManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCTKeyCommandsManager.m; path = ios/KeyCommands/RCTKeyCommandsManager.m; sourceTree = ""; }; - 5E2282392F335E8B610195FA45E062B6 /* ReactNativeKeyboardTrackingView.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = ReactNativeKeyboardTrackingView.debug.xcconfig; sourceTree = ""; }; - 5E43337D8BFDDF91530342AF8F92E649 /* decorator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = decorator.h; sourceTree = ""; }; + 5DC7E90105EED59F772F26A04BF69EC3 /* react-native-orientation-locker.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "react-native-orientation-locker.debug.xcconfig"; sourceTree = ""; }; 5E4674603A5D5B9215FFA0F8E69F8B71 /* liblibwebp.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = liblibwebp.a; path = liblibwebp.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 5E61BC63F94EA8B1B56C3F71F0DF3932 /* RCTTypedModuleConstants.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTypedModuleConstants.h; sourceTree = ""; }; + 5E8510D095CB4B75FF0A224BEBEC96AB /* RNReanimated-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNReanimated-prefix.pch"; sourceTree = ""; }; + 5E885B96FBC057287EE2A714130907C5 /* TurboModuleUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TurboModuleUtils.h; path = turbomodule/core/TurboModuleUtils.h; sourceTree = ""; }; 5E8F9DFC3E9F233FD5B82DA468FFE387 /* FIRAppAssociationRegistration.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAppAssociationRegistration.h; path = FirebaseCore/Sources/FIRAppAssociationRegistration.h; sourceTree = ""; }; + 5EA4C5A06FF89E1B3B261CA1F20C2E95 /* MaterialIcons.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = MaterialIcons.ttf; path = Fonts/MaterialIcons.ttf; sourceTree = ""; }; 5EA6F0E87B63E1232C20D9483BE5FF54 /* FIRErrorCode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRErrorCode.h; path = FirebaseCore/Sources/Private/FIRErrorCode.h; sourceTree = ""; }; 5EA700B9347F08F911F2287AF43DF8DD /* Benchmark.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = Benchmark.cpp; path = folly/Benchmark.cpp; sourceTree = ""; }; 5EA8164CADC66E4133EA05AA9B8B8B20 /* ScheduledFrameProcessor.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = ScheduledFrameProcessor.cpp; path = rsocket/framing/ScheduledFrameProcessor.cpp; sourceTree = ""; }; + 5EA8B4CA35F011B972A94E0EB2DE0074 /* EXFileSystemAssetLibraryHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXFileSystemAssetLibraryHandler.m; path = EXFileSystem/EXFileSystemAssetLibraryHandler.m; sourceTree = ""; }; + 5EC60725022D264A6CF5F596162355D3 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; + 5EC7C99A787AE1FAE9E42B30C1A77EAC /* RCTFollyConvert.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTFollyConvert.h; sourceTree = ""; }; + 5ED41CE4A1586005DE1892A40E47A707 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; 5EFCBD3C5BCD71E59B7DF221F564EFC0 /* RequestResponseResponder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RequestResponseResponder.h; path = rsocket/statemachine/RequestResponseResponder.h; sourceTree = ""; }; 5F1031B9505164B107149851320633DC /* comp.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = comp.h; path = ios/include/openssl/comp.h; sourceTree = ""; }; 5F1EA239387237E65FDFB1FF1D516105 /* AsyncPipe.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = AsyncPipe.cpp; path = folly/io/async/AsyncPipe.cpp; sourceTree = ""; }; - 5F2034C1AE93F00731ACD41C145FB977 /* RCTTextTransform.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTTextTransform.h; path = Libraries/Text/RCTTextTransform.h; sourceTree = ""; }; - 5F3370749EB8126D4B57C73C8068A02D /* RCTI18nUtil.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTI18nUtil.h; sourceTree = ""; }; + 5F561CFE55AC904721C7055F48E88A06 /* RCTTrackingAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTrackingAnimatedNode.h; sourceTree = ""; }; + 5F5F5B7BA0F1D8C949CDE8BADFE1B21E /* RNGestureHandlerRegistry.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNGestureHandlerRegistry.h; path = ios/RNGestureHandlerRegistry.h; sourceTree = ""; }; 5F62545782D513B0570CC4018A2E037F /* DecoratedAsyncTransportWrapper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DecoratedAsyncTransportWrapper.h; path = folly/io/async/DecoratedAsyncTransportWrapper.h; sourceTree = ""; }; - 5F6755DED0CBA411D15184F9FECDB49D /* ARTContainer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ARTContainer.h; path = ios/ARTContainer.h; sourceTree = ""; }; - 5F6F1A303BED70574F14DECF9765E409 /* RNScreens.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNScreens.release.xcconfig; sourceTree = ""; }; - 5F9008CF3189F888B288C33FCDD63C6D /* RCTKeyboardObserver.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTKeyboardObserver.h; path = React/CoreModules/RCTKeyboardObserver.h; sourceTree = ""; }; - 5F9FE902085D3594784DA653548B5430 /* BSG_KSArchSpecific.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSArchSpecific.h; sourceTree = ""; }; + 5F7199B5364E560C0666E3EA98C08D89 /* react-native-jitsi-meet-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "react-native-jitsi-meet-dummy.m"; sourceTree = ""; }; 5FA48097A60E3C79497DF00BF16B6F8B /* FIRCLSSerializeSymbolicatedFramesOperation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSSerializeSymbolicatedFramesOperation.h; path = Crashlytics/Crashlytics/Operations/Symbolication/FIRCLSSerializeSymbolicatedFramesOperation.h; sourceTree = ""; }; - 5FA8CDF30977643EEBBE3984FC6DEB9C /* React-cxxreact-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-cxxreact-dummy.m"; sourceTree = ""; }; + 5FAC3C728CC2B1194530CF247719BB70 /* YGLayout.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = YGLayout.cpp; path = yoga/YGLayout.cpp; sourceTree = ""; }; 5FB800B2BD33B6A01010A0575B6294D2 /* HHWheelTimer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = HHWheelTimer.h; path = folly/io/async/HHWheelTimer.h; sourceTree = ""; }; - 5FD278A54845C4E277E53EEE9948F093 /* UMExportedModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMExportedModule.h; path = UMCore/UMExportedModule.h; sourceTree = ""; }; + 5FB8C63F680562186BBD3E59739B4273 /* REAConcatNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REAConcatNode.m; sourceTree = ""; }; 5FDE972D4AD9AF52016E548F83A398A9 /* GDTCORTransformer_Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCORTransformer_Private.h; path = GoogleDataTransport/GDTCORLibrary/Private/GDTCORTransformer_Private.h; sourceTree = ""; }; + 5FF46CC63C895B2BC6EA05546DE7B911 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; 5FF53F120C9636363D6E1DF805BA4847 /* FKUserDefaultsPlugin.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FKUserDefaultsPlugin.h; path = iOS/Plugins/FlipperKitUserDefaultsPlugin/FKUserDefaultsPlugin.h; sourceTree = ""; }; - 600646A79B18A0EB50628411DE70FA2A /* react-native-notifications.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "react-native-notifications.debug.xcconfig"; sourceTree = ""; }; + 60090F1A99574404DAE0E091F96DC311 /* YGNodePrint.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = YGNodePrint.cpp; path = yoga/YGNodePrint.cpp; sourceTree = ""; }; + 600D816AA61D01F5E4158C5F3CFA2E7D /* BSG_KSSysCtl.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSSysCtl.c; sourceTree = ""; }; + 6017D6B8B2DD3DA246787B41CBF74A43 /* RCTSafeAreaShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSafeAreaShadowView.h; sourceTree = ""; }; 6021E553B770F82E73B0C63684662267 /* FIRCLSSymbolResolver.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCLSSymbolResolver.m; path = Crashlytics/Crashlytics/Models/FIRCLSSymbolResolver.m; sourceTree = ""; }; - 60244CC06F7882BD32F9C428E2A7F362 /* BSG_KSMachHeaders.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSMachHeaders.h; sourceTree = ""; }; - 603BAA50500CCF9DDAA789B05DA5431D /* ImageCropPicker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ImageCropPicker.h; path = ios/src/ImageCropPicker.h; sourceTree = ""; }; + 6031319F68ABEB765689862837B9024E /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; 603F3515483F15AD3C050F7F0B253AFD /* Singleton-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "Singleton-inl.h"; path = "folly/Singleton-inl.h"; sourceTree = ""; }; 6040AA3445538DCFB1FE879336BF1102 /* EventBase.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = EventBase.cpp; path = folly/io/async/EventBase.cpp; sourceTree = ""; }; - 60686AB4AF07D10D074ACC81B4F49C4E /* RCTSurfaceHostingView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSurfaceHostingView.h; sourceTree = ""; }; - 606F7B085BCA866D3720CC6D5FCF9A60 /* LongLivedObject.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = LongLivedObject.cpp; path = turbomodule/core/LongLivedObject.cpp; sourceTree = ""; }; + 60438234C4682AE09F8F3FB200FAAD79 /* 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; }; + 60713CD73673CF9D2884A92187EC3409 /* es.lproj */ = {isa = PBXFileReference; includeInIndex = 1; name = es.lproj; path = ios/QBImagePicker/QBImagePicker/es.lproj; sourceTree = ""; }; + 6076E54A1D761A8377DFC0301C4FFBC6 /* RCTSettingsPlugins.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTSettingsPlugins.mm; sourceTree = ""; }; 6089DEF6A522BD0393817AE2C87A3376 /* TimerFDTimeoutManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TimerFDTimeoutManager.h; path = folly/experimental/TimerFDTimeoutManager.h; sourceTree = ""; }; 6091F121AFA5D2D5CD9411F3E6D01B95 /* RangeCommon.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RangeCommon.h; path = folly/detail/RangeCommon.h; sourceTree = ""; }; - 609480681C3B0B0608A3257DD78526FB /* RCTImageSource.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTImageSource.h; sourceTree = ""; }; - 60A084BF2656161A40E5992795CAEC30 /* EXAV.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXAV.h; path = EXAV/EXAV.h; sourceTree = ""; }; - 60A6922B50E417EA04251F4E5C3F800B /* ARTShape.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ARTShape.h; path = ios/ARTShape.h; sourceTree = ""; }; + 60A21E099D5AFA081A586A3E1FF44B72 /* React-RCTBlob.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-RCTBlob.release.xcconfig"; sourceTree = ""; }; 60A9F34009B96F3FB55068354EC32B6D /* FirebaseCoreInternal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FirebaseCoreInternal.h; path = FirebaseCore/Sources/Private/FirebaseCoreInternal.h; sourceTree = ""; }; 60AE6989A5796CB59E49FB60BA6975D2 /* vlog_is_on.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = vlog_is_on.cc; path = src/vlog_is_on.cc; sourceTree = ""; }; 60B6275CE5F7D80B0C80254CA5F105D4 /* CMakeLists.txt */ = {isa = PBXFileReference; includeInIndex = 1; name = CMakeLists.txt; path = rsocket/benchmarks/CMakeLists.txt; sourceTree = ""; }; + 60BF0D104534FDEECAC4681C32061822 /* 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; }; 60CEB4A382BD7439F09781B449EC63F2 /* MiniPBCoder_OSX.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = MiniPBCoder_OSX.cpp; path = Core/MiniPBCoder_OSX.cpp; sourceTree = ""; }; - 60DCE50527BD6D2744ED2908D45D957B /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; - 60F4E9F97C80863480B45DF23E84A182 /* REACondNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REACondNode.m; sourceTree = ""; }; + 60EDD1E032A4724CC952A48996263EA2 /* RCTWebSocketModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTWebSocketModule.h; path = React/CoreModules/RCTWebSocketModule.h; sourceTree = ""; }; 6109E1F1875E47099A00E210146E5DD2 /* Flowable_FromObservable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Flowable_FromObservable.h; path = yarpl/flowable/Flowable_FromObservable.h; sourceTree = ""; }; - 61190B649DECA3233E036C2E27576AAD /* react-native-cameraroll.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "react-native-cameraroll.release.xcconfig"; sourceTree = ""; }; - 613CB7E41ABB9059B0BE45D7287F19F0 /* RCTPropsAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTPropsAnimatedNode.h; sourceTree = ""; }; - 614819B2D574266BADC22FC38FE98BCE /* RCTTypeSafety-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RCTTypeSafety-prefix.pch"; sourceTree = ""; }; + 610E64DCD046F3EA7BA9FB47611C672C /* RNNotificationCenter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNNotificationCenter.h; path = RNNotifications/RNNotificationCenter.h; sourceTree = ""; }; + 61254B3B4E4A82CE31D76E61CAD224AB /* UMViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMViewManager.h; path = UMCore/UMViewManager.h; sourceTree = ""; }; 614DB9EE5C02F76486B1E159C320BE2A /* ScopeGuard.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ScopeGuard.h; path = folly/ScopeGuard.h; sourceTree = ""; }; - 615A0DD23BA76DE12C7349F5D5EDEA5B /* RCTInspectorPackagerConnection.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTInspectorPackagerConnection.h; sourceTree = ""; }; 616723362C3DB79DB2DA7B7FA93E8404 /* PolyException.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PolyException.h; path = folly/PolyException.h; sourceTree = ""; }; - 616759E5E19CC5E19518503433D74829 /* RCTComponentEvent.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTComponentEvent.h; sourceTree = ""; }; - 61762F11F9DF31EAB9C7312E6B679C47 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; - 6177603ABD5E6068DCA851802480FD23 /* RNFBAnalyticsModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNFBAnalyticsModule.h; path = ios/RNFBAnalytics/RNFBAnalyticsModule.h; sourceTree = ""; }; + 6169351F01CF3D26049E7D74D15BF376 /* StorageIndexer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = StorageIndexer.h; path = ios/StorageIndexer.h; sourceTree = ""; }; + 617B082ECE9579851D2C0FD1734669B1 /* RCTDataRequestHandler.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTDataRequestHandler.mm; sourceTree = ""; }; 61876661DE00A6E1CCFEF073CF75F138 /* FIRCLSUserLogging.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSUserLogging.h; path = Crashlytics/Crashlytics/Components/FIRCLSUserLogging.h; sourceTree = ""; }; - 619C5485D25F63D67B819CE38AA9D59A /* EXResumablesManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = EXResumablesManager.m; sourceTree = ""; }; - 61A0A3BB44000C175B6D79987E932191 /* RNReanimated-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNReanimated-dummy.m"; sourceTree = ""; }; 61A600074F1E287BBAFACAAB9EB3FCA5 /* firebasecore.nanopb.c */ = {isa = PBXFileReference; includeInIndex = 1; name = firebasecore.nanopb.c; path = Firebase/CoreDiagnostics/FIRCDLibrary/Protogen/nanopb/firebasecore.nanopb.c; sourceTree = ""; }; - 61ABA5F1FC2C8B3E4833C4AE786A2242 /* react-native-cookies.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "react-native-cookies.release.xcconfig"; sourceTree = ""; }; - 61BC2AAF56B32AC91A977CEB42F66695 /* UMModuleRegistryProvider.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMModuleRegistryProvider.h; sourceTree = ""; }; - 61BE0F021008ED1E6899CEFEB32176A7 /* ARTRadialGradient.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = ARTRadialGradient.m; sourceTree = ""; }; + 61B5FE85C46953681D7E6196413F271A /* BugsnagSink.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagSink.h; sourceTree = ""; }; 61C875414226907EB3B46857E800FF1E /* CodedInputData_OSX.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = CodedInputData_OSX.cpp; path = Core/CodedInputData_OSX.cpp; sourceTree = ""; }; + 61C932215108856EBBF2265EB58B0BB3 /* UMFaceDetectorManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMFaceDetectorManager.h; path = UMFaceDetectorInterface/UMFaceDetectorManager.h; sourceTree = ""; }; 61C940B8E70B47D19346B71BC35441D0 /* GULReachabilityMessageCode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULReachabilityMessageCode.h; path = GoogleUtilities/Reachability/Private/GULReachabilityMessageCode.h; sourceTree = ""; }; 61D4B512312F11187441E3F4D2B4857A /* RSocketServer.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = RSocketServer.cpp; path = rsocket/RSocketServer.cpp; sourceTree = ""; }; - 62147477D0529B02C595D66D9903B668 /* RCTBridgeDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBridgeDelegate.h; sourceTree = ""; }; - 6216563D5EB7B6D2DFB9B412964A6EC0 /* REATransitionValues.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REATransitionValues.h; sourceTree = ""; }; + 61FA1904373226CD5BA7427B930E8D20 /* React-jsi-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-jsi-dummy.m"; sourceTree = ""; }; 6219D0009BCF31A711488F8CDC5076D0 /* IOObjectCache.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = IOObjectCache.h; path = folly/executors/IOObjectCache.h; sourceTree = ""; }; - 6224A7F4008F7612AA80D6FE489064FC /* RNRotationHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNRotationHandler.h; sourceTree = ""; }; 62276A24A9F41501ABB0D00ED197588A /* OpenSSL-Universal.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "OpenSSL-Universal.release.xcconfig"; sourceTree = ""; }; - 6230D56843EEEDD6911A8EA529A78DF9 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; - 62745929D97AF49C979E30DA0E40E56F /* UMTaskManagerInterface.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = UMTaskManagerInterface.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 622E54713720A1158C65FF55839ED85B /* UMModuleRegistryAdapter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = UMModuleRegistryAdapter.m; sourceTree = ""; }; + 6235B98CC402A2AE353E52314BD1930B /* RCTReloadCommand.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTReloadCommand.h; sourceTree = ""; }; 6284A02AF8BD292CBD1C1D1C5702C4E5 /* mips_macro.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = mips_macro.h; path = src/dsp/mips_macro.h; sourceTree = ""; }; - 628968A43ABEC47EDE16A9C09BC1B3E3 /* RCTConvert+RNNotifications.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "RCTConvert+RNNotifications.m"; path = "RNNotifications/RCTConvert+RNNotifications.m"; sourceTree = ""; }; - 628A48282BAAAE6B0C755DE30A1A9626 /* RCTBaseTextShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTBaseTextShadowView.m; sourceTree = ""; }; 628B91F5952637F53226870B395B7975 /* NSButton+WebCache.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSButton+WebCache.h"; path = "SDWebImage/Core/NSButton+WebCache.h"; sourceTree = ""; }; - 62AB16197D6B06D52563ADE97C660540 /* RNFetchBlob.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNFetchBlob.m; sourceTree = ""; }; - 62AD1E3F452D600843E69C770EB37596 /* UMNativeModulesProxy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = UMNativeModulesProxy.m; sourceTree = ""; }; 62D3A4F9F0F687E5C2C9460D77238CF4 /* ScopedTraceSection.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ScopedTraceSection.h; path = folly/tracing/ScopedTraceSection.h; sourceTree = ""; }; 62E045829C1BE20F83C7B787A38B5F33 /* Request.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = Request.cpp; path = folly/io/async/Request.cpp; sourceTree = ""; }; 62E90BFD41A96959799C69CEA9F27A13 /* GULKeychainStorage.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULKeychainStorage.h; path = GoogleUtilities/Environment/Private/GULKeychainStorage.h; sourceTree = ""; }; - 62EA869E0FD95F6A5D60988D06E375EA /* BSG_KSCrashSentry.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSCrashSentry.c; sourceTree = ""; }; + 62ECF1E16FE4FF13298DA5AC28BA3769 /* event.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = event.h; sourceTree = ""; }; + 62F98564D573BC2AC2B99B6905464940 /* RCTUIUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTUIUtils.h; sourceTree = ""; }; 62FF8DB2CA6E62BC91939C2346AD6B3E /* FIRCLSURLSessionDownloadTask.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSURLSessionDownloadTask.h; path = Crashlytics/Crashlytics/FIRCLSURLSession/Tasks/FIRCLSURLSessionDownloadTask.h; sourceTree = ""; }; 6304289097410B42387B3F2622F04C0A /* GULLoggerCodes.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULLoggerCodes.h; path = GoogleUtilities/Common/GULLoggerCodes.h; sourceTree = ""; }; - 6312A8D11BABD3D9A25AE1BA901AAC3E /* RCTKeyCommandConstants.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTKeyCommandConstants.h; path = ios/KeyCommands/RCTKeyCommandConstants.h; sourceTree = ""; }; - 63135997CD66DF14CB6C3D08D2A6BE54 /* UMReactNativeEventEmitter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMReactNativeEventEmitter.h; sourceTree = ""; }; - 631536E35AEB6990AE1B373DD9B0DB26 /* RCTSurfaceView.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTSurfaceView.mm; sourceTree = ""; }; 63326DF86E22B325A5B08C049B95D1EE /* UniqueInstance.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UniqueInstance.h; path = folly/detail/UniqueInstance.h; sourceTree = ""; }; 633565FF07E1EA2F970452302215455D /* F14Defaults.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = F14Defaults.h; path = folly/container/detail/F14Defaults.h; sourceTree = ""; }; 635272A78BA73A420852C116143B0EAE /* GULSecureCoding.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULSecureCoding.h; path = GoogleUtilities/Environment/Private/GULSecureCoding.h; sourceTree = ""; }; 6368CF85B3E4010BE953086B81C23FC6 /* Demangle.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = Demangle.cpp; path = folly/detail/Demangle.cpp; sourceTree = ""; }; - 636D45E785CA25BC4B4D6972DA3F1758 /* EXHaptics-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "EXHaptics-prefix.pch"; sourceTree = ""; }; + 636CCC2E08CE0BD5443FB0D8F435BEDF /* RNFBAnalyticsModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNFBAnalyticsModule.h; path = ios/RNFBAnalytics/RNFBAnalyticsModule.h; sourceTree = ""; }; 6373E4A04BEC6CBA035060CA99F0CC11 /* TcpConnectionAcceptor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TcpConnectionAcceptor.h; path = rsocket/transports/tcp/TcpConnectionAcceptor.h; sourceTree = ""; }; 637BB8714C78B885B4751C684DD857C9 /* log_severity.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = log_severity.h; path = src/glog/log_severity.h; sourceTree = ""; }; + 637D8CCFCD2E29E71F03DF8744F47CAB /* RCTKeyCommandConstants.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCTKeyCommandConstants.m; path = ios/KeyCommands/RCTKeyCommandConstants.m; sourceTree = ""; }; 637D8D1046415EBB7A82B18D024458D0 /* Indestructible.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Indestructible.h; path = folly/Indestructible.h; sourceTree = ""; }; + 63879AE45CF71EE31DF727C9F47BCB43 /* EXAppleAuthenticationRequest.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXAppleAuthenticationRequest.h; path = EXAppleAuthentication/EXAppleAuthenticationRequest.h; sourceTree = ""; }; + 638955B8123780478D526BB7091E0B4C /* RCTAdditionAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTAdditionAnimatedNode.m; sourceTree = ""; }; 639135DC52CE870C6E44464E7B08EE77 /* File.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = File.cpp; path = folly/File.cpp; sourceTree = ""; }; + 63AE8981557B5472C48C73815EFDD81B /* React-RCTNetwork.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-RCTNetwork.release.xcconfig"; sourceTree = ""; }; 63C5163727A4A172C8A5BC1F4E73A4DD /* FIRAppInternal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAppInternal.h; path = FirebaseCore/Sources/Private/FIRAppInternal.h; sourceTree = ""; }; + 63C74A085D1810F847F72318EA748802 /* RNDateTimePicker-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNDateTimePicker-dummy.m"; sourceTree = ""; }; 63D24CB1447F4332B0BD656806045F5A /* FIRDiagnosticsData.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRDiagnosticsData.h; path = FirebaseCore/Sources/FIRDiagnosticsData.h; sourceTree = ""; }; 63EAE19ECA487B6B1CBDA895867FE21F /* alpha_processing_neon.c */ = {isa = PBXFileReference; includeInIndex = 1; name = alpha_processing_neon.c; path = src/dsp/alpha_processing_neon.c; sourceTree = ""; }; 63F5F11A6995E23FA806F847374AF55B /* SDImageIOCoder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageIOCoder.h; path = SDWebImage/Core/SDImageIOCoder.h; sourceTree = ""; }; 641004BDF9AA14E0CB1A8A97C6AFA116 /* Pods-ShareRocketChatRN-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Pods-ShareRocketChatRN-dummy.m"; sourceTree = ""; }; 642508DC22DE2C9EEA86FE4D8EE7D2E5 /* SocketFastOpen.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = SocketFastOpen.cpp; path = folly/detail/SocketFastOpen.cpp; sourceTree = ""; }; - 642ABBCB9815AA342641F7FA6FBAC887 /* SecureStorage.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SecureStorage.h; path = ios/SecureStorage.h; sourceTree = ""; }; - 642E55F6BE17274B8BE4C08053D834C6 /* YGValue.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YGValue.h; path = yoga/YGValue.h; sourceTree = ""; }; 642F60369A61D9E2F3CE29EB3D3A6566 /* FIRCLSRecordHost.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCLSRecordHost.m; path = Crashlytics/Crashlytics/Models/Record/FIRCLSRecordHost.m; sourceTree = ""; }; - 64336ADBC3D8C459CB84D135DD365F93 /* BSG_KSCrashType.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSCrashType.c; sourceTree = ""; }; + 64348D5A41E5D0CC3173E207DBC6A48F /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; + 6438611008682BE9B87E901625A6CB57 /* BSG_KSCrashReportFields.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashReportFields.h; sourceTree = ""; }; 64459AA4D1DF8BDFD3F3A69BAE30D27F /* IPAddressV6.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = IPAddressV6.cpp; path = folly/IPAddressV6.cpp; sourceTree = ""; }; 6445EA0045D686A18AE86087E3588140 /* TOCroppedImageAttributes.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TOCroppedImageAttributes.h; path = "Objective-C/TOCropViewController/Models/TOCroppedImageAttributes.h"; sourceTree = ""; }; - 644B8A6569BEEBB4352F664FDB906D10 /* REANode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REANode.h; sourceTree = ""; }; - 6465BBA18EC33F3B5EE4492B2E668759 /* RCTVibrationPlugins.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTVibrationPlugins.mm; sourceTree = ""; }; - 64943AE33232EE083680F7A06B4520AC /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; + 645F36069223AF2009C3501B14388BE2 /* RNConfigReader-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNConfigReader-dummy.m"; sourceTree = ""; }; + 647E05C8967F8DC91DA71C9B6858BE11 /* JsArgumentHelpers.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = JsArgumentHelpers.h; sourceTree = ""; }; + 64853B39BB2260A3B9B2115A7E38179D /* BugsnagCollections.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagCollections.h; sourceTree = ""; }; 64B2E21284F96DC922A617C4E62DA34C /* SDWebImageOperation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageOperation.h; path = SDWebImage/Core/SDWebImageOperation.h; sourceTree = ""; }; - 64D7F83B62FE5646EC61C1C78F8D6A68 /* RCTComponentData.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTComponentData.h; sourceTree = ""; }; + 64BE4F4291181D66BE2DC6CF992DC7A5 /* RCTSpringAnimation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSpringAnimation.m; sourceTree = ""; }; 64ED78E8A26C2BEA397E9514E783E94C /* Portability.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Portability.h; path = folly/futures/Portability.h; sourceTree = ""; }; 64F86ABAB87C308982C8C8ECB369E1E3 /* logging.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = logging.h; path = src/glog/logging.h; sourceTree = ""; }; 6504583D3024841C61E23BDA84AB9350 /* lossless_msa.c */ = {isa = PBXFileReference; includeInIndex = 1; name = lossless_msa.c; path = src/dsp/lossless_msa.c; sourceTree = ""; }; + 650599829DAAE76693395E94846CDC35 /* BugsnagMetaData.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagMetaData.m; sourceTree = ""; }; 6505F6C062E4A5D1040FEDB7153756C1 /* ResumeManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ResumeManager.h; path = rsocket/ResumeManager.h; sourceTree = ""; }; 650839B18ADB322F125B475EB54E4FD0 /* vlog_is_on.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = vlog_is_on.h; path = src/glog/vlog_is_on.h; sourceTree = ""; }; - 650AA7E9A990289D39BFFC4C3C6BEDCD /* EXVideoView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = EXVideoView.h; sourceTree = ""; }; 65140110B413F1F23561D57B4FAB24F0 /* UIImageView+HighlightedWebCache.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIImageView+HighlightedWebCache.h"; path = "SDWebImage/Core/UIImageView+HighlightedWebCache.h"; sourceTree = ""; }; 65234B3E668A42D9137B2C7AB051EE37 /* libFlipperKit.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libFlipperKit.a; path = libFlipperKit.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 652F3A596F67FFC587579C04CAC911CA /* UMBarCodeScannerInterface.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = UMBarCodeScannerInterface.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 6525A82A80E0F2393BB29B17E3EC8E1C /* RCTSurfaceView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSurfaceView.h; sourceTree = ""; }; 6549E342A6172E43AD498F2E37383650 /* GDTCORUploader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCORUploader.h; path = GoogleDataTransport/GDTCORLibrary/Public/GDTCORUploader.h; sourceTree = ""; }; 654A23D2C1C8537C84CAD0D175556716 /* FrameType.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FrameType.h; path = rsocket/framing/FrameType.h; sourceTree = ""; }; + 657C3F100BB64348AFD79C475359D850 /* EXSessionTaskDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = EXSessionTaskDelegate.h; sourceTree = ""; }; 658F106F5EE323F0D8613DF1D358CB7F /* Core.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Core.h; path = folly/gen/Core.h; sourceTree = ""; }; + 659D01B5AEE2A6809EF7EE98B3E8C599 /* Instance.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = Instance.h; sourceTree = ""; }; 659F71FBC500FC8143B83A886FF525AD /* FIRCoreDiagnosticsData.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCoreDiagnosticsData.h; path = Interop/CoreDiagnostics/Public/FIRCoreDiagnosticsData.h; sourceTree = ""; }; - 65BD4A98D5F8FE4A3CB5D9620C8F404A /* ARTRenderable.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = ARTRenderable.m; path = ios/ARTRenderable.m; sourceTree = ""; }; + 65B294002EB5B2BE850B54D508CCD95E /* RCTPropsAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTPropsAnimatedNode.m; sourceTree = ""; }; 65CE076EC76385AA678905F342C2BE03 /* KeepaliveTimer.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = KeepaliveTimer.cpp; path = rsocket/internal/KeepaliveTimer.cpp; sourceTree = ""; }; 65D0A19C165FA1126B1360680FE6DB12 /* libYoga.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libYoga.a; path = libYoga.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 65E7D4CADD6D7D593295ED52EE638F6B /* EXVideoThumbnailsModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXVideoThumbnailsModule.h; path = EXVideoThumbnails/EXVideoThumbnailsModule.h; sourceTree = ""; }; - 65FB729F1A489137605E6745BB996314 /* RNCMaskedViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCMaskedViewManager.m; path = ios/RNCMaskedViewManager.m; sourceTree = ""; }; - 66015B1F276053D0A20A904C31DC766D /* RCTDevLoadingViewProtocol.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTDevLoadingViewProtocol.h; sourceTree = ""; }; + 65DC6EAD1AAE482D1964ED82499B01CB /* RNDeviceInfo-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNDeviceInfo-prefix.pch"; sourceTree = ""; }; 66092E3A89FCDAA9CC2FFD9ECDFF4E28 /* StreamThroughputTcp.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = StreamThroughputTcp.cpp; path = rsocket/benchmarks/StreamThroughputTcp.cpp; sourceTree = ""; }; 661DD4092B863C163DDA6B5A061ECF21 /* ScheduledSingleSubscription.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ScheduledSingleSubscription.h; path = rsocket/internal/ScheduledSingleSubscription.h; sourceTree = ""; }; 662665FE9F09E2A8AB99BADB2B35EF08 /* SDWebImageCompat.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWebImageCompat.m; path = SDWebImage/Core/SDWebImageCompat.m; sourceTree = ""; }; - 6636CE74E548DA0ABF051687E7C45793 /* RCTPickerManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTPickerManager.h; sourceTree = ""; }; + 663E7CD908F00288887179732A22BC3E /* RNFBPreferences.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNFBPreferences.h; path = ios/RNFBApp/RNFBPreferences.h; sourceTree = ""; }; + 663F678BA4D1DC92F6056E3F7B0D75B1 /* RCTSourceCode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTSourceCode.h; path = React/CoreModules/RCTSourceCode.h; sourceTree = ""; }; + 66554C7012880FC5D738096E4A6AA39C /* RCTConvert+REATransition.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RCTConvert+REATransition.m"; sourceTree = ""; }; 6656F58967C010370695EDFC5C939AFA /* RSocketRequester.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = RSocketRequester.cpp; path = rsocket/RSocketRequester.cpp; sourceTree = ""; }; - 6659CA263E9BE993C0CDDC48CB848A07 /* RCTLinkingPlugins.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTLinkingPlugins.mm; sourceTree = ""; }; - 665A7C3432F2F39F9373C0DE70BE195E /* React-Core-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-Core-dummy.m"; sourceTree = ""; }; - 666BAD526FFAE2C6EDB4F7546A6EEE17 /* RCTBaseTextInputShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTBaseTextInputShadowView.m; sourceTree = ""; }; 667F0DDA57E645FF1582C17C842878BE /* Assume.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = Assume.cpp; path = folly/lang/Assume.cpp; sourceTree = ""; }; 6683C86DA58980A55D1577C5A8791350 /* OpenSSLVersionFinder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = OpenSSLVersionFinder.h; path = folly/ssl/OpenSSLVersionFinder.h; sourceTree = ""; }; + 669B53B0F1825B1394A00752270DA103 /* RCTModuleMethod.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTModuleMethod.h; sourceTree = ""; }; + 66B202038A90A6F376B7521002FEED5E /* RCTLogBox.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTLogBox.h; path = React/CoreModules/RCTLogBox.h; sourceTree = ""; }; + 66B27C2CBEB364D204180DF161B01B67 /* RNCAssetsLibraryRequestHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCAssetsLibraryRequestHandler.h; path = ios/RNCAssetsLibraryRequestHandler.h; sourceTree = ""; }; 66B41B6896BBE870A2C8D111635F45BE /* picture_rescale_enc.c */ = {isa = PBXFileReference; includeInIndex = 1; name = picture_rescale_enc.c; path = src/enc/picture_rescale_enc.c; sourceTree = ""; }; 66BF14000F3A0E5D1CF940707334EE3D /* Instructions.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Instructions.h; path = folly/experimental/Instructions.h; sourceTree = ""; }; - 66C22CE3936F8C9398388D144661EEBC /* RNGestureHandlerEvents.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNGestureHandlerEvents.h; path = ios/RNGestureHandlerEvents.h; sourceTree = ""; }; - 66F6A981CEA13748A99785DE62DC4464 /* RNNativeViewHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNNativeViewHandler.m; sourceTree = ""; }; - 6714A30477A6F584F593D6ED6436AEBF /* EXAppleAuthenticationMappings.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXAppleAuthenticationMappings.m; path = EXAppleAuthentication/EXAppleAuthenticationMappings.m; sourceTree = ""; }; - 672FB528F5AD5313A27A93E44D7275C1 /* RNFBCrashlytics-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNFBCrashlytics-prefix.pch"; sourceTree = ""; }; + 66C86DF90F7DB5286286B1D63407FF5E /* RCTImageView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageView.h; path = Libraries/Image/RCTImageView.h; sourceTree = ""; }; + 66DD01B75D0D51085FFA21C1E5712417 /* BSG_KSCrashAdvanced.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashAdvanced.h; sourceTree = ""; }; + 67280C936CFE5B6DD98C4242D8E002BA /* RNNotificationCenter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNNotificationCenter.m; path = RNNotifications/RNNotificationCenter.m; sourceTree = ""; }; 674DC30FAC6A728796E8E311ADBD20CB /* ManualExecutor.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = ManualExecutor.cpp; path = folly/executors/ManualExecutor.cpp; sourceTree = ""; }; - 6755B74140AB33575D7F7612912E3CCB /* RCTCxxConvert.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTCxxConvert.h; sourceTree = ""; }; 6760358F1BD3FC8F858FDB499C36A5AB /* SKObject.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SKObject.h; path = iOS/Plugins/FlipperKitLayoutPlugin/FlipperKitLayoutPlugin/SKObject.h; sourceTree = ""; }; 6761EE751437179A29FF8AFE464AF759 /* F14Map-fwd.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "F14Map-fwd.h"; path = "folly/container/F14Map-fwd.h"; sourceTree = ""; }; 6771D231F4C8C5976470A369C474B32E /* libReact-CoreModules.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libReact-CoreModules.a"; path = "libReact-CoreModules.a"; sourceTree = BUILT_PRODUCTS_DIR; }; - 6776B518AE3CBCB9932E94BB1A5F1DAB /* RNFastImage.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RNFastImage.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - 67853E7876459EC6320FDB3D34003ACC /* BugsnagCollections.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagCollections.h; sourceTree = ""; }; + 677B492ED82EA3A95B74597A9BEFD09C /* RCTUIManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTUIManager.h; sourceTree = ""; }; 678ED3E1F085D3666FF228FD63BD2F48 /* FIRCLSURLSessionConfiguration.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSURLSessionConfiguration.h; path = Crashlytics/Crashlytics/FIRCLSURLSession/FIRCLSURLSessionConfiguration.h; sourceTree = ""; }; - 679FE0776CFF119C578544CA4F55D90F /* RNGestureHandler-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNGestureHandler-dummy.m"; sourceTree = ""; }; 67BF88A6307856EAAFEE39B3AC5A73BC /* SequencedExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SequencedExecutor.h; path = folly/executors/SequencedExecutor.h; sourceTree = ""; }; - 67D64D02C9D8DCD5F4A39C7A99EA1593 /* ARTSolidColor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = ARTSolidColor.h; sourceTree = ""; }; + 67E04919774EBE3A9E1B7AA65D274155 /* RCTDevSettings.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTDevSettings.h; path = React/CoreModules/RCTDevSettings.h; sourceTree = ""; }; + 67E0707F1E40C6E88B45D2E8B0BF81AB /* RCTTextViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTextViewManager.h; sourceTree = ""; }; 67F0D75FA6FCBB0C44DB4773B08C38D2 /* SDImageWebPCoder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageWebPCoder.h; path = SDWebImageWebPCoder/Classes/SDImageWebPCoder.h; sourceTree = ""; }; - 681F8AF4264FDD3F88EF3C867529EC46 /* LNAnimator.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = LNAnimator.m; sourceTree = ""; }; - 6849721AB8101FAE453B68A42AB5F27C /* contents.xcworkspacedata */ = {isa = PBXFileReference; includeInIndex = 1; path = contents.xcworkspacedata; sourceTree = ""; }; - 684CCB669022FF86D7717FF48A76B382 /* ARTTextFrame.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ARTTextFrame.h; path = ios/ARTTextFrame.h; sourceTree = ""; }; - 685D7A01D6AC0926E46057218D990941 /* RCTRootView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTRootView.m; sourceTree = ""; }; - 686AE5DA8D614D5693B035866D43A309 /* RCTPropsAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTPropsAnimatedNode.m; sourceTree = ""; }; + 683FF8385E8A845B8EE43EDE69D6DD5A /* RCTScrollContentView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTScrollContentView.m; sourceTree = ""; }; + 686C68A2AC151ADD5C7EED508B3C2B00 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; + 687123C18109B0B1D0E545560537FF1A /* react-native-cameraroll-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "react-native-cameraroll-prefix.pch"; sourceTree = ""; }; 687496EEE6014D805ED9D32E7E1C0943 /* libwebp-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "libwebp-dummy.m"; sourceTree = ""; }; + 68783F7A779FE11BF6BBA23912B83987 /* RNCAppearanceProvider.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCAppearanceProvider.m; path = ios/Appearance/RNCAppearanceProvider.m; sourceTree = ""; }; 687A0DD40562984D7463CAA78EC43E80 /* FIRCLSApplication.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCLSApplication.m; path = Crashlytics/Crashlytics/Components/FIRCLSApplication.m; sourceTree = ""; }; - 6895531153DAC8AE2FC0B20FF50B0044 /* React-RCTLinking-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-RCTLinking-dummy.m"; sourceTree = ""; }; 68A5FF9B15BE42BF711F3373C2C7005E /* FlipperKit.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = FlipperKit.modulemap; sourceTree = ""; }; 68A6E82644D6D2487795445909B5948A /* quant_levels_utils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = quant_levels_utils.h; path = src/utils/quant_levels_utils.h; sourceTree = ""; }; 68AC99B30175038756318A5894F6AA9A /* Pods-RocketChatRN.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-RocketChatRN.release.xcconfig"; sourceTree = ""; }; + 68C18BFAB40D1AC0B74712801B1BF7DC /* RNFBVersion.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNFBVersion.h; path = ios/RNFBApp/RNFBVersion.h; sourceTree = ""; }; + 68C661E58FFB62685B7DC14E28904C13 /* react-native-mmkv-storage-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "react-native-mmkv-storage-prefix.pch"; sourceTree = ""; }; + 68CCE3BE3F6A6A2D44D6B6CE441F9E64 /* RNDocumentPicker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNDocumentPicker.h; path = ios/RNDocumentPicker/RNDocumentPicker.h; sourceTree = ""; }; 68D4DF3318AE6B2A8A4486FB97A71F75 /* FIRInteropParameterNames.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInteropParameterNames.h; path = Interop/Analytics/Public/FIRInteropParameterNames.h; sourceTree = ""; }; 690512D5B3049B47B2D6F5D44044199F /* FIRCLSPackageReportOperation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCLSPackageReportOperation.m; path = Crashlytics/Crashlytics/Operations/Reports/FIRCLSPackageReportOperation.m; sourceTree = ""; }; 690F5784C704DF287B139A9D7C750AAF /* FBLPromise.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBLPromise.m; path = Sources/FBLPromises/FBLPromise.m; sourceTree = ""; }; @@ -8258,312 +8185,316 @@ 6931A5E79688F5E3798C562A3BD97709 /* Observer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Observer.h; path = yarpl/observable/Observer.h; sourceTree = ""; }; 6942351307BC1F54575D9853307EAE0E /* libGoogleDataTransportCCTSupport.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libGoogleDataTransportCCTSupport.a; path = libGoogleDataTransportCCTSupport.a; sourceTree = BUILT_PRODUCTS_DIR; }; 696159D6CC4669CD010CD022345B21F8 /* HazptrHolder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = HazptrHolder.h; path = folly/synchronization/HazptrHolder.h; sourceTree = ""; }; - 69A93D2AAF46119E429ED7D204E69723 /* FFFastImageViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FFFastImageViewManager.h; path = ios/FastImage/FFFastImageViewManager.h; sourceTree = ""; }; + 69AB82474B2F3EE4309F4F54FD741293 /* rn-extensions-share-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "rn-extensions-share-prefix.pch"; sourceTree = ""; }; 69AC2D0EC742977F2556217C1F9D9682 /* DiscriminatedPtrDetail.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DiscriminatedPtrDetail.h; path = folly/detail/DiscriminatedPtrDetail.h; sourceTree = ""; }; - 69B026798EE5691465D083B5DEB9822C /* ResourceBundle-QBImagePicker-RNImageCropPicker-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "ResourceBundle-QBImagePicker-RNImageCropPicker-Info.plist"; sourceTree = ""; }; - 69B0AD9383B016DD49BC331DF8241707 /* React-RCTVibration-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-RCTVibration-dummy.m"; sourceTree = ""; }; - 69B843B9971F7D79C012E496D89DC4D0 /* UMAppLoaderProvider.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMAppLoaderProvider.h; path = UMAppLoader/UMAppLoaderProvider.h; sourceTree = ""; }; 69B8FEA92ED39FD4AA68B5B1591151B1 /* String.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = String.h; path = folly/String.h; sourceTree = ""; }; - 69CF3496F196E4B79AD75BC43B719A0C /* RCTConvert+Text.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RCTConvert+Text.m"; sourceTree = ""; }; 69E34D6C25ADA1C118057E1787651A66 /* FIRAnalyticsConfiguration.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRAnalyticsConfiguration.m; path = FirebaseCore/Sources/FIRAnalyticsConfiguration.m; sourceTree = ""; }; - 69EC70F514FDAC688D302E3B6A178992 /* RNNotificationCenter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNNotificationCenter.m; path = RNNotifications/RNNotificationCenter.m; sourceTree = ""; }; + 69E492CD03317F9F72D4C017CDEC9537 /* UIImage+Resize.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIImage+Resize.h"; path = "ios/src/UIImage+Resize.h"; sourceTree = ""; }; + 69E59662AE156BDD9E610549CBE8865A /* RCTSurfaceHostingProxyRootView.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTSurfaceHostingProxyRootView.mm; sourceTree = ""; }; 69F2C9ECEFB9B5003CF764D8A13AE79F /* SKTapListener.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SKTapListener.h; path = iOS/Plugins/FlipperKitLayoutPlugin/FlipperKitLayoutPlugin/SKTapListener.h; sourceTree = ""; }; 6A0BE58E58F10D9043E9517CA36EE7B0 /* NotificationQueue.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = NotificationQueue.h; path = folly/io/async/NotificationQueue.h; sourceTree = ""; }; - 6A1D8524615EACD00EA8DFE4FD99791F /* JSBundleType.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = JSBundleType.h; sourceTree = ""; }; + 6A2174BAE9FDA94986E9EE99590D8BAA /* BSG_KSCrashC.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashC.h; sourceTree = ""; }; + 6A250FCA3C17EEDDE48B8D03D8831ACC /* EXAppleAuthenticationMappings.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXAppleAuthenticationMappings.h; path = EXAppleAuthentication/EXAppleAuthenticationMappings.h; sourceTree = ""; }; 6A29C604A57BD42B8900C43C824826EF /* TimeoutQueue.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TimeoutQueue.h; path = folly/TimeoutQueue.h; sourceTree = ""; }; + 6A427698B8FD252ADCDCC46934F4BE17 /* EXAppleAuthenticationMappings.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXAppleAuthenticationMappings.m; path = EXAppleAuthentication/EXAppleAuthenticationMappings.m; sourceTree = ""; }; + 6A4E029ADB9B52B57E9556BC69538ACB /* RCTRootShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTRootShadowView.m; sourceTree = ""; }; 6A5A3EC7FB31A95B5849F67973BBE458 /* FIRCLSOperation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSOperation.h; path = Crashlytics/Shared/FIRCLSOperation/FIRCLSOperation.h; sourceTree = ""; }; 6A5C6E09A8E3297C23D5578BD608C9FD /* GULSecureCoding.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GULSecureCoding.m; path = GoogleUtilities/Environment/GULSecureCoding.m; sourceTree = ""; }; 6A5F3BDA5E155FBAF3D85E3E5158B4C9 /* GULKeychainStorage.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GULKeychainStorage.m; path = GoogleUtilities/Environment/SecureStorage/GULKeychainStorage.m; sourceTree = ""; }; + 6A653D7B9D37FA53E3075AA514F01543 /* UMSensorsInterface.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMSensorsInterface.release.xcconfig; sourceTree = ""; }; 6A6BC9F12658302F121B6F2020AE8C54 /* Memory.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Memory.h; path = folly/portability/Memory.h; sourceTree = ""; }; - 6A873C9787E0E58B4304FE774E0A2649 /* RCTUIManagerObserverCoordinator.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTUIManagerObserverCoordinator.mm; sourceTree = ""; }; + 6A6C6EAE481BB3543A0ABB16DF747721 /* BSG_KSCrashReportWriter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashReportWriter.h; sourceTree = ""; }; 6AA5867FE895A65536F3F6148AA6BAE4 /* stl_logging.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = stl_logging.h; path = src/glog/stl_logging.h; sourceTree = ""; }; - 6AB0E77D75A5D764ACD0B22C5297F780 /* QBAlbumCell.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = QBAlbumCell.h; path = ios/QBImagePicker/QBImagePicker/QBAlbumCell.h; sourceTree = ""; }; - 6ABF64C60A345F5FA5D6E014A4F0F92D /* ARTLinearGradient.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = ARTLinearGradient.h; sourceTree = ""; }; 6AC3CCDF257694E48C3C9D1F69E2775C /* CPUThreadPoolExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CPUThreadPoolExecutor.h; path = folly/executors/CPUThreadPoolExecutor.h; sourceTree = ""; }; + 6AC4EDB7ABE2FDDD4FA74FD80C5EB82F /* NSError+BSG_SimpleConstructor.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "NSError+BSG_SimpleConstructor.m"; sourceTree = ""; }; + 6AC5C5F2293A8179085B5C8C5FA4F526 /* RCTView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTView.m; sourceTree = ""; }; + 6AC60DE6FB73EABAAB11CC926F684719 /* RNDeviceInfo.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNDeviceInfo.debug.xcconfig; sourceTree = ""; }; 6B085D1FB16245A0F198DB2406EB08DA /* EmitterFlowable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EmitterFlowable.h; path = yarpl/flowable/EmitterFlowable.h; sourceTree = ""; }; 6B0B134EB010CB93640619051AD559EA /* FIRCLSUtility.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCLSUtility.m; path = Crashlytics/Crashlytics/Helpers/FIRCLSUtility.m; sourceTree = ""; }; - 6B2074348619E86D6B3FA2F6F9BB3DB4 /* RNVectorIconsManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNVectorIconsManager.m; path = RNVectorIconsManager/RNVectorIconsManager.m; sourceTree = ""; }; + 6B2CC74B0D9DC7218C75205D578D24A9 /* UMUIManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMUIManager.h; sourceTree = ""; }; 6B34CF81E97EE6356F87B13D2F7D9C67 /* SDImageAPNGCoder.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageAPNGCoder.m; path = SDWebImage/Core/SDImageAPNGCoder.m; sourceTree = ""; }; - 6B3B7295D7F8B3A1A12FBFF80B2AD01F /* RNLocalize.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNLocalize.debug.xcconfig; sourceTree = ""; }; 6B532D3A71FE4CCB1130CF0B704D9A0D /* FIRCLSExecutionIdentifierModel.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSExecutionIdentifierModel.h; path = Crashlytics/Crashlytics/Models/FIRCLSExecutionIdentifierModel.h; sourceTree = ""; }; - 6B725ECAF6D8FB959331B3FDFC226549 /* RCTErrorInfo.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTErrorInfo.m; sourceTree = ""; }; - 6B7E70B7E83450FFBFAD1644E1381F57 /* react-native-appearance-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "react-native-appearance-dummy.m"; sourceTree = ""; }; + 6B57A8BD8EE454096849960DF0EFC37A /* RCTProfile.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTProfile.m; sourceTree = ""; }; + 6B870EAAB051C555E43493994F3A16C3 /* React-cxxreact.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-cxxreact.debug.xcconfig"; sourceTree = ""; }; 6B8FDEC15882BDE790AF498EFE474716 /* FIRLoggerLevel.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRLoggerLevel.h; path = FirebaseCore/Sources/Public/FIRLoggerLevel.h; sourceTree = ""; }; 6B9B9C991B6C06853B8C573A449F3D36 /* TOCropViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = TOCropViewController.m; path = "Objective-C/TOCropViewController/TOCropViewController.m"; sourceTree = ""; }; 6B9E7BDB4580E6F119D6963E3658182E /* FIRDependency.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRDependency.h; path = FirebaseCore/Sources/Private/FIRDependency.h; sourceTree = ""; }; - 6BA02752B3E8452A3F27B9220BE4E524 /* REATransformNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REATransformNode.m; sourceTree = ""; }; - 6BAAADC474E30F829DA27F463DFDF466 /* JSIExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = JSIExecutor.h; path = jsireact/JSIExecutor.h; sourceTree = ""; }; - 6BC687D3736C45E150AB1A6D24B3E57B /* EXVideoThumbnails-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "EXVideoThumbnails-dummy.m"; sourceTree = ""; }; - 6BE2492912B242220358351675894420 /* RCTSurfaceRootShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSurfaceRootShadowView.h; sourceTree = ""; }; - 6C14D04AF4936D353627E14B2E93652A /* YGLayout.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YGLayout.h; path = yoga/YGLayout.h; sourceTree = ""; }; - 6C24BF558E329697628671627C08884D /* react-native-jitsi-meet-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "react-native-jitsi-meet-dummy.m"; sourceTree = ""; }; + 6C1F49ABD135CBEE2A91E0BF3CED50A8 /* EXFilePermissionModule.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXFilePermissionModule.m; path = EXFileSystem/EXFilePermissionModule.m; sourceTree = ""; }; + 6C53459687D11CEDC9BD2E924D95DBDA /* RCTSettingsManager.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTSettingsManager.mm; sourceTree = ""; }; + 6C7D96869DD87E4DB3B7376688EC49F4 /* RCTImageShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageShadowView.h; path = Libraries/Image/RCTImageShadowView.h; sourceTree = ""; }; 6CBEFE4F9E22AFDC6347A739BB35FF8C /* libCocoaAsyncSocket.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libCocoaAsyncSocket.a; path = libCocoaAsyncSocket.a; sourceTree = BUILT_PRODUCTS_DIR; }; 6CC7B99C885158580AED5D67E7775727 /* StreamsWriter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = StreamsWriter.h; path = rsocket/statemachine/StreamsWriter.h; sourceTree = ""; }; - 6CEA4F39181B9C99B4CA47B51FC7A52F /* FBReactNativeSpec.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBReactNativeSpec.h; path = FBReactNativeSpec/FBReactNativeSpec.h; sourceTree = ""; }; + 6CCC37EC3A64CED0316F1A0D74935735 /* ARTLinearGradient.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = ARTLinearGradient.m; sourceTree = ""; }; 6CFBF16997CAB2F677E714F1C5AC2884 /* RSocketConnectionEvents.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RSocketConnectionEvents.h; path = rsocket/RSocketConnectionEvents.h; sourceTree = ""; }; - 6D138B37D19B894857CCD5CBC66549A6 /* NativeModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = NativeModule.h; sourceTree = ""; }; - 6D2C636730CB450D249DDA5E4E6B0041 /* RCTSurfaceHostingView.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTSurfaceHostingView.mm; sourceTree = ""; }; - 6D326D6854826E51E3B60CC4C38C3D10 /* UMTaskLaunchReason.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMTaskLaunchReason.h; path = UMTaskManagerInterface/UMTaskLaunchReason.h; sourceTree = ""; }; + 6D195CD277334A8679378ED118F3E2C6 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; 6D44648BC266F8BA11F0D943B8DD5672 /* SDAnimatedImageView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDAnimatedImageView.h; path = SDWebImage/Core/SDAnimatedImageView.h; sourceTree = ""; }; 6D45C9B339C3901B3AA0E27B74381F0C /* EDFThreadPoolExecutor.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = EDFThreadPoolExecutor.cpp; path = folly/executors/EDFThreadPoolExecutor.cpp; sourceTree = ""; }; 6D52261B21B4B2B17750F2AA5645AEA7 /* SSLErrors.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SSLErrors.h; path = folly/io/async/ssl/SSLErrors.h; sourceTree = ""; }; - 6D604183C8F87932EA13E5EAC860AFB3 /* RNBootSplash.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNBootSplash.debug.xcconfig; sourceTree = ""; }; 6D64AD85EBBE2207BCFC09A8B336B7FE /* FIRCLSSignal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSSignal.h; path = Crashlytics/Crashlytics/Handlers/FIRCLSSignal.h; sourceTree = ""; }; - 6D84F38E5C54AFE11D41E2D745A1B65B /* React-cxxreact.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = "React-cxxreact.podspec"; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - 6DA747F672C6DA97EE0D9CDDE2852993 /* EXAppleAuthentication-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "EXAppleAuthentication-prefix.pch"; sourceTree = ""; }; - 6DAA02CCAE5D3B649062362D9AF8BA5C /* RCTSliderManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSliderManager.m; sourceTree = ""; }; + 6D7FF2802D7D5B8BDC6FB150E8888529 /* RCTTiming.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTTiming.h; path = React/CoreModules/RCTTiming.h; sourceTree = ""; }; + 6DA978F4185B2D4435F565FBB6613130 /* KeyCommands.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = KeyCommands.release.xcconfig; sourceTree = ""; }; 6DAB733604A3A1625FCA47DDFD1AF471 /* enc.c */ = {isa = PBXFileReference; includeInIndex = 1; name = enc.c; path = src/dsp/enc.c; sourceTree = ""; }; + 6DAD2EA5D41100A994261256A631FAD6 /* RCTTurboModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTurboModule.h; sourceTree = ""; }; 6DBB46C4A608B5F4778C605300D7D817 /* NetOps.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = NetOps.cpp; path = folly/net/NetOps.cpp; sourceTree = ""; }; 6DCF7925DA44E6B3EC578DC49BBC4C3E /* SKHiddenWindow.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SKHiddenWindow.m; path = iOS/Plugins/FlipperKitLayoutPlugin/FlipperKitLayoutPlugin/utils/SKHiddenWindow.m; sourceTree = ""; }; - 6DE70F1E9ADAEFC680CB0DF56A0BA796 /* BSG_KSSystemInfo.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BSG_KSSystemInfo.m; sourceTree = ""; }; - 6DFDF2EB4D321BF1974B4996B4D1A3F6 /* React-RCTBlob-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-RCTBlob-prefix.pch"; sourceTree = ""; }; - 6E14E0CEE1DE2135B46737D70E50767A /* ReactCommon.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = ReactCommon.debug.xcconfig; sourceTree = ""; }; 6E2449633F1E0C2F5C501E47997BFF00 /* mux.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = mux.h; path = src/webp/mux.h; sourceTree = ""; }; - 6E300BF7F49E97B07CECDE4B42623983 /* BugsnagReactNative.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = BugsnagReactNative.m; path = cocoa/BugsnagReactNative.m; sourceTree = ""; }; - 6E4008EF45A0D71DCFBA6F91F3D00EA8 /* UMBridgeModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMBridgeModule.h; path = UMReactNativeAdapter/UMBridgeModule.h; sourceTree = ""; }; 6E4C2D4833B6422C913419373FFC9CF1 /* SKBufferingPlugin+CPPInitialization.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "SKBufferingPlugin+CPPInitialization.h"; path = "iOS/Plugins/FlipperKitNetworkPlugin/FlipperKitNetworkPlugin/SKBufferingPlugin+CPPInitialization.h"; sourceTree = ""; }; - 6E5370F5F3BEB32B6D1EEB4DF030ADA7 /* ReactMarker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = ReactMarker.h; sourceTree = ""; }; 6E594EEC19882003326320AA9B66CA32 /* TOActivityCroppedImageProvider.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = TOActivityCroppedImageProvider.m; path = "Objective-C/TOCropViewController/Models/TOActivityCroppedImageProvider.m"; sourceTree = ""; }; - 6E7A86BB103B0B52942B03CC6939F793 /* ARTSurfaceViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = ARTSurfaceViewManager.h; sourceTree = ""; }; - 6E7E9B42637518949CA77C619960587A /* ObservingInputAccessoryView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ObservingInputAccessoryView.h; path = lib/ObservingInputAccessoryView.h; sourceTree = ""; }; 6E8B8D3EE9FEF770EA3E9B53FCA5A4B4 /* Bits.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Bits.h; path = folly/experimental/Bits.h; sourceTree = ""; }; 6E9904691569AF1FB8D6897AE9E4FCDA /* SetupResumeAcceptor.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = SetupResumeAcceptor.cpp; path = rsocket/internal/SetupResumeAcceptor.cpp; sourceTree = ""; }; 6EB73B975BC128BF092B73F3434D9BD8 /* MallocImpl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MallocImpl.h; path = folly/memory/detail/MallocImpl.h; sourceTree = ""; }; 6EBBDCC72A0C6FA1D97D7635369DF9B4 /* asn1.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = asn1.h; path = ios/include/openssl/asn1.h; sourceTree = ""; }; - 6EDAE9344FA470CF6BC3954CE47ACBC7 /* RCTMultipartStreamReader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTMultipartStreamReader.h; sourceTree = ""; }; - 6EEDEBFB4855D5CF5E9F79FA46B476EE /* RCTPerformanceLogger.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTPerformanceLogger.m; sourceTree = ""; }; - 6F06679A9EB4706666C01F5581716CBE /* REACondNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REACondNode.h; sourceTree = ""; }; - 6F26F7CE4E362B14A8330F9980FFC004 /* JSBundleType.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = JSBundleType.cpp; sourceTree = ""; }; + 6EC31A7E21065C343EAC68D90EFC2994 /* RCTBaseTextInputShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTBaseTextInputShadowView.m; sourceTree = ""; }; + 6EEA2F86DA18D55EA72D0EACEF342EB9 /* RNNotificationUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNNotificationUtils.h; path = RNNotifications/RNNotificationUtils.h; sourceTree = ""; }; + 6F055F01DACF890C5CA5F8E9547EA2E1 /* Yoga-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Yoga-umbrella.h"; sourceTree = ""; }; + 6F1D530415E1E8F48052CB6AFE3BB087 /* BSG_KSCrash.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BSG_KSCrash.m; sourceTree = ""; }; + 6F23D82CBEDB822F248CFC7407393DE6 /* NativeToJsBridge.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = NativeToJsBridge.cpp; sourceTree = ""; }; + 6F2E6313BF81DAAF1374B78917E08A51 /* RCTConvert.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTConvert.h; sourceTree = ""; }; + 6F306B182449003F2647683533AD503F /* UMSensorsInterface.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = UMSensorsInterface.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; 6F351E2BA4429656767AF3FA39D69E68 /* GDTCORLifecycle.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCORLifecycle.h; path = GoogleDataTransport/GDTCORLibrary/Public/GDTCORLifecycle.h; sourceTree = ""; }; - 6F3AE78B7F30EA69566D40D856216DAC /* React-RCTAnimation.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-RCTAnimation.debug.xcconfig"; sourceTree = ""; }; 6F43241BC00005D58AABA0BD122B8BAB /* F14Table.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = F14Table.h; path = folly/container/detail/F14Table.h; sourceTree = ""; }; - 6F4B077C4A9C3CCC7C859441E903DF65 /* RNTapHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNTapHandler.h; sourceTree = ""; }; - 6F543DE25C3017A11DB04C39A47F861F /* BugsnagErrorReportApiClient.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagErrorReportApiClient.m; sourceTree = ""; }; - 6F660D3CB14E6BFC2F077B4EA89EC1CC /* ja.lproj */ = {isa = PBXFileReference; includeInIndex = 1; name = ja.lproj; path = ios/QBImagePicker/QBImagePicker/ja.lproj; sourceTree = ""; }; - 6F8F3C5F708B33E6BDA7954BD0723779 /* RNCWebView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCWebView.m; path = apple/RNCWebView.m; sourceTree = ""; }; - 6FA0E8FB2B6FDAB51FDBCCA8290F854D /* BSG_KSLogger.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BSG_KSLogger.m; sourceTree = ""; }; + 6F45ACD960E14487FC86FC9D5B154DCA /* RCTNativeAnimatedModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTNativeAnimatedModule.h; path = Libraries/NativeAnimation/RCTNativeAnimatedModule.h; sourceTree = ""; }; + 6F8A5C3E8294C04389D92A3125B0AF81 /* UMReactNativeAdapter-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "UMReactNativeAdapter-dummy.m"; sourceTree = ""; }; 6FB1EF6C30200767A22935984B6A8E04 /* ProxyLockable-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "ProxyLockable-inl.h"; path = "folly/synchronization/detail/ProxyLockable-inl.h"; sourceTree = ""; }; + 6FB28DE401C741754F74971739F5197A /* RNCMaskedView.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNCMaskedView.release.xcconfig; sourceTree = ""; }; + 6FD61D3C077B5C5BB76D0C9080AA7B43 /* NSError+BSG_SimpleConstructor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "NSError+BSG_SimpleConstructor.h"; sourceTree = ""; }; 6FE4E579107908C71B9FF111623B4B70 /* StringKeyedUnorderedMap.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = StringKeyedUnorderedMap.h; path = folly/experimental/StringKeyedUnorderedMap.h; sourceTree = ""; }; 6FF4907F0B1E21B74D2FBCBA5A4FBDB7 /* UIImage+Transform.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIImage+Transform.h"; path = "SDWebImage/Core/UIImage+Transform.h"; sourceTree = ""; }; 6FFB7B2992BB53405E6B771A5BA1E97D /* libDoubleConversion.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libDoubleConversion.a; path = libDoubleConversion.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 7009BC2CAD24F37D604CF5CD634E1976 /* BSG_KSSystemCapabilities.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSSystemCapabilities.h; sourceTree = ""; }; - 701C0920ECD665C80F9C28F52B56417D /* react-native-cameraroll.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "react-native-cameraroll.debug.xcconfig"; sourceTree = ""; }; 7029FAD1B4E7B93A288461D93ECA3EA6 /* FIRCLSRecordApplication.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCLSRecordApplication.m; path = Crashlytics/Crashlytics/Models/Record/FIRCLSRecordApplication.m; sourceTree = ""; }; 703311EF445FFC66F07CFCAD563D418A /* ThreadedExecutor.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = ThreadedExecutor.cpp; path = folly/executors/ThreadedExecutor.cpp; sourceTree = ""; }; 704D92845A4F1BF56275B4F99E32467C /* DoubleConversion.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = DoubleConversion.debug.xcconfig; sourceTree = ""; }; 7056144BCE38F9B4F595EB0A03FB4227 /* UIButton+WebCache.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIButton+WebCache.h"; path = "SDWebImage/Core/UIButton+WebCache.h"; sourceTree = ""; }; + 705D3EB39F3E7E497BCD9B30D554C70A /* RCTNetworking.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTNetworking.mm; sourceTree = ""; }; 707A486419CB0C06F413C938309E1ACD /* RSocketStats.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = RSocketStats.cpp; path = rsocket/RSocketStats.cpp; sourceTree = ""; }; 70842C9DE36B9595408A0070537B0B4D /* SDImageLoadersManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageLoadersManager.h; path = SDWebImage/Core/SDImageLoadersManager.h; sourceTree = ""; }; + 708D9BFECF2DF742CB6DD8AA8FD6AE45 /* EXAppleAuthenticationRequest.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXAppleAuthenticationRequest.m; path = EXAppleAuthentication/EXAppleAuthenticationRequest.m; sourceTree = ""; }; 709326B45A597DA29C6B1F39E4CE506F /* bufferevent_ssl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = bufferevent_ssl.h; path = src/event2/bufferevent_ssl.h; sourceTree = ""; }; 7095C3CCC82012A0435F91A76575C28A /* AsyncTransportCertificate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AsyncTransportCertificate.h; path = folly/io/async/AsyncTransportCertificate.h; sourceTree = ""; }; 7098517F01DF39E78F5625884B61FFD1 /* AtomicNotification.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = AtomicNotification.cpp; path = folly/synchronization/AtomicNotification.cpp; sourceTree = ""; }; - 709A9F43290D17C7D62D477D719B2C35 /* RootView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RootView.h; path = ios/RootView.h; sourceTree = ""; }; - 70CAC4756B89280A6C66B4687E6DE4A7 /* YGNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YGNode.h; path = yoga/YGNode.h; sourceTree = ""; }; - 70D1C7A75E50A03600FE3AAC8F13C821 /* EXFileSystem.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXFileSystem.h; path = EXFileSystem/EXFileSystem.h; sourceTree = ""; }; - 70E2C1A18C3D913B86BC0E04AA67A946 /* JSBigString.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = JSBigString.cpp; sourceTree = ""; }; - 70E5021AED47342D9252531B597044AF /* JSIExecutor.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = JSIExecutor.cpp; path = jsireact/JSIExecutor.cpp; sourceTree = ""; }; + 709B74F86C9DD5A0882AFFF117A95AD2 /* RCTRedBox.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTRedBox.mm; sourceTree = ""; }; + 70BE5B577F98B3F54C1A2AA7574CAC6E /* ARTText.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ARTText.h; path = ios/ARTText.h; sourceTree = ""; }; + 70BF9DD00B20947CD78D195CD6F912E6 /* UMModuleRegistryHolderReactModule.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = UMModuleRegistryHolderReactModule.m; sourceTree = ""; }; + 70C08CCDA58ED0EB8400ECA093ED6D20 /* ResourceBundle-QBImagePicker-RNImageCropPicker-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "ResourceBundle-QBImagePicker-RNImageCropPicker-Info.plist"; sourceTree = ""; }; + 70C48C8FBB2A2310BFF10C86BB062CBF /* React-RCTText.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-RCTText.debug.xcconfig"; sourceTree = ""; }; + 70DDF1627FFE016066CDBAB5020EE26B /* UMUtilities.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = UMUtilities.m; path = UMCore/UMUtilities.m; sourceTree = ""; }; + 70EC929738BE759A09F7E0A5BE0CDC79 /* BSG_KSMachHeaders.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BSG_KSMachHeaders.m; sourceTree = ""; }; + 70ED4C090E9C8B63638B22398994C693 /* UMReactNativeEventEmitter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = UMReactNativeEventEmitter.m; sourceTree = ""; }; + 70FF0440DED16FFDDDD95C37AEE3CAEA /* QBSlomoIconView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = QBSlomoIconView.h; path = ios/QBImagePicker/QBImagePicker/QBSlomoIconView.h; sourceTree = ""; }; + 7104EC731C7D088A2EE14B26874793FB /* UMViewManagerAdapterClassesRegistry.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = UMViewManagerAdapterClassesRegistry.m; sourceTree = ""; }; 7105826A2FC29395592A32C5E98A439C /* TimerFD.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TimerFD.h; path = folly/experimental/TimerFD.h; sourceTree = ""; }; - 71143F46E3DB9DC80E053DACD169B748 /* BSG_KSCrashReport.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashReport.h; sourceTree = ""; }; - 711DB2C8D8A7E87450B0382B3FB4E062 /* RCTInputAccessoryViewContent.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTInputAccessoryViewContent.m; sourceTree = ""; }; + 7114321D983DA3CB9B23FB8EDDB3FA91 /* RCTTextAttributes.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTTextAttributes.m; sourceTree = ""; }; 7122BF2BD7C5191C0D0DF2FB528A1061 /* SpookyHashV2.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SpookyHashV2.h; path = folly/hash/SpookyHashV2.h; sourceTree = ""; }; - 7128817469619B56E1F4D7C19B4A2A2A /* UIView+React.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "UIView+React.m"; sourceTree = ""; }; - 713A15F48B0F0FEC3E2F7407BDC4BFA6 /* RCTConvert+FFFastImage.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "RCTConvert+FFFastImage.h"; path = "ios/FastImage/RCTConvert+FFFastImage.h"; sourceTree = ""; }; - 7194C726911A0FCC37B98C166905E0E1 /* RCTReloadCommand.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTReloadCommand.h; sourceTree = ""; }; + 716967645CD169997990F9755498231A /* RCTSurface.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTSurface.mm; sourceTree = ""; }; + 71769EBDB16C53B0BBB8EAB513CE9551 /* RCTCxxModule.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTCxxModule.mm; sourceTree = ""; }; 719D7A4DC21E41C48CF70C840392E6A3 /* ocsp.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ocsp.h; path = ios/include/openssl/ocsp.h; sourceTree = ""; }; 71DD819B8A76B525536896B3EA7CDE0E /* FIRCLSThreadState.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSThreadState.h; path = Crashlytics/Crashlytics/Helpers/FIRCLSThreadState.h; sourceTree = ""; }; + 71E53A8D5E3D3A0C0C1244F684485EA8 /* react-native-safe-area-context-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "react-native-safe-area-context-dummy.m"; sourceTree = ""; }; 71E91A604A5AAA882EB34BA12611AC64 /* pkcs7.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = pkcs7.h; path = ios/include/openssl/pkcs7.h; sourceTree = ""; }; - 71EE0824B08F01894BCE4A04CBCCE009 /* RCTShadowView+Internal.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RCTShadowView+Internal.m"; sourceTree = ""; }; + 71F30927FE87C64AC3B5478EA9F684C1 /* react-native-background-timer.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "react-native-background-timer.debug.xcconfig"; sourceTree = ""; }; 722696C1A7A2E6B2AD5F9DA93ED3FE16 /* FIRCoreDiagnosticsConnector.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCoreDiagnosticsConnector.m; path = FirebaseCore/Sources/FIRCoreDiagnosticsConnector.m; sourceTree = ""; }; 722EBAC60CB81A25403068B5AA96488F /* cached-powers.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "cached-powers.h"; path = "double-conversion/cached-powers.h"; sourceTree = ""; }; - 7230370AE5916F587D59EEDF896C55C2 /* UMExportedModule.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = UMExportedModule.m; path = UMCore/UMExportedModule.m; sourceTree = ""; }; - 72456855E661BED404A920429EBFBBD3 /* LNInterpolation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = LNInterpolation.h; sourceTree = ""; }; 724B5819306C482A103C3F90A346AB40 /* Math.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Math.h; path = folly/Math.h; sourceTree = ""; }; 724FAB388B350D55C035622BD40F0C3D /* FIRInstallationsLogger.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstallationsLogger.h; path = FirebaseInstallations/Source/Library/FIRInstallationsLogger.h; sourceTree = ""; }; 72502FDDED0B761879C841806F4A27AF /* SafeAssert.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = SafeAssert.cpp; path = folly/lang/SafeAssert.cpp; sourceTree = ""; }; - 725424381354EA0E9600C553ADF39FFB /* RCTSurface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSurface.h; sourceTree = ""; }; 72558F571738704549E1838E845D2770 /* libEXLocalAuthentication.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libEXLocalAuthentication.a; path = libEXLocalAuthentication.a; sourceTree = BUILT_PRODUCTS_DIR; }; + 7276BB5A3FF9049045EFFA27F32B74A9 /* BSG_KSCrashReportFilter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashReportFilter.h; sourceTree = ""; }; + 728EDB6FE35A00B0D25778F0660F44D3 /* React-Core.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-Core.debug.xcconfig"; sourceTree = ""; }; + 729125632DBFA13BFE7708A0A929F1C8 /* RCTAutoInsetsProtocol.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTAutoInsetsProtocol.h; sourceTree = ""; }; 7297C9E3B233B6C109D53F693029CB9C /* dwarf.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = dwarf.h; path = Crashlytics/third_party/libunwind/dwarf.h; sourceTree = ""; }; 72A1752D64E7BF2FF0CBAD15EBA1EFE8 /* GoogleAppMeasurement.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = GoogleAppMeasurement.framework; path = Frameworks/GoogleAppMeasurement.framework; sourceTree = ""; }; 72A3EAE447C5BE0968B71AABBD1557F6 /* Framer.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = Framer.cpp; path = rsocket/framing/Framer.cpp; sourceTree = ""; }; + 72A876A2858E5A450906DA4D566FA040 /* FFFastImageSource.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FFFastImageSource.h; path = ios/FastImage/FFFastImageSource.h; sourceTree = ""; }; 72B556795D8C4553211AD8B77C5E48B1 /* NSImage+Compatibility.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSImage+Compatibility.h"; path = "SDWebImage/Core/NSImage+Compatibility.h"; sourceTree = ""; }; - 72BFA2071FE17E7BC423430D83A5EC9D /* RCTWrapperViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTWrapperViewController.m; sourceTree = ""; }; + 72BA835BC3611EC340868DB2DC96C7BD /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; 72CE922B3754DEF832DD70ABE9EF23FC /* FlowableTimeoutOperator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FlowableTimeoutOperator.h; path = yarpl/flowable/FlowableTimeoutOperator.h; sourceTree = ""; }; + 72D66E801D034FB15E25A0B811EB00A3 /* RCTManagedPointer.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTManagedPointer.mm; sourceTree = ""; }; 72DE4BF3FB9CE0858E90F96FEF8A53AE /* libRNDateTimePicker.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libRNDateTimePicker.a; path = libRNDateTimePicker.a; sourceTree = BUILT_PRODUCTS_DIR; }; 72E399C07FD8EB2CE3BA62CA285B75A1 /* txt_db.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = txt_db.h; path = ios/include/openssl/txt_db.h; sourceTree = ""; }; 72E494917AC5EC2582197F07061A28B0 /* libEXPermissions.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libEXPermissions.a; path = libEXPermissions.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 7324299E30833A6A20255CF8DA2A73B6 /* RNNotifications.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNNotifications.m; path = RNNotifications/RNNotifications.m; sourceTree = ""; }; - 7327566E630ABBF4AA3439CE94E441D7 /* react-native-orientation-locker.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "react-native-orientation-locker.release.xcconfig"; sourceTree = ""; }; - 735E3877C74D9AE6009AD2174D70F4C8 /* BugsnagSessionFileStore.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagSessionFileStore.h; sourceTree = ""; }; - 735E9CFB0C211D545A1366F22F8E0B51 /* ObservingInputAccessoryView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = ObservingInputAccessoryView.m; path = lib/ObservingInputAccessoryView.m; sourceTree = ""; }; - 737458C07B96B88B234E2C441DB04B85 /* Zocial.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = Zocial.ttf; path = Fonts/Zocial.ttf; sourceTree = ""; }; + 72ECF21D2993D114EB1E5CDF3328E2AE /* RCTBaseTextInputView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTBaseTextInputView.m; sourceTree = ""; }; + 733A59591112E23583DE4D777578C912 /* EXPermissions.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = EXPermissions.release.xcconfig; sourceTree = ""; }; + 734D20FDB284D37C9DFD03C2E27A111F /* RCTJSStackFrame.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTJSStackFrame.h; sourceTree = ""; }; + 7355B7E3D3DF2F556D0D164F096FBAE7 /* ARTGroup.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = ARTGroup.m; path = ios/ARTGroup.m; sourceTree = ""; }; + 735FF3BA937B89B448F48F56810653A3 /* LongLivedObject.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = LongLivedObject.h; path = turbomodule/core/LongLivedObject.h; sourceTree = ""; }; + 73607BED56C71E8FAA6D55748604FE13 /* REAModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = REAModule.h; path = ios/REAModule.h; sourceTree = ""; }; + 736A16E93CE6664EA8CF0EA289AE8A8E /* RCTPicker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTPicker.h; sourceTree = ""; }; 7376B739BEFEFDDE1BE109B7653CC88D /* Init.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Init.h; path = folly/init/Init.h; sourceTree = ""; }; + 738841D1B0F383E802F2042816867763 /* RNFBMeta.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNFBMeta.h; path = ios/RNFBApp/RNFBMeta.h; sourceTree = ""; }; 738A67103B504ECD54BC2B905A42B479 /* Retrying.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Retrying.h; path = folly/futures/Retrying.h; sourceTree = ""; }; - 738ADC60F35108A0F881BADE8D0770CF /* RCTUIImageViewAnimated.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTUIImageViewAnimated.h; path = Libraries/Image/RCTUIImageViewAnimated.h; sourceTree = ""; }; 738B85F81340FD1619ABC152FCE14868 /* huffman_encode_utils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = huffman_encode_utils.h; path = src/utils/huffman_encode_utils.h; sourceTree = ""; }; + 738D5556685EFE790866EDEF90749B4A /* RCTResizeMode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTResizeMode.h; path = Libraries/Image/RCTResizeMode.h; sourceTree = ""; }; 73931F72550A6A3BFE331FDFD5420031 /* libwebp-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "libwebp-prefix.pch"; sourceTree = ""; }; 7395B37403EE0C69672FF57413CF7877 /* FBLPromisePrivate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBLPromisePrivate.h; path = Sources/FBLPromises/include/FBLPromisePrivate.h; sourceTree = ""; }; - 739825A0FDF0425CD3B7964A439AA9EE /* ReactCommon.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = ReactCommon.release.xcconfig; sourceTree = ""; }; 73A77F48EC09117C89737776DB4899A4 /* FIRLibrary.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRLibrary.h; path = FirebaseCore/Sources/Private/FIRLibrary.h; sourceTree = ""; }; - 73AAE5A40DA4CC489A5CADE17D4DBFF0 /* React-RCTAnimation.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = "React-RCTAnimation.podspec"; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 73B306321B65D553249B367A46C9B719 /* RCTInputAccessoryViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTInputAccessoryViewManager.h; sourceTree = ""; }; + 73C8B46301BDF892A23754F31A7A501C /* react-native-slider.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "react-native-slider.debug.xcconfig"; sourceTree = ""; }; 73D9980559B77CA957A03153403CA841 /* FIRCLSUnwind_x86.c */ = {isa = PBXFileReference; includeInIndex = 1; name = FIRCLSUnwind_x86.c; path = Crashlytics/Crashlytics/Unwind/FIRCLSUnwind_x86.c; sourceTree = ""; }; - 73E9AEB2E778BD948922EDDACC00E7F5 /* UMTaskInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMTaskInterface.h; path = UMTaskManagerInterface/UMTaskInterface.h; sourceTree = ""; }; - 740061539EE834B167CDF66AECC11957 /* RCTWebSocketModule.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTWebSocketModule.mm; sourceTree = ""; }; + 73D9E2FF2A4AFB0FD309CDC830D9A284 /* EXKeepAwake-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "EXKeepAwake-prefix.pch"; sourceTree = ""; }; + 73E1773B8FFBB2A2151CC4E550176CC0 /* BSGOutOfMemoryWatchdog.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSGOutOfMemoryWatchdog.h; sourceTree = ""; }; + 73ED37EBE8B334335CF295231668E256 /* React-callinvoker.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = "React-callinvoker.podspec"; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 73FC6A6E09D55921C1D7016E577E10A2 /* FFFastImageSource.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FFFastImageSource.m; path = ios/FastImage/FFFastImageSource.m; sourceTree = ""; }; 742912E2BCFF65A9888B6A3128937A57 /* FIRStackFrame_Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRStackFrame_Private.h; path = Crashlytics/Crashlytics/Private/FIRStackFrame_Private.h; sourceTree = ""; }; 7435B31117D04AEBC9ABBD45D17E8A0D /* IndexedMemPool.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = IndexedMemPool.h; path = folly/IndexedMemPool.h; sourceTree = ""; }; + 743F35FB5F73B465B9071D27084762F4 /* REAModule.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = REAModule.m; path = ios/REAModule.m; sourceTree = ""; }; + 743FB0BE232CB1494BF0E5BA46B04615 /* EXAudioRecordingPermissionRequester.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXAudioRecordingPermissionRequester.h; path = EXAV/EXAudioRecordingPermissionRequester.h; sourceTree = ""; }; 74428EC61E0188E17715BC61F69D9FCC /* FIRCLSFABNetworkClient.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCLSFABNetworkClient.m; path = Crashlytics/Shared/FIRCLSNetworking/FIRCLSFABNetworkClient.m; sourceTree = ""; }; 7455879FAED5208B13E584DB0167E954 /* fast-dtoa.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "fast-dtoa.h"; path = "double-conversion/fast-dtoa.h"; sourceTree = ""; }; 7461E1C5F7F18D5FF46A3B67FCAB4D49 /* Observable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Observable.h; path = yarpl/observable/Observable.h; sourceTree = ""; }; - 74733A64EDFAE61A082AD26F50D916D6 /* ARTRadialGradient.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = ARTRadialGradient.h; sourceTree = ""; }; - 747D5B95D8B372DC772DED829ABFE3C7 /* RCTActivityIndicatorView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTActivityIndicatorView.m; sourceTree = ""; }; 74806217A3F03610417EB6686FE65993 /* FIRCLSRecordBase.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSRecordBase.h; path = Crashlytics/Crashlytics/Models/Record/FIRCLSRecordBase.h; sourceTree = ""; }; 74839CFEA87170B641B5B759C7C8EBEC /* MMKV.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MMKV.h; path = iOS/MMKV/MMKV/MMKV.h; sourceTree = ""; }; 7488AFAE0377A21CFBCD91CFB1D7D4CF /* ThreadLocalDetail.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ThreadLocalDetail.h; path = folly/detail/ThreadLocalDetail.h; sourceTree = ""; }; + 7489B16EF5CAA94B955C1B567E9D6648 /* RNPushKitEventListener.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNPushKitEventListener.h; path = RNNotifications/RNPushKitEventListener.h; sourceTree = ""; }; 748EA3EB396179ED935CE176587C6920 /* SDImageCoderHelper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageCoderHelper.h; path = SDWebImage/Core/SDImageCoderHelper.h; sourceTree = ""; }; 74B2D0E582086F68A8B110AE777A2DE5 /* RSocketParameters.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RSocketParameters.h; path = rsocket/RSocketParameters.h; sourceTree = ""; }; 74C8BC1CD4600E60C84F3B0D429967C4 /* FBLPromise+Retry.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FBLPromise+Retry.h"; path = "Sources/FBLPromises/include/FBLPromise+Retry.h"; sourceTree = ""; }; 74D6661EE15B5D7EC79BFF58A8696898 /* md5.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = md5.h; path = ios/include/openssl/md5.h; sourceTree = ""; }; + 74D9807470785F5581102ABE6F3805E8 /* RCTImageURLLoader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageURLLoader.h; path = Libraries/Image/RCTImageURLLoader.h; sourceTree = ""; }; + 74D9944C8A9A6EEF879C1802CFA5667A /* CxxNativeModule.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = CxxNativeModule.cpp; sourceTree = ""; }; 7503E80611685718A42E1BD074E3DDA6 /* Subscription.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = Subscription.cpp; path = yarpl/observable/Subscription.cpp; sourceTree = ""; }; 7513E1C06F889605D74D2B5B2BCE287B /* rpc.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = rpc.h; path = src/event2/rpc.h; sourceTree = ""; }; - 752AB10D89766EBB610A77079A757DB7 /* RCTBlobManager.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTBlobManager.mm; sourceTree = ""; }; 7538D18193E47EF2911EA32F73FC5723 /* ScheduledFrameProcessor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ScheduledFrameProcessor.h; path = rsocket/framing/ScheduledFrameProcessor.h; sourceTree = ""; }; - 7544204EF346CE3CF0A17C6FB8FF9103 /* REAClockNodes.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REAClockNodes.m; sourceTree = ""; }; 754E0BE205AB1A8A7039CFC8FA3BD918 /* GDTCORTransport.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GDTCORTransport.m; path = GoogleDataTransport/GDTCORLibrary/GDTCORTransport.m; sourceTree = ""; }; 755548BAF1B680D52CF25B4984E8CEA3 /* FIRLibrary.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRLibrary.h; path = FirebaseCore/Sources/Private/FIRLibrary.h; sourceTree = ""; }; 756C2DFD99B862171487A49F35009A23 /* FirebaseAnalytics.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = FirebaseAnalytics.framework; path = Frameworks/FirebaseAnalytics.framework; sourceTree = ""; }; + 757356D3CA675CE5630F7D57BCA0F804 /* RCTBridgeDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBridgeDelegate.h; sourceTree = ""; }; 7585DFE66F2A77135D0C671011CC324E /* RangeSse42.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RangeSse42.h; path = folly/detail/RangeSse42.h; sourceTree = ""; }; + 758C1C29BFB156503ABE5849433742E6 /* React-jsiexecutor-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-jsiexecutor-prefix.pch"; sourceTree = ""; }; 759D903A284BEC849C04FDF842E0FF44 /* rc4.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = rc4.h; path = ios/include/openssl/rc4.h; sourceTree = ""; }; + 75A2AF411E6408CF1789796E8A9940A0 /* RCTTypeSafety.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RCTTypeSafety.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; 75AA86DAFDDCD07DB9BDB4C748006A0A /* SKSearchResultNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SKSearchResultNode.m; path = iOS/Plugins/FlipperKitLayoutPlugin/FlipperKitLayoutPlugin/SKSearchResultNode.m; sourceTree = ""; }; - 75BA41CB0845024FD2D6158FD1366BAD /* BSG_KSCrashReportFields.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashReportFields.h; sourceTree = ""; }; 75CD3856553F85B73142E64B3A6A3AED /* IntrusiveList.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = IntrusiveList.h; path = folly/IntrusiveList.h; sourceTree = ""; }; + 75E82672293864B628DB1952DF00F69E /* RNCWebView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCWebView.h; path = apple/RNCWebView.h; sourceTree = ""; }; + 75EFC6E58AA6396FF7CC6FCB93F2598D /* UMBarCodeScannerInterface.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMBarCodeScannerInterface.debug.xcconfig; sourceTree = ""; }; 75F00DB42604AB2AE3D489DB738A4D7C /* SKTapListenerImpl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SKTapListenerImpl.h; path = iOS/Plugins/FlipperKitLayoutPlugin/FlipperKitLayoutPlugin/SKTapListenerImpl.h; sourceTree = ""; }; - 7600DAD6D334F62C90BE945F8BC5D102 /* RCTStatusBarManager.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTStatusBarManager.mm; sourceTree = ""; }; + 75F5287CB1010B04DDDAD619A3B717E0 /* RNFlingHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNFlingHandler.m; sourceTree = ""; }; + 75F53B625267A4726F4510DBF32A4E81 /* RCTTextTransform.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTTextTransform.h; path = Libraries/Text/RCTTextTransform.h; sourceTree = ""; }; + 7602CBC2F5FA398204C4DD3DF1F67C6B /* RCTAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTAnimatedNode.h; sourceTree = ""; }; + 7605EFD232AB6DC32125314898A58006 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; 7617FE73C482AD138A32E3A376494590 /* FIRCLSUserDefaults_private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSUserDefaults_private.h; path = Crashlytics/Crashlytics/FIRCLSUserDefaults/FIRCLSUserDefaults_private.h; sourceTree = ""; }; - 7628A6AD298E923A7804528851AF346C /* BSG_KSCrashSentry_User.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSCrashSentry_User.c; sourceTree = ""; }; 762F91AA4CC210073E47021B742A3D5A /* Align.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Align.h; path = folly/lang/Align.h; sourceTree = ""; }; - 76426A494B8D38A077E05F787E76ECE1 /* RCTAssert.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTAssert.h; sourceTree = ""; }; + 763B66916CA792042712037004F90D3A /* UMViewManagerAdapter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = UMViewManagerAdapter.m; sourceTree = ""; }; + 764AEB0526717771F8BD7A6C9357B7DF /* RCTActivityIndicatorView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTActivityIndicatorView.h; sourceTree = ""; }; 76518D0F346A22AB0F95C26087ADE5C8 /* picture_csp_enc.c */ = {isa = PBXFileReference; includeInIndex = 1; name = picture_csp_enc.c; path = src/enc/picture_csp_enc.c; sourceTree = ""; }; - 7652CEAA30BFE987D01F1A0D42B4EB0F /* BSG_KSCrashC.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashC.h; sourceTree = ""; }; 7656942892C161E23A868FBD6692B259 /* SDDisplayLink.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDDisplayLink.h; path = SDWebImage/Private/SDDisplayLink.h; sourceTree = ""; }; 76605841FD1A47250E4EFE1499D3F6B7 /* cost_mips32.c */ = {isa = PBXFileReference; includeInIndex = 1; name = cost_mips32.c; path = src/dsp/cost_mips32.c; sourceTree = ""; }; 7673F97A0B8CB74FE0DEE39B6AEED401 /* UIImage+CropRotate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIImage+CropRotate.h"; path = "Objective-C/TOCropViewController/Categories/UIImage+CropRotate.h"; sourceTree = ""; }; 7677DB755FB7597872802668909BC0AA /* Futex-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "Futex-inl.h"; path = "folly/detail/Futex-inl.h"; sourceTree = ""; }; - 76848F6A8FBEF5989A2C3D9184C28D67 /* RCTImageEditingManager.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTImageEditingManager.mm; sourceTree = ""; }; - 76877B6396E317E82104E62325077F2F /* RNCMaskedView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCMaskedView.m; path = ios/RNCMaskedView.m; sourceTree = ""; }; 768E2C7B161AE5447DF5BE0DF31527DD /* dsp.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = dsp.h; path = src/dsp/dsp.h; sourceTree = ""; }; - 76985D955D3B6775EC88E7EEFA9CA722 /* RCTMultilineTextInputView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTMultilineTextInputView.m; sourceTree = ""; }; 769FAB53B4979A07BD4073FD8A4F1FDA /* FIRInteropEventNames.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInteropEventNames.h; path = Interop/Analytics/Public/FIRInteropEventNames.h; sourceTree = ""; }; - 76A061142827CF13C4D7ECF381D71B03 /* RCTModuloAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTModuloAnimatedNode.m; sourceTree = ""; }; - 76A2AE1205D4BB60A9F35C15D32740E4 /* EXSessionTaskDispatcher.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = EXSessionTaskDispatcher.h; sourceTree = ""; }; + 76A42307B642F3B36017AC96973995F4 /* RCTViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTViewManager.m; sourceTree = ""; }; 76A6D710792A77CDAA54EC7C75C1668B /* AsyncUDPSocket.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AsyncUDPSocket.h; path = folly/io/async/AsyncUDPSocket.h; sourceTree = ""; }; + 76B50BE6D55C4A5811D51DE8969DB714 /* RCTEventDispatcher.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTEventDispatcher.h; sourceTree = ""; }; 76B682D87AE0E46B2F8526E74CC305E7 /* kssl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = kssl.h; path = ios/include/openssl/kssl.h; sourceTree = ""; }; + 76D1545854377DFAA9F6ADDC4CA30C0C /* RCTHTTPRequestHandler.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTHTTPRequestHandler.mm; sourceTree = ""; }; 76D18DF309C2FE5E34364E98AFD5B5CC /* DistributedMutexSpecializations.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DistributedMutexSpecializations.h; path = folly/synchronization/DistributedMutexSpecializations.h; sourceTree = ""; }; 76DD833ABBB2596BE24D44AE41C63D50 /* MemoryFile_OSX.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = MemoryFile_OSX.cpp; path = Core/MemoryFile_OSX.cpp; sourceTree = ""; }; 76F902F856558ECE30D580EC2028139E /* libMMKV.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = libMMKV.mm; path = iOS/MMKV/MMKV/libMMKV.mm; sourceTree = ""; }; - 770859EE2FA1790EEA676AC5AB5FDA81 /* DeviceUID.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = DeviceUID.m; path = ios/RNDeviceInfo/DeviceUID.m; sourceTree = ""; }; - 7715D0E3CFB75F67FEE64C273A3B1703 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; - 7735EA531CE7D0CE05B9DCC8B9D002AC /* RCTCxxMethod.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTCxxMethod.h; sourceTree = ""; }; + 7705E58971666626858298B319CE3F93 /* UMCameraInterface.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMCameraInterface.debug.xcconfig; sourceTree = ""; }; + 771A2C0248C6DAB6280C40E3A43DFCE4 /* CoreModulesPlugins.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CoreModulesPlugins.h; path = React/CoreModules/CoreModulesPlugins.h; sourceTree = ""; }; 773F6EEAD949E379CA3BD9EE0F29FC22 /* json_patch.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = json_patch.h; path = folly/json_patch.h; sourceTree = ""; }; 774A3866A31D76FF0046D1135E862EED /* FIRCLSMachException.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSMachException.h; path = Crashlytics/Crashlytics/Handlers/FIRCLSMachException.h; sourceTree = ""; }; 774C2B51FB32A49702C6285EB360644B /* FKUserDefaultsSwizzleUtility.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FKUserDefaultsSwizzleUtility.m; path = iOS/Plugins/FlipperKitUserDefaultsPlugin/FKUserDefaultsSwizzleUtility.m; sourceTree = ""; }; 776AD82841419512C42D473B47874F49 /* SKNodeDescriptor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SKNodeDescriptor.h; path = iOS/Plugins/FlipperKitLayoutPlugin/FlipperKitLayoutPlugin/SKNodeDescriptor.h; sourceTree = ""; }; 777D876DE04191F5FD7ACE4451E1CCC8 /* WaitOptions.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = WaitOptions.h; path = folly/synchronization/WaitOptions.h; sourceTree = ""; }; + 7784341297FF0643533725E4F00BE6E8 /* REAAllTransitions.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REAAllTransitions.h; sourceTree = ""; }; 779BE223DE836270C16006E859AF645C /* MallocImpl.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = MallocImpl.cpp; path = folly/memory/detail/MallocImpl.cpp; sourceTree = ""; }; + 77A8857237B0B84FD053761F0E6DDE46 /* RNFBAnalytics.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RNFBAnalytics.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 77B19152B494BA1B36F7AB79B984AB98 /* REANode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REANode.m; sourceTree = ""; }; 77CD8D54EC4D250726C5F464A7488576 /* opensslconf-armv7s.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "opensslconf-armv7s.h"; path = "ios/include/openssl/opensslconf-armv7s.h"; sourceTree = ""; }; + 77D2697B99172AD1D5F8638ED17D1D41 /* RNCMaskedView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCMaskedView.h; path = ios/RNCMaskedView.h; sourceTree = ""; }; 77D599491C6E13B1E7BA39C3E1DA0135 /* ExceptionString.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ExceptionString.h; path = folly/ExceptionString.h; sourceTree = ""; }; 77DF6DD654C7B0A5974A812BDF1651F8 /* OpenSSLHash.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = OpenSSLHash.h; path = folly/ssl/OpenSSLHash.h; sourceTree = ""; }; 77E2F5181F368F5F02DD7F9C5EDE2FCA /* picture_enc.c */ = {isa = PBXFileReference; includeInIndex = 1; name = picture_enc.c; path = src/enc/picture_enc.c; sourceTree = ""; }; 77FE32325544867C63F9BCB585EBCF62 /* CString.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = CString.cpp; path = folly/lang/CString.cpp; sourceTree = ""; }; - 7834B42B5EF58DFF8D1B3F3195EBF519 /* RCTMessageThread.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTMessageThread.h; sourceTree = ""; }; - 784022803F34788B4D388DA5581E6920 /* UMFileSystemInterface.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMFileSystemInterface.release.xcconfig; sourceTree = ""; }; + 7802BDE20DCF11D82491302C806643E7 /* UMModuleRegistryProvider.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = UMModuleRegistryProvider.m; sourceTree = ""; }; + 784B1BD0945E4C0B9FA4CC2342BAB146 /* ARTSurfaceViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = ARTSurfaceViewManager.h; sourceTree = ""; }; 7862C607B7BE0510C2D65193F9B4B4F9 /* libTOCropViewController.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libTOCropViewController.a; path = libTOCropViewController.a; sourceTree = BUILT_PRODUCTS_DIR; }; 7876296B34DE0344C1134A5AA1CBADFB /* nl.lproj */ = {isa = PBXFileReference; includeInIndex = 1; name = nl.lproj; path = "Objective-C/TOCropViewController/Resources/nl.lproj"; sourceTree = ""; }; 7878B44402143B2E25821AC0F73C2728 /* quant_levels_dec_utils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = quant_levels_dec_utils.h; path = src/utils/quant_levels_dec_utils.h; sourceTree = ""; }; + 7885BFE794162E7DB0AD8A7C5C893E0D /* RCTTiming.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTTiming.mm; sourceTree = ""; }; 788DF881192CA8C3E14AF7D40F5179A6 /* upsampling_neon.c */ = {isa = PBXFileReference; includeInIndex = 1; name = upsampling_neon.c; path = src/dsp/upsampling_neon.c; sourceTree = ""; }; + 78A26FF517E42680FD3AFD79FA7609F6 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; 78A3D0014B2EFB2235CCE8067329760B /* PTChannel.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = PTChannel.m; path = peertalk/PTChannel.m; sourceTree = ""; }; - 78BBAF7CBE7A037C966EBD2DAF28E9D4 /* React-CoreModules-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-CoreModules-prefix.pch"; sourceTree = ""; }; - 78C1DB4D9E285A0BBEDD46D343D5908E /* RCTKeyCommands.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTKeyCommands.m; sourceTree = ""; }; + 78A85DB4DE5F21ACB273A7C3CCD7B281 /* RNCMaskedView-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNCMaskedView-dummy.m"; sourceTree = ""; }; 78CD3415891AA0B040C339108DE2C350 /* GULAppDelegateSwizzler_Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULAppDelegateSwizzler_Private.h; path = GoogleUtilities/AppDelegateSwizzler/Internal/GULAppDelegateSwizzler_Private.h; sourceTree = ""; }; 78F214CFDCCE89A85495D226062916CA /* File.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = File.h; path = folly/gen/File.h; sourceTree = ""; }; 79053C64F1C59AFD89510405CF94C623 /* FIRCLSURLSession_PrivateMethods.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSURLSession_PrivateMethods.h; path = Crashlytics/Crashlytics/FIRCLSURLSession/FIRCLSURLSession_PrivateMethods.h; sourceTree = ""; }; - 790F21FF37AFBE5BFB38D22EBDAA25C0 /* REAPropsNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REAPropsNode.m; sourceTree = ""; }; - 792DBE47299BD2B68D5EB6DBD610DB7D /* RCTSurfaceStage.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSurfaceStage.h; sourceTree = ""; }; + 791E9B40DA141889C655B1F8F4E60B64 /* EXSessionTaskDispatcher.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = EXSessionTaskDispatcher.h; sourceTree = ""; }; + 791F6D8DB121E610779FEFFF32231F82 /* REAFunctionNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REAFunctionNode.m; sourceTree = ""; }; + 792CC5B197E150A7EB8F1CB839A0913A /* RCTFrameAnimation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTFrameAnimation.m; sourceTree = ""; }; 7930255AEF65CABF01261C1F1D39B464 /* FIRHeartbeatInfo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRHeartbeatInfo.h; path = FirebaseCore/Sources/Private/FIRHeartbeatInfo.h; sourceTree = ""; }; 7930271857191A912EC82FABDE1113EC /* Flipper-Glog.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Flipper-Glog.release.xcconfig"; sourceTree = ""; }; + 7933755C14BD93C771E2C975702E3C2F /* LICENSE.txt */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE.txt; sourceTree = ""; }; 795B5CE12E9C856E908F500504ABAD1B /* IPAddress.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = IPAddress.cpp; path = folly/detail/IPAddress.cpp; sourceTree = ""; }; 7960E58007D093D75C17B5B39DFBB1BD /* CertificateUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CertificateUtils.h; path = xplat/Flipper/CertificateUtils.h; sourceTree = ""; }; 7965D381856406721521103DA1BDCF90 /* Barrier.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Barrier.h; path = folly/futures/Barrier.h; sourceTree = ""; }; + 7971EEE9F2F21E240A4651153DC5FF8F /* UMNativeModulesProxy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = UMNativeModulesProxy.m; sourceTree = ""; }; 7976DE3D96AC7E782E421031A9128746 /* raw_logging.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = raw_logging.h; path = src/glog/raw_logging.h; sourceTree = ""; }; 797B76318FBB9F8DCF996160D4C79A6C /* signalhandler.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = signalhandler.cc; path = src/signalhandler.cc; sourceTree = ""; }; - 797BE538447BD0E37CDA2854A9B8E5CB /* REAEventNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REAEventNode.h; sourceTree = ""; }; - 79910263DF25CA8B511ED96F6446BCF6 /* BSG_KSCrashSentry_MachException.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSCrashSentry_MachException.c; sourceTree = ""; }; - 79A081D4ED6B40E9F938F1F25B3FEEBF /* EXFileSystemAssetLibraryHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXFileSystemAssetLibraryHandler.m; path = EXFileSystem/EXFileSystemAssetLibraryHandler.m; sourceTree = ""; }; + 79A8AB3833DF601341506044E5D99107 /* BugsnagBreadcrumb.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagBreadcrumb.m; sourceTree = ""; }; 79CE051EE441FB1A53DB09B59DA174E3 /* FIRCLSFABHost.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCLSFABHost.m; path = Crashlytics/Shared/FIRCLSFABHost.m; sourceTree = ""; }; - 79E279554A094F65CDDAB71F3B065F51 /* BSG_KSString.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSString.c; sourceTree = ""; }; + 79CE403031812C4DA38A52DFBAB12B83 /* RCTFPSGraph.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTFPSGraph.h; path = React/CoreModules/RCTFPSGraph.h; sourceTree = ""; }; + 79D2F6D6133F4321E9CD3845016C0747 /* RNCAsyncStorage.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNCAsyncStorage.debug.xcconfig; sourceTree = ""; }; 79F8319745A77E7EC514938CEA67D845 /* vp8l_enc.c */ = {isa = PBXFileReference; includeInIndex = 1; name = vp8l_enc.c; path = src/enc/vp8l_enc.c; sourceTree = ""; }; - 79F8ED89BD94F8EE6B1B828CD57F6CA8 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; 7A01E18194F6EA7B8074FF79ADEFA5DC /* FBLPromise+Catch.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FBLPromise+Catch.h"; path = "Sources/FBLPromises/include/FBLPromise+Catch.h"; sourceTree = ""; }; - 7A03B7173987B901D446E319A432F813 /* RCTViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTViewManager.h; sourceTree = ""; }; + 7A0F675813E7A139C53C107616014E4E /* RCTRedBoxExtraDataViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTRedBoxExtraDataViewController.m; sourceTree = ""; }; + 7A1712A44424732D05AB86F17D277446 /* RCTScrollEvent.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTScrollEvent.m; sourceTree = ""; }; + 7A1919F40EE7A26965827BDD0B7FC122 /* jsilib-windows.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = "jsilib-windows.cpp"; sourceTree = ""; }; + 7A1DD621194889730DD99839004FCAA5 /* JSDeltaBundleClient.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = JSDeltaBundleClient.h; sourceTree = ""; }; + 7A329C3F15FB7A0AF00A8CE59638B9DD /* Yoga-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Yoga-dummy.m"; sourceTree = ""; }; 7A36DBB413643435E8629151EB8FDC16 /* ScheduledRSocketResponder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ScheduledRSocketResponder.h; path = rsocket/internal/ScheduledRSocketResponder.h; sourceTree = ""; }; - 7A6045222BB4406D914AF58D7C10BE03 /* RCTPlatform.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTPlatform.h; path = React/CoreModules/RCTPlatform.h; sourceTree = ""; }; - 7A6CE34BC277D54BE72A9F35FFFEBA23 /* JSIDynamic.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = JSIDynamic.h; sourceTree = ""; }; + 7A41176511AE56D98A8467D6889F4072 /* RCTProgressViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTProgressViewManager.h; sourceTree = ""; }; + 7A6B7CFF78D2C352400D8BAA1FE339EE /* RCTRefreshControl.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTRefreshControl.m; sourceTree = ""; }; + 7A6F9B81920C270CE5BEDC992914320E /* EXLocalAuthentication.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = EXLocalAuthentication.release.xcconfig; sourceTree = ""; }; + 7A92ECAC3A1F2597E7F6F4A3743E5804 /* RCTRawTextViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTRawTextViewManager.h; sourceTree = ""; }; 7A993ACDEBFD7E0ED90B4769206BCD30 /* FIRCLSDataParsing.c */ = {isa = PBXFileReference; includeInIndex = 1; name = FIRCLSDataParsing.c; path = Crashlytics/Crashlytics/Unwind/Dwarf/FIRCLSDataParsing.c; sourceTree = ""; }; 7AA2205B0DB48A881AA5FE79F5E2E62A /* FIRInstallations.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstallations.h; path = FirebaseInstallations/Source/Library/Public/FIRInstallations.h; sourceTree = ""; }; 7AAD4EA00627682F58A932674A34A7CD /* Parallel.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Parallel.h; path = folly/gen/Parallel.h; sourceTree = ""; }; 7AC571A141141F6091B06FF183A38007 /* log_severity.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = log_severity.h; path = src/glog/log_severity.h; sourceTree = ""; }; 7AC5E17538F2D470843A507744C3420C /* SysResource.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SysResource.h; path = folly/portability/SysResource.h; sourceTree = ""; }; + 7AC6925974FC31A4A32A41DDE7E64EF5 /* react-native-safe-area-context.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = "react-native-safe-area-context.podspec"; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; 7AD2D5855891003013F45F608D5CD6B4 /* cost_enc.c */ = {isa = PBXFileReference; includeInIndex = 1; name = cost_enc.c; path = src/enc/cost_enc.c; sourceTree = ""; }; 7AEF9523DD3A511863BFB2E9AC5ACC12 /* SKDescriptorMapper.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = SKDescriptorMapper.mm; path = iOS/Plugins/FlipperKitLayoutPlugin/FlipperKitLayoutPlugin/SKDescriptorMapper.mm; sourceTree = ""; }; - 7AFA2F80A1CB6205E8096216B373B0B6 /* RNCSafeAreaViewLocalData.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCSafeAreaViewLocalData.m; path = ios/SafeAreaView/RNCSafeAreaViewLocalData.m; sourceTree = ""; }; - 7B08E71E61F5D8DE5D0C6A89F7E3C9D0 /* RCTMacros.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTMacros.h; sourceTree = ""; }; - 7B12B24F0D2B4C9ABF11C62EC0707101 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; - 7B150812372A7D3BC35960689937BCF6 /* BSG_KSJSONCodecObjC.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSJSONCodecObjC.h; sourceTree = ""; }; 7B2D5BB702C692DF290B229E14B42714 /* CancellationToken-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "CancellationToken-inl.h"; path = "folly/CancellationToken-inl.h"; sourceTree = ""; }; 7B38271B66DBC0D7269A0250EF2A082B /* fast-dtoa.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "fast-dtoa.h"; path = "double-conversion/fast-dtoa.h"; sourceTree = ""; }; + 7B39967770B8790E5E3F2E4E66B738F2 /* RCTMaskedView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTMaskedView.m; sourceTree = ""; }; 7B3B901EE245E9C710F1EFED3D715361 /* OpenSSLCertUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = OpenSSLCertUtils.h; path = folly/ssl/OpenSSLCertUtils.h; sourceTree = ""; }; - 7B458DF706EDC0CE70F50A6C1CF721FC /* react-native-orientation-locker-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "react-native-orientation-locker-prefix.pch"; sourceTree = ""; }; - 7B582CCB85E15EE5AA7498FCDD43D437 /* UMUserNotificationCenterProxyInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMUserNotificationCenterProxyInterface.h; path = UMPermissionsInterface/UMUserNotificationCenterProxyInterface.h; sourceTree = ""; }; - 7B5FDE5D3E7563BEFA60D070D48F4919 /* RCTBackedTextInputDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBackedTextInputDelegate.h; sourceTree = ""; }; - 7BBD17E2257061C54306749D6F782A0A /* event.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = event.cpp; sourceTree = ""; }; + 7B423D3F339C2BABD89BAED31EC39E38 /* RCTDevLoadingViewSetEnabled.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTDevLoadingViewSetEnabled.h; sourceTree = ""; }; + 7B999C6D36107B57A55C835F39A8FB99 /* BSG_KSCrashType.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSCrashType.c; sourceTree = ""; }; 7BBF8A1777BAFD5C973260BD26414770 /* cpu.c */ = {isa = PBXFileReference; includeInIndex = 1; name = cpu.c; path = src/dsp/cpu.c; sourceTree = ""; }; - 7BCF154E10A7B538805D44D3345C4AE2 /* UMDeviceMotionInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMDeviceMotionInterface.h; path = UMSensorsInterface/UMDeviceMotionInterface.h; sourceTree = ""; }; + 7C0561502CFFD1871C4A81BA9B44B034 /* 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; }; 7C0B09BA43FBD7AFC8F6086713955F22 /* GDTCCTPrioritizer.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GDTCCTPrioritizer.m; path = GoogleDataTransportCCTSupport/GDTCCTLibrary/GDTCCTPrioritizer.m; sourceTree = ""; }; - 7C2E6D530C35035871EC5B2C5D0428C8 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; + 7C1CADBD19400905ABE9EB8872167C84 /* RCTNativeModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTNativeModule.h; sourceTree = ""; }; + 7C1DAA8A5E4DD55981700D3946D57BFF /* UMEventEmitterService.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMEventEmitterService.h; sourceTree = ""; }; 7C4F94790314F30293D00F192FF27A2D /* tree_enc.c */ = {isa = PBXFileReference; includeInIndex = 1; name = tree_enc.c; path = src/enc/tree_enc.c; sourceTree = ""; }; - 7C599A1B347A877D641536645093F9CA /* EXAV.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = EXAV.release.xcconfig; sourceTree = ""; }; 7C5D833FDDC6F413BA538308A6883112 /* HazptrObjLinked.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = HazptrObjLinked.h; path = folly/synchronization/HazptrObjLinked.h; sourceTree = ""; }; + 7C686C22A7820E23E792CFE7CEC34194 /* BSG_KSCrashCallCompletion.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BSG_KSCrashCallCompletion.m; sourceTree = ""; }; 7C73D3BB5E4BEDFCF64752FD0C7FE9F9 /* FBLPromise+Validate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FBLPromise+Validate.h"; path = "Sources/FBLPromises/include/FBLPromise+Validate.h"; sourceTree = ""; }; - 7CA0EA76C2A9FE04F093A89600261106 /* BSG_KSSystemInfoC.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSSystemInfoC.h; sourceTree = ""; }; + 7C86F8D9A8A1C3FA0031BE354FBD8CDC /* RCTSafeAreaViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSafeAreaViewManager.h; sourceTree = ""; }; + 7C9416C937A72C8891C878568DD7A7F6 /* RNCSafeAreaViewMode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCSafeAreaViewMode.m; path = ios/SafeAreaView/RNCSafeAreaViewMode.m; sourceTree = ""; }; + 7C975B5ECD7E79749EEB6A5A2822237B /* EXVideoThumbnailsModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXVideoThumbnailsModule.h; path = EXVideoThumbnails/EXVideoThumbnailsModule.h; sourceTree = ""; }; 7CB6B95323D59DD380E20828F800A2BC /* FIRCLSException.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = FIRCLSException.mm; path = Crashlytics/Crashlytics/Handlers/FIRCLSException.mm; sourceTree = ""; }; - 7CEB1CEEA011E402873E3FE6281AF212 /* react-native-orientation-locker.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "react-native-orientation-locker.debug.xcconfig"; sourceTree = ""; }; 7CFC93A785C1844A857C11A4940DB17F /* Stdlib.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Stdlib.h; path = folly/portability/Stdlib.h; sourceTree = ""; }; 7D152770934C6485E9D0EA7BF5063F28 /* asn1_mac.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = asn1_mac.h; path = ios/include/openssl/asn1_mac.h; sourceTree = ""; }; 7D19397EEA8F7A16C85C82BF80D6D443 /* SDAssociatedObject.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDAssociatedObject.m; path = SDWebImage/Private/SDAssociatedObject.m; sourceTree = ""; }; - 7D20F71717F6D63DC8918152A9C9A908 /* RCTRefreshControl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTRefreshControl.h; sourceTree = ""; }; 7D413EA356D41A308D1FE05DD999DD51 /* FrameSerializer.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = FrameSerializer.cpp; path = rsocket/framing/FrameSerializer.cpp; sourceTree = ""; }; - 7D4E4DC5E49587673355D1AEB0FBD285 /* EXKeepAwake-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "EXKeepAwake-prefix.pch"; sourceTree = ""; }; - 7D6F1ACCC99F3B7F18025DDFD98FD4D9 /* UMFontScalerInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMFontScalerInterface.h; path = UMFontInterface/UMFontScalerInterface.h; sourceTree = ""; }; - 7D75ED698F98D3A6AEE44A0BC15F9F39 /* BSG_KSMach_Arm64.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSMach_Arm64.c; sourceTree = ""; }; + 7D456170E0B84B48E6B47976D2AE811D /* UMCore-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "UMCore-dummy.m"; sourceTree = ""; }; 7D78452A62DD6AFC3C3C521F35B8DD7C /* huffman_encode_utils.c */ = {isa = PBXFileReference; includeInIndex = 1; name = huffman_encode_utils.c; path = src/utils/huffman_encode_utils.c; sourceTree = ""; }; + 7D79669EEA9D60CEAC59A575B4ADBE51 /* RNCCameraRollManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCCameraRollManager.m; path = ios/RNCCameraRollManager.m; sourceTree = ""; }; 7D96E3C8629E55329090753268A30B3F /* thread_utils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = thread_utils.h; path = src/utils/thread_utils.h; sourceTree = ""; }; - 7DC06DB3B31DDD3D5B151119DEC2BDC6 /* BugsnagReactNative.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = BugsnagReactNative.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - 7DCC8F3AE45AC531CFF8F64CD91C48B8 /* react-native-jitsi-meet.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "react-native-jitsi-meet.release.xcconfig"; sourceTree = ""; }; + 7DB02794A0FCD7198A16BD816D962867 /* RCTInspectorPackagerConnection.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTInspectorPackagerConnection.m; sourceTree = ""; }; + 7DCBC3BF7063D7893DD6E720842EB674 /* RCTSRWebSocket.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTSRWebSocket.h; path = Libraries/WebSocket/RCTSRWebSocket.h; sourceTree = ""; }; + 7DCDAFE44FE167FC68E9A412325E8F37 /* RCTViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTViewManager.h; sourceTree = ""; }; 7DCEFF71B1D9E6E5355DDC8CA604AB79 /* MMKVPredef.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MMKVPredef.h; path = Core/MMKVPredef.h; sourceTree = ""; }; - 7DD31D1231E4711DB9AF1B1C8DE46FB4 /* QBVideoIconView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = QBVideoIconView.m; path = ios/QBImagePicker/QBImagePicker/QBVideoIconView.m; sourceTree = ""; }; 7DE4E7799787EAEE48EF32E6B4BAA9E7 /* MMBuffer.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = MMBuffer.cpp; path = Core/MMBuffer.cpp; sourceTree = ""; }; - 7DE6A677E0E6DFFA30734D9136451DDD /* rn-extensions-share.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "rn-extensions-share.release.xcconfig"; sourceTree = ""; }; - 7DF188500B821D2A3F9FE8B0BBE2C438 /* UMAccelerometerInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMAccelerometerInterface.h; path = UMSensorsInterface/UMAccelerometerInterface.h; sourceTree = ""; }; - 7DF40FF6B975F6396C79CB878EF7628C /* RCTProfileTrampoline-x86_64.S */ = {isa = PBXFileReference; includeInIndex = 1; path = "RCTProfileTrampoline-x86_64.S"; sourceTree = ""; }; 7E09AEB3FAC9D47ECBE2D91BA4E05E5F /* CpuId.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CpuId.h; path = folly/CpuId.h; sourceTree = ""; }; - 7E0F178A220E33C2EB642977FE77EE0E /* React-cxxreact-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-cxxreact-prefix.pch"; sourceTree = ""; }; + 7E0A11B0DE343DB0606DEDCC142C32AE /* JSExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = JSExecutor.h; sourceTree = ""; }; 7E103FA6ED177E4D7EF38AD267B42C58 /* libreact-native-cookies.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libreact-native-cookies.a"; path = "libreact-native-cookies.a"; sourceTree = BUILT_PRODUCTS_DIR; }; - 7E10CC96907CE1E161D8FD66DA528DB0 /* RCTRedBoxSetEnabled.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTRedBoxSetEnabled.m; sourceTree = ""; }; - 7E24D2BD63FE094A49FF7AC7CFC05A19 /* RCTCxxBridgeDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTCxxBridgeDelegate.h; sourceTree = ""; }; - 7E267174212E19B04A01C07145D71267 /* UMTaskConsumerInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMTaskConsumerInterface.h; path = UMTaskManagerInterface/UMTaskConsumerInterface.h; sourceTree = ""; }; - 7E30E19A80A62F3B86F669FDB563847C /* RNFBApp.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNFBApp.release.xcconfig; sourceTree = ""; }; + 7E25BBD2755A2F8278A52EEB258B1351 /* RCTValueAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTValueAnimatedNode.h; sourceTree = ""; }; 7E329C27A9B42D3693F968168A55ABE0 /* SDWebImage.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImage.h; path = WebImage/SDWebImage.h; sourceTree = ""; }; 7E34E90938E61A36DC80280B0622C2C6 /* FIRExceptionModel.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRExceptionModel.m; path = Crashlytics/Crashlytics/FIRExceptionModel.m; sourceTree = ""; }; 7E3803028B3463B243421AE1D90AE493 /* Tearable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Tearable.h; path = folly/synchronization/Tearable.h; sourceTree = ""; }; - 7E47BF8320330721BA63ECAF011A85EF /* RNForceTouchHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNForceTouchHandler.h; sourceTree = ""; }; 7E5492EE69D6815A8CC646ED50CC3904 /* String.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = String.cpp; path = folly/String.cpp; sourceTree = ""; }; 7E59ED8665250F877CE5436A11220676 /* GULReachabilityChecker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULReachabilityChecker.h; path = GoogleUtilities/Reachability/Private/GULReachabilityChecker.h; sourceTree = ""; }; 7E6283EB09705FAEE73DEC01419581CF /* GoogleDataTransport-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "GoogleDataTransport-dummy.m"; sourceTree = ""; }; @@ -8573,710 +8504,700 @@ 7E7248EE9263456BF9C65514F5653EC8 /* FIRCLSThreadArrayOperation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSThreadArrayOperation.h; path = Crashlytics/Crashlytics/Operations/Symbolication/FIRCLSThreadArrayOperation.h; sourceTree = ""; }; 7E73E820E0E7570C0A536DCF53EE5509 /* FirebaseInstallations-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "FirebaseInstallations-dummy.m"; sourceTree = ""; }; 7E7E46B76D0AFE3DFC477DC55C5DB326 /* libEXAppleAuthentication.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libEXAppleAuthentication.a; path = libEXAppleAuthentication.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 7E82028C6728DB9A8354B650C594795C /* BSG_KSCrash.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BSG_KSCrash.m; sourceTree = ""; }; - 7E91011DB5327234A571BA053074F4D3 /* UMReactLogHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMReactLogHandler.h; sourceTree = ""; }; - 7EACD5824921383288E9F730A938E752 /* JSCExecutorFactory.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = JSCExecutorFactory.h; sourceTree = ""; }; + 7E8FDF9F2784FF05324B097E9B869F00 /* RNFBAnalytics-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNFBAnalytics-prefix.pch"; sourceTree = ""; }; 7EBF0B3032A56309C27B438746A70349 /* FBLPromise+Retry.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "FBLPromise+Retry.m"; path = "Sources/FBLPromises/FBLPromise+Retry.m"; sourceTree = ""; }; - 7EC65E615B94AFCB599DE6EA9F1B9A66 /* BSG_KSCrashIdentifier.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashIdentifier.h; sourceTree = ""; }; 7ECBB15C0BBC77F5F9CF70A64A07A1F5 /* UIImage+Metadata.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIImage+Metadata.h"; path = "SDWebImage/Core/UIImage+Metadata.h"; sourceTree = ""; }; 7EEEAF6D15E85574F3500AA19CFA1847 /* ManualExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ManualExecutor.h; path = folly/executors/ManualExecutor.h; sourceTree = ""; }; 7EF094B4DED4A47E606B128C16F4A3DE /* MapUtil.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MapUtil.h; path = folly/MapUtil.h; sourceTree = ""; }; + 7EF3B553D41CFEFF9BFBAAB4F26BF38B /* BSG_KSLogger.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSLogger.h; sourceTree = ""; }; + 7EF75E243F857CEAB85C1D0ACBF17B73 /* RCTJavaScriptLoader.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTJavaScriptLoader.mm; sourceTree = ""; }; 7EF7838F5C51D7F6A7D9CFA412DBC1F5 /* MMKVMetaInfo.hpp */ = {isa = PBXFileReference; includeInIndex = 1; name = MMKVMetaInfo.hpp; path = Core/MMKVMetaInfo.hpp; sourceTree = ""; }; - 7EFBA28598B02369622936BDEEF3B5AE /* RCTRequired.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RCTRequired.release.xcconfig; sourceTree = ""; }; - 7F01863205DBA6FB0E14ABEC758298F1 /* RNScreens.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RNScreens.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; 7F0DAE1D2DAEBD977A1EB235FA09069F /* UIImage+ForceDecode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIImage+ForceDecode.h"; path = "SDWebImage/Core/UIImage+ForceDecode.h"; sourceTree = ""; }; 7F1001B1349B03B91C1356C3A36DD84A /* Executor.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = Executor.cpp; path = folly/Executor.cpp; sourceTree = ""; }; 7F1268F69DB9F48462D2E8AE12F62688 /* FIRCLSHost.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSHost.h; path = Crashlytics/Crashlytics/Components/FIRCLSHost.h; sourceTree = ""; }; + 7F21174076AEA986138D327BA59C8384 /* RNLocalize.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNLocalize.h; path = ios/RNLocalize.h; sourceTree = ""; }; + 7F2324BE8CE2196436392EEFCAC75808 /* EXResumablesManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = EXResumablesManager.h; sourceTree = ""; }; 7F248CA22956534AD12562822B288A0C /* IOThreadPoolExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = IOThreadPoolExecutor.h; path = folly/executors/IOThreadPoolExecutor.h; sourceTree = ""; }; + 7F2A08D7B3DBF49C782821A66DE3DE38 /* RCTPerformanceLogger.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTPerformanceLogger.h; sourceTree = ""; }; + 7F2C3551358526086C077797F70C0A1F /* UMNativeModulesProxy.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMNativeModulesProxy.h; sourceTree = ""; }; 7F2DB13D06542D69EA4B6D188B4DCC5E /* AsyncServerSocket.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = AsyncServerSocket.cpp; path = folly/io/async/AsyncServerSocket.cpp; sourceTree = ""; }; - 7F2F55A0B34805D3D01FDC8A16EC53EE /* EXVideoView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = EXVideoView.m; sourceTree = ""; }; - 7F3A7F96EE7DA91347F320A07F9CF373 /* rn-extensions-share.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "rn-extensions-share.debug.xcconfig"; sourceTree = ""; }; + 7F2EEEA4D466CF66AE76A8474AD38061 /* EXAV-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "EXAV-dummy.m"; sourceTree = ""; }; + 7F442623754306438DD6860B5B76BB82 /* QBAlbumCell.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = QBAlbumCell.m; path = ios/QBImagePicker/QBImagePicker/QBAlbumCell.m; sourceTree = ""; }; 7F4678509AA6CA3186B21D19E4C8B205 /* cost_enc.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = cost_enc.h; path = src/enc/cost_enc.h; sourceTree = ""; }; - 7F47E78BB15E64AD457C1F710D1D8BBE /* RCTSRWebSocket.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCTSRWebSocket.m; path = Libraries/WebSocket/RCTSRWebSocket.m; sourceTree = ""; }; - 7F539EF06CF6824CA9CD00CA7BC7CB6A /* KeyCommands.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = KeyCommands.debug.xcconfig; sourceTree = ""; }; 7F58BD9A54067B2D76E77DC7D89AEEBD /* CancellationToken.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = CancellationToken.cpp; path = folly/CancellationToken.cpp; sourceTree = ""; }; - 7F59A20232A82C3A1F2221D19BDCB4B9 /* react-native-appearance.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = "react-native-appearance.podspec"; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - 7F6A88B53A6E2E2C82A5B8E4633BC6DD /* RCTDatePicker.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTDatePicker.m; sourceTree = ""; }; 7F6BA9C4D13FE5267F6561724E575CAF /* FIRErrorCode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRErrorCode.h; path = FirebaseCore/Sources/Private/FIRErrorCode.h; sourceTree = ""; }; - 7F720C62D9D3B2417C29BD6DA1571EF0 /* UMReactNativeAdapter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = UMReactNativeAdapter.m; sourceTree = ""; }; 7F723522B3B4D24FFA19D288436A8758 /* crypto.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = crypto.h; path = ios/include/openssl/crypto.h; sourceTree = ""; }; - 7F903D44A87E7A57E7009F31A7BF7011 /* YGLayout.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = YGLayout.cpp; path = yoga/YGLayout.cpp; sourceTree = ""; }; - 7F9744A33CB3738D77C7575BF4C42ABD /* RCTSinglelineTextInputViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSinglelineTextInputViewManager.h; sourceTree = ""; }; - 7F9CD9F5AA07636A4CA4822D75C54E0F /* REACallFuncNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REACallFuncNode.h; sourceTree = ""; }; 7FC4C2FC787C6989441D30100AF1DA27 /* ManualTimekeeper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ManualTimekeeper.h; path = folly/futures/ManualTimekeeper.h; sourceTree = ""; }; 7FCCB2D65FDA8CA77452B1513BAC7872 /* Enumerate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Enumerate.h; path = folly/container/Enumerate.h; sourceTree = ""; }; + 7FCF26D2C9C17A60B0A473D4D36DFD98 /* ReactCommon-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "ReactCommon-prefix.pch"; sourceTree = ""; }; 7FD1894616432E8801F4121C9554199B /* AutoTimer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AutoTimer.h; path = folly/experimental/AutoTimer.h; sourceTree = ""; }; - 7FDB299549A5E3A7F289B83A8CDB39D5 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; - 7FE27CA8C01F76EE5B315C6FBA646E84 /* RCTInspector.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTInspector.mm; sourceTree = ""; }; 7FEFD67E2F1B67EFEE3B6E755ABC5B56 /* ScheduledFrameTransport.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = ScheduledFrameTransport.cpp; path = rsocket/framing/ScheduledFrameTransport.cpp; sourceTree = ""; }; - 8003D3FBFE3C573335B3BAC90E9D2567 /* RNCWKProcessPoolManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCWKProcessPoolManager.h; path = apple/RNCWKProcessPoolManager.h; sourceTree = ""; }; 801375BE59492F7CC0A17EE8309DD8C5 /* FlipperKitNetworkPlugin.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FlipperKitNetworkPlugin.h; path = iOS/Plugins/FlipperKitNetworkPlugin/FlipperKitNetworkPlugin/FlipperKitNetworkPlugin.h; sourceTree = ""; }; 802121F5B756ACBFDD6D08C36246DADD /* libReact-RCTLinking.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libReact-RCTLinking.a"; path = "libReact-RCTLinking.a"; sourceTree = BUILT_PRODUCTS_DIR; }; 802E30CD5AA274C12F53486996E3EEE0 /* opensslconf-i386.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "opensslconf-i386.h"; path = "ios/include/openssl/opensslconf-i386.h"; sourceTree = ""; }; 802E746E88582C5B35531B625684F6A6 /* GMock.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GMock.h; path = folly/portability/GMock.h; sourceTree = ""; }; - 802F1E5044088756BCC0B69978F93897 /* RCTFrameAnimation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTFrameAnimation.h; sourceTree = ""; }; - 804A1561B96171A6817526601368BB87 /* react-native-document-picker.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = "react-native-document-picker.podspec"; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; 80594D1255F9F858C24487EA080220EB /* ExecutionObserver.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ExecutionObserver.h; path = folly/experimental/ExecutionObserver.h; sourceTree = ""; }; 805E69C01A0845C589EB05FDD1BDF743 /* SDImageIOAnimatedCoder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageIOAnimatedCoder.h; path = SDWebImage/Core/SDImageIOAnimatedCoder.h; sourceTree = ""; }; + 80703130FEA470710BE011CD13E28F37 /* RNBootSplash.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNBootSplash.release.xcconfig; sourceTree = ""; }; 8074129DF318155B29544548E1CAF4A3 /* libreact-native-jitsi-meet.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libreact-native-jitsi-meet.a"; path = "libreact-native-jitsi-meet.a"; sourceTree = BUILT_PRODUCTS_DIR; }; 807B40C47C86B2CD10A78565F4FA9D18 /* TypedIOBuf.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TypedIOBuf.h; path = folly/io/TypedIOBuf.h; sourceTree = ""; }; + 809C4655C11079B51B1A1DBD7F710F11 /* RCTDevLoadingViewProtocol.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTDevLoadingViewProtocol.h; sourceTree = ""; }; 80A51B61FECFED8D1A0D95AAD32A2938 /* libEXHaptics.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libEXHaptics.a; path = libEXHaptics.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 80B56924E6DBFF597348ED058F104360 /* EXAV.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = EXAV.debug.xcconfig; sourceTree = ""; }; + 80ADA5AD654B848F75B764E0EDBF0A55 /* BSG_KSCrashIdentifier.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashIdentifier.h; sourceTree = ""; }; + 80C0F9D8F07EF1FC795CD44A602D9EFA /* EXConstants.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXConstants.h; path = EXConstants/EXConstants.h; sourceTree = ""; }; + 80C25DD58673E449DC782A94464B38CB /* RCTModuloAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTModuloAnimatedNode.h; sourceTree = ""; }; + 80F1BFF34E4046A5C275E533DA3C6EA8 /* RNDateTimePicker.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNDateTimePicker.m; path = ios/RNDateTimePicker.m; sourceTree = ""; }; 810B053F3DE377A223D309DD9A921207 /* pem2.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = pem2.h; path = ios/include/openssl/pem2.h; sourceTree = ""; }; - 81118BF48D985BBD3F4B1B670E8F2DA7 /* subscription.md */ = {isa = PBXFileReference; includeInIndex = 1; name = subscription.md; path = docs/subscription.md; sourceTree = ""; }; 812A96082CF253DD45C204A145030104 /* WriteChainAsyncTransportWrapper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = WriteChainAsyncTransportWrapper.h; path = folly/io/async/WriteChainAsyncTransportWrapper.h; sourceTree = ""; }; + 812AAA79B95E42D3E675EA51A44BC110 /* RCTLog.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTLog.mm; sourceTree = ""; }; 812ED9CD85898FB3B82136F7CB9A3191 /* libRNConfigReader.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libRNConfigReader.a; path = libRNConfigReader.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 813541EC1227B6192BEDCC61422B7F7E /* EXAppleAuthentication.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = EXAppleAuthentication.debug.xcconfig; sourceTree = ""; }; - 81477035CACCD5F63C95CD0D19747EB4 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; - 81766F98093BA351E98CB69984609C69 /* READebugNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = READebugNode.h; sourceTree = ""; }; + 814D4623C8C092E334E066B9AA74A3B6 /* React-RCTLinking-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-RCTLinking-prefix.pch"; sourceTree = ""; }; 8177E6FFA8F27C56F779F481512EBDDC /* MemoryMapping.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MemoryMapping.h; path = folly/system/MemoryMapping.h; sourceTree = ""; }; - 8187E8B4641324A844BDF9D6489123F6 /* RNGestureHandlerManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNGestureHandlerManager.m; path = ios/RNGestureHandlerManager.m; sourceTree = ""; }; - 81CBFBBE6DED4EA389740EB8A4833712 /* RCTDataRequestHandler.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTDataRequestHandler.mm; sourceTree = ""; }; + 817DFF74977534386133FA9755A9B74A /* MaterialCommunityIcons.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = MaterialCommunityIcons.ttf; path = Fonts/MaterialCommunityIcons.ttf; sourceTree = ""; }; + 8198A32E16C7774E1AB5DFDFC2A4A4D2 /* BugsnagSessionFileStore.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagSessionFileStore.h; sourceTree = ""; }; + 81AC90B2EE224E62D204947695D45516 /* RNForceTouchHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNForceTouchHandler.m; sourceTree = ""; }; + 81BEB03FF4BED8573EBE9E18CAB3E2AA /* RCTSRWebSocket.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCTSRWebSocket.m; path = Libraries/WebSocket/RCTSRWebSocket.m; sourceTree = ""; }; + 81CC00FA4FE4645F3158AA13C2172A42 /* UMViewManagerAdapter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMViewManagerAdapter.h; sourceTree = ""; }; 81D0D073BFFD90E161F032E4016B62D9 /* TestUtil.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TestUtil.h; path = folly/experimental/TestUtil.h; sourceTree = ""; }; + 81F07119EA14BCACE45B5265661DEC55 /* RCTUITextView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTUITextView.m; sourceTree = ""; }; 81F33DFB7A7EC0F2F363870421D366A5 /* Portability.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Portability.h; path = folly/Portability.h; sourceTree = ""; }; 81F7428E42F559BEB3AA5AE54B349465 /* ssl23.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ssl23.h; path = ios/include/openssl/ssl23.h; sourceTree = ""; }; - 821B1D4109543910D6B6A5FD67FE2E98 /* RCTReconnectingWebSocket.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCTReconnectingWebSocket.m; path = Libraries/WebSocket/RCTReconnectingWebSocket.m; sourceTree = ""; }; 823198FFD540E2221CB3DDE2502289AE /* rescaler_sse2.c */ = {isa = PBXFileReference; includeInIndex = 1; name = rescaler_sse2.c; path = src/dsp/rescaler_sse2.c; sourceTree = ""; }; - 8235619D63A4D64D2653404D7CE56B96 /* RCTLayoutAnimation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTLayoutAnimation.m; sourceTree = ""; }; 8239A37AFF72B7EFA62A781E5DEAEAD4 /* FlipperConnection.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FlipperConnection.h; path = xplat/Flipper/FlipperConnection.h; sourceTree = ""; }; 824C0788B7CEC37E8ADA11F65ACF9939 /* MMKV.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = MMKV.release.xcconfig; sourceTree = ""; }; - 8256EFD63BE8A803AAC60B603C88D783 /* EXAppleAuthenticationMappings.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXAppleAuthenticationMappings.h; path = EXAppleAuthentication/EXAppleAuthenticationMappings.h; sourceTree = ""; }; - 825C7B2B3BDD9733C1E1600EDC6C50A9 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; + 824FB8620083A7857CB4544205469C8A /* RNScreens-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNScreens-dummy.m"; sourceTree = ""; }; + 8250808ABBF4398B706C6E4F32AA58EF /* RCTAnimatedImage.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTAnimatedImage.m; sourceTree = ""; }; + 826BC97EA03E4B7720A396673C0ABCE6 /* QBImagePickerController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = QBImagePickerController.m; path = ios/QBImagePicker/QBImagePicker/QBImagePickerController.m; sourceTree = ""; }; + 826C3D5D8AA1F26A94A0FC6CF14D49BA /* EXLocalAuthentication.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXLocalAuthentication.h; path = EXLocalAuthentication/EXLocalAuthentication.h; sourceTree = ""; }; + 827231DE3E978B0707E476CDA7825A31 /* RCTSwitchManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSwitchManager.h; sourceTree = ""; }; 82797D5E6E3C1AB7F502D4FF66EDCA93 /* Unit.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Unit.h; path = folly/Unit.h; sourceTree = ""; }; - 8280017D56CEAE4807214764EC124199 /* BSG_KSObjCApple.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSObjCApple.h; sourceTree = ""; }; 8280F4060EA2D45A4019E40097D94154 /* F14SetFallback.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = F14SetFallback.h; path = folly/container/detail/F14SetFallback.h; sourceTree = ""; }; 8281113021EE8CA8AEA3728AEF6D1060 /* StaticConst.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = StaticConst.h; path = folly/lang/StaticConst.h; sourceTree = ""; }; 828CE730DE4AC8F4E0336163B9D629F6 /* SKIOSNetworkAdapter.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = SKIOSNetworkAdapter.mm; path = iOS/Plugins/FlipperKitNetworkPlugin/SKIOSNetworkPlugin/SKIOSNetworkAdapter.mm; sourceTree = ""; }; 828CFF4AB4C0EBD7C6C166739540505E /* ProducerConsumerQueue.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ProducerConsumerQueue.h; path = folly/ProducerConsumerQueue.h; sourceTree = ""; }; - 829E9A62025FA0B6F49BA4B4220CB903 /* RNNotificationCenter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNNotificationCenter.h; path = RNNotifications/RNNotificationCenter.h; sourceTree = ""; }; + 82902E0C44568048C430BC27BFC98FDB /* react-native-cameraroll.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "react-native-cameraroll.release.xcconfig"; sourceTree = ""; }; + 82BCEE677B1A6FD38BE42CDB0BDDC442 /* RCTSinglelineTextInputViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSinglelineTextInputViewManager.m; sourceTree = ""; }; + 82C1A4D1D1DC5C630555A4C48B35A723 /* RCTShadowView+Layout.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RCTShadowView+Layout.m"; sourceTree = ""; }; 82DE099E6D2D0B84C2B4E68059902254 /* ecdsa.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ecdsa.h; path = ios/include/openssl/ecdsa.h; sourceTree = ""; }; 82E38E652C533A063F37A20DFD9C5F8F /* GroupVarintDetail.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GroupVarintDetail.h; path = folly/detail/GroupVarintDetail.h; sourceTree = ""; }; - 82EDC9A83B4EE9F8225B22D6596A9BF0 /* UMReactNativeAdapter-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "UMReactNativeAdapter-dummy.m"; sourceTree = ""; }; + 82E77850EBDB8635AC976F667B8B9C87 /* RCTMultilineTextInputView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTMultilineTextInputView.m; sourceTree = ""; }; 832399E6C502C8A70B8C4EEB26ADDC2C /* cached-powers.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = "cached-powers.cc"; path = "double-conversion/cached-powers.cc"; sourceTree = ""; }; - 83298AC3BCF7B52AF9C0EDB0BA7DAAB6 /* ReactCommon-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "ReactCommon-dummy.m"; sourceTree = ""; }; 832D92A44D7512814FD76FF6F2D14AF2 /* UIView+Yoga.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIView+Yoga.m"; path = "YogaKit/Source/UIView+Yoga.m"; sourceTree = ""; }; - 83389C6F43CBDE1A2A950EF6219A46C8 /* RNDateTimePickerManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNDateTimePickerManager.h; path = ios/RNDateTimePickerManager.h; sourceTree = ""; }; + 8346B6020B09E86465712F8EBDE2081E /* RNCAppearance.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCAppearance.m; path = ios/Appearance/RNCAppearance.m; sourceTree = ""; }; + 83590D21376A4179BCCE0E8EE64CED52 /* YGStyle.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = YGStyle.cpp; path = yoga/YGStyle.cpp; sourceTree = ""; }; 838AA08C8AF575070CEF28CED0DD9667 /* FIRCLSHost.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCLSHost.m; path = Crashlytics/Crashlytics/Components/FIRCLSHost.m; sourceTree = ""; }; - 83BB5276CCBAD0A5948874E042BED951 /* FBReactNativeSpec-generated.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = "FBReactNativeSpec-generated.mm"; path = "FBReactNativeSpec/FBReactNativeSpec-generated.mm"; sourceTree = ""; }; - 83BD0CFDA35D4192A9721DD859C071EF /* UMKernelService.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMKernelService.h; sourceTree = ""; }; + 83A789A52783C1479959F0F145EA704F /* ARTTextFrame.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ARTTextFrame.h; path = ios/ARTTextFrame.h; sourceTree = ""; }; 83C0D7C288E68D751A5685052803E1BF /* GDTCORPlatform.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GDTCORPlatform.m; path = GoogleDataTransport/GDTCORLibrary/GDTCORPlatform.m; sourceTree = ""; }; 83C80CF8E5F47790D5B11A4C4CB44ED6 /* QuotientMultiSet-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "QuotientMultiSet-inl.h"; path = "folly/experimental/QuotientMultiSet-inl.h"; sourceTree = ""; }; + 83CBCAB82AC7193FC38EA5BD77082C8C /* UIImage+Extension.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIImage+Extension.m"; path = "ios/src/UIImage+Extension.m"; sourceTree = ""; }; 83D19653697B29F16CBBC9A7C10B26CE /* FIRCLSMachOBinary.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCLSMachOBinary.m; path = Crashlytics/Shared/FIRCLSMachO/FIRCLSMachOBinary.m; sourceTree = ""; }; - 83DF9403D673316EEE1589BD26757A38 /* RNDeviceInfo.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNDeviceInfo.debug.xcconfig; sourceTree = ""; }; + 83D580E7AA9694526BF76B197BFC65BE /* EXVideoPlayerViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = EXVideoPlayerViewController.m; sourceTree = ""; }; + 83DAE5534B0BE566CDA5BB76F172848B /* RNGestureHandlerManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNGestureHandlerManager.h; path = ios/RNGestureHandlerManager.h; sourceTree = ""; }; 83E6288D790089E7241E112CDD898675 /* FIRCLSCompactUnwind.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSCompactUnwind.h; path = Crashlytics/Crashlytics/Unwind/Compact/FIRCLSCompactUnwind.h; sourceTree = ""; }; - 83EB253967C7837D281EA81637EEFA3C /* RCTUIUtils.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTUIUtils.m; sourceTree = ""; }; - 83F22593E2A934B430841A48D9801164 /* Feather.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = Feather.ttf; path = Fonts/Feather.ttf; sourceTree = ""; }; + 83EBC1196E5DAE3A7545F5A90FAADAB7 /* react-native-notifications-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "react-native-notifications-prefix.pch"; sourceTree = ""; }; 83FE38D0CD33C870FDF6CAF08CA26264 /* visibility.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = visibility.h; path = src/event2/visibility.h; sourceTree = ""; }; - 841AD936110C13F90749C632ADF377FE /* REABlockNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REABlockNode.h; sourceTree = ""; }; - 841D44BF593332B09202C9A5E64459B8 /* MaterialIcons.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = MaterialIcons.ttf; path = Fonts/MaterialIcons.ttf; sourceTree = ""; }; + 8415466C1EA9882F7C98357DC2A3C56E /* RCTMaskedView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTMaskedView.h; sourceTree = ""; }; + 841E07B9F42B3836CB767DC0D972ADF9 /* RCTImageUtils.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTImageUtils.m; sourceTree = ""; }; 8420AF8C1F6EB4650F970C34B7221111 /* fa-IR.lproj */ = {isa = PBXFileReference; includeInIndex = 1; name = "fa-IR.lproj"; path = "Objective-C/TOCropViewController/Resources/fa-IR.lproj"; sourceTree = ""; }; - 843B1EF185471BC08E9BA3B40CB9DDB0 /* FontAwesome5_Regular.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = FontAwesome5_Regular.ttf; path = Fonts/FontAwesome5_Regular.ttf; sourceTree = ""; }; 843F34EAFD706586CD0C9EC3F8F91F99 /* vp8_dec.c */ = {isa = PBXFileReference; includeInIndex = 1; name = vp8_dec.c; path = src/dec/vp8_dec.c; sourceTree = ""; }; 8455A0761227B6709D2A80B3E42AAEBA /* IOThreadPoolExecutor.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = IOThreadPoolExecutor.cpp; path = folly/executors/IOThreadPoolExecutor.cpp; sourceTree = ""; }; 8470C2FB63AEE836B0FCA64A7F812BA8 /* rescaler_msa.c */ = {isa = PBXFileReference; includeInIndex = 1; name = rescaler_msa.c; path = src/dsp/rescaler_msa.c; sourceTree = ""; }; + 84799DC573A1A80C50AE2985D4258247 /* RCTStatusBarManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTStatusBarManager.h; path = React/CoreModules/RCTStatusBarManager.h; sourceTree = ""; }; 849B9F78534074CFFF971C3AB09A80A4 /* F14Set.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = F14Set.h; path = folly/container/F14Set.h; sourceTree = ""; }; - 849BF04E0AF0DED84B2C5DAF9AB8B368 /* RCTJavaScriptLoader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTJavaScriptLoader.h; sourceTree = ""; }; 84AFEB5F65C2E8045DEE3F7DCAD073B6 /* FIRComponent.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRComponent.h; path = FirebaseCore/Sources/Private/FIRComponent.h; sourceTree = ""; }; 84BBD9EECFDDC532701B9676429F63AC /* Time.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = Time.cpp; path = folly/portability/Time.cpp; sourceTree = ""; }; + 84BC990B5932F4C9A221B8FA827227D5 /* UMReactNativeAdapter.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMReactNativeAdapter.debug.xcconfig; sourceTree = ""; }; 84BD9B6AE5CF36F13E90AA9DB2458229 /* SysUio.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SysUio.h; path = folly/portability/SysUio.h; sourceTree = ""; }; 84BEB0EBE212A77C545C1D889DEE8C90 /* raw_logging.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = raw_logging.cc; path = src/raw_logging.cc; sourceTree = ""; }; 84BFD5650DC70FDC7139F58AEBC0892C /* ebcdic.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ebcdic.h; path = ios/include/openssl/ebcdic.h; sourceTree = ""; }; - 84C10766029544716F76D93FAACF9496 /* RCTTextView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTTextView.m; sourceTree = ""; }; 84C1CDF6C3ED9D5001A9EE3CFC4BBB7D /* strtod.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = strtod.cc; path = "double-conversion/strtod.cc"; sourceTree = ""; }; 84C65027A1E199E3E2C6CD1B1A0B3F17 /* cms.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = cms.h; path = ios/include/openssl/cms.h; sourceTree = ""; }; 84CAE4A6D9E6F4B0DC6B348BE84E85D3 /* LifoSem.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = LifoSem.h; path = folly/synchronization/LifoSem.h; sourceTree = ""; }; - 8529E67141DA8CCDE842D0C1AFA6FD12 /* FFFastImageSource.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FFFastImageSource.h; path = ios/FastImage/FFFastImageSource.h; sourceTree = ""; }; + 85070F20AC1AAC643BCBAB997B0A1968 /* RCTModalHostViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTModalHostViewController.h; sourceTree = ""; }; + 851BDBB44A46FB4F257E118F9A6458A4 /* RNFBAnalytics.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNFBAnalytics.debug.xcconfig; sourceTree = ""; }; + 85278DCA2F11944F4D9AC9DDEA02A077 /* RCTBackedTextInputViewProtocol.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBackedTextInputViewProtocol.h; sourceTree = ""; }; + 853B3B16B5DF0C1B26D21CFB5F4F0850 /* RCTImageSource.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTImageSource.h; sourceTree = ""; }; 856B5CD56F194FAD26EA91620B66D614 /* libGoogleDataTransport.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libGoogleDataTransport.a; path = libGoogleDataTransport.a; sourceTree = BUILT_PRODUCTS_DIR; }; 857B473E21FBBDF59E332A5FD163A7B3 /* thread_utils.c */ = {isa = PBXFileReference; includeInIndex = 1; name = thread_utils.c; path = src/utils/thread_utils.c; sourceTree = ""; }; 8581342460145C7EC9F6B5F357C02246 /* SDImageLoader.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageLoader.m; path = SDWebImage/Core/SDImageLoader.m; sourceTree = ""; }; - 8586A69714C338D48AB4CA7B190F3900 /* RCTDecayAnimation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTDecayAnimation.h; sourceTree = ""; }; 858AFA83985937825473045CF6808B15 /* librn-extensions-share.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "librn-extensions-share.a"; path = "librn-extensions-share.a"; sourceTree = BUILT_PRODUCTS_DIR; }; - 85AB4DF292868E6093D2D5E475C5AC83 /* RCTRefreshControlManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTRefreshControlManager.m; sourceTree = ""; }; + 858B02711A1294F3FF055FFA95DF690C /* Zocial.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = Zocial.ttf; path = Fonts/Zocial.ttf; sourceTree = ""; }; 85B16069E70D320C65095CDEFF4AA15F /* GULSceneDelegateSwizzler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GULSceneDelegateSwizzler.m; path = GoogleUtilities/SceneDelegateSwizzler/GULSceneDelegateSwizzler.m; sourceTree = ""; }; - 85C063AC7C2B217791BC7AE86EAE3EC5 /* RCTResizeMode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTResizeMode.h; path = Libraries/Image/RCTResizeMode.h; sourceTree = ""; }; + 85CD28A456C68B8603089211CD0FBFC2 /* JSExecutor.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = JSExecutor.cpp; sourceTree = ""; }; 85E6F658BEB77105D9B54AC764256AF2 /* Event.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Event.h; path = folly/portability/Event.h; sourceTree = ""; }; - 8602B768F2DD0B0F7309E8429BE3B5F1 /* BugsnagCrashSentry.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagCrashSentry.m; sourceTree = ""; }; + 860604C82E7C754ECB8B5E88177BCDB8 /* BSG_KSMachHeaders.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSMachHeaders.h; sourceTree = ""; }; + 860ADC7FE10C13203FCB23B98F88A5F5 /* UMExportedModule.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = UMExportedModule.m; path = UMCore/UMExportedModule.m; sourceTree = ""; }; + 861DA7E115B51D1E6FA094856340CF02 /* RNScreens-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNScreens-prefix.pch"; sourceTree = ""; }; + 861FDF855F10BBA4101DE1640FA86B09 /* RNGestureHandler-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNGestureHandler-dummy.m"; sourceTree = ""; }; + 862463839B5E5632411D5AEA3F7FD963 /* BugsnagKSCrashSysInfoParser.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagKSCrashSysInfoParser.m; sourceTree = ""; }; 86321040D1425732F69009DEB176766E /* SDWebImageOperation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWebImageOperation.m; path = SDWebImage/Core/SDWebImageOperation.m; sourceTree = ""; }; + 8635CE05D10A43345AB7380511457E26 /* BSG_KSJSONCodec.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSJSONCodec.c; sourceTree = ""; }; 86375444C196BA272DDBB8165BF64A15 /* libFirebaseCrashlytics.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libFirebaseCrashlytics.a; path = libFirebaseCrashlytics.a; sourceTree = BUILT_PRODUCTS_DIR; }; 86427295E421BD825AC814673C436CC9 /* FIRCLSDataCollectionToken.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCLSDataCollectionToken.m; path = Crashlytics/Crashlytics/DataCollection/FIRCLSDataCollectionToken.m; sourceTree = ""; }; - 865C102D39A7D472F578BF83450016DC /* Entypo.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = Entypo.ttf; path = Fonts/Entypo.ttf; sourceTree = ""; }; + 8663725A3ADCD9784ACC2DFBC44C6DB2 /* RNCMaskedView.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNCMaskedView.debug.xcconfig; sourceTree = ""; }; + 8667BECE652CF876779D45518F931AD9 /* react-native-webview.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "react-native-webview.release.xcconfig"; sourceTree = ""; }; 8674700211CCFA5D9360B3DCC5C57A60 /* SKInvalidation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SKInvalidation.m; path = iOS/Plugins/FlipperKitLayoutPlugin/FlipperKitLayoutPlugin/SKInvalidation.m; sourceTree = ""; }; - 86783AF71917D7BF5B5C642D1427D04B /* RNCSafeAreaViewEdges.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCSafeAreaViewEdges.m; path = ios/SafeAreaView/RNCSafeAreaViewEdges.m; sourceTree = ""; }; - 867F664DB910791F9B7EF4223E8EC0FD /* RCTAnimatedImage.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTAnimatedImage.h; path = Libraries/Image/RCTAnimatedImage.h; sourceTree = ""; }; + 868A5681C793ECF276B15D5778728D1A /* LongLivedObject.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = LongLivedObject.cpp; path = turbomodule/core/LongLivedObject.cpp; sourceTree = ""; }; 869ABF8F8A07E63FA98A00C3EB7D1574 /* FirebaseInstallations.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = FirebaseInstallations.debug.xcconfig; sourceTree = ""; }; 86A7F03AEC29DAF692493D9250BD5F37 /* FIRDiagnosticsData.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRDiagnosticsData.m; path = FirebaseCore/Sources/FIRDiagnosticsData.m; sourceTree = ""; }; - 86A843D20B203EAA588249505E8993B4 /* react-native-appearance.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "react-native-appearance.debug.xcconfig"; sourceTree = ""; }; 86C038FB837827595E9C06CBE6265F9E /* PBUtility.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = PBUtility.cpp; path = Core/PBUtility.cpp; sourceTree = ""; }; + 86CCC328C36640AD519D121936DBB6A8 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; 871DCC73830C467E5BA61CC8CD0BEB2A /* CString.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CString.h; path = folly/lang/CString.h; sourceTree = ""; }; - 871FA97F338B8CD054EEFA3F08E19EFF /* RCTTextAttributes.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTTextAttributes.h; path = Libraries/Text/RCTTextAttributes.h; sourceTree = ""; }; 8722B9D0CBEA355542FE99C936B63CC1 /* UIImage+Metadata.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIImage+Metadata.m"; path = "SDWebImage/Core/UIImage+Metadata.m"; sourceTree = ""; }; - 872E56EE2C06838095DEE0107BAE3A23 /* UMFaceDetectorInterface.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMFaceDetectorInterface.debug.xcconfig; sourceTree = ""; }; 8732EC9F817772D591B4DAA3C772D474 /* InterProcessLock.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = InterProcessLock.h; path = Core/InterProcessLock.h; sourceTree = ""; }; - 877D1D546EEC3A7F2D6F189F1A4EC633 /* NSData+EXFileSystem.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSData+EXFileSystem.m"; path = "EXFileSystem/NSData+EXFileSystem.m"; sourceTree = ""; }; - 8780292910933F9818B30E4F0C9F0ECF /* RCTDevLoadingView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTDevLoadingView.h; path = React/CoreModules/RCTDevLoadingView.h; sourceTree = ""; }; - 878098E16FC964CDAEEB69CDDC556BCF /* RCTEventAnimation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTEventAnimation.m; sourceTree = ""; }; - 8784B767338465C48D3034FD940B1A63 /* RCTUtilsUIOverride.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTUtilsUIOverride.h; sourceTree = ""; }; - 878AEE37DA04FA236601B147CD9022CA /* RNFetchBlobReqBuilder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNFetchBlobReqBuilder.h; path = ios/RNFetchBlobReqBuilder.h; sourceTree = ""; }; + 8744BF5FC2568E0F2D13883CA5F2DEFE /* ARTBrush.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = ARTBrush.h; sourceTree = ""; }; 878EB6EEBF09463E2211023187B5CB3E /* MMKV_Android.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = MMKV_Android.cpp; path = Core/MMKV_Android.cpp; sourceTree = ""; }; - 8799C6D324F39F47AFE742FD3F5324C4 /* RNFastImage-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNFastImage-prefix.pch"; sourceTree = ""; }; - 87A27DFB848B1D91986B582737F67521 /* React-RCTText-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-RCTText-prefix.pch"; sourceTree = ""; }; + 878FC1C39AF8FE865BCDF7AF930E9888 /* SecureStorage.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SecureStorage.m; path = ios/SecureStorage.m; sourceTree = ""; }; + 87A270C2B7CC46E7814AF398A0408F56 /* UMModuleRegistryProvider.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMModuleRegistryProvider.h; sourceTree = ""; }; 87A31FFA08703E81B60B5FA7AC490C18 /* pb_encode.c */ = {isa = PBXFileReference; includeInIndex = 1; path = pb_encode.c; sourceTree = ""; }; - 87AE74ADAF954E43ADFEF376FE1C35E7 /* RNGestureHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNGestureHandler.m; path = ios/RNGestureHandler.m; sourceTree = ""; }; - 87B30744926803421338F6ACD350EDC1 /* RCTNativeAnimatedNodesManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTNativeAnimatedNodesManager.m; sourceTree = ""; }; - 87C89C4D2728A4A4ACB92CD0EF9AE81B /* EXWebBrowser.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = EXWebBrowser.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - 87CC06497D4C74FD903F4554543BA3AF /* BSG_KSString.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSString.h; sourceTree = ""; }; - 87FEE5BC0141D3918871D5183A153825 /* ReactNativeShareExtension.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = ReactNativeShareExtension.m; path = ios/ReactNativeShareExtension.m; sourceTree = ""; }; - 87FF2C8C355A573413C9E97CED77C32C /* RNNotificationsStore.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNNotificationsStore.h; path = RNNotifications/RNNotificationsStore.h; sourceTree = ""; }; - 8807F8279AA9D8328C725CC8315E6FA9 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; - 880C25DFCFE81BC0CBCB59B76DB2DA4D /* RCTVersion.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTVersion.h; sourceTree = ""; }; - 8829938A716496FE3BDAB4CC2EE1A100 /* RCTConvert+FIRApp.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "RCTConvert+FIRApp.h"; path = "ios/RNFBApp/RCTConvert+FIRApp.h"; sourceTree = ""; }; + 87B7231DF0D484A9D88649C7D3A310B0 /* UMViewManagerAdapterClassesRegistry.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMViewManagerAdapterClassesRegistry.h; sourceTree = ""; }; + 881F1ABFD25A6D8C5B21250AD1899CD5 /* RCTInspectorDevServerHelper.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTInspectorDevServerHelper.mm; sourceTree = ""; }; + 883757E4B7C80E441843B2082413BBD3 /* RCTFrameUpdate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTFrameUpdate.h; sourceTree = ""; }; 8840248FA393A26F5DDAB7D0B2FB3635 /* FireAndForgetBasedFlipperResponder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FireAndForgetBasedFlipperResponder.h; path = xplat/Flipper/FireAndForgetBasedFlipperResponder.h; sourceTree = ""; }; 8848377BC15E3C22E2A7E2BEB7A9F87F /* picture_psnr_enc.c */ = {isa = PBXFileReference; includeInIndex = 1; name = picture_psnr_enc.c; path = src/enc/picture_psnr_enc.c; sourceTree = ""; }; + 885B4CAE3B0C6CD790D6726DC43601CF /* RCTConvertHelpers.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTConvertHelpers.mm; sourceTree = ""; }; + 886C400CDA37EF7577E77029071CFB6C /* RCTMultilineTextInputViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTMultilineTextInputViewManager.m; sourceTree = ""; }; 886D771EBD66B9842FB466D235D11AFD /* AtomicUtil-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "AtomicUtil-inl.h"; path = "folly/synchronization/AtomicUtil-inl.h"; sourceTree = ""; }; - 8884C0419AA63792B76075827E83C254 /* Yoga.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = Yoga.debug.xcconfig; sourceTree = ""; }; - 889AC4585FC0CF11E59FA4BC41902F33 /* RCTScrollContentView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTScrollContentView.h; sourceTree = ""; }; - 88CADC834E40FDC48B000DC05708E102 /* RCTImageURLLoaderWithAttribution.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTImageURLLoaderWithAttribution.mm; sourceTree = ""; }; + 88AB943D8ACDDEF14D02CE9A03FC669F /* React-RCTSettings.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-RCTSettings.debug.xcconfig"; sourceTree = ""; }; + 88DE28457509CE76EC604FE97FCE31D1 /* UMPermissionsMethodsDelegate.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = UMPermissionsMethodsDelegate.m; path = UMPermissionsInterface/UMPermissionsMethodsDelegate.m; sourceTree = ""; }; 890AA27BE2BDEA25925DE114EDCA72EF /* SDFileAttributeHelper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDFileAttributeHelper.h; path = SDWebImage/Private/SDFileAttributeHelper.h; sourceTree = ""; }; + 891F88369986A2569E7F06E3DA96F255 /* FBLazyIterator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBLazyIterator.h; path = FBLazyVector/FBLazyIterator.h; sourceTree = ""; }; 89429D1E9F98E5621C0D0917AF24680D /* ResumeIdentificationToken.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = ResumeIdentificationToken.cpp; path = rsocket/framing/ResumeIdentificationToken.cpp; sourceTree = ""; }; 894E75CFCE337BC472BA115415977912 /* ObservableDoOperator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ObservableDoOperator.h; path = yarpl/observable/ObservableDoOperator.h; sourceTree = ""; }; + 8969190E8CF8AD9B7A5DE697C2B2EEC6 /* RNNativeViewHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNNativeViewHandler.m; sourceTree = ""; }; + 8969C70A3D8C90846DA1B8ECD1B81EA9 /* UMModuleRegistryDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMModuleRegistryDelegate.h; sourceTree = ""; }; 896DFE496A3123614B651C512D768D4B /* Frame.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = Frame.cpp; path = rsocket/framing/Frame.cpp; sourceTree = ""; }; + 8970C2B1382E59AAA9DB751D6B3105BE /* RCTView+SafeAreaCompat.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "RCTView+SafeAreaCompat.h"; path = "ios/SafeAreaView/RCTView+SafeAreaCompat.h"; sourceTree = ""; }; 897EE487D5DFCF9DC8D5A277501259A8 /* TOCropScrollView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = TOCropScrollView.m; path = "Objective-C/TOCropViewController/Views/TOCropScrollView.m"; sourceTree = ""; }; 8982A7DC531ADA3AEE86AC93C775649D /* CodedInputData.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CodedInputData.h; path = Core/CodedInputData.h; sourceTree = ""; }; 8998273719FDD789E6F9C7541AFD0B33 /* libRNVectorIcons.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libRNVectorIcons.a; path = libRNVectorIcons.a; sourceTree = BUILT_PRODUCTS_DIR; }; 8999D50EA985660D0C1EDA6538E48133 /* FlipperCppBridgingConnection.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FlipperCppBridgingConnection.h; path = iOS/FlipperKit/CppBridge/FlipperCppBridgingConnection.h; sourceTree = ""; }; - 899BA33EB23D74067CDDD7DE3142E609 /* RNLocalize.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RNLocalize.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 899E84B80A9168A6A9EE1AE216E86340 /* RCTVirtualTextViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTVirtualTextViewManager.h; sourceTree = ""; }; + 89C75F8622905E01D3CB8526D82BFA26 /* BugsnagUser.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagUser.h; sourceTree = ""; }; 89D828C290E303B1B3631F72A9FB86CD /* InterProcessLock_Android.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = InterProcessLock_Android.cpp; path = Core/InterProcessLock_Android.cpp; sourceTree = ""; }; - 89E516836790BAB8B152D990125FC698 /* UMReactNativeAdapter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMReactNativeAdapter.h; sourceTree = ""; }; + 89E6B70AC13F00CA4BB9593DAD58EC8D /* UMReactFontManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = UMReactFontManager.m; sourceTree = ""; }; 8A154717B3B07FF994D000022B4FBFC5 /* UIImageView+HighlightedWebCache.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIImageView+HighlightedWebCache.m"; path = "SDWebImage/Core/UIImageView+HighlightedWebCache.m"; sourceTree = ""; }; 8A1979B97D255F084F2CDED967B5B6A9 /* FlipperKit-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "FlipperKit-dummy.m"; sourceTree = ""; }; - 8A390EE53429DCE819D5DE22D0679600 /* EXVideoPlayerViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = EXVideoPlayerViewController.h; sourceTree = ""; }; - 8A3E5125DA6A297B2980C256D1443CF2 /* BugsnagCollections.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagCollections.m; sourceTree = ""; }; - 8A3EC40F8D83F2576BD5667948D04DEE /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; + 8A24AC792D0BA02FAE99884894D81136 /* ARTRenderable.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = ARTRenderable.m; path = ios/ARTRenderable.m; sourceTree = ""; }; + 8A25DE37BF4548AF3EDE1912DB193012 /* Fontisto.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = Fontisto.ttf; path = Fonts/Fontisto.ttf; sourceTree = ""; }; 8A469455F7808C1B76A4329258F6F6C0 /* FileUtil.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = FileUtil.cpp; path = folly/FileUtil.cpp; sourceTree = ""; }; + 8A7FCD58C0AD9B7BECA4A44BB9BCB359 /* EXAVPlayerData.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXAVPlayerData.m; path = EXAV/EXAVPlayerData.m; sourceTree = ""; }; 8A814E92EA07C7E1929E2126C99FA790 /* FirebaseCrashlytics.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FirebaseCrashlytics.h; path = Crashlytics/Crashlytics/Public/FirebaseCrashlytics.h; sourceTree = ""; }; - 8A866499E67676965E5122117BBF92D0 /* BSG_KSCrash.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrash.h; sourceTree = ""; }; - 8A987EA58D932E4F1D2EE0286730EAA6 /* RNFBCrashlytics-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNFBCrashlytics-dummy.m"; sourceTree = ""; }; 8AB00D2E6F6DA172BAF0ED3617D64A42 /* FIRCrashlytics.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCrashlytics.m; path = Crashlytics/Crashlytics/FIRCrashlytics.m; sourceTree = ""; }; 8AB163A2BC1DB6F0837718EA750350CD /* ThreadLock.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ThreadLock.h; path = Core/ThreadLock.h; sourceTree = ""; }; - 8ABB41B7F9DD098BAE8F4210DAAC5F82 /* RCTVirtualTextViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTVirtualTextViewManager.h; sourceTree = ""; }; + 8AC1F8D36799F9ABF8BD5698B9D0D094 /* RNScreens.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RNScreens.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; 8ADA55D682457995E872F8370FDB53AC /* TLSDefinitions.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TLSDefinitions.h; path = folly/io/async/ssl/TLSDefinitions.h; sourceTree = ""; }; 8AEBC87CEBF5C2C74564537E3E555AC6 /* logging.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = logging.cc; path = src/logging.cc; sourceTree = ""; }; - 8AF4EAEE524F746D622FE1C1AA19BC79 /* JSExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = JSExecutor.h; sourceTree = ""; }; 8B325C64F03917783D3F653A2700BF79 /* ThreadCachedInts.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ThreadCachedInts.h; path = folly/synchronization/detail/ThreadCachedInts.h; sourceTree = ""; }; - 8B41A162AB2293493C38A0315DA47450 /* RCTProfile.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTProfile.m; sourceTree = ""; }; + 8B5399240907AD9481E890592731F368 /* RNCAppearanceProviderManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCAppearanceProviderManager.m; path = ios/Appearance/RNCAppearanceProviderManager.m; sourceTree = ""; }; + 8B543C70BF53EF239BB3CF1359E80C83 /* UMExportedModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMExportedModule.h; path = UMCore/UMExportedModule.h; sourceTree = ""; }; 8B6829B2C89A64CE5FB5A5CA1D9D81EF /* ThreadCachedLists.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ThreadCachedLists.h; path = folly/synchronization/detail/ThreadCachedLists.h; sourceTree = ""; }; + 8B69761C90606CFF144962B2AC895EAD /* ARTNodeManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = ARTNodeManager.h; sourceTree = ""; }; 8B6C33FEA3B536CA832586E380533053 /* enc_mips32.c */ = {isa = PBXFileReference; includeInIndex = 1; name = enc_mips32.c; path = src/dsp/enc_mips32.c; sourceTree = ""; }; 8B7868C6DEEAB78B056F86DD424A6BB6 /* http.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = http.h; path = src/event2/http.h; sourceTree = ""; }; 8B7E13AFDC5D2CC40492D4340BA0640C /* FrameProcessor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FrameProcessor.h; path = rsocket/framing/FrameProcessor.h; sourceTree = ""; }; + 8B80FB35984A1E5FC9587D9925328A5B /* EXPermissions.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = EXPermissions.debug.xcconfig; sourceTree = ""; }; 8B83BB262BBE5BBBE29D484219313691 /* FIRInstallationsVersion.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstallationsVersion.m; path = FirebaseInstallations/Source/Library/FIRInstallationsVersion.m; sourceTree = ""; }; - 8B8B99BA10EB6FEB7DE47188B6497DC4 /* RCTAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTAnimatedNode.m; sourceTree = ""; }; + 8B8D4312D8CECFC2CC539184F64A496A /* UMCore.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = UMCore.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 8B94920A01B8710287F9A743EA846DDA /* 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; }; 8BA4766E612369BAF78ACC4EBB3AE196 /* YogaKit-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "YogaKit-prefix.pch"; sourceTree = ""; }; - 8BB70D45E218B6BDD9C887EEC783FEA2 /* RCTDisplayWeakRefreshable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTDisplayWeakRefreshable.h; path = Libraries/Image/RCTDisplayWeakRefreshable.h; sourceTree = ""; }; - 8BBF7A4E68A31F1A285B5CCB2E2A720B /* Compression.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = Compression.m; path = ios/src/Compression.m; sourceTree = ""; }; + 8BC9D5666DBDE5812E982739274F6669 /* TurboCxxModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TurboCxxModule.h; path = turbomodule/core/TurboCxxModule.h; sourceTree = ""; }; 8BCC0B43A01F577F47B92A3BDC5256E6 /* Memory.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Memory.h; path = folly/Memory.h; sourceTree = ""; }; + 8BCC733FAE8E026370783BD3B5DE6635 /* RNCAsyncStorage.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCAsyncStorage.m; path = ios/RNCAsyncStorage.m; sourceTree = ""; }; + 8BD211382ED263876E7B39576EFFA214 /* RCTRedBoxSetEnabled.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTRedBoxSetEnabled.h; sourceTree = ""; }; + 8BDD25E153EE6C3A3DF2D23400DD54D7 /* React.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = React.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 8BEA473D1F6CF8A1358C4DBD28302476 /* RCTTurboModule.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTTurboModule.mm; sourceTree = ""; }; 8BEC4C534A6D3D670A75EBA4EDD819D6 /* FIRCLSConstants.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSConstants.h; path = Crashlytics/Shared/FIRCLSConstants.h; sourceTree = ""; }; - 8BF50CF401F58BA46BBB4267EBE86F68 /* RCTActivityIndicatorView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTActivityIndicatorView.h; sourceTree = ""; }; + 8BF533513B80E51C6B6DC0B96AD7D3D0 /* EXAudioRecordingPermissionRequester.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXAudioRecordingPermissionRequester.m; path = EXAV/EXAudioRecordingPermissionRequester.m; sourceTree = ""; }; 8C1B34730033D942D6C95F3A713F9BF9 /* AsyncSSLSocket.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = AsyncSSLSocket.cpp; path = folly/io/async/AsyncSSLSocket.cpp; sourceTree = ""; }; - 8C2C2F77A371FE25D6BFC654A2C41283 /* REAAlwaysNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REAAlwaysNode.h; sourceTree = ""; }; + 8C2248AC90042C8E46ABB7FE87BA8903 /* RCTImageCache.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageCache.h; path = Libraries/Image/RCTImageCache.h; sourceTree = ""; }; 8C3E2A6E6F93E60E397F6C0BBA710BF5 /* libreact-native-cameraroll.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libreact-native-cameraroll.a"; path = "libreact-native-cameraroll.a"; sourceTree = BUILT_PRODUCTS_DIR; }; - 8C4134E0C4340461FD1D762382CBE11D /* RCTAlertManager.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTAlertManager.mm; sourceTree = ""; }; 8C41ED7C5AC74BCF1865059403971088 /* FormatArg.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FormatArg.h; path = folly/FormatArg.h; sourceTree = ""; }; - 8C43D22955C23139357D9411E1EDCFF8 /* UMViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = UMViewManager.m; path = UMCore/UMViewManager.m; sourceTree = ""; }; 8C52C315297E24DD1FD38925FB48D52D /* Async.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Async.h; path = folly/executors/Async.h; sourceTree = ""; }; + 8C61C84C3C5766BD74DDD64285BBF9A0 /* RCTActivityIndicatorViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTActivityIndicatorViewManager.m; sourceTree = ""; }; 8C6B8E2682440B9BF16413835AEC1954 /* evrpc.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = evrpc.h; path = src/evrpc.h; sourceTree = ""; }; 8C88A49AFD541B73D9A26B8F5D5760A9 /* UIImage+MemoryCacheCost.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIImage+MemoryCacheCost.h"; path = "SDWebImage/Core/UIImage+MemoryCacheCost.h"; sourceTree = ""; }; 8CBE4963EB65015C4E9BE84DB25AE408 /* config_enc.c */ = {isa = PBXFileReference; includeInIndex = 1; name = config_enc.c; path = src/enc/config_enc.c; sourceTree = ""; }; 8CC9178C366942FD6FF6A115604EAD58 /* libFirebaseCoreDiagnostics.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libFirebaseCoreDiagnostics.a; path = libFirebaseCoreDiagnostics.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 8CE53290CEDD217BE63998976F2DA19A /* RCTShadowView+Internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RCTShadowView+Internal.h"; sourceTree = ""; }; + 8CD5D3539D260B1648FD028509CE3E9C /* React-RCTBlob.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-RCTBlob.debug.xcconfig"; sourceTree = ""; }; + 8CDC7277B649B7DDE10FDF7A1ACDD84C /* EXHaptics.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = EXHaptics.debug.xcconfig; sourceTree = ""; }; + 8CEE4A50337FABC6F0F9FBC86217EE1D /* BitUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = BitUtils.h; path = yoga/BitUtils.h; sourceTree = ""; }; 8CF1FB8B22E115336F0A53CF3155F4D8 /* SysMman.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = SysMman.cpp; path = folly/portability/SysMman.cpp; sourceTree = ""; }; - 8CFFA97FB688C0969FCD2DA93D21FF25 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; + 8CF926B54ADE16ADC9B5AFD9FD5CC51D /* RCTNativeModule.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTNativeModule.mm; sourceTree = ""; }; 8D0622FE2CDA6CCD1D6D689EB4C1DB6C /* Foreach-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "Foreach-inl.h"; path = "folly/container/Foreach-inl.h"; sourceTree = ""; }; - 8D1134DE526545AC0020485B53160E33 /* EXImageLoader.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = EXImageLoader.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - 8D21A54B95992B2830429F8EC0D7B72C /* Yoga-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Yoga-umbrella.h"; sourceTree = ""; }; - 8D2D026EA4E9E0824B9E3EEAA9DB342B /* RCTBlobPlugins.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTBlobPlugins.mm; sourceTree = ""; }; - 8D2E9A5AE0578008F281459CB9A08251 /* rn-fetch-blob-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "rn-fetch-blob-prefix.pch"; sourceTree = ""; }; - 8D3086EF2EB0A64D617B13589B800213 /* RNDeviceInfo.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RNDeviceInfo.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 8D1F62BA31C127C20DF7A91703642F31 /* BSG_KSBacktrace_Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSBacktrace_Private.h; sourceTree = ""; }; 8D469401E7282C56A94687BBD09E5E22 /* SKBufferingPlugin.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SKBufferingPlugin.h; path = iOS/Plugins/FlipperKitNetworkPlugin/FlipperKitNetworkPlugin/SKBufferingPlugin.h; sourceTree = ""; }; - 8D5B65EA680A56B86A50DA10A3D7F7C0 /* RCTShadowView+Layout.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RCTShadowView+Layout.h"; sourceTree = ""; }; 8D5B9420E822B44A0D897C0AC9B8C336 /* FIRConfigurationInternal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRConfigurationInternal.h; path = FirebaseCore/Sources/FIRConfigurationInternal.h; sourceTree = ""; }; + 8D6AC6E074E3F8EFDEA205BAEBB6C0D0 /* EXReactNativeUserNotificationCenterProxy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXReactNativeUserNotificationCenterProxy.m; path = EXPermissions/EXReactNativeUserNotificationCenterProxy.m; sourceTree = ""; }; 8D6B664D18299F557A9D45D6AE6F1C85 /* Hardware.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Hardware.h; path = folly/synchronization/detail/Hardware.h; sourceTree = ""; }; - 8D7462D24C01C321F7282227C7D663F1 /* YGEnums.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YGEnums.h; path = yoga/YGEnums.h; sourceTree = ""; }; 8D7B9DF14EB9BB9B9F75E12937A9172D /* tag.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = tag.h; path = src/event2/tag.h; sourceTree = ""; }; - 8D9725FFDE06CB237251EADBA9827F86 /* RCTSettingsManager.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTSettingsManager.mm; sourceTree = ""; }; - 8DBF8053988363F40F01EF45A5F20C51 /* RCTSubtractionAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSubtractionAnimatedNode.h; sourceTree = ""; }; - 8DD04E2E3F09F73734B78C61CA50FDEE /* RCTBackedTextInputDelegateAdapter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTBackedTextInputDelegateAdapter.m; sourceTree = ""; }; 8DE7A55B5DD992C1A7299BBE472BF3D0 /* PBUtility.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PBUtility.h; path = Core/PBUtility.h; sourceTree = ""; }; + 8DEFFA9061DBC18CEFC789336C38F614 /* EXAudioSessionManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXAudioSessionManager.m; path = EXAV/EXAudioSessionManager.m; 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; }; - 8DF78B4B81C3C19E39ADF3D34859C626 /* FontAwesome.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = FontAwesome.ttf; path = Fonts/FontAwesome.ttf; sourceTree = ""; }; 8E05BCA7AA269FAA683F130F26D3A81C /* Flipper-Glog-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Flipper-Glog-prefix.pch"; sourceTree = ""; }; - 8E0942FED22AE1584C829F1A501050CF /* RCTComponentEvent.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTComponentEvent.m; sourceTree = ""; }; - 8E11BC2E323D9E5B7FF1559DA1C33D34 /* RCTI18nUtil.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTI18nUtil.m; sourceTree = ""; }; - 8E2A03B8D8AED7633E9C2A656C65C385 /* RCTInspector.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTInspector.h; sourceTree = ""; }; 8E2A0E7F36CBD96AA86B6CE6DED962A1 /* ThreadName.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ThreadName.h; path = folly/system/ThreadName.h; sourceTree = ""; }; - 8E33CF1D9E9DF4EEFA6D098667D23B55 /* RNNotificationCenterListener.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNNotificationCenterListener.m; path = RNNotifications/RNNotificationCenterListener.m; sourceTree = ""; }; 8E3894AD3EAF962787F17B00B35BE4AE /* FIRInstallationsStore.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstallationsStore.h; path = FirebaseInstallations/Source/Library/InstallationsStore/FIRInstallationsStore.h; sourceTree = ""; }; 8E3B8F7A4FD176040E2498D2F3F57C62 /* FormatTraits.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FormatTraits.h; path = folly/FormatTraits.h; sourceTree = ""; }; - 8E67975B58D2B1A70A0463A70D9C98E2 /* RCTTypedModuleConstants.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTTypedModuleConstants.mm; sourceTree = ""; }; + 8E40DE928DDC68FD9AC458211AF1D43A /* RNVectorIcons-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNVectorIcons-prefix.pch"; sourceTree = ""; }; + 8E6B1FC9174FFA5D5473016481D2A010 /* RCTBundleURLProvider.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTBundleURLProvider.m; sourceTree = ""; }; 8E97FF3BDA7FA877AA08E7C4A8AC7D85 /* ConstexprMath.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ConstexprMath.h; path = folly/ConstexprMath.h; sourceTree = ""; }; - 8EA5049FEBF87BF99988F7BB6B3A542A /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; - 8EB2991E18E7D43644487566155EB642 /* RCTEventEmitter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTEventEmitter.h; sourceTree = ""; }; + 8EAF2ABEBAEE8AC61024B9E248BE40FA /* UMTaskInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMTaskInterface.h; path = UMTaskManagerInterface/UMTaskInterface.h; sourceTree = ""; }; + 8EB53507BB5AD036B428E8B9C6B20031 /* RCTClipboard.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTClipboard.mm; sourceTree = ""; }; 8EB7BA7C2D608DD4B24E71DF6890FCF3 /* FIRCLSFABAsyncOperation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCLSFABAsyncOperation.m; path = Crashlytics/Shared/FIRCLSOperation/FIRCLSFABAsyncOperation.m; sourceTree = ""; }; 8EB952E1C1834C0CEEAA4E5B7C8DC4A0 /* BaselinesTcp.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = BaselinesTcp.cpp; path = rsocket/benchmarks/BaselinesTcp.cpp; sourceTree = ""; }; - 8EC00A7ED7541D5AD658A650F838AA21 /* RCTRawTextViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTRawTextViewManager.m; sourceTree = ""; }; + 8EBB277779041E089174E8AA450A4FF7 /* UMBridgeModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMBridgeModule.h; path = UMReactNativeAdapter/UMBridgeModule.h; sourceTree = ""; }; 8EC24129B4FA709297C0376D4F3DB49C /* fi.lproj */ = {isa = PBXFileReference; includeInIndex = 1; name = fi.lproj; path = "Objective-C/TOCropViewController/Resources/fi.lproj"; sourceTree = ""; }; - 8ECE5C83E42031C57AFA60904FC4FC2A /* RCTSurfaceRootShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSurfaceRootShadowView.m; sourceTree = ""; }; - 8ED6C5125E97E6C0BE9830041766E1FF /* RCTCxxModule.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTCxxModule.mm; sourceTree = ""; }; - 8EEC86B693C1EB3C320557DB3E620D43 /* RCTPackagerConnection.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTPackagerConnection.h; sourceTree = ""; }; - 8EECD41092463F29BACCCD2298420D8D /* EXKeepAwake.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = EXKeepAwake.debug.xcconfig; sourceTree = ""; }; - 8F09C7FE093BD6A8CB157D39E6DEDE75 /* React-RCTSettings.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-RCTSettings.debug.xcconfig"; sourceTree = ""; }; + 8EEA6FF4DAB07349163475C36A98AEF4 /* BugsnagCrashReport.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagCrashReport.m; sourceTree = ""; }; 8F0BDAD9EFE406337A2721013B9C95D8 /* Stdlib.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = Stdlib.cpp; path = folly/portability/Stdlib.cpp; sourceTree = ""; }; - 8F167E84E5A3D212C35C3D03EFF6A5D4 /* UMLogHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMLogHandler.h; sourceTree = ""; }; - 8F1A5F0294AEA295494496A575F3A18A /* UIResponder+FirstResponder.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIResponder+FirstResponder.m"; path = "lib/UIResponder+FirstResponder.m"; sourceTree = ""; }; - 8F2B98A5CB6CE9E676C25C5F561036F0 /* KeyCommands.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = KeyCommands.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; 8F2EFC9F3617C8132B2F6ED699A3FC2E /* SDWebImage-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "SDWebImage-dummy.m"; sourceTree = ""; }; - 8F48120974347F228002F54F74B3C924 /* FBReactNativeSpec-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "FBReactNativeSpec-prefix.pch"; sourceTree = ""; }; 8F53895CE18DB5979CA76E1A13E482C2 /* signalhandler.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = signalhandler.cc; path = src/signalhandler.cc; sourceTree = ""; }; - 8F611C971DC6C25C30C08F61592DF945 /* YGNodePrint.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YGNodePrint.h; path = yoga/YGNodePrint.h; sourceTree = ""; }; 8F65F9361F2069CF9E9D751272968DE4 /* libRNGestureHandler.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libRNGestureHandler.a; path = libRNGestureHandler.a; sourceTree = BUILT_PRODUCTS_DIR; }; 8F6AEDA79A8AAC0437A28D32567B8E55 /* AsyncSignalHandler.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = AsyncSignalHandler.cpp; path = folly/io/async/AsyncSignalHandler.cpp; sourceTree = ""; }; 8F78C6C493DC228F73D41AA872A1C837 /* boost-for-react-native.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "boost-for-react-native.debug.xcconfig"; sourceTree = ""; }; - 8F7C4E8018EE5B378B08284AF2C6DDBD /* RNSScreenStackHeaderConfig.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNSScreenStackHeaderConfig.m; path = ios/RNSScreenStackHeaderConfig.m; sourceTree = ""; }; 8F95B87CBA8D3DEC656CF9C2135D0B04 /* GULReachabilityChecker.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GULReachabilityChecker.m; path = GoogleUtilities/Reachability/GULReachabilityChecker.m; sourceTree = ""; }; - 8FA1CAFA4C9B4AD3FE1691EE96767F7B /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; - 8FB5DFA213A6F5AE786C9DA06E5EDB97 /* react-native-mmkv-storage.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "react-native-mmkv-storage.release.xcconfig"; sourceTree = ""; }; + 8F99BA0A8FE3787106919BC94AF7D27D /* RCTBaseTextInputViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBaseTextInputViewManager.h; sourceTree = ""; }; + 8FBB9920B3E73D1D0B0A17C7569C0394 /* EXAppleAuthenticationButton.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXAppleAuthenticationButton.m; path = EXAppleAuthentication/EXAppleAuthenticationButton.m; sourceTree = ""; }; + 8FD8C9381A1166824EB8418F2B1D311C /* UMMagnetometerInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMMagnetometerInterface.h; path = UMSensorsInterface/UMMagnetometerInterface.h; sourceTree = ""; }; 8FDD40201F0C41EE6AEFC14203F65DE8 /* neon.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = neon.h; path = src/dsp/neon.h; sourceTree = ""; }; - 90005C773AC1EFD5D5B29B0F7235021F /* RCTTouchHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTTouchHandler.m; sourceTree = ""; }; - 9003E57E05EE3384CF26A33747B1CED5 /* ARTGroup.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = ARTGroup.m; path = ios/ARTGroup.m; sourceTree = ""; }; - 900EEA5C36AE7A75E22929B621BA6B8A /* UMJavaScriptContextProvider.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMJavaScriptContextProvider.h; sourceTree = ""; }; - 901F6C3CC60644CE3995BF7CFBAD085E /* RCTDisplayLink.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTDisplayLink.h; sourceTree = ""; }; - 903475102B1C946FCDB837495FCD97FC /* BSG_RFC3339DateTool.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_RFC3339DateTool.h; sourceTree = ""; }; + 8FE9000EA3825958DF2C2198FD2C9EAD /* SharedProxyCxxModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = SharedProxyCxxModule.h; sourceTree = ""; }; + 8FEA09CC7B4D4195993E82D320ECE105 /* RNCSliderManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCSliderManager.h; path = ios/RNCSliderManager.h; sourceTree = ""; }; + 9007DA4879E432350FF922D4EB8F6335 /* RNGestureHandler.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNGestureHandler.debug.xcconfig; sourceTree = ""; }; + 902C5ECA46518635A6D739983EE418D2 /* EXAVObject.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXAVObject.h; path = EXAV/EXAVObject.h; sourceTree = ""; }; 903F37D638B5A2D8CFAA8D79ECFFB78D /* Format-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "Format-inl.h"; path = "folly/Format-inl.h"; sourceTree = ""; }; 9040CA74CF22B52BABD4D4B8B77ACE34 /* opensslconf-armv7.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "opensslconf-armv7.h"; path = "ios/include/openssl/opensslconf-armv7.h"; sourceTree = ""; }; - 904B9C0F5B5A4A0CC2B435A98A9779B8 /* RCTMultilineTextInputViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTMultilineTextInputViewManager.h; sourceTree = ""; }; + 90469AF3AF7112DF002C9E324FC959B2 /* CallInvoker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CallInvoker.h; path = ReactCommon/CallInvoker.h; sourceTree = ""; }; + 9052DA01A55F1C47B7B92919552AAC8B /* RNEventEmitter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNEventEmitter.m; path = RNNotifications/RNEventEmitter.m; sourceTree = ""; }; 9054638FF8871861E9C23D6601268C24 /* muxread.c */ = {isa = PBXFileReference; includeInIndex = 1; name = muxread.c; path = src/mux/muxread.c; sourceTree = ""; }; 906166F8F6237D4A6C79C75455EC449A /* SKApplicationDescriptor.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SKApplicationDescriptor.m; path = iOS/Plugins/FlipperKitLayoutPlugin/FlipperKitLayoutPlugin/descriptors/SKApplicationDescriptor.m; sourceTree = ""; }; - 9073EFAD818C1FA4F37190C29FEAA509 /* ARTBrush.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = ARTBrush.h; sourceTree = ""; }; + 90671AFB24B23C612EE709778E139CFD /* React-RCTSettings-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-RCTSettings-prefix.pch"; sourceTree = ""; }; + 9089C34DED7890F744A034D53AC63CCD /* REANodesManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = REANodesManager.h; path = ios/REANodesManager.h; sourceTree = ""; }; 908B1CD128E2967199FC5CC569F1DD63 /* SingletonStackTrace.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = SingletonStackTrace.cpp; path = folly/detail/SingletonStackTrace.cpp; sourceTree = ""; }; - 9095A8339EAF826F8FB8A8E2D6AAA2D5 /* BSG_KSMach_x86_64.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSMach_x86_64.c; sourceTree = ""; }; - 9095C8C20E0F58DB23E6714B8B6B30E6 /* RCTMaskedViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTMaskedViewManager.m; sourceTree = ""; }; + 90ADEADA3FED0223508CDE9C57889B0B /* MMKVStorage.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MMKVStorage.h; path = ios/MMKVStorage.h; sourceTree = ""; }; 90AEA309616B0DEB92A68DDF81BF2B53 /* String.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = String.h; path = folly/gen/String.h; sourceTree = ""; }; 90C235A36EF61092E414856544339A50 /* EventCount.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EventCount.h; path = folly/experimental/EventCount.h; sourceTree = ""; }; 90D63813C0FF0B6ACC623D4497FF0AA8 /* UIImageView+WebCache.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIImageView+WebCache.h"; path = "SDWebImage/Core/UIImageView+WebCache.h"; sourceTree = ""; }; 90D9525835B6AB395CDB85717D5A9F14 /* UIColor+SKSonarValueCoder.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = "UIColor+SKSonarValueCoder.mm"; path = "iOS/Plugins/FlipperKitLayoutPlugin/FlipperKitLayoutPlugin/UIColor+SKSonarValueCoder.mm"; sourceTree = ""; }; - 90DB9C70CE53A913FF931358A1D8C403 /* EXAVPlayerData.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXAVPlayerData.m; path = EXAV/EXAVPlayerData.m; sourceTree = ""; }; - 90DFDB23DB864442441F33314557D9D8 /* RCTAdditionAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTAdditionAnimatedNode.m; sourceTree = ""; }; 90FC79C77E4F46863DD475533D06E8F4 /* UIColor+SDHexString.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIColor+SDHexString.m"; path = "SDWebImage/Private/UIColor+SDHexString.m"; sourceTree = ""; }; - 90FF7CA990EA226AB6851046F9699FD9 /* BSG_KSMach.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSMach.h; sourceTree = ""; }; 911D8D1A649CF9EBF0D5F5E5062C0ECB /* Pods-RocketChatRN-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Pods-RocketChatRN-umbrella.h"; sourceTree = ""; }; 911F870DD3159E5F5F52BA6B6094D2AA /* double-conversion.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = "double-conversion.cc"; path = "double-conversion/double-conversion.cc"; sourceTree = ""; }; + 912BA1E2CAE114B62C57ED3F4C700B4F /* RNSScreenStack.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNSScreenStack.m; path = ios/RNSScreenStack.m; sourceTree = ""; }; + 913108B8E542C35EFE7A98D981C757F4 /* react-native-webview.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "react-native-webview.debug.xcconfig"; sourceTree = ""; }; 9143FB31FA4301876510AD9235A3C234 /* VirtualEventBase.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = VirtualEventBase.h; path = folly/io/async/VirtualEventBase.h; sourceTree = ""; }; 9147902687EC685DC7A0853698C3F430 /* ThreadWheelTimekeeper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ThreadWheelTimekeeper.h; path = folly/futures/ThreadWheelTimekeeper.h; sourceTree = ""; }; - 915700DD14407039EC42E6694948F955 /* EXHapticsModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXHapticsModule.h; path = EXHaptics/EXHapticsModule.h; sourceTree = ""; }; - 915B1A2624639A65AF4D4364F75D87E9 /* RCTImageViewManager.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTImageViewManager.mm; sourceTree = ""; }; 9173891E3F3EC1623353E06611BEC253 /* GDTCORConsoleLogger.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GDTCORConsoleLogger.m; path = GoogleDataTransport/GDTCORLibrary/GDTCORConsoleLogger.m; sourceTree = ""; }; 917E1258AD649A23A7D45A50A6F05A94 /* MPMCQueue.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MPMCQueue.h; path = folly/MPMCQueue.h; sourceTree = ""; }; 917F98C847A7B25E7D52D5C48C15980D /* RecordIO-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "RecordIO-inl.h"; path = "folly/io/RecordIO-inl.h"; sourceTree = ""; }; 91AD235C714EBB54A9B7D23DD02EB46A /* objects.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = objects.h; path = ios/include/openssl/objects.h; sourceTree = ""; }; - 91D26622E5B73F31C2DB5F3294D5D338 /* RCTJavaScriptLoader.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTJavaScriptLoader.mm; sourceTree = ""; }; + 91C48B1F78B88184004A5D51728858E6 /* React-RCTVibration-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-RCTVibration-prefix.pch"; sourceTree = ""; }; + 91C94719B3D638CB8C0670CBA747F353 /* ARTGroupManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = ARTGroupManager.h; sourceTree = ""; }; 91D35E2CDD2B60CDB96841698F3B78F4 /* UIImage+MultiFormat.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIImage+MultiFormat.h"; path = "SDWebImage/Core/UIImage+MultiFormat.h"; sourceTree = ""; }; - 91D44CABDC0D8AD4BC46D00AE2FF9304 /* RCTModalHostViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTModalHostViewController.m; sourceTree = ""; }; - 91D62A8596825C76C9F5DF8594429232 /* RNCSafeAreaView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCSafeAreaView.h; path = ios/SafeAreaView/RNCSafeAreaView.h; sourceTree = ""; }; - 91E9687C6628063123FD14C1A1C30A45 /* RCTInputAccessoryView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTInputAccessoryView.m; sourceTree = ""; }; - 91FDDBDAD2D606535800280794F4064E /* FBReactNativeSpec.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = FBReactNativeSpec.release.xcconfig; sourceTree = ""; }; - 920F7DABE38B2A1C16988B0AF4DD7A5F /* EXFileSystemAssetLibraryHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXFileSystemAssetLibraryHandler.h; path = EXFileSystem/EXFileSystemAssetLibraryHandler.h; sourceTree = ""; }; + 9223FA494673CD43DA2500F7B4A51C60 /* UIView+React.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "UIView+React.h"; sourceTree = ""; }; + 9227DC0B4D5E0AB81CAB51D97D06A271 /* RCTUtils.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTUtils.m; sourceTree = ""; }; + 924751BF042ACF3265E90211373C25C8 /* RNBridgeModule.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNBridgeModule.m; path = RNNotifications/RNBridgeModule.m; sourceTree = ""; }; + 925028FF257DC4634FE1F08F7AEEB619 /* ja.lproj */ = {isa = PBXFileReference; includeInIndex = 1; name = ja.lproj; path = ios/QBImagePicker/QBImagePicker/ja.lproj; sourceTree = ""; }; 92672784570B66A01FFF23C2E8A1C554 /* FLEXUtility.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FLEXUtility.h; path = iOS/Plugins/FlipperKitNetworkPlugin/SKIOSNetworkPlugin/FLEXNetworkLib/FLEXUtility.h; sourceTree = ""; }; - 926C6D196E10F4DAD7C994F18B3594EA /* UMUIManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMUIManager.h; sourceTree = ""; }; + 926D4CD55284EDD3FC2D802D0CC09EC7 /* QBAssetsViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = QBAssetsViewController.h; path = ios/QBImagePicker/QBImagePicker/QBAssetsViewController.h; sourceTree = ""; }; + 927D77391B15AFCED6611B2DC1F6AC61 /* RCTBaseTextShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTBaseTextShadowView.m; sourceTree = ""; }; 9289416E86B95FD37AC0002DD58D2C24 /* Flipper-PeerTalk.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Flipper-PeerTalk.debug.xcconfig"; sourceTree = ""; }; - 92BEB7AEBDE30BF45FAD8DB1B5442E8D /* UMAppLoader.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMAppLoader.release.xcconfig; sourceTree = ""; }; - 92C6D968F1F420CEE7A114F9CBD45464 /* TurboModule.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = TurboModule.cpp; path = turbomodule/core/TurboModule.cpp; sourceTree = ""; }; - 92C76AF1348C178EFD29816522B1F654 /* ARTNodeManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = ARTNodeManager.m; sourceTree = ""; }; - 92CF9D8485DEFCA6FBF506106721C94B /* RNCSafeAreaViewMode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCSafeAreaViewMode.h; path = ios/SafeAreaView/RNCSafeAreaViewMode.h; sourceTree = ""; }; + 928B34EE018B6DC4BF8F81D20D6EB3CA /* EXAV.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = EXAV.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 92B3D1C9836ABB9BC4DE52FEC56CD705 /* RCTMaskedViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTMaskedViewManager.m; sourceTree = ""; }; + 92BDCD7D6F411370B1DCFD5DA2976D9A /* React-RCTVibration-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-RCTVibration-dummy.m"; sourceTree = ""; }; 92E8976EA262E215049AD45EEAC21C54 /* GULNetworkConstants.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GULNetworkConstants.m; path = GoogleUtilities/Network/GULNetworkConstants.m; sourceTree = ""; }; 92E8E2E486970F4DB8BF6C93FB711312 /* listener.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = listener.h; path = src/event2/listener.h; sourceTree = ""; }; - 9325E3AAD552A67B0D70E04CD20D10DF /* RCTAppearance.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTAppearance.mm; sourceTree = ""; }; + 92FFCAC82C739423D616A6982313AD6F /* RCTNativeAnimatedNodesManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTNativeAnimatedNodesManager.m; sourceTree = ""; }; 933C27038580EAD8CAE905C91C0BE11C /* SanitizeThread.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SanitizeThread.h; path = folly/synchronization/SanitizeThread.h; sourceTree = ""; }; + 934E8C7477C105654FF661A2CE291B34 /* BSG_KSCrashReport.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashReport.h; sourceTree = ""; }; 9352FB7DBE05F5908BBEC7CE1034322B /* symbolize.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = symbolize.cc; path = src/symbolize.cc; sourceTree = ""; }; - 936D72B3D0E143CB516F5BF22CBADAB4 /* FontAwesome5_Brands.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = FontAwesome5_Brands.ttf; path = Fonts/FontAwesome5_Brands.ttf; sourceTree = ""; }; + 936DC778B9AE5AF1EDC86AA43520F2D2 /* QBSlomoIconView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = QBSlomoIconView.m; path = ios/QBImagePicker/QBImagePicker/QBSlomoIconView.m; sourceTree = ""; }; 937253B4856F1DE53A7FD910DA71B5FE /* FKPortForwardingServer.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FKPortForwardingServer.m; path = iOS/FlipperKit/FKPortForwarding/FKPortForwardingServer.m; sourceTree = ""; }; 937CACDBE2FDCB5F2864652AE4CB2CCC /* UIView+WebCache.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIView+WebCache.m"; path = "SDWebImage/Core/UIView+WebCache.m"; sourceTree = ""; }; 937F2556B135DB1FFA4339F72FF08A5C /* ja.lproj */ = {isa = PBXFileReference; includeInIndex = 1; name = ja.lproj; path = "Objective-C/TOCropViewController/Resources/ja.lproj"; sourceTree = ""; }; - 9389A0A7F1E6F8E7BABB2B8B3338002F /* UMModuleRegistryHolderReactModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMModuleRegistryHolderReactModule.h; sourceTree = ""; }; + 937FFBD26A0A534E7B9202058831929F /* RCTFileReaderModule.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTFileReaderModule.mm; sourceTree = ""; }; 93A400BE9A8667F9CE4942F5DF5C10C8 /* NamedThreadFactory.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = NamedThreadFactory.h; path = folly/executors/thread_factory/NamedThreadFactory.h; sourceTree = ""; }; + 93B719540A604229267E3FC6CADE0DB7 /* RCTScrollEvent.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTScrollEvent.h; sourceTree = ""; }; + 93B9066F801BD5FCBC67504C5239E200 /* en.lproj */ = {isa = PBXFileReference; includeInIndex = 1; name = en.lproj; path = ios/QBImagePicker/QBImagePicker/en.lproj; sourceTree = ""; }; 93C3EC20DAA7C79A3553580682FEA63A /* JitsiMeetSDK.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = JitsiMeetSDK.debug.xcconfig; sourceTree = ""; }; - 93C901F6E9CB1802982E6C0C7077F5F0 /* RCTBridge.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTBridge.m; sourceTree = ""; }; 93CBA8312ED75FAD8501C96FEFAB5F9C /* SSLOptions.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SSLOptions.h; path = folly/io/async/SSLOptions.h; sourceTree = ""; }; - 93D74EFB015CFD784B0E79903C6773F4 /* react-native-webview.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = "react-native-webview.podspec"; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 93DB38E9D30DB45A730E514C59E52670 /* RNFBJSON.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNFBJSON.m; path = ios/RNFBApp/RNFBJSON.m; sourceTree = ""; }; 93DB970351CFB42D89631ED4E5475730 /* Shell.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Shell.h; path = folly/system/Shell.h; sourceTree = ""; }; 93E710FA9E3AAACAA3D2107F0F8F8EA5 /* FIRCLSExecutionIdentifierModel.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCLSExecutionIdentifierModel.m; path = Crashlytics/Crashlytics/Models/FIRCLSExecutionIdentifierModel.m; sourceTree = ""; }; - 93F9FF021CB8FF0AD61A20E7765A5EDC /* RCTImageEditingManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageEditingManager.h; path = Libraries/Image/RCTImageEditingManager.h; sourceTree = ""; }; + 940BFA34F0166285361309FBAD942031 /* LNInterpolable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = LNInterpolable.h; sourceTree = ""; }; + 940CAEA0D4D0F3B3EDA2ADB528E0CFD6 /* RCTUIManagerObserverCoordinator.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTUIManagerObserverCoordinator.mm; sourceTree = ""; }; + 9410A1266643F02DA74B202C9B383204 /* RNGestureHandlerEvents.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNGestureHandlerEvents.h; path = ios/RNGestureHandlerEvents.h; sourceTree = ""; }; + 942AA1418D70DA7612B50F21C0E24336 /* RCTModalHostViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTModalHostViewManager.h; sourceTree = ""; }; + 94329657EDFCEF7DF01F1FD4D4689DF7 /* Color+Interpolation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Color+Interpolation.m"; sourceTree = ""; }; 9447D505967836D58DBCC077927687D4 /* StreamStateMachineBase.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = StreamStateMachineBase.cpp; path = rsocket/statemachine/StreamStateMachineBase.cpp; sourceTree = ""; }; - 94517B67FE4516FD0F03BF2463721F9E /* RNCommandsHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCommandsHandler.m; path = RNNotifications/RNCommandsHandler.m; sourceTree = ""; }; + 94488B1BA3670A4CA9A874AF44BD6D20 /* RCTAnimatedImage.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTAnimatedImage.h; path = Libraries/Image/RCTAnimatedImage.h; sourceTree = ""; }; + 9449A50CF22507F460ECAD220F2E714B /* UMKernelService.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMKernelService.h; sourceTree = ""; }; + 94532D180CFB10D28416D4AB053726F3 /* BSG_KSSignalInfo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSSignalInfo.h; sourceTree = ""; }; 945BA2FD8A0CFBC2569706DC93627D71 /* FIRHeartbeatInfo.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRHeartbeatInfo.m; path = FirebaseCore/Sources/FIRHeartbeatInfo.m; sourceTree = ""; }; 946C22680302D08D06B06AABA99505BF /* libssl.a */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = archive.ar; name = libssl.a; path = ios/lib/libssl.a; sourceTree = ""; }; + 9490BFAF124F8A78496C431CD5445F01 /* react-native-jitsi-meet.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "react-native-jitsi-meet.debug.xcconfig"; sourceTree = ""; }; + 94C474C82BBF846E160C0EEA99712E0B /* YGConfig.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = YGConfig.cpp; path = yoga/YGConfig.cpp; sourceTree = ""; }; 94D1498095DD6CBFCF581AD7D5F99A9C /* bit_reader_utils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = bit_reader_utils.h; path = src/utils/bit_reader_utils.h; sourceTree = ""; }; 94F9E3E5E9EC0B8F78F414B70D50FBE1 /* FIRCLSHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSHandler.h; path = Crashlytics/Crashlytics/Handlers/FIRCLSHandler.h; sourceTree = ""; }; 94FBC8A647FFBC1523F9F0EE2B213506 /* AtomicReadMostlyMainPtr.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AtomicReadMostlyMainPtr.h; path = folly/experimental/AtomicReadMostlyMainPtr.h; sourceTree = ""; }; 94FC7CB00AEB28FEBFD5D8AFC620F9F0 /* TOActivityCroppedImageProvider.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TOActivityCroppedImageProvider.h; path = "Objective-C/TOCropViewController/Models/TOActivityCroppedImageProvider.h"; sourceTree = ""; }; + 9508603F6BA1F20B9C84BA262FE29F08 /* React-jsiexecutor.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-jsiexecutor.debug.xcconfig"; sourceTree = ""; }; 95164075C77A0ED9148AFA34AF9AFCCC /* FIRCLSURLBuilder.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCLSURLBuilder.m; path = Crashlytics/Shared/FIRCLSNetworking/FIRCLSURLBuilder.m; sourceTree = ""; }; + 9527CB009A4357CB2F39838184EA439B /* RNFBAppModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNFBAppModule.h; path = ios/RNFBApp/RNFBAppModule.h; sourceTree = ""; }; + 952A2656D29E2D1D857D9963B29F4D0B /* 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; }; 95362C0876B6F247A01415419E797923 /* SocketFileDescriptorMap.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SocketFileDescriptorMap.h; path = folly/net/detail/SocketFileDescriptorMap.h; sourceTree = ""; }; 954C19028C0EF32BBAB56BB49FF5319D /* SoftRealTimeExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SoftRealTimeExecutor.h; path = folly/executors/SoftRealTimeExecutor.h; sourceTree = ""; }; - 955B0ABD6B881D56D89D8467D05E1026 /* api.md */ = {isa = PBXFileReference; includeInIndex = 1; name = api.md; path = docs/api.md; sourceTree = ""; }; - 956610D9438018359D0D415E964CFF83 /* RAMBundleRegistry.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = RAMBundleRegistry.cpp; sourceTree = ""; }; + 95552E68437FC08D2603DC7402B322FC /* 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; }; 95792416180CB79A3E224367C8411ABF /* FramedDuplexConnection.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = FramedDuplexConnection.cpp; path = rsocket/framing/FramedDuplexConnection.cpp; sourceTree = ""; }; 957C501B84FB837BF8EECF92583374B2 /* InlineExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = InlineExecutor.h; path = folly/executors/InlineExecutor.h; sourceTree = ""; }; - 959694E837863732CC9FDA8D7E47D5E8 /* UMPermissionsInterface.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMPermissionsInterface.release.xcconfig; sourceTree = ""; }; - 959A86D7CA7F0B8E5DEEE309EE719700 /* UMPermissionsInterface.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMPermissionsInterface.debug.xcconfig; sourceTree = ""; }; + 958AA812FE979273FA6E04F1FCCF266A /* RNNotificationsStore.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNNotificationsStore.m; path = RNNotifications/RNNotificationsStore.m; sourceTree = ""; }; + 9597C5FDD1C3DF6E58BC339393117A8E /* RNCSlider.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCSlider.m; path = ios/RNCSlider.m; sourceTree = ""; }; + 95B91A66CA8605937DD44B8BCE56913F /* RCTTVNavigationEventEmitter.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTTVNavigationEventEmitter.mm; sourceTree = ""; }; 95DE5B6E1976CB78D2814FC724DA3541 /* SDImageTransformer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageTransformer.h; path = SDWebImage/Core/SDImageTransformer.h; sourceTree = ""; }; - 95F83EBEB4ECB16ACBC42F3E9CE72C42 /* ARTGroupManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = ARTGroupManager.m; sourceTree = ""; }; + 960B4102D57AFFD168882E44F6C6A10F /* RCTUIManagerObserverCoordinator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTUIManagerObserverCoordinator.h; sourceTree = ""; }; + 9611129164E010EA84C5F775861C7C6F /* RCTImagePlugins.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTImagePlugins.mm; sourceTree = ""; }; 961935ECB499C57F8D4C22EC2E4B497F /* OpenSSLThreading.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = OpenSSLThreading.cpp; path = folly/ssl/detail/OpenSSLThreading.cpp; sourceTree = ""; }; + 96221E20136A570A19171990887748A1 /* RCTSafeAreaViewLocalData.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSafeAreaViewLocalData.h; sourceTree = ""; }; 9622397634A3DEBEC00CE06C1B64BC8E /* AtFork.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = AtFork.cpp; path = folly/detail/AtFork.cpp; sourceTree = ""; }; + 96254962E9F5AD16AD3798790DDCCED6 /* RCTWrapperViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTWrapperViewController.h; sourceTree = ""; }; + 963157A18BD178C2AA8EAF185FFC0E9D /* ReactNativeKeyboardInput-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "ReactNativeKeyboardInput-prefix.pch"; sourceTree = ""; }; 963491A9E62786E0785789D2BF070D8D /* FlipperKitNetworkPlugin.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = FlipperKitNetworkPlugin.mm; path = iOS/Plugins/FlipperKitNetworkPlugin/FlipperKitNetworkPlugin/FlipperKitNetworkPlugin.mm; sourceTree = ""; }; 9642778E87FC8AC3F9807B8EE25E64BE /* Builtins.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Builtins.h; path = folly/portability/Builtins.h; sourceTree = ""; }; + 9646485F24F614398BC73538B6CE21C5 /* JSBigString.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = JSBigString.h; sourceTree = ""; }; + 964DF8C124013716020586FB8E272B1E /* EXFileSystem.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = EXFileSystem.debug.xcconfig; sourceTree = ""; }; 965A9B1B192D2C5521B1E99C0A146FD8 /* SDImageCache.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageCache.h; path = SDWebImage/Core/SDImageCache.h; sourceTree = ""; }; - 96791F5A9A48663AF83F84E7F2133EAE /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; + 9668D6F640B397BA9765B303A819F2BD /* React-RCTBlob-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-RCTBlob-dummy.m"; sourceTree = ""; }; + 966AA607301E1831C4088AB16DB00954 /* BSG_RFC3339DateTool.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_RFC3339DateTool.h; sourceTree = ""; }; + 96884B759FC1D69163EC573BBAA4514C /* InspectorInterfaces.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = InspectorInterfaces.cpp; sourceTree = ""; }; + 9688B6270FB8A586180122234A624D03 /* BSG_RFC3339DateTool.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BSG_RFC3339DateTool.m; sourceTree = ""; }; 96962FA38898F1D7D4495FB7F8ED9007 /* FIRCLSMachOSlice.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSMachOSlice.h; path = Crashlytics/Shared/FIRCLSMachO/FIRCLSMachOSlice.h; sourceTree = ""; }; - 96977E1E25852EB139B549371C3666EF /* react-native-cameraroll-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "react-native-cameraroll-dummy.m"; sourceTree = ""; }; 9698A308246F9C475EFC0CF7FA7A64DD /* SKEnvironmentVariables.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SKEnvironmentVariables.h; path = iOS/FlipperKit/SKEnvironmentVariables.h; sourceTree = ""; }; - 96A5DDE33DAAF319864E22ED91A799C8 /* RNFBPreferences.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNFBPreferences.h; path = ios/RNFBApp/RNFBPreferences.h; sourceTree = ""; }; 96ACEF693DD14A9B36554DE1C8837282 /* SDAsyncBlockOperation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDAsyncBlockOperation.h; path = SDWebImage/Private/SDAsyncBlockOperation.h; sourceTree = ""; }; 96CBD3DFD7AE046C50C14ADC5555748F /* Conv.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = Conv.cpp; path = folly/Conv.cpp; sourceTree = ""; }; 96ED6D0B147039A5268A285F7593E9D4 /* yuv.c */ = {isa = PBXFileReference; includeInIndex = 1; name = yuv.c; path = src/dsp/yuv.c; sourceTree = ""; }; - 96F2D40B663B82645158A02DAE87A215 /* EXAVObject.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXAVObject.h; path = EXAV/EXAVObject.h; sourceTree = ""; }; - 96FF522E85734C284A19EAC6F444B151 /* RCTInspectorDevServerHelper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTInspectorDevServerHelper.h; sourceTree = ""; }; - 97018D259B0D126C7761FC5EE81F5875 /* RCTMultipartDataTask.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTMultipartDataTask.m; sourceTree = ""; }; + 96FC6DC0FB470B4764455E508828D276 /* RCTDisplayLink.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTDisplayLink.h; sourceTree = ""; }; 9703307287BB820F43947525D8118ED1 /* ecdh.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ecdh.h; path = ios/include/openssl/ecdh.h; sourceTree = ""; }; 97110259DEEEC959980EF0B409E72C19 /* FlipperPlugin.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FlipperPlugin.h; path = iOS/FlipperKit/FlipperPlugin.h; sourceTree = ""; }; - 97111BCA615D199C20E6289EC41F916F /* QBAlbumsViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = QBAlbumsViewController.m; path = ios/QBImagePicker/QBImagePicker/QBAlbumsViewController.m; sourceTree = ""; }; - 972C4F6156743DD2B5BFA918D19EF30E /* react-native-background-timer-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "react-native-background-timer-prefix.pch"; sourceTree = ""; }; - 972D4F3CE9FD350F5376D01A66A01447 /* UMViewManagerAdapter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = UMViewManagerAdapter.m; sourceTree = ""; }; - 9742D07E86C58B356E1D2CEB3111A2C6 /* UMBarCodeScannerInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMBarCodeScannerInterface.h; path = UMBarCodeScannerInterface/UMBarCodeScannerInterface.h; sourceTree = ""; }; - 975098775A42414F7AAA7795254F9785 /* InspectorInterfaces.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = InspectorInterfaces.h; sourceTree = ""; }; - 9756F390C20B248FE2AED8586A06FDC1 /* EXPermissions.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = EXPermissions.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 972B2B9D0D7A9ED5AFAEECE53FAC793E /* RCTRootContentView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTRootContentView.h; sourceTree = ""; }; 97574DE18C289347F6F2311612C39496 /* FirebaseCoreInternal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FirebaseCoreInternal.h; path = FirebaseCore/Sources/Private/FirebaseCoreInternal.h; sourceTree = ""; }; - 976883AF4FFF2235B2E1D4C0363C9AB3 /* React-RCTNetwork.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-RCTNetwork.debug.xcconfig"; sourceTree = ""; }; - 977F25FEB3197F59727F735FB9A4B52C /* REAOperatorNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REAOperatorNode.m; sourceTree = ""; }; - 9786B1A5600381B6C52DD3A9F2D05699 /* BugsnagCrashReport.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagCrashReport.m; sourceTree = ""; }; + 9760996D61B1B09583A96BF0100D6BB7 /* RCTInputAccessoryShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTInputAccessoryShadowView.h; sourceTree = ""; }; + 976B22DD2542425C4BFAE4920F68EDAF /* IDStore.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = IDStore.h; path = ios/IDStore.h; sourceTree = ""; }; 978853D7DE99A100A1E0B34E3A260704 /* YogaKit-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "YogaKit-dummy.m"; sourceTree = ""; }; - 97946DB7F94ECF921C090ACD88EC84B9 /* RCTSettingsManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTSettingsManager.h; path = Libraries/Settings/RCTSettingsManager.h; sourceTree = ""; }; - 97A7F1B2F686CD42E85B04316E0C4EB8 /* EXFileSystem-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "EXFileSystem-prefix.pch"; sourceTree = ""; }; + 9798277A54963024E6DD67D09BFD0255 /* RCTDiffClampAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTDiffClampAnimatedNode.m; sourceTree = ""; }; 97B52D167651C3523F3B2CAEEF7423B0 /* StringKeyedSet.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = StringKeyedSet.h; path = folly/experimental/StringKeyedSet.h; sourceTree = ""; }; 97CC0FF8649FB8EAD461676E8C9E66EA /* UncaughtExceptions.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UncaughtExceptions.h; path = folly/lang/UncaughtExceptions.h; sourceTree = ""; }; - 97CD3F3743671CC2E9A1905DCE895CE3 /* react-native-document-picker.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "react-native-document-picker.debug.xcconfig"; sourceTree = ""; }; + 97CC85F7A322A8C883D2DC8C8F378FB1 /* Yoga.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = Yoga.modulemap; sourceTree = ""; }; 97D45684300495848DE355FFF2A07FF7 /* RWSpinLock.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RWSpinLock.h; path = folly/synchronization/RWSpinLock.h; sourceTree = ""; }; 97DF756AD67125EB16F06106BF5E7483 /* AtomicHashArray.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AtomicHashArray.h; path = folly/AtomicHashArray.h; sourceTree = ""; }; - 97E1C7B8094B7C41A67AEE34F254929F /* EXVideoManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = EXVideoManager.h; sourceTree = ""; }; - 97FAE25906FA0C5B669A7BC9232E6E51 /* UMEventEmitter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMEventEmitter.h; sourceTree = ""; }; 97FEA7485A09F5353062258212D80D74 /* rescaler_mips32.c */ = {isa = PBXFileReference; includeInIndex = 1; name = rescaler_mips32.c; path = src/dsp/rescaler_mips32.c; sourceTree = ""; }; - 9828A8AAB0301FDF0CAA66114B6B0F92 /* EXWebBrowser.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = EXWebBrowser.release.xcconfig; sourceTree = ""; }; - 984462F627EEC579F8FAB2038D2E2ED2 /* RNNotificationParser.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNNotificationParser.m; path = RNNotifications/RNNotificationParser.m; sourceTree = ""; }; + 9804337B398BEDDB77F5A55B45ED6C99 /* RNCAsyncStorage.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RNCAsyncStorage.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 982337379B5505C2FF997F9BE7F00ACC /* RCTJSInvokerModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTJSInvokerModule.h; sourceTree = ""; }; + 9841D0FF9A7C6DD086FD60A318148839 /* RCTLayoutAnimation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTLayoutAnimation.h; sourceTree = ""; }; 985640F0769CFC44BE8784A0524828E4 /* SysTime.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = SysTime.cpp; path = folly/portability/SysTime.cpp; sourceTree = ""; }; + 985774EE5032AA9267DA1E8C579E4E5F /* RCTSwitch.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSwitch.m; sourceTree = ""; }; 985B607491C9F769B6EAFD506485D15A /* ssl3.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ssl3.h; path = ios/include/openssl/ssl3.h; sourceTree = ""; }; - 986846FDBC8F47730A77A72F406E0D63 /* StorageSetters.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = StorageSetters.h; path = ios/StorageSetters.h; sourceTree = ""; }; + 985E381BAEC05757D3A5E26F1E14DA61 /* React-RCTVibration.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-RCTVibration.debug.xcconfig"; sourceTree = ""; }; + 9869AC02AFA8E00FE51A11DA36240D93 /* RCTConvert+FFFastImage.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "RCTConvert+FFFastImage.h"; path = "ios/FastImage/RCTConvert+FFFastImage.h"; sourceTree = ""; }; 986DBEC29D4033BC81B8504B155CDCC0 /* Sched.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = Sched.cpp; path = folly/portability/Sched.cpp; sourceTree = ""; }; 987E724D105C08C2B33EF09F8AA46FC4 /* Observables.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Observables.h; path = yarpl/observable/Observables.h; sourceTree = ""; }; 9881F43C243FDB00FAA65A90C28A02F1 /* fast-dtoa.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = "fast-dtoa.cc"; path = "double-conversion/fast-dtoa.cc"; sourceTree = ""; }; - 9883B17F95BA54EB43C4F6A7546EBE95 /* RCTImageCache.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageCache.h; path = Libraries/Image/RCTImageCache.h; sourceTree = ""; }; - 9895AF8412268FD8D4DAF8A22D61597E /* RCTConvert.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTConvert.m; sourceTree = ""; }; - 989770EEA06C006434521276B799FE3F /* react-native-mmkv-storage.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "react-native-mmkv-storage.debug.xcconfig"; sourceTree = ""; }; 98BDFC3334866AB049C88363913B1E61 /* FlipperConnectionManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FlipperConnectionManager.h; path = xplat/Flipper/FlipperConnectionManager.h; sourceTree = ""; }; - 98CD077C1D0F8C6C84D2A0C2F903C1A4 /* React-RCTAnimation.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-RCTAnimation.release.xcconfig"; sourceTree = ""; }; 98D10C3C764BA701C0A2378F32F87478 /* ThreadCachedArena.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ThreadCachedArena.h; path = folly/memory/ThreadCachedArena.h; sourceTree = ""; }; - 98EBD075FA88BF61298059B8DA66AA69 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; + 98DE811D2532B4CAA9C599E4B2E6BA45 /* UIResponder+FirstResponder.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIResponder+FirstResponder.m"; path = "lib/UIResponder+FirstResponder.m"; sourceTree = ""; }; + 98E6EE1E1ABABF95E92F9E03E4540801 /* RCTMultiplicationAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTMultiplicationAnimatedNode.h; sourceTree = ""; }; + 98EF64E50320540970E31E69E5DCA16C /* RNVectorIcons.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RNVectorIcons.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 98FBFC4013373EA7B9B7B048270F2A84 /* React-RCTImage.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-RCTImage.release.xcconfig"; sourceTree = ""; }; + 99187B5EAF9E7564364CA44D29DDCFBA /* RCTUITextView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTUITextView.h; sourceTree = ""; }; 991B3A59C2EDBD7A7B485E185AEBF277 /* FirebaseCoreInternal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FirebaseCoreInternal.h; path = FirebaseCore/Sources/Private/FirebaseCoreInternal.h; sourceTree = ""; }; - 992A0C44C44C004243A5AE0CE646E74C /* CoreModulesPlugins.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = CoreModulesPlugins.mm; sourceTree = ""; }; 992F321CB4568B26B5C1CF22009BF270 /* FlipperState.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FlipperState.h; path = xplat/Flipper/FlipperState.h; sourceTree = ""; }; 9930E8BDE14FD0D5625A004F75A0E2D9 /* FIRCLSSymbolResolver.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSSymbolResolver.h; path = Crashlytics/Crashlytics/Models/FIRCLSSymbolResolver.h; sourceTree = ""; }; 9936E01F702B68A71DF6FC5030D94EE3 /* GULNSData+zlib.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "GULNSData+zlib.m"; path = "GoogleUtilities/NSData+zlib/GULNSData+zlib.m"; sourceTree = ""; }; - 9954C32DE398F63ED844FD968BB12B07 /* RCTAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTAnimatedNode.h; sourceTree = ""; }; + 996CA1B2ED72FED261FD9F4EB0C4DF6B /* EXFilePermissionModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXFilePermissionModule.h; path = EXFileSystem/EXFilePermissionModule.h; sourceTree = ""; }; 99720D30D4764EB212A54A8391F1E358 /* TOCropView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TOCropView.h; path = "Objective-C/TOCropViewController/Views/TOCropView.h"; sourceTree = ""; }; 9972B9BC9C002FD13E6707E9A8DBFE6F /* SharedMutex.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = SharedMutex.cpp; path = folly/SharedMutex.cpp; sourceTree = ""; }; - 997AB438C329A5D35A6336ED9765FC02 /* RNFetchBlobReqBuilder.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNFetchBlobReqBuilder.m; path = ios/RNFetchBlobReqBuilder.m; sourceTree = ""; }; - 9981F892813556A167C03F63AC749F45 /* RCTUIManagerObserverCoordinator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTUIManagerObserverCoordinator.h; sourceTree = ""; }; - 998927E494E0F739E6998287E1AC76F0 /* RCTDivisionAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTDivisionAnimatedNode.m; sourceTree = ""; }; + 999EF40AE7C056063D6705BA9FA716F5 /* 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; }; 99AEEADA8EC16435EEA450BA7441D9E0 /* filters_utils.c */ = {isa = PBXFileReference; includeInIndex = 1; name = filters_utils.c; path = src/utils/filters_utils.c; sourceTree = ""; }; 99C813405B591F8BFD2D6CD68736A8E8 /* FIRCLSDemangleOperation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSDemangleOperation.h; path = Crashlytics/Crashlytics/Operations/Symbolication/FIRCLSDemangleOperation.h; sourceTree = ""; }; 99D5CD245388DC76AAEF6E1E351A90ED /* libFlipper-Folly.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libFlipper-Folly.a"; path = "libFlipper-Folly.a"; sourceTree = BUILT_PRODUCTS_DIR; }; - 99F58E282FEF8BDA0B95DA503C648D0F /* RCTKeyCommands.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTKeyCommands.h; sourceTree = ""; }; 9A0AEEA6606F62C0D917BF535E738CB7 /* SDWebImageDownloaderOperation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageDownloaderOperation.h; path = SDWebImage/Core/SDWebImageDownloaderOperation.h; sourceTree = ""; }; + 9A0BE951918932EC5D6FC7CE50BFF59C /* LNInterpolable.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = LNInterpolable.m; sourceTree = ""; }; + 9A18F10C9821DF66F748687E16DED678 /* RCTModalHostView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTModalHostView.m; sourceTree = ""; }; 9A1FFCE20159753D7E09360DCAC6D3DC /* F14Policy.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = F14Policy.h; path = folly/container/detail/F14Policy.h; sourceTree = ""; }; 9A243DF2061DEFDDE291EBD729D7655D /* fixed-dtoa.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = "fixed-dtoa.cc"; path = "double-conversion/fixed-dtoa.cc"; sourceTree = ""; }; 9A3A339A287C5D9E83CC0225775DEA6B /* UIView+Yoga.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIView+Yoga.h"; path = "YogaKit/Source/UIView+Yoga.h"; sourceTree = ""; }; 9A405F82D82FA8A50DE20C1F529C0E82 /* ms.lproj */ = {isa = PBXFileReference; includeInIndex = 1; name = ms.lproj; path = "Objective-C/TOCropViewController/Resources/ms.lproj"; sourceTree = ""; }; - 9A65D311022D7BFDACF39403893FB47C /* RCTImageURLLoaderWithAttribution.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageURLLoaderWithAttribution.h; path = Libraries/Image/RCTImageURLLoaderWithAttribution.h; sourceTree = ""; }; - 9A67BC0E541A9D25F6A5A49A2496768B /* advancedIos.md */ = {isa = PBXFileReference; includeInIndex = 1; name = advancedIos.md; path = docs/advancedIos.md; sourceTree = ""; }; - 9A6C6418ABC4B09CEFF6B38431FE6BC2 /* ReactNativeKeyboardTrackingView-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "ReactNativeKeyboardTrackingView-dummy.m"; sourceTree = ""; }; + 9A8C3BE4125E69A396D54F11F1B7D3AA /* RCTConvert+REATransition.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RCTConvert+REATransition.h"; sourceTree = ""; }; 9AAD329D923DF61B72274D9B19EEA53E /* FIRCLSAllocate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSAllocate.h; path = Crashlytics/Crashlytics/Helpers/FIRCLSAllocate.h; sourceTree = ""; }; - 9AAD9AAE289E0315C796CF02BFAFDE3B /* RCTSpringAnimation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSpringAnimation.h; sourceTree = ""; }; 9AB29DC06EE128715B33DB814DC5E8AF /* rsa.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = rsa.h; path = ios/include/openssl/rsa.h; sourceTree = ""; }; - 9AC7037A842FA66D08FF6BD2709717AF /* RCTInspectorPackagerConnection.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTInspectorPackagerConnection.m; sourceTree = ""; }; - 9ACC090CEF53BA228E9E012822B6E4A5 /* RCTAsyncLocalStorage.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTAsyncLocalStorage.h; path = React/CoreModules/RCTAsyncLocalStorage.h; sourceTree = ""; }; 9ACDD1DA4A9D536AC0542C4DF7A4D413 /* enc_msa.c */ = {isa = PBXFileReference; includeInIndex = 1; name = enc_msa.c; path = src/dsp/enc_msa.c; sourceTree = ""; }; 9AE36B038AFA428DEBA76CA96A143D34 /* Flipper-Folly.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Flipper-Folly.debug.xcconfig"; sourceTree = ""; }; - 9AECD6EC4451B67D03D0D7D74FDE2039 /* react-native-cookies.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = "react-native-cookies.podspec"; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - 9AF7B0CC25C462C892C25ED32E403843 /* REAModule.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = REAModule.m; path = ios/REAModule.m; sourceTree = ""; }; + 9B0CD9409BD7015ED66ADBCD54D55FCE /* RCTActionSheetManager.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTActionSheetManager.mm; sourceTree = ""; }; 9B388418E1C1B0C5BD30ADC617A0BD2F /* fixed-dtoa.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "fixed-dtoa.h"; path = "double-conversion/fixed-dtoa.h"; sourceTree = ""; }; - 9B5AE0DD6A87483AEAA0CE242842D5D8 /* RCTActivityIndicatorViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTActivityIndicatorViewManager.m; sourceTree = ""; }; + 9B61A899427E38398366D0D471FDD053 /* react-native-document-picker.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "react-native-document-picker.release.xcconfig"; sourceTree = ""; }; 9B644E8F792C7D96366611784707B904 /* GULUserDefaults.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GULUserDefaults.m; path = GoogleUtilities/UserDefaults/GULUserDefaults.m; sourceTree = ""; }; - 9B78BB3D98202529AB26B2984777EF0D /* RNBootSplash-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNBootSplash-prefix.pch"; sourceTree = ""; }; 9B7D9C2885ED2D1F790D780396244B06 /* SSLErrors.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = SSLErrors.cpp; path = folly/io/async/ssl/SSLErrors.cpp; sourceTree = ""; }; 9B7F2E6D40A0A33BC5C39F075891F642 /* Checksum.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = Checksum.cpp; path = folly/hash/Checksum.cpp; sourceTree = ""; }; 9B87BD89FFC807940769C52E39B7D396 /* SDDisplayLink.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDDisplayLink.m; path = SDWebImage/Private/SDDisplayLink.m; sourceTree = ""; }; 9B8B0A5EFCC70AA16059E58D6A0F5686 /* FIRCLSSignal.c */ = {isa = PBXFileReference; includeInIndex = 1; name = FIRCLSSignal.c; path = Crashlytics/Crashlytics/Handlers/FIRCLSSignal.c; sourceTree = ""; }; 9B92A8C3A17DC006F69609EDB40FAC57 /* Array.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Array.h; path = folly/container/Array.h; sourceTree = ""; }; 9B943BAF7A4D7FB395F978A04887D78D /* DoubleConversion-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "DoubleConversion-dummy.m"; sourceTree = ""; }; - 9BB8A71916E82392E9B0197A36C12033 /* EXFileSystem.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXFileSystem.m; path = EXFileSystem/EXFileSystem.m; sourceTree = ""; }; - 9BBA329A5AFD8FB3EE0B6841AC58A737 /* RCTMultipartDataTask.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTMultipartDataTask.h; sourceTree = ""; }; - 9BCA5CC96CCBEDF28E76366D11D0DCD6 /* React-RCTVibration.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-RCTVibration.release.xcconfig"; sourceTree = ""; }; - 9BD20D74B498C6B21EF33BCFA9DE5CE6 /* EXVideoManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = EXVideoManager.m; sourceTree = ""; }; + 9BAFD80338701D5B54FD9E8F9AA825BC /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; 9C008C1F8B7D5C3D0ABD2E35A1E531BA /* FIRCLSAsyncOperation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSAsyncOperation.h; path = Crashlytics/Crashlytics/Operations/FIRCLSAsyncOperation.h; sourceTree = ""; }; - 9C02F22582D35C53EC5190F4523609DA /* BSGOutOfMemoryWatchdog.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BSGOutOfMemoryWatchdog.m; sourceTree = ""; }; - 9C139D4A013059575C84F37E15B3D6D9 /* RNConfigReader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNConfigReader.h; path = ios/RNConfigReader.h; sourceTree = ""; }; + 9C0BD7B90625A3C61DFC9548B3F17020 /* React-jsi.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-jsi.debug.xcconfig"; sourceTree = ""; }; + 9C135EEF6C4A819558A09EC787D03B47 /* RCTLinkingPlugins.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTLinkingPlugins.mm; sourceTree = ""; }; 9C14C10E415C0FB7E8D386356542A928 /* FIRCLSUnwind.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSUnwind.h; path = Crashlytics/Crashlytics/Unwind/FIRCLSUnwind.h; sourceTree = ""; }; 9C19CD202FEDA943E5C4C727D4503CC1 /* Flipper-Glog.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Flipper-Glog.debug.xcconfig"; sourceTree = ""; }; + 9C278A6C573FD2DAEE0768B796883548 /* YGFloatOptional.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YGFloatOptional.h; path = yoga/YGFloatOptional.h; sourceTree = ""; }; + 9C3161FAC00CE3C00310EFF7BE18806A /* rn-extensions-share.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "rn-extensions-share.debug.xcconfig"; sourceTree = ""; }; 9C31B69AFD927F9BE6E1A94CCD9164E1 /* UIImage+ForceDecode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIImage+ForceDecode.m"; path = "SDWebImage/Core/UIImage+ForceDecode.m"; sourceTree = ""; }; + 9C32669A17D6C47E7847952EB929DA10 /* RNJitsiMeetView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNJitsiMeetView.h; path = ios/RNJitsiMeetView.h; sourceTree = ""; }; + 9C3712E8E67C8FAA4F51A34DAB269461 /* BugsnagErrorReportApiClient.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagErrorReportApiClient.m; sourceTree = ""; }; 9C386215B39976F2E820F9A16C88C6F3 /* ReentrantAllocator.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = ReentrantAllocator.cpp; path = folly/memory/ReentrantAllocator.cpp; sourceTree = ""; }; - 9C4817758DDF25685598ECC209BFEA71 /* react-native-jitsi-meet-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "react-native-jitsi-meet-prefix.pch"; sourceTree = ""; }; 9C535830E31A68A8EADBA46E7414357B /* PromisesObjC.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = PromisesObjC.debug.xcconfig; sourceTree = ""; }; 9C58E09797BE08EE799C7076EE6C01B0 /* json_patch.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = json_patch.cpp; path = folly/json_patch.cpp; sourceTree = ""; }; 9C60B15390B5A15B6AD61A8B8AB6D5ED /* MMKVLog_Android.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = MMKVLog_Android.cpp; path = Core/MMKVLog_Android.cpp; sourceTree = ""; }; - 9C64C7FE4B28EB30762C6FAF226BE8C8 /* RNGestureHandlerRegistry.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNGestureHandlerRegistry.h; path = ios/RNGestureHandlerRegistry.h; sourceTree = ""; }; 9C73F356DA3B1B322CA002072CF42AFB /* Windows.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Windows.h; path = folly/portability/Windows.h; sourceTree = ""; }; 9C94FB841D192F3EB68DC8E42209D490 /* OpenSSLHash.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = OpenSSLHash.cpp; path = folly/ssl/OpenSSLHash.cpp; sourceTree = ""; }; - 9C9DF2BCD1A1D783499D7E9241637784 /* RCTImageCache.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTImageCache.m; sourceTree = ""; }; - 9CC79B7BEEE1E05B8DF70B4DBDA723A3 /* RCTProgressViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTProgressViewManager.m; sourceTree = ""; }; + 9CB3E350CD65B8202DD367A2AD86B6DF /* EXAppleAuthentication.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = EXAppleAuthentication.debug.xcconfig; sourceTree = ""; }; + 9CC2D1FA1DF8FDEF7C6C8C812593AFF9 /* RCTCustomKeyboardViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTCustomKeyboardViewController.h; sourceTree = ""; }; 9CCE0DA26BC84DBAE8148CCBB079AB04 /* FirebaseInstallations.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = FirebaseInstallations.release.xcconfig; sourceTree = ""; }; - 9CD365776BC1EB2E9332DED86771899D /* RCTNativeModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTNativeModule.h; sourceTree = ""; }; + 9CE0AEE5BE154EE0241E057F573CF680 /* BSG_KSCrashReportVersion.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashReportVersion.h; sourceTree = ""; }; 9CF89B85A794B593C2AE74CE7073EE37 /* vlog_is_on.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = vlog_is_on.h; path = src/glog/vlog_is_on.h; sourceTree = ""; }; + 9CFABA37DA49BE1E73E2D3391A077BC3 /* EXAV.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = EXAV.debug.xcconfig; sourceTree = ""; }; 9D02B362DE7861F6C9B7347A03D2D01A /* GULNetwork.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GULNetwork.m; path = GoogleUtilities/Network/GULNetwork.m; sourceTree = ""; }; - 9D1786199ACA405C5B41D1408981881F /* UMViewManagerAdapter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMViewManagerAdapter.h; sourceTree = ""; }; + 9D0860B0933BF1CD715BB6899A3B8FFD /* RCTSurface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSurface.h; sourceTree = ""; }; 9D211109B139C4F112758357ACA1723A /* SDImageFrame.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageFrame.h; path = SDWebImage/Core/SDImageFrame.h; sourceTree = ""; }; 9D3D5B888BA8A95E4120BA945FED3CAE /* FIROptionsInternal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIROptionsInternal.h; path = FirebaseCore/Sources/Private/FIROptionsInternal.h; sourceTree = ""; }; 9D442D7D50ECFFDDED55BA30FCB89821 /* x509v3.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = x509v3.h; path = ios/include/openssl/x509v3.h; sourceTree = ""; }; - 9D6343DDC6EE24F07C4D558FC43986AD /* RCTStyleAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTStyleAnimatedNode.m; sourceTree = ""; }; - 9D6562AF4C78020462C6A942F8BE3937 /* RNFastImage-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNFastImage-dummy.m"; sourceTree = ""; }; - 9D7522F84C8F35A7C9E425262305F26D /* react-native-document-picker-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "react-native-document-picker-dummy.m"; sourceTree = ""; }; - 9D7C3470532BBEEA08DDD0E597BF0C2F /* RCTKeyCommandsManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTKeyCommandsManager.h; path = ios/KeyCommands/RCTKeyCommandsManager.h; sourceTree = ""; }; + 9D531ECD3EF97077C1F842731A53A609 /* RCTSurfacePresenterStub.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSurfacePresenterStub.h; sourceTree = ""; }; + 9D6AD1009A74ED5DA0C3A7BC500DE4E9 /* RCTAsyncLocalStorage.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTAsyncLocalStorage.h; path = React/CoreModules/RCTAsyncLocalStorage.h; sourceTree = ""; }; + 9D7291D61325DACDDA505BC04F56F0F6 /* UMConstantsInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMConstantsInterface.h; path = UMConstantsInterface/UMConstantsInterface.h; sourceTree = ""; }; + 9D7514896A50398E7EA0AF2CFAD692E9 /* RCTTurboModuleManager.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTTurboModuleManager.mm; sourceTree = ""; }; 9D940727FF8FB9C785EB98E56350EF41 /* Podfile */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; name = Podfile; path = ../Podfile; sourceTree = SOURCE_ROOT; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - 9D94BC0386E5D8C156D64018EBAD9D52 /* RNCAppearance.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCAppearance.m; path = ios/Appearance/RNCAppearance.m; sourceTree = ""; }; + 9D9426143F78D6A00BBA6C6748C66DDB /* RCTSliderManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSliderManager.h; sourceTree = ""; }; 9D9D9A65222FA9A86B8147D0913D4418 /* Hash.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Hash.h; path = folly/hash/Hash.h; sourceTree = ""; }; - 9DD1E5F69423AB2A0A02E30A9CA3ABFF /* RCTMessageThread.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTMessageThread.mm; sourceTree = ""; }; - 9DF08272BC2BBD540559EBBF70AB3D38 /* RCTLinkingPlugins.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTLinkingPlugins.h; path = Libraries/LinkingIOS/RCTLinkingPlugins.h; sourceTree = ""; }; + 9DBAD84969F82BA7D0F42A81EF550E8B /* BugsnagReactNative-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "BugsnagReactNative-prefix.pch"; sourceTree = ""; }; 9E0B1D61A483077FB4BDBC262DE16D7B /* FIRCLSUserLogging.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCLSUserLogging.m; path = Crashlytics/Crashlytics/Components/FIRCLSUserLogging.m; sourceTree = ""; }; 9E0CA6933B225B17A6B95C12EB10D68E /* FIRCoreDiagnosticsInterop.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCoreDiagnosticsInterop.h; path = Interop/CoreDiagnostics/Public/FIRCoreDiagnosticsInterop.h; sourceTree = ""; }; 9E17D90CDC0CB979623935CA74C62CBE /* PTProtocol.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PTProtocol.h; path = peertalk/PTProtocol.h; sourceTree = ""; }; 9E235FB4D7E0FC2F6BB891FE35288C5D /* FIRCLSDwarfUnwind.c */ = {isa = PBXFileReference; includeInIndex = 1; name = FIRCLSDwarfUnwind.c; path = Crashlytics/Crashlytics/Unwind/Dwarf/FIRCLSDwarfUnwind.c; sourceTree = ""; }; 9E29D0D7334990552C28F6888E1C4D0A /* dec_sse41.c */ = {isa = PBXFileReference; includeInIndex = 1; name = dec_sse41.c; path = src/dsp/dec_sse41.c; sourceTree = ""; }; + 9E33E8382AA04A7442BA30501C24922A /* RCTUIManagerUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTUIManagerUtils.h; sourceTree = ""; }; + 9E39C6DAC1D6CA3C2CC0DDC038164A03 /* notificationsEvents.md */ = {isa = PBXFileReference; includeInIndex = 1; name = notificationsEvents.md; path = docs/notificationsEvents.md; sourceTree = ""; }; 9E5018DDC168FC068C8643A56FC722A5 /* FIRAppInternal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAppInternal.h; path = FirebaseCore/Sources/Private/FIRAppInternal.h; sourceTree = ""; }; + 9E5B1F1258B76DB7E85081EC04F9AFD0 /* RCTInputAccessoryView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTInputAccessoryView.m; sourceTree = ""; }; + 9E60FD2DBE9C28B37BF52A4082D2AB13 /* react-native-cookies.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = "react-native-cookies.podspec"; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 9E65967C63D7AB04A54F68B80B6E055C /* ARTNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = ARTNode.m; path = ios/ARTNode.m; sourceTree = ""; }; + 9E9178349C1FCD24AC93463651817C93 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; 9E939B8E866B114B5E15E3AB4668EDFA /* AtomicHashMap-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "AtomicHashMap-inl.h"; path = "folly/AtomicHashMap-inl.h"; sourceTree = ""; }; - 9EA6F3D6EA1060EB6E4E2F552FCFA1B7 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; + 9EBE8513EE9880A09F02B09F80CABF56 /* RNDateTimePicker.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNDateTimePicker.release.xcconfig; sourceTree = ""; }; 9EC316318A17B21512726BC118D88BED /* GDTCCTNanopbHelpers.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GDTCCTNanopbHelpers.m; path = GoogleDataTransportCCTSupport/GDTCCTLibrary/GDTCCTNanopbHelpers.m; sourceTree = ""; }; - 9EC8B77FD7AF90D9D433A22F1C9CD121 /* RNPinchHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNPinchHandler.h; sourceTree = ""; }; 9ED083F33A0F5839CEF34A1AAAA3E985 /* GDTCORTransport.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCORTransport.h; path = GoogleDataTransport/GDTCORLibrary/Public/GDTCORTransport.h; sourceTree = ""; }; 9ED19ABBF136854713A6A0B531EAEB55 /* AsymmetricMemoryBarrier.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AsymmetricMemoryBarrier.h; path = folly/synchronization/AsymmetricMemoryBarrier.h; sourceTree = ""; }; 9ED7836E27AA6987A9009F6A6F03831A /* openssl_aes_core.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = openssl_aes_core.cpp; path = Core/aes/openssl/openssl_aes_core.cpp; sourceTree = ""; }; + 9EE82643589B6B444972EAFDB060005F /* StorageIndexer.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = StorageIndexer.m; path = ios/StorageIndexer.m; sourceTree = ""; }; + 9EF4D85CD5500AE0E4C251422BD71977 /* RNCSafeAreaView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCSafeAreaView.h; path = ios/SafeAreaView/RNCSafeAreaView.h; sourceTree = ""; }; + 9F00C6A6BA9CCFAEF0F09F948E183213 /* RCTImageEditingManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageEditingManager.h; path = Libraries/Image/RCTImageEditingManager.h; sourceTree = ""; }; 9F02B8E06B5366040123CFC317EB0B44 /* dso.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = dso.h; path = ios/include/openssl/dso.h; sourceTree = ""; }; - 9F1539EF19F291E33E18CF6ACA7243FA /* en.lproj */ = {isa = PBXFileReference; includeInIndex = 1; name = en.lproj; path = React/AccessibilityResources/en.lproj; sourceTree = ""; }; 9F263719772A77F5C2E42FDE20EE9DEC /* Pods-RocketChatRN.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-RocketChatRN.debug.xcconfig"; sourceTree = ""; }; 9F2BEF9C2CDA35054BB8CDB6F043B70C /* MMKVAppExtension-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "MMKVAppExtension-prefix.pch"; sourceTree = ""; }; 9F4F55FE24F77A70BC872152E4464161 /* Pods-ShareRocketChatRN.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = "Pods-ShareRocketChatRN.modulemap"; sourceTree = ""; }; - 9F5FB1133346CDEE3A80F43F9818DA61 /* BSG_KSCrashSentry_Signal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashSentry_Signal.h; sourceTree = ""; }; + 9F4FF8DB7EA8496850F44B17A9CF6A3F /* RNDateTimePickerManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNDateTimePickerManager.m; path = ios/RNDateTimePickerManager.m; sourceTree = ""; }; + 9F759A5DE7DB4BB9A632215E541A1A8E /* RNFBCrashlytics.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RNFBCrashlytics.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 9F891121EEA4702D42F6AAA827307D16 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; + 9F923030088F5EF171441B34C08DE856 /* QBCheckmarkView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = QBCheckmarkView.h; path = ios/QBImagePicker/QBImagePicker/QBCheckmarkView.h; sourceTree = ""; }; 9FA0CAA0DBA73E40FA693E392FDDF4B0 /* PTPrivate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PTPrivate.h; path = peertalk/PTPrivate.h; sourceTree = ""; }; - 9FBB73BC0A70066DE7B0D55ED7C7E6E2 /* EXImageLoader.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXImageLoader.m; path = EXImageLoader/EXImageLoader.m; sourceTree = ""; }; - 9FBEA02E5196810C727737B18F6B1714 /* EXConstants-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "EXConstants-dummy.m"; sourceTree = ""; }; + 9FBFE3CD91607A87E38C7F2703008CBA /* EXAVPlayerData.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXAVPlayerData.h; path = EXAV/EXAVPlayerData.h; sourceTree = ""; }; 9FD4F19E4FFAE26D101861C7BC5EBC3E /* rescaler_neon.c */ = {isa = PBXFileReference; includeInIndex = 1; name = rescaler_neon.c; path = src/dsp/rescaler_neon.c; sourceTree = ""; }; 9FE7DEE152750D82905E5832F1204F44 /* Expected.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Expected.h; path = folly/Expected.h; sourceTree = ""; }; - 9FF0C1156D7F1A10C946731FA6527EA3 /* RNFastImage.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNFastImage.debug.xcconfig; sourceTree = ""; }; - A00B982F3152D612DA89C42AA3D557D3 /* FBLazyIterator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBLazyIterator.h; path = FBLazyVector/FBLazyIterator.h; sourceTree = ""; }; + 9FF293186ED50310BDCC3A0C25E87310 /* RCTInputAccessoryViewContent.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTInputAccessoryViewContent.m; sourceTree = ""; }; + A011BD194B23AF009EB317519D100168 /* RNCAssetsLibraryRequestHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCAssetsLibraryRequestHandler.m; path = ios/RNCAssetsLibraryRequestHandler.m; sourceTree = ""; }; A019E28A9E6E9CEEEC24F9DD589D9797 /* ProtocolVersion.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = ProtocolVersion.cpp; path = rsocket/framing/ProtocolVersion.cpp; sourceTree = ""; }; - A02E3E4C96E1FCA8111B57A57848B543 /* RNCSafeAreaProviderManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCSafeAreaProviderManager.m; path = ios/SafeAreaView/RNCSafeAreaProviderManager.m; sourceTree = ""; }; A02FCE0F66D4AD8D30EF8F3D3220A020 /* PTChannel.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PTChannel.h; path = peertalk/PTChannel.h; sourceTree = ""; }; A032E4FC910ABA49E338E0AC91B2B97F /* FBCxxFollyDynamicConvert.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = FBCxxFollyDynamicConvert.mm; path = iOS/FlipperKit/FBCxxFollyDynamicConvert/FBCxxFollyDynamicConvert.mm; sourceTree = ""; }; - A034566B83E983D9806592EDBE69FD2B /* RCTClipboard.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTClipboard.mm; sourceTree = ""; }; A038B84D33708A323BCFB602B94B3342 /* SysTypes.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SysTypes.h; path = folly/portability/SysTypes.h; sourceTree = ""; }; + A040D2A508FC97D0624B679E432009E6 /* RCTBackedTextInputDelegateAdapter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBackedTextInputDelegateAdapter.h; sourceTree = ""; }; + A04698F69678504C1A8CA9E946179C70 /* RNCSafeAreaViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCSafeAreaViewManager.m; path = ios/SafeAreaView/RNCSafeAreaViewManager.m; sourceTree = ""; }; A04E55087F1F61F47FBA0C46CF8C0F68 /* EventHandler.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = EventHandler.cpp; path = folly/io/async/EventHandler.cpp; sourceTree = ""; }; A06DC7C82953AC69C5D7905573C55933 /* FIRCLSInternalLogging.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSInternalLogging.h; path = Crashlytics/Crashlytics/Helpers/FIRCLSInternalLogging.h; sourceTree = ""; }; + A06F44C23C163B4F269E96945E65FD7B /* EXSessionResumableDownloadTaskDelegate.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = EXSessionResumableDownloadTaskDelegate.m; sourceTree = ""; }; A072AB80F980D7FE4CCC2BB9E9D99BBA /* FIRDependency.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRDependency.h; path = FirebaseCore/Sources/Private/FIRDependency.h; sourceTree = ""; }; A078DB82A9259F4CCE65EC283A390837 /* FirebaseCoreDiagnostics.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = FirebaseCoreDiagnostics.debug.xcconfig; sourceTree = ""; }; A0860189B4CD7E1B30B0913458634F61 /* FIRCLSInstallIdentifierModel.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCLSInstallIdentifierModel.m; path = Crashlytics/Crashlytics/Models/FIRCLSInstallIdentifierModel.m; sourceTree = ""; }; A086D7B4B5A4FE6CDB6218F2B406B9C9 /* Conv.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = Conv.cpp; path = folly/Conv.cpp; sourceTree = ""; }; - A08A165C896418C3816BAC1386022A3D /* RCTInterpolationAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTInterpolationAnimatedNode.h; sourceTree = ""; }; A090123081DFFADF3C37F389302B64E2 /* GDTCORUploadPackage_Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCORUploadPackage_Private.h; path = GoogleDataTransport/GDTCORLibrary/Private/GDTCORUploadPackage_Private.h; sourceTree = ""; }; - A09B64E1D9E3D975BB07A80B50A52E68 /* ARTGroupManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = ARTGroupManager.h; sourceTree = ""; }; - A0DE001CBD28C67A32BEF86396867FAE /* JSBigString.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = JSBigString.h; sourceTree = ""; }; - A0E3D551643091C512D0440DF27E283A /* RCTSurfaceStage.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSurfaceStage.m; sourceTree = ""; }; + A0B0D38822DBDA9C98F9A683465E4E58 /* advancedIos.md */ = {isa = PBXFileReference; includeInIndex = 1; name = advancedIos.md; path = docs/advancedIos.md; sourceTree = ""; }; + A0B44E05599C2819FCABBFC5AD39381B /* RCTTextShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTextShadowView.h; sourceTree = ""; }; + A0CE93BFF6227FCEB68103B8AD513393 /* RNCookieManagerIOS.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCookieManagerIOS.h; path = ios/RNCookieManagerIOS/RNCookieManagerIOS.h; sourceTree = ""; }; + A0D05D00D0095A754EAE82B02671E2CB /* react-native-orientation-locker.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "react-native-orientation-locker.release.xcconfig"; sourceTree = ""; }; A0ECF424449EA2D5D9C79F30028F6038 /* Phase.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Phase.h; path = folly/init/Phase.h; sourceTree = ""; }; A0EE4A228D6AAC610D5CD90F8E99A512 /* filters_sse2.c */ = {isa = PBXFileReference; includeInIndex = 1; name = filters_sse2.c; path = src/dsp/filters_sse2.c; sourceTree = ""; }; A0F9F4DBF0A8CF4BAD10ECCEEA33001E /* Flipper-DoubleConversion.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Flipper-DoubleConversion.debug.xcconfig"; sourceTree = ""; }; - A10CB91755CDCBCFD134C92A4C6BCF54 /* RCTSegmentedControlManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSegmentedControlManager.m; sourceTree = ""; }; A124B205AD056AE7D5175FB2AEFBB3FA /* FIRCLSSettings.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCLSSettings.m; path = Crashlytics/Crashlytics/Models/FIRCLSSettings.m; sourceTree = ""; }; + A12E12EE8EAF7671F7B4E3B99567F41A /* RCTCxxMethod.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTCxxMethod.h; sourceTree = ""; }; A13AAA1E21D717E129A83F88BA0506C7 /* rand.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = rand.h; path = ios/include/openssl/rand.h; sourceTree = ""; }; A13D2823D396306F5A6DD2B6663F7976 /* Sockets.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Sockets.h; path = folly/portability/Sockets.h; sourceTree = ""; }; A13D90A8141DAE1C808F1D456817890E /* LockTraits.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = LockTraits.h; path = folly/LockTraits.h; sourceTree = ""; }; - A14081D39493A10A57E2430BC0367832 /* RCTConvert+REATransition.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RCTConvert+REATransition.m"; sourceTree = ""; }; - A1490A5369E542D596EAEA9F480A37D8 /* RNSScreenStack.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNSScreenStack.h; path = ios/RNSScreenStack.h; sourceTree = ""; }; - A14B74BF4A78AF2FD2CB9116BDEE4A7D /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; + A13E22AB2A0AEAD5E56AC5EB66D1CADD /* JSCRuntime.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = JSCRuntime.cpp; sourceTree = ""; }; + A1476AB545279DF4F48290E67F873C91 /* RCTConvert+FFFastImage.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "RCTConvert+FFFastImage.m"; path = "ios/FastImage/RCTConvert+FFFastImage.m"; sourceTree = ""; }; A14DBDBC65C0A86381D0923F3853CC35 /* CocoaAsyncSocket.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = CocoaAsyncSocket.release.xcconfig; sourceTree = ""; }; - A15BEEBBE39B54523F61DCDB62CD5FB9 /* BSG_KSCrashSentry_NSException.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BSG_KSCrashSentry_NSException.m; sourceTree = ""; }; A16BE67B30E1D5B41246BA8E281117C9 /* IPAddressV4.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = IPAddressV4.cpp; path = folly/IPAddressV4.cpp; sourceTree = ""; }; - A18579BD009DC1953DF6C602D20DC300 /* UMModuleRegistryDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMModuleRegistryDelegate.h; sourceTree = ""; }; + A17D8CF31C1C460C4B6B1CBDC08531AD /* RNFBCrashlyticsModule.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNFBCrashlyticsModule.m; path = ios/RNFBCrashlytics/RNFBCrashlyticsModule.m; sourceTree = ""; }; + A1887075EA827385176388B2D8408C75 /* ARTShape.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ARTShape.h; path = ios/ARTShape.h; sourceTree = ""; }; + A1973DE2E5FBE48CC98F42EDE0A4F185 /* RCTAssert.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTAssert.m; sourceTree = ""; }; + A1977F6EED8F723F1AB1B88C7CC426FB /* RCTVersion.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTVersion.m; sourceTree = ""; }; A1B869AF16986544C09D0DEA7D533A67 /* evhttp.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = evhttp.h; path = src/evhttp.h; sourceTree = ""; }; + A1D2F7D0B3B73B0F3E864F6AD0312855 /* RNLocalize.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNLocalize.m; path = ios/RNLocalize.m; sourceTree = ""; }; A1D67376FE91717287EFD003995F1603 /* ripemd.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ripemd.h; path = ios/include/openssl/ripemd.h; sourceTree = ""; }; + A1DC2CA4DC6587A28388A8D4FBF707F8 /* RNRootView.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RNRootView.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; A1EDD5A33711F21EEC893EE19A9B8F24 /* dynamic.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = dynamic.cpp; path = folly/dynamic.cpp; sourceTree = ""; }; - A1F4D676DDF4AFA47254899CD233F1ED /* UMCameraInterface.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = UMCameraInterface.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + A1F9ACDEE76DCE90C462DCB0A4B6ABC4 /* React.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = React.debug.xcconfig; sourceTree = ""; }; A1FA99C9A41D79C4EBE972BA7A8CA3AA /* dec_msa.c */ = {isa = PBXFileReference; includeInIndex = 1; name = dec_msa.c; path = src/dsp/dec_msa.c; sourceTree = ""; }; - A206ABE42AA13ECDE45320331B022FA7 /* Yoga.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Yoga.h; path = yoga/Yoga.h; sourceTree = ""; }; + A200A2C0578FF20B0A53F60F7F715CB7 /* ARTCGFloatArray.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ARTCGFloatArray.h; path = ios/ARTCGFloatArray.h; sourceTree = ""; }; + A20E55FFE43C2FCD63BD69DBE230BA59 /* UMCameraInterface.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMCameraInterface.release.xcconfig; sourceTree = ""; }; A21FADACE1F2797514A803DA0320BD79 /* PicoSpinLock.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PicoSpinLock.h; path = folly/synchronization/PicoSpinLock.h; sourceTree = ""; }; A24640E466C96B084FEE8B215616C1DF /* QueuedImmediateExecutor.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = QueuedImmediateExecutor.cpp; path = folly/executors/QueuedImmediateExecutor.cpp; sourceTree = ""; }; + A25167F1E0EC0A6D9BEF9BB7C6B13F7C /* BSG_KSCrashDoctor.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BSG_KSCrashDoctor.m; sourceTree = ""; }; A255BBF778461528CAAFA14B8CE397B7 /* InlineExecutor.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = InlineExecutor.cpp; path = folly/executors/InlineExecutor.cpp; sourceTree = ""; }; - A262C6A417653B56D513C7CBED8DC4A9 /* ARTPattern.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = ARTPattern.h; sourceTree = ""; }; A274AD7F025E5AA596B5E18F9C42D782 /* AsyncTransport.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AsyncTransport.h; path = folly/io/async/AsyncTransport.h; sourceTree = ""; }; A27549C6E0EC15515609E01AFCE7938C /* FirebaseInstallationsInternal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FirebaseInstallationsInternal.h; path = FirebaseInstallations/Source/Library/Private/FirebaseInstallationsInternal.h; sourceTree = ""; }; - A27A7C6DA2747997F4AC6A88E87F5BEA /* RCTSafeAreaViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSafeAreaViewManager.m; sourceTree = ""; }; A2842000BC238E4A5FC678C67173DDA8 /* Singleton.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Singleton.h; path = folly/Singleton.h; sourceTree = ""; }; A289E61D153279A9DCFBD9173687CB3D /* Dirent.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = Dirent.cpp; path = folly/portability/Dirent.cpp; sourceTree = ""; }; - A291C68FDF6EABA33847A4B7BDEBD91B /* React-RCTLinking.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = "React-RCTLinking.podspec"; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; A294E318618A97FF297AE1D68EB73C1A /* SDWebImageDownloaderDecryptor.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWebImageDownloaderDecryptor.m; path = SDWebImage/Core/SDWebImageDownloaderDecryptor.m; sourceTree = ""; }; + A297B3447506F9CB5BBCD974EFEDAB32 /* UMImageLoaderInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMImageLoaderInterface.h; path = UMImageLoaderInterface/UMImageLoaderInterface.h; sourceTree = ""; }; A29F8028A89602700407D094ED630714 /* FIRCLSDataCollectionArbiter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSDataCollectionArbiter.h; path = Crashlytics/Crashlytics/DataCollection/FIRCLSDataCollectionArbiter.h; sourceTree = ""; }; + A29FF112CEE9782433C936F7C277710C /* EXKeepAwake.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = EXKeepAwake.debug.xcconfig; sourceTree = ""; }; A2A26598445C79F8BB93C4813FE13509 /* AtFork.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AtFork.h; path = folly/detail/AtFork.h; sourceTree = ""; }; - A2CADB2028F3A7EEF7E37ECD6C109737 /* BSGOutOfMemoryWatchdog.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSGOutOfMemoryWatchdog.h; sourceTree = ""; }; - A2DB9A08443DA9E2D1E3CBBD63F734E3 /* EXLocalAuthentication.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = EXLocalAuthentication.debug.xcconfig; sourceTree = ""; }; - A2F3ECB83544DE0AC49619B06F5ADCB5 /* RCTVirtualTextShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTVirtualTextShadowView.m; sourceTree = ""; }; - A2F8D5EF7E560147F66724C6C5387760 /* RCTImageUtils.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTImageUtils.m; sourceTree = ""; }; - A2FD9C90292706175AF313CF69B11680 /* RNCMaskedView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCMaskedView.h; path = ios/RNCMaskedView.h; sourceTree = ""; }; + A2BD7930E6BFE5A41A1821E924A6F1BF /* RCTInputAccessoryViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTInputAccessoryViewManager.m; sourceTree = ""; }; A307C23F73060CC6EBC22ED024F3512F /* Partial.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Partial.h; path = folly/functional/Partial.h; sourceTree = ""; }; A3090845172D72D4D19ECD5800982FA9 /* FBLPromise+Async.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "FBLPromise+Async.m"; path = "Sources/FBLPromises/FBLPromise+Async.m"; sourceTree = ""; }; - A343840D9224BB86367165F3C4598D4A /* RCTImageUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageUtils.h; path = Libraries/Image/RCTImageUtils.h; sourceTree = ""; }; - A347E733DD144D64D06020C3913C52B3 /* Compression.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Compression.h; path = ios/src/Compression.h; sourceTree = ""; }; + A32C495876A6D67DA542344F3BBAD36D /* pl.lproj */ = {isa = PBXFileReference; includeInIndex = 1; name = pl.lproj; path = ios/QBImagePicker/QBImagePicker/pl.lproj; sourceTree = ""; }; + A32D263D9ACDE5641E340FFE1944282E /* BugsnagApiClient.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagApiClient.m; sourceTree = ""; }; A34D911B5024A8FAE46EDF359A0B735A /* ConcurrentSkipList.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ConcurrentSkipList.h; path = folly/ConcurrentSkipList.h; sourceTree = ""; }; - A352B95AD7AF1ADA26AA02E844AE0362 /* RCTRefreshControlManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTRefreshControlManager.h; sourceTree = ""; }; A36EB7EBFDA2BE3CDEF486C51CE6C823 /* FlipperKit.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = FlipperKit.release.xcconfig; sourceTree = ""; }; + A38CBB2B7FE0514CA5F8D26657956C10 /* TurboModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TurboModule.h; path = turbomodule/core/TurboModule.h; sourceTree = ""; }; A3931C325E746C77373C3AE340D4ACBD /* UTF8String.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UTF8String.h; path = folly/UTF8String.h; sourceTree = ""; }; + A3AC869C7BCB7C9B0EEA291E8CCE592B /* RCTSlider.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSlider.m; sourceTree = ""; }; + A3AF08EAE33371257469FD983FC2994C /* UMTaskManagerInterface.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMTaskManagerInterface.debug.xcconfig; sourceTree = ""; }; + A3E58C7DBBEAD342ED5EAD55094EC5AA /* react-native-mmkv-storage.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = "react-native-mmkv-storage.podspec"; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; A3E8E3FFC84CC4831A5883942616F125 /* en.lproj */ = {isa = PBXFileReference; includeInIndex = 1; name = en.lproj; path = "Objective-C/TOCropViewController/Resources/en.lproj"; sourceTree = ""; }; A3F587860661F1E7632183EE56BADE72 /* FIRCLSCompoundOperation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSCompoundOperation.h; path = Crashlytics/Shared/FIRCLSOperation/FIRCLSCompoundOperation.h; sourceTree = ""; }; - A3FD27CB2ABFBE5703A221949E3A8F2B /* BSG_KSCrashState.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BSG_KSCrashState.m; sourceTree = ""; }; A4062230649EB3CAC5B2271CDFEFD865 /* SDImageCachesManagerOperation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageCachesManagerOperation.h; path = SDWebImage/Private/SDImageCachesManagerOperation.h; sourceTree = ""; }; - A4165270806368E9119C3DDB178C17D8 /* RNFBUtilsModule.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNFBUtilsModule.m; path = ios/RNFBApp/RNFBUtilsModule.m; sourceTree = ""; }; - A418AA0F3E33064172D5A5B5C5084363 /* RCTSpringAnimation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSpringAnimation.m; sourceTree = ""; }; + A414968EE3D199F3EA504B6AA1026A3A /* RCTMultiplicationAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTMultiplicationAnimatedNode.m; sourceTree = ""; }; A41B1B89AADA3EBB33CDDE3B901F241D /* FIRCLSDwarfExpressionMachine.c */ = {isa = PBXFileReference; includeInIndex = 1; name = FIRCLSDwarfExpressionMachine.c; path = Crashlytics/Crashlytics/Unwind/Dwarf/FIRCLSDwarfExpressionMachine.c; sourceTree = ""; }; A425F067B5A19475E60C81F33C517AD2 /* cost.c */ = {isa = PBXFileReference; includeInIndex = 1; name = cost.c; path = src/dsp/cost.c; sourceTree = ""; }; - A43CD11C23A1BA645E7ADC434E91A7CE /* RCTCxxModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTCxxModule.h; sourceTree = ""; }; - A4759D49F3E3AD1BCB0976839DC8BCDC /* BSG_KSCrashC.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSCrashC.c; sourceTree = ""; }; + A4540BAF73AE068913CA929A5297D2FC /* RCTCxxMethod.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTCxxMethod.mm; sourceTree = ""; }; A47AB1A17382867A0F0F2E0347948C84 /* ProgramOptions.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ProgramOptions.h; path = folly/experimental/ProgramOptions.h; sourceTree = ""; }; A49223A38130B4616CA93C4947B34FC3 /* Random-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "Random-inl.h"; path = "folly/Random-inl.h"; sourceTree = ""; }; - A49A84F5A7DDF18E14CCA469FEB30E43 /* REABezierNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REABezierNode.m; sourceTree = ""; }; A4A83B30FE31C46C92E5800BECFF4B29 /* SafeAssert.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SafeAssert.h; path = folly/lang/SafeAssert.h; sourceTree = ""; }; - A4ABC77A958C97FA418FE3A22CDD6578 /* EXLocalAuthentication.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXLocalAuthentication.h; path = EXLocalAuthentication/EXLocalAuthentication.h; sourceTree = ""; }; - A4B6C3E48C92E521F8502DED35235D2D /* RNBootSplash.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNBootSplash.h; path = ios/RNBootSplash.h; sourceTree = ""; }; + A4A83EBC718D52F01D25A72DC68BE2FD /* log.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = log.cpp; path = yoga/log.cpp; sourceTree = ""; }; + A4B81A14BA60FD9203C458E4C264F55B /* JSIExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = JSIExecutor.h; path = jsireact/JSIExecutor.h; sourceTree = ""; }; A4E59AA55DD9A126F59C095029C9772B /* FIRCLSReportAdapter_Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSReportAdapter_Private.h; path = Crashlytics/Crashlytics/Models/Record/FIRCLSReportAdapter_Private.h; sourceTree = ""; }; + A4FAF9DF220421D9D23C351781B0CCEE /* RCTNetworkPlugins.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTNetworkPlugins.mm; sourceTree = ""; }; A5066F60713A65BD0F391A4315AAA8C8 /* FlipperKit-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "FlipperKit-prefix.pch"; sourceTree = ""; }; - A50ABD610499238953677918011EA345 /* BSG_KSCrashReport.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSCrashReport.c; sourceTree = ""; }; - A50D9EEAD28365B704D5679A4507324A /* BugsnagLogger.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagLogger.h; sourceTree = ""; }; A510ED9C562098C6CBA48E158517125C /* seed.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = seed.h; path = ios/include/openssl/seed.h; sourceTree = ""; }; - A5190ACF6DCC4A3587DB78E561CE8A86 /* UMPermissionsInterface-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "UMPermissionsInterface-prefix.pch"; sourceTree = ""; }; + A525327B785CAC4903421EE18207F613 /* UMFontScalersManagerInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMFontScalersManagerInterface.h; path = UMFontInterface/UMFontScalersManagerInterface.h; sourceTree = ""; }; A52DED6EABDCA6B67A0AC1036133D298 /* Subprocess.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Subprocess.h; path = folly/Subprocess.h; sourceTree = ""; }; A538681767405B4E9FF83C15780AE054 /* demux.c */ = {isa = PBXFileReference; includeInIndex = 1; name = demux.c; path = src/demux/demux.c; sourceTree = ""; }; A540849F2EE5DF78C104A26980E4B083 /* SDWebImagePrefetcher.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWebImagePrefetcher.m; path = SDWebImage/Core/SDWebImagePrefetcher.m; sourceTree = ""; }; + A547831DA0D16276D645112E37CAA856 /* RNCSafeAreaProvider.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCSafeAreaProvider.m; path = ios/SafeAreaView/RNCSafeAreaProvider.m; sourceTree = ""; }; + A5481AAD31289946A22A761647F8C041 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; + A54852A4485A3346864FA7557DC6D9BB /* react-native-appearance.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "react-native-appearance.debug.xcconfig"; sourceTree = ""; }; A54D6B482F7F4C1CC41A67369AAE530C /* conf.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = conf.h; path = ios/include/openssl/conf.h; sourceTree = ""; }; - A55847904D4A37420994558664F369FD /* RCTPackagerClient.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTPackagerClient.h; sourceTree = ""; }; A567147B5F4623BAA13C514E701A3F52 /* Synchronized.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Synchronized.h; path = folly/Synchronized.h; sourceTree = ""; }; - A59873A2151FBF63DAA0862DE801D1AE /* RCTTypeSafety.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RCTTypeSafety.debug.xcconfig; sourceTree = ""; }; - A59AB2679071C390418F5560CADA1083 /* react-native-cookies.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "react-native-cookies.debug.xcconfig"; sourceTree = ""; }; + A568251D41EA44BC8B0F4DAD3741B354 /* EXLocalAuthentication.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = EXLocalAuthentication.debug.xcconfig; sourceTree = ""; }; A59EB6859E98F06D6B27ACDA256F18BE /* muxi.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = muxi.h; path = src/mux/muxi.h; sourceTree = ""; }; A5A176C2A092D10F8B06080D636307A4 /* FIRCLSProcessReportOperation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCLSProcessReportOperation.m; path = Crashlytics/Crashlytics/Operations/Reports/FIRCLSProcessReportOperation.m; sourceTree = ""; }; - A5BCAC28276FE8611A4D72C73867CAE8 /* REATransitionAnimation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REATransitionAnimation.h; sourceTree = ""; }; + A5B79A762EE2ED264442A969675C775A /* RCTShadowView+Layout.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RCTShadowView+Layout.h"; sourceTree = ""; }; + A5C48A006CFA5B0ED906D5C1F2DEC0C0 /* 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; }; A5E47FFFD2C6FCEDA03AD43688CF0763 /* SDWebImageOptionsProcessor.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWebImageOptionsProcessor.m; path = SDWebImage/Core/SDWebImageOptionsProcessor.m; sourceTree = ""; }; - A5E741F9671FC7F6CD960AA773922151 /* CoreModulesPlugins.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CoreModulesPlugins.h; path = React/CoreModules/CoreModulesPlugins.h; sourceTree = ""; }; + A5F34A16C11A38336EDFB9799B19E9FC /* fr.lproj */ = {isa = PBXFileReference; includeInIndex = 1; name = fr.lproj; path = ios/QBImagePicker/QBImagePicker/fr.lproj; sourceTree = ""; }; A5F9643D2F853CD41A855F0FDCB49280 /* TOCropViewControllerTransitioning.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TOCropViewControllerTransitioning.h; path = "Objective-C/TOCropViewController/Models/TOCropViewControllerTransitioning.h"; sourceTree = ""; }; A625D5B1A00836A8D8D0E7AD63B34B02 /* FIRBundleUtil.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRBundleUtil.h; path = FirebaseCore/Sources/FIRBundleUtil.h; sourceTree = ""; }; + A625E7A7A75278098CBAFB4AF17988FB /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; A6307680F6EC7F7048B72294B68290E0 /* FIRCLSCodeMapping.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCLSCodeMapping.m; path = Crashlytics/Shared/FIRCLSMachO/FIRCLSCodeMapping.m; sourceTree = ""; }; - A63BDDDF32E66F00231F80FA87FAFA1B /* RCTComponentData.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTComponentData.m; sourceTree = ""; }; + A631E1176D2052D107B00C46F615CCE2 /* RNConfigReader.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNConfigReader.debug.xcconfig; sourceTree = ""; }; + A648E34173D783314DFC200842909F85 /* ImageCropPicker.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = ImageCropPicker.m; path = ios/src/ImageCropPicker.m; sourceTree = ""; }; A64B9EBCFC5B834095183ABF0C4B1D6E /* upsampling.c */ = {isa = PBXFileReference; includeInIndex = 1; name = upsampling.c; path = src/dsp/upsampling.c; sourceTree = ""; }; - A654AF3C7C8FBCD0F4F659ED79980DB7 /* RCTTextShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTTextShadowView.m; sourceTree = ""; }; A65E6A1E4A701FDDB24B67AB64FE9135 /* Pods-NotificationService-acknowledgements.markdown */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; path = "Pods-NotificationService-acknowledgements.markdown"; sourceTree = ""; }; - A66E40BD8338E6F6E155FE47C58E1277 /* RCTSurfaceRootShadowViewDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSurfaceRootShadowViewDelegate.h; sourceTree = ""; }; + A671B4633078950803164D2C663B82E0 /* FFFastImageView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FFFastImageView.h; path = ios/FastImage/FFFastImageView.h; sourceTree = ""; }; A674C6505A3B291E753BAE47C2EFB218 /* CodingDetail.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CodingDetail.h; path = folly/experimental/CodingDetail.h; sourceTree = ""; }; - A677CF88C75F1C80A59F60569405718A /* RCTBaseTextShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBaseTextShadowView.h; sourceTree = ""; }; A67B2DCB63EE65810BD99DD048AFCCFF /* FIRVersion.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRVersion.m; path = FirebaseCore/Sources/FIRVersion.m; sourceTree = ""; }; A68E5A9B69A3BA0FD52CAF7A354EC93B /* libReact-RCTNetwork.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libReact-RCTNetwork.a"; path = "libReact-RCTNetwork.a"; sourceTree = BUILT_PRODUCTS_DIR; }; A69354C4F0ADF78BC18781EEEC84C7E2 /* FIRComponentContainer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRComponentContainer.h; path = FirebaseCore/Sources/Private/FIRComponentContainer.h; sourceTree = ""; }; - A695A13C0E5F831730D8888E9514AD6B /* ReactNativeKeyboardInput.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = ReactNativeKeyboardInput.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; A6A30629E47DB05D80D3CE9BC7C774F1 /* utilities.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = utilities.cc; path = src/utilities.cc; sourceTree = ""; }; - A6A96D67DD0C9EB25890327FB73FA7D0 /* log.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = log.cpp; path = yoga/log.cpp; sourceTree = ""; }; - A6B147977EE9C8E4A1286D4C6094C385 /* experiments.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = experiments.cpp; sourceTree = ""; }; - A6D49DD54896F660CD6543B59ADB425C /* EXConstants.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = EXConstants.debug.xcconfig; sourceTree = ""; }; + A6C8B780938A28CFA1950CF71BC0D1CC /* RCTComponentEvent.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTComponentEvent.m; sourceTree = ""; }; A6DEDA22580431B2F80D82C15169D982 /* FIRCLSPackageReportOperation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSPackageReportOperation.h; path = Crashlytics/Crashlytics/Operations/Reports/FIRCLSPackageReportOperation.h; sourceTree = ""; }; + A6FC5A7B9316B20C740D8D8AC8A4013F /* BSG_KSMachApple.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSMachApple.h; sourceTree = ""; }; A70267AA3D3AEE12F21F1A7876760084 /* MacAddress.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = MacAddress.cpp; path = folly/MacAddress.cpp; sourceTree = ""; }; A713BA4620B719C691AF9CB67ED5756D /* utils.c */ = {isa = PBXFileReference; includeInIndex = 1; name = utils.c; path = src/utils/utils.c; sourceTree = ""; }; A7145A05F714CDFF5BBE79B4651EF4D3 /* SocketAddress.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SocketAddress.h; path = folly/SocketAddress.h; sourceTree = ""; }; A72747DB044F16258ECE383BE6729A6C /* Common.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = Common.cpp; path = rsocket/internal/Common.cpp; sourceTree = ""; }; A73099DD75017003E8AAB31EE4015F3C /* GDTCOREvent+GDTCCTSupport.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "GDTCOREvent+GDTCCTSupport.h"; path = "GoogleDataTransportCCTSupport/GDTCCTLibrary/Public/GDTCOREvent+GDTCCTSupport.h"; sourceTree = ""; }; - A73AE17CED95A80F8EA68BF8BB5ADDD0 /* BugsnagErrorReportApiClient.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagErrorReportApiClient.h; sourceTree = ""; }; - A73E5D101D8AD4362F724BCA7D09A2FD /* UMConstantsInterface.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = UMConstantsInterface.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + A73D0D80D3CDD243DA7EB6DCC072D765 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; A741DCAC4448E118A33E55A984865F2A /* common_sse2.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = common_sse2.h; path = src/dsp/common_sse2.h; sourceTree = ""; }; A742E5671BD890389F43F6E3F4283722 /* cast.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = cast.h; path = ios/include/openssl/cast.h; sourceTree = ""; }; - A75D50824166B49F29E5348151D0EE40 /* RCTFrameUpdate.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTFrameUpdate.m; sourceTree = ""; }; - A75FE2F6701004FDD87621AEB89BF0AE /* RNFBVersion.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNFBVersion.m; path = ios/RNFBApp/RNFBVersion.m; sourceTree = ""; }; + A76CAE5A189721F971476ADB549C7AF5 /* StorageSetters.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = StorageSetters.h; path = ios/StorageSetters.h; sourceTree = ""; }; A76F3740E25161D6CA04EFAEA904892B /* Likely.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Likely.h; path = folly/Likely.h; sourceTree = ""; }; - A771D8CBDD067DB49AF9207743058629 /* rn-fetch-blob-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "rn-fetch-blob-dummy.m"; sourceTree = ""; }; - A77A66F28E2D871386C09DD6425F2C04 /* REAJSCallNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REAJSCallNode.m; sourceTree = ""; }; A77E722608D3EE95549C9CCAF5BA7C98 /* strtod.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = strtod.h; path = "double-conversion/strtod.h"; sourceTree = ""; }; - A7801F30220C1D16F961685B7CF20131 /* RCTUITextView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTUITextView.h; sourceTree = ""; }; - A7B125F1892F0C21D8BE2A40FE16C7F7 /* REANode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REANode.m; sourceTree = ""; }; - A7D9E92DC1F5E2C934E96BE51A672DED /* RNDeviceInfo.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNDeviceInfo.release.xcconfig; sourceTree = ""; }; - A7FFCC9D6C2098659C31E890B08D598B /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; + A782707D85B7B5A62B0BC5054E66E98B /* RCTFollyConvert.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTFollyConvert.mm; sourceTree = ""; }; + A7973544829EA3BF8EC37AD66DB844F3 /* UMPermissionsInterface.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMPermissionsInterface.debug.xcconfig; sourceTree = ""; }; + A7AB3DBD690D8D4D5E19BD91149B0734 /* RCTJavaScriptLoader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTJavaScriptLoader.h; sourceTree = ""; }; A805DAB37BDE5B7587D60828B5C486DA /* cct.nanopb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = cct.nanopb.h; path = GoogleDataTransportCCTSupport/GDTCCTLibrary/Protogen/nanopb/cct.nanopb.h; sourceTree = ""; }; A80963FBEE1028DEF8C4D32F24614CC4 /* ThreadPoolExecutor.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = ThreadPoolExecutor.cpp; path = folly/executors/ThreadPoolExecutor.cpp; sourceTree = ""; }; + A80D05139C7D3E7FF9152DD4490C3E90 /* RCTEventAnimation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTEventAnimation.h; sourceTree = ""; }; A830A63EB2E8514AC5D3C09FE3CCDCB7 /* decode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = decode.h; path = src/webp/decode.h; sourceTree = ""; }; A83221DB1AED012C6FA71A992212C881 /* UIImage+MultiFormat.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIImage+MultiFormat.m"; path = "SDWebImage/Core/UIImage+MultiFormat.m"; sourceTree = ""; }; - A86B3913F0BC9BB9056755C579CB5D97 /* RNNotificationEventHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNNotificationEventHandler.m; path = RNNotifications/RNNotificationEventHandler.m; sourceTree = ""; }; + A85E740F7324B436A14DAA9774F14F54 /* REAFunctionNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REAFunctionNode.h; sourceTree = ""; }; A86DBE92D35F38B5102FD97D4F332059 /* Checksum.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Checksum.h; path = folly/hash/Checksum.h; sourceTree = ""; }; - A8779CC61E4AB1ED099A737360F577E1 /* RCTImageStoreManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageStoreManager.h; path = Libraries/Image/RCTImageStoreManager.h; sourceTree = ""; }; - A87F3D7FACE03381E44D66CCADFC0F4C /* RNCAsyncStorage.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNCAsyncStorage.debug.xcconfig; sourceTree = ""; }; - A88F81EC6E09430BBDB731760A9EDB35 /* RNFBMeta.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNFBMeta.m; path = ios/RNFBApp/RNFBMeta.m; sourceTree = ""; }; - A8AA7514868494473202C83930F07E68 /* NSData+EXFileSystem.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSData+EXFileSystem.h"; path = "EXFileSystem/NSData+EXFileSystem.h"; sourceTree = ""; }; A8B487AB07482E9CA902D4680970FC82 /* FLEXNetworkObserver.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = FLEXNetworkObserver.mm; path = iOS/Plugins/FlipperKitNetworkPlugin/SKIOSNetworkPlugin/FLEXNetworkLib/FLEXNetworkObserver.mm; sourceTree = ""; }; - A8C21718E04F4E236AEC61E8AF869AA4 /* REAValueNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REAValueNode.m; sourceTree = ""; }; + A8D1A7983A5CF6063297A9684D14E48F /* RCTTextAttributes.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTTextAttributes.h; path = Libraries/Text/RCTTextAttributes.h; sourceTree = ""; }; A8D27969317372F0383D1B9F1533BFAF /* GULHeartbeatDateStorage.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GULHeartbeatDateStorage.m; path = GoogleUtilities/Environment/GULHeartbeatDateStorage.m; sourceTree = ""; }; - A8DECC04225CDD78311856DB8998AA82 /* BSGConnectivity.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSGConnectivity.h; sourceTree = ""; }; + A8D8B00F25FD4C3F8E777A0618B11F73 /* YGConfig.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YGConfig.h; path = yoga/YGConfig.h; sourceTree = ""; }; A8EA16EC81E65B135245D99881BAA99F /* frame_dec.c */ = {isa = PBXFileReference; includeInIndex = 1; name = frame_dec.c; path = src/dec/frame_dec.c; sourceTree = ""; }; + A8EB62C697C69094C7FAE6AB565E81C2 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; + A8F0290DFE7AD596019126092B9342BA /* RCTConvert+FIROptions.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "RCTConvert+FIROptions.h"; path = "ios/RNFBApp/RCTConvert+FIROptions.h"; sourceTree = ""; }; + A8FEA63B4D5325E053E800E242E9B271 /* NSData+EXFileSystem.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSData+EXFileSystem.h"; path = "EXFileSystem/NSData+EXFileSystem.h"; sourceTree = ""; }; A919D11DDD00D385BEF1F93B4617E820 /* GDTCORRegistrar_Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCORRegistrar_Private.h; path = GoogleDataTransport/GDTCORLibrary/Private/GDTCORRegistrar_Private.h; sourceTree = ""; }; A92991813AA6D28B2E0C94DEEA1CB5A6 /* FIRComponentType.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRComponentType.h; path = FirebaseCore/Sources/Private/FIRComponentType.h; sourceTree = ""; }; + A929E14F1256AEF6A35A4618DFC278CE /* RCTDisplayWeakRefreshable.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTDisplayWeakRefreshable.m; sourceTree = ""; }; A92E79641B310162AD0C1942F5B389D8 /* FBLPromise+Do.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "FBLPromise+Do.m"; path = "Sources/FBLPromises/FBLPromise+Do.m"; sourceTree = ""; }; - A9502B61EED8AB574D2EFD4FC1F9A56F /* RNRotationHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNRotationHandler.m; sourceTree = ""; }; - A9653ED9A963575A6E3DCA1419512721 /* UMSingletonModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMSingletonModule.h; path = UMCore/UMSingletonModule.h; sourceTree = ""; }; - A97771F65EFE9C37DEAED2A4534B170E /* FFFastImageViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FFFastImageViewManager.m; path = ios/FastImage/FFFastImageViewManager.m; sourceTree = ""; }; + A932D3232297BB66850D71CE87750BD1 /* RNGestureHandlerModule.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNGestureHandlerModule.m; path = ios/RNGestureHandlerModule.m; sourceTree = ""; }; + A94C1972858879371C734E8235A9B521 /* React-RCTNetwork-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-RCTNetwork-dummy.m"; sourceTree = ""; }; + A959BF0CFEA8839D9E6D6F263D932FA8 /* JSIDynamic.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = JSIDynamic.h; sourceTree = ""; }; A9858B7499131D73458CCDD42363A5AB /* UICollectionView+SKInvalidation.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = "UICollectionView+SKInvalidation.mm"; path = "iOS/Plugins/FlipperKitLayoutPlugin/FlipperKitLayoutPlugin/UICollectionView+SKInvalidation.mm"; sourceTree = ""; }; A990F3724B389E9A3F1D99AF48703368 /* IPAddress.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = IPAddress.cpp; path = folly/IPAddress.cpp; sourceTree = ""; }; - A9A4DCE4BC87019EAE173236378AE571 /* RCTModuleData.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTModuleData.mm; sourceTree = ""; }; A9AA1086980BAA6EDED10FF8817158DA /* RequestResponseThroughputTcp.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = RequestResponseThroughputTcp.cpp; path = rsocket/benchmarks/RequestResponseThroughputTcp.cpp; sourceTree = ""; }; + A9AF5561FAA5C8AA51CD210CAF4F3908 /* UMAppLoader-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "UMAppLoader-prefix.pch"; sourceTree = ""; }; A9B22405078EB22D6B97880B7D72BA94 /* demangle.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = demangle.cc; path = src/demangle.cc; sourceTree = ""; }; - A9B3A824619663B03E4689A19ADC7A7F /* BSG_KSCrashSentry_CPPException.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashSentry_CPPException.h; sourceTree = ""; }; + A9B68751E4B84B73C114ECBB96CA153B /* RNBackgroundTimer.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNBackgroundTimer.m; path = ios/RNBackgroundTimer.m; sourceTree = ""; }; A9CAB9883D8334AFA0E33C8F4507BB6F /* Function.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Function.h; path = folly/Function.h; sourceTree = ""; }; + A9CCEF2FA4A2EEBE5FCB3F8BF0209252 /* UMConstantsInterface.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = UMConstantsInterface.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; A9CF7CF5EE80EEBFF0913866EF73067D /* FIRInstallationsStore.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstallationsStore.m; path = FirebaseInstallations/Source/Library/InstallationsStore/FIRInstallationsStore.m; sourceTree = ""; }; A9D230534FF22D171D1F2799C5C38FB0 /* FIRCLSGlobals.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSGlobals.h; path = Crashlytics/Crashlytics/Components/FIRCLSGlobals.h; sourceTree = ""; }; + A9DFD276EBE155A05206FA3429A9A449 /* RAMBundleRegistry.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = RAMBundleRegistry.cpp; sourceTree = ""; }; + A9EF32B6C7A91D7C0C66B64D36445C17 /* UIImage+Extension.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIImage+Extension.h"; path = "ios/src/UIImage+Extension.h"; sourceTree = ""; }; A9FBDD16D8524D04F2E9A34E9A7A877C /* FBLPromise+Timeout.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FBLPromise+Timeout.h"; path = "Sources/FBLPromises/include/FBLPromise+Timeout.h"; sourceTree = ""; }; + AA0DF8BF95726112B5ACADB8FCC15893 /* Utils.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = Utils.cpp; path = yoga/Utils.cpp; sourceTree = ""; }; AA1F642328FC006E73638E971097208B /* MMKVLog.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = MMKVLog.cpp; path = Core/MMKVLog.cpp; sourceTree = ""; }; AA2A2476FB2776F5D7B808A2C5A31C05 /* Ordering.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Ordering.h; path = folly/lang/Ordering.h; sourceTree = ""; }; AA3DD2346D2A8EC698CFE0B7382E1E3C /* GDTCORTransport_Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCORTransport_Private.h; path = GoogleDataTransport/GDTCORLibrary/Private/GDTCORTransport_Private.h; sourceTree = ""; }; - AA3E15764E9368FDD8CF2727250DAC00 /* EXAV-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "EXAV-dummy.m"; sourceTree = ""; }; - AA61FF70B4B192F029EFB925B4B625ED /* EXSessionResumableDownloadTaskDelegate.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = EXSessionResumableDownloadTaskDelegate.m; sourceTree = ""; }; - AA681D82870D8F25DE071604F1FBDE85 /* RNCookieManagerIOS.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCookieManagerIOS.m; path = ios/RNCookieManagerIOS/RNCookieManagerIOS.m; sourceTree = ""; }; - AA8AE8F91ADE6CC35F55B1A7E0157DDC /* UIImage+Extension.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIImage+Extension.h"; path = "ios/src/UIImage+Extension.h"; sourceTree = ""; }; - AA8C028E57D4CDCD305CB1769B638432 /* RNCSafeAreaViewLocalData.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCSafeAreaViewLocalData.h; path = ios/SafeAreaView/RNCSafeAreaViewLocalData.h; sourceTree = ""; }; - AAAB492F87854663F71527702CB6F7D4 /* BSG_KSJSONCodecObjC.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BSG_KSJSONCodecObjC.m; sourceTree = ""; }; - AAB3E5DC0F0C5F5097B3F081E87DD052 /* react-native-mmkv-storage-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "react-native-mmkv-storage-prefix.pch"; sourceTree = ""; }; - AAC3E73845BB5A5E98B785C141C1A974 /* RNFetchBlobProgress.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNFetchBlobProgress.h; path = ios/RNFetchBlobProgress.h; sourceTree = ""; }; - AB1BFCED4DBD4B1D8B2C3608649BB5F9 /* YGMacros.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YGMacros.h; path = yoga/YGMacros.h; sourceTree = ""; }; - AB28F7A9ED8DD36DDA6C790D3E11AEA5 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; - AB55D429AE13E611F56C6BE24545AD8C /* RNDeviceInfo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNDeviceInfo.h; path = ios/RNDeviceInfo/RNDeviceInfo.h; sourceTree = ""; }; + AA58B73903B04758FC957E353ED68307 /* EXVideoManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = EXVideoManager.m; sourceTree = ""; }; + AA69A0C5EA60453EA72D966940C10E6E /* React-jsinspector.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-jsinspector.debug.xcconfig"; sourceTree = ""; }; + AA6DB86CAAF4362E6B415731F3E26A31 /* RNFBCrashlytics.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNFBCrashlytics.release.xcconfig; sourceTree = ""; }; + AA9D5076FC59778EDFA5D5C08DB28820 /* RCTConstants.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTConstants.h; sourceTree = ""; }; + AAA31ECA5C35C35D5B4A2BFA46D56C7B /* RNLocalize.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNLocalize.release.xcconfig; sourceTree = ""; }; + AACAC5766472F3259AD33FBC3185A93D /* UMFontScalerInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMFontScalerInterface.h; path = UMFontInterface/UMFontScalerInterface.h; sourceTree = ""; }; + AAEDEB966DF190C72014839FAD36F682 /* UMFaceDetectorManagerProvider.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMFaceDetectorManagerProvider.h; path = UMFaceDetectorInterface/UMFaceDetectorManagerProvider.h; sourceTree = ""; }; + AB0BBE2D9739D6C09CE2C0074B6894D8 /* 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; }; + AB1796D5C0A137C49EB9C6558CD794B6 /* RNCAppearance.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCAppearance.h; path = ios/Appearance/RNCAppearance.h; sourceTree = ""; }; + AB2D1941EEDB949949D108EB02723FB5 /* REACallFuncNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REACallFuncNode.h; sourceTree = ""; }; AB5987B23611640B17D0C9DE7EF77858 /* bignum-dtoa.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "bignum-dtoa.h"; path = "double-conversion/bignum-dtoa.h"; sourceTree = ""; }; + AB59FF6546A546154F21A868491CDA72 /* RNCWKProcessPoolManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCWKProcessPoolManager.m; path = apple/RNCWKProcessPoolManager.m; sourceTree = ""; }; AB5B0DC5A3DB374E8AECD4DEE739D781 /* FIRInstallationsHTTPError.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstallationsHTTPError.h; path = FirebaseInstallations/Source/Library/Errors/FIRInstallationsHTTPError.h; sourceTree = ""; }; + AB626D9B1A1FBFA86A849604F6E5B786 /* RNGestureHandlerEvents.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNGestureHandlerEvents.m; path = ios/RNGestureHandlerEvents.m; sourceTree = ""; }; + AB6A7A9E9A997AC3109E097CE509454D /* RCTTouchEvent.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTouchEvent.h; sourceTree = ""; }; AB79FE13137E7659391D350C4D520D49 /* Sse.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Sse.h; path = folly/detail/Sse.h; sourceTree = ""; }; - AB7D5065667112B69A7B32D5189ED029 /* RCTAdditionAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTAdditionAnimatedNode.h; sourceTree = ""; }; AB941A4A795E00CF510B118C62D04E69 /* GDTCOREvent.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCOREvent.h; path = GoogleDataTransport/GDTCORLibrary/Public/GDTCOREvent.h; sourceTree = ""; }; - AB9B19F570F1484BD11EC6FDB65AB0C3 /* RCTAppState.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTAppState.mm; sourceTree = ""; }; - ABB744E4BDA4DA4474B6F9DBCD15CDDC /* RCTSettingsPlugins.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTSettingsPlugins.mm; sourceTree = ""; }; - ABBA8DE8B575DFFF2C4935CD563CBB42 /* RCTEventDispatcher.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTEventDispatcher.h; sourceTree = ""; }; + AB9C060C9A1EE73FCF17E24F9E663F51 /* RCTGIFImageDecoder.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTGIFImageDecoder.mm; sourceTree = ""; }; + ABC02EA57D9B91A5778491E62C69C64A /* React-RCTAnimation-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-RCTAnimation-prefix.pch"; sourceTree = ""; }; ABC56A6AFDB3B1D8D1444AF070284180 /* EventBase.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EventBase.h; path = folly/io/async/EventBase.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; }; ABCFF258998CE1FBECE5F27DF83E6367 /* AsyncSocket.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = AsyncSocket.cpp; path = folly/io/async/AsyncSocket.cpp; sourceTree = ""; }; @@ -9284,311 +9205,326 @@ ABFEEA82A6C346B22843FBE0B0582182 /* libFBReactNativeSpec.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libFBReactNativeSpec.a; path = libFBReactNativeSpec.a; sourceTree = BUILT_PRODUCTS_DIR; }; AC12C7E29555A7CFDDEF1EDB5BC2F3DA /* libFlipper-DoubleConversion.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libFlipper-DoubleConversion.a"; path = "libFlipper-DoubleConversion.a"; sourceTree = BUILT_PRODUCTS_DIR; }; AC23A228A9360E31082397AC2793BDBC /* FlipperCppBridgingResponder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FlipperCppBridgingResponder.h; path = iOS/FlipperKit/CppBridge/FlipperCppBridgingResponder.h; sourceTree = ""; }; - AC26CBE9BD871F6D591E55811B20F351 /* RNForceTouchHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNForceTouchHandler.m; sourceTree = ""; }; - AC2F04C929909685699118877A84D9BA /* BSG_KSBacktrace.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSBacktrace.h; sourceTree = ""; }; AC3B704C6912BE8AC0725F4978560525 /* TOCropViewControllerTransitioning.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = TOCropViewControllerTransitioning.m; path = "Objective-C/TOCropViewController/Models/TOCropViewControllerTransitioning.m"; sourceTree = ""; }; - AC3EF53CAA285B0C3D591E0FCE119B5C /* BSG_KSCrashReportStore.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BSG_KSCrashReportStore.m; sourceTree = ""; }; - AC50AFC4D54DB009646B9159F60A54A1 /* EXFileSystem.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = EXFileSystem.release.xcconfig; sourceTree = ""; }; + AC588D9B293EC8CC5098197C6EBA21AF /* RCTEventEmitter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTEventEmitter.m; sourceTree = ""; }; AC5B1C9755B9FD9C7BB41BFEE70F6DAC /* ChecksumDetail.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ChecksumDetail.h; path = folly/hash/detail/ChecksumDetail.h; sourceTree = ""; }; AC5DF7E8E353D35E40BA8F49221C40A1 /* EventBaseThread.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = EventBaseThread.cpp; path = folly/io/async/EventBaseThread.cpp; sourceTree = ""; }; - AC6726BF4FC5CE7C7AF3321B2A490A58 /* React-CoreModules.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-CoreModules.release.xcconfig"; sourceTree = ""; }; + AC6B38274AAF8DA585D7959301C33AE0 /* ARTGroupManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = ARTGroupManager.m; sourceTree = ""; }; AC7037C8611A45C4CBE6A7B2600A75AE /* Flipper-PeerTalk.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Flipper-PeerTalk.release.xcconfig"; sourceTree = ""; }; AC7FC17AB389D472D0513E74ED376054 /* SDWebImageWebPCoder-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "SDWebImageWebPCoder-dummy.m"; sourceTree = ""; }; ACA09118FA42AEA231FE0A5A66AA78F1 /* TimekeeperScheduledExecutor.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = TimekeeperScheduledExecutor.cpp; path = folly/executors/TimekeeperScheduledExecutor.cpp; sourceTree = ""; }; + ACAD9C78E056AD7226461F4926E827D4 /* RNFlingHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNFlingHandler.h; sourceTree = ""; }; ACBB7F62B267CC7C9BBBAE41DE94743B /* libFlipper-PeerTalk.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libFlipper-PeerTalk.a"; path = "libFlipper-PeerTalk.a"; sourceTree = BUILT_PRODUCTS_DIR; }; ACC1D49C3223D0787BCE5A43FDA89DAC /* DynamicParser-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "DynamicParser-inl.h"; path = "folly/experimental/DynamicParser-inl.h"; sourceTree = ""; }; + ACC862A893B32F26CDE968FE948F22F8 /* UMErrorCodes.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = UMErrorCodes.m; path = UMCore/UMErrorCodes.m; sourceTree = ""; }; ACD73B37A1B1D19DFA67134D35AB9518 /* Demangle.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = Demangle.cpp; path = folly/detail/Demangle.cpp; sourceTree = ""; }; - AD00CBF236CCEBE1185E178EFD334949 /* RCTSwitch.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSwitch.m; sourceTree = ""; }; - AD0C793B510FC63C24840A849BD60F0F /* RNFBRCTEventEmitter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNFBRCTEventEmitter.m; path = ios/RNFBApp/RNFBRCTEventEmitter.m; sourceTree = ""; }; - AD1058B0F20D3C367979F14EF0242078 /* RCTShadowView+Layout.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RCTShadowView+Layout.m"; sourceTree = ""; }; + ACDE4DEFDEB550C64CD5BD4B7A7FCBA5 /* REAEventNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REAEventNode.m; sourceTree = ""; }; + ACE7BA24DDB7E915723843E2530F7AC2 /* BSG_KSJSONCodecObjC.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSJSONCodecObjC.h; sourceTree = ""; }; + ACFBEA7E7AC2EDFB06A70EE8713187D7 /* ARTRadialGradient.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = ARTRadialGradient.h; sourceTree = ""; }; AD2623201AFB1ADEDACA7BDA3F7B18BA /* bufferevent.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = bufferevent.h; path = src/event2/bufferevent.h; sourceTree = ""; }; AD396C56ADD49C2490D8B950A3BBEB7B /* SSLOptions.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = SSLOptions.cpp; path = folly/io/async/SSLOptions.cpp; sourceTree = ""; }; AD3BAF3EA12400C8FB7278F1F215FDFE /* GDTCOREventDataObject.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCOREventDataObject.h; path = GoogleDataTransport/GDTCORLibrary/Public/GDTCOREventDataObject.h; sourceTree = ""; }; AD40A94AE1ADFA1CDF9602BA3B04C90E /* libEXAV.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libEXAV.a; path = libEXAV.a; sourceTree = BUILT_PRODUCTS_DIR; }; + AD426C18D4F5103D4315CD43CB77DE23 /* RCTImageLoader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageLoader.h; path = Libraries/Image/RCTImageLoader.h; sourceTree = ""; }; AD504639AA59D8D167ABFBA539643A19 /* GDTCORPrioritizer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCORPrioritizer.h; path = GoogleDataTransport/GDTCORLibrary/Public/GDTCORPrioritizer.h; sourceTree = ""; }; - AD6EB06C9B17E2743D7EF1A5BA5C5117 /* RCTDevLoadingView.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTDevLoadingView.mm; sourceTree = ""; }; - AD8ADF47FB2FF2EE0C388AF6B764B36A /* RCTImagePlugins.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTImagePlugins.mm; sourceTree = ""; }; + AD6CC3764F981CC5F9CAECE16D30DA07 /* ReactNativeKeyboardTrackingView-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "ReactNativeKeyboardTrackingView-prefix.pch"; sourceTree = ""; }; + AD73A5D2B0A7A8D78486198933973DBF /* RCTVibration.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTVibration.mm; sourceTree = ""; }; + AD83718DAFA2539788C81048B9E4AEA3 /* KeyboardTrackingViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = KeyboardTrackingViewManager.m; path = lib/KeyboardTrackingViewManager.m; sourceTree = ""; }; AD8FC31B2B3A41E2DD01AE5F916D08D4 /* FIRCLSProfiling.c */ = {isa = PBXFileReference; includeInIndex = 1; name = FIRCLSProfiling.c; path = Crashlytics/Crashlytics/Helpers/FIRCLSProfiling.c; sourceTree = ""; }; + AD955028B0A607B00F4C5D307003BE0A /* BSG_KSArchSpecific.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSArchSpecific.h; sourceTree = ""; }; ADAEB1B80B33709735CAA46171F2C305 /* FlipperClient.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FlipperClient.h; path = xplat/Flipper/FlipperClient.h; sourceTree = ""; }; - ADBFC5DFF2709E9A883012DB1E203DAE /* RCTProfileTrampoline-i386.S */ = {isa = PBXFileReference; includeInIndex = 1; path = "RCTProfileTrampoline-i386.S"; sourceTree = ""; }; - ADC9A8BBBA87864B0FDDB352A3FA40C7 /* UMEventEmitterService.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMEventEmitterService.h; sourceTree = ""; }; + ADD23CEF9C39316A212074A84541E003 /* BSG_KSDynamicLinker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSDynamicLinker.h; sourceTree = ""; }; ADD9680BE4E70DAC99F4E8F28E80749D /* ThreadCachedArena.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = ThreadCachedArena.cpp; path = folly/memory/ThreadCachedArena.cpp; sourceTree = ""; }; - ADE887F1CFCAABDF568F5BCFA7BD33EA /* BugsnagSink.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagSink.h; sourceTree = ""; }; ADF8285F30743113F4CDFCE81A0E7309 /* OpenSSL-Universal.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "OpenSSL-Universal.debug.xcconfig"; sourceTree = ""; }; - AE1B98DEC9F623304C1276379FF93FEB /* RCTView+SafeAreaCompat.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "RCTView+SafeAreaCompat.h"; path = "ios/SafeAreaView/RCTView+SafeAreaCompat.h"; sourceTree = ""; }; + AE36F36F0E6BC974C8AD80BB6CF9B5DB /* RCTCxxUtils.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTCxxUtils.mm; sourceTree = ""; }; + AE3B1CDBEB0818930D87B93F7C64B975 /* RCTSurfaceSizeMeasureMode.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTSurfaceSizeMeasureMode.mm; sourceTree = ""; }; AE40C330752602693855FAC7CF6345E4 /* FIRCLSException.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSException.h; path = Crashlytics/Crashlytics/Handlers/FIRCLSException.h; sourceTree = ""; }; - AE42FFF16051C044366E5125F3E908CD /* RNFBCrashlyticsModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNFBCrashlyticsModule.h; path = ios/RNFBCrashlytics/RNFBCrashlyticsModule.h; sourceTree = ""; }; - AE47709761629CABA2BA6E4131D3A178 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; AE51BE792CA89F0E1F9399812F81756C /* MemoryIdler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MemoryIdler.h; path = folly/detail/MemoryIdler.h; sourceTree = ""; }; + AE660E52BD52E517608D6753347FEC4C /* RNSScreenStackHeaderConfig.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNSScreenStackHeaderConfig.h; path = ios/RNSScreenStackHeaderConfig.h; sourceTree = ""; }; + AE779F356C67EFB3AC8963370280F3E8 /* RCTBridgeMethod.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBridgeMethod.h; sourceTree = ""; }; AE7BD1DDAA769BA24E081873660E99FE /* SDAnimatedImagePlayer.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDAnimatedImagePlayer.m; path = SDWebImage/Core/SDAnimatedImagePlayer.m; sourceTree = ""; }; + AE7D0AA3C019207903AFB1A815C8C3B5 /* RCTPickerManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTPickerManager.h; sourceTree = ""; }; + AE86DB11D359622B361796B10E334477 /* FFFastImageViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FFFastImageViewManager.h; path = ios/FastImage/FFFastImageViewManager.h; sourceTree = ""; }; AEADE573DECCDD96AC88553DA9D0DD70 /* GDTCOREvent_Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCOREvent_Private.h; path = GoogleDataTransport/GDTCORLibrary/Private/GDTCOREvent_Private.h; sourceTree = ""; }; + AEB1087B57D6F978F92CDA9C14EDB60C /* RCTSegmentedControlManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSegmentedControlManager.h; sourceTree = ""; }; AEB612B0E9982AF890DAD9C6D1AE7055 /* GULMutableDictionary.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GULMutableDictionary.m; path = GoogleUtilities/Network/GULMutableDictionary.m; sourceTree = ""; }; AEBF8573CD3A0D7CC987247807516ECF /* pb_encode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = pb_encode.h; sourceTree = ""; }; - AEEF92FF6B350AEFD327D5887FEF8A7D /* Utils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Utils.h; path = yoga/Utils.h; sourceTree = ""; }; - AEEFC23F784DE14FBDEAB6113FA35638 /* RNCSlider.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCSlider.h; path = ios/RNCSlider.h; sourceTree = ""; }; + AEEF2DDFBD51E55CF34A95C267B09D30 /* QBAssetsViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = QBAssetsViewController.m; path = ios/QBImagePicker/QBImagePicker/QBAssetsViewController.m; sourceTree = ""; }; + AEF1581357A751A307769D053EF7CF1C /* ARTRenderableManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = ARTRenderableManager.m; sourceTree = ""; }; AEF23C7434D886C7B31145EE2C9BB147 /* Assume.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = Assume.cpp; path = folly/lang/Assume.cpp; sourceTree = ""; }; AF025C179AC97F527B225FA45CC41CA4 /* AsyncUDPServerSocket.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AsyncUDPServerSocket.h; path = folly/io/async/AsyncUDPServerSocket.h; sourceTree = ""; }; AF02C242465A72DCBCF36847EA043397 /* FBLPromise+Testing.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "FBLPromise+Testing.m"; path = "Sources/FBLPromises/FBLPromise+Testing.m"; sourceTree = ""; }; AF141004709B4596316A54C26690214F /* MMKVAppExtension-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "MMKVAppExtension-dummy.m"; sourceTree = ""; }; - AF2EFFDCC67B24BCD8BB72BB6362E6B1 /* KeyCommands-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "KeyCommands-dummy.m"; sourceTree = ""; }; - AF4B58897DB5D08DFE4FF967DDFF100D /* FBReactNativeSpec.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = FBReactNativeSpec.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + AF3725A1FB3293E2E6B03AB140D810D8 /* RCTImageBlurUtils.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTImageBlurUtils.m; sourceTree = ""; }; + AF530C3C866EBAA8BF35D40DC22A0A0E /* EXAppleAuthentication.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXAppleAuthentication.m; path = EXAppleAuthentication/EXAppleAuthentication.m; sourceTree = ""; }; AF613F926031A1C3D3E307B78680D2EB /* GULLogger.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULLogger.h; path = GoogleUtilities/Logger/Private/GULLogger.h; sourceTree = ""; }; + AF6A28767374A51B98A0B41BABBA2020 /* RCTSafeAreaViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSafeAreaViewManager.m; sourceTree = ""; }; AF72FD600DE7E2D330BA50F877993E05 /* libUMCore.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libUMCore.a; path = libUMCore.a; sourceTree = BUILT_PRODUCTS_DIR; }; AF7652D1D8ADD58645565C3FF3CA65C3 /* TypeInfo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TypeInfo.h; path = folly/lang/TypeInfo.h; sourceTree = ""; }; - AFA21B0061C878DA5977940FE31E0D93 /* REAParamNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REAParamNode.h; sourceTree = ""; }; + AF8BFF1F2DB742C1A4EC63AEF5DABC73 /* RCTCustomInputController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTCustomInputController.h; sourceTree = ""; }; AFA7E759EA59B6DF7EA8476959CAE618 /* utils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = utils.h; path = "double-conversion/utils.h"; sourceTree = ""; }; + AFA97D49ECF479AEBEE10680EE31A51B /* ReactCommon.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = ReactCommon.release.xcconfig; sourceTree = ""; }; AFB62303CC4672914C42861A7628B4AA /* ConnectionFactory.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ConnectionFactory.h; path = rsocket/ConnectionFactory.h; sourceTree = ""; }; AFC8475FDDB23E3A0129FA3A18980686 /* GDTCORUploadPackage.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GDTCORUploadPackage.m; path = GoogleDataTransport/GDTCORLibrary/GDTCORUploadPackage.m; sourceTree = ""; }; - AFCC6D612B0011E96730E8DFD27E6E85 /* RCTConvert+FIROptions.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "RCTConvert+FIROptions.h"; path = "ios/RNFBApp/RCTConvert+FIROptions.h"; sourceTree = ""; }; - AFCF9E1E2D811F925E31D06D83E33E59 /* RNJitsiMeetView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNJitsiMeetView.m; path = ios/RNJitsiMeetView.m; sourceTree = ""; }; AFDB4C9806333C32509F4DD1BB3599DB /* GDTCORDataFuture.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GDTCORDataFuture.m; path = GoogleDataTransport/GDTCORLibrary/GDTCORDataFuture.m; sourceTree = ""; }; - AFF55825BE627B9868DED9897A0CFEC9 /* react-native-notifications-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "react-native-notifications-dummy.m"; sourceTree = ""; }; - B00A7DBC5089230DC3404C2E7C13EEB2 /* RCTErrorCustomizer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTErrorCustomizer.h; sourceTree = ""; }; + AFFF45D5064C6CDCBEFB29C94784F173 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; B011AF2233ABBCA46FBEEC71BD95C430 /* FIRCLSDataCollectionArbiter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCLSDataCollectionArbiter.m; path = Crashlytics/Crashlytics/DataCollection/FIRCLSDataCollectionArbiter.m; sourceTree = ""; }; - B0364D8E627174BA396CA58A7451F968 /* RCTAppearance.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTAppearance.h; path = React/CoreModules/RCTAppearance.h; sourceTree = ""; }; B03E7A6B62A8D69B3718D40106CF4404 /* F14IntrinsicsAvailability.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = F14IntrinsicsAvailability.h; path = folly/container/detail/F14IntrinsicsAvailability.h; sourceTree = ""; }; - B03FF6E3B8D37404DA7BFDE30A6056DB /* RNFBCrashlyticsInitProvider.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNFBCrashlyticsInitProvider.m; path = ios/RNFBCrashlytics/RNFBCrashlyticsInitProvider.m; sourceTree = ""; }; B044E7381B12A15E93C5D3C018AA9CF5 /* RelaxedConcurrentPriorityQueue.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RelaxedConcurrentPriorityQueue.h; path = folly/experimental/RelaxedConcurrentPriorityQueue.h; sourceTree = ""; }; B04B2211ADF548091F1BD6F7397CA8E1 /* SDWebImageDownloaderOperation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWebImageDownloaderOperation.m; path = SDWebImage/Core/SDWebImageDownloaderOperation.m; sourceTree = ""; }; B054E6F3AAE18522B8731B7599F3E2F1 /* FIRComponentContainer.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRComponentContainer.m; path = FirebaseCore/Sources/FIRComponentContainer.m; sourceTree = ""; }; B08F408CCA7E09F164029244AF013E1F /* GroupVarint.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GroupVarint.h; path = folly/GroupVarint.h; sourceTree = ""; }; + B0930EF6DAC3276D64ED110CDDDE2B6A /* RNCSafeAreaViewEdges.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCSafeAreaViewEdges.m; path = ios/SafeAreaView/RNCSafeAreaViewEdges.m; sourceTree = ""; }; B0AC1A227C55F22C9ED263554CBCA903 /* glog.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = glog.release.xcconfig; sourceTree = ""; }; B0AE3D11636D2FAD72C01C50C8BBFB80 /* SKRequestInfo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SKRequestInfo.h; path = iOS/Plugins/FlipperKitNetworkPlugin/FlipperKitNetworkPlugin/SKRequestInfo.h; sourceTree = ""; }; B0B130668E29AD268BDD4885F908D6E2 /* boost-for-react-native.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "boost-for-react-native.release.xcconfig"; sourceTree = ""; }; B0B214D775196BA7CA8E17E53048A493 /* libSDWebImage.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libSDWebImage.a; path = libSDWebImage.a; sourceTree = BUILT_PRODUCTS_DIR; }; - B0B33A952D7E8A3DB4FF06D7ADBF0D3B /* RNPinchHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNPinchHandler.m; sourceTree = ""; }; B0C1CDDA67C37CFA92D06224CD0FAA4F /* SysFile.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = SysFile.cpp; path = folly/portability/SysFile.cpp; sourceTree = ""; }; B0D08483E73D8C4155335DD497F872AC /* color_cache_utils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = color_cache_utils.h; path = src/utils/color_cache_utils.h; sourceTree = ""; }; B0E60F02DF445A197564B9B096161BB2 /* opensslconf-x86_64.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "opensslconf-x86_64.h"; path = "ios/include/openssl/opensslconf-x86_64.h"; sourceTree = ""; }; B10E1E091970AE1097AD6223AE30D8D3 /* Hazptr.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = Hazptr.cpp; path = folly/synchronization/Hazptr.cpp; sourceTree = ""; }; - B133713F9DEAAB1D042EBC4C305BA871 /* RNFlingHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNFlingHandler.m; sourceTree = ""; }; B13463CE34BBCB8B266C1D76A2696ADC /* dec_clip_tables.c */ = {isa = PBXFileReference; includeInIndex = 1; name = dec_clip_tables.c; path = src/dsp/dec_clip_tables.c; sourceTree = ""; }; + B13DE9FE3415AEB56CC9AFC05261FB92 /* RNDateTimePicker.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RNDateTimePicker.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; B14B78DD999F7DB67027B075EA4C3753 /* shim.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = shim.h; path = ios/include/openssl/shim.h; sourceTree = ""; }; B14E29DDD3220AB16B5AF9D33BF183CC /* types.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = types.h; path = src/webp/types.h; sourceTree = ""; }; - B16412C2E33D7A2B1376C36CE5CDDB24 /* UMFileSystemInterface.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = UMFileSystemInterface.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; B172A9029098F47FCACF4F7708558907 /* FlowableOperator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FlowableOperator.h; path = yarpl/flowable/FlowableOperator.h; sourceTree = ""; }; B17506706E8AD362D7034C7950E45A4A /* FIRInstallationsErrorUtil.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstallationsErrorUtil.h; path = FirebaseInstallations/Source/Library/Errors/FIRInstallationsErrorUtil.h; sourceTree = ""; }; B182D57D7021E327F308D5219F260659 /* Firebase.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Firebase.h; path = CoreOnly/Sources/Firebase.h; sourceTree = ""; }; + B1C7C0011E5646F6AFDA5B9328164A7F /* UMFilePermissionModuleInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMFilePermissionModuleInterface.h; path = UMFileSystemInterface/UMFilePermissionModuleInterface.h; sourceTree = ""; }; B1D93473A86CD934BD1038A56853136D /* UICollectionView+SKInvalidation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UICollectionView+SKInvalidation.h"; path = "iOS/Plugins/FlipperKitLayoutPlugin/FlipperKitLayoutPlugin/UICollectionView+SKInvalidation.h"; sourceTree = ""; }; - B1E63B313C110308E6EEECEE5E892694 /* RCTLocalAssetImageLoader.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTLocalAssetImageLoader.mm; sourceTree = ""; }; B1E993A38989E296E043B5C53FF43EA8 /* json.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = json.h; path = folly/json.h; sourceTree = ""; }; - B1F80AF2E53193E40A5C4112C6510EA4 /* InspectorInterfaces.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = InspectorInterfaces.cpp; sourceTree = ""; }; + B1FCA085F6B34F71A0B249A0FF6C415C /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; B2004B4E40576C4C203A4C5BFDC702C6 /* GoogleUtilities-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "GoogleUtilities-dummy.m"; sourceTree = ""; }; - B22277B66F99CD73FE129A6FFEDAAC85 /* RNFetchBlobProgress.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNFetchBlobProgress.m; path = ios/RNFetchBlobProgress.m; sourceTree = ""; }; + B20E387478BB9BD681C496D963E6215E /* RCTPerformanceLogger.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTPerformanceLogger.m; sourceTree = ""; }; + B2118D9D2ACC4FA9474EE6F29445370A /* React-Core-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-Core-dummy.m"; sourceTree = ""; }; B23FCC900DEE77A7CB9FC85FEB2D8393 /* FIRExceptionModel.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRExceptionModel.h; path = Crashlytics/Crashlytics/Public/FIRExceptionModel.h; sourceTree = ""; }; - B257747C283EC696C618A4A71FF61E13 /* RCTDecayAnimation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTDecayAnimation.m; sourceTree = ""; }; - B2783E8C8A79BAE9AE51E80D773DDB2D /* RCTConvert+Transform.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RCTConvert+Transform.m"; sourceTree = ""; }; + B25B0BAC40DC6900D31F70A6BEA9466A /* CxxModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = CxxModule.h; sourceTree = ""; }; + B27A81E987ED9E9F1081B1945A115B47 /* RCTLocalAssetImageLoader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTLocalAssetImageLoader.h; path = Libraries/Image/RCTLocalAssetImageLoader.h; sourceTree = ""; }; + B27C49DEBDB36667C06ECE3FAD24BEF0 /* BSG_KSCrashReportStore.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashReportStore.h; sourceTree = ""; }; B27F6E993DF24D410A1E20DF23310A0A /* AESCrypt.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = AESCrypt.cpp; path = Core/aes/AESCrypt.cpp; sourceTree = ""; }; - B28D52210DF03E316BDFFF2F39219EF6 /* BSGSerialization.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSGSerialization.h; sourceTree = ""; }; + B28F5BB228E0E91117E90C901886DB8D /* Orientation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = Orientation.m; path = iOS/RCTOrientation/Orientation.m; sourceTree = ""; }; + B29CBE8985375500C55D4F0137AD8172 /* KeyCommands-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "KeyCommands-prefix.pch"; sourceTree = ""; }; B2A31DCF1982C952178C804B30D8FABC /* FIRCLSLogger.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCLSLogger.m; path = Crashlytics/Crashlytics/Helpers/FIRCLSLogger.m; sourceTree = ""; }; B2BC55187E416A8E6A3A73827798BFFD /* GLog.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GLog.h; path = folly/GLog.h; sourceTree = ""; }; B2C2327B1E76FEDC5E1BC5D098B75DF3 /* backward_references_enc.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = backward_references_enc.h; path = src/enc/backward_references_enc.h; sourceTree = ""; }; B2D02B74897288E6885023A05BDF492C /* SocketOptionMap.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = SocketOptionMap.cpp; path = folly/io/SocketOptionMap.cpp; sourceTree = ""; }; - B2DD20BD344D29760CC3B0698BB8B069 /* RCTDevMenu.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTDevMenu.mm; sourceTree = ""; }; B2DD73F23E8E47F3810615C46B94DF58 /* Framer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Framer.h; path = rsocket/framing/Framer.h; sourceTree = ""; }; + B2DFDDBE737621171F95596BA013275B /* zh-Hans.lproj */ = {isa = PBXFileReference; includeInIndex = 1; name = "zh-Hans.lproj"; path = "ios/QBImagePicker/QBImagePicker/zh-Hans.lproj"; sourceTree = ""; }; + B2F04D142CC630BFC7B8B890CAB4F0E0 /* ReactCommon.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = ReactCommon.debug.xcconfig; sourceTree = ""; }; + B3408319A8780D362C0E6B4E6FA0C537 /* BugsnagSessionTracker.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagSessionTracker.m; sourceTree = ""; }; + B34F3D84C8EC332A55289CC4FA4E138A /* RCTJavaScriptExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTJavaScriptExecutor.h; sourceTree = ""; }; + B361D1648F16F2E9D630D5228A0BD05D /* RNGestureHandlerDirection.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNGestureHandlerDirection.h; path = ios/RNGestureHandlerDirection.h; sourceTree = ""; }; B38C2743AAC0846B2D22EA0225E3AAB1 /* ClientResumeStatusCallback.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ClientResumeStatusCallback.h; path = rsocket/internal/ClientResumeStatusCallback.h; sourceTree = ""; }; B38E379A16354B1527B0C98E5DB7B2E3 /* SSLContext.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SSLContext.h; path = folly/io/async/SSLContext.h; sourceTree = ""; }; - B39EAA6F5F6CB3CF0A02BD1B915B85EE /* RNGestureHandlerEvents.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNGestureHandlerEvents.m; path = ios/RNGestureHandlerEvents.m; sourceTree = ""; }; B3A052BB92C70494B7D1908A0A3CEF50 /* FIRLogger.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRLogger.h; path = FirebaseCore/Sources/Private/FIRLogger.h; sourceTree = ""; }; + B3E0B3E6199118758AF4BF725F5AD3C0 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; B3E48D4E52F4BD78C0908507ED2E4102 /* tr.lproj */ = {isa = PBXFileReference; includeInIndex = 1; name = tr.lproj; path = "Objective-C/TOCropViewController/Resources/tr.lproj"; sourceTree = ""; }; - B3EBDFEF2FCB88FEEBA7C086A33B31BC /* UMAppRecordInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMAppRecordInterface.h; sourceTree = ""; }; - B3FBA663983BBDC4F2180010734E046B /* ARTText.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = ARTText.m; path = ios/ARTText.m; sourceTree = ""; }; B402A5E83CF2AC341ED741CC58C7188A /* FIRAppAssociationRegistration.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRAppAssociationRegistration.m; path = FirebaseCore/Sources/FIRAppAssociationRegistration.m; sourceTree = ""; }; + B412407B60EC6DE72031E2A90E2CF80F /* 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; }; + B41C2605360ABB58B9F50AD61D16C9F3 /* react-native-document-picker-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "react-native-document-picker-dummy.m"; sourceTree = ""; }; B41E0974D5F18FCCEAEB4B15F97F957A /* SDImageIOAnimatedCoder.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageIOAnimatedCoder.m; path = SDWebImage/Core/SDImageIOAnimatedCoder.m; sourceTree = ""; }; - B42DE144B58B9C676D6CEB7AA9A1956D /* RootView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RootView.m; path = ios/RootView.m; sourceTree = ""; }; B4348DCBD70BF95ED2AEB6DDBF395C16 /* NSBezierPath+SDRoundedCorners.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSBezierPath+SDRoundedCorners.m"; path = "SDWebImage/Private/NSBezierPath+SDRoundedCorners.m"; sourceTree = ""; }; B43874C6CBB50E7134FBEC24BABFE14F /* libGoogleUtilities.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libGoogleUtilities.a; path = libGoogleUtilities.a; sourceTree = BUILT_PRODUCTS_DIR; }; B443013ECE064D18CCA3446CB228F884 /* MMKVHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MMKVHandler.h; path = iOS/MMKV/MMKV/MMKVHandler.h; sourceTree = ""; }; - B455F16556CE02B2F5750E8366B40690 /* RCTImageStoreManager.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTImageStoreManager.mm; sourceTree = ""; }; B463BE1B95E31FC56D2116708584577B /* common_dec.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = common_dec.h; path = src/dec/common_dec.h; sourceTree = ""; }; B465936D467BDA0138F2F1E491FA9478 /* EventBaseLocal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EventBaseLocal.h; path = folly/io/async/EventBaseLocal.h; sourceTree = ""; }; B4708E70C3180E114A6D1632FEE02F33 /* GDTCOREventTransformer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCOREventTransformer.h; path = GoogleDataTransport/GDTCORLibrary/Public/GDTCOREventTransformer.h; sourceTree = ""; }; B474FCC6971E073D35E97B0AB5F2D70C /* Pods-NotificationService.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-NotificationService.debug.xcconfig"; sourceTree = ""; }; - B47B6BB5880F20772D1E5C7705CDA7CB /* RCTSRWebSocket.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTSRWebSocket.h; path = Libraries/WebSocket/RCTSRWebSocket.h; sourceTree = ""; }; - B47F592F534DCE24F44257D123C663FE /* REAConcatNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REAConcatNode.h; sourceTree = ""; }; - B48B0BCCD3C6C914732896C8EE15BD0C /* RNVectorIcons.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNVectorIcons.debug.xcconfig; sourceTree = ""; }; - B48DF8618EE0B203C4FE2E0B3AE50343 /* RCTBaseTextInputView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBaseTextInputView.h; sourceTree = ""; }; + B4782044EC10FD9DB140B3F6E9054AD7 /* React-jsinspector.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-jsinspector.release.xcconfig"; sourceTree = ""; }; + B47B992DBDF6F13F5914DB2903224132 /* EXFileSystem.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXFileSystem.m; path = EXFileSystem/EXFileSystem.m; sourceTree = ""; }; + B481929AC0648507A5DBBEA84287253F /* ResourceBundle-AccessibilityResources-React-Core-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "ResourceBundle-AccessibilityResources-React-Core-Info.plist"; sourceTree = ""; }; + B48D0EC4D6AB87AC52C703AF50275207 /* RCTDatePicker.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTDatePicker.m; sourceTree = ""; }; + B493BD6DC566132C0D38020BA2C45C20 /* BSG_KSSystemCapabilities.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSSystemCapabilities.h; sourceTree = ""; }; + B4A71E98BE17523C8EB3E47255062FF9 /* RCTValueAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTValueAnimatedNode.m; sourceTree = ""; }; B4B17C81BE735804B81E8213F740EB9B /* ScopedEventBaseThread.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = ScopedEventBaseThread.cpp; path = folly/io/async/ScopedEventBaseThread.cpp; sourceTree = ""; }; - B4C1EE3F74ED63353DA485AC922659BA /* RCTDatePicker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTDatePicker.h; sourceTree = ""; }; - B4CDB506C4651CF6C6E26964F375783D /* UMReactNativeAdapter.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMReactNativeAdapter.release.xcconfig; sourceTree = ""; }; B4D313D8A49A00FC938EE3BB7005BAAF /* FLEXUtility.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = FLEXUtility.mm; path = iOS/Plugins/FlipperKitNetworkPlugin/SKIOSNetworkPlugin/FLEXNetworkLib/FLEXUtility.mm; sourceTree = ""; }; - B4E0E6DFE4206A3F803116ECCF22DD90 /* RCTLogBox.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTLogBox.h; path = React/CoreModules/RCTLogBox.h; sourceTree = ""; }; - B4F7DE84791690C51E30C09DE392C126 /* RCTPackagerConnection.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTPackagerConnection.mm; sourceTree = ""; }; + B4F5793294B2FB7F9C1461C7A9A11DCD /* RCTKeyboardObserver.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTKeyboardObserver.h; path = React/CoreModules/RCTKeyboardObserver.h; sourceTree = ""; }; B4FC835C27B7AF6477DE7EEB0392E293 /* CodedInputDataCrypt.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = CodedInputDataCrypt.cpp; path = Core/CodedInputDataCrypt.cpp; sourceTree = ""; }; B4FF54CA08915921A79C644F03386D42 /* FIRCLSUnwind_arm.c */ = {isa = PBXFileReference; includeInIndex = 1; name = FIRCLSUnwind_arm.c; path = Crashlytics/Crashlytics/Unwind/FIRCLSUnwind_arm.c; sourceTree = ""; }; B508DFD455108C925909740964433AF6 /* SDWebImageWebPCoder-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "SDWebImageWebPCoder-prefix.pch"; sourceTree = ""; }; + B51AE3C8AD280681A6529749FDACD93A /* React-RCTText-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-RCTText-dummy.m"; sourceTree = ""; }; B52CD50EEB7B58A8AAB4403DB7C3A509 /* HHWheelTimer-fwd.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "HHWheelTimer-fwd.h"; path = "folly/io/async/HHWheelTimer-fwd.h"; sourceTree = ""; }; B52E5F294AC830CB71560C2923E82B0E /* SwappableEventBase.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = SwappableEventBase.cpp; path = rsocket/internal/SwappableEventBase.cpp; sourceTree = ""; }; B536DE787B684F3AA2D7A02FFC256A03 /* EliasFanoCoding.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EliasFanoCoding.h; path = folly/experimental/EliasFanoCoding.h; sourceTree = ""; }; - B5381095D620F8CEE1468E12F5FDABB7 /* REABezierNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REABezierNode.h; sourceTree = ""; }; - B54236F8BFE6D1E6E5F0234275E38574 /* RCTRedBox.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTRedBox.h; path = React/CoreModules/RCTRedBox.h; sourceTree = ""; }; B5442A1BD758B0329C95244F108318EE /* YogaKit.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = YogaKit.debug.xcconfig; sourceTree = ""; }; - B549A7E45CCC048D345D4E1DCF59A85E /* RNFBCrashlytics.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNFBCrashlytics.debug.xcconfig; sourceTree = ""; }; B54C96C636E8209C4BCF7976B30710E7 /* SKEnvironmentVariables.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SKEnvironmentVariables.m; path = iOS/FlipperKit/SKEnvironmentVariables.m; sourceTree = ""; }; B54D8624CE6218BF163A9B3FE6F328EC /* Firebase.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = Firebase.release.xcconfig; sourceTree = ""; }; - B56B664308FCB6852CE5A0F93B6EF57E /* Octicons.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = Octicons.ttf; path = Fonts/Octicons.ttf; sourceTree = ""; }; - B56D94C0DBA9BAD5FF5EEC37AD360624 /* RCTScrollContentViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTScrollContentViewManager.h; sourceTree = ""; }; - B570AD3288F646353B803C672C681ADB /* RCTSurfaceView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSurfaceView.h; sourceTree = ""; }; - B57C0FDA999BF60FD2D01687DD4F2876 /* FBReactNativeSpec.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = FBReactNativeSpec.debug.xcconfig; sourceTree = ""; }; + B57A51040852401EC5C4D0B5CCCCD406 /* react-native-safe-area-context-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "react-native-safe-area-context-prefix.pch"; sourceTree = ""; }; + B5879F9754B13A5124693008CFD4361B /* RCTEventDispatcher.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTEventDispatcher.m; sourceTree = ""; }; B598759CCFAAC0644CCB774DD52E7B7E /* FIRCLSConstants.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCLSConstants.m; path = Crashlytics/Shared/FIRCLSConstants.m; sourceTree = ""; }; - B59DC524F4C232EFBD99B851A98BBD5E /* BugsnagReactNative.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = BugsnagReactNative.debug.xcconfig; sourceTree = ""; }; - B5A045995EF3FCC36E323E71F008C5AB /* RCTRequired.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RCTRequired.debug.xcconfig; sourceTree = ""; }; - B5A0E639535A43CD1EE73AE08E99399F /* UMMagnetometerInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMMagnetometerInterface.h; path = UMSensorsInterface/UMMagnetometerInterface.h; sourceTree = ""; }; + B59EEA89165C79D740E9F7E668C36CD5 /* FBLazyVector.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = FBLazyVector.debug.xcconfig; sourceTree = ""; }; + B5A729E304BCAA17639DE80581B2B82C /* NativeToJsBridge.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = NativeToJsBridge.h; sourceTree = ""; }; + B5C143AB3CA83518CFCD44C393AE9920 /* RNPinchHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNPinchHandler.m; sourceTree = ""; }; B5C69E758FB2D3A24907A0129B96916E /* FIRCLSUUID.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCLSUUID.m; path = Crashlytics/Shared/FIRCLSUUID.m; sourceTree = ""; }; + B5D0D8817E5805823E1D5D53C84E9818 /* RCTEventAnimation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTEventAnimation.m; sourceTree = ""; }; B5D5546E4E9B124EFF83BF5E6A7A285D /* Fingerprint.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = Fingerprint.cpp; path = folly/Fingerprint.cpp; sourceTree = ""; }; B5EB86DD26EF41F80D4D3BA670D485F0 /* FlipperCppBridgingConnection.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = FlipperCppBridgingConnection.mm; path = iOS/FlipperKit/CppBridge/FlipperCppBridgingConnection.mm; sourceTree = ""; }; - B5ED26149548ED377E027FEBF35D4DE5 /* RNCMaskedView.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RNCMaskedView.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - B5F6ABDB85F84E535AA937C74C5DE51C /* RNFetchBlobRequest.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNFetchBlobRequest.h; path = ios/RNFetchBlobRequest.h; sourceTree = ""; }; - B60C0FAA9408E4E1B7C6DC275C52712B /* NSError+BSG_SimpleConstructor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "NSError+BSG_SimpleConstructor.h"; sourceTree = ""; }; - B62F088435CAF4ECD06E812357D975CA /* UMAppLoader.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMAppLoader.debug.xcconfig; sourceTree = ""; }; B62F3C7D15B1B9DC583296B7645BB20A /* FIRCLSDwarfExpressionMachine.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSDwarfExpressionMachine.h; path = Crashlytics/Crashlytics/Unwind/Dwarf/FIRCLSDwarfExpressionMachine.h; sourceTree = ""; }; - B6587D1DF773B9E9D1F5D6232B7BBEB3 /* RNDateTimePicker-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNDateTimePicker-dummy.m"; sourceTree = ""; }; - B65F6B6AFDDF679826C5342BCE3C2CB4 /* RNCMaskedView.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNCMaskedView.debug.xcconfig; sourceTree = ""; }; - B6802B58999FB4D3FD7BAD1E70322ADF /* EXWebBrowser.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = EXWebBrowser.debug.xcconfig; sourceTree = ""; }; + B633B6BA4DF021F448946781AB1752DF /* EXFileSystem.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = EXFileSystem.release.xcconfig; sourceTree = ""; }; + B63DD46CA1EA6FE4A4C7B2661B0BCB9F /* RCTImageLoaderWithAttributionProtocol.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageLoaderWithAttributionProtocol.h; path = Libraries/Image/RCTImageLoaderWithAttributionProtocol.h; sourceTree = ""; }; + B65B9525F88F59AA26E7E09C4BA0FA6C /* EXSessionUploadTaskDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = EXSessionUploadTaskDelegate.h; sourceTree = ""; }; + B66CF7B2666A62C5D9073BB29B03B3BA /* EXAV.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXAV.m; path = EXAV/EXAV.m; sourceTree = ""; }; + B676F675E3FC1BECCF4989E31D820332 /* React-RCTAnimation.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-RCTAnimation.debug.xcconfig"; sourceTree = ""; }; + B677605A7E5512FF23527814F0035B19 /* RCTPackagerClient.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTPackagerClient.m; sourceTree = ""; }; B6884E848787ECE8DBDAAEBBF4E527D7 /* SocketOptionMap.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SocketOptionMap.h; path = folly/io/SocketOptionMap.h; sourceTree = ""; }; + B688BF60BEAFBD9E5BA1394561849F89 /* RCTActivityIndicatorView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTActivityIndicatorView.m; sourceTree = ""; }; + B698277961B93EEFACEA54383F04012A /* RNFBUtilsModule.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNFBUtilsModule.m; path = ios/RNFBApp/RNFBUtilsModule.m; sourceTree = ""; }; B69A2764015E57C0D5F50DB351FBE1FC /* FIRCLSSettingsOnboardingManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCLSSettingsOnboardingManager.m; path = Crashlytics/Crashlytics/Settings/FIRCLSSettingsOnboardingManager.m; sourceTree = ""; }; B69E2979DB6DF82E5B9E92C3DCB55EAE /* GlobalExecutor.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = GlobalExecutor.cpp; path = folly/executors/GlobalExecutor.cpp; sourceTree = ""; }; B6B97EA2F8977F3CEAF07603545096EF /* FIRCoreDiagnosticsInterop.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCoreDiagnosticsInterop.h; path = Interop/CoreDiagnostics/Public/FIRCoreDiagnosticsInterop.h; sourceTree = ""; }; + B6E339C45A232633FEDBD95AF585254D /* BSG_KSCrashSentry.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSCrashSentry.c; sourceTree = ""; }; + B6E95614350C3908F16ACD8E2B26B2A3 /* EXFileSystem.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = EXFileSystem.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; B70A573BCA9B6B41C0BA4C0834D5680D /* GULAppDelegateSwizzler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GULAppDelegateSwizzler.m; path = GoogleUtilities/AppDelegateSwizzler/GULAppDelegateSwizzler.m; sourceTree = ""; }; B71AD9BCECD7CDE1AC011FA0CBC35ED9 /* GULLogger.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GULLogger.m; path = GoogleUtilities/Logger/GULLogger.m; sourceTree = ""; }; B71E6BF7C24B85671CF6AB6FF48ABCFE /* FKPortForwardingServer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FKPortForwardingServer.h; path = iOS/FlipperKit/FKPortForwarding/FKPortForwardingServer.h; sourceTree = ""; }; B7344D282B26110B08D7B8D7D1895AFE /* Pretty.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Pretty.h; path = folly/lang/Pretty.h; sourceTree = ""; }; B73E01033F56F4F9DC335F480B01F175 /* MicroLock.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MicroLock.h; path = folly/MicroLock.h; sourceTree = ""; }; + B74515FFE16AF68ABA56B0B0525D4E64 /* RCTScrollableProtocol.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTScrollableProtocol.h; sourceTree = ""; }; B75A261FE3CE62D5A559B997074E70FC /* libreact-native-background-timer.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libreact-native-background-timer.a"; path = "libreact-native-background-timer.a"; sourceTree = BUILT_PRODUCTS_DIR; }; B76DDEB4FBB4CA8EE7DB029F225EBBB7 /* FlipperClient.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = FlipperClient.cpp; path = xplat/Flipper/FlipperClient.cpp; sourceTree = ""; }; B789F70E8E422A96F5F3A64A6C9B970B /* Flipper.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = Flipper.debug.xcconfig; sourceTree = ""; }; - B7C479CD9F8AC115BA4F809EA2FE7A0B /* RCTNativeAnimatedModule.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTNativeAnimatedModule.mm; sourceTree = ""; }; + B796A4811E900479D9C0B12B8BDD78A4 /* react-native-slider.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "react-native-slider.release.xcconfig"; sourceTree = ""; }; B7F5850370B91FC626DA274DA5B4D8CF /* Dirent.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Dirent.h; path = folly/portability/Dirent.h; sourceTree = ""; }; - B7FF49D4BB2C9495FBA60F00F6FF7785 /* RNDeviceInfo.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNDeviceInfo.m; path = ios/RNDeviceInfo/RNDeviceInfo.m; sourceTree = ""; }; + B7FDE4513DB617FCC57BE7A7D3369E80 /* RCTBaseTextShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBaseTextShadowView.h; sourceTree = ""; }; B806E2897D1CD8A72BB53B436D046285 /* Pods-ShareRocketChatRN-acknowledgements.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-ShareRocketChatRN-acknowledgements.plist"; sourceTree = ""; }; - B80EEBA0C6117C5561AE1C1EBEBEB01D /* BugsnagPlugin.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagPlugin.h; sourceTree = ""; }; - B843E54074EDB62A3C081817E57AC38B /* react-native-slider-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "react-native-slider-dummy.m"; sourceTree = ""; }; - B857BE38CB800BD45374F28A59CDA78C /* BSG_KSSysCtl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSSysCtl.h; sourceTree = ""; }; + B82FEC9BA8F62D986D867F67296D6E1D /* UMAppLoader-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "UMAppLoader-dummy.m"; sourceTree = ""; }; + B832E03657548301AA0D478F8515FD2C /* RCTConvert+RNNotifications.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "RCTConvert+RNNotifications.m"; path = "RNNotifications/RCTConvert+RNNotifications.m"; sourceTree = ""; }; + B8491340A2D8F67A220A17EACCBE4BB6 /* RCTInvalidating.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTInvalidating.h; sourceTree = ""; }; B85DE5BEEE3287E6E70B95FEE2433918 /* AsyncSocketException.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AsyncSocketException.h; path = folly/io/async/AsyncSocketException.h; sourceTree = ""; }; B88A54159B245E727A6D16DEFE105A09 /* libMMKV.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libMMKV.a; path = libMMKV.a; sourceTree = BUILT_PRODUCTS_DIR; }; B88D06C2071BC0AFF21CC77D4D60CFF1 /* SysMembarrier.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SysMembarrier.h; path = folly/portability/SysMembarrier.h; sourceTree = ""; }; B8929613C676A28B292CACE916AB8B84 /* SKNetworkReporter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SKNetworkReporter.h; path = iOS/Plugins/FlipperKitNetworkPlugin/FlipperKitNetworkPlugin/SKNetworkReporter.h; sourceTree = ""; }; + B8A348D562E30E21BD6AA5074E3588B9 /* experiments.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = experiments.h; sourceTree = ""; }; B8AAF916EFD854B6431AF274ADB8B760 /* FirebaseCore.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = FirebaseCore.release.xcconfig; sourceTree = ""; }; - B8BBABB832F892AC79057E30FF443FD8 /* RNCAppearanceProviderManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCAppearanceProviderManager.m; path = ios/Appearance/RNCAppearanceProviderManager.m; sourceTree = ""; }; + B8ADCE6ECF30078B12D4977BD39533DD /* RCTCxxConvert.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTCxxConvert.m; sourceTree = ""; }; B8BF6B0504A160312240DE5D8E4D5032 /* FIRCLSFile.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCLSFile.m; path = Crashlytics/Crashlytics/Helpers/FIRCLSFile.m; sourceTree = ""; }; + B8C5CE35FB4BBF24AD8EE2412183D309 /* UMFontInterface.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = UMFontInterface.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; B8CD4B9B578CE9FA38114B638C9CAA78 /* libRNCMaskedView.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libRNCMaskedView.a; path = libRNCMaskedView.a; sourceTree = BUILT_PRODUCTS_DIR; }; - B8D0E246E8EE55A72D534D88EDAA857E /* RCTSurface.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTSurface.mm; sourceTree = ""; }; - B8DDF33544CB1BDCD56C15CCD835E04F /* RNReanimated.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RNReanimated.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - B8E787BB827088FF028634E3C9C190AC /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; - B8F66399ADB837C4F6DDB78D18E61392 /* RCTScrollContentShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTScrollContentShadowView.m; sourceTree = ""; }; + B8D756B10CF55071D90D7D36960B25FE /* RCTNetworkTask.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTNetworkTask.mm; sourceTree = ""; }; B8F67AB790E6701A850EF3960C5E1CDD /* CoreCachedSharedPtr.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CoreCachedSharedPtr.h; path = folly/concurrency/CoreCachedSharedPtr.h; sourceTree = ""; }; - B8FE5FD3EA2019EA36AE625A30E86DE9 /* LNAnimator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = LNAnimator.h; sourceTree = ""; }; + B90181D6D7F1F52B27BC8162173D9439 /* RCTTouchHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTouchHandler.h; sourceTree = ""; }; B901F19FEF43BC84CE222EC37A41FA3E /* UIImage+WebP.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIImage+WebP.h"; path = "SDWebImageWebPCoder/Classes/UIImage+WebP.h"; sourceTree = ""; }; - B902D2AC66BDA9135C720123F2CBC7C4 /* RCTNativeModule.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTNativeModule.mm; sourceTree = ""; }; B903A67830E160EE0EF8C295A48716BE /* FIRAppInternal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAppInternal.h; path = FirebaseCore/Sources/Private/FIRAppInternal.h; sourceTree = ""; }; - B9141471CF887C79B4B88DFF8A35F80E /* BugsnagCrashReport.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagCrashReport.h; sourceTree = ""; }; - B94081F9AF625868C01702FE15ECE7CF /* experiments-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "experiments-inl.h"; sourceTree = ""; }; + B91C52A0DCF1F20CA83697EFC5980B4A /* RCTDataRequestHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTDataRequestHandler.h; path = Libraries/Network/RCTDataRequestHandler.h; sourceTree = ""; }; + B938E33632785E0B00428F5CBC3F7CD6 /* RCTMessageThread.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTMessageThread.h; sourceTree = ""; }; + B9445CDF1D94007D73EE17D844255C0A /* FontAwesome5_Brands.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = FontAwesome5_Brands.ttf; path = Fonts/FontAwesome5_Brands.ttf; sourceTree = ""; }; B95FD3CBCD00F7E4127E29929C64FE90 /* FIRCLSProcess.c */ = {isa = PBXFileReference; includeInIndex = 1; name = FIRCLSProcess.c; path = Crashlytics/Crashlytics/Components/FIRCLSProcess.c; sourceTree = ""; }; + B96043C0323920E970B3181930AD672F /* ReactNativeKeyboardInput-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "ReactNativeKeyboardInput-dummy.m"; sourceTree = ""; }; + B9627976F0E4A350657DEBF476F626A4 /* EXWebBrowser-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "EXWebBrowser-dummy.m"; sourceTree = ""; }; + B968290195D42A559C4295FBDF222391 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; + B969A70BD950304E1BDA85E61297D663 /* RCTAnimationUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTAnimationUtils.h; path = Libraries/NativeAnimation/RCTAnimationUtils.h; sourceTree = ""; }; B978CE5AB255225FB9E1244B8F9A4B00 /* Builtins.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = Builtins.cpp; path = folly/portability/Builtins.cpp; sourceTree = ""; }; B97A113684B4D9213FF2A8D21E5E207E /* Conv.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Conv.h; path = folly/chrono/Conv.h; sourceTree = ""; }; - B982C5247836A3683A1F435B1B56672C /* QBAlbumCell.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = QBAlbumCell.m; path = ios/QBImagePicker/QBImagePicker/QBAlbumCell.m; sourceTree = ""; }; - B9853DF4A475033BBD0E2DC7B38FF186 /* EXImageLoader.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = EXImageLoader.debug.xcconfig; sourceTree = ""; }; B98CB91D6B7838DE160F401F45EFC20D /* FBLPromise.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBLPromise.h; path = Sources/FBLPromises/include/FBLPromise.h; sourceTree = ""; }; B996C693A38D812D6D4B4A84613FE4F0 /* strtod.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = strtod.h; path = "double-conversion/strtod.h"; sourceTree = ""; }; + B99CF8D44BD1984450386F171146D0FD /* EXHaptics-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "EXHaptics-dummy.m"; sourceTree = ""; }; + B9A99059D66C0A81EA8F66AB4CA6FD73 /* REAConcatNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REAConcatNode.h; sourceTree = ""; }; B9AC738BFCE6F9FB9C927423AC662D8B /* enc_mips_dsp_r2.c */ = {isa = PBXFileReference; includeInIndex = 1; name = enc_mips_dsp_r2.c; path = src/dsp/enc_mips_dsp_r2.c; sourceTree = ""; }; B9C9AB84A9266E3A95BAD181EDC5C2F3 /* CPUThreadPoolExecutor.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = CPUThreadPoolExecutor.cpp; path = folly/executors/CPUThreadPoolExecutor.cpp; sourceTree = ""; }; - B9D24F6F371C919129EDF5A34E8C172D /* RCTObjcExecutor.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTObjcExecutor.mm; sourceTree = ""; }; + B9D6A55BB57A1F525929578A88F9CF8E /* UMReactLogHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMReactLogHandler.h; sourceTree = ""; }; B9DAC0C34C519A976E3B37141D84D98E /* Flipper-RSocket.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Flipper-RSocket.debug.xcconfig"; sourceTree = ""; }; + B9DCD2F8AD33BD5688630CE260E1E5B6 /* EXAppleAuthentication-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "EXAppleAuthentication-dummy.m"; sourceTree = ""; }; B9EEF477D548ACEAF2222376E62549FB /* GULUserDefaults.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULUserDefaults.h; path = GoogleUtilities/UserDefaults/Private/GULUserDefaults.h; sourceTree = ""; }; BA0E5DF052D8B15D2AB5241F3B3FD619 /* ThreadLock.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = ThreadLock.cpp; path = Core/ThreadLock.cpp; sourceTree = ""; }; - BA173522044DEE0F36BE18B95FF4FD19 /* ResourceBundle-AccessibilityResources-React-Core-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "ResourceBundle-AccessibilityResources-React-Core-Info.plist"; sourceTree = ""; }; + BA1332B5E93D70C9EA3377B2A1B89A5B /* RCTInterpolationAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTInterpolationAnimatedNode.h; sourceTree = ""; }; BA47EF8355AC85F812DDC3DDC0F6B2F6 /* FIRInstallationsAuthTokenResultInternal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstallationsAuthTokenResultInternal.h; path = FirebaseInstallations/Source/Library/FIRInstallationsAuthTokenResultInternal.h; sourceTree = ""; }; BA49F138F43529241E7715ED61E9CB03 /* FlipperClient.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = FlipperClient.mm; path = iOS/FlipperKit/FlipperClient.mm; sourceTree = ""; }; + BA5E3073BA7F3C9F595624AA607989F4 /* RCTPicker.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTPicker.m; sourceTree = ""; }; BA640F40EF83A956AFC558E6EC6BDCF3 /* FlipperUtil.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FlipperUtil.m; path = iOS/FlipperKit/FlipperUtil.m; sourceTree = ""; }; - BA7D0472C62DF8CCD5CF1C9925C83DC4 /* RNCookieManagerIOS.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCookieManagerIOS.h; path = ios/RNCookieManagerIOS/RNCookieManagerIOS.h; sourceTree = ""; }; + BA7ACD2B3319D0FCEC206069A1D8C696 /* RCTScrollContentShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTScrollContentShadowView.m; sourceTree = ""; }; BA8076322D07A19932715F339945025F /* ssim.c */ = {isa = PBXFileReference; includeInIndex = 1; name = ssim.c; path = src/dsp/ssim.c; sourceTree = ""; }; + BA817FB4A57C669CE63C028340C0DF60 /* RCTDevMenu.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTDevMenu.mm; sourceTree = ""; }; BA89430F8B09AA75B3E6F6F35190E02A /* Executor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Executor.h; path = folly/Executor.h; sourceTree = ""; }; BA8D20000B9413674B8673B7CDE2E72C /* HazptrThreadPoolExecutor.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = HazptrThreadPoolExecutor.cpp; path = folly/synchronization/HazptrThreadPoolExecutor.cpp; sourceTree = ""; }; + BA901E7DBEC0BA22FF84DA57D36DAC46 /* RCTProfileTrampoline-x86_64.S */ = {isa = PBXFileReference; includeInIndex = 1; path = "RCTProfileTrampoline-x86_64.S"; sourceTree = ""; }; BA9DBC64DF6D0336A60497A93DA45E7E /* InterProcessLock_Win32.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = InterProcessLock_Win32.cpp; path = Core/InterProcessLock_Win32.cpp; sourceTree = ""; }; - BA9E1BC397F2ABDF1DD232F2330432FC /* RNFBCrashlyticsInitProvider.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNFBCrashlyticsInitProvider.h; path = ios/RNFBCrashlytics/RNFBCrashlyticsInitProvider.h; sourceTree = ""; }; - BAA9381E9B15567B41C7E2E4E1A54E62 /* RCTRootView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTRootView.h; sourceTree = ""; }; BAADB84BC96AC31F8E4BB4DAA7E21AF9 /* pqueue.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = pqueue.h; path = ios/include/openssl/pqueue.h; sourceTree = ""; }; - BABC65ABA36238412CBD358F55B41EEA /* BSG_KSCrashSentry_User.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashSentry_User.h; sourceTree = ""; }; - BAC2229CCF7F0A0550B5E0DC8FDDC0AF /* RCTBundleURLProvider.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTBundleURLProvider.m; sourceTree = ""; }; BADBF107BDB808A6AB3DC7AA8E630E4A /* GlobalShutdownSocketSet.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GlobalShutdownSocketSet.h; path = folly/io/GlobalShutdownSocketSet.h; sourceTree = ""; }; BAE1EC9CB0B7AB6C1F37C72C73133F9D /* conf_api.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = conf_api.h; path = ios/include/openssl/conf_api.h; sourceTree = ""; }; BAE4E01CD9ADF01DB764AEB2D2F4B9B4 /* near_lossless_enc.c */ = {isa = PBXFileReference; includeInIndex = 1; name = near_lossless_enc.c; path = src/enc/near_lossless_enc.c; sourceTree = ""; }; BAF13A52C1805CF080B23ED25D66F46A /* String-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "String-inl.h"; path = "folly/String-inl.h"; sourceTree = ""; }; - BAF22493D3FEA5B771C9DE8631B3E369 /* EXSessionTaskDispatcher.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = EXSessionTaskDispatcher.m; sourceTree = ""; }; + BAF71E796068E6BBF244D71F499989E3 /* UMTaskManagerInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMTaskManagerInterface.h; path = UMTaskManagerInterface/UMTaskManagerInterface.h; sourceTree = ""; }; BAFC42D3FE10505C8A1F403FE5F1CE2F /* FIRComponentContainer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRComponentContainer.h; path = FirebaseCore/Sources/Private/FIRComponentContainer.h; sourceTree = ""; }; BB1B33C87BD0CF9A48BC11309EFFC382 /* nanopb-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "nanopb-prefix.pch"; sourceTree = ""; }; - BB275AD0048DF458F3B105B17BC2979D /* RCTSegmentedControl.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSegmentedControl.m; sourceTree = ""; }; + BB1B50F6E9C105E2E06B5A0F701187CD /* ObservingInputAccessoryView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ObservingInputAccessoryView.h; path = lib/ObservingInputAccessoryView.h; sourceTree = ""; }; + BB303780E5625A5F44EF222F1177D5E7 /* REABezierNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REABezierNode.h; sourceTree = ""; }; + BB3134EBD7A8FC2436C0D89788BD858E /* UMConstantsInterface.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMConstantsInterface.debug.xcconfig; sourceTree = ""; }; BB34EEE87843613C0628DC3E43C08DB2 /* SKSwizzle.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SKSwizzle.h; path = iOS/Plugins/FlipperKitLayoutPlugin/FlipperKitLayoutPlugin/utils/SKSwizzle.h; sourceTree = ""; }; BB4E2B4B71D3EA3BE4B3AECA7E68359D /* logging.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = logging.cc; path = src/logging.cc; sourceTree = ""; }; BB69159A9E7534B5DC700DC21108F8F8 /* FIRCLSFCRAnalytics.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSFCRAnalytics.h; path = Crashlytics/Crashlytics/Helpers/FIRCLSFCRAnalytics.h; sourceTree = ""; }; BB69E3A616A3A69DF7A2CA81DB6B6B89 /* FBLPromise+Timeout.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "FBLPromise+Timeout.m"; path = "Sources/FBLPromises/FBLPromise+Timeout.m"; sourceTree = ""; }; BB735AA59253F87CCF6D4E8061D1B214 /* GCDAsyncSocket.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GCDAsyncSocket.m; path = Source/GCD/GCDAsyncSocket.m; sourceTree = ""; }; + BB7B5A274FB264D81BAB0F0814C17943 /* ARTSolidColor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = ARTSolidColor.h; sourceTree = ""; }; + BB7EB853165E8E006751FE1B7E183C1B /* RCTAsyncLocalStorage.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTAsyncLocalStorage.mm; sourceTree = ""; }; BB824F4AB5400F724833397906D2FF41 /* SDWebImageTransition.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWebImageTransition.m; path = SDWebImage/Core/SDWebImageTransition.m; sourceTree = ""; }; BB848245AEFFEBC478657CA8E907E9E5 /* SanitizeLeak.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = SanitizeLeak.cpp; path = folly/memory/SanitizeLeak.cpp; sourceTree = ""; }; BB95FDE031FB25A2D1B2392B887ED18C /* SanitizeLeak.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SanitizeLeak.h; path = folly/memory/SanitizeLeak.h; sourceTree = ""; }; + BB9F84B8F1184E97F9CB46B2B5732796 /* RCTVersion.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTVersion.h; sourceTree = ""; }; BBA8A54B05081EB535BC185B038426E7 /* IOVec.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = IOVec.h; path = folly/portability/IOVec.h; sourceTree = ""; }; - BBB0CB6A13A1AB1E0718E673AB0288FF /* RNBridgeModule.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNBridgeModule.m; path = RNNotifications/RNBridgeModule.m; sourceTree = ""; }; - BBD988D67BB23F05086B6AE2FA5B32E9 /* RCTConvert+CoreLocation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RCTConvert+CoreLocation.m"; sourceTree = ""; }; + BBBDE60FDA95A434A91F6E69E0F2564C /* RNGestureHandler.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RNGestureHandler.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + BBE264BBFCC27844270969A8D76274D6 /* RCTRedBoxExtraDataViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTRedBoxExtraDataViewController.h; sourceTree = ""; }; + BBEF5D51AC5C7637169DD5A598522DDF /* RNGestureHandlerButton.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNGestureHandlerButton.h; path = ios/RNGestureHandlerButton.h; sourceTree = ""; }; BBF4D481885ECC4328D5D6CEB1D010E6 /* InlineFunctionRef.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = InlineFunctionRef.h; path = folly/synchronization/detail/InlineFunctionRef.h; sourceTree = ""; }; - BBFD63D0D783EC847E063129AE89CC65 /* UMPermissionsMethodsDelegate.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = UMPermissionsMethodsDelegate.m; path = UMPermissionsInterface/UMPermissionsMethodsDelegate.m; sourceTree = ""; }; BC0F06FB3C6469DDB7A0108FD0F48D79 /* TOCropViewController.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = TOCropViewController.release.xcconfig; sourceTree = ""; }; BC11E5817E93C0D702265A42715FF434 /* TcpConnectionFactory.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = TcpConnectionFactory.cpp; path = rsocket/transports/tcp/TcpConnectionFactory.cpp; sourceTree = ""; }; + BC1726A8A195FCE50786A827566C5D5B /* RCTSlider.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSlider.h; sourceTree = ""; }; BC3CC80762661768FD845DAF6495B7C2 /* libcrypto.a */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = archive.ar; name = libcrypto.a; path = ios/lib/libcrypto.a; sourceTree = ""; }; BC41F4BEFC115303267857B135A144AE /* libUMPermissionsInterface.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libUMPermissionsInterface.a; path = libUMPermissionsInterface.a; sourceTree = BUILT_PRODUCTS_DIR; }; BC47C5EAC8674AE66446BFA038059A22 /* MPMCPipelineDetail.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MPMCPipelineDetail.h; path = folly/detail/MPMCPipelineDetail.h; sourceTree = ""; }; - BC488A23661459D78B3AAE07E520B0F0 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; BC65CAE7875248D14C21132FFC785A51 /* GDTCORFlatFileStorage.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCORFlatFileStorage.h; path = GoogleDataTransport/GDTCORLibrary/Private/GDTCORFlatFileStorage.h; sourceTree = ""; }; - BC6A56B2103C7FBB3A585B52A0D04257 /* RCTConvertHelpers.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTConvertHelpers.mm; sourceTree = ""; }; BC793B789BC6A2B2ACBBBB5A6E807CF9 /* Request.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Request.h; path = folly/io/async/Request.h; sourceTree = ""; }; + BC82D974429C0673E8C435355EC66EA9 /* RCTUIImageViewAnimated.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTUIImageViewAnimated.m; sourceTree = ""; }; BC92C6B1851B67239DB928F77693DFDE /* evdns.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = evdns.h; path = src/evdns.h; sourceTree = ""; }; BC92F5C7572D46E31CDF04CB9FEC4742 /* SDImageCacheConfig.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageCacheConfig.m; path = SDWebImage/Core/SDImageCacheConfig.m; sourceTree = ""; }; BC9C56ED395F27A3779D949995311950 /* SKSearchResultNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SKSearchResultNode.h; path = iOS/Plugins/FlipperKitLayoutPlugin/FlipperKitLayoutPlugin/SKSearchResultNode.h; sourceTree = ""; }; BC9CF97DB93DA9C5F72B7ABEF9A5B4DD /* FBLPromiseError.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBLPromiseError.h; path = Sources/FBLPromises/include/FBLPromiseError.h; sourceTree = ""; }; + BCA67CD67581F093370A347ABC5D2595 /* ReactNativeKeyboardInput.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = ReactNativeKeyboardInput.debug.xcconfig; sourceTree = ""; }; BCBB18C5F6F1839997C6A049C0D897DA /* alpha_processing.c */ = {isa = PBXFileReference; includeInIndex = 1; name = alpha_processing.c; path = src/dsp/alpha_processing.c; sourceTree = ""; }; + BCD6F7F5ED1C0F008588E29072442360 /* REAUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = REAUtils.h; path = ios/REAUtils.h; sourceTree = ""; }; BCE2BCD32106C0A47D83B684B11F2B6B /* SKNamed.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SKNamed.h; path = iOS/Plugins/FlipperKitLayoutPlugin/FlipperKitLayoutPlugin/SKNamed.h; sourceTree = ""; }; - BD10ABD4FC3F60F7975CEEC6CB6F1CFA /* ReactNativeART.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = ReactNativeART.release.xcconfig; sourceTree = ""; }; + BCE39BDDC56E070DB5377E21095423C6 /* RNBootSplash-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNBootSplash-dummy.m"; sourceTree = ""; }; + BD21A48EE4C43BAA9E58A7E7956BE0A6 /* RCTErrorInfo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTErrorInfo.h; sourceTree = ""; }; BD37875EF15239DF7C195EA18DC9ECC8 /* Subscription.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = Subscription.cpp; path = yarpl/flowable/Subscription.cpp; sourceTree = ""; }; BD379A730B9F2AE40A9AABEDA8A1602D /* FIRCLSFileManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCLSFileManager.m; path = Crashlytics/Crashlytics/Models/FIRCLSFileManager.m; sourceTree = ""; }; - BD5AACE9060BB7DE24D02208B96350D5 /* RNSScreenStack.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNSScreenStack.m; path = ios/RNSScreenStack.m; sourceTree = ""; }; + BD421BFF30816FBFF94A1D8DD7C11849 /* react-native-safe-area-context.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "react-native-safe-area-context.release.xcconfig"; sourceTree = ""; }; + BD60E6D8B57D52B2ECCCFCFBE32C456F /* RCTDecayAnimation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTDecayAnimation.h; sourceTree = ""; }; BD6D68FA7B495C71FC7EF52EC2B20F9D /* FIRCLSReport.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSReport.h; path = Crashlytics/Crashlytics/Models/FIRCLSReport.h; sourceTree = ""; }; BD71E2539823621820F84384064C253A /* libReact-Core.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libReact-Core.a"; path = "libReact-Core.a"; sourceTree = BUILT_PRODUCTS_DIR; }; BD7A0DE31DB1CAEEB5FB5B670BBC31CF /* DistributedMutex.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = DistributedMutex.cpp; path = folly/synchronization/DistributedMutex.cpp; sourceTree = ""; }; - BDAC91970441035D624A3EE7B0ECFECC /* RCTAlertManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTAlertManager.h; path = React/CoreModules/RCTAlertManager.h; sourceTree = ""; }; - BDC6DCD3BD2FDA303242D3410C5B8694 /* RNFBAnalytics.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNFBAnalytics.debug.xcconfig; sourceTree = ""; }; + BD8981BD078FBDA3508665CC82823418 /* RootView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RootView.h; path = ios/RootView.h; sourceTree = ""; }; + BD96C5CA8DE17ACBCDA763322BA77B4A /* BSG_KSCrashSentry_MachException.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashSentry_MachException.h; sourceTree = ""; }; + BD9F1AB83C59077E7EE570E9BB4FFC44 /* InspectorInterfaces.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = InspectorInterfaces.h; sourceTree = ""; }; + BDA7A4EDE2DBFAEDE97D7EC063957325 /* BSG_KSCrashDoctor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashDoctor.h; sourceTree = ""; }; BDC9EA71B0021E634E402664FF65CBD6 /* Hash.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Hash.h; path = folly/Hash.h; sourceTree = ""; }; - BDEBF21077E5D0D3EA246DFC58A6882C /* BugsnagKeys.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagKeys.h; sourceTree = ""; }; - BDF605201112541ED81426885684670B /* es.lproj */ = {isa = PBXFileReference; includeInIndex = 1; name = es.lproj; path = ios/QBImagePicker/QBImagePicker/es.lproj; sourceTree = ""; }; + BDDBBE05673016D2E8CDCD1A03E97BDA /* RCTURLRequestHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTURLRequestHandler.h; sourceTree = ""; }; + BDEF573C64A98F7E6C2FE4EA78792992 /* RNImageCropPicker.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RNImageCropPicker.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + BDF0CA635BC628B26D2553BEA2D595B8 /* EXKeepAwake.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = EXKeepAwake.release.xcconfig; sourceTree = ""; }; BDFD3B6E209739769E4DC08A11737812 /* FIRCLSThreadArrayOperation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCLSThreadArrayOperation.m; path = Crashlytics/Crashlytics/Operations/Symbolication/FIRCLSThreadArrayOperation.m; sourceTree = ""; }; BE0072E587AB07D442D8E866C4321D9E /* enc_sse41.c */ = {isa = PBXFileReference; includeInIndex = 1; name = enc_sse41.c; path = src/dsp/enc_sse41.c; sourceTree = ""; }; - BE035A1847ED0C87F79AE8A0DBD1E3B0 /* BugsnagKSCrashSysInfoParser.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagKSCrashSysInfoParser.h; sourceTree = ""; }; - BE073D0DD5ECA301ED61E24C790ED6C3 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; + BE1DF94ABE7B2EE373071F9645721904 /* UMGyroscopeInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMGyroscopeInterface.h; path = UMSensorsInterface/UMGyroscopeInterface.h; sourceTree = ""; }; + BE24D304B739209FE3009067F0AECCCD /* Color+Interpolation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Color+Interpolation.h"; sourceTree = ""; }; BE2C6A9AD5888A67928FE56FBABC1FF5 /* KeepaliveTimer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = KeepaliveTimer.h; path = rsocket/internal/KeepaliveTimer.h; sourceTree = ""; }; + BE4A35A4A61BFE93309256BD7659483C /* ReactNativeShareExtension.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ReactNativeShareExtension.h; path = ios/ReactNativeShareExtension.h; sourceTree = ""; }; BE649A5B3C8548305B0791F6BAC29354 /* RSocketStateMachine.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = RSocketStateMachine.cpp; path = rsocket/statemachine/RSocketStateMachine.cpp; sourceTree = ""; }; BE763D454332C89C581D5761CD7FD5DB /* TOCropScrollView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TOCropScrollView.h; path = "Objective-C/TOCropViewController/Views/TOCropScrollView.h"; sourceTree = ""; }; + BE766F7ED684F892F232AB61610E72F1 /* FontAwesome5_Solid.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = FontAwesome5_Solid.ttf; path = Fonts/FontAwesome5_Solid.ttf; sourceTree = ""; }; + BE8D2C69D34441AEB65CB385B541B417 /* BugsnagCollections.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagCollections.m; sourceTree = ""; }; BEA4D625CB57F79C19032230C45B48E0 /* QueuedImmediateExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = QueuedImmediateExecutor.h; path = folly/executors/QueuedImmediateExecutor.h; sourceTree = ""; }; BEB79A4431F3C32CF55295A0BB31B7D4 /* OpenSSL.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = OpenSSL.cpp; path = folly/portability/OpenSSL.cpp; sourceTree = ""; }; - BED74B93D61270A3B5A6EFEB36BA895F /* EXWebBrowser-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "EXWebBrowser-dummy.m"; sourceTree = ""; }; - BEF7FA215BDEA0ECA02A1A63E0B57A45 /* BSG_KSBacktrace_Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSBacktrace_Private.h; sourceTree = ""; }; - BEF8B89F521FDA3E0251AB10B09AA102 /* MMKVStorage.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MMKVStorage.h; path = ios/MMKVStorage.h; sourceTree = ""; }; - BF09E861AE844B8A7642206A6E1180E9 /* YGConfig.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YGConfig.h; path = yoga/YGConfig.h; sourceTree = ""; }; + BEC5DF2A419DAEE79BE17C9027846C39 /* RCTCxxConvert.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTCxxConvert.h; sourceTree = ""; }; + BED99C373DF99CA1D3FBC5E7F81A319F /* FBReactNativeSpec.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = FBReactNativeSpec.debug.xcconfig; sourceTree = ""; }; BF16A1CEAFEB987C690058AAF6133DA7 /* GDTCCTUploader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCCTUploader.h; path = GoogleDataTransportCCTSupport/GDTCCTLibrary/Private/GDTCCTUploader.h; sourceTree = ""; }; - BF24D0A4E2EDB9C0D750B3C4EA3BEAC0 /* RNFBJSON.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNFBJSON.h; path = ios/RNFBApp/RNFBJSON.h; sourceTree = ""; }; BF270AC328E5EABF4649740D18631529 /* GULNetwork.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULNetwork.h; path = GoogleUtilities/Network/Private/GULNetwork.h; sourceTree = ""; }; + BF284EB59B526B332F6F42408804630B /* RNFBUtilsModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNFBUtilsModule.h; path = ios/RNFBApp/RNFBUtilsModule.h; sourceTree = ""; }; BF3A5E967B851BD1E149E3A89F148124 /* RSocket.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RSocket.h; path = rsocket/RSocket.h; sourceTree = ""; }; BF4288E6A85C4D6C401DF60967934E4D /* ResumeIdentificationToken.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ResumeIdentificationToken.h; path = rsocket/framing/ResumeIdentificationToken.h; sourceTree = ""; }; - BF46B5AC65808FAC6FAB1387F3B820BE /* REANodesManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = REANodesManager.m; path = ios/REANodesManager.m; sourceTree = ""; }; + BF4C678D0788358690A8807B760E3466 /* EXAV.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXAV.h; path = EXAV/EXAV.h; sourceTree = ""; }; BF4FE7D66C99F2D0780E5D79E2950BD0 /* ConcurrentSkipList-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "ConcurrentSkipList-inl.h"; path = "folly/ConcurrentSkipList-inl.h"; sourceTree = ""; }; - BF5E215571D38CAD7C9A19909AC02FEA /* RCTProgressViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTProgressViewManager.h; sourceTree = ""; }; - BF97EB65D34483E03A6E8B7FCF89F179 /* REATransitionManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REATransitionManager.m; sourceTree = ""; }; + BF546F3405187DE219241C660D45568C /* RNCAsyncStorage-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNCAsyncStorage-dummy.m"; sourceTree = ""; }; + BF90940C58FE52ED35CD05C8BF011C77 /* UMLogManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = UMLogManager.m; sourceTree = ""; }; BF9C63F1F1AD22BD3CF112004A813279 /* FlipperClient+Testing.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FlipperClient+Testing.h"; path = "iOS/FlipperKit/FlipperClient+Testing.h"; sourceTree = ""; }; BF9F2DB2933A2B5D066F8485471F15C5 /* Pods-RocketChatRN.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = "Pods-RocketChatRN.modulemap"; sourceTree = ""; }; - BFA3321B234B08C7B816977EB7FECA58 /* EvilIcons.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = EvilIcons.ttf; path = Fonts/EvilIcons.ttf; sourceTree = ""; }; - BFAD44D90FC5A72757E1273280B5D544 /* EXHaptics-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "EXHaptics-dummy.m"; sourceTree = ""; }; - BFB1C9A845B4B8633E6745FBCF9F664B /* RCTTransformAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTTransformAnimatedNode.m; sourceTree = ""; }; - BFC4541E41094D35BFCA29320F50C28D /* RCTErrorInfo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTErrorInfo.h; sourceTree = ""; }; - BFC463CEF72F1D3708AA52C16EFAF580 /* RCTTextDecorationLineType.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTextDecorationLineType.h; sourceTree = ""; }; - BFD5E52AEA94E4656958C33DC62DF317 /* EXConstants-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "EXConstants-prefix.pch"; sourceTree = ""; }; - BFE5D863885FCEB1BE8FF6690024C0CB /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; + BFE645D9C3B4B492BADF8AC7DD090BEC /* jsilib.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = jsilib.h; sourceTree = ""; }; BFE64C332B5D529A57DB416EB659E120 /* TimeoutManager.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = TimeoutManager.cpp; path = folly/io/async/TimeoutManager.cpp; sourceTree = ""; }; BFE72E75C6DABE5D29435E3BE4BDFB6D /* SDMemoryCache.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDMemoryCache.m; path = SDWebImage/Core/SDMemoryCache.m; sourceTree = ""; }; BFF6A27CD19A88C167BFDCA21098F735 /* MemoryFile.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MemoryFile.h; path = Core/MemoryFile.h; sourceTree = ""; }; @@ -9596,990 +9532,994 @@ BFFCB14A90D6148FB43FDF9D41AE16BA /* FIRAnalyticsInterop.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAnalyticsInterop.h; path = Interop/Analytics/Public/FIRAnalyticsInterop.h; sourceTree = ""; }; BFFE35C14D05067603190D3E26CF57E4 /* Select64.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Select64.h; path = folly/experimental/Select64.h; sourceTree = ""; }; BFFEC177CB587C0C1E06AD0231CEBE1F /* lossless_enc.c */ = {isa = PBXFileReference; includeInIndex = 1; name = lossless_enc.c; path = src/dsp/lossless_enc.c; sourceTree = ""; }; - C0030898FE4DB1557627B02C59286307 /* REATransition.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REATransition.h; sourceTree = ""; }; + C0153177194E7A1F169E6329754AFD57 /* BSG_KSSysCtl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSSysCtl.h; sourceTree = ""; }; C0188C57BAAF282D715EABD4FA421E95 /* FIRCLSNetworkOperation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSNetworkOperation.h; path = Crashlytics/Crashlytics/Settings/Operations/FIRCLSNetworkOperation.h; sourceTree = ""; }; - C024616A7F971881825C53BFA4C681FD /* RNGestureHandler.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNGestureHandler.release.xcconfig; sourceTree = ""; }; - C042E6B28BC90C905A83E58EF3A2CFFB /* RCTTextShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTextShadowView.h; sourceTree = ""; }; + C0227DD6CAF9A1DB11BF47E2560FD0BE /* EXWebBrowser.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = EXWebBrowser.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + C02676E9B7E1F93FE6C234DC97F32985 /* UMAppLifecycleListener.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMAppLifecycleListener.h; sourceTree = ""; }; + C0361DFADB5DCE4EB198AA112B9ACD6E /* RCTModalHostViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTModalHostViewController.m; sourceTree = ""; }; + C046213BDED8227491C0BB0BEFD48FF1 /* JSDeltaBundleClient.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = JSDeltaBundleClient.cpp; sourceTree = ""; }; C04E46048936CB670BF56D65CD527221 /* color_cache_utils.c */ = {isa = PBXFileReference; includeInIndex = 1; name = color_cache_utils.c; path = src/utils/color_cache_utils.c; sourceTree = ""; }; + C05B11845BF008914EBA659F2E306C79 /* RNPanHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNPanHandler.h; sourceTree = ""; }; C069F4AB3024907B4B9F727C3B5BD380 /* RSocketResponder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RSocketResponder.h; path = rsocket/RSocketResponder.h; sourceTree = ""; }; - C07661741AA1DCA0B3F0A6E482EBC55C /* RCTCustomInputController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTCustomInputController.m; sourceTree = ""; }; - C07B0A62EC6A3B0E3F1262B91453A088 /* ReactNativeKeyboardInput.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = ReactNativeKeyboardInput.debug.xcconfig; sourceTree = ""; }; + C07D82705129A0470532083F125AE78E /* JSBundleType.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = JSBundleType.h; sourceTree = ""; }; + C08C33A46B7EBDD73DBF8201FFC0F80B /* RCTRawTextViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTRawTextViewManager.m; sourceTree = ""; }; + C0AEFA31C203D0F1AB46900DAB4B9D35 /* RNLocalize-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNLocalize-dummy.m"; sourceTree = ""; }; + C0B1FDF52D0A6E124CBAB869F773E3F3 /* RNFBApp.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNFBApp.release.xcconfig; sourceTree = ""; }; C0BB45C880A0B0FC1D110845D427C6DA /* AsyncTimeout.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AsyncTimeout.h; path = folly/io/async/AsyncTimeout.h; sourceTree = ""; }; - C0E4144BC58F74404DB8E91C49EBA0F1 /* RNLongPressHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNLongPressHandler.m; sourceTree = ""; }; - C0FFCF3DFB89B29660D715CD5BF1E35D /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; - C104FC8989C82D55AC529CBE9DDD4EDE /* RNGestureHandlerModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNGestureHandlerModule.h; path = ios/RNGestureHandlerModule.h; sourceTree = ""; }; + C0BDA414C7FAD399D75F3EDE295BBEAD /* EXConstants-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "EXConstants-dummy.m"; sourceTree = ""; }; + C0E1C597B0ECDE063875B4E2CF74A4C3 /* RCTAnimationPlugins.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTAnimationPlugins.h; path = Libraries/NativeAnimation/RCTAnimationPlugins.h; sourceTree = ""; }; C105EC08146FCCE2785CC4DB6C5C4393 /* Subscription.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Subscription.h; path = yarpl/observable/Subscription.h; sourceTree = ""; }; - C12F586DA4893F2844808EC7671E61F6 /* YGFloatOptional.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YGFloatOptional.h; path = yoga/YGFloatOptional.h; sourceTree = ""; }; - C13F1D81883D8F928423E496827276FC /* EXSessionTaskDelegate.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = EXSessionTaskDelegate.m; sourceTree = ""; }; - C14756E56C3613A0E54881830E099898 /* EXImageLoader.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = EXImageLoader.release.xcconfig; sourceTree = ""; }; + C117E322C6AECECD093B0D115B235F63 /* RCTRequired.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RCTRequired.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + C1407F01B5A3653F4A7CB2ADD9476CEE /* RNNotificationParser.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNNotificationParser.m; path = RNNotifications/RNNotificationParser.m; sourceTree = ""; }; C148D0C3AF01D9DAFCF5C2D8E557DE84 /* FIRCLSdSYM.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSdSYM.h; path = Crashlytics/Shared/FIRCLSMachO/FIRCLSdSYM.h; sourceTree = ""; }; - C15D1BBD5E0D963F276DAFDC9D912EF9 /* UMFontInterface.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMFontInterface.debug.xcconfig; sourceTree = ""; }; + C1694424A9054A963D0F0EA5E69CFD36 /* RNRootViewGestureRecognizer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNRootViewGestureRecognizer.h; path = ios/RNRootViewGestureRecognizer.h; sourceTree = ""; }; C176202B0EFF6CEF40BE45FD2500C537 /* MMKV.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = MMKV.debug.xcconfig; sourceTree = ""; }; - C195B6F931DD0F08D7628C1EDD165768 /* NativeToJsBridge.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = NativeToJsBridge.h; sourceTree = ""; }; + C1793DABBD4996169EA4A95C26FABD8F /* RNCSafeAreaViewMode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCSafeAreaViewMode.h; path = ios/SafeAreaView/RNCSafeAreaViewMode.h; sourceTree = ""; }; + C17CDB118C27B86F87E0CD2D1194C220 /* AntDesign.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = AntDesign.ttf; path = Fonts/AntDesign.ttf; sourceTree = ""; }; + C181A953845ECC2E16575077B0638765 /* BSGConnectivity.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BSGConnectivity.m; sourceTree = ""; }; + C190D8F5B0DDE9F0C426556720219F6E /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; C19E86038C174C484D42D219E678DAB1 /* ConcurrentHashMap.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ConcurrentHashMap.h; path = folly/concurrency/ConcurrentHashMap.h; sourceTree = ""; }; C1A7AE40E150BE5BDFC11DB49DBB09A9 /* filters_mips_dsp_r2.c */ = {isa = PBXFileReference; includeInIndex = 1; name = filters_mips_dsp_r2.c; path = src/dsp/filters_mips_dsp_r2.c; sourceTree = ""; }; C1A919103EAC9813D236486C34FC0A21 /* libReact-RCTVibration.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libReact-RCTVibration.a"; path = "libReact-RCTVibration.a"; sourceTree = BUILT_PRODUCTS_DIR; }; - C1B2EA3CFB29E4AD312F3CE2FD00004B /* JSIndexedRAMBundle.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = JSIndexedRAMBundle.cpp; sourceTree = ""; }; C1BBE9032F531E4EC1C6C7DDF23C89F3 /* FlipperKit-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "FlipperKit-umbrella.h"; sourceTree = ""; }; C1C86AC0E12A9C6E7EC6EF89D40170C9 /* FIRInstallationsStoredItem.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstallationsStoredItem.m; path = FirebaseInstallations/Source/Library/InstallationsStore/FIRInstallationsStoredItem.m; sourceTree = ""; }; C1C9AB7FEBBABC9C85DB417752D1B895 /* http_struct.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = http_struct.h; path = src/event2/http_struct.h; sourceTree = ""; }; - C1CC9D27B7C27DB8BF989C0D8324203C /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; C1D072B63D09454F7C7CA56040E8109A /* NetOps.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = NetOps.cpp; path = folly/net/NetOps.cpp; sourceTree = ""; }; - C1DE9F2CA4B226AD48DEADB4C14A2A5D /* RCTTypeSafety.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RCTTypeSafety.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - C1F307C0DE699D9D8A3B06C74B03807A /* UMModuleRegistryConsumer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMModuleRegistryConsumer.h; sourceTree = ""; }; - C206B460F00BE3D60B15BE7D81CB3D3B /* EXLocalAuthentication.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = EXLocalAuthentication.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + C1DB7A8DED9D40B6C91FD8288ADEB7B8 /* React-jsinspector-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-jsinspector-prefix.pch"; sourceTree = ""; }; C208C377500CB45E85C51BF651206F02 /* CodedInputDataCrypt.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CodedInputDataCrypt.h; path = Core/CodedInputDataCrypt.h; sourceTree = ""; }; - C212237AE50E3A0C89947E97F05D86EB /* RCTAsyncLocalStorage.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTAsyncLocalStorage.mm; sourceTree = ""; }; - C22B27DF11B24D994A2D5D315674E58E /* instrumentation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = instrumentation.h; sourceTree = ""; }; - C235EA4E425F35F554BA2B92044A3ACE /* RCTWeakProxy.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTWeakProxy.h; sourceTree = ""; }; - C23F16BDE8465F7A056C4F4E75E894FD /* RNGestureHandlerModule.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNGestureHandlerModule.m; path = ios/RNGestureHandlerModule.m; sourceTree = ""; }; - C23F1D6BF19EA78B7018AAD57FD9F690 /* RNCWebViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCWebViewManager.h; path = apple/RNCWebViewManager.h; sourceTree = ""; }; + C22650DDC3DD4785AC64C1A1E5AEAC6B /* TurboModuleBinding.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TurboModuleBinding.h; path = turbomodule/core/TurboModuleBinding.h; sourceTree = ""; }; C24650D12419B4EE7B1AB449E367931E /* FIRStackFrame.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRStackFrame.h; path = Crashlytics/Crashlytics/Public/FIRStackFrame.h; sourceTree = ""; }; C2587209864FD883C05CB17B58A05DBA /* Flipper-Folly.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Flipper-Folly.release.xcconfig"; sourceTree = ""; }; - C25E4150B5718F88A5B69F105C1D3A6E /* React.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = React.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + C26AF4228C34AC3E025DBF372F30539F /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; C2704AB8D010D22F2049888E65BADBB5 /* ConnectionSet.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ConnectionSet.h; path = rsocket/internal/ConnectionSet.h; sourceTree = ""; }; C2840E71ABD54957B6AFE59039641568 /* WebRTC.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = WebRTC.framework; path = Frameworks/WebRTC.framework; sourceTree = ""; }; - C2A128F617703A8ADCCD134B664CB9DF /* RNConfigReader.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNConfigReader.m; path = ios/RNConfigReader.m; sourceTree = ""; }; + C299A3D08D0711B5597F56C4AA43BECF /* EXConstants.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = EXConstants.debug.xcconfig; sourceTree = ""; }; + C299BBA12390470959352EDDD74E3571 /* REAParamNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REAParamNode.h; sourceTree = ""; }; C2A548B344453E444A4796F7790CF9D8 /* FIRCLSFABNetworkClient.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSFABNetworkClient.h; path = Crashlytics/Shared/FIRCLSNetworking/FIRCLSFABNetworkClient.h; sourceTree = ""; }; - C2B44A86B749831A4227E1C725440B19 /* BSG_KSCrashSentry_Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashSentry_Private.h; sourceTree = ""; }; - C2B4C94524CB64BFA50D0CCB148FFB77 /* React-RCTText.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = "React-RCTText.podspec"; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; C2B4E90A947A43960679E397F59A9CAC /* SDDeviceHelper.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDDeviceHelper.m; path = SDWebImage/Private/SDDeviceHelper.m; sourceTree = ""; }; - C3127987CE8EBADE3F9B87522B43E92E /* RCTSafeAreaShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSafeAreaShadowView.h; sourceTree = ""; }; + C30C44203E76407657720D9AE51AEECF /* RCTInspector.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTInspector.mm; sourceTree = ""; }; C319E8C5B9A437B1828F40722AD15AC8 /* Flipper-PeerTalk-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Flipper-PeerTalk-prefix.pch"; sourceTree = ""; }; C31B1B35AC3687E7B5406E637B64EB54 /* FIRErrors.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRErrors.h; path = FirebaseCore/Sources/Private/FIRErrors.h; sourceTree = ""; }; + C3251FF288921FE143A731F6E0276663 /* FBReactNativeSpec.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = FBReactNativeSpec.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + C32FA5A92FFBCFFE518FB95493529D4B /* RCTScrollContentShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTScrollContentShadowView.h; sourceTree = ""; }; C3338AD03FDE32FDBEF73D073DD11DEF /* Uri-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "Uri-inl.h"; path = "folly/Uri-inl.h"; sourceTree = ""; }; - C335FBD0DDF363EA880EA2A4EF3B2B98 /* BSG_KSMachApple.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSMachApple.h; sourceTree = ""; }; - C33D94D2CA59CDD044F5356C10911747 /* EXResumablesManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = EXResumablesManager.h; sourceTree = ""; }; - C348CF2FAF6BDF7E1B9C0E3F1B4F473A /* rn-extensions-share.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = "rn-extensions-share.podspec"; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; C359B5DBA4ACE190A7F72F35A61D1BE3 /* ThreadWheelTimekeeper.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = ThreadWheelTimekeeper.cpp; path = folly/futures/ThreadWheelTimekeeper.cpp; sourceTree = ""; }; C35CD892B3FFA25DE377E2E2937A40D4 /* SDImageCacheConfig.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageCacheConfig.h; path = SDWebImage/Core/SDImageCacheConfig.h; sourceTree = ""; }; - C365170B94B6FD9ED83E156A82E5EE84 /* RNVectorIcons-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNVectorIcons-dummy.m"; sourceTree = ""; }; + C35EE5768CA6B7B056AA8715DE00B445 /* RNBootSplash-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNBootSplash-prefix.pch"; sourceTree = ""; }; + C36F1747362A3B672628E464090DE8CF /* BSG_KSMach_Arm.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSMach_Arm.c; sourceTree = ""; }; + C373C205427E8D0DB3CF4B34708EA1BB /* BSG_KSObjC.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSObjC.c; sourceTree = ""; }; + C38988527DE8EB8178CBEC5608611F79 /* RNReanimated-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNReanimated-dummy.m"; sourceTree = ""; }; + C39D2B867CBC3756105C32FAA2BE9820 /* ARTRenderable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ARTRenderable.h; path = ios/ARTRenderable.h; sourceTree = ""; }; + C3A406431A8AE789AAD92A846187F169 /* UMModuleRegistry.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = UMModuleRegistry.m; sourceTree = ""; }; C3AB91CE88C910CCB9294D27147C129C /* WaitOptions.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = WaitOptions.cpp; path = folly/synchronization/WaitOptions.cpp; sourceTree = ""; }; C3AC9C3CF8588312620BBE5C3153CB11 /* huffman_utils.c */ = {isa = PBXFileReference; includeInIndex = 1; name = huffman_utils.c; path = src/utils/huffman_utils.c; sourceTree = ""; }; + C3BFC3D8E4E88268D27794BDB6A66BE7 /* RNCMaskedView.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RNCMaskedView.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; C3C920B8349C2BC219537546757BC104 /* SerialExecutor.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = SerialExecutor.cpp; path = folly/executors/SerialExecutor.cpp; sourceTree = ""; }; - C3C96C1C6DF40074C58E556917065E41 /* TurboCxxModule.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = TurboCxxModule.cpp; path = turbomodule/core/TurboCxxModule.cpp; sourceTree = ""; }; - C3E03E5ED1D10385A09980AD737FA52F /* RNRootViewGestureRecognizer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNRootViewGestureRecognizer.h; path = ios/RNRootViewGestureRecognizer.h; sourceTree = ""; }; + C3F0321A0EA2D767809064EDDA1A9F48 /* NSTextStorage+FontScaling.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "NSTextStorage+FontScaling.m"; sourceTree = ""; }; + C3F1FB62C42FF3D34C4E94892850221A /* RCTSettingsPlugins.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTSettingsPlugins.h; path = Libraries/Settings/RCTSettingsPlugins.h; sourceTree = ""; }; + C3F5B0721AF43D88A32BDB6E3D39EE96 /* EXLocalAuthentication-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "EXLocalAuthentication-prefix.pch"; sourceTree = ""; }; + C3F74582F685185BB30D3F472EAAB255 /* EXSessionTaskDispatcher.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = EXSessionTaskDispatcher.m; sourceTree = ""; }; C413BD72DDEBD4CCC83EC286C1FA5C99 /* RequestResponseRequester.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RequestResponseRequester.h; path = rsocket/statemachine/RequestResponseRequester.h; sourceTree = ""; }; C43F20A92B180AEF7A8C6C7AF12F1A10 /* id.lproj */ = {isa = PBXFileReference; includeInIndex = 1; name = id.lproj; path = "Objective-C/TOCropViewController/Resources/id.lproj"; sourceTree = ""; }; C442D24BEB3CE66CD3C84EC77FB7D7BB /* libwebp.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = libwebp.debug.xcconfig; sourceTree = ""; }; C449A9FDFBF4AB6D4736B5436DA11E93 /* predictor_enc.c */ = {isa = PBXFileReference; includeInIndex = 1; name = predictor_enc.c; path = src/enc/predictor_enc.c; sourceTree = ""; }; - C44E82C1ED45144F87A4F892488E0F9F /* React-RCTAnimation-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-RCTAnimation-prefix.pch"; sourceTree = ""; }; - C4514B2C800EBCD29CDB0DCDFC926F9A /* RCTModalHostViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTModalHostViewManager.h; sourceTree = ""; }; + C45ECC5508F8E2A2D68DFEED2E15026F /* RNPushKit.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNPushKit.m; path = RNNotifications/RNPushKit.m; sourceTree = ""; }; C46034AC441CAF5D9E2AFC8218C74065 /* SDWebImageDownloaderResponseModifier.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWebImageDownloaderResponseModifier.m; path = SDWebImage/Core/SDWebImageDownloaderResponseModifier.m; sourceTree = ""; }; C461345C5EBC41719BE75C1D174389E5 /* evp.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = evp.h; path = ios/include/openssl/evp.h; sourceTree = ""; }; - C4666E325B646F59201A21FA3253E6D5 /* QBAssetsViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = QBAssetsViewController.m; path = ios/QBImagePicker/QBImagePicker/QBAssetsViewController.m; sourceTree = ""; }; - C47E09C373B0A0FB35238FDA7C561401 /* event.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = event.h; sourceTree = ""; }; + C4689B14EA62388B0528481789F70DDB /* RCTSubtractionAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSubtractionAnimatedNode.h; sourceTree = ""; }; + C4727C056D4FC5A6AF9C8EDAAA195E6F /* UMTaskManagerInterface.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = UMTaskManagerInterface.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; C48B4E73BB59A201C65E8D5E9183CC18 /* Unistd.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Unistd.h; path = folly/portability/Unistd.h; sourceTree = ""; }; C49745BAFD1F99444843FA27BCC0BF55 /* SingleWriterFixedHashMap.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SingleWriterFixedHashMap.h; path = folly/experimental/SingleWriterFixedHashMap.h; sourceTree = ""; }; C4A8942F7F2855CFB48F9535658594CE /* des.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = des.h; path = ios/include/openssl/des.h; sourceTree = ""; }; - C4AAD8F880DFA4979E72502A2E1DB4C7 /* RNVectorIcons.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNVectorIcons.release.xcconfig; sourceTree = ""; }; + C4BE0F06AE3AB67FB06E3D808389C093 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; C4CD8B9BCF402EC556F8872B738F95AB /* Iterators.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Iterators.h; path = folly/detail/Iterators.h; sourceTree = ""; }; - C4D98AC0B05A6CD79A27010C2E150F4C /* RCTSurfaceHostingProxyRootView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSurfaceHostingProxyRootView.h; sourceTree = ""; }; - C4E5E1B00EC580B4C0A9EA603E9705C6 /* RNFBApp.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNFBApp.debug.xcconfig; sourceTree = ""; }; + C4E8BE743FAB019787F786D6B56B7975 /* RCTKeyCommandConstants.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTKeyCommandConstants.h; path = ios/KeyCommands/RCTKeyCommandConstants.h; sourceTree = ""; }; C4EC78950AF5C05FE297047021A519B3 /* FIRCLSAllocate.c */ = {isa = PBXFileReference; includeInIndex = 1; name = FIRCLSAllocate.c; path = Crashlytics/Crashlytics/Helpers/FIRCLSAllocate.c; sourceTree = ""; }; + C4EEFCE9ACCAE5FBCA5B8E26F3D1856A /* RCTTurboModuleManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTurboModuleManager.h; sourceTree = ""; }; + C4F55E274BD829C8254C85756A40CA29 /* RNGestureHandlerButton.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNGestureHandlerButton.m; path = ios/RNGestureHandlerButton.m; sourceTree = ""; }; C4F664889A8E779D64A212931DD712C9 /* filters_msa.c */ = {isa = PBXFileReference; includeInIndex = 1; name = filters_msa.c; path = src/dsp/filters_msa.c; sourceTree = ""; }; C4F9C226F69243FD1C79D65C7BE53372 /* nanopb.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = nanopb.debug.xcconfig; sourceTree = ""; }; C4FCBC1797EBAFA2945FD55F5767E1A3 /* GDTCORRegistrar.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GDTCORRegistrar.m; path = GoogleDataTransport/GDTCORLibrary/GDTCORRegistrar.m; sourceTree = ""; }; C50A9FFDA610BD2983A7ACF8123C704D /* fixed-dtoa.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = "fixed-dtoa.cc"; path = "double-conversion/fixed-dtoa.cc"; sourceTree = ""; }; C5275B82FE252A5A80218CFC82C526A5 /* FIRCLSDemangleOperation.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = FIRCLSDemangleOperation.mm; path = Crashlytics/Crashlytics/Operations/Symbolication/FIRCLSDemangleOperation.mm; sourceTree = ""; }; - C53198250A34CDD0600420FC17178B5B /* react-native-background-timer.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "react-native-background-timer.release.xcconfig"; sourceTree = ""; }; - C56C88D596F7791E65D2EA37041F6B22 /* log.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = log.h; path = yoga/log.h; sourceTree = ""; }; - C56F2DA2C7F1E8F9DB4857ED819213A1 /* RCTHTTPRequestHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTHTTPRequestHandler.h; path = Libraries/Network/RCTHTTPRequestHandler.h; sourceTree = ""; }; - C5892E5E14023368F105BBFBE97321F2 /* RCTFrameUpdate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTFrameUpdate.h; sourceTree = ""; }; - C5D16A5CE68DF3DBB369C3253854EC1E /* REASetNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REASetNode.m; sourceTree = ""; }; - C5D1A45B52A3F32F4D6F2203E1BB3BEF /* RNCSliderManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCSliderManager.m; path = ios/RNCSliderManager.m; sourceTree = ""; }; + C539389C4D288CED5913C12D77F06F79 /* RCTBlobCollector.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTBlobCollector.mm; sourceTree = ""; }; + C54731E71DF80D26B8650C54BAF40E0C /* RCTRawTextShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTRawTextShadowView.h; sourceTree = ""; }; + C58FC66A78828CD9718D9E80796801D4 /* RCTHTTPRequestHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTHTTPRequestHandler.h; path = Libraries/Network/RCTHTTPRequestHandler.h; sourceTree = ""; }; + C59CDE27968CFF70651020B9468F8736 /* React-RCTImage.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-RCTImage.debug.xcconfig"; sourceTree = ""; }; C5D2959A6207953C39F1FA555E1EBE73 /* Folly-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Folly-prefix.pch"; sourceTree = ""; }; - C5D601B7EBBF05100560CFD1E220236A /* UMLogManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = UMLogManager.m; sourceTree = ""; }; C5E4C0A8413D4F42D209506917181EAA /* ro.lproj */ = {isa = PBXFileReference; includeInIndex = 1; name = ro.lproj; path = "Objective-C/TOCropViewController/Resources/ro.lproj"; sourceTree = ""; }; - C5F67A1486AE8750C375B914FA3A8C3D /* RNScreens-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNScreens-dummy.m"; sourceTree = ""; }; C60144FAACE184644DB01694A8C6D554 /* FIRInstallationsAuthTokenResult.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstallationsAuthTokenResult.m; path = FirebaseInstallations/Source/Library/FIRInstallationsAuthTokenResult.m; sourceTree = ""; }; - C60524B5B9A9D8052ECA2416033AC77E /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; + C60505C3653E8C5F6662118B0D010A7E /* experiments.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = experiments.cpp; sourceTree = ""; }; C6114C15E0FCBBC21B34CB75B15B315C /* CodedInputDataCrypt_OSX.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = CodedInputDataCrypt_OSX.cpp; path = Core/CodedInputDataCrypt_OSX.cpp; sourceTree = ""; }; C6166541CE2D2D90907B298B5A2771CD /* FIRCLSMachOBinary.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSMachOBinary.h; path = Crashlytics/Shared/FIRCLSMachO/FIRCLSMachOBinary.h; sourceTree = ""; }; + C6198FE4A7665EA266F5F058ECC857E0 /* RNFBVersion.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNFBVersion.m; path = ios/RNFBApp/RNFBVersion.m; sourceTree = ""; }; C64EECB2E8D7EA9669FFFE237B49A3C8 /* CodedOutputData.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = CodedOutputData.cpp; path = Core/CodedOutputData.cpp; sourceTree = ""; }; C66058D6B35811735A537386F5CC314D /* FIRErrors.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRErrors.m; path = FirebaseCore/Sources/FIRErrors.m; sourceTree = ""; }; C660A0E99EFA410A5F3EDBA9D02D9711 /* FlowableObserveOnOperator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FlowableObserveOnOperator.h; path = yarpl/flowable/FlowableObserveOnOperator.h; sourceTree = ""; }; - C667E1C8D7B6611C4071949D497B01CE /* RCTConvert+ART.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "RCTConvert+ART.h"; path = "ios/RCTConvert+ART.h"; sourceTree = ""; }; - C684B614F7A5FBBA191DA064B25F6FE2 /* EXLocalAuthentication-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "EXLocalAuthentication-prefix.pch"; sourceTree = ""; }; - C6868C8457E5B8FA9B29D3E5C23D62C6 /* RCTMultilineTextInputView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTMultilineTextInputView.h; sourceTree = ""; }; + C67FE86A126C1C4E22AF771365D3D744 /* EXKeepAwake.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXKeepAwake.h; path = EXKeepAwake/EXKeepAwake.h; sourceTree = ""; }; C6915F0E2EB304BA1935966DC0A4CC28 /* SDImageIOCoder.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageIOCoder.m; path = SDWebImage/Core/SDImageIOCoder.m; sourceTree = ""; }; - C69CE7EBF03AD807A3216CE570AF7D93 /* QBImagePicker.storyboard */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = file.storyboard; name = QBImagePicker.storyboard; path = ios/QBImagePicker/QBImagePicker/QBImagePicker.storyboard; sourceTree = ""; }; C6A70C618CB6DBC74508136D1EDF9EF1 /* FIRCLSFABAsyncOperation_Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSFABAsyncOperation_Private.h; path = Crashlytics/Shared/FIRCLSOperation/FIRCLSFABAsyncOperation_Private.h; sourceTree = ""; }; C6BE9ADF4EC792E91C49786D85F1A9C3 /* ParallelMap.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ParallelMap.h; path = folly/gen/ParallelMap.h; sourceTree = ""; }; + C6BF0EF5DC01D06AC957994EC8912825 /* RCTSurfacePresenterStub.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSurfacePresenterStub.m; sourceTree = ""; }; C6CB63DE22FDA5E898A09C8967520E51 /* MemoryResource.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MemoryResource.h; path = folly/memory/MemoryResource.h; sourceTree = ""; }; - C6E18ECD8460A47BFD8515DBE328A65F /* RCTSettingsPlugins.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTSettingsPlugins.h; path = Libraries/Settings/RCTSettingsPlugins.h; sourceTree = ""; }; + C6F1ECB36B10C29F123B5F00F2EE35C5 /* RCTDisplayWeakRefreshable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTDisplayWeakRefreshable.h; path = Libraries/Image/RCTDisplayWeakRefreshable.h; sourceTree = ""; }; + C70A85CAA4162AF005A26A1D36DEA399 /* SystraceSection.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = SystraceSection.h; sourceTree = ""; }; + C71361CC0F45442F8052687DB28BFA93 /* RCTMacros.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTMacros.h; sourceTree = ""; }; + C718DE25806EFD2D9155A6B7A5D40910 /* 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; }; C722D112E1034415060F76D4D4C107F0 /* SDWebImageIndicator.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWebImageIndicator.m; path = SDWebImage/Core/SDWebImageIndicator.m; sourceTree = ""; }; C7246FCAC6B53FE1B9FDDBAFE8F13490 /* Future-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "Future-inl.h"; path = "folly/futures/Future-inl.h"; sourceTree = ""; }; - C742630069F512A418B5F71A72EC6EF2 /* RCTObjcExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTObjcExecutor.h; sourceTree = ""; }; + C74544134889899AC6296DEBF2830A4D /* ARTLinearGradient.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = ARTLinearGradient.h; sourceTree = ""; }; C75D9B6B687EA93BFB1FC767BC55A73A /* ui.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ui.h; path = ios/include/openssl/ui.h; sourceTree = ""; }; + C764DF44D7453D3C43301C04580500D8 /* RNFBApp.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNFBApp.debug.xcconfig; sourceTree = ""; }; C768E56EFD93442B8A537D03D2C0EF99 /* SDImageGraphics.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageGraphics.m; path = SDWebImage/Core/SDImageGraphics.m; sourceTree = ""; }; C777CF2FB1E39A45CBBDB54E8693F471 /* libRNReanimated.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libRNReanimated.a; path = libRNReanimated.a; sourceTree = BUILT_PRODUCTS_DIR; }; + C780B42FA63C09360BE3DA04772966D1 /* RCTMessageThread.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTMessageThread.mm; sourceTree = ""; }; C788DF693D5554D8D114BACE82CA597E /* FKUserDefaultsPlugin.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FKUserDefaultsPlugin.m; path = iOS/Plugins/FlipperKitUserDefaultsPlugin/FKUserDefaultsPlugin.m; sourceTree = ""; }; - C78A53FDD44844F384DCCCE1E1DA650A /* ARTShapeManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = ARTShapeManager.m; sourceTree = ""; }; - C78E04DE52320ED3AC3922C2299052E0 /* RCTTextSelection.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTextSelection.h; sourceTree = ""; }; C7A8B4EF2D2F14C00D0BA819EBF3DAF9 /* BlockingQueue.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = BlockingQueue.h; path = folly/executors/task_queue/BlockingQueue.h; sourceTree = ""; }; - C7A8F0D8246B43A01F5A1819685A307A /* RCTUIManagerUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTUIManagerUtils.h; sourceTree = ""; }; - C7B5D7F22EC6694C63DC6FDDB44512CF /* REAAllTransitions.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REAAllTransitions.m; sourceTree = ""; }; C7BCEB4CE467EAC79C8D872A409D3DA1 /* SDWebImageCacheKeyFilter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWebImageCacheKeyFilter.m; path = SDWebImage/Core/SDWebImageCacheKeyFilter.m; sourceTree = ""; }; - C7E06C4B7A2DC711C361CA70A01762D9 /* react-native-document-picker-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "react-native-document-picker-prefix.pch"; sourceTree = ""; }; - C7EA47076F3D88179E77D0AEB8A23837 /* zh-Hans.lproj */ = {isa = PBXFileReference; includeInIndex = 1; name = "zh-Hans.lproj"; path = "ios/QBImagePicker/QBImagePicker/zh-Hans.lproj"; sourceTree = ""; }; + C7CA65108DB14A86E5A6EC93C2D0FAE9 /* UMPermissionsInterface-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "UMPermissionsInterface-prefix.pch"; sourceTree = ""; }; + C7DA584D408C8D115F74555F3487FD2E /* ARTShadow.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ARTShadow.h; path = ios/ARTShadow.h; sourceTree = ""; }; C7EE0FFF94A2EA052B5C42F5347B57E1 /* MMKV.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MMKV.h; path = Core/MMKV.h; sourceTree = ""; }; - C7F09D8EEBA127CCF19F0EC01B60589A /* RNDateTimePicker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNDateTimePicker.h; path = ios/RNDateTimePicker.h; sourceTree = ""; }; C7F97FA9FF64711D9D0A4C2E3E403972 /* FIRInstallationsStoredAuthToken.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstallationsStoredAuthToken.m; path = FirebaseInstallations/Source/Library/InstallationsStore/FIRInstallationsStoredAuthToken.m; sourceTree = ""; }; C804C12BB5483D94BE067F36E5FACE6C /* de.lproj */ = {isa = PBXFileReference; includeInIndex = 1; name = de.lproj; path = "Objective-C/TOCropViewController/Resources/de.lproj"; sourceTree = ""; }; - C80708D8630BF3DFED231B48F359C820 /* CxxNativeModule.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = CxxNativeModule.cpp; sourceTree = ""; }; C80FE0090F04E1032603B3F56C4254A5 /* CppAttributes.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CppAttributes.h; path = folly/CppAttributes.h; sourceTree = ""; }; + C822F17BCFDB2334B99E657E4AAE53DA /* React-cxxreact-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-cxxreact-prefix.pch"; sourceTree = ""; }; + C829C3375EC07F1EAFF8CCC8C39012CF /* RCTKeyCommands.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTKeyCommands.m; sourceTree = ""; }; C83E2D2B8873871B6A699BA5EE085E0E /* FIRCLSDownloadAndSaveSettingsOperation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSDownloadAndSaveSettingsOperation.h; path = Crashlytics/Crashlytics/Settings/Operations/FIRCLSDownloadAndSaveSettingsOperation.h; sourceTree = ""; }; C84040C1023CEB270A65997858A7F379 /* FlipperKitLayoutPlugin.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = FlipperKitLayoutPlugin.mm; path = iOS/Plugins/FlipperKitLayoutPlugin/FlipperKitLayoutPlugin/FlipperKitLayoutPlugin.mm; sourceTree = ""; }; + C841DF62FDC483DDB32A085087EB31B0 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; C85970971D45FE03BEE3A346F032E001 /* Try-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "Try-inl.h"; path = "folly/Try-inl.h"; sourceTree = ""; }; + C87081B7A7CE9EBCD9709C1C321C4D4A /* REACallFuncNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REACallFuncNode.m; sourceTree = ""; }; + C88BCA0778A10C685BF4174828456698 /* RCTLocalAssetImageLoader.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTLocalAssetImageLoader.mm; sourceTree = ""; }; C892699CCA6CF43057AFEE34F413A4D7 /* SharedPromise-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "SharedPromise-inl.h"; path = "folly/futures/SharedPromise-inl.h"; sourceTree = ""; }; - C8A6F18406573DD1B9E64BFBC7BE2ADB /* RNBootSplash.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNBootSplash.m; path = ios/RNBootSplash.m; sourceTree = ""; }; + C89DC4D71C3A0891FF0CBC3C07C16B7A /* FBReactNativeSpec.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBReactNativeSpec.h; path = FBReactNativeSpec/FBReactNativeSpec.h; sourceTree = ""; }; + C8A66532A7E2C48744BE1FA81B3C5203 /* EXVideoThumbnailsModule.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXVideoThumbnailsModule.m; path = EXVideoThumbnails/EXVideoThumbnailsModule.m; sourceTree = ""; }; C8CCEED996EDD1C840C18ABDB43B3FE2 /* AtomicUnorderedMap.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AtomicUnorderedMap.h; path = folly/AtomicUnorderedMap.h; sourceTree = ""; }; - C8CDD306407E9BD523EF2092DCD6EE0F /* RCTFont.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTFont.mm; sourceTree = ""; }; C8D3769903B1FFB64B6D20DCF0B2D8EC /* FIRCLSMachO.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCLSMachO.m; path = Crashlytics/Shared/FIRCLSMachO/FIRCLSMachO.m; sourceTree = ""; }; C8DCE9FEC10868689CDE39782E0861B2 /* Flipper.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = Flipper.release.xcconfig; sourceTree = ""; }; C8F90AEEEE3749DFB3A07AFF8A4804A3 /* TOCropOverlayView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TOCropOverlayView.h; path = "Objective-C/TOCropViewController/Views/TOCropOverlayView.h"; sourceTree = ""; }; - C8FB16ABFD15DF4BFC613EC66108EADA /* UMAppDelegateWrapper.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = UMAppDelegateWrapper.m; path = UMCore/UMAppDelegateWrapper.m; sourceTree = ""; }; - C8FB6C9B838BD0820162FE3B20F095D3 /* jsilib.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = jsilib.h; sourceTree = ""; }; - C9071D2B0FC87235B9674AE17CC4B86A /* React-jsi.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-jsi.release.xcconfig"; sourceTree = ""; }; + C90241A45FB2FF1EA87E1AC1ED2C4D38 /* RCTStyleAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTStyleAnimatedNode.m; sourceTree = ""; }; C924340471D482F7D3064ABC398995B2 /* SingletonStackTrace.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SingletonStackTrace.h; path = folly/detail/SingletonStackTrace.h; sourceTree = ""; }; C92C8A75373FDD65BA140C3FC5D19412 /* ColdResumeHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ColdResumeHandler.h; path = rsocket/ColdResumeHandler.h; sourceTree = ""; }; - C93CF245B68730A4106CB88F659BCF9D /* RNJitsiMeetView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNJitsiMeetView.h; path = ios/RNJitsiMeetView.h; sourceTree = ""; }; + C94DF131D2C7A1143299D52FEDA5F08D /* RNCAppearanceProvider.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCAppearanceProvider.h; path = ios/Appearance/RNCAppearanceProvider.h; sourceTree = ""; }; C962D0DC80FED44299F607709C19F307 /* EventBaseBackendBase.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = EventBaseBackendBase.cpp; path = folly/io/async/EventBaseBackendBase.cpp; sourceTree = ""; }; - C96CEA7E32DCCEE86C7442DA65BC188C /* RCTModuleMethod.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTModuleMethod.mm; sourceTree = ""; }; + C96964615B9F8F7FE876DFC466D2F08E /* RNNotificationCenterMulticast.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNNotificationCenterMulticast.m; path = RNNotifications/RNNotificationCenterMulticast.m; sourceTree = ""; }; C9747AA2B8D01716FCE80D520324E26A /* x509.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = x509.h; path = ios/include/openssl/x509.h; sourceTree = ""; }; + C97B622143A5155BF69A5EA97E062D0F /* RNRotationHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNRotationHandler.h; sourceTree = ""; }; + C98188E4432B4AD67B23D5E22F92E340 /* EXLocalAuthentication.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXLocalAuthentication.m; path = EXLocalAuthentication/EXLocalAuthentication.m; sourceTree = ""; }; C987DC1C2C3EA4DEE1EE19442D15E17B /* Demangle.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Demangle.h; path = folly/detail/Demangle.h; sourceTree = ""; }; C989C6DE38EB8BAEB6957E262B311396 /* NSImage+Compatibility.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSImage+Compatibility.m"; path = "SDWebImage/Core/NSImage+Compatibility.m"; sourceTree = ""; }; C9A231A645AD2E00A8FE98B6AE41DB9D /* FIRCLSByteUtility.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCLSByteUtility.m; path = Crashlytics/Shared/FIRCLSByteUtility.m; sourceTree = ""; }; + C9BA13939F13DADE2982229661846EA3 /* RCTSafeAreaView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSafeAreaView.m; sourceTree = ""; }; C9BB88A0911A06DA7814B56AB738E5E1 /* yuv_sse2.c */ = {isa = PBXFileReference; includeInIndex = 1; name = yuv_sse2.c; path = src/dsp/yuv_sse2.c; sourceTree = ""; }; - C9CA371FF7BCD3F21171FD25C7E984EA /* UMTaskServiceInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMTaskServiceInterface.h; path = UMTaskManagerInterface/UMTaskServiceInterface.h; sourceTree = ""; }; - C9DD3F683758C769A9305AC28B4E8946 /* RCTConvert+FIRApp.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "RCTConvert+FIRApp.m"; path = "ios/RNFBApp/RCTConvert+FIRApp.m"; sourceTree = ""; }; - C9E1CC4BE8E54D8BD85A389E56BC06AD /* EXFileSystem.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = EXFileSystem.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - C9F5CB0B8E3B1E1DA9C367F33FC0E935 /* BSG_KSObjC.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSObjC.h; sourceTree = ""; }; - CA0EEC2F605A34718DCC11945AF562C6 /* RNDeviceInfo-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNDeviceInfo-prefix.pch"; sourceTree = ""; }; - CA195DADF7BC48BD83347663827C9066 /* RCTImageShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageShadowView.h; path = Libraries/Image/RCTImageShadowView.h; sourceTree = ""; }; + C9CBED7B7CBF4B50D48CC9F48B3404B0 /* DeviceUID.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = DeviceUID.m; path = ios/RNDeviceInfo/DeviceUID.m; sourceTree = ""; }; + CA0FA712394D195459EE2ED9634212ED /* react-native-background-timer-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "react-native-background-timer-dummy.m"; sourceTree = ""; }; CA3BEA689351C617613D83A5EA277299 /* bignum.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = bignum.h; path = "double-conversion/bignum.h"; sourceTree = ""; }; - CA3F4D9022ACE979D21EF614A7442934 /* React-callinvoker.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-callinvoker.debug.xcconfig"; sourceTree = ""; }; - CA4B5F2CB05033C31AFD5B639471937C /* JSCRuntime.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = JSCRuntime.h; sourceTree = ""; }; - CA62E9DDFDBC1C2126E21CFCAC8BA10D /* RCTInterpolationAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTInterpolationAnimatedNode.m; sourceTree = ""; }; + CA6F2569D4EE9EE19902BDE4DFB7EA84 /* BugsnagConfiguration.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagConfiguration.h; sourceTree = ""; }; CA90277E8E4C7BEC5CD2B015A5AE5675 /* pt.lproj */ = {isa = PBXFileReference; includeInIndex = 1; name = pt.lproj; path = "Objective-C/TOCropViewController/Resources/pt.lproj"; sourceTree = ""; }; CA9D19849DA0037346A7C2448CD8E052 /* FIRCLSFABHost.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSFABHost.h; path = Crashlytics/Shared/FIRCLSFABHost.h; sourceTree = ""; }; CA9DE3AFEE8924A7B1EA77B2663C05F2 /* FIRCLSURLBuilder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSURLBuilder.h; path = Crashlytics/Shared/FIRCLSNetworking/FIRCLSURLBuilder.h; sourceTree = ""; }; CAA202053FC287A8CB5D0500F5A2EA2E /* ApplyTuple.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ApplyTuple.h; path = folly/functional/ApplyTuple.h; sourceTree = ""; }; + CAA93BAEA634ABC2D37E973391483399 /* REAStyleNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REAStyleNode.m; sourceTree = ""; }; CAAB5256C605D9A712B4E4082C13AEE7 /* UIImage+Transform.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIImage+Transform.m"; path = "SDWebImage/Core/UIImage+Transform.m"; sourceTree = ""; }; - CAAE6CD9C0F75AFE449CEB2459346207 /* RCTNetworkTask.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTNetworkTask.mm; sourceTree = ""; }; CAB825B7A88F0CB25190C21C70EECB21 /* FirebaseInstallations.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FirebaseInstallations.h; path = FirebaseInstallations/Source/Library/Public/FirebaseInstallations.h; sourceTree = ""; }; + CAC136B2695A2828833DF8153B21EA23 /* React-RCTNetwork.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-RCTNetwork.debug.xcconfig"; sourceTree = ""; }; CAC1FD759E3EA26A598645CA20B95EEF /* FIRApp.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRApp.m; path = FirebaseCore/Sources/FIRApp.m; sourceTree = ""; }; CAC47B5DBDADB42C364570B803D910E2 /* SDImageCoder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageCoder.h; path = SDWebImage/Core/SDImageCoder.h; sourceTree = ""; }; CAD9EC209A4AB30125621565D7E5B66B /* GULApplication.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULApplication.h; path = GoogleUtilities/AppDelegateSwizzler/Private/GULApplication.h; sourceTree = ""; }; CAE6DEF4CBEF1CE244437B0BD7A057AB /* FBVector.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBVector.h; path = folly/FBVector.h; sourceTree = ""; }; + CAEB0846C2DF688EA19B435606F9A274 /* RNCWKProcessPoolManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCWKProcessPoolManager.h; path = apple/RNCWKProcessPoolManager.h; sourceTree = ""; }; + CAF6CB066BFFF2B1986A0DFA0168235E /* Orientation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Orientation.h; path = iOS/RCTOrientation/Orientation.h; sourceTree = ""; }; CAF79ABA691C5D9E7A52BF0F5FEB115A /* FIRComponent.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRComponent.h; path = FirebaseCore/Sources/Private/FIRComponent.h; sourceTree = ""; }; - CB01C1E81C5C4C18A7EB21CE16A0867B /* RCTScrollableProtocol.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTScrollableProtocol.h; sourceTree = ""; }; + CAFE7FC8058A8AFE746C84010F2A9F5B /* RCTModuleData.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTModuleData.h; sourceTree = ""; }; + CB0CD3F37236BC9C2F58D3460CC0A4D6 /* BSG_KSCrashContext.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashContext.h; sourceTree = ""; }; CB17739A753C1166E5F9872137765227 /* GDTCORPlatform.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCORPlatform.h; path = GoogleDataTransport/GDTCORLibrary/Public/GDTCORPlatform.h; sourceTree = ""; }; - CB1C48C95BE211F92168DA1DDF4298C7 /* RNNotificationUtils.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNNotificationUtils.m; path = RNNotifications/RNNotificationUtils.m; sourceTree = ""; }; - CB26351E8C2A3B0C196B00BD1E99A114 /* ARTBrush.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = ARTBrush.m; sourceTree = ""; }; + CB2419D38E6A5851A62CBF61C80EC5B8 /* BSG_KSCrashSentry_User.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSCrashSentry_User.c; sourceTree = ""; }; CB34B02012E0B2B4A50A5D88AB1ECA41 /* StreamsWriter.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = StreamsWriter.cpp; path = rsocket/statemachine/StreamsWriter.cpp; sourceTree = ""; }; - CB39A92AF5D039A61F5EB788855D543A /* REAConcatNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REAConcatNode.m; sourceTree = ""; }; CB40206B43B5992748747DC69CEF0B41 /* yuv_mips32.c */ = {isa = PBXFileReference; includeInIndex = 1; name = yuv_mips32.c; path = src/dsp/yuv_mips32.c; sourceTree = ""; }; + CB424A2EB01377F79EE4D04D1751381B /* ReactMarker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = ReactMarker.h; sourceTree = ""; }; CB4A73EB8165B2E2985F8D6239736A87 /* SDInternalMacros.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDInternalMacros.h; path = SDWebImage/Private/SDInternalMacros.h; sourceTree = ""; }; CB4B5B3A7B31625914AFA13FE1059EF5 /* ThreadedRepeatingFunctionRunner.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ThreadedRepeatingFunctionRunner.h; path = folly/experimental/ThreadedRepeatingFunctionRunner.h; sourceTree = ""; }; CB51CD73695A6728205C7FD008D4C1C4 /* FIRCLSReportAdapter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSReportAdapter.h; path = Crashlytics/Crashlytics/Models/Record/FIRCLSReportAdapter.h; sourceTree = ""; }; CB53B86345A65DA0B11B0E880B6E2402 /* FIRInstallationsIIDTokenStore.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstallationsIIDTokenStore.m; path = FirebaseInstallations/Source/Library/IIDMigration/FIRInstallationsIIDTokenStore.m; sourceTree = ""; }; + CB54911DDCC8216A22A20303C811DC3F /* Compression.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Compression.h; path = ios/src/Compression.h; sourceTree = ""; }; CB84CC51503D7890C0A68A673FC36BC9 /* GDTCORReachability_Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCORReachability_Private.h; path = GoogleDataTransport/GDTCORLibrary/Private/GDTCORReachability_Private.h; sourceTree = ""; }; - CB87B343FC29D138799BA48A2C5007CC /* RCTUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTUtils.h; sourceTree = ""; }; - CB90D178FE39E7A139DEC60C63E9C234 /* BSG_KSCrashSentry_Signal.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSCrashSentry_Signal.c; sourceTree = ""; }; - CB9D5BEE2AAEC88BB06E78FAB8EAED33 /* RNCSafeAreaShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCSafeAreaShadowView.m; path = ios/SafeAreaView/RNCSafeAreaShadowView.m; sourceTree = ""; }; - CBA1136AEDA53227E8EE8CD59D2571A4 /* BugsnagApiClient.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagApiClient.h; sourceTree = ""; }; CBC5FD4C0CE7EEF0F505F247CAEE821D /* GULKeychainUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULKeychainUtils.h; path = GoogleUtilities/Environment/Private/GULKeychainUtils.h; sourceTree = ""; }; CBCC86B7FAE3670860FDC8C180777E73 /* Conv.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Conv.h; path = folly/Conv.h; sourceTree = ""; }; + CBD8B3DE67128C539BC7D164F17D2C34 /* UMAppLoader.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = UMAppLoader.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + CBDCAAEFF19248FF5247C5192EB10655 /* RCTTextView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTextView.h; sourceTree = ""; }; CBE24AE4D688274C453602C8841B3C2C /* Foreach.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Foreach.h; path = folly/container/Foreach.h; sourceTree = ""; }; - CBE6C2B5713C7453835DB639E7FB9C83 /* RCTScrollViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTScrollViewManager.h; sourceTree = ""; }; + CBFAB93087C5B978FEF6DC2DE1E3EAB3 /* RCTAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTAnimatedNode.m; sourceTree = ""; }; CBFF428EBE47C2BF3D2D6319F9C9545C /* SDWebImageDownloaderResponseModifier.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageDownloaderResponseModifier.h; path = SDWebImage/Core/SDWebImageDownloaderResponseModifier.h; sourceTree = ""; }; CC059C0AE44FC1A1AA162C66F274F452 /* KeyValueHolder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = KeyValueHolder.h; path = Core/KeyValueHolder.h; sourceTree = ""; }; - CC05F628433C495AA83FD9F1BB9E9CA7 /* react-native-safe-area-context.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = "react-native-safe-area-context.podspec"; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + CC0B6AEE5456888709FAB129B5F70007 /* RCTRootContentView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTRootContentView.m; sourceTree = ""; }; CC1382387B408898BE667378601E65A0 /* FIRCLSURLSessionDataTask.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCLSURLSessionDataTask.m; path = Crashlytics/Crashlytics/FIRCLSURLSession/Tasks/FIRCLSURLSessionDataTask.m; sourceTree = ""; }; - CC178B69A8951D7DD44E3380D74F180E /* RCTConvert+ART.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "RCTConvert+ART.m"; path = "ios/RCTConvert+ART.m"; sourceTree = ""; }; CC2AE6EC96A84416A005C6100DC9D3D9 /* ThreadWheelTimekeeperHighRes.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ThreadWheelTimekeeperHighRes.h; path = folly/experimental/ThreadWheelTimekeeperHighRes.h; sourceTree = ""; }; CC481CE3D25D4BEA14F4E859A51331BC /* FIRInstallationsAuthTokenResult.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstallationsAuthTokenResult.h; path = FirebaseInstallations/Source/Library/Public/FIRInstallationsAuthTokenResult.h; sourceTree = ""; }; + CC5FCC4F68924176490A137A1E39DCD0 /* RCTBaseTextInputShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBaseTextInputShadowView.h; sourceTree = ""; }; CC6772EDF42A0EE1AF458A2D575F4D74 /* FIRCLSFABAsyncOperation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSFABAsyncOperation.h; path = Crashlytics/Shared/FIRCLSOperation/FIRCLSFABAsyncOperation.h; sourceTree = ""; }; CC6BB824529065AC67678897C310C815 /* lossless_enc_sse41.c */ = {isa = PBXFileReference; includeInIndex = 1; name = lossless_enc_sse41.c; path = src/dsp/lossless_enc_sse41.c; sourceTree = ""; }; CC7802A0AEC86D9095B84A3308092B8F /* FIRCLSInternalReport.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCLSInternalReport.m; path = Crashlytics/Crashlytics/Models/FIRCLSInternalReport.m; sourceTree = ""; }; + CCA4EBF3A7E4A4B8C5515F21F510B772 /* REAOperatorNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REAOperatorNode.m; sourceTree = ""; }; CCAEEF5103784B8F6521F32C34FD4EA6 /* PriorityUnboundedQueueSet.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PriorityUnboundedQueueSet.h; path = folly/concurrency/PriorityUnboundedQueueSet.h; sourceTree = ""; }; - CCB8B95FEA43BB698CB842B468123F6C /* UMFaceDetectorInterface.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMFaceDetectorInterface.release.xcconfig; sourceTree = ""; }; + CCBBA2758C1C959967EFC783EC66B0CD /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; CCBBF9764FB6AD4BE86FB46A28A388B6 /* ColdResumeHandler.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = ColdResumeHandler.cpp; path = rsocket/ColdResumeHandler.cpp; sourceTree = ""; }; CCCC710735CD7D542205BABEC5E5760E /* GULOriginalIMPConvenienceMacros.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULOriginalIMPConvenienceMacros.h; path = GoogleUtilities/MethodSwizzler/Private/GULOriginalIMPConvenienceMacros.h; sourceTree = ""; }; - CCE524C3197B457F22F38B91979EE5E6 /* react-native-safe-area-context-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "react-native-safe-area-context-dummy.m"; sourceTree = ""; }; - CCE82C3857C8B7741E52A38455E8F3D9 /* RCTTrackingAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTrackingAnimatedNode.h; sourceTree = ""; }; + CCDD06E3947BBBF8B4AAF7FE27B2EDB3 /* RCTNativeAnimatedModule.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTNativeAnimatedModule.mm; sourceTree = ""; }; CCEDA3AF943D1A737E1ECD6B66A3C819 /* ieee.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ieee.h; path = "double-conversion/ieee.h"; sourceTree = ""; }; - CCFB1DA3D6C4E7F32F19A34B80E3946F /* BugsnagApiClient.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagApiClient.m; sourceTree = ""; }; - CCFC773E624BE63830644BBD94C2C08F /* BugsnagSessionTrackingPayload.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagSessionTrackingPayload.m; sourceTree = ""; }; CCFDF5247C0C4F27F981117EEAD08CC7 /* FutureSplitter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FutureSplitter.h; path = folly/futures/FutureSplitter.h; sourceTree = ""; }; - CCFE3517B8155FC4FAB5E748CA4F0AF0 /* RCTDataRequestHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTDataRequestHandler.h; path = Libraries/Network/RCTDataRequestHandler.h; sourceTree = ""; }; - CD091D739D70DD6988801CE7607F66C9 /* RCTImagePlugins.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImagePlugins.h; path = Libraries/Image/RCTImagePlugins.h; sourceTree = ""; }; CD09BFC7557390B9028194A2BD50C26C /* GoogleDataTransport.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = GoogleDataTransport.release.xcconfig; sourceTree = ""; }; - CD0FC109571C3BBFEBF54058E8DAE3D0 /* RCTTouchEvent.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTouchEvent.h; sourceTree = ""; }; CD1470D09E1D46A280291B16028B7C2F /* NetworkSocket.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = NetworkSocket.h; path = folly/net/NetworkSocket.h; sourceTree = ""; }; + CD1EE304F62FF3B21CBB2CC033ACED60 /* RCTBridge+Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RCTBridge+Private.h"; sourceTree = ""; }; + CD27403C2A5FF98DCE98D96FD88D3ADE /* RCTTransformAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTTransformAnimatedNode.m; sourceTree = ""; }; CD29537A0F5CBB68F678384B20A35996 /* opensslconf.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = opensslconf.h; path = ios/include/openssl/opensslconf.h; sourceTree = ""; }; CD4CC32F46263273DDFEA3E9FB6BEB27 /* SKInvalidation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SKInvalidation.h; path = iOS/Plugins/FlipperKitLayoutPlugin/FlipperKitLayoutPlugin/SKInvalidation.h; sourceTree = ""; }; - CD99FA70EEE75645133D46B391FA3856 /* UMViewManagerAdapterClassesRegistry.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = UMViewManagerAdapterClassesRegistry.m; sourceTree = ""; }; + CD4F61FEDB2C7848067C7FA898CB6472 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; + CD8CD7396DE846D7BBFCC79358376367 /* RNBootSplash.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNBootSplash.m; path = ios/RNBootSplash.m; sourceTree = ""; }; CD9FDE20BB6C3A8A95497CBD5EF63471 /* UIImage+GIF.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIImage+GIF.m"; path = "SDWebImage/Core/UIImage+GIF.m"; sourceTree = ""; }; CDB1783AAD2EB476B425C7E30DCF5B5C /* FIRCLSHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCLSHandler.m; path = Crashlytics/Crashlytics/Handlers/FIRCLSHandler.m; sourceTree = ""; }; CDB9221B769ECAD8F1A1D9A11975DBEE /* Init.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = Init.cpp; path = folly/ssl/Init.cpp; sourceTree = ""; }; CDBEF8C2CCA558C1AA7C747627D492A6 /* FlatCombiningPriorityQueue.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FlatCombiningPriorityQueue.h; path = folly/experimental/FlatCombiningPriorityQueue.h; sourceTree = ""; }; CDC2BADBC6B01A48B2E76D23BE432B9D /* FIRCLSUtility.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSUtility.h; path = Crashlytics/Crashlytics/Helpers/FIRCLSUtility.h; sourceTree = ""; }; CDCB3FA778FA021CE5A437ED92273D4F /* FIRCLSRecordHost.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSRecordHost.h; path = Crashlytics/Crashlytics/Models/Record/FIRCLSRecordHost.h; sourceTree = ""; }; - CDD723C4337CAC9740C288732F194960 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; - CDED5F5372FA6EF7326495F735851235 /* ReactNativeART.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = ReactNativeART.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + CDFB8664DB7DD1B86FF333BE3F57BA18 /* RCTScrollView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTScrollView.m; sourceTree = ""; }; + CE09A37DC922DC3974CE8B6614EB48F6 /* RNFBPreferences.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNFBPreferences.m; path = ios/RNFBApp/RNFBPreferences.m; sourceTree = ""; }; CE1B1D122BC33C2979EF3AD8FF9B2C6E /* Hazptr.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Hazptr.h; path = folly/synchronization/Hazptr.h; sourceTree = ""; }; - CE1F06876D0CC4BBA737075281BD9C98 /* React-RCTActionSheet.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = "React-RCTActionSheet.podspec"; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; CE2D88A61843F3737848C2E03DD731B9 /* Random.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Random.h; path = folly/Random.h; sourceTree = ""; }; - CE2DCEB0D04A926126A4A06D361A8FED /* RCTTurboModuleManager.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTTurboModuleManager.mm; sourceTree = ""; }; CE2DD1461FF34AB8CA362D6277D1E44E /* GULNSDataInternal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULNSDataInternal.h; path = "GoogleUtilities/NSData+zlib/Private/GULNSDataInternal.h"; sourceTree = ""; }; + CE35B0B7DE4CDF90DDE767F2A716FAAC /* RCTConvert.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTConvert.m; sourceTree = ""; }; CE47552437AA39F383916668046EEC10 /* WarmResumeManager.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = WarmResumeManager.cpp; path = rsocket/internal/WarmResumeManager.cpp; sourceTree = ""; }; - CE7D59CB5FF71F5B1A541F69ABFAC75C /* RNBootSplash.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RNBootSplash.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + CE4992EE87E3DB6DB4CE49F27C6E39C9 /* RCTAlertManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTAlertManager.h; path = React/CoreModules/RCTAlertManager.h; sourceTree = ""; }; + CE52B2322F5A722469845A5FF8E82B1E /* RCTConvert+Transform.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RCTConvert+Transform.m"; sourceTree = ""; }; + CE5B760B2414FE0F23B1593907FB80D3 /* UMFaceDetectorInterface.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = UMFaceDetectorInterface.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + CE65E999A12D2DFF534FA99A66784A0D /* MMKVStorage.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = MMKVStorage.m; path = ios/MMKVStorage.m; sourceTree = ""; }; CE8411D003E03C0CF5E8DF1584C5C6AA /* SysUio.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = SysUio.cpp; path = folly/portability/SysUio.cpp; sourceTree = ""; }; - CE8515B96EEE31F08F168D2B9AC4D691 /* React-Core.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-Core.release.xcconfig"; sourceTree = ""; }; CEACFCFAC61DE8843D91BC883EC70702 /* tag_compat.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = tag_compat.h; path = src/event2/tag_compat.h; sourceTree = ""; }; - CEDDB49C0A0BEB0FADF67CA1046E43F9 /* BSG_KSCrashReportFilter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashReportFilter.h; sourceTree = ""; }; - CEF6574E85E53A7F40ABFD78F61D5315 /* RNConfigReader.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNConfigReader.release.xcconfig; sourceTree = ""; }; - CEF807FFCB1153598A37E625CFE33E50 /* RCTDisplayWeakRefreshable.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTDisplayWeakRefreshable.m; sourceTree = ""; }; - CEFBDF861F3301ABB280F2E94FD6073C /* RCTCustomInputController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTCustomInputController.h; sourceTree = ""; }; + CEE10F57E2A70426F83D3CE2488EF6FF /* RNPushKitEventHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNPushKitEventHandler.m; path = RNNotifications/RNPushKitEventHandler.m; sourceTree = ""; }; CF01E9EEBAC70776C6CA2B3B5A114740 /* FIRCLSURLSessionUploadTask.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCLSURLSessionUploadTask.m; path = Crashlytics/Crashlytics/FIRCLSURLSession/Tasks/FIRCLSURLSessionUploadTask.m; sourceTree = ""; }; - CF25046EDD37FD4274ED2A9926FF12FE /* RNSScreenStackHeaderConfig.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNSScreenStackHeaderConfig.h; path = ios/RNSScreenStackHeaderConfig.h; sourceTree = ""; }; + CF207FF954594543030AF9A57CB88BCE /* RCTBorderStyle.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBorderStyle.h; sourceTree = ""; }; CF3AF994CB27C9C3659E126D2607B539 /* Fcntl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Fcntl.h; path = folly/portability/Fcntl.h; sourceTree = ""; }; CF49436129715F2A1C1B93FD978FB27D /* Subscription.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Subscription.h; path = yarpl/flowable/Subscription.h; sourceTree = ""; }; + CF6E4A60E10A9EE1158AACE39FB504E7 /* RCTFont.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTFont.h; sourceTree = ""; }; CF7079087917665847C821E2EBD3BC4E /* EventBaseManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EventBaseManager.h; path = folly/io/async/EventBaseManager.h; sourceTree = ""; }; - CF91BE09FB7AF4142DCFAB682F69CBEF /* RCTInspectorDevServerHelper.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTInspectorDevServerHelper.mm; sourceTree = ""; }; + CF73ACF3A238FB3533E91A67E3B4F996 /* QBCheckmarkView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = QBCheckmarkView.m; path = ios/QBImagePicker/QBImagePicker/QBCheckmarkView.m; sourceTree = ""; }; + CF745B7AE8CFE90CDA62D46441A3C707 /* RCTActivityIndicatorViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTActivityIndicatorViewManager.h; sourceTree = ""; }; + CF8FACEBABF089D2EE50859CCD7257CA /* RNCSafeAreaViewLocalData.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCSafeAreaViewLocalData.m; path = ios/SafeAreaView/RNCSafeAreaViewLocalData.m; sourceTree = ""; }; CF9F20A98CADC212F35CF93BE4A390A9 /* SKViewDescriptor.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = SKViewDescriptor.mm; path = iOS/Plugins/FlipperKitLayoutPlugin/FlipperKitLayoutPlugin/descriptors/SKViewDescriptor.mm; sourceTree = ""; }; CFA731D8F9C8D39AA9BC49D7CD25ED70 /* histogram_enc.c */ = {isa = PBXFileReference; includeInIndex = 1; name = histogram_enc.c; path = src/enc/histogram_enc.c; sourceTree = ""; }; CFB1369EC80A9420B57A2C47D31A6BD1 /* AsyncSocketException.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = AsyncSocketException.cpp; path = folly/io/async/AsyncSocketException.cpp; sourceTree = ""; }; - CFC2265CC09C3B6EAD9CA1393EA1BC34 /* RCTAnimationPlugins.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTAnimationPlugins.mm; sourceTree = ""; }; - CFCB57D8AD754C62A592AD22F73AD0C9 /* UMBarometerInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMBarometerInterface.h; path = UMSensorsInterface/UMBarometerInterface.h; sourceTree = ""; }; + CFC4318F0869259F0C82E75701162A3E /* RCTJSStackFrame.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTJSStackFrame.m; sourceTree = ""; }; CFDD9897B420437740F2C790E28FFCA8 /* EventUtil.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EventUtil.h; path = folly/io/async/EventUtil.h; sourceTree = ""; }; + CFF98EA85EA0DF705D768DE9D244C652 /* RCTNativeAnimatedNodesManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTNativeAnimatedNodesManager.h; path = Libraries/NativeAnimation/RCTNativeAnimatedNodesManager.h; sourceTree = ""; }; CFFC5CEBE6998B8E15AEAC6F2D288C0B /* TimekeeperScheduledExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TimekeeperScheduledExecutor.h; path = folly/executors/TimekeeperScheduledExecutor.h; sourceTree = ""; }; - CFFCDECA7EBF6812A30EAF74864C7167 /* RNGestureHandler-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNGestureHandler-prefix.pch"; sourceTree = ""; }; - D00CA78130748B67E6183E86B93CBA1E /* React-RCTText.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-RCTText.release.xcconfig"; sourceTree = ""; }; D0130700BA4DA571E1A4239536EE0EF5 /* Pods-ShareRocketChatRN-resources.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-ShareRocketChatRN-resources.sh"; sourceTree = ""; }; D01D14CD435FAC57CF5EC773DB21909E /* FIRCLSByteUtility.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSByteUtility.h; path = Crashlytics/Shared/FIRCLSByteUtility.h; sourceTree = ""; }; D0357EE36C7C9977E3183D342EA97611 /* dec_neon.c */ = {isa = PBXFileReference; includeInIndex = 1; name = dec_neon.c; path = src/dsp/dec_neon.c; sourceTree = ""; }; + D036A8B91F9D274755D69D2C610FC578 /* YGEnums.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = YGEnums.cpp; path = yoga/YGEnums.cpp; sourceTree = ""; }; D03CA44CA8D6720A679EF538EE831E1D /* SKHighlightOverlay.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = SKHighlightOverlay.mm; path = iOS/Plugins/FlipperKitPluginUtils/FlipperKitHighlightOverlay/SKHighlightOverlay.mm; sourceTree = ""; }; D0413152AC6892E64F76BAF43B060FB2 /* SKViewDescriptor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SKViewDescriptor.h; path = iOS/Plugins/FlipperKitLayoutPlugin/FlipperKitLayoutPlugin/descriptors/SKViewDescriptor.h; sourceTree = ""; }; - D041B3D0518D80877DEAF8464CD1ADF3 /* RCTBridge.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBridge.h; sourceTree = ""; }; D04A3AACF957C27FB577ECD76C38CE54 /* Hardware.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Hardware.h; path = folly/chrono/Hardware.h; sourceTree = ""; }; - D0693CE22C26695AD5D0245ACBAC9F3C /* RNImageCropPicker.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNImageCropPicker.release.xcconfig; sourceTree = ""; }; + D04E2BDC02160BC77E7D45B622335C6E /* EXReactNativeUserNotificationCenterProxy.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXReactNativeUserNotificationCenterProxy.h; path = EXPermissions/EXReactNativeUserNotificationCenterProxy.h; sourceTree = ""; }; D06BAF6F0850F0A77332A594D0ED370B /* dtls1.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = dtls1.h; path = ios/include/openssl/dtls1.h; sourceTree = ""; }; D06E7680AA0473980C6FAAB14C074CC3 /* AtomicHashArray-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "AtomicHashArray-inl.h"; path = "folly/AtomicHashArray-inl.h"; sourceTree = ""; }; D0A886F7D02FCF86D156DD6CFA723B42 /* SDWebImageError.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWebImageError.m; path = SDWebImage/Core/SDWebImageError.m; sourceTree = ""; }; - D0B4C8DADC8526FA24BCCF04E3A4D41F /* RCTRequired.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTRequired.h; path = RCTRequired/RCTRequired.h; sourceTree = ""; }; D0C7E5028E9822EAE1931F1C88A1CBE4 /* bufferevent_struct.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = bufferevent_struct.h; path = src/event2/bufferevent_struct.h; sourceTree = ""; }; - D102A58EC56219DFF7B68A696EE2B0A7 /* RNNotificationsStore.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNNotificationsStore.m; path = RNNotifications/RNNotificationsStore.m; sourceTree = ""; }; + D0F2DC87E7E74A05A17321E86C47778C /* RNVectorIconsManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNVectorIconsManager.m; path = RNVectorIconsManager/RNVectorIconsManager.m; sourceTree = ""; }; + D112CD0BA49FDA81DCFC8DCD0F6875A2 /* EXConstants-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "EXConstants-prefix.pch"; sourceTree = ""; }; D114B20FEA715F1C042240C758D782F5 /* HeterogeneousAccess.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = HeterogeneousAccess.h; path = folly/container/HeterogeneousAccess.h; sourceTree = ""; }; - D1207207F6CE5936DB18C2F8BAC8279E /* RNRootView-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNRootView-dummy.m"; sourceTree = ""; }; - D12DA2B389D7BA6439B5E7D859163752 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; D1306E80732728F3DDAA52FA3EDABE05 /* GULUserDefaults.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULUserDefaults.h; path = GoogleUtilities/UserDefaults/Private/GULUserDefaults.h; sourceTree = ""; }; D14272FE2F5771295935154A40285468 /* Asm.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Asm.h; path = folly/portability/Asm.h; sourceTree = ""; }; D1570649D7DA9D5459D8220CE9F3C2AA /* SmallLocks.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SmallLocks.h; path = folly/synchronization/SmallLocks.h; sourceTree = ""; }; + D1688DEEC817ADA5B045B0A1C150408A /* UMModuleRegistryAdapter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMModuleRegistryAdapter.h; sourceTree = ""; }; + D16965FADC0182467809263522EFAFE8 /* UMTaskLaunchReason.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMTaskLaunchReason.h; path = UMTaskManagerInterface/UMTaskLaunchReason.h; sourceTree = ""; }; D1766837DC550B10E0D9B38CE023F75C /* GDTCORStorageProtocol.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCORStorageProtocol.h; path = GoogleDataTransport/GDTCORLibrary/Public/GDTCORStorageProtocol.h; sourceTree = ""; }; - D18C3913BE966444087C2C07EEEFFAB9 /* React-RCTText-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-RCTText-dummy.m"; sourceTree = ""; }; - D1B57CF1BFC9540DEB0B75EB1FF01892 /* RCTInputAccessoryView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTInputAccessoryView.h; sourceTree = ""; }; - D1B5E7F0B800924572CF2EC2C0E81130 /* RNNotificationCenterMulticast.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNNotificationCenterMulticast.m; path = RNNotifications/RNNotificationCenterMulticast.m; sourceTree = ""; }; - D1D1DC7304785668C1A841980DEEE247 /* RNCAsyncStorageDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCAsyncStorageDelegate.h; path = ios/RNCAsyncStorageDelegate.h; sourceTree = ""; }; + D1908C07ECC1F8AD68708EB21D7278F6 /* RCTAnimationDriver.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTAnimationDriver.h; sourceTree = ""; }; D1F1766B7ADFBC8356A75896D0F97C98 /* RSocketErrors.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RSocketErrors.h; path = rsocket/RSocketErrors.h; sourceTree = ""; }; D222508BEDF658D13C92CA937D0A5B0D /* upsampling_sse41.c */ = {isa = PBXFileReference; includeInIndex = 1; name = upsampling_sse41.c; path = src/dsp/upsampling_sse41.c; sourceTree = ""; }; D22546F8E4CFACC35986C9728E94347B /* FirebaseAnalytics.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = FirebaseAnalytics.debug.xcconfig; sourceTree = ""; }; - D26288AC28A3C2083227530664149A61 /* UMConstantsInterface.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMConstantsInterface.release.xcconfig; sourceTree = ""; }; + D256A4727B780EF5BA92120DC5F046FB /* RCTAnimationUtils.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTAnimationUtils.m; sourceTree = ""; }; D277C5450FB38AE5E27874F9C715EC2E /* SDImageLoadersManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageLoadersManager.m; path = SDWebImage/Core/SDImageLoadersManager.m; sourceTree = ""; }; - D291C56A24148D8510AA1C159AE07B1C /* TurboModuleBinding.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TurboModuleBinding.h; path = turbomodule/core/TurboModuleBinding.h; sourceTree = ""; }; D2A18288143E2D07305B90DD14112F03 /* buffer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = buffer.h; path = ios/include/openssl/buffer.h; sourceTree = ""; }; - D2ADC4CC75F94025AF546F47E5DD7C16 /* UMAppLoader.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = UMAppLoader.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + D2CE893C7CA050D01E49C5C0C6D5D936 /* React-RCTNetwork-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-RCTNetwork-prefix.pch"; sourceTree = ""; }; + D2CF69080B3D62569BBC0C345A366519 /* en.lproj */ = {isa = PBXFileReference; includeInIndex = 1; name = en.lproj; path = React/AccessibilityResources/en.lproj; sourceTree = ""; }; D2DC62C332EA4624267D6CA4CBAC02E3 /* DeferObservable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DeferObservable.h; path = yarpl/observable/DeferObservable.h; sourceTree = ""; }; - D2F0D83397E471D3655534A803037AA1 /* EXVideoPlayerViewControllerDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = EXVideoPlayerViewControllerDelegate.h; sourceTree = ""; }; - D30F484C51318F058A152C642B0920B9 /* RCTModalHostView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTModalHostView.m; sourceTree = ""; }; + D308AC56AA2DCD919EC44E69321229A5 /* RCTImageStoreManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageStoreManager.h; path = Libraries/Image/RCTImageStoreManager.h; sourceTree = ""; }; D3358D995274B0DFAAABFD6C5B7A701A /* ScheduledSubscription.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ScheduledSubscription.h; path = rsocket/internal/ScheduledSubscription.h; sourceTree = ""; }; D33C02CF7A42B6C80F082B242AAE211C /* FIRCLSApplicationIdentifierModel.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCLSApplicationIdentifierModel.m; path = Crashlytics/Crashlytics/Settings/Models/FIRCLSApplicationIdentifierModel.m; sourceTree = ""; }; D348BCD90A1AC800855606883F4FE00B /* GroupVarint.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = GroupVarint.cpp; path = folly/GroupVarint.cpp; sourceTree = ""; }; - D361920963428B433A2ADC064FC14813 /* UMImageLoaderInterface.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMImageLoaderInterface.release.xcconfig; sourceTree = ""; }; - D3AD7235D57C76EC0040307CA5BBB12D /* react-native-appearance-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "react-native-appearance-prefix.pch"; sourceTree = ""; }; D3B318E7355D55356996438DC49299D0 /* Cursor.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = Cursor.cpp; path = folly/io/Cursor.cpp; sourceTree = ""; }; - D3C0F4C2A7D98F988B480EE3942D59C6 /* EXConstants.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXConstants.m; path = EXConstants/EXConstants.m; sourceTree = ""; }; D3C21FF58057D4E5E3C0F365982DD58C /* SocketAddress.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = SocketAddress.cpp; path = folly/SocketAddress.cpp; sourceTree = ""; }; - D3FC713448A626AEA1B4492E6EFAEA45 /* BSG_KSMach_x86_32.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSMach_x86_32.c; sourceTree = ""; }; + D3CBDDAFCEF1BF403A101B3FCC109E47 /* React-RCTBlob-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-RCTBlob-prefix.pch"; sourceTree = ""; }; + D3F2EC236BD7B4232E6A3EB4C9421A72 /* QBAlbumCell.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = QBAlbumCell.h; path = ios/QBImagePicker/QBImagePicker/QBAlbumCell.h; sourceTree = ""; }; D3FF49BBB72A385DBC8A6E42EF72A889 /* SDWebImageDownloader.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWebImageDownloader.m; path = SDWebImage/Core/SDWebImageDownloader.m; sourceTree = ""; }; D401D90B858A671DCAC8FB112F470F99 /* SingletonRelaxedCounter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SingletonRelaxedCounter.h; path = folly/experimental/SingletonRelaxedCounter.h; sourceTree = ""; }; D405C5423FC7862CDEEAF02BACA85FB2 /* event_compat.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = event_compat.h; path = src/event2/event_compat.h; sourceTree = ""; }; - D408A6090D5A52F2EAAD3BB6A15B2E68 /* ARTSurfaceView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = ARTSurfaceView.m; path = ios/ARTSurfaceView.m; sourceTree = ""; }; D40BCFC7732DC3B18B98425AB1847A4C /* CustomizationPoint.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CustomizationPoint.h; path = folly/lang/CustomizationPoint.h; sourceTree = ""; }; + D41292C5501551FD56A523432F93C42F /* EXHapticsModule.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXHapticsModule.m; path = EXHaptics/EXHapticsModule.m; sourceTree = ""; }; D4214CA5397CB8587EDF31C3209DFAA4 /* libevent_pthreads.a */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = archive.ar; name = libevent_pthreads.a; path = lib/libevent_pthreads.a; sourceTree = ""; }; - D44A18A4E576294EB7F62F8ACC296DC5 /* UMReactFontManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMReactFontManager.h; sourceTree = ""; }; + D44F3771A051790D917427E8BAED5119 /* RCTKeyboardObserver.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTKeyboardObserver.mm; sourceTree = ""; }; D44FE2589C58D8161AB553809DA3EF0B /* GoogleDataTransport.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = GoogleDataTransport.debug.xcconfig; sourceTree = ""; }; - D4519BC03FAB489D86D0F7FE4A422662 /* React-jsinspector-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-jsinspector-dummy.m"; sourceTree = ""; }; + D45C724EB8C0D71D3902BF08C43D52A9 /* BSG_KSMach_x86_32.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSMach_x86_32.c; sourceTree = ""; }; D46183B657931FA50A94CDB9A298A10C /* STTimerFDTimeoutManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = STTimerFDTimeoutManager.h; path = folly/experimental/STTimerFDTimeoutManager.h; sourceTree = ""; }; - D4656C8233F03153A56FC08C10718E4C /* EXAV.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = EXAV.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - D474F20FA3901D402C092E2072F7FDA2 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; - D48572B8B277C63CACAD5807CF571B0D /* RNPushKitEventListener.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNPushKitEventListener.m; path = RNNotifications/RNPushKitEventListener.m; sourceTree = ""; }; - D49BD9594FA69C7DCE14EF69C1BD7912 /* RCTScrollContentView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTScrollContentView.m; sourceTree = ""; }; - D4AF643DEB251276A81EC8063A9F053F /* REATransitionValues.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REATransitionValues.m; sourceTree = ""; }; + D4697B43CE5BC0C104C8EA8B8401BD07 /* ARTNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ARTNode.h; path = ios/ARTNode.h; sourceTree = ""; }; + D4783C7917C3E1C90944C685DA701AD2 /* UMAppLoaderInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMAppLoaderInterface.h; sourceTree = ""; }; + D48275BB43CA74E1BDA9315DA6073E4E /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; + D4926A796F3466B4AC07ACE1D5E7A1B0 /* RCTCxxBridge.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTCxxBridge.mm; sourceTree = ""; }; + D4973084DDC9ABB1F767978143F4D1D7 /* React-CoreModules.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-CoreModules.debug.xcconfig"; sourceTree = ""; }; D4B57FFBBEA9176B766C2461071C934B /* pt-BR.lproj */ = {isa = PBXFileReference; includeInIndex = 1; name = "pt-BR.lproj"; path = "Objective-C/TOCropViewController/Resources/pt-BR.lproj"; sourceTree = ""; }; D4FD14590F0B25977812C04848442621 /* lhash.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = lhash.h; path = ios/include/openssl/lhash.h; sourceTree = ""; }; D50726014D9E22FB377119401B3ABB76 /* SDWebImageIndicator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageIndicator.h; path = SDWebImage/Core/SDWebImageIndicator.h; sourceTree = ""; }; D507371FA033E53CBF5A3D33C11A91AC /* MallctlHelper.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = MallctlHelper.cpp; path = folly/memory/MallctlHelper.cpp; sourceTree = ""; }; + D51C3499F9412DC78328E33E0825718D /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; + D51E6A116D06020D51C1DD7F353955B8 /* YGMacros.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YGMacros.h; path = yoga/YGMacros.h; sourceTree = ""; }; + D53A4B2272C5E412FF84AF706E715722 /* react-native-jitsi-meet-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "react-native-jitsi-meet-prefix.pch"; sourceTree = ""; }; D55333DDD6CA1FD906ED2DA4E53C9DA5 /* FIRDependency.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRDependency.h; path = FirebaseCore/Sources/Private/FIRDependency.h; sourceTree = ""; }; + D5609C8A9C5815B0F95C2122E560BEC7 /* REAClockNodes.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REAClockNodes.m; sourceTree = ""; }; + D56407E0D90F556BD004EFCA88C388CB /* UMSingletonModule.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = UMSingletonModule.m; path = UMCore/UMSingletonModule.m; sourceTree = ""; }; D566CCB86225D9463BFAF68E2BA3D2CA /* FIRCLSReportManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCLSReportManager.m; path = Crashlytics/Crashlytics/Controllers/FIRCLSReportManager.m; sourceTree = ""; }; - D57B7EA564955711DAD9870EF606DA52 /* RCTActivityIndicatorViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTActivityIndicatorViewManager.h; sourceTree = ""; }; - D57E08F6A0A9451EFB9EB412D94B3A8D /* react-native-webview-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "react-native-webview-prefix.pch"; sourceTree = ""; }; - D58A394D72B6C488E64A3371BDF02758 /* UMViewManagerAdapterClassesRegistry.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMViewManagerAdapterClassesRegistry.h; sourceTree = ""; }; - D59501BFC5E63AA6CC3485BADE25ECF9 /* RNImageCropPicker.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RNImageCropPicker.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + D578226409223BA387A9859CEA244900 /* ReactNativeKeyboardTrackingView.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = ReactNativeKeyboardTrackingView.release.xcconfig; sourceTree = ""; }; D59554B9CAB55F861B07798C53BE7454 /* dec_sse2.c */ = {isa = PBXFileReference; includeInIndex = 1; name = dec_sse2.c; path = src/dsp/dec_sse2.c; sourceTree = ""; }; - D5987EC0DF3517E6D9F5C244C1837F1B /* NSDataBigString.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = NSDataBigString.mm; sourceTree = ""; }; - D59F913E76E074296AA881EE17A00394 /* rn-extensions-share-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "rn-extensions-share-dummy.m"; sourceTree = ""; }; - D5B2A78827E3C980402498913BB5F416 /* RCTSafeAreaView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSafeAreaView.m; sourceTree = ""; }; + D59EBE263CEE3618D019A50815408252 /* StorageSetters.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = StorageSetters.m; path = ios/StorageSetters.m; sourceTree = ""; }; D5C775614AC76D44CECB6BE08B022F1F /* libReactCommon.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libReactCommon.a; path = libReactCommon.a; sourceTree = BUILT_PRODUCTS_DIR; }; D5CA6CF8347107CE885E03EE8C4CE52D /* RWSpinLock.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RWSpinLock.h; path = folly/RWSpinLock.h; sourceTree = ""; }; + D5D5255D1B7C92216193346313BCD7A1 /* RCTLayoutAnimation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTLayoutAnimation.m; sourceTree = ""; }; + D5D6340F5678DBCBB48C6854343E05D9 /* BSG_KSString.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSString.c; sourceTree = ""; }; D5DE6DCB5CB77FF2318201E0DF4BA34F /* MMKV.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MMKV.h; path = iOS/MMKV/MMKV/MMKV.h; sourceTree = ""; }; + D5E11206EEC78033A85D721E4491E54C /* BugsnagBreadcrumb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagBreadcrumb.h; sourceTree = ""; }; + D5FEF647340558BEBCEEFE81A03D6D54 /* BSG_KSFileUtils.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSFileUtils.c; sourceTree = ""; }; D600AAA914A8637D58963FF666B59CD0 /* PBEncodeItem.hpp */ = {isa = PBXFileReference; includeInIndex = 1; name = PBEncodeItem.hpp; path = Core/PBEncodeItem.hpp; sourceTree = ""; }; + D62735DFFBE766FF979BF4D8DCD2B07A /* StorageGetters.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = StorageGetters.h; path = ios/StorageGetters.h; sourceTree = ""; }; D62D9D438AA2A488B83ECB8FEC332DEF /* ProxyLockable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ProxyLockable.h; path = folly/synchronization/detail/ProxyLockable.h; sourceTree = ""; }; - D63A7A7E8EC42561D9FEB776542D5CF0 /* RCTDatePickerManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTDatePickerManager.m; sourceTree = ""; }; D63E9C6C6FF410F56AABC1FCD8ABAAA1 /* ru.lproj */ = {isa = PBXFileReference; includeInIndex = 1; name = ru.lproj; path = "Objective-C/TOCropViewController/Resources/ru.lproj"; sourceTree = ""; }; - D63EFFCA6E4A483A94CD139DAF3D3197 /* UMBarCodeScannerProviderInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMBarCodeScannerProviderInterface.h; path = UMBarCodeScannerInterface/UMBarCodeScannerProviderInterface.h; sourceTree = ""; }; D64307698B08E25A0B8E329EDF5B215D /* IPAddressException.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = IPAddressException.h; path = folly/IPAddressException.h; sourceTree = ""; }; - D64FB73E45B1EE3AA5F2B637D97FA5DF /* RNCSliderManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCSliderManager.h; path = ios/RNCSliderManager.h; sourceTree = ""; }; D650EB3036130CC0F99273D1E13EB3F2 /* RSocketClient.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RSocketClient.h; path = rsocket/RSocketClient.h; sourceTree = ""; }; - D653634F8A3BA4BB4A62E764C9B7CA32 /* RCTSwitch.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSwitch.h; sourceTree = ""; }; + D654404E415E3C2675E31F38F4EF34A0 /* EXHaptics-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "EXHaptics-prefix.pch"; sourceTree = ""; }; D65C913026B040120C8B88F361644471 /* SharedMutex.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SharedMutex.h; path = folly/SharedMutex.h; sourceTree = ""; }; - D66CDF8109FBBA67E2B56878CF69AFE9 /* RNCWebViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCWebViewManager.m; path = apple/RNCWebViewManager.m; sourceTree = ""; }; - D671D1057D25C142B595A08CECEE425F /* RNFBAnalyticsModule.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNFBAnalyticsModule.m; path = ios/RNFBAnalytics/RNFBAnalyticsModule.m; sourceTree = ""; }; - D676B1A580C787065B0D1DE458EABF5C /* NSError+BSG_SimpleConstructor.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "NSError+BSG_SimpleConstructor.m"; sourceTree = ""; }; + D66681FA13DF6C416DA9E4ADAB3D561B /* RNCWebViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCWebViewManager.m; path = apple/RNCWebViewManager.m; sourceTree = ""; }; D67AD88258D8E17AF7A1230438184D6A /* Baton.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Baton.h; path = folly/synchronization/Baton.h; sourceTree = ""; }; + D688572FBCC28D9871946C75B648AD1E /* RCTExceptionsManager.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTExceptionsManager.mm; sourceTree = ""; }; D698BF9CACF77A6EA39A01D1F7452B71 /* SDImageCachesManagerOperation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageCachesManagerOperation.m; path = SDWebImage/Private/SDImageCachesManagerOperation.m; sourceTree = ""; }; - D69EE22C879222A4C1FD3CD771BABC7F /* RCTImageBlurUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageBlurUtils.h; path = Libraries/Image/RCTImageBlurUtils.h; sourceTree = ""; }; + D6A4AE8854159190F303104E32834D14 /* SimpleLineIcons.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = SimpleLineIcons.ttf; path = Fonts/SimpleLineIcons.ttf; sourceTree = ""; }; + D6B06BB6668027965E647435F756BDE0 /* react-native-notifications-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "react-native-notifications-dummy.m"; sourceTree = ""; }; D6B8DACC6EC868535DAB42D32BABD176 /* SwappableEventBase.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SwappableEventBase.h; path = rsocket/internal/SwappableEventBase.h; sourceTree = ""; }; + D6BA98FD2CBC117C48D4B78403EDA6A7 /* RNReanimated.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RNReanimated.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; D6C5DD3FF13F6A2B8F4624FA65049297 /* bit_writer_utils.c */ = {isa = PBXFileReference; includeInIndex = 1; name = bit_writer_utils.c; path = src/utils/bit_writer_utils.c; sourceTree = ""; }; D6D20C2A57F14F1DEC06D61AB7C64CD4 /* AtomicUtil.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AtomicUtil.h; path = folly/synchronization/AtomicUtil.h; sourceTree = ""; }; D6D8D6504E5ABA47379B5C27EEA1CCC6 /* SynchronizedPtr.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SynchronizedPtr.h; path = folly/SynchronizedPtr.h; sourceTree = ""; }; D6F5F31CE1DC8AB6C91FC6B2B6B7B46C /* String-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "String-inl.h"; path = "folly/gen/String-inl.h"; sourceTree = ""; }; - D704632CB2E62CA40864DA093B702AB6 /* react-native-notifications-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "react-native-notifications-prefix.pch"; sourceTree = ""; }; - D70FB57857EFAE2D26EB78BB1B652DB9 /* RCTNativeAnimatedModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTNativeAnimatedModule.h; path = Libraries/NativeAnimation/RCTNativeAnimatedModule.h; sourceTree = ""; }; - D716DD4FC6378F8BA0A9B917F07B3743 /* QBSlomoIconView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = QBSlomoIconView.m; path = ios/QBImagePicker/QBImagePicker/QBSlomoIconView.m; sourceTree = ""; }; - D722703E17938E620687735EA8C983D9 /* RCTBorderStyle.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBorderStyle.h; sourceTree = ""; }; - D739322E3D043389E7DF466D7B076593 /* StorageIndexer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = StorageIndexer.h; path = ios/StorageIndexer.h; sourceTree = ""; }; - D7425907A788D25CB58D6971758201EA /* READebugNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = READebugNode.m; sourceTree = ""; }; D75AD1443349704117014A7737FB83C9 /* SKViewControllerDescriptor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SKViewControllerDescriptor.h; path = iOS/Plugins/FlipperKitLayoutPlugin/FlipperKitLayoutPlugin/descriptors/SKViewControllerDescriptor.h; sourceTree = ""; }; + D7687BF0A6EF86947E3471A3AEA8EEA6 /* RCTSafeAreaViewLocalData.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSafeAreaViewLocalData.m; sourceTree = ""; }; + D77D07CF2BCA6D12243CC596897FE6E6 /* BugsnagErrorReportApiClient.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagErrorReportApiClient.h; sourceTree = ""; }; + D79007C04E086C764C339CC593525690 /* BugsnagSession.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagSession.m; sourceTree = ""; }; D795FB70A5FF1D55584FD68256B28653 /* EventFDWrapper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EventFDWrapper.h; path = folly/io/async/EventFDWrapper.h; sourceTree = ""; }; - D79C9F2D77AA78CCBC29D9F14C0C204D /* EXFilePermissionModule.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXFilePermissionModule.m; path = EXFileSystem/EXFilePermissionModule.m; sourceTree = ""; }; D7AE28A75D2D7B71B61DA10E63B35FDC /* ThreadLocalDetail.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = ThreadLocalDetail.cpp; path = folly/detail/ThreadLocalDetail.cpp; sourceTree = ""; }; + D7DA89B3536F1DC491C0BE1719985DD4 /* BSG_KSBacktrace.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSBacktrace.h; sourceTree = ""; }; + D7DBEBBB702FC3ECB3E47724255E4021 /* BSGConnectivity.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSGConnectivity.h; sourceTree = ""; }; D7DCDA0186EE5E3611A03951159C5C08 /* openssl_aes_locl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = openssl_aes_locl.h; path = Core/aes/openssl/openssl_aes_locl.h; sourceTree = ""; }; + D7E9963F020D87E5B6C233BD8133A574 /* UMDeviceMotionInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMDeviceMotionInterface.h; path = UMSensorsInterface/UMDeviceMotionInterface.h; sourceTree = ""; }; D7ECFA07EAB88489517FCAFD1702D65C /* fast-dtoa.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = "fast-dtoa.cc"; path = "double-conversion/fast-dtoa.cc"; sourceTree = ""; }; D7F4289D5A7DF2DF5AB5543203244A73 /* Semaphore.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = Semaphore.cpp; path = folly/portability/Semaphore.cpp; sourceTree = ""; }; - D7F643DA9519CE1ABCB28C7304A02A6A /* RCTLinkingManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTLinkingManager.h; path = Libraries/LinkingIOS/RCTLinkingManager.h; sourceTree = ""; }; - D80BE1CEFF36FC5B2A2A5E1D5275D4FB /* EXPermissions.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXPermissions.h; path = EXPermissions/EXPermissions.h; sourceTree = ""; }; + D7FCD9058F8F1CE3755B47E903412B3D /* RCTSwitchManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSwitchManager.m; sourceTree = ""; }; D834EE573F3267BEE0E7CCB02EEA985A /* Uri.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Uri.h; path = folly/Uri.h; sourceTree = ""; }; - D83AA0BAC32FB6F9279352AB6CC68E61 /* RCTStatusBarManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTStatusBarManager.h; path = React/CoreModules/RCTStatusBarManager.h; sourceTree = ""; }; - D83DD38AB207308D8139FAD7D1B222BA /* BSG_KSLogger.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSLogger.h; sourceTree = ""; }; - D856AB5537848570AF1BB8E671AD202F /* notificationsEvents.md */ = {isa = PBXFileReference; includeInIndex = 1; name = notificationsEvents.md; path = docs/notificationsEvents.md; sourceTree = ""; }; D856F7C4A6C153A4CCB62D9682BCB6FC /* SDImageIOAnimatedCoderInternal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageIOAnimatedCoderInternal.h; path = SDWebImage/Private/SDImageIOAnimatedCoderInternal.h; sourceTree = ""; }; - D8BC2AA78AC028904E04F17D4307FB92 /* RCTImageLoader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageLoader.h; path = Libraries/Image/RCTImageLoader.h; sourceTree = ""; }; - D8DC4B537B3F8C5EF93104A387C91C75 /* RCTDevSettings.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTDevSettings.mm; sourceTree = ""; }; - D8EA47813EDC15DDA8E1327359C5BDCA /* RCTSafeAreaViewLocalData.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSafeAreaViewLocalData.m; sourceTree = ""; }; + D89C1050BD97F41EDFF2FC4C15139634 /* RCTAppearance.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTAppearance.mm; sourceTree = ""; }; + D8BBF0AF3F05628625B8716FD0F530F2 /* RCTFont.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTFont.mm; sourceTree = ""; }; + D8CE7DB2A244CC7D188DB61DE9D78432 /* EXHaptics.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = EXHaptics.release.xcconfig; sourceTree = ""; }; D8EDDB9CCAADD5BCBDAD5150F933B233 /* StreamRequester.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = StreamRequester.h; path = rsocket/statemachine/StreamRequester.h; sourceTree = ""; }; - D8F617B0528537D8E1FFA0D2DB175A48 /* RCTSurfacePresenterStub.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSurfacePresenterStub.m; sourceTree = ""; }; + D8F571CDD912D82C6C335EBA2A5AA715 /* RNJitsiMeetViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNJitsiMeetViewManager.m; path = ios/RNJitsiMeetViewManager.m; sourceTree = ""; }; D9299C179FE609553C48DDAC5354ED8F /* Assume-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "Assume-inl.h"; path = "folly/lang/Assume-inl.h"; sourceTree = ""; }; + D96667B0CB8929D70CE32E41D9594035 /* BugsnagReactNative.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = BugsnagReactNative.m; path = cocoa/BugsnagReactNative.m; sourceTree = ""; }; D9667B3D1005C483DFE4C9B9B9D8DA62 /* GULNetworkLoggerProtocol.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULNetworkLoggerProtocol.h; path = GoogleUtilities/Network/Private/GULNetworkLoggerProtocol.h; sourceTree = ""; }; - D9787096DA16ABD18BCCD258A9FB9C78 /* React.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = React.release.xcconfig; sourceTree = ""; }; - D99064BDB173558498756B3D1F2C2938 /* EXFileSystem-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "EXFileSystem-dummy.m"; sourceTree = ""; }; D991CF97F8D8407856A570EEC307D224 /* frame_enc.c */ = {isa = PBXFileReference; includeInIndex = 1; name = frame_enc.c; path = src/enc/frame_enc.c; sourceTree = ""; }; - D9B7193F174B7FE6EEBA010ADA62F9D3 /* RNPanHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNPanHandler.m; sourceTree = ""; }; + D9A200BBF13BB4915F46031A89FF6C5A /* React-jsiexecutor.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-jsiexecutor.release.xcconfig"; sourceTree = ""; }; D9BA0287D044D84023891A211A1AD730 /* FIRCLSURLSessionDownloadTask_PrivateMethods.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSURLSessionDownloadTask_PrivateMethods.h; path = Crashlytics/Crashlytics/FIRCLSURLSession/Tasks/FIRCLSURLSessionDownloadTask_PrivateMethods.h; sourceTree = ""; }; - D9D5FD2D636CD6383F462202B6FFDBE1 /* RNVectorIcons.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RNVectorIcons.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - D9EF36754BD7817A120BED4E5A46D0FE /* RCTVirtualTextShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTVirtualTextShadowView.h; sourceTree = ""; }; D9F334F2E90E3EE462FC4192AF5C03BD /* libReact-jsi.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libReact-jsi.a"; path = "libReact-jsi.a"; sourceTree = BUILT_PRODUCTS_DIR; }; - D9F6F69292C2F6F64608AA02822B5C99 /* UMGyroscopeInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMGyroscopeInterface.h; path = UMSensorsInterface/UMGyroscopeInterface.h; sourceTree = ""; }; - DA06723236037DCBF714C63760D9E71B /* RNScreens-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNScreens-prefix.pch"; sourceTree = ""; }; + D9F5DD1F449797557B1FF604DD50DE75 /* RCTWrapperViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTWrapperViewController.m; sourceTree = ""; }; + D9F83C48F14D7A211718FCC76D29623B /* RCTAppState.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTAppState.h; path = React/CoreModules/RCTAppState.h; sourceTree = ""; }; DA09D60C3C3C3D3785B8CA0A73841744 /* SDWebImagePrefetcher.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImagePrefetcher.h; path = SDWebImage/Core/SDWebImagePrefetcher.h; sourceTree = ""; }; DA1148F902A42412AFD1269913C9C7BC /* Payload.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = Payload.cpp; path = rsocket/Payload.cpp; sourceTree = ""; }; - DA397571A04A01CA58D6258D423431D8 /* RCTModalHostViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTModalHostViewController.h; sourceTree = ""; }; + DA3640CBD10933A84833803C4AF8AB2C /* UMPermissionsInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMPermissionsInterface.h; path = UMPermissionsInterface/UMPermissionsInterface.h; sourceTree = ""; }; DA398306081AC5A2ED74D71C88E5137E /* Format.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = Format.cpp; path = folly/Format.cpp; sourceTree = ""; }; + DA3FEB9D96DE8AC187E74978B37A108F /* REAValueNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REAValueNode.m; sourceTree = ""; }; + DA4031C337B6B741152A4C7C75C3C1C8 /* RCTModuloAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTModuloAnimatedNode.m; sourceTree = ""; }; DA44DECA28FC4BC69FA311437B636338 /* ChannelRequester.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ChannelRequester.h; path = rsocket/statemachine/ChannelRequester.h; sourceTree = ""; }; - DA5885B5167CF1A74D09B120F0BAB820 /* RNRootView-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNRootView-prefix.pch"; sourceTree = ""; }; + DA4C437195FEF977059CC063B17CFF6C /* react-native-notifications.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "react-native-notifications.debug.xcconfig"; sourceTree = ""; }; + DA5816048BBDA2DD04ECAD0D3E019DB0 /* RCTImagePlugins.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImagePlugins.h; path = Libraries/Image/RCTImagePlugins.h; sourceTree = ""; }; + DA5DB30147897FCB5B1AC8EA2D6D4F68 /* RCTScrollViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTScrollViewManager.m; sourceTree = ""; }; DA5EB5CF15FF8B257D7FA267ED6EBC58 /* tls1.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = tls1.h; path = ios/include/openssl/tls1.h; sourceTree = ""; }; - DA65FFD28CB295BDA17D33B6504C6891 /* RCTParserUtils.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTParserUtils.m; sourceTree = ""; }; DA676AC0927133C023DB4D3C555A52F7 /* FiberIOExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FiberIOExecutor.h; path = folly/executors/FiberIOExecutor.h; sourceTree = ""; }; DA6B347B83E2AA2D3CC69D0CB37A05C9 /* FIRLogger.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRLogger.h; path = FirebaseCore/Sources/Private/FIRLogger.h; sourceTree = ""; }; DA753AED7C14FFECBA73E9633D3E3BE3 /* FIRAnalyticsInteropListener.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAnalyticsInteropListener.h; path = Interop/Analytics/Public/FIRAnalyticsInteropListener.h; sourceTree = ""; }; - DA75404D28828B63667CCB72B68F56AB /* UMModuleRegistry.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = UMModuleRegistry.m; sourceTree = ""; }; - DA7A33C40D20F6BBF969F198E10F2AE4 /* RCTValueAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTValueAnimatedNode.h; sourceTree = ""; }; DA7B92AE6A1EFF40C35491208D58D0C4 /* ParkingLot.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ParkingLot.h; path = folly/synchronization/ParkingLot.h; sourceTree = ""; }; DA8D42A22D682BBDBA66E60052ACC8F3 /* FIRCLSRecordIdentity.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSRecordIdentity.h; path = Crashlytics/Crashlytics/Models/Record/FIRCLSRecordIdentity.h; sourceTree = ""; }; - DA8E28304FBC90A93EA01E8D75BBB1F9 /* UMReactNativeEventEmitter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = UMReactNativeEventEmitter.m; sourceTree = ""; }; DA93C93DA4FF3DC11AB32E8DD4138DC3 /* glog-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "glog-prefix.pch"; sourceTree = ""; }; - DA9430DEDF6AADB876CE4B5372DD1623 /* RNCAsyncStorage.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RNCAsyncStorage.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - DA980E04B659782E208CD6580A420932 /* RCTBaseTextViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTBaseTextViewManager.m; sourceTree = ""; }; - DACBFB8D3758D83903550F2AD17B14EE /* RNSScreenContainer.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNSScreenContainer.m; path = ios/RNSScreenContainer.m; sourceTree = ""; }; + DB0288B59401C2B79E8784E8508EBD53 /* REAAllTransitions.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REAAllTransitions.m; sourceTree = ""; }; DB07E785B2D2E4F11430656ABA77EE83 /* Combine-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "Combine-inl.h"; path = "folly/gen/Combine-inl.h"; sourceTree = ""; }; - DB204485D17219DFED5207BE90EC1E30 /* React-RCTNetwork-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-RCTNetwork-dummy.m"; sourceTree = ""; }; - DB24569B7695A72E1A527E2E561D26D2 /* react-native-document-picker.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "react-native-document-picker.release.xcconfig"; sourceTree = ""; }; + DB10900E5E640265443F3FB1835E6A6D /* installation.md */ = {isa = PBXFileReference; includeInIndex = 1; name = installation.md; path = docs/installation.md; sourceTree = ""; }; + DB1C7D642895B4ADFC79F4C672E494DC /* UMReactNativeAdapter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = UMReactNativeAdapter.m; sourceTree = ""; }; + DB20B30BD0D0DC13596A495BE4DFD2D1 /* ARTPattern.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = ARTPattern.m; sourceTree = ""; }; DB455938C1F1BD9D75A2C54D457D9A20 /* TimeoutQueue.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = TimeoutQueue.cpp; path = folly/TimeoutQueue.cpp; sourceTree = ""; }; DB4A9736D07811E63B500AF8C0486689 /* lossless_neon.c */ = {isa = PBXFileReference; includeInIndex = 1; name = lossless_neon.c; path = src/dsp/lossless_neon.c; sourceTree = ""; }; + DB5CAB2057435456429FA3445FD1EAAC /* BSG_KSCrashState.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashState.h; sourceTree = ""; }; DB6357FD85B8607CF19844E03CF551B6 /* CocoaAsyncSocket.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = CocoaAsyncSocket.debug.xcconfig; sourceTree = ""; }; - DB6683D56729E793030C9787ED182DD5 /* BSG_KSCrashContext.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashContext.h; sourceTree = ""; }; - DBA8760FE4562DBA8844F434441ABE4F /* RNCMaskedView-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNCMaskedView-dummy.m"; sourceTree = ""; }; - DBB579345D4A3A0F6FB37AA3EF5B4CB7 /* RCTDiffClampAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTDiffClampAnimatedNode.m; sourceTree = ""; }; - DBB72BB168A7E02A43F77D880EC57FEB /* RNCommandsHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCommandsHandler.h; path = RNNotifications/RNCommandsHandler.h; sourceTree = ""; }; - DBCB6C3D8A29BA1B09704D4B302D1E3E /* EXAudioSessionManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXAudioSessionManager.m; path = EXAV/EXAudioSessionManager.m; sourceTree = ""; }; - DBDD82755E1C0BB3D4F00202E81D1858 /* RCTDeviceInfo.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTDeviceInfo.mm; sourceTree = ""; }; - DBFACC49F2EBD1BC517C49872975356A /* RCTUITextView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTUITextView.m; sourceTree = ""; }; - DC0530B18D643FC0A01CC5B69C62B0FE /* BugsnagReactNative-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "BugsnagReactNative-prefix.pch"; sourceTree = ""; }; - DC098C980C2993D32FC9AFD5D35050A2 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; - DC115E45AE9B773DFA80950444513408 /* REATransitionManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REATransitionManager.h; sourceTree = ""; }; - DC18B65FA697E00B9EF9F7CD384F632B /* RCTDefines.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTDefines.h; sourceTree = ""; }; + DBAA213439DB4A2F820FC256FD8B83D9 /* RCTNetworkPlugins.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTNetworkPlugins.h; path = Libraries/Network/RCTNetworkPlugins.h; sourceTree = ""; }; + DBC1D0C156C5E9800D9D75DC67352895 /* UMImageLoaderInterface.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = UMImageLoaderInterface.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + DBEE05277B6BD752321FDD91FB2E36B7 /* RNFBApp-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNFBApp-dummy.m"; sourceTree = ""; }; + DBFA901B9E9443A2248E5A695AF863DE /* RNCommandsHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCommandsHandler.m; path = RNNotifications/RNCommandsHandler.m; sourceTree = ""; }; + DBFB294D09E02F1A9071CDAF06E138EF /* React-jsiexecutor-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-jsiexecutor-dummy.m"; sourceTree = ""; }; + DC18A7426A7EA5BFFBABFECA298640C9 /* react-native-slider-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "react-native-slider-prefix.pch"; sourceTree = ""; }; DC1BEF7BCA2DF8F2635C027CF790B82A /* MMKVCore-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "MMKVCore-prefix.pch"; sourceTree = ""; }; DC1EE83752101D56B4706A9D6E02575F /* DelayedDestructionBase.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DelayedDestructionBase.h; path = folly/io/async/DelayedDestructionBase.h; sourceTree = ""; }; DC1FEDF4CD5DC993AD1D4B0BE98275CF /* ClockGettimeWrappers.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ClockGettimeWrappers.h; path = folly/ClockGettimeWrappers.h; sourceTree = ""; }; + DC2C731D4EE491B39B1F3F672873DB23 /* RCTKeyCommandsManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCTKeyCommandsManager.m; path = ios/KeyCommands/RCTKeyCommandsManager.m; sourceTree = ""; }; DC33E30D616C3CA726C168E8CAAA5333 /* ConnectionContextStore.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ConnectionContextStore.h; path = xplat/Flipper/ConnectionContextStore.h; sourceTree = ""; }; - DC3B58AA606717C0FA45665D9976F685 /* BSG_KSCrashReportStore.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashReportStore.h; sourceTree = ""; }; DC6AEC8EF1DF26E4985963D7A898F3CF /* SpookyHashV1.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = SpookyHashV1.cpp; path = folly/hash/SpookyHashV1.cpp; sourceTree = ""; }; - DC6AF0419BC768638243CD0F9EB38875 /* FBLazyVector.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = FBLazyVector.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - DC74CADD05342A7985DBEA1B0FBB5E10 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; DC789D5F1A30C773EE83B38BF1D894B9 /* AsyncPipe.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AsyncPipe.h; path = folly/io/async/AsyncPipe.h; sourceTree = ""; }; - DC804774950FB558F15D16C53E14A2E3 /* NSTextStorage+FontScaling.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "NSTextStorage+FontScaling.h"; sourceTree = ""; }; DC84A14968ADD20000EC197FA05236A7 /* UnboundedQueue.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UnboundedQueue.h; path = folly/concurrency/UnboundedQueue.h; sourceTree = ""; }; - DCA1C7C9B7A061A8863BF690D3EB923E /* RCTUIManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTUIManager.m; sourceTree = ""; }; - DCBB4DB2472B85F4A8405C3E47552D0C /* EXSessionDownloadTaskDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = EXSessionDownloadTaskDelegate.h; sourceTree = ""; }; + DC9D25E60EE94058758E2D3CD7E90614 /* UMAppLoader.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMAppLoader.release.xcconfig; sourceTree = ""; }; + DCA5F62E40583315EED8D443500CD6B1 /* EXLocalAuthentication-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "EXLocalAuthentication-dummy.m"; sourceTree = ""; }; DCC0177033322577FE17C0A5DB7D6D70 /* FIRCLSURLSessionDataTask_PrivateMethods.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSURLSessionDataTask_PrivateMethods.h; path = Crashlytics/Crashlytics/FIRCLSURLSession/Tasks/FIRCLSURLSessionDataTask_PrivateMethods.h; sourceTree = ""; }; + DCC569001FB6B2E5F2E4A1B3102FC676 /* UMUtilitiesInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMUtilitiesInterface.h; sourceTree = ""; }; + DCCE06B14E1B2CF20E94776F50F648CD /* RNJitsiMeetViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNJitsiMeetViewManager.h; path = ios/RNJitsiMeetViewManager.h; sourceTree = ""; }; DCD30613133E75627E8E07B7B22F86AD /* FBLPromise+Any.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FBLPromise+Any.h"; path = "Sources/FBLPromises/include/FBLPromise+Any.h"; sourceTree = ""; }; DCF3267DF92F2D0C054BF37F2705566C /* F14Table.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = F14Table.cpp; path = folly/container/detail/F14Table.cpp; sourceTree = ""; }; - DCF75E474D3258E4CED674876666D001 /* RNConfigReader-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNConfigReader-dummy.m"; sourceTree = ""; }; - DD0D96E6D730314AE7C8034E6641B98D /* RCTSegmentedControl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSegmentedControl.h; sourceTree = ""; }; DD116E66A905236B827A7D32934DACBC /* EDFThreadPoolExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EDFThreadPoolExecutor.h; path = folly/executors/EDFThreadPoolExecutor.h; sourceTree = ""; }; + DD132958B5811CDA35EB0BF375186534 /* 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; }; DD224B32342883A8147E2B54F6650F2B /* SDImageFrame.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageFrame.m; path = SDWebImage/Core/SDImageFrame.m; sourceTree = ""; }; - DD4057B7D33DB6245E1FF3A0A73BDFA5 /* IDStore.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = IDStore.h; path = ios/IDStore.h; sourceTree = ""; }; + DD4B0FD90EC53F24ED9D645DE9F28329 /* RNFBRCTEventEmitter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNFBRCTEventEmitter.m; path = ios/RNFBApp/RNFBRCTEventEmitter.m; sourceTree = ""; }; DD515B839535C35E78D1654A5B757219 /* PThread.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PThread.h; path = folly/portability/PThread.h; sourceTree = ""; }; DD54C7980EC61ED8A793FD357761AA2B /* File-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "File-inl.h"; path = "folly/gen/File-inl.h"; sourceTree = ""; }; - DD65F3DED5FD0B14E2D6CFAA61CFC479 /* RCTTouchEvent.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTTouchEvent.m; sourceTree = ""; }; - DD71F6A9E0EC82BE4DD83A952587DFD8 /* EXLocalAuthentication.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXLocalAuthentication.m; path = EXLocalAuthentication/EXLocalAuthentication.m; sourceTree = ""; }; + DD623FD80DE9D923D9D24D2B198EB10F /* RCTRefreshControlManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTRefreshControlManager.m; sourceTree = ""; }; DD727325FC40AC53D0E080A5E41E55E9 /* GoogleDataTransport.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GoogleDataTransport.h; path = GoogleDataTransport/GDTCORLibrary/Public/GoogleDataTransport.h; sourceTree = ""; }; - DD869F79EA51E95B0B8C6E7DCBF73D15 /* FFFastImageSource.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FFFastImageSource.m; path = ios/FastImage/FFFastImageSource.m; sourceTree = ""; }; - DDAF9CAC69A201E7DEFDA5C32B1AA175 /* UMAppLifecycleListener.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMAppLifecycleListener.h; sourceTree = ""; }; + DD7E01B54C87575EF6639192448A874C /* EXImageLoader-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "EXImageLoader-dummy.m"; sourceTree = ""; }; + DD8633B5B94F50472AEC500763AD1E55 /* RCTConvert+ART.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "RCTConvert+ART.h"; path = "ios/RCTConvert+ART.h"; sourceTree = ""; }; DDB5D7CD832670302786387AB4BC9336 /* SSLSessionImpl.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = SSLSessionImpl.cpp; path = folly/ssl/detail/SSLSessionImpl.cpp; sourceTree = ""; }; - DDBA323F70092B9A5A7C3702A096E6F6 /* Color+Interpolation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Color+Interpolation.h"; sourceTree = ""; }; DDC2DC3D0FB74A016AA36240BFF6D984 /* FIRComponent.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRComponent.h; path = FirebaseCore/Sources/Private/FIRComponent.h; sourceTree = ""; }; - DDC716AC6C440336F5C3AE88DC61EB85 /* RCTScrollContentViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTScrollContentViewManager.m; sourceTree = ""; }; - DDC98A98CB90A4FFF2DE3CC1807092FA /* RCTAnimationPlugins.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTAnimationPlugins.h; path = Libraries/NativeAnimation/RCTAnimationPlugins.h; sourceTree = ""; }; DDD019A7C90135A08ADDC1ECA25C3DEE /* YGLayout.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YGLayout.h; path = YogaKit/Source/YGLayout.h; sourceTree = ""; }; - DDE11703FBCF79D22293160A2C11C71D /* RNCSafeAreaProvider.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCSafeAreaProvider.h; path = ios/SafeAreaView/RNCSafeAreaProvider.h; sourceTree = ""; }; - DDE577EF29EBB9F6E2DC8FBF59646752 /* EXConstants.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXConstants.h; path = EXConstants/EXConstants.h; sourceTree = ""; }; - DDF74F15CBA15B1E87802F3C80B2BE1A /* ARTShapeManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = ARTShapeManager.h; sourceTree = ""; }; - DE0F720FB17AED60FC53C4F8F4375EA5 /* UMFileSystemInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMFileSystemInterface.h; path = UMFileSystemInterface/UMFileSystemInterface.h; sourceTree = ""; }; - DE2EECAC664F36FA7E21CB3C5AABB48E /* react-native-cookies-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "react-native-cookies-dummy.m"; sourceTree = ""; }; - DE3F2300C171A649D6C5347D18C8084E /* BugsnagSessionFileStore.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagSessionFileStore.m; sourceTree = ""; }; - DE4C3B0422754166A757BAE200DBE184 /* UMUtilities.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = UMUtilities.m; path = UMCore/UMUtilities.m; sourceTree = ""; }; + DE1D858531EAACE24FF3DCF14A9F5214 /* RCTErrorCustomizer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTErrorCustomizer.h; sourceTree = ""; }; + DE61113DD804EDFA6D3D28A7237D70E6 /* React-jsi.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-jsi.release.xcconfig"; sourceTree = ""; }; DE747354C067B47CF746F9701F400F7A /* Access.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Access.h; path = folly/container/Access.h; sourceTree = ""; }; DE7DF1EF7AC5FF2323FCE17BCD757D5C /* FIROptionsInternal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIROptionsInternal.h; path = FirebaseCore/Sources/Private/FIROptionsInternal.h; sourceTree = ""; }; - DE862D4983DE78BB3F8A67061C29E078 /* Orientation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Orientation.h; path = iOS/RCTOrientation/Orientation.h; sourceTree = ""; }; DE8D6BF68006D1D9BE7E063B4872D84B /* FLEXNetworkTransaction.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FLEXNetworkTransaction.m; path = iOS/Plugins/FlipperKitNetworkPlugin/SKIOSNetworkPlugin/FLEXNetworkLib/FLEXNetworkTransaction.m; sourceTree = ""; }; - DEC3505CDC6064515E84CC0C8BA7F28F /* RNCSafeAreaViewMode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCSafeAreaViewMode.m; path = ios/SafeAreaView/RNCSafeAreaViewMode.m; sourceTree = ""; }; + DEAA8990BF96D0925C82AC3D05344E8D /* RCTMaskedViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTMaskedViewManager.h; sourceTree = ""; }; + DECBFF6510CCF517ACEB329B384355B9 /* react-native-orientation-locker-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "react-native-orientation-locker-prefix.pch"; sourceTree = ""; }; + DED5163C39015AF7E5E85AE9AD7F0245 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; + DED8F9B5545FD4B78A17A97F4F8FE535 /* 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; }; DED93BDAF48496E43C78B2675D2CCB72 /* Padded.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Padded.h; path = folly/Padded.h; sourceTree = ""; }; + DEE6721A0D2ADFAC5D36D6CCD0D3490A /* RCTModalHostViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTModalHostViewManager.m; sourceTree = ""; }; DEE9AA9F55B3C2237B0A1C5B7BB72374 /* FIRInstallationsIIDTokenStore.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstallationsIIDTokenStore.h; path = FirebaseInstallations/Source/Library/IIDMigration/FIRInstallationsIIDTokenStore.h; sourceTree = ""; }; - DF279B7B525E04033CBDC3488570B1A4 /* RCTBlobManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTBlobManager.h; path = Libraries/Blob/RCTBlobManager.h; sourceTree = ""; }; - DF2A0F63013D4687C700B4CD23A80AF7 /* threadsafe.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = threadsafe.h; sourceTree = ""; }; - DF32A7BE67DD8929CB180EB9115D7E79 /* REATransitionAnimation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REATransitionAnimation.m; sourceTree = ""; }; - DF37C491FCA7E98BCF5661AE7BA1AA8F /* ReactNativeKeyboardTrackingView.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = ReactNativeKeyboardTrackingView.release.xcconfig; sourceTree = ""; }; - DF681188117E7118975A20BE91DB9C2E /* UMImageLoaderInterface.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMImageLoaderInterface.debug.xcconfig; sourceTree = ""; }; + DEEAEA86A5264367C48194D42559ED39 /* RNImageCropPicker.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNImageCropPicker.release.xcconfig; sourceTree = ""; }; + DEF328ABA4CF8E6FACADFA6FB5153C82 /* UMUserNotificationCenterProxyInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMUserNotificationCenterProxyInterface.h; path = UMPermissionsInterface/UMUserNotificationCenterProxyInterface.h; sourceTree = ""; }; + DF1631A94B242648EF9339FD80D13CB2 /* RNLocalize-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNLocalize-prefix.pch"; sourceTree = ""; }; + DF1FF13E6E8D3CBF2EAD96AEBE0CD305 /* RCTAssert.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTAssert.h; sourceTree = ""; }; + DF25171794B0D2F410EADE1EDA4EB230 /* RCTModuleData.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTModuleData.mm; sourceTree = ""; }; + DF3F8D40749CC44E4B77448B7CA36988 /* RNNotifications.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNNotifications.m; path = RNNotifications/RNNotifications.m; sourceTree = ""; }; + DF5DF2E0A88ED035A01CF8D763EEA4A4 /* RCTWeakProxy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTWeakProxy.m; sourceTree = ""; }; + DF5FBCE781A6B4FF035B948D86FFB703 /* RCTTextShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTTextShadowView.m; sourceTree = ""; }; DF6C69F95084E61522E8A0621E251EEE /* VirtualExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = VirtualExecutor.h; path = folly/VirtualExecutor.h; sourceTree = ""; }; - DF83F0AA289411C2F3DAE7F3F7E075EA /* EXSessionDownloadTaskDelegate.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = EXSessionDownloadTaskDelegate.m; sourceTree = ""; }; + DF6F7D50EDE38A3CC3865465EDE7ECE1 /* KeyCommands-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "KeyCommands-dummy.m"; sourceTree = ""; }; + DF72753EB246A57B1E4ABCDC3156DEAE /* FFFastImageViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FFFastImageViewManager.m; path = ios/FastImage/FFFastImageViewManager.m; sourceTree = ""; }; + DF84A5AECBCCAD03CEFF81580D77F6A4 /* RCTAppearance.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTAppearance.h; path = React/CoreModules/RCTAppearance.h; sourceTree = ""; }; + DF8703A216CC217E7205601288CB47F1 /* RCTImageView.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTImageView.mm; sourceTree = ""; }; DFAD9AF325DDBD47E912B1050D1E9916 /* FIRCLSMultipartMimeStreamEncoder.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCLSMultipartMimeStreamEncoder.m; path = Crashlytics/Shared/FIRCLSNetworking/FIRCLSMultipartMimeStreamEncoder.m; sourceTree = ""; }; - DFB02A2A091BEC65DFC9E8B38C00DCA8 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; - DFB6CFCC8048A6DDC465ECAD7591C5BD /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; DFBFBB790A83F6914808B3DA1CA67F5F /* FIRCoreDiagnosticsConnector.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCoreDiagnosticsConnector.h; path = FirebaseCore/Sources/Private/FIRCoreDiagnosticsConnector.h; sourceTree = ""; }; E00BE2A3146698E81A8F9D00E8F93A6C /* libFlipper-Glog.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libFlipper-Glog.a"; path = "libFlipper-Glog.a"; sourceTree = BUILT_PRODUCTS_DIR; }; E018D94A11FCCA293ADC877A2DAF7B4E /* FIRCLSReport_Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSReport_Private.h; path = Crashlytics/Crashlytics/Models/FIRCLSReport_Private.h; sourceTree = ""; }; E018F4831128EB129FE2410E15D941C2 /* demangle.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = demangle.cc; path = src/demangle.cc; sourceTree = ""; }; E020602C5F0DC325C4A99272BE65F6FA /* lossless_enc_mips32.c */ = {isa = PBXFileReference; includeInIndex = 1; name = lossless_enc_mips32.c; path = src/dsp/lossless_enc_mips32.c; sourceTree = ""; }; - E026F0C7B34CD06C6AFF8206FED40798 /* BugsnagMetaData.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagMetaData.m; sourceTree = ""; }; + E028BE7E6BBB9A5B50393231C89D4CA5 /* QBVideoIconView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = QBVideoIconView.h; path = ios/QBImagePicker/QBImagePicker/QBVideoIconView.h; sourceTree = ""; }; + E032B7D27DBC2C30222D584A1041D3E4 /* RNReanimated.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNReanimated.release.xcconfig; sourceTree = ""; }; E03EA39FB5B33F23D3D938466661DD67 /* CallOnce.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CallOnce.h; path = folly/synchronization/CallOnce.h; sourceTree = ""; }; - E045995218388251BBAB8A673DAC95B5 /* RCTSliderManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSliderManager.h; sourceTree = ""; }; - E05361AD140D4C433AC4E1646853CEAE /* RCTAutoInsetsProtocol.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTAutoInsetsProtocol.h; sourceTree = ""; }; - E0579A2778DF7E58097C9B4C0F4F2F5B /* REAValueNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REAValueNode.h; sourceTree = ""; }; E05FCFBEC97296860E5891BC985B8BE9 /* StreamResponder.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = StreamResponder.cpp; path = rsocket/statemachine/StreamResponder.cpp; sourceTree = ""; }; + E065D4B6D3A746EDC24DD6F1DC704B5F /* RNSScreenStack.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNSScreenStack.h; path = ios/RNSScreenStack.h; sourceTree = ""; }; + E06FBE1251848294B4E7797EA7775E51 /* RNConfigReader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNConfigReader.h; path = ios/RNConfigReader.h; sourceTree = ""; }; E070D082F0496D1A1BB636C4F528F39D /* symbolize.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = symbolize.cc; path = src/symbolize.cc; sourceTree = ""; }; E07970FD2F62E7A4DE75E5F6F791E13E /* FIRCLSdSYM.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCLSdSYM.m; path = Crashlytics/Shared/FIRCLSMachO/FIRCLSdSYM.m; sourceTree = ""; }; E082D8A9AB450A53BAE6B3460C3BA9E6 /* MMKV_OSX.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = MMKV_OSX.cpp; path = Core/MMKV_OSX.cpp; sourceTree = ""; }; E08B2539D097083E48F2C410B5C60D66 /* Codel.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = Codel.cpp; path = folly/executors/Codel.cpp; sourceTree = ""; }; E08EE662B7023E41FAC7EAB9F7F59ACB /* Cursor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Cursor.h; path = folly/io/Cursor.h; sourceTree = ""; }; E08F1CE1FFE3CCBAD65DC329839FFEC5 /* GlobalThreadPoolList.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GlobalThreadPoolList.h; path = folly/executors/GlobalThreadPoolList.h; sourceTree = ""; }; - E09E7AB54847BAC9FC2CC0A73B138BFD /* React-jsiexecutor-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-jsiexecutor-dummy.m"; sourceTree = ""; }; - E0A24C295DB49B8CD053F2B8E5BEC389 /* REAModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = REAModule.h; path = ios/REAModule.h; sourceTree = ""; }; - E0B55D0C673CD5BE3E824D41A58D1DC7 /* RNFBMeta.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNFBMeta.h; path = ios/RNFBApp/RNFBMeta.h; sourceTree = ""; }; E0B603F54009DAEF6C3BAAE621E5F180 /* libMMKVCore.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libMMKVCore.a; path = libMMKVCore.a; sourceTree = BUILT_PRODUCTS_DIR; }; + E0B9144275C10AF7D0A6A184B9D5ACEB /* RCTTypeSafety-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RCTTypeSafety-dummy.m"; sourceTree = ""; }; E0CC282BA8FAFAC2D890B1BFED15A52A /* SysMembarrier.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = SysMembarrier.cpp; path = folly/portability/SysMembarrier.cpp; sourceTree = ""; }; E0D5E4867C3D79D8F51D5A0B30092786 /* symhacks.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = symhacks.h; path = ios/include/openssl/symhacks.h; sourceTree = ""; }; E0DB6C975FCAE729987873315AF48984 /* Flipper-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Flipper-prefix.pch"; sourceTree = ""; }; - E0F35E91C5D29DA6E86BDC3BF264F3F7 /* BugsnagReactNative.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = BugsnagReactNative.release.xcconfig; sourceTree = ""; }; + E0DEDA104BFC984FA4D38BAB8CAB3327 /* react-native-mmkv-storage.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "react-native-mmkv-storage.release.xcconfig"; sourceTree = ""; }; E0FE6533198104C97DB047DD5CD8AC67 /* libRNDeviceInfo.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libRNDeviceInfo.a; path = libRNDeviceInfo.a; sourceTree = BUILT_PRODUCTS_DIR; }; - E115A5CC8349D2EBB53C173598E174B5 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; E11D056E6F92331F74B6EAF8D0677E9C /* GULKeychainUtils.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GULKeychainUtils.m; path = GoogleUtilities/Environment/SecureStorage/GULKeychainUtils.m; sourceTree = ""; }; E1318B86C820CB00018EAD32A3F07E4D /* Fcntl.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = Fcntl.cpp; path = folly/portability/Fcntl.cpp; sourceTree = ""; }; - E13DBC7AA929E656D00405709E528DD1 /* ReactNativeKeyboardInput-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "ReactNativeKeyboardInput-prefix.pch"; sourceTree = ""; }; + E1373DD4F8357B73B5459460092A0AFC /* BSG_KSCrashSentry_NSException.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BSG_KSCrashSentry_NSException.m; sourceTree = ""; }; + E13F24303365E7FC17853DD4FF7A66F9 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; E13FF4CC3674095510726A1EFD8DEA85 /* ts.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ts.h; path = ios/include/openssl/ts.h; sourceTree = ""; }; E140D805FEFE3701EC7E12BE2ABF66D0 /* Unistd.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = Unistd.cpp; path = folly/portability/Unistd.cpp; sourceTree = ""; }; + E14E0BC1417E99F96262AFDEAC811761 /* RNImageCropPicker.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNImageCropPicker.debug.xcconfig; sourceTree = ""; }; E154263C03A8FE7B11DB3AE33D33F99B /* MMKV-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "MMKV-dummy.m"; sourceTree = ""; }; E16514CEAEAB9670F41BC49A1B951351 /* TcpConnectionFactory.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TcpConnectionFactory.h; path = rsocket/transports/tcp/TcpConnectionFactory.h; sourceTree = ""; }; - E17E4005B34544F5D2486E45C83B7484 /* RCTBaseTextViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBaseTextViewManager.h; sourceTree = ""; }; - E196E89A6F2C58097F0281E21C226143 /* EXImageLoader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXImageLoader.h; path = EXImageLoader/EXImageLoader.h; sourceTree = ""; }; + E166D873D615A5C11E0FEDB353AFA5CF /* RCTLinkingManager.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTLinkingManager.mm; sourceTree = ""; }; + E1721A9A79CAF1077FAA116A2166F6CC /* RCTWebSocketExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTWebSocketExecutor.h; path = React/CoreModules/RCTWebSocketExecutor.h; sourceTree = ""; }; + E1881A425E65AA4CF092A8BA4C4386A4 /* ReactNativeART-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "ReactNativeART-prefix.pch"; sourceTree = ""; }; E19D89B2C2E4701FFDACB5E4D7ED6190 /* RSocketServiceHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RSocketServiceHandler.h; path = rsocket/RSocketServiceHandler.h; sourceTree = ""; }; E19E13892425E415DA3AA03CE7B08E14 /* libMMKV.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = libMMKV.mm; path = iOS/MMKV/MMKV/libMMKV.mm; sourceTree = ""; }; E1A4C6AA6995B678030A535C64E2493C /* TOCropViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TOCropViewController.h; path = "Objective-C/TOCropViewController/TOCropViewController.h"; sourceTree = ""; }; + E1FCFA12FF42D20698626A42211A7FA5 /* react-native-mmkv-storage.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "react-native-mmkv-storage.debug.xcconfig"; sourceTree = ""; }; E2045932DC3A2534283607C5D26E6E95 /* RSocketServiceHandler.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = RSocketServiceHandler.cpp; path = rsocket/RSocketServiceHandler.cpp; sourceTree = ""; }; E204630DEFB7ADAB35464A0408D565E9 /* SDImageCoder.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageCoder.m; path = SDWebImage/Core/SDImageCoder.m; sourceTree = ""; }; E20A9F4DD32B413C18EF6F391F937A82 /* BasicTransportCertificate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = BasicTransportCertificate.h; path = folly/io/async/ssl/BasicTransportCertificate.h; sourceTree = ""; }; + E242534B02290665ED6143AF9ACE61C1 /* EXFileSystemAssetLibraryHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXFileSystemAssetLibraryHandler.h; path = EXFileSystem/EXFileSystemAssetLibraryHandler.h; sourceTree = ""; }; E24640D2265596A85A0FAC291D277509 /* AsymmetricMemoryBarrier.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = AsymmetricMemoryBarrier.cpp; path = folly/synchronization/AsymmetricMemoryBarrier.cpp; sourceTree = ""; }; + E2470D9217B50C94F245648D7D860C2F /* RCTPlatform.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTPlatform.h; path = React/CoreModules/RCTPlatform.h; sourceTree = ""; }; + E260122216BFD10EF3573B07DE80636D /* RCTAnimationType.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTAnimationType.h; sourceTree = ""; }; E26B13FE8996444B3DCDD20D59675527 /* FIRCLSSettings.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSSettings.h; path = Crashlytics/Crashlytics/Models/FIRCLSSettings.h; sourceTree = ""; }; - E28511542FA77E96F0D9B2321580BAA4 /* EXVideoThumbnails.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = EXVideoThumbnails.release.xcconfig; sourceTree = ""; }; + E2880FB15A337679AF1C03C6AF64651A /* RCTRedBox.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTRedBox.h; path = React/CoreModules/RCTRedBox.h; sourceTree = ""; }; E28D6E1DFC61215A65072B6F3AC8E199 /* ScopedLock.hpp */ = {isa = PBXFileReference; includeInIndex = 1; name = ScopedLock.hpp; path = Core/ScopedLock.hpp; sourceTree = ""; }; E294D6D9C542C4DE40EC4D325A5796B0 /* FLEXNetworkRecorder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FLEXNetworkRecorder.h; path = iOS/Plugins/FlipperKitNetworkPlugin/SKIOSNetworkPlugin/FLEXNetworkLib/FLEXNetworkRecorder.h; sourceTree = ""; }; - E29B4CE694486857A5640F64EA98DFE4 /* RNImageCropPicker.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNImageCropPicker.debug.xcconfig; sourceTree = ""; }; - E29E75E97AD70F3044C8F84CAE603806 /* RNNotificationEventHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNNotificationEventHandler.h; path = RNNotifications/RNNotificationEventHandler.h; sourceTree = ""; }; - E2B3AE70F69C20072057036358ED5FEC /* RCTMultiplicationAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTMultiplicationAnimatedNode.m; sourceTree = ""; }; + E299CDD0455B02CE697438DC4E31884B /* REATransition.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REATransition.h; sourceTree = ""; }; E2B63D462DB7F827C4B11FD51E4F8E2D /* libFirebaseCore.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libFirebaseCore.a; path = libFirebaseCore.a; sourceTree = BUILT_PRODUCTS_DIR; }; - E2F1266F17E68F3DB63FFF9582C74F85 /* React-RCTNetwork-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-RCTNetwork-prefix.pch"; sourceTree = ""; }; + E2B7B43AB4BF29EE9922384F722072EC /* RNSScreenContainer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNSScreenContainer.h; path = ios/RNSScreenContainer.h; sourceTree = ""; }; + E2BC5554A4B30B3596021E95E913B75B /* RCTPlatform.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTPlatform.mm; sourceTree = ""; }; + E2DB8157BC7DC2611A33805FA540DF3C /* BugsnagReactNative.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = BugsnagReactNative.debug.xcconfig; sourceTree = ""; }; + E2E9DD9B3DC7A406C1CA8D7ABD12D7AE /* RCTShadowView+Internal.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RCTShadowView+Internal.m"; sourceTree = ""; }; E305F3D0C50ECAE54FD2181D52E3A4AD /* endian_inl_utils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = endian_inl_utils.h; path = src/utils/endian_inl_utils.h; sourceTree = ""; }; - E311B9BC095F8526FABFC27783015FC1 /* RCTTextView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTextView.h; sourceTree = ""; }; - E317496A8DC074097B8C249AB5D55E7E /* RCTSwitchManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSwitchManager.m; sourceTree = ""; }; + E31061B03FBD59815DA1845FCA055D2D /* React-Core-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-Core-prefix.pch"; sourceTree = ""; }; E31878A25103232AA93630DC9E31BF04 /* Pods-RocketChatRN-resources.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-RocketChatRN-resources.sh"; sourceTree = ""; }; + E319824B0FA08CCFE69EFDA335EA4C45 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; + E31C7E7BE8DE6DB1A7A8A9D7B7E956F6 /* RCTUIManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTUIManager.m; sourceTree = ""; }; E32056F313D3A13B7028BEA5BD8D08A5 /* MicroSpinLock.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MicroSpinLock.h; path = folly/MicroSpinLock.h; sourceTree = ""; }; - E326041EF45B8F23447C77A17DB3EDDA /* UMViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMViewManager.h; path = UMCore/UMViewManager.h; sourceTree = ""; }; E32AC0D57736E296934D972402C781D0 /* SDAnimatedImagePlayer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDAnimatedImagePlayer.h; path = SDWebImage/Core/SDAnimatedImagePlayer.h; sourceTree = ""; }; E3335E54693BED0B26BD4342020C6645 /* vp8l_dec.c */ = {isa = PBXFileReference; includeInIndex = 1; name = vp8l_dec.c; path = src/dec/vp8l_dec.c; sourceTree = ""; }; - E3390F3DA0A36E2604CB7BFA08819ED1 /* CompactValue.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CompactValue.h; path = yoga/CompactValue.h; sourceTree = ""; }; E3468E6DF40BE224FB7B5B36C3B42052 /* RequestResponseRequester.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = RequestResponseRequester.cpp; path = rsocket/statemachine/RequestResponseRequester.cpp; sourceTree = ""; }; E34D5BF38F34020D2C96769650FC5AD0 /* FlowableDoOperator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FlowableDoOperator.h; path = yarpl/flowable/FlowableDoOperator.h; sourceTree = ""; }; E34ED41386B129A0DE2B4C49679D6F57 /* FBLPromise+Testing.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FBLPromise+Testing.h"; path = "Sources/FBLPromises/include/FBLPromise+Testing.h"; sourceTree = ""; }; + E35CE8EFF7AF2E155F9243DADCB3B0B9 /* RootView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RootView.m; path = ios/RootView.m; sourceTree = ""; }; + E3671C9B5261AD74D631893458238BD0 /* 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; }; E36F12B577D3551BD3858AB7A2A3A2F6 /* Base.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Base.h; path = folly/gen/Base.h; sourceTree = ""; }; - E388E2007F476ED07686865426FB85F5 /* SharedProxyCxxModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = SharedProxyCxxModule.h; sourceTree = ""; }; - E3991DCF182C3796F4FF25A3DBA63A13 /* RCTClipboard.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTClipboard.h; path = React/CoreModules/RCTClipboard.h; sourceTree = ""; }; + E37406EA40BF7C3D3F429CC3CE4FDB12 /* ReactNativeKeyboardInput.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = ReactNativeKeyboardInput.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + E39EB946FB3EF2E4FE9476750C85F936 /* RCTImageStoreManager.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTImageStoreManager.mm; sourceTree = ""; }; E3A91DB8523107DCA6BBA6C430DA44F1 /* GULNSData+zlib.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "GULNSData+zlib.h"; path = "GoogleUtilities/NSData+zlib/Public/GULNSData+zlib.h"; sourceTree = ""; }; E3B1244BFB7C2C546566B5E55BBC1699 /* OpenSSLThreading.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = OpenSSLThreading.h; path = folly/ssl/detail/OpenSSLThreading.h; sourceTree = ""; }; - E3B49A93FCEE5A690E853AB1D1E4554F /* RNRootViewGestureRecognizer.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNRootViewGestureRecognizer.m; path = ios/RNRootViewGestureRecognizer.m; sourceTree = ""; }; - E3B79DE2369078DE3FAD967AEE3A37B5 /* RCTTVNavigationEventEmitter.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTTVNavigationEventEmitter.mm; sourceTree = ""; }; - E3BE8FB9241672CD5414EBAB90C64914 /* QBImagePickerController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = QBImagePickerController.m; path = ios/QBImagePicker/QBImagePicker/QBImagePickerController.m; sourceTree = ""; }; E3C60919E7EB6F9180A787F54EF850C5 /* FIRLogger.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRLogger.m; path = FirebaseCore/Sources/FIRLogger.m; sourceTree = ""; }; E3C648D81314F24EA3DC0F1A9544B718 /* EnvUtil.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EnvUtil.h; path = folly/experimental/EnvUtil.h; sourceTree = ""; }; - E3DF2CA44D2DEADF92E75108A79FC16D /* StorageIndexer.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = StorageIndexer.m; path = ios/StorageIndexer.m; sourceTree = ""; }; - E3E949AE1BC7DC75625C7108BFFB4FCE /* RNGestureHandlerButton.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNGestureHandlerButton.m; path = ios/RNGestureHandlerButton.m; sourceTree = ""; }; E4036261C95C8E6831DAB252B7C7B126 /* MMKVCore-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "MMKVCore-dummy.m"; sourceTree = ""; }; E407F007D3277FB2D6D3144046A32B0A /* SKTouch.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SKTouch.m; path = iOS/Plugins/FlipperKitLayoutPlugin/FlipperKitLayoutPlugin/SKTouch.m; sourceTree = ""; }; E420CE57027B3320D62EA03FBEE125B1 /* Poly-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "Poly-inl.h"; path = "folly/Poly-inl.h"; sourceTree = ""; }; + E4291A0C22A564FBF7DB4C2E89F5B409 /* RCTInputAccessoryShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTInputAccessoryShadowView.m; sourceTree = ""; }; E4338F43DBC984B327738D9039806667 /* Flipper-PeerTalk-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Flipper-PeerTalk-dummy.m"; sourceTree = ""; }; - E43A768F57F6CF27AA59A7BB0872D21E /* RCTBaseTextInputShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBaseTextInputShadowView.h; sourceTree = ""; }; + E4461047D974D5B0682E9C35AA34E9A8 /* RNCMaskedView-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNCMaskedView-prefix.pch"; sourceTree = ""; }; E44F0B0A2654DF06F2373E2AC40C7F1C /* SDWebImageDefine.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWebImageDefine.m; path = SDWebImage/Core/SDWebImageDefine.m; sourceTree = ""; }; - E45254F30C5813BEAC555BC34F1165C2 /* UMAppLifecycleService.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMAppLifecycleService.h; sourceTree = ""; }; - E47DAE906867F4EA69C2F609837C088C /* EXVideoThumbnailsModule.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXVideoThumbnailsModule.m; path = EXVideoThumbnails/EXVideoThumbnailsModule.m; sourceTree = ""; }; E496A53A92B4E464B5C30DC5B1E4E257 /* libRNRootView.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libRNRootView.a; path = libRNRootView.a; sourceTree = BUILT_PRODUCTS_DIR; }; - E49AAC64025F8822FB4D98997A498BF2 /* UMCore.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMCore.debug.xcconfig; sourceTree = ""; }; E4A4E7E72061108B2D150068D7ABBEA5 /* GULAppEnvironmentUtil.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULAppEnvironmentUtil.h; path = GoogleUtilities/Environment/Private/GULAppEnvironmentUtil.h; sourceTree = ""; }; + E4A6ACC86E286EDBA1B86C4D8B46E471 /* Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = Private.h; sourceTree = ""; }; E4AC264BBD9EB4AF306F61129B26C7A6 /* SDWebImageDownloaderConfig.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageDownloaderConfig.h; path = SDWebImage/Core/SDWebImageDownloaderConfig.h; sourceTree = ""; }; - E4BB3E4F4BF1AAE167A8E5EF060CB906 /* NSValue+Interpolation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "NSValue+Interpolation.h"; sourceTree = ""; }; + E4B92FFE0E725593C47FDAA9082740BD /* React-callinvoker.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-callinvoker.release.xcconfig"; sourceTree = ""; }; E4C5D5D0AF088A21F9F2904F7B342996 /* Utility.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Utility.h; path = folly/Utility.h; sourceTree = ""; }; - E4CD577EBCFCE670EC79C684F0DF0213 /* BugsnagNotifier.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagNotifier.h; sourceTree = ""; }; + E4DBD6562F19ADFAA30FFACD9839D64D /* REAJSCallNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REAJSCallNode.m; sourceTree = ""; }; E4E0546BEB8B0EB8562E9A0AF7794D70 /* CocoaLibEvent.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = CocoaLibEvent.release.xcconfig; sourceTree = ""; }; E4F470400EBEAA1D8E020157AB664049 /* Peertalk.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Peertalk.h; path = peertalk/Peertalk.h; sourceTree = ""; }; - E4F505C239991EFC6D8CF40383BDC606 /* RCTConvert+FFFastImage.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "RCTConvert+FFFastImage.m"; path = "ios/FastImage/RCTConvert+FFFastImage.m"; sourceTree = ""; }; + E5015201A25299A5952B78CF8E53BC0D /* BSG_KSMach_Arm64.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSMach_Arm64.c; sourceTree = ""; }; E5044315D7E7DAAE49B767F959AC0932 /* AsyncSignalHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AsyncSignalHandler.h; path = folly/io/async/AsyncSignalHandler.h; sourceTree = ""; }; - E5153F1C2295E8706EC9CF53194E982F /* ARTNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = ARTNode.m; path = ios/ARTNode.m; sourceTree = ""; }; - E51D7295706B24C7E51D40AC2374D6C1 /* EXAV-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "EXAV-prefix.pch"; sourceTree = ""; }; - E520F185A3C7738EB377EC4FDA4521F2 /* React-RCTSettings-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-RCTSettings-dummy.m"; sourceTree = ""; }; - E5493E3E972597596B1E5C76E44C53C1 /* UIView+Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "UIView+Private.h"; sourceTree = ""; }; + E5196A8601779BD3365AB38A763B910E /* UMJavaScriptContextProvider.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMJavaScriptContextProvider.h; sourceTree = ""; }; + E51CF6B8DB4476AB9AEA0446FFE67FF1 /* NSTextStorage+FontScaling.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "NSTextStorage+FontScaling.h"; sourceTree = ""; }; + E531255671006E36028F41DF2C8F1766 /* JSCExecutorFactory.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = JSCExecutorFactory.h; sourceTree = ""; }; + E547D116FEED98615DA77805F58A68FC /* UMAppLoaderProvider.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMAppLoaderProvider.h; path = UMAppLoader/UMAppLoaderProvider.h; sourceTree = ""; }; E55740D63FC4B29E894BEDF1F86F2A4F /* FlipperStep.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FlipperStep.h; path = xplat/Flipper/FlipperStep.h; sourceTree = ""; }; - E557E8FB831759A197AEA271B4A4E013 /* RCTWebSocketExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTWebSocketExecutor.h; path = React/CoreModules/RCTWebSocketExecutor.h; sourceTree = ""; }; - E5593CB6CA9BD3930C83237F8F9B656E /* UIImage+Extension.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIImage+Extension.m"; path = "ios/src/UIImage+Extension.m"; sourceTree = ""; }; E55EA3C6F285F6FA8067C5C8A428FA64 /* libRNFastImage.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libRNFastImage.a; path = libRNFastImage.a; sourceTree = BUILT_PRODUCTS_DIR; }; + E56180BC80948109BDE83BFBBC78EE4E /* LNAnimator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = LNAnimator.h; sourceTree = ""; }; + E562EE4FB797C8662A28586B44A0F666 /* UMFontProcessorInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMFontProcessorInterface.h; path = UMFontInterface/UMFontProcessorInterface.h; sourceTree = ""; }; E57CEE4E9E6CBCC8D49BA0D9953325A5 /* FlipperConnection.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FlipperConnection.h; path = iOS/FlipperKit/FlipperConnection.h; sourceTree = ""; }; + E59C4A01D83FB7C0D2CADD007B8259A8 /* RNTapHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNTapHandler.h; sourceTree = ""; }; E5A4F25F2D7AFB57D03250BEB9D49F7F /* GDTCORDataFuture.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCORDataFuture.h; path = GoogleDataTransport/GDTCORLibrary/Private/GDTCORDataFuture.h; sourceTree = ""; }; - E5C754C92E88707CAD4CB784B9931E8C /* React-RCTLinking.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-RCTLinking.debug.xcconfig"; sourceTree = ""; }; - E5D59E867EB39C7855E4092AEE04B104 /* BugsnagConfiguration.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagConfiguration.h; sourceTree = ""; }; + E5C1ADFCB00A8F28FE31BE7F59AB57D4 /* ARTSurfaceView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = ARTSurfaceView.m; path = ios/ARTSurfaceView.m; sourceTree = ""; }; + E5C9B5BCBB5FEEF0DFEACE6BC53D5198 /* RCTImageSource.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTImageSource.m; sourceTree = ""; }; + E5D28153CC5C6AE1C5F6C6533937C3DC /* RCTBorderDrawing.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTBorderDrawing.m; sourceTree = ""; }; + E5E8A9339902B034ED0A3E536B15930D /* RNFastImage.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNFastImage.debug.xcconfig; sourceTree = ""; }; E61262AADF05DB9336D7D007EBFF1A63 /* upsampling_mips_dsp_r2.c */ = {isa = PBXFileReference; includeInIndex = 1; name = upsampling_mips_dsp_r2.c; path = src/dsp/upsampling_mips_dsp_r2.c; sourceTree = ""; }; + E61FC7FA4C9D8CE81CBE9AFC46072A47 /* BugsnagFileStore.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagFileStore.h; sourceTree = ""; }; + E62AE4F62F5682031F5E7E94657C1CAF /* NSDataBigString.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = NSDataBigString.h; sourceTree = ""; }; + E62C02511AA502417FB5C54ADF4CE523 /* EXKeepAwake.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = EXKeepAwake.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; E63150E8640B2039AAA633B49BCFCF35 /* OpenSSLUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = OpenSSLUtils.h; path = folly/io/async/ssl/OpenSSLUtils.h; sourceTree = ""; }; - E63D21F31C86A64959F3CEB07B455B61 /* UMInternalModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMInternalModule.h; sourceTree = ""; }; + E641791A1F3D2A02B750DFE7AAEAAC5C /* EXConstants.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = EXConstants.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; E65018B65877114579C0E4837C8E29E3 /* FlipperRSocketResponder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FlipperRSocketResponder.h; path = xplat/Flipper/FlipperRSocketResponder.h; sourceTree = ""; }; E655C846BC6EC695D517CDD4B43FFC2E /* vp8i_enc.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = vp8i_enc.h; path = src/enc/vp8i_enc.h; sourceTree = ""; }; - E65F9FE191E8F5252BAC81336BB2BE24 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; E66CC7D473469704A38825212367C8D9 /* SKApplicationDescriptor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SKApplicationDescriptor.h; path = iOS/Plugins/FlipperKitLayoutPlugin/FlipperKitLayoutPlugin/descriptors/SKApplicationDescriptor.h; sourceTree = ""; }; E670F463C5CF96DE9B97852EF71F16D8 /* AtomicHashMap.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AtomicHashMap.h; path = folly/AtomicHashMap.h; sourceTree = ""; }; + E676D2886E1C744155B0C5ADBB45646E /* RNFastImage.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RNFastImage.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; E67AF1ECABE5E08BD5321B37247628C8 /* Bits.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Bits.h; path = folly/lang/Bits.h; sourceTree = ""; }; E685501A18B691A78AE63802778A8DC4 /* double-conversion.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = "double-conversion.cc"; path = "double-conversion/double-conversion.cc"; sourceTree = ""; }; E6A16705C69FC7DE11C2469A4A0F8358 /* libReact-RCTText.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libReact-RCTText.a"; path = "libReact-RCTText.a"; sourceTree = BUILT_PRODUCTS_DIR; }; + E6B2EC501CD328F42E7BB1424DD941E0 /* EXAppleAuthenticationButton.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXAppleAuthenticationButton.h; path = EXAppleAuthentication/EXAppleAuthenticationButton.h; sourceTree = ""; }; E6BBFA827F14140BEA7126DD8DD5840E /* ossl_typ.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ossl_typ.h; path = ios/include/openssl/ossl_typ.h; sourceTree = ""; }; E6C652BF06E9356BE321D1E2FFE10499 /* vp8li_dec.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = vp8li_dec.h; path = src/dec/vp8li_dec.h; sourceTree = ""; }; - E6F41B53B99C9D4A02BA536BD636E645 /* UMFontScalersManagerInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMFontScalersManagerInterface.h; path = UMFontInterface/UMFontScalersManagerInterface.h; sourceTree = ""; }; + E6EFC9376699D27192EE2846F7017250 /* BSG_KSCrashReportStore.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BSG_KSCrashReportStore.m; sourceTree = ""; }; + E6FD759155B85474D1C15F8473E0C9F6 /* RNCommandsHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCommandsHandler.h; path = RNNotifications/RNCommandsHandler.h; sourceTree = ""; }; E70A19B66B026FB48473A66CF3E9CB52 /* FBLPromise+Async.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FBLPromise+Async.h"; path = "Sources/FBLPromises/include/FBLPromise+Async.h"; sourceTree = ""; }; - E71D9B68C5769651250E5E40D41472CE /* RNCSafeAreaViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCSafeAreaViewManager.h; path = ios/SafeAreaView/RNCSafeAreaViewManager.h; sourceTree = ""; }; + E7329921F0879CED0F73EBBDBC1D0E0A /* RCTDatePickerManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTDatePickerManager.h; sourceTree = ""; }; E73AA114C896C43757A92D69236139A6 /* SKButtonDescriptor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SKButtonDescriptor.h; path = iOS/Plugins/FlipperKitLayoutPlugin/FlipperKitLayoutPlugin/descriptors/SKButtonDescriptor.h; sourceTree = ""; }; - E73BC0618D86EFC57D02673138646F92 /* ReactNativeKeyboardInput.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = ReactNativeKeyboardInput.release.xcconfig; sourceTree = ""; }; - E752934C099608793BB304F3E8C6889D /* RCTConstants.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTConstants.h; sourceTree = ""; }; + E744B8569EF60BC8E2E2075A062CFFA2 /* RCTScrollContentViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTScrollContentViewManager.m; sourceTree = ""; }; E758096D3F1B58B131EAE8EE951FDDF2 /* Payload.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Payload.h; path = rsocket/Payload.h; sourceTree = ""; }; E764AFAAF641A4FE37695C79504E5759 /* SDDiskCache.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDDiskCache.m; path = SDWebImage/Core/SDDiskCache.m; sourceTree = ""; }; E788EF043D0B36589AE52ABCA2ECAD69 /* libwebp.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = libwebp.release.xcconfig; sourceTree = ""; }; + E78DE3EEC7497C553D96A7096BA63A3C /* BSG_KSString.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSString.h; sourceTree = ""; }; E7962FF1074F6765366F816E33792380 /* Libgen.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Libgen.h; path = folly/portability/Libgen.h; sourceTree = ""; }; + E7A1F54CF1550DE076C1E43DD7E9C2B4 /* UMReactNativeAdapter.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMReactNativeAdapter.release.xcconfig; sourceTree = ""; }; E7AB4E1A96911724B29D20FA711E4DD4 /* RSocketException.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RSocketException.h; path = rsocket/RSocketException.h; sourceTree = ""; }; + E7C71728B5239AD21C232CCA09BF7791 /* EXWebBrowser.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXWebBrowser.h; path = EXWebBrowser/EXWebBrowser.h; sourceTree = ""; }; + E7CB24DB6D543A9D4167FF41793BB35F /* ReactNativeKeyboardTrackingView-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "ReactNativeKeyboardTrackingView-dummy.m"; sourceTree = ""; }; E7D3730634F7552BC6C6E48ECD1B8E21 /* FIRCLSURLSessionTask.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSURLSessionTask.h; path = Crashlytics/Crashlytics/FIRCLSURLSession/Tasks/FIRCLSURLSessionTask.h; sourceTree = ""; }; E7D680668C4D614965F1C3B7CF16E5FC /* FIRCLSNetworkResponseHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCLSNetworkResponseHandler.m; path = Crashlytics/Shared/FIRCLSNetworking/FIRCLSNetworkResponseHandler.m; sourceTree = ""; }; + E7E0457D29F9D59DB17AB6FD06FAF418 /* RCTComponentEvent.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTComponentEvent.h; sourceTree = ""; }; + E7E9788EF5DEB806E5C7DD74AE74E575 /* RCTImageLoader.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTImageLoader.mm; sourceTree = ""; }; E804AE12EBE0B41D3C8DE9CFB01AC933 /* PromisesObjC.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = PromisesObjC.release.xcconfig; sourceTree = ""; }; - E8101F5607C38BCCA44465470167659D /* EXHaptics.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = EXHaptics.release.xcconfig; sourceTree = ""; }; + E805C3238B7934A407F4B9BA654A7E23 /* BSGOutOfMemoryWatchdog.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BSGOutOfMemoryWatchdog.m; sourceTree = ""; }; + E842FB0194152421B0388A100AC13F5D /* RNCAsyncStorage.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNCAsyncStorage.release.xcconfig; sourceTree = ""; }; E843110D34ACC36D6BEF37D1EFAACD13 /* zh-Hans.lproj */ = {isa = PBXFileReference; includeInIndex = 1; name = "zh-Hans.lproj"; path = "Objective-C/TOCropViewController/Resources/zh-Hans.lproj"; sourceTree = ""; }; + E8485B1132B261C16F96FE0F451A8E56 /* RNCMaskedViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCMaskedViewManager.m; path = ios/RNCMaskedViewManager.m; sourceTree = ""; }; E866F278BD58D06B8B3E4485D3248A75 /* enc_sse2.c */ = {isa = PBXFileReference; includeInIndex = 1; name = enc_sse2.c; path = src/dsp/enc_sse2.c; sourceTree = ""; }; - E87932547D9F3089483EE98DD7F6C76F /* RNLocalize.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNLocalize.h; path = ios/RNLocalize.h; sourceTree = ""; }; + E89C421F1F61AF286055F0A870203BEF /* RNNotificationUtils.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNNotificationUtils.m; path = RNNotifications/RNNotificationUtils.m; sourceTree = ""; }; E8A328A58A732B41F061244436FA9984 /* PThread.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = PThread.cpp; path = folly/portability/PThread.cpp; sourceTree = ""; }; E8A50B7CED93C22A904707D53B2C2486 /* TOCropView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = TOCropView.m; path = "Objective-C/TOCropViewController/Views/TOCropView.m"; sourceTree = ""; }; - E8C21D6F591079F76CBE4CA256FDD0F9 /* BSGSerialization.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BSGSerialization.m; sourceTree = ""; }; + E8AE532D51ABED7FC35AEF600D8411C3 /* RCTBaseTextInputViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTBaseTextInputViewManager.m; sourceTree = ""; }; + E8B9D258AFCB14A66CCB0FDAE09F940E /* RCTBaseTextViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTBaseTextViewManager.m; sourceTree = ""; }; + E8BB93182E5D1696BD2481DBE4EA7E36 /* RCTProfileTrampoline-arm.S */ = {isa = PBXFileReference; includeInIndex = 1; path = "RCTProfileTrampoline-arm.S"; sourceTree = ""; }; + E8CC52B92464301D2D20161219192A70 /* react-native-safe-area-context.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "react-native-safe-area-context.debug.xcconfig"; sourceTree = ""; }; E8CE7715D6333420A83E113B345FD9CE /* SDAnimatedImageRep.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDAnimatedImageRep.m; path = SDWebImage/Core/SDAnimatedImageRep.m; sourceTree = ""; }; - E8E3906981061F0F9BF3AF1AD1027A1E /* RCTBridgeMethod.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBridgeMethod.h; sourceTree = ""; }; + E8E7DC77DB1C8647B33A7CA75FBB324C /* ARTSolidColor.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = ARTSolidColor.m; sourceTree = ""; }; E8EEBA666A29BA94151CD1AD0CDF1FD7 /* FlipperDiagnosticsViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FlipperDiagnosticsViewController.m; path = iOS/FlipperKit/FlipperDiagnosticsViewController.m; sourceTree = ""; }; E8F688C15AB5C089BB2293389D03C29E /* FIRAValue.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAValue.h; path = Crashlytics/Crashlytics/Helpers/FIRAValue.h; sourceTree = ""; }; E904FB44E0F60263FFEEF3F0CAABEB07 /* GDTCORClock.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GDTCORClock.m; path = GoogleDataTransport/GDTCORLibrary/GDTCORClock.m; sourceTree = ""; }; - E90F87632F6DCC999AA8B84657FFA97D /* BSG_KSCrashSentry_NSException.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashSentry_NSException.h; sourceTree = ""; }; - E9118357368F954907D3F27B7DBBBA85 /* RCTNullability.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTNullability.h; sourceTree = ""; }; - E911A339CABE081B9961C9A25FFFA4B4 /* RNVectorIconsManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNVectorIconsManager.h; path = RNVectorIconsManager/RNVectorIconsManager.h; sourceTree = ""; }; E92B1CBD11C1B58FEF03284A5D74A471 /* OpenSSL.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = OpenSSL.h; path = folly/portability/OpenSSL.h; sourceTree = ""; }; - E93EDFD8DDD3FDA36278763CCFF9D8D7 /* BugsnagHandledState.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagHandledState.h; sourceTree = ""; }; E93F701CA8EB196D77AE99E094D873E4 /* libFlipper.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libFlipper.a; path = libFlipper.a; sourceTree = BUILT_PRODUCTS_DIR; }; E93FE57123F6C367D3B0B7B7B97D9975 /* pb_decode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = pb_decode.h; sourceTree = ""; }; - E9405DD541B4D41D4FF1758F4371F6F0 /* BugsnagSessionTrackingApiClient.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagSessionTrackingApiClient.h; sourceTree = ""; }; - E95C27727C333696DE3CE5DD21ECD8B2 /* RNCAsyncStorage.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNCAsyncStorage.release.xcconfig; sourceTree = ""; }; E95C50F4AA4A162306E867AD740D621F /* GDTCORAssert.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCORAssert.h; path = GoogleDataTransport/GDTCORLibrary/Public/GDTCORAssert.h; sourceTree = ""; }; - E95DB92B336BB03EBD89043B4102A6A1 /* REANodesManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = REANodesManager.h; path = ios/REANodesManager.h; sourceTree = ""; }; E95DEDB271798F95980DC4B06279B63E /* SDMemoryCache.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDMemoryCache.h; path = SDWebImage/Core/SDMemoryCache.h; sourceTree = ""; }; + E975B5F40C52E1FE8A98636EF12D35B5 /* TurboModuleBinding.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = TurboModuleBinding.cpp; path = turbomodule/core/TurboModuleBinding.cpp; sourceTree = ""; }; E97F53C6598883B1C6699D8D00924794 /* cost_mips_dsp_r2.c */ = {isa = PBXFileReference; includeInIndex = 1; name = cost_mips_dsp_r2.c; path = src/dsp/cost_mips_dsp_r2.c; sourceTree = ""; }; - E994EEBAC182321BD1566AC9E72097FE /* jsilib-posix.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = "jsilib-posix.cpp"; sourceTree = ""; }; - E9999B8771EACECAFCB66F7CA9C71B92 /* RNBackgroundTimer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNBackgroundTimer.h; path = ios/RNBackgroundTimer.h; sourceTree = ""; }; - E99C7750F7EF2372DCF29EC658457AF9 /* en.lproj */ = {isa = PBXFileReference; includeInIndex = 1; name = en.lproj; path = ios/QBImagePicker/QBImagePicker/en.lproj; sourceTree = ""; }; - E9B4385E44E2775A1CAD50DE96C7FC17 /* react-native-safe-area-context.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "react-native-safe-area-context.release.xcconfig"; sourceTree = ""; }; - E9B869E80FBDE534AF2DC0C3ECB5004A /* UMPermissionsInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMPermissionsInterface.h; path = UMPermissionsInterface/UMPermissionsInterface.h; sourceTree = ""; }; - E9CEF55F67E59B30ED7E9C871EF1FAEF /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; + E98ACFEF9F03D77A90F0ED273811E49B /* ReactNativeART-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "ReactNativeART-dummy.m"; sourceTree = ""; }; + E9CE77DDA1A7F84B3C10ADC5FAFBA481 /* RCTConvert+CoreLocation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RCTConvert+CoreLocation.m"; sourceTree = ""; }; E9E7A3764B17C578D2896BFF1CAB3819 /* quant_levels_dec_utils.c */ = {isa = PBXFileReference; includeInIndex = 1; name = quant_levels_dec_utils.c; path = src/utils/quant_levels_dec_utils.c; sourceTree = ""; }; E9EE8F4CEFDDE7CDA6FF80FA8BCEC846 /* syntax_enc.c */ = {isa = PBXFileReference; includeInIndex = 1; name = syntax_enc.c; path = src/enc/syntax_enc.c; sourceTree = ""; }; + E9F90B8FCB470D2192F31D6C144E76C7 /* RCTTextSelection.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTTextSelection.m; sourceTree = ""; }; E9FFDAF3C03BDC002EC84E0FDA51480B /* Future.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Future.h; path = folly/futures/Future.h; sourceTree = ""; }; + EA0BF2652807A41E88350A0657875644 /* ARTBrush.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = ARTBrush.m; sourceTree = ""; }; + EA20ED1DC2423D44F91E9BD23BC3BEE5 /* RCTLayout.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTLayout.h; sourceTree = ""; }; EA3190DAA7FB97C9C61B7A4D473A8419 /* Stdio.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Stdio.h; path = folly/portability/Stdio.h; sourceTree = ""; }; EA3BA931EE1351559A0C1124B2400B2B /* Benchmark.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Benchmark.h; path = folly/Benchmark.h; sourceTree = ""; }; + EA49353E51A7C1DC5E3520B1CDA24184 /* REATransitionAnimation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REATransitionAnimation.h; sourceTree = ""; }; EA4E13714B040A0054DF3CC83A8B504E /* EventBaseManager.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = EventBaseManager.cpp; path = folly/io/async/EventBaseManager.cpp; sourceTree = ""; }; - EA68B25507C1C2949DBD5C478926C2ED /* EXAV.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXAV.m; path = EXAV/EXAV.m; sourceTree = ""; }; EA6AE060BDB09ADB16FC1E1EED922690 /* NSBezierPath+SDRoundedCorners.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSBezierPath+SDRoundedCorners.h"; path = "SDWebImage/Private/NSBezierPath+SDRoundedCorners.h"; sourceTree = ""; }; EA7240003015AD6D0B4C11205B6C845F /* histogram_enc.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = histogram_enc.h; path = src/enc/histogram_enc.h; sourceTree = ""; }; - EA8BAB4AC0C9ED48AE01019E435995A8 /* React.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = React.debug.xcconfig; sourceTree = ""; }; - EA8C8D79155ED0E61A01100950DC8D66 /* RCTLocalAssetImageLoader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTLocalAssetImageLoader.h; path = Libraries/Image/RCTLocalAssetImageLoader.h; sourceTree = ""; }; + EA7CCE578247659B1632E00489116C48 /* RNPanHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNPanHandler.m; sourceTree = ""; }; + EA8532670E0824F80AEE80CE3E166834 /* rn-extensions-share.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "rn-extensions-share.release.xcconfig"; sourceTree = ""; }; + EA8A8E205C931615D290BBE17BB9467D /* EXPermissions.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = EXPermissions.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; EA9468C11766D5C3D4163A788CF50BA3 /* lossless_mips_dsp_r2.c */ = {isa = PBXFileReference; includeInIndex = 1; name = lossless_mips_dsp_r2.c; path = src/dsp/lossless_mips_dsp_r2.c; sourceTree = ""; }; - EA97DFEA09BDD82EED983AFE1835DA12 /* RCTAssert.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTAssert.m; sourceTree = ""; }; - EA9B90A99FD323502E3DC36A173D5E91 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; - EAA89C337BBDAED7F2802BECE9B200DB /* UMPermissionsInterface.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = UMPermissionsInterface.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - EAC0491058DDEC4FF937D1A42C95A83D /* REAClockNodes.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REAClockNodes.h; sourceTree = ""; }; EAC0824FE9BC00556ED59DF1DD9078A7 /* diy-fp.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = "diy-fp.cc"; path = "double-conversion/diy-fp.cc"; sourceTree = ""; }; - EAD93E5ED8CA50A3958E4F16680D58ED /* RNNotificationParser.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNNotificationParser.h; path = RNNotifications/RNNotificationParser.h; sourceTree = ""; }; + EAD45F45D4778E042FD25097DD107ACB /* RCTImageURLLoaderWithAttribution.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTImageURLLoaderWithAttribution.mm; sourceTree = ""; }; EADD707806ED13D6903BA0F5D24DBCD2 /* AtomicIntrusiveLinkedList.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AtomicIntrusiveLinkedList.h; path = folly/AtomicIntrusiveLinkedList.h; sourceTree = ""; }; - EAE5641A6434CDB91654D3A8BE36308E /* BSG_KSCrashReportWriter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashReportWriter.h; sourceTree = ""; }; EB0CC6987EC71C4BA637274C9ECABE2A /* GDTCORConsoleLogger.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCORConsoleLogger.h; path = GoogleDataTransport/GDTCORLibrary/Public/GDTCORConsoleLogger.h; sourceTree = ""; }; - EB0F2DE671E8965C79C9DB011693D95A /* BSG_KSMach.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSMach.c; sourceTree = ""; }; - EB1493B5B74339036BCAFEA4BEA1EB92 /* RCTModuleData.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTModuleData.h; sourceTree = ""; }; EB2004ACF1EA96A7A3225CC6D1D87043 /* FrameSerializer_v1_0.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FrameSerializer_v1_0.h; path = rsocket/framing/FrameSerializer_v1_0.h; sourceTree = ""; }; EB21C78FCA19662901D75D8A58EC4CCC /* OpenSSLLockTypes.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = OpenSSLLockTypes.h; path = folly/ssl/OpenSSLLockTypes.h; sourceTree = ""; }; - EB31A19D4B088A179BBBB562A4E5B551 /* RCTBridge+Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RCTBridge+Private.h"; sourceTree = ""; }; + EB28D3250973C1CA62687AAD76B1FDBB /* EXSessionDownloadTaskDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = EXSessionDownloadTaskDelegate.h; sourceTree = ""; }; EB43E4880CBB471E326D9324B0D08334 /* bufferevent_compat.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = bufferevent_compat.h; path = src/event2/bufferevent_compat.h; sourceTree = ""; }; - EB518DB5516FA7D8B25BCC8C68E58B25 /* React-Core-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-Core-prefix.pch"; sourceTree = ""; }; EB5A1D5A4E1EF92B70E662A22B8801D7 /* GULNetworkURLSession.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULNetworkURLSession.h; path = GoogleUtilities/Network/Private/GULNetworkURLSession.h; sourceTree = ""; }; EB60EB90116FADA18E2A8985F0C44F46 /* SDGraphicsImageRenderer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDGraphicsImageRenderer.h; path = SDWebImage/Core/SDGraphicsImageRenderer.h; sourceTree = ""; }; EB64CA34DB64EE8B21063AB215C0306C /* KeyValueHolder.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = KeyValueHolder.cpp; path = Core/KeyValueHolder.cpp; sourceTree = ""; }; EB6ACA9BC0EC68183524CFAF50825AA1 /* FIRCLSProcess.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSProcess.h; path = Crashlytics/Crashlytics/Components/FIRCLSProcess.h; sourceTree = ""; }; - EB73C4B22E6FDA94136303678D79778E /* RNFBCrashlyticsModule.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNFBCrashlyticsModule.m; path = ios/RNFBCrashlytics/RNFBCrashlyticsModule.m; sourceTree = ""; }; - EB7EC543AEFAF38C9E7FD9C2B795B598 /* BugsnagSessionTrackingApiClient.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagSessionTrackingApiClient.m; sourceTree = ""; }; - EB8717F94E6D6B3A49987B7C3A70D110 /* BSG_KSCrashCallCompletion.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashCallCompletion.h; sourceTree = ""; }; - EBAA76A623C8B547437FD0117AD7E1BC /* react-native-notifications.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = "react-native-notifications.podspec"; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + EB881B5852C5A92C627D8404F4949D72 /* RCTWebSocketModule.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTWebSocketModule.mm; sourceTree = ""; }; + EB8CAC2469765EC8EE6D42D9C4E73E20 /* RNVectorIcons.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNVectorIcons.release.xcconfig; sourceTree = ""; }; + EB930BAE07AEE8D8395B70E2A3394A9F /* RCTModalHostView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTModalHostView.h; sourceTree = ""; }; + EB95AFF8515B8C0895CD9991DBBD80D9 /* RCTComponent.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTComponent.h; sourceTree = ""; }; + EBA71C5BEDB01DA239AC0B9A51B32A69 /* EXImageLoader.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXImageLoader.m; path = EXImageLoader/EXImageLoader.m; sourceTree = ""; }; + EBAB799BCF76814A360CFEF7CA40206D /* ReactNativeKeyboardTrackingView.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = ReactNativeKeyboardTrackingView.debug.xcconfig; sourceTree = ""; }; EBABD933AB71D28946D5A1ABEBFF45BA /* SDImageCachesManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageCachesManager.m; path = SDWebImage/Core/SDImageCachesManager.m; sourceTree = ""; }; + EBB808858EC966E58ED90089C9C0409A /* jsi-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "jsi-inl.h"; sourceTree = ""; }; EBCC81CAA3C63A93A843D32D8FD8FD94 /* FIRCLSNetworkClient.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSNetworkClient.h; path = Crashlytics/Crashlytics/Controllers/FIRCLSNetworkClient.h; sourceTree = ""; }; EBD9AA1A278A3D54E85BB0D4506D88F1 /* ssl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ssl.h; path = ios/include/openssl/ssl.h; sourceTree = ""; }; EBE2FBDCCC5E2C1F5826FDB816EDDEAB /* DoubleConversion.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = DoubleConversion.release.xcconfig; sourceTree = ""; }; - EBE539977B2F1ECFBFDC2C16330E742C /* BSG_KSCrashState.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashState.h; sourceTree = ""; }; - EBE9EE3C372D7609E687C433CF4AE1A8 /* RNCMaskedViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCMaskedViewManager.h; path = ios/RNCMaskedViewManager.h; sourceTree = ""; }; EBFD1D03F0F485F3443D4B980F19DCF5 /* FIRErrors.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRErrors.h; path = FirebaseCore/Sources/Private/FIRErrors.h; sourceTree = ""; }; + EC07DBAD7C7C4BAF90ABBB8D3DCAB7A7 /* EXPermissions-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "EXPermissions-prefix.pch"; sourceTree = ""; }; + EC14D56E14AF1C0C68A3A29516DD80CD /* react-native-slider-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "react-native-slider-dummy.m"; sourceTree = ""; }; EC29168B9AD0FD2E560F723641C76D13 /* Folly.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = Folly.release.xcconfig; sourceTree = ""; }; EC39F54F14999F11502ABA2AA129EC99 /* StringKeyedUnorderedSet.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = StringKeyedUnorderedSet.h; path = folly/experimental/StringKeyedUnorderedSet.h; sourceTree = ""; }; - EC478B8068327E66CDD99C94A742B975 /* RCTMaskedView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTMaskedView.h; sourceTree = ""; }; + EC471A44E5989AB5888EDA3D721254CA /* REANodesManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = REANodesManager.m; path = ios/REANodesManager.m; sourceTree = ""; }; EC4850C151CD224548F62146DCD1C8CC /* Flowables.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Flowables.h; path = yarpl/flowable/Flowables.h; sourceTree = ""; }; + EC57A10E5379B89C0544ACA87023243F /* 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; }; + EC631D218C160AFF25570B4D3CD2A727 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; EC658CB13F117CB132ED545C56448294 /* GDTCORUploadCoordinator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCORUploadCoordinator.h; path = GoogleDataTransport/GDTCORLibrary/Private/GDTCORUploadCoordinator.h; sourceTree = ""; }; - EC68DB6C8C6D1E430FD2F58A5682F98C /* BugsnagMetaData.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagMetaData.h; sourceTree = ""; }; EC7AB493D4E5BB4A98DC8DA00EA0D5AC /* FIRErrors.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRErrors.h; path = FirebaseCore/Sources/Private/FIRErrors.h; sourceTree = ""; }; - EC83B127D59FD5EBB379F74AE245056C /* RCTNativeAnimatedNodesManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTNativeAnimatedNodesManager.h; path = Libraries/NativeAnimation/RCTNativeAnimatedNodesManager.h; sourceTree = ""; }; + ECA5015656D5D7DA4D6A2225F2EEF4E7 /* EXFileSystem-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "EXFileSystem-dummy.m"; sourceTree = ""; }; ECD54472A4CCEA6C4BA8F079C59642EE /* DrivableExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DrivableExecutor.h; path = folly/executors/DrivableExecutor.h; sourceTree = ""; }; - ECD7910C1E27895790CA2D50173A0FB5 /* React-RCTActionSheet.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-RCTActionSheet.debug.xcconfig"; sourceTree = ""; }; + ECDD159A98CEC8404A84784B05FE4A60 /* EXHapticsModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXHapticsModule.h; path = EXHaptics/EXHapticsModule.h; sourceTree = ""; }; + ECFA9C65A82E450DB07974BB0CEA789D /* ARTShapeManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = ARTShapeManager.m; sourceTree = ""; }; ECFE26448E3C1C7112FACD71232CF62D /* FIRCLSContext.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSContext.h; path = Crashlytics/Crashlytics/Components/FIRCLSContext.h; sourceTree = ""; }; - ED13537DBFF77DE7964F659DDCBBE171 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; ED13E425A4DAC7D7E9C80A18DAB973DE /* GDTCOREvent+GDTCCTSupport.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "GDTCOREvent+GDTCCTSupport.m"; path = "GoogleDataTransportCCTSupport/GDTCCTLibrary/GDTCOREvent+GDTCCTSupport.m"; sourceTree = ""; }; ED1E3FC0DC90F4A787472917BFB6B235 /* libEXFileSystem.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libEXFileSystem.a; path = libEXFileSystem.a; sourceTree = BUILT_PRODUCTS_DIR; }; ED252E21FF7397ABC96B5EF8F34C8E9E /* openssl_md5_dgst.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = openssl_md5_dgst.cpp; path = Core/aes/openssl/openssl_md5_dgst.cpp; sourceTree = ""; }; ED3185845707C4DEB03A4A0B0D59B590 /* Constexpr.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Constexpr.h; path = folly/portability/Constexpr.h; sourceTree = ""; }; + ED4150AB26E35DADACDB94A3040451EB /* RCTSurfaceSizeMeasureMode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSurfaceSizeMeasureMode.h; sourceTree = ""; }; + ED4EBB0D34414B78E6F16D443D1C15CF /* BSG_KSCrashSentry.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashSentry.h; sourceTree = ""; }; ED6A007B0F6E3BB16BE2D6C88BF06250 /* anim_decode.c */ = {isa = PBXFileReference; includeInIndex = 1; name = anim_decode.c; path = src/demux/anim_decode.c; sourceTree = ""; }; ED870C9ED962185FC40C795711DB2309 /* SDWebImageManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWebImageManager.m; path = SDWebImage/Core/SDWebImageManager.m; sourceTree = ""; }; ED9AD358F92ACAE62BD4F17BF59D0D5C /* PromisesObjC-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "PromisesObjC-dummy.m"; sourceTree = ""; }; - ED9CD1A8E4D2EAC4740033F246A5FEC6 /* DeviceUID.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DeviceUID.h; path = ios/RNDeviceInfo/DeviceUID.h; sourceTree = ""; }; - EDBFCD6B15179805CF3E6FC80DC3B250 /* IOS7Polyfill.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = IOS7Polyfill.h; path = ios/IOS7Polyfill.h; sourceTree = ""; }; - EDC8F3A9C104EA2BC38D5A3BEFB5AF3C /* EXAppleAuthenticationButton.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXAppleAuthenticationButton.m; path = EXAppleAuthentication/EXAppleAuthenticationButton.m; sourceTree = ""; }; + EDA8BEF50E13CBF8F30B28B55A61D886 /* RCTSafeAreaView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSafeAreaView.h; sourceTree = ""; }; + EDD3ADF5E1D2A5DEEA3627DCB31F5303 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; + EDE0D988232DC764FC68C7DAD52AAC11 /* React-CoreModules-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-CoreModules-prefix.pch"; sourceTree = ""; }; + EE034849C71A392F5328CB6451C015B4 /* BugsnagSessionFileStore.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagSessionFileStore.m; sourceTree = ""; }; EE10D23F9F9A6F605F5ABB40D323391C /* SysResource.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = SysResource.cpp; path = folly/portability/SysResource.cpp; sourceTree = ""; }; + EE125F69D84359A3F82864F3178CA6C3 /* RCTBackedTextInputDelegateAdapter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTBackedTextInputDelegateAdapter.m; sourceTree = ""; }; EE251821BE57AC0A1AEB7709AAB470E9 /* FIRCLSURLSessionDownloadTask.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCLSURLSessionDownloadTask.m; path = Crashlytics/Crashlytics/FIRCLSURLSession/Tasks/FIRCLSURLSessionDownloadTask.m; sourceTree = ""; }; + EE2A81427693ACA8E46CED098BF2F541 /* DeviceUID.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DeviceUID.h; path = ios/RNDeviceInfo/DeviceUID.h; sourceTree = ""; }; EE3209E802318EAD669F944DCDBFDCE4 /* stack.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = stack.h; path = ios/include/openssl/stack.h; sourceTree = ""; }; + EE3CA38F59F3E15A51082F3628F2FAEE /* ModuleRegistry.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = ModuleRegistry.h; sourceTree = ""; }; EE43C0F0CAAF2D913B0E86A7C7E8379B /* md4.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = md4.h; path = ios/include/openssl/md4.h; sourceTree = ""; }; EE4AEFEACE275DDCFB42B9400BF6B218 /* libRNFBCrashlytics.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libRNFBCrashlytics.a; path = libRNFBCrashlytics.a; sourceTree = BUILT_PRODUCTS_DIR; }; EE4CD9DB36CBD104B31440FD4D2C255B /* GULAppEnvironmentUtil.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GULAppEnvironmentUtil.m; path = GoogleUtilities/Environment/third_party/GULAppEnvironmentUtil.m; sourceTree = ""; }; EE4ED991F7F12AAB586A0C3A50313268 /* vp8i_dec.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = vp8i_dec.h; path = src/dec/vp8i_dec.h; sourceTree = ""; }; - EE5710A8FA0A17AA1BE189ADABC2203D /* RNGestureHandlerDirection.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNGestureHandlerDirection.h; path = ios/RNGestureHandlerDirection.h; sourceTree = ""; }; EE5B62E76630B060E6E365BE7B554882 /* openssl_cfb128.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = openssl_cfb128.cpp; path = Core/aes/openssl/openssl_cfb128.cpp; sourceTree = ""; }; - EE6B74B9B3000DCE2E920B88157F20C4 /* RCTConvert+Text.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "RCTConvert+Text.h"; path = "Libraries/Text/RCTConvert+Text.h"; sourceTree = ""; }; - EE71E4D657D99227CC5F0CECF924C7B7 /* REAUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = REAUtils.h; path = ios/REAUtils.h; sourceTree = ""; }; + EE6E3502DD76FCE65B18B8525258A8FB /* 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; }; EE72FB60DD5C608CE489AB1E2981C371 /* DistributedMutex.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DistributedMutex.h; path = folly/synchronization/DistributedMutex.h; sourceTree = ""; }; - EE84B2B7453419AD8490FD5567A0C77B /* EXAppleAuthenticationRequest.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXAppleAuthenticationRequest.m; path = EXAppleAuthentication/EXAppleAuthenticationRequest.m; sourceTree = ""; }; + EE7F450BFCC8761BB3215E27B536AAB9 /* RNGestureHandler-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNGestureHandler-prefix.pch"; sourceTree = ""; }; EE881A6C211F134C1D5557409B6F55A8 /* ExecutorWithPriority.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ExecutorWithPriority.h; path = folly/executors/ExecutorWithPriority.h; sourceTree = ""; }; EEA32812336906D66EEFCF0358E2C024 /* FireForgetThroughputTcp.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = FireForgetThroughputTcp.cpp; path = rsocket/benchmarks/FireForgetThroughputTcp.cpp; sourceTree = ""; }; + EEB609A23C4E52C1AF27256001C9FCC1 /* ReactCommon-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "ReactCommon-dummy.m"; sourceTree = ""; }; EEB82938D8DC5A266B866E74B527547D /* GDTCORReachability.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GDTCORReachability.m; path = GoogleDataTransport/GDTCORLibrary/GDTCORReachability.m; sourceTree = ""; }; EEBE801067B9AA91BA4C058EACCDC752 /* Util.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Util.h; path = folly/container/detail/Util.h; sourceTree = ""; }; EEC0C045EE568154F674095E2E9EDC7B /* FBLPromise+Catch.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "FBLPromise+Catch.m"; path = "Sources/FBLPromises/FBLPromise+Catch.m"; sourceTree = ""; }; EEC3E2B17B15EB6F478932D93AD53EC7 /* GDTCCTUploader.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GDTCCTUploader.m; path = GoogleDataTransportCCTSupport/GDTCCTLibrary/GDTCCTUploader.m; sourceTree = ""; }; EECDB4F3516EAB5D2A50505C6BCB7F66 /* alpha_processing_mips_dsp_r2.c */ = {isa = PBXFileReference; includeInIndex = 1; name = alpha_processing_mips_dsp_r2.c; path = src/dsp/alpha_processing_mips_dsp_r2.c; sourceTree = ""; }; EEDBF403E8E0B3885E65C2741B536BC5 /* libReact-RCTImage.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libReact-RCTImage.a"; path = "libReact-RCTImage.a"; sourceTree = BUILT_PRODUCTS_DIR; }; - EEE1389654547C8B4EA7BBE2355F5AE2 /* UMCore.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMCore.release.xcconfig; sourceTree = ""; }; + EEF118D8545B4604B15FFD7B318E4E2E /* RNFBApp.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RNFBApp.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; EF07638B1990430FC006C40DF347DFBC /* StreamRequester.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = StreamRequester.cpp; path = rsocket/statemachine/StreamRequester.cpp; sourceTree = ""; }; EF0C71E4D8EA8DA30C3C49EA645ACBAA /* modes.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = modes.h; path = ios/include/openssl/modes.h; sourceTree = ""; }; + EF1B045F7445B0886A077B6B6CA21E9A /* JSIDynamic.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = JSIDynamic.cpp; sourceTree = ""; }; EF239415A954509CD83CCCBD7D6BAEEE /* DeferFlowable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DeferFlowable.h; path = yarpl/flowable/DeferFlowable.h; sourceTree = ""; }; + EF242DDAABF8F823999D3669E70D4280 /* RNNotificationCenterListener.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNNotificationCenterListener.h; path = RNNotifications/RNNotificationCenterListener.h; sourceTree = ""; }; EF2AA62775C165D266DA00828D077CBA /* GTest.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GTest.h; path = folly/portability/GTest.h; sourceTree = ""; }; - EF3D382978D78DB8C4A2717909EED7DC /* RNCAssetsLibraryRequestHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCAssetsLibraryRequestHandler.h; path = ios/RNCAssetsLibraryRequestHandler.h; sourceTree = ""; }; + EF2B5703A30434EDBF01FA54265F05F9 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; + EF2E203C96DEB13B15CB72B513C9C4E0 /* RNConfigReader.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNConfigReader.release.xcconfig; sourceTree = ""; }; + EF6B23356D4F5B0719EA31C081603848 /* RNCookieManagerIOS.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCookieManagerIOS.m; path = ios/RNCookieManagerIOS/RNCookieManagerIOS.m; sourceTree = ""; }; + EF7D53A6F3C391EE11DD45253670FB19 /* EXSessionUploadTaskDelegate.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = EXSessionUploadTaskDelegate.m; sourceTree = ""; }; EF848C3AAEB2094BCE44541A8B4DEE0A /* GlobalThreadPoolList.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = GlobalThreadPoolList.cpp; path = folly/executors/GlobalThreadPoolList.cpp; sourceTree = ""; }; EF89D7EE6893861B6EA4BA7986F0BC5F /* ShutdownSocketSet.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ShutdownSocketSet.h; path = folly/io/ShutdownSocketSet.h; sourceTree = ""; }; + EF8D483D01F8555E1F06C4003856A678 /* UMPermissionsMethodsDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMPermissionsMethodsDelegate.h; path = UMPermissionsInterface/UMPermissionsMethodsDelegate.h; sourceTree = ""; }; EFA80C524A1A4B7C125DC537833790CB /* SDImageHEICCoderInternal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageHEICCoderInternal.h; path = SDWebImage/Private/SDImageHEICCoderInternal.h; sourceTree = ""; }; - EFADD1430321D40620762E3F71D316EC /* UMFontManagerInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMFontManagerInterface.h; path = UMFontInterface/UMFontManagerInterface.h; sourceTree = ""; }; + EFAEC012E5E9EAD8122E72B6C1B41073 /* RCTBackedTextInputDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBackedTextInputDelegate.h; sourceTree = ""; }; + EFB1EC12BAAB3786F445260E6334B505 /* 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; }; EFC353A8992E16A43B7382700B37DC54 /* ResourceBundle-TOCropViewControllerBundle-TOCropViewController-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "ResourceBundle-TOCropViewControllerBundle-TOCropViewController-Info.plist"; sourceTree = ""; }; - EFCD3A6297E4D831C280F58CCA656218 /* ReactNativeART.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = ReactNativeART.debug.xcconfig; sourceTree = ""; }; EFD1C40E3EBF951B518DD912933B112E /* NSData+ImageContentType.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSData+ImageContentType.h"; path = "SDWebImage/Core/NSData+ImageContentType.h"; sourceTree = ""; }; - EFE253EDDDF2A6BE55D8EE81C7B566D7 /* react-native-mmkv-storage-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "react-native-mmkv-storage-dummy.m"; sourceTree = ""; }; - EFECB04B4961098514237FFDCF858366 /* RCTLog.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTLog.h; sourceTree = ""; }; - EFF6352CDA1D3A0EA06089C2462F06A7 /* RCTWrapperViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTWrapperViewController.h; sourceTree = ""; }; - F0308CC8B4C0BB684833C4A8D160333B /* RCTTextSelection.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTTextSelection.m; sourceTree = ""; }; - F03382C69DFBABB2DD7976155CEDE2DD /* React-RCTBlob.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = "React-RCTBlob.podspec"; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - F05B38760018C05A0FF3CBEDF51828F7 /* RCTBaseTextInputViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTBaseTextInputViewManager.m; sourceTree = ""; }; + EFDE3811302227FA99A72245CA18092A /* REAClockNodes.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REAClockNodes.h; sourceTree = ""; }; + EFE3FCC42C775B220FCF89B4A00B0F07 /* RNCSliderManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCSliderManager.m; path = ios/RNCSliderManager.m; sourceTree = ""; }; + EFEDE0F8A0DF6BE20845C410FED10E77 /* CompactValue.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CompactValue.h; path = yoga/CompactValue.h; sourceTree = ""; }; + EFEEB8BF93362FC69EE6E8F55E3245A4 /* UMFileSystemInterface.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMFileSystemInterface.release.xcconfig; sourceTree = ""; }; + EFF32B0A911C93BC6F45E81B69403EF7 /* ReactNativeVersion.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = ReactNativeVersion.h; sourceTree = ""; }; + F00BD769A3A2AC46A05AC61CA6449B84 /* UMBarometerInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMBarometerInterface.h; path = UMSensorsInterface/UMBarometerInterface.h; sourceTree = ""; }; + F03427101F3B8C7060CC590A8363CA6F /* RCTKeyCommands.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTKeyCommands.h; sourceTree = ""; }; + F0749510A7A80D9C4232E235BBE1BEB6 /* REATransitionAnimation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REATransitionAnimation.m; sourceTree = ""; }; F07F53D45BB15DCCEE60E68A08E9F892 /* FrameTransport.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FrameTransport.h; path = rsocket/framing/FrameTransport.h; sourceTree = ""; }; - F0836D0A2E8BA89E5EA31A575B26D3AF /* UMSensorsInterface.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = UMSensorsInterface.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - F0842D2A48CFAEB9FD497B75F54C412F /* RNFlingHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNFlingHandler.h; sourceTree = ""; }; - F084391389D90EF8CF4ECFCE6ACE402F /* RCTConvert+REATransition.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RCTConvert+REATransition.h"; sourceTree = ""; }; - F09CAD65E885D3877AC113F4AA854D96 /* RCTSurfaceSizeMeasureMode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSurfaceSizeMeasureMode.h; sourceTree = ""; }; + F0955CC35725C4D3577984ECD6A13A33 /* RCTTextSelection.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTextSelection.h; sourceTree = ""; }; + F0AEC5186B8F5808589C526E5DCDE874 /* RNVectorIcons-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNVectorIcons-dummy.m"; sourceTree = ""; }; + F0C0BF47FB1A237DDEDD08D6FF6A3A32 /* RCTPackagerConnection.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTPackagerConnection.mm; sourceTree = ""; }; F0DF4ED97F36D082123404D0161ED273 /* UIButton+WebCache.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIButton+WebCache.m"; path = "SDWebImage/Core/UIButton+WebCache.m"; sourceTree = ""; }; - F111FB6EECFBAFD20B718467C3B4DA26 /* BSG_KSJSONCodec.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSJSONCodec.h; sourceTree = ""; }; F11B264A0686C7D8C3555BD6888B003A /* FIRInstallationsStoredItem.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstallationsStoredItem.h; path = FirebaseInstallations/Source/Library/InstallationsStore/FIRInstallationsStoredItem.h; sourceTree = ""; }; + F13288A5114C62E8068FC4F1B15F90E2 /* RCTRootView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTRootView.m; sourceTree = ""; }; F1427BAE4902839B19780BC178D4AFBE /* AtomicUnorderedMapUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AtomicUnorderedMapUtils.h; path = folly/detail/AtomicUnorderedMapUtils.h; sourceTree = ""; }; F144AE35828C9BECC6CF9A680EC9F907 /* UIImage+ExtendedCacheData.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIImage+ExtendedCacheData.m"; path = "SDWebImage/Core/UIImage+ExtendedCacheData.m"; sourceTree = ""; }; - F16C7098707E23C1652F03AC187C367B /* React-jsinspector-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-jsinspector-prefix.pch"; sourceTree = ""; }; - F1B0E77ACAB737FA392EF5592503B822 /* RCTSurfaceDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSurfaceDelegate.h; sourceTree = ""; }; - F1CFD83224C363E1273A30D0E48000A7 /* BSG_KSJSONCodec.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSJSONCodec.c; sourceTree = ""; }; + F15ACCC49EE82C62FB9B1233BA69702A /* RCTCxxUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTCxxUtils.h; sourceTree = ""; }; + F1BD9EE9AF436CF1E4F5633FDDC8A9E0 /* React.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = React.release.xcconfig; sourceTree = ""; }; + F1C4447775C321032BE516A0BC165007 /* RCTSegmentedControl.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSegmentedControl.m; sourceTree = ""; }; + F1D5400857A08ABA5D80BEE41D4A14A2 /* RCTBlobManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTBlobManager.h; path = Libraries/Blob/RCTBlobManager.h; sourceTree = ""; }; F1D7932FDBDC43C3BBDF0364EE33D4D9 /* ExceptionWrapper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ExceptionWrapper.h; path = folly/ExceptionWrapper.h; sourceTree = ""; }; F1F65F86386B237B05B0316B1A3B4A55 /* crc32_armv8.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = crc32_armv8.cpp; path = Core/crc32/crc32_armv8.cpp; sourceTree = ""; }; - F2040F70BD58607E19BF2B257D5EDBFA /* RCTRootShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTRootShadowView.m; sourceTree = ""; }; - F2080E40F6F66DA936175922D8EE39E4 /* RCTImageSource.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTImageSource.m; sourceTree = ""; }; + F1FD21236AAA501D54541BE94EF23DE8 /* RCTSourceCode.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTSourceCode.mm; sourceTree = ""; }; + F1FF0DF45776400A391683CA1ABC41B1 /* RCTPackagerConnection.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTPackagerConnection.h; sourceTree = ""; }; F22046E41AAE417B72E995E64B2D67E9 /* Common.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Common.h; path = rsocket/internal/Common.h; sourceTree = ""; }; F2432E8B9CD3DD7CFA48FBEF88B37FAE /* it.lproj */ = {isa = PBXFileReference; includeInIndex = 1; name = it.lproj; path = "Objective-C/TOCropViewController/Resources/it.lproj"; sourceTree = ""; }; F257DD7FEAD25B3AC731294D344F4530 /* PTProtocol.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = PTProtocol.m; path = peertalk/PTProtocol.m; sourceTree = ""; }; F25D520DE4EF61DA503BF3B66A93B846 /* FIRCLSMachException.c */ = {isa = PBXFileReference; includeInIndex = 1; name = FIRCLSMachException.c; path = Crashlytics/Crashlytics/Handlers/FIRCLSMachException.c; sourceTree = ""; }; + F25F07E17FB3E6A08F5770D1E269EA0D /* React-jsi-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-jsi-prefix.pch"; sourceTree = ""; }; F25F87AA623BA162D848B5B3EC9C60B7 /* SysStat.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = SysStat.cpp; path = folly/portability/SysStat.cpp; sourceTree = ""; }; - F26EAD1B7F278D0282E2A1EAF7BD6340 /* ARTSolidColor.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = ARTSolidColor.m; sourceTree = ""; }; - F2863A89B8DCCAC70CA9C4897DD83ED0 /* React-RCTNetwork.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = "React-RCTNetwork.podspec"; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - F28695D7D593FFF8ED5AC101BAFD5208 /* QBVideoIndicatorView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = QBVideoIndicatorView.h; path = ios/QBImagePicker/QBImagePicker/QBVideoIndicatorView.h; sourceTree = ""; }; - F28BC214752794297FD5ECB6E1197268 /* RNFBRCTEventEmitter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNFBRCTEventEmitter.h; path = ios/RNFBApp/RNFBRCTEventEmitter.h; sourceTree = ""; }; + F27EAEA907837037A9AFC6DB3F6A3960 /* RCTLayoutAnimationGroup.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTLayoutAnimationGroup.h; sourceTree = ""; }; + F28715E157ECC0469457139AFE6C51E1 /* REATransitionValues.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REATransitionValues.h; sourceTree = ""; }; F290E2B38BF7A6D0E519530A715DDF00 /* FlipperResponderImpl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FlipperResponderImpl.h; path = xplat/Flipper/FlipperResponderImpl.h; sourceTree = ""; }; + F2A43425DF1F3C91BF3FD4F21C29AD3C /* RCTWeakProxy.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTWeakProxy.h; sourceTree = ""; }; F2E7C88DFCD460A4B46B913ADEB8A641 /* libReact-jsiexecutor.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libReact-jsiexecutor.a"; path = "libReact-jsiexecutor.a"; sourceTree = BUILT_PRODUCTS_DIR; }; F2F92F78EDA32DE889084648A19D9103 /* buffer_dec.c */ = {isa = PBXFileReference; includeInIndex = 1; name = buffer_dec.c; path = src/dec/buffer_dec.c; sourceTree = ""; }; F31F3B4D718BB4FFF5B66BD7227845CE /* SSLContext.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = SSLContext.cpp; path = folly/io/async/SSLContext.cpp; sourceTree = ""; }; - F33866B0B58564BAA15AE899ECD4ACA2 /* RCTFollyConvert.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTFollyConvert.h; sourceTree = ""; }; F33F69F3F73D5176AEE6AAB0BD70BDE4 /* zh-Hant.lproj */ = {isa = PBXFileReference; includeInIndex = 1; name = "zh-Hant.lproj"; path = "Objective-C/TOCropViewController/Resources/zh-Hant.lproj"; sourceTree = ""; }; - F349419C2C1195ED39C34882ACD3D593 /* QBVideoIconView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = QBVideoIconView.h; path = ios/QBImagePicker/QBImagePicker/QBVideoIconView.h; sourceTree = ""; }; F34A4650F7A1ED079B718C89BFA1545E /* SKDescriptorMapper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SKDescriptorMapper.h; path = iOS/Plugins/FlipperKitLayoutPlugin/FlipperKitLayoutPlugin/SKDescriptorMapper.h; sourceTree = ""; }; - F350D11E6B0AE7F28BB423D9DEA0EF33 /* RNCSafeAreaProviderManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCSafeAreaProviderManager.h; path = ios/SafeAreaView/RNCSafeAreaProviderManager.h; sourceTree = ""; }; - F37A19F4AEAF4D02ACEA6DCD9C01225B /* QBImagePickerController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = QBImagePickerController.h; path = ios/QBImagePicker/QBImagePicker/QBImagePickerController.h; sourceTree = ""; }; + F36486BDD5A4BBAF53668B3074195C85 /* EXVideoThumbnails.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = EXVideoThumbnails.debug.xcconfig; sourceTree = ""; }; + F3816D381316008801DBC28B7BF8FB1D /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; F381A046A86C1216B2F66D645A3AED0D /* UniqueInstance.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = UniqueInstance.cpp; path = folly/detail/UniqueInstance.cpp; sourceTree = ""; }; - F39F75CD0519FDEC289CE7B6DD93F1E1 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; F3B630E67519DA0855AEA8E3CE72715F /* FIRCLSFileManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSFileManager.h; path = Crashlytics/Crashlytics/Models/FIRCLSFileManager.h; sourceTree = ""; }; F3BB7CF7803741C9CF1DCD07692FC497 /* ScheduledRSocketResponder.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = ScheduledRSocketResponder.cpp; path = rsocket/internal/ScheduledRSocketResponder.cpp; sourceTree = ""; }; - F3C71100E34406E799C96C08C5F30641 /* UMLogManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMLogManager.h; sourceTree = ""; }; - F3CA9C25F6C5EEB7BBC71244E41A0179 /* EXAppleAuthenticationRequest.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXAppleAuthenticationRequest.h; path = EXAppleAuthentication/EXAppleAuthenticationRequest.h; sourceTree = ""; }; F3E9EDA4508F3BA09D91D4FAA35B68E4 /* MemoryFile_Win32.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = MemoryFile_Win32.cpp; path = Core/MemoryFile_Win32.cpp; sourceTree = ""; }; + F401D73CEB90888EAF4B4FA4B04C2D01 /* RCTDatePicker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTDatePicker.h; sourceTree = ""; }; F40A53185836579E30C3EB206F36EFB9 /* IPAddress.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = IPAddress.h; path = folly/detail/IPAddress.h; sourceTree = ""; }; + F40F806F534E3396E5FB95C458A3DCA6 /* JsArgumentHelpers-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "JsArgumentHelpers-inl.h"; sourceTree = ""; }; F410FF0BB5E0374104F6E01F589707E1 /* SDImageCoderHelper.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageCoderHelper.m; path = SDWebImage/Core/SDImageCoderHelper.m; sourceTree = ""; }; + F4177AB1FB054080AFD9818BDD6EB9B2 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; F42428EBE2A581D39BBA5A76C54A6366 /* EventBaseBackendBase.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EventBaseBackendBase.h; path = folly/io/async/EventBaseBackendBase.h; sourceTree = ""; }; F444815D1ACE7BF9CB9E1DC1B600F360 /* openssl_md5_one.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = openssl_md5_one.cpp; path = Core/aes/openssl/openssl_md5_one.cpp; sourceTree = ""; }; - F45D686FDB1D5BFC093C6D094A0ACCE5 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; F4676669FD13B7DAB22D0BFFD5491780 /* FBLPromiseError.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBLPromiseError.m; path = Sources/FBLPromises/FBLPromiseError.m; sourceTree = ""; }; - F47128CE98F8CCF5519A45D50045677F /* YGStyle.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = YGStyle.cpp; path = yoga/YGStyle.cpp; sourceTree = ""; }; F48164D05236D968CFF3D9C51382E196 /* bn.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = bn.h; path = ios/include/openssl/bn.h; sourceTree = ""; }; - F4C6B9A8AC5AD667E97A4CD7AE2FA0B3 /* EXSessionUploadTaskDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = EXSessionUploadTaskDelegate.h; sourceTree = ""; }; + F483F9DD2042D4D177D18F5507954087 /* RCTConvert+CoreLocation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RCTConvert+CoreLocation.h"; sourceTree = ""; }; + F491BAA0FEC77EE836DE377F8EC3BEF9 /* ARTContainer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ARTContainer.h; path = ios/ARTContainer.h; sourceTree = ""; }; + F49FFE22DD8A2C906F3B99017B153065 /* REACondNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REACondNode.m; sourceTree = ""; }; + F4F685E59CA20E3A8D923016C0BD2E5D /* RNNotificationEventHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNNotificationEventHandler.h; path = RNNotifications/RNNotificationEventHandler.h; sourceTree = ""; }; F530F43983154FD7CA8E3007F576E52D /* ExecutorWithPriority.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = ExecutorWithPriority.cpp; path = folly/executors/ExecutorWithPriority.cpp; sourceTree = ""; }; F56CDC8B5D61606D9B183428F20D7D0F /* IOBufQueue.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = IOBufQueue.h; path = folly/io/IOBufQueue.h; sourceTree = ""; }; F570304EB016E938ADF33BC841967810 /* diy-fp.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "diy-fp.h"; path = "double-conversion/diy-fp.h"; sourceTree = ""; }; - F57FA8D2DBFF8C1AD38B570DD28EE95B /* EXWebBrowser.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXWebBrowser.m; path = EXWebBrowser/EXWebBrowser.m; sourceTree = ""; }; - F58267D4AF5DDBE52E92608956536334 /* UIImage+Resize.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIImage+Resize.m"; path = "ios/src/UIImage+Resize.m"; sourceTree = ""; }; + F57DC3AF076F8144C6408C3C79755B62 /* BSG_KSMach.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSMach.h; sourceTree = ""; }; + F58CCB42F2B72162B48CEC5AA4C952C2 /* RCTTypeSafety.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RCTTypeSafety.release.xcconfig; sourceTree = ""; }; F59079500F70E8EF795BE4C25D289C9F /* Observables.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = Observables.cpp; path = yarpl/observable/Observables.cpp; sourceTree = ""; }; + F5B296D95D5EC9D4EBE12A5EB082B7A3 /* RCTConstants.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTConstants.m; sourceTree = ""; }; F5B69ACDE600B57F0CFEF501D0CD65F5 /* FrameSerializer_v1_0.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = FrameSerializer_v1_0.cpp; path = rsocket/framing/FrameSerializer_v1_0.cpp; sourceTree = ""; }; F5BBB2B4EF78325EA09088754BC73C97 /* TOCropOverlayView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = TOCropOverlayView.m; path = "Objective-C/TOCropViewController/Views/TOCropOverlayView.m"; sourceTree = ""; }; - F5CD8826F69E4326D2A1828095C86A59 /* RCTTransformAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTransformAnimatedNode.h; sourceTree = ""; }; + F5D8A37F434D48BEC54CB660B1659BAF /* ARTGroup.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ARTGroup.h; path = ios/ARTGroup.h; sourceTree = ""; }; F5EED8B3D27FEB3E08D282761E4BE616 /* FIRCLSUnwind_x86.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSUnwind_x86.h; path = Crashlytics/Crashlytics/Unwind/FIRCLSUnwind_x86.h; sourceTree = ""; }; - F5F6523DD6356BDA04307C782B8DF005 /* JSDeltaBundleClient.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = JSDeltaBundleClient.h; sourceTree = ""; }; - F5F84D10EF74634D0FCB13129D4B8F22 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; F6107D31E48E3B71F6CD5D021359651F /* HazptrThreadPoolExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = HazptrThreadPoolExecutor.h; path = folly/synchronization/HazptrThreadPoolExecutor.h; sourceTree = ""; }; F631A2AFFC433D3B38BDDE03D8404DC5 /* SKStateUpdateCPPWrapper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SKStateUpdateCPPWrapper.h; path = iOS/FlipperKit/SKStateUpdateCPPWrapper.h; sourceTree = ""; }; F63D54002B58ECAD9D49158E50EA4799 /* FIRCLSSerializeSymbolicatedFramesOperation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCLSSerializeSymbolicatedFramesOperation.m; path = Crashlytics/Crashlytics/Operations/Symbolication/FIRCLSSerializeSymbolicatedFramesOperation.m; sourceTree = ""; }; F64379EA13F2261CF4A270CCE1A61C06 /* FIRCLSDefines.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSDefines.h; path = Crashlytics/Crashlytics/Helpers/FIRCLSDefines.h; sourceTree = ""; }; - F650D5A2DDB953E8551DB0E070D2CF99 /* rn-fetch-blob.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = "rn-fetch-blob.podspec"; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + F64EE5366B123EEB8C5ADCF2B1240B7A /* RCTTouchEvent.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTTouchEvent.m; sourceTree = ""; }; F6595F56D417C1B6B35E1F892D5D7E1A /* Flipper-DoubleConversion-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Flipper-DoubleConversion-prefix.pch"; sourceTree = ""; }; - F67E5206CC7CAF83831158393EBF1033 /* RNNotifications.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNNotifications.h; path = RNNotifications/RNNotifications.h; sourceTree = ""; }; - F694ADF7E89F02260066306FE0DFC658 /* RCTEventEmitter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTEventEmitter.m; sourceTree = ""; }; + F667ABA327A20FB5B772C3C09561E1D0 /* react-native-appearance.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "react-native-appearance.release.xcconfig"; sourceTree = ""; }; + F69088FF9137E1A22EA0E9359EBF6B96 /* RCTComponentData.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTComponentData.m; sourceTree = ""; }; F6A7DF13027A944C7B28667B6B41ED7C /* GDTCORUploadCoordinator.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GDTCORUploadCoordinator.m; path = GoogleDataTransport/GDTCORLibrary/GDTCORUploadCoordinator.m; sourceTree = ""; }; + F6B30153BFAEAFB9FAFBEB193DD2597F /* REATransitionManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REATransitionManager.m; sourceTree = ""; }; F6B98771221062A48A96595D56507876 /* SDImageHEICCoder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageHEICCoder.h; path = SDWebImage/Core/SDImageHEICCoder.h; sourceTree = ""; }; F6B9C4ACDF80EE73CCA18B0CF8E5341F /* cost_neon.c */ = {isa = PBXFileReference; includeInIndex = 1; name = cost_neon.c; path = src/dsp/cost_neon.c; sourceTree = ""; }; F6CBFD8F076A8032BAA13550F10D0C41 /* FutureDAG.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FutureDAG.h; path = folly/experimental/FutureDAG.h; sourceTree = ""; }; F6CE4A460F7E91A4B4BD5716E288A58D /* Demangle.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Demangle.h; path = folly/Demangle.h; sourceTree = ""; }; F6D7B6463EE8B3B7BAB6872230EE9386 /* MMKVHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MMKVHandler.h; path = iOS/MMKV/MMKV/MMKVHandler.h; sourceTree = ""; }; + F6DA36798F450E3C1D96AEBA2346B891 /* YGLayout.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YGLayout.h; path = yoga/YGLayout.h; sourceTree = ""; }; + F6DD8117884B527CC1DFAF11593CFDA3 /* RCTLog.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTLog.h; sourceTree = ""; }; F6E30BCF4DA423CAEDE6ED4073EF2A63 /* FIRCLSURLSessionDataTask.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSURLSessionDataTask.h; path = Crashlytics/Crashlytics/FIRCLSURLSession/Tasks/FIRCLSURLSessionDataTask.h; sourceTree = ""; }; - F70F3F6CE0625D11C3ECE4FC7838EF51 /* RNFetchBlobFS.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNFetchBlobFS.m; path = ios/RNFetchBlobFS.m; sourceTree = ""; }; F71EBF73F354B475D465FF6DE9A66707 /* libReact-RCTBlob.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libReact-RCTBlob.a"; path = "libReact-RCTBlob.a"; sourceTree = BUILT_PRODUCTS_DIR; }; - F72EC0773F19BCCA5A601D8F80BFAB38 /* RCTDisplayLink.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTDisplayLink.m; sourceTree = ""; }; - F732528299336083E0EC2A0D9EB1D5BC /* UMAppLoaderProvider.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = UMAppLoaderProvider.m; path = UMAppLoader/UMAppLoaderProvider.m; sourceTree = ""; }; - F73BE8E26076DC528C032DAD41B0A191 /* REACallFuncNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REACallFuncNode.m; sourceTree = ""; }; + F720D308CF7071639F49D7BABE3FD505 /* Yoga-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Yoga-prefix.pch"; sourceTree = ""; }; F74394FA55F7070CD095F5B64CE24EC2 /* Codel.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Codel.h; path = folly/executors/Codel.h; sourceTree = ""; }; - F7532FDDCD1684DD12B86151F0A1AD2E /* UMPermissionsMethodsDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMPermissionsMethodsDelegate.h; path = UMPermissionsInterface/UMPermissionsMethodsDelegate.h; sourceTree = ""; }; + F752F688760BC50034CC98F8CB3C0670 /* experiments-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "experiments-inl.h"; sourceTree = ""; }; + F75E69124B8637524684F5C0D01634D4 /* BSG_KSCrash.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrash.h; sourceTree = ""; }; F76168BDBB53E0EB4EC8CF751841B18E /* StreamFragmentAccumulator.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = StreamFragmentAccumulator.cpp; path = rsocket/statemachine/StreamFragmentAccumulator.cpp; sourceTree = ""; }; - F76520659EA6968F94FC4F23481FF279 /* RNPushKit.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNPushKit.m; path = RNNotifications/RNPushKit.m; sourceTree = ""; }; F7983F1DB431407A7457D64EC5165357 /* whrlpool.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = whrlpool.h; path = ios/include/openssl/whrlpool.h; sourceTree = ""; }; - F7A52421AC4E1624FA229043B7EDD69C /* RCTSegmentedControlManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSegmentedControlManager.h; sourceTree = ""; }; - F7B12EF93162BD019F19684ACA1D380C /* UMFaceDetectorInterface.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = UMFaceDetectorInterface.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - F7B7F58C0DD115D53416979A4429C89B /* RNFetchBlobRequest.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNFetchBlobRequest.m; path = ios/RNFetchBlobRequest.m; sourceTree = ""; }; F7BF8F2CDC46F4D4D6CABE542F655172 /* sorted_vector_types.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = sorted_vector_types.h; path = folly/sorted_vector_types.h; sourceTree = ""; }; + F7C026615F683DD5D47F4F6AEDE5710E /* READebugNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = READebugNode.h; sourceTree = ""; }; F7D0D31313F3FBE3369B22495015B0A1 /* TOCropToolbar.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = TOCropToolbar.m; path = "Objective-C/TOCropViewController/Views/TOCropToolbar.m"; sourceTree = ""; }; F7F62AC197CF55D1A832B996E6FD49EA /* ParallelMap-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "ParallelMap-inl.h"; path = "folly/gen/ParallelMap-inl.h"; sourceTree = ""; }; - F7F852944B7F82BB22DC3A97A1E193B7 /* RNCAsyncStorage.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCAsyncStorage.m; path = ios/RNCAsyncStorage.m; sourceTree = ""; }; - F8039EED794F2A04F14695B7D2404C45 /* RNJitsiMeetViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNJitsiMeetViewManager.m; path = ios/RNJitsiMeetViewManager.m; sourceTree = ""; }; + F82B3731EBF63DA2A05EFEF28118970A /* REAOperatorNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REAOperatorNode.h; sourceTree = ""; }; + F84514BD2584D0D2BF2831703015296B /* ARTText.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = ARTText.m; path = ios/ARTText.m; sourceTree = ""; }; F84856F186668EBD41DDE6BD2BE7C867 /* rpc_compat.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = rpc_compat.h; path = src/event2/rpc_compat.h; sourceTree = ""; }; - F84ED50C4DB2FFF9B7D663F40AB0BA31 /* RCTMaskedView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTMaskedView.m; sourceTree = ""; }; - F86EF7F7A35F79FBD533532E642F5B86 /* BugsnagNotifier.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagNotifier.m; sourceTree = ""; }; F86F12E26ACB0183CD35EFE067E43EA1 /* Sse.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = Sse.cpp; path = folly/detail/Sse.cpp; sourceTree = ""; }; + F87C9ADF32002A888101A01C46CD1B2B /* BSGSerialization.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSGSerialization.h; sourceTree = ""; }; F881D6AA1EC6DEBD0DFBE477EE6BD3A9 /* JSONSchema.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = JSONSchema.h; path = folly/experimental/JSONSchema.h; sourceTree = ""; }; - F8841CAB389D5864BBD0F282D4313F21 /* RCTTVNavigationEventEmitter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTTVNavigationEventEmitter.h; path = React/CoreModules/RCTTVNavigationEventEmitter.h; sourceTree = ""; }; + F88847FD30049DAC67D35FC7B5D887C2 /* UMTaskManagerInterface.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMTaskManagerInterface.release.xcconfig; sourceTree = ""; }; + F88FBC0B1C85206F107D8D5FF9ED34C8 /* RCTUIManagerUtils.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTUIManagerUtils.m; sourceTree = ""; }; + F894B9A16ED28923C5B8F84CD39FB70D /* RNGestureHandlerState.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNGestureHandlerState.h; path = ios/RNGestureHandlerState.h; sourceTree = ""; }; F8BD92E33238D2D4F483ACD6EF3BB5C7 /* hmac.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = hmac.h; path = ios/include/openssl/hmac.h; sourceTree = ""; }; - F8E55E3F385908F2072A92C91ACFD718 /* BugsnagSessionTracker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagSessionTracker.h; sourceTree = ""; }; - F8F812C7C99BC22085F817A5B36D4BF1 /* BugsnagKSCrashSysInfoParser.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagKSCrashSysInfoParser.m; sourceTree = ""; }; F8FA5857F1B0D25AFEEE689587A6A350 /* BitIteratorDetail.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = BitIteratorDetail.h; path = folly/container/detail/BitIteratorDetail.h; sourceTree = ""; }; - F90C6310B29B830681C7BE08DF73EB6E /* ReactNativeVersion.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = ReactNativeVersion.h; sourceTree = ""; }; + F91149FD2C365CA0947E2918BDFB07FD /* BugsnagCrashReport.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagCrashReport.h; sourceTree = ""; }; F92000338C16FC95FC27E8527C6DC587 /* GCDAsyncUdpSocket.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GCDAsyncUdpSocket.h; path = Source/GCD/GCDAsyncUdpSocket.h; sourceTree = ""; }; F9298904FABCAC71BA497AB2F973AEB6 /* FIRInstallationsAPIService.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstallationsAPIService.m; path = FirebaseInstallations/Source/Library/InstallationsAPI/FIRInstallationsAPIService.m; sourceTree = ""; }; F9459B3044F10D2D74FC214AAB3E3C68 /* TOCropViewConstants.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TOCropViewConstants.h; path = "Objective-C/TOCropViewController/Constants/TOCropViewConstants.h"; sourceTree = ""; }; F954B32AC8888CE3FF97711D2A6FBB76 /* FIRCLSCompoundOperation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCLSCompoundOperation.m; path = Crashlytics/Shared/FIRCLSOperation/FIRCLSCompoundOperation.m; sourceTree = ""; }; + F955A5A06194B758ECF9B4F0FFC6903F /* RNRootView.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNRootView.release.xcconfig; sourceTree = ""; }; F958876A082BF810B342435CE3FB5AF6 /* libRCTTypeSafety.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libRCTTypeSafety.a; path = libRCTTypeSafety.a; sourceTree = BUILT_PRODUCTS_DIR; }; - F966C8F147E0EBC2FB6FA6061DD5CF3E /* UMFaceDetectorManagerProvider.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMFaceDetectorManagerProvider.h; path = UMFaceDetectorInterface/UMFaceDetectorManagerProvider.h; sourceTree = ""; }; + F95DA952A03887E593F6A72FF89BD818 /* RCTVirtualTextViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTVirtualTextViewManager.m; sourceTree = ""; }; F96BE4D6D572B0CC44809DDD0B30A502 /* Checksum.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Checksum.h; path = Core/crc32/Checksum.h; sourceTree = ""; }; - F979AC57115823CDBF8EB4191491E462 /* RCTAccessibilityManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTAccessibilityManager.h; path = React/CoreModules/RCTAccessibilityManager.h; sourceTree = ""; }; + F98C79CAC54C43BA4A42395878C3370E /* LICENCE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENCE; sourceTree = ""; }; F9A0DB1AEB9449FBF246B6A0D81E30C8 /* lossless_enc_mips_dsp_r2.c */ = {isa = PBXFileReference; includeInIndex = 1; name = lossless_enc_mips_dsp_r2.c; path = src/dsp/lossless_enc_mips_dsp_r2.c; sourceTree = ""; }; F9A1674592AC805B7AACC85CC5841276 /* SKBufferingPlugin.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = SKBufferingPlugin.mm; path = iOS/Plugins/FlipperKitNetworkPlugin/FlipperKitNetworkPlugin/SKBufferingPlugin.mm; sourceTree = ""; }; - F9A5081C839BB5DA295E2AE5598782F1 /* React-CoreModules.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-CoreModules.debug.xcconfig"; sourceTree = ""; }; - F9BD42DF524B96A94C651E9CEF5F927D /* RNFBApp-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNFBApp-dummy.m"; sourceTree = ""; }; + F9BD899F9008AC9D049273A772876009 /* EXAudioSessionManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXAudioSessionManager.h; path = EXAV/EXAudioSessionManager.h; sourceTree = ""; }; + F9CD60B851F051B0A60BEE9A7C62222C /* RNPushKitEventHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNPushKitEventHandler.h; path = RNNotifications/RNPushKitEventHandler.h; sourceTree = ""; }; + F9DBC5769059324CA6BBEA5F9E1A702E /* RCTSliderManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSliderManager.m; sourceTree = ""; }; + F9F2A50B03D025FC1211F91251E6DEA7 /* BSG_KSCrashSentry_CPPException.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSCrashSentry_CPPException.mm; sourceTree = ""; }; FA003619DC99BA599FA4F71F68CD7770 /* FIRInstallationsIDController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstallationsIDController.m; path = FirebaseInstallations/Source/Library/InstallationsIDController/FIRInstallationsIDController.m; sourceTree = ""; }; + FA09A621CBF22DF792A2770940A58C7F /* ModuleRegistry.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = ModuleRegistry.cpp; sourceTree = ""; }; FA130D008B802681B6F2F5E96A558A82 /* FIRAEvent+Internal.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "FIRAEvent+Internal.m"; path = "Crashlytics/Crashlytics/Helpers/FIRAEvent+Internal.m"; sourceTree = ""; }; + FA199344659BD6BBA1F44843A8F1073B /* RNPushKitEventListener.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNPushKitEventListener.m; path = RNNotifications/RNPushKitEventListener.m; sourceTree = ""; }; FA2E711743251592466DE361107441A7 /* Frame.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Frame.h; path = rsocket/framing/Frame.h; sourceTree = ""; }; - FA4724C19C35BF54DCFD2A635A716A11 /* RCTSlider.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSlider.h; sourceTree = ""; }; + FA44A39B07E58438CDA713C03FE6BB01 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; FA4E4A0E0EC02A2A102D674CFD47678D /* bit_reader_utils.c */ = {isa = PBXFileReference; includeInIndex = 1; name = bit_reader_utils.c; path = src/utils/bit_reader_utils.c; sourceTree = ""; }; - FA7C788A5A6CD1D7002EDCDC20F9879D /* EXAppleAuthentication.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXAppleAuthentication.h; path = EXAppleAuthentication/EXAppleAuthentication.h; sourceTree = ""; }; - FA84CDE0AD4B4DDBE3EE89E763E127C9 /* RCTUIManagerUtils.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTUIManagerUtils.m; sourceTree = ""; }; - FA8FAA1FD937DAED70D1867C3A45EA3F /* RCTDevMenu.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTDevMenu.h; path = React/CoreModules/RCTDevMenu.h; sourceTree = ""; }; - FA9255819F526C93F918A5D638E130A5 /* EXAudioRecordingPermissionRequester.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXAudioRecordingPermissionRequester.h; path = EXAV/EXAudioRecordingPermissionRequester.h; sourceTree = ""; }; - FAA36A69548EACA133D443DB56EB00CF /* RNBootSplash-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNBootSplash-dummy.m"; sourceTree = ""; }; + FA64382D09BA132AF7E961533E75C9F2 /* RNVectorIconsManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNVectorIconsManager.h; path = RNVectorIconsManager/RNVectorIconsManager.h; sourceTree = ""; }; + FAA5397CB7B0A8217558A3B79B2C550B /* Yoga.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = Yoga.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + FAB2F8113C0E0E0ED8539E5B2D144E9C /* UMAppLifecycleService.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMAppLifecycleService.h; sourceTree = ""; }; + FAB7D53A0F693908B7B13A124A59B36C /* RNCSlider.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCSlider.h; path = ios/RNCSlider.h; sourceTree = ""; }; FACEE59B6126610AB5919182FC9F4842 /* FIRCLSCompactUnwind.c */ = {isa = PBXFileReference; includeInIndex = 1; name = FIRCLSCompactUnwind.c; path = Crashlytics/Crashlytics/Unwind/Compact/FIRCLSCompactUnwind.c; sourceTree = ""; }; - FAD52342A2D2C5F4134E4EDA79DF1AF6 /* EXReactNativeUserNotificationCenterProxy.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXReactNativeUserNotificationCenterProxy.h; path = EXPermissions/EXReactNativeUserNotificationCenterProxy.h; sourceTree = ""; }; + FADB94CE7A937E474B73DFEED2AAB8A9 /* RCTDevSettings.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTDevSettings.mm; sourceTree = ""; }; FAE319DCADB617279454E8752623AF1D /* FIRCoreDiagnostics.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCoreDiagnostics.m; path = Firebase/CoreDiagnostics/FIRCDLibrary/FIRCoreDiagnostics.m; sourceTree = ""; }; - FB1F5F8F8C6D0F39D6E8DE7625A747DE /* CallInvoker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CallInvoker.h; path = ReactCommon/CallInvoker.h; sourceTree = ""; }; + FAEE8FD0388A3BDD44335132BDAF74DD /* RNFBJSON.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNFBJSON.h; path = ios/RNFBApp/RNFBJSON.h; sourceTree = ""; }; + FAFE9A5B9A255E22283C818BD0A24D19 /* RCTUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTUtils.h; sourceTree = ""; }; + FAFEC687058902E3AEA886B5E43F9722 /* jsilib-posix.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = "jsilib-posix.cpp"; sourceTree = ""; }; FB209D641C6FF865E464757D6868CBFD /* FIRCLSMachO.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSMachO.h; path = Crashlytics/Shared/FIRCLSMachO/FIRCLSMachO.h; sourceTree = ""; }; - FB2A411E2DA724FE82503325B509E909 /* RCTActionSheetManager.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTActionSheetManager.mm; sourceTree = ""; }; - FB2D495D2E4C57115567F408F1DD4A0E /* BSG_KSSignalInfo.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSSignalInfo.c; sourceTree = ""; }; - FB423AF73A370592C088D3241E066793 /* react-native-slider.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = "react-native-slider.podspec"; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - FB84F7412C58504835C6E61D33EB4C5D /* RCTNetworkPlugins.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTNetworkPlugins.h; path = Libraries/Network/RCTNetworkPlugins.h; sourceTree = ""; }; + FB31C81BA75EA1A415012B9FB49FAA29 /* RCTFrameUpdate.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTFrameUpdate.m; sourceTree = ""; }; + FB67DE7570F66944A6D8D9DCE33229B0 /* UMSensorsInterface.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMSensorsInterface.debug.xcconfig; sourceTree = ""; }; + FB6C500D775966BE59D9E49191929128 /* BugsnagConfiguration.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagConfiguration.m; sourceTree = ""; }; FB8BBBFBF353EA7A6878FBEF5405399E /* Arena-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "Arena-inl.h"; path = "folly/memory/Arena-inl.h"; sourceTree = ""; }; FB8C997E098B1165386E43EC5E5A4948 /* HazptrObj.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = HazptrObj.h; path = folly/synchronization/HazptrObj.h; sourceTree = ""; }; - FBB2FE1FA17DF5D5B67E9F37D47EDDBA /* RNFBVersion.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNFBVersion.h; path = ios/RNFBApp/RNFBVersion.h; sourceTree = ""; }; FBCDC1026DD47968B433DA0A23D88E06 /* FIRCLSInternalLogging.c */ = {isa = PBXFileReference; includeInIndex = 1; name = FIRCLSInternalLogging.c; path = Crashlytics/Crashlytics/Helpers/FIRCLSInternalLogging.c; sourceTree = ""; }; FBDA67BB5B0B0C09FF4B282746C106E2 /* MMKV_IO.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = MMKV_IO.cpp; path = Core/MMKV_IO.cpp; sourceTree = ""; }; FBEEEEE744AD9DCD6162B1C52F82FDB2 /* bignum-dtoa.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = "bignum-dtoa.cc"; path = "double-conversion/bignum-dtoa.cc"; sourceTree = ""; }; - FC1497F51ED6BD598D5BE9AE24266637 /* RCTDiffClampAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTDiffClampAnimatedNode.h; sourceTree = ""; }; - FC2686CF9ED2ECCBE0D4CD6BE1DA146F /* RNCAppearance.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCAppearance.h; path = ios/Appearance/RNCAppearance.h; sourceTree = ""; }; - FC2860AA6BBDB3E9FB279C716016411E /* rn-fetch-blob.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "rn-fetch-blob.release.xcconfig"; sourceTree = ""; }; + FBF3340032616F8432880795D81EF2BC /* RNCSafeAreaShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCSafeAreaShadowView.m; path = ios/SafeAreaView/RNCSafeAreaShadowView.m; sourceTree = ""; }; + FBFC807669C93C25E3305116FCDC8837 /* UMPermissionsInterface.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMPermissionsInterface.release.xcconfig; sourceTree = ""; }; FC2C9E283D60951BBF3F02223A762F22 /* MemoryMapping.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = MemoryMapping.cpp; path = folly/system/MemoryMapping.cpp; sourceTree = ""; }; + FC39D38061F4CD55842A5CEA500B9611 /* RCTSurfaceRootView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSurfaceRootView.h; sourceTree = ""; }; + FC45955B628228E0D0C9521BCC8F3395 /* CoreModulesPlugins.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = CoreModulesPlugins.mm; sourceTree = ""; }; FC5D54C7C94EC93BFDA6EB43F9CBB6A2 /* GULSceneDelegateSwizzler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULSceneDelegateSwizzler.h; path = GoogleUtilities/SceneDelegateSwizzler/Private/GULSceneDelegateSwizzler.h; sourceTree = ""; }; - FC63095311C14548106688A9B3279C75 /* RecoverableError.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RecoverableError.h; sourceTree = ""; }; - FC6DEDC1F8CEF9F44D32EFABB03691ED /* RCTSafeAreaView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSafeAreaView.h; sourceTree = ""; }; FC9139DCCA0961588C7B273BD507A84A /* Flipper-RSocket-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Flipper-RSocket-prefix.pch"; sourceTree = ""; }; - FC92CC55D6BAF41621AB8ADCBB313321 /* UMCameraInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMCameraInterface.h; path = UMCameraInterface/UMCameraInterface.h; sourceTree = ""; }; - FC9F0961A88737D9DF6EB115C4E9EDCB /* RNDateTimePicker.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNDateTimePicker.debug.xcconfig; sourceTree = ""; }; FCA28C7B67B55AC4450519080C138415 /* CertificateUtils.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = CertificateUtils.cpp; path = xplat/Flipper/CertificateUtils.cpp; sourceTree = ""; }; - FCAA6567C7D6EDABBBE4182E6B9150DC /* MessageQueueThread.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = MessageQueueThread.h; sourceTree = ""; }; + FCA5668178EC3E3E47664DECB208150F /* de.lproj */ = {isa = PBXFileReference; includeInIndex = 1; name = de.lproj; path = ios/QBImagePicker/QBImagePicker/de.lproj; sourceTree = ""; }; + FCA8B8FA3AC9F624A5A2D5D3F04AE912 /* EXAV.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = EXAV.release.xcconfig; sourceTree = ""; }; + FCABDB9A13F2704E7EDF314450D91B28 /* Bugsnag.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = Bugsnag.m; sourceTree = ""; }; + FCB0C513BB5929DB720B39D2081ADD7B /* REAAlwaysNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REAAlwaysNode.m; sourceTree = ""; }; FCB167E238DAE7C051F34D90252B9E55 /* ExceptionWrapper.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = ExceptionWrapper.cpp; path = folly/ExceptionWrapper.cpp; sourceTree = ""; }; - FCB9F9854FA0C1EF173F1072988BC27B /* UMReactLogHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = UMReactLogHandler.m; sourceTree = ""; }; FCBAD1AAE01EBF37B16158C287F3DACA /* PublisherBase.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PublisherBase.h; path = rsocket/statemachine/PublisherBase.h; sourceTree = ""; }; FCBB2CEF07D023E0AAA53383EE462F01 /* ConcurrentBitSet.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ConcurrentBitSet.h; path = folly/ConcurrentBitSet.h; sourceTree = ""; }; FCCB6333386C1D0FD59A6F733F4DEC52 /* FIRCLSAsyncOperation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCLSAsyncOperation.m; path = Crashlytics/Crashlytics/Operations/FIRCLSAsyncOperation.m; sourceTree = ""; }; FCEFC073B804E1E31844C9345AAB122A /* Malloc.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Malloc.h; path = folly/memory/Malloc.h; sourceTree = ""; }; FCF61D9B2B75054A9A3185DDC609B7FF /* libSDWebImageWebPCoder.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libSDWebImageWebPCoder.a; path = libSDWebImageWebPCoder.a; sourceTree = BUILT_PRODUCTS_DIR; }; - FD08EEFC8959C748FB4439D751F1204F /* BugsnagBreadcrumb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagBreadcrumb.h; sourceTree = ""; }; FD0A87C22F99DC9A05A1B9880188B7C6 /* MemoryFile.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = MemoryFile.cpp; path = Core/MemoryFile.cpp; sourceTree = ""; }; + FD0EB7A71B4512820E6B538699BBDEB4 /* RNRootView.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNRootView.debug.xcconfig; sourceTree = ""; }; + FD1253FD65106E5F8C9ED11F094B1985 /* React-RCTAnimation-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-RCTAnimation-dummy.m"; sourceTree = ""; }; FD1254373F44E1E4D0387E98B7DEF301 /* FKUserDefaultsSwizzleUtility.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FKUserDefaultsSwizzleUtility.h; path = iOS/Plugins/FlipperKitUserDefaultsPlugin/FKUserDefaultsSwizzleUtility.h; sourceTree = ""; }; FD236DFE6817BBC71CF2436E1716C085 /* glog.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = glog.debug.xcconfig; sourceTree = ""; }; FD38BB00405FC9935354DC865D2EF86C /* TestSubscriber.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TestSubscriber.h; path = yarpl/flowable/TestSubscriber.h; sourceTree = ""; }; FD4034D4B159285AA34D05DFF251FBF8 /* muxinternal.c */ = {isa = PBXFileReference; includeInIndex = 1; name = muxinternal.c; path = src/mux/muxinternal.c; sourceTree = ""; }; + FD42B0C229601BD8089FE2D8A5E85AE2 /* EXHaptics.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = EXHaptics.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + FD4385FC9594D238BDC002A02351EEBD /* BugsnagSession.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagSession.h; sourceTree = ""; }; FD4DD47425531889D3309EDF0D15B61B /* OpenSSLUtils.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = OpenSSLUtils.cpp; path = folly/io/async/ssl/OpenSSLUtils.cpp; sourceTree = ""; }; - FD514DC6C839CAE30673C5D7D536281F /* Yoga.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = Yoga.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + FD504F6B161DA27F1ECFD41CC8AE035F /* QBImagePicker.storyboard */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = file.storyboard; name = QBImagePicker.storyboard; path = ios/QBImagePicker/QBImagePicker/QBImagePicker.storyboard; sourceTree = ""; }; FD520F76FBD80356DA1FF8BED46E0FD9 /* FIRCLSUserDefaults.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCLSUserDefaults.m; path = Crashlytics/Crashlytics/FIRCLSUserDefaults/FIRCLSUserDefaults.m; sourceTree = ""; }; - FD779AF4010DC2C19CCEF471E97AA35B /* ReactNativeART-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "ReactNativeART-dummy.m"; sourceTree = ""; }; + FD83084EF22D6863ED06EE147F615B17 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; FD92AE5268A7E9BFFCD0B589DA132519 /* FIRCLSApplication.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSApplication.h; path = Crashlytics/Crashlytics/Components/FIRCLSApplication.h; sourceTree = ""; }; - FDA84047F1F5ED482917193D6CD48E0A /* RNCSlider.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCSlider.m; path = ios/RNCSlider.m; sourceTree = ""; }; - FDC8CE850A3917F3DF541580B318EF49 /* RCTDevLoadingViewSetEnabled.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTDevLoadingViewSetEnabled.h; sourceTree = ""; }; + FDC9172EDAE66EF077AF11ECBFC39F8B /* ARTTextManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = ARTTextManager.h; sourceTree = ""; }; + FDCACD3292A92443EA5C6F7B4756FFB5 /* RNFBSharedUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNFBSharedUtils.h; path = ios/RNFBApp/RNFBSharedUtils.h; sourceTree = ""; }; + FDCE757E883801535E527A494EFF2452 /* RCTProfile.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTProfile.h; sourceTree = ""; }; FDD1BDA90B12D34A198B55EC675A007C /* GoogleUtilities.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = GoogleUtilities.release.xcconfig; sourceTree = ""; }; FDF02594F633048F439A30FA3C75542E /* obj_mac.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = obj_mac.h; path = ios/include/openssl/obj_mac.h; sourceTree = ""; }; + FDF89BB54E5CB2C32C6511C73C6B696E /* RCTLogBox.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTLogBox.mm; sourceTree = ""; }; + FE010D1614F02E0998ADD2B40B9D22E0 /* EvilIcons.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = EvilIcons.ttf; path = Fonts/EvilIcons.ttf; sourceTree = ""; }; FE03B59F2B5A0D48DBC11F41525B18BF /* Pods-ShareRocketChatRN-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Pods-ShareRocketChatRN-umbrella.h"; sourceTree = ""; }; FE1989B7C7E3997F367520FB2C934818 /* FirebaseCrashlytics.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = FirebaseCrashlytics.release.xcconfig; sourceTree = ""; }; - FE1BF3971DDA23472D1054E880C1F26D /* TurboModuleBinding.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = TurboModuleBinding.cpp; path = turbomodule/core/TurboModuleBinding.cpp; sourceTree = ""; }; FE1E812071397E31AE21DFF368B781B1 /* TOCropViewControllerBundle.bundle */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; name = TOCropViewControllerBundle.bundle; path = "TOCropViewController-TOCropViewControllerBundle.bundle"; sourceTree = BUILT_PRODUCTS_DIR; }; + FE26C3940DF317A6CE0C308355B10250 /* RCTMultipartStreamReader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTMultipartStreamReader.h; sourceTree = ""; }; FE2B7253C03CD7155EB7903E06BF55B7 /* bignum.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = bignum.cc; path = "double-conversion/bignum.cc"; sourceTree = ""; }; - FE2C47736CA1DF17AF7E1053300C2CCD /* React-CoreModules.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = "React-CoreModules.podspec"; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; FE3F9DB0E5B5FF537548C1B2957F1AA3 /* Latch.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Latch.h; path = rsocket/benchmarks/Latch.h; sourceTree = ""; }; + FE44C04F1ACFD7D5E1B381AA6113E68F /* REAAlwaysNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REAAlwaysNode.h; sourceTree = ""; }; FE4876C0BE018609FE8464CE7E29D818 /* Replaceable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Replaceable.h; path = folly/Replaceable.h; sourceTree = ""; }; FE4D8A84FB7AA243383EB8997F046C3D /* FIRInstallationsIIDStore.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstallationsIIDStore.m; path = FirebaseInstallations/Source/Library/IIDMigration/FIRInstallationsIIDStore.m; sourceTree = ""; }; + FE52B789345AAE5C936BEC0D8A3356DB /* RCTSurfaceView+Internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RCTSurfaceView+Internal.h"; sourceTree = ""; }; FE66489133152A3CAA539993880A3833 /* CancelingSubscriber.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CancelingSubscriber.h; path = yarpl/flowable/CancelingSubscriber.h; sourceTree = ""; }; + FE674740E3369E8BCF94F0EA5AECDCE5 /* RCTSegmentedControlManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSegmentedControlManager.m; sourceTree = ""; }; FE6D792B6328AAF68E46924D7F466631 /* AccessibilityResources.bundle */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; name = AccessibilityResources.bundle; path = "React-Core-AccessibilityResources.bundle"; sourceTree = BUILT_PRODUCTS_DIR; }; FE7108D1A09300F0B4643E2F114C5604 /* Futex.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Futex.h; path = folly/detail/Futex.h; sourceTree = ""; }; - FE789293614651E0AFF0065BE7CD5A36 /* EXFileSystemLocalFileHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXFileSystemLocalFileHandler.h; path = EXFileSystem/EXFileSystemLocalFileHandler.h; sourceTree = ""; }; + FE7537FE1407ADAA6AF0A6ED142A3757 /* NSValue+Interpolation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "NSValue+Interpolation.h"; sourceTree = ""; }; FE7B9294FF05AAFD1653E2104E10844A /* libReact-RCTAnimation.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libReact-RCTAnimation.a"; path = "libReact-RCTAnimation.a"; sourceTree = BUILT_PRODUCTS_DIR; }; FE90FA9B601FB9683BF2199D13C6EB0B /* SDFileAttributeHelper.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDFileAttributeHelper.m; path = SDWebImage/Private/SDFileAttributeHelper.m; sourceTree = ""; }; - FEAF9C0A27EF49490FA896A474F8210E /* RCTLayoutAnimationGroup.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTLayoutAnimationGroup.m; sourceTree = ""; }; + FE96E694E029497F63AC7FB6A4E93155 /* RCTUITextField.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTUITextField.m; sourceTree = ""; }; + FECCE8374AE75360321DC09317F9D24A /* RNCWebViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCWebViewManager.h; path = apple/RNCWebViewManager.h; sourceTree = ""; }; FEDD1BC76F5318F87A8A9A5E3782606E /* dec_mips32.c */ = {isa = PBXFileReference; includeInIndex = 1; name = dec_mips32.c; path = src/dsp/dec_mips32.c; sourceTree = ""; }; FEDD51C8D7A4DA2A1F4D6ECEEE7E9BDD /* FileUtil.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = FileUtil.cpp; path = folly/FileUtil.cpp; sourceTree = ""; }; FEEADAE395EFAD95880D4ADFC657B6A4 /* SDImageCodersManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageCodersManager.m; path = SDWebImage/Core/SDImageCodersManager.m; sourceTree = ""; }; + FEED02E25B5D1959FA6688FC441AEC3E /* RCTExceptionsManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTExceptionsManager.h; path = React/CoreModules/RCTExceptionsManager.h; sourceTree = ""; }; + FEEEF26665A6F41DBAC7E39F1E50E5A5 /* log.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = log.h; path = yoga/log.h; sourceTree = ""; }; FEF7E267E91ED2930A54BC3EF13DEAEE /* MallocImpl.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = MallocImpl.cpp; path = folly/memory/detail/MallocImpl.cpp; sourceTree = ""; }; FEF8D9DFAA679DB21C5FE73D9E13135D /* Flipper-RSocket.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Flipper-RSocket.release.xcconfig"; sourceTree = ""; }; - FEFA42E3A626B7AD203A6688EEB6BFBA /* react-native-mmkv-storage.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = "react-native-mmkv-storage.podspec"; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - FF05DCF7ACB2BA0BEF6AAFDE1F9C4D62 /* RCTRawTextViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTRawTextViewManager.h; sourceTree = ""; }; + FF03C6ABAC905D7EB2232B9074A00E2A /* QBImagePickerController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = QBImagePickerController.h; path = ios/QBImagePicker/QBImagePicker/QBImagePickerController.h; sourceTree = ""; }; FF1398287B0064DE78BA009BEFCBCCE3 /* Syslog.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Syslog.h; path = folly/portability/Syslog.h; sourceTree = ""; }; FF1CF0CD5E5832E3D28DE78D058DFE0A /* Subscriber.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Subscriber.h; path = yarpl/flowable/Subscriber.h; sourceTree = ""; }; FF2F229DBE2500EC6C68ED6457D17C63 /* FlipperCppWrapperPlugin.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FlipperCppWrapperPlugin.h; path = iOS/FlipperKit/CppBridge/FlipperCppWrapperPlugin.h; sourceTree = ""; }; FF384C992C01C2239A0D62107ADC442C /* SerialExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SerialExecutor.h; path = folly/executors/SerialExecutor.h; sourceTree = ""; }; - FF50F9DDA7E430DBF3FBA1FC7435A753 /* BSG_KSObjC.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSObjC.c; sourceTree = ""; }; - FF53E5999EFE1C088815317A94B7BEC5 /* RCTURLRequestDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTURLRequestDelegate.h; sourceTree = ""; }; - FF5849FF5BEEC0D287164A9684F89B35 /* RCTSinglelineTextInputView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSinglelineTextInputView.h; sourceTree = ""; }; + FF4E785CEBE31901F032772FB7660E08 /* RNGestureHandlerModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNGestureHandlerModule.h; path = ios/RNGestureHandlerModule.h; sourceTree = ""; }; FF6EBF5BB635669BCED603A25992E8DC /* MemoryFile_Android.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = MemoryFile_Android.cpp; path = Core/MemoryFile_Android.cpp; sourceTree = ""; }; FF74D46885CF5D55B318522AA6BC33D5 /* FIRCLSProfiling.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSProfiling.h; path = Crashlytics/Crashlytics/Helpers/FIRCLSProfiling.h; sourceTree = ""; }; FF79D3BE39F7CDEA58A9C6F8F575592F /* FIRCoreDiagnosticsConnector.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCoreDiagnosticsConnector.h; path = FirebaseCore/Sources/Private/FIRCoreDiagnosticsConnector.h; sourceTree = ""; }; - FF7ADB045F5E675A0C0EF9907423DBB4 /* EXKeepAwake.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = EXKeepAwake.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; FF958E28492C2570BC0408228DC7BC00 /* openssl_opensslconf.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = openssl_opensslconf.h; path = Core/aes/openssl/openssl_opensslconf.h; sourceTree = ""; }; FFA79E16FC807C133EC7583550C66FAE /* FLEXNetworkObserver.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FLEXNetworkObserver.h; path = iOS/Plugins/FlipperKitNetworkPlugin/SKIOSNetworkPlugin/FLEXNetworkLib/FLEXNetworkObserver.h; sourceTree = ""; }; - FFB00AB649FA9941515EEE7ABDDA2560 /* RCTAppState.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTAppState.h; path = React/CoreModules/RCTAppState.h; sourceTree = ""; }; + FFB82057B966842FA5FEEEB38804C72E /* RCTBaseTextViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBaseTextViewManager.h; sourceTree = ""; }; FFC75A8F5B5124B06C4B64D73C06B1C2 /* MiniPBCoder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MiniPBCoder.h; path = Core/MiniPBCoder.h; sourceTree = ""; }; - FFD260E5D2C738B6BF820B4023CCBCD3 /* RNRootView.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNRootView.release.xcconfig; sourceTree = ""; }; FFDC7746794AB17CFB7150820479DF40 /* libFlipper-RSocket.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libFlipper-RSocket.a"; path = "libFlipper-RSocket.a"; sourceTree = BUILT_PRODUCTS_DIR; }; - FFE1B62C7BFE512BE93821D330789AFC /* RCTVersion.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTVersion.m; sourceTree = ""; }; + FFEAA83950D372C14D677568D14A6065 /* react-native-mmkv-storage-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "react-native-mmkv-storage-dummy.m"; sourceTree = ""; }; + FFEABEB6EC10D3BF0EE60B8C738655EE /* BugsnagHandledState.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagHandledState.h; sourceTree = ""; }; FFF3356E34F6F52AADA25F98E8DEF2DD /* FBLPromise+Recover.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FBLPromise+Recover.h"; path = "Sources/FBLPromises/include/FBLPromise+Recover.h"; sourceTree = ""; }; + FFF6B215BBD3B7021EB2B5AEF5E907DC /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; /* End PBXFileReference section */ /* Begin PBXFrameworksBuildPhase section */ @@ -10653,6 +10593,13 @@ ); runOnlyForDeploymentPostprocessing = 0; }; + 26D899A231FCADB140CC28CCB7E32B49 /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + runOnlyForDeploymentPostprocessing = 0; + }; 27A01555D37CA6C94DBBB3A636D41383 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; @@ -10919,13 +10866,6 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 71E0160C7031B685E8FC30D8048CC93C /* Frameworks */ = { - isa = PBXFrameworksBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; 7443F1B2A78580A959FA5D0C75C97587 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; @@ -10975,14 +10915,14 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 882F9B3B5A3FEC45D0EE7885CF87A65C /* Frameworks */ = { + 839DBCCCE40D75A1100B2341249C0FD6 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - 8BBC7F99D4A9431BEE71174923CA3257 /* Frameworks */ = { + 882F9B3B5A3FEC45D0EE7885CF87A65C /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( @@ -11255,13 +11195,6 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - F54C531A7E8196B34EC14A91161008F6 /* Frameworks */ = { - isa = PBXFrameworksBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; F8A87BC1D31D34426155DE9CBFD62B20 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; @@ -11307,20 +11240,6 @@ /* End PBXFrameworksBuildPhase section */ /* Begin PBXGroup section */ - 0025E5E62E8239231D2BC905FC79FA13 /* Support Files */ = { - isa = PBXGroup; - children = ( - 14504F5E0923FCE3A204B710B6BC8118 /* Yoga.modulemap */, - 11A363990FC741E2B320C14C3DA11CA7 /* Yoga-dummy.m */, - 246B2548D9EB5B906A07596E70E8FA1A /* Yoga-prefix.pch */, - 8D21A54B95992B2830429F8EC0D7B72C /* Yoga-umbrella.h */, - 8884C0419AA63792B76075827E83C254 /* Yoga.debug.xcconfig */, - 53B21F3EF5F0D817E9D21979C164A79A /* Yoga.release.xcconfig */, - ); - name = "Support Files"; - path = "../../../../ios/Pods/Target Support Files/Yoga"; - sourceTree = ""; - }; 0058C43D1BE4A1B473917CD42128D430 /* FlipperKitHighlightOverlay */ = { isa = PBXGroup; children = ( @@ -11330,31 +11249,53 @@ name = FlipperKitHighlightOverlay; sourceTree = ""; }; - 016A0553A89829B70C552FDF9F3380A4 /* Support Files */ = { + 011437B540DCE3A42A6F68EE6355570D /* EXSessionTasks */ = { isa = PBXGroup; children = ( - BED74B93D61270A3B5A6EFEB36BA895F /* EXWebBrowser-dummy.m */, - 13EEA1AA3B6103677B576AA768061BB4 /* EXWebBrowser-prefix.pch */, - B6802B58999FB4D3FD7BAD1E70322ADF /* EXWebBrowser.debug.xcconfig */, - 9828A8AAB0301FDF0CAA66114B6B0F92 /* EXWebBrowser.release.xcconfig */, + 7F2324BE8CE2196436392EEFCAC75808 /* EXResumablesManager.h */, + 5CF9D92D59921D8CB9755CFCBB2553D5 /* EXResumablesManager.m */, + EB28D3250973C1CA62687AAD76B1FDBB /* EXSessionDownloadTaskDelegate.h */, + 35C05C495ECA8F3B74C1608D5698E1F0 /* EXSessionDownloadTaskDelegate.m */, + 430F4B67EE4F003FA1DE540BE9E380EF /* EXSessionResumableDownloadTaskDelegate.h */, + A06F44C23C163B4F269E96945E65FD7B /* EXSessionResumableDownloadTaskDelegate.m */, + 657C3F100BB64348AFD79C475359D850 /* EXSessionTaskDelegate.h */, + 0B917A53DD1B477441F60A343F5D9EEE /* EXSessionTaskDelegate.m */, + 791E9B40DA141889C655B1F8F4E60B64 /* EXSessionTaskDispatcher.h */, + C3F74582F685185BB30D3F472EAAB255 /* EXSessionTaskDispatcher.m */, + B65B9525F88F59AA26E7E09C4BA0FA6C /* EXSessionUploadTaskDelegate.h */, + EF7D53A6F3C391EE11DD45253670FB19 /* EXSessionUploadTaskDelegate.m */, ); - name = "Support Files"; - path = "../../../ios/Pods/Target Support Files/EXWebBrowser"; + name = EXSessionTasks; + path = EXFileSystem/EXSessionTasks; sourceTree = ""; }; - 0175D4A2285D7A014772C16BE04FBDB8 /* Video */ = { + 0179433A04E44A7F7BFEAF3097173143 /* Pod */ = { isa = PBXGroup; children = ( - 97E1C7B8094B7C41A67AEE34F254929F /* EXVideoManager.h */, - 9BD20D74B498C6B21EF33BCFA9DE5CE6 /* EXVideoManager.m */, - 8A390EE53429DCE819D5DE22D0679600 /* EXVideoPlayerViewController.h */, - 2A1A2A8E443074927DC64B652B49B61D /* EXVideoPlayerViewController.m */, - D2F0D83397E471D3655534A803037AA1 /* EXVideoPlayerViewControllerDelegate.h */, - 650AA7E9A990289D39BFFC4C3C6BEDCD /* EXVideoView.h */, - 7F2F55A0B34805D3D01FDC8A16EC53EE /* EXVideoView.m */, + 928B34EE018B6DC4BF8F81D20D6EB3CA /* EXAV.podspec */, ); - name = Video; - path = EXAV/Video; + name = Pod; + sourceTree = ""; + }; + 0186074694B1188C81EE62C417479AB2 /* DevSupport */ = { + isa = PBXGroup; + children = ( + 1A70B8388B60345E8A12BA338A0D30CF /* DevSupport */, + E4D1DA63560F26BC7099FBCEE54FB6E5 /* Inspector */, + ); + name = DevSupport; + sourceTree = ""; + }; + 01C28F99EE2280A53E20D6DEF73E4896 /* Support Files */ = { + isa = PBXGroup; + children = ( + 4BC5A56778094AD5E9BB7C4D450DBE43 /* EXKeepAwake-dummy.m */, + 73D9E2FF2A4AFB0FD309CDC830D9A284 /* EXKeepAwake-prefix.pch */, + A29FF112CEE9782433C936F7C277710C /* EXKeepAwake.debug.xcconfig */, + BDF0CA635BC628B26D2553BEA2D595B8 /* EXKeepAwake.release.xcconfig */, + ); + name = "Support Files"; + path = "../../../ios/Pods/Target Support Files/EXKeepAwake"; sourceTree = ""; }; 01D0E5565447530FB34C04EFE1D24C09 /* Support Files */ = { @@ -11369,61 +11310,28 @@ path = "../Target Support Files/MMKVCore"; sourceTree = ""; }; - 02415FCC4611A85031296AE92CB66F81 /* Yoga */ = { + 01F17663ED8D4C9C3FE9D812D3E33AA3 /* react-native-webview */ = { isa = PBXGroup; children = ( - 49ED025249CB4A7430D5D452F66433E0 /* BitUtils.h */, - E3390F3DA0A36E2604CB7BFA08819ED1 /* CompactValue.h */, - A6A96D67DD0C9EB25890327FB73FA7D0 /* log.cpp */, - C56C88D596F7791E65D2EA37041F6B22 /* log.h */, - 4EA4CC2A061E9F9A7572AA7386EE9278 /* Utils.cpp */, - AEEF92FF6B350AEFD327D5887FEF8A7D /* Utils.h */, - 4A6834DBD5AA0D91D155DBECA8185C54 /* YGConfig.cpp */, - BF09E861AE844B8A7642206A6E1180E9 /* YGConfig.h */, - 3AAE05B3FC984B4ED394E8C3FD5F7513 /* YGEnums.cpp */, - 8D7462D24C01C321F7282227C7D663F1 /* YGEnums.h */, - C12F586DA4893F2844808EC7671E61F6 /* YGFloatOptional.h */, - 7F903D44A87E7A57E7009F31A7BF7011 /* YGLayout.cpp */, - 6C14D04AF4936D353627E14B2E93652A /* YGLayout.h */, - AB1BFCED4DBD4B1D8B2C3608649BB5F9 /* YGMacros.h */, - 2699322CEBD596B814121EEBAF62F5BC /* YGNode.cpp */, - 70CAC4756B89280A6C66B4687E6DE4A7 /* YGNode.h */, - 3893ACF63DD49DECAE775B6F18CE99D1 /* YGNodePrint.cpp */, - 8F611C971DC6C25C30C08F61592DF945 /* YGNodePrint.h */, - F47128CE98F8CCF5519A45D50045677F /* YGStyle.cpp */, - 1D2C2930D49F43DFFB1B58B951B9A649 /* YGStyle.h */, - 2B036968A8C7DBCF9A7AA935283F37A3 /* YGValue.cpp */, - 642E55F6BE17274B8BE4C08053D834C6 /* YGValue.h */, - 4C5A24F7869DACEA94D29F59EDDCA90D /* Yoga.cpp */, - A206ABE42AA13ECDE45320331B022FA7 /* Yoga.h */, - 5860BF973B9388FB83C1661EBC61C337 /* Yoga-internal.h */, - 56E6FB8C827F32E4242463131AB8B336 /* event */, - 084F487B7DF1352966AAAA2D6A219BB4 /* internal */, - AFFFE20E862C5AF555EAA589CEB78765 /* Pod */, - 0025E5E62E8239231D2BC905FC79FA13 /* Support Files */, + 75E82672293864B628DB1952DF00F69E /* RNCWebView.h */, + 1F94AC55D7DB04DD2126D714E8F0526C /* RNCWebView.m */, + FECCE8374AE75360321DC09317F9D24A /* RNCWebViewManager.h */, + D66681FA13DF6C416DA9E4ADAB3D561B /* RNCWebViewManager.m */, + CAEB0846C2DF688EA19B435606F9A274 /* RNCWKProcessPoolManager.h */, + AB59FF6546A546154F21A868491CDA72 /* RNCWKProcessPoolManager.m */, + DA2B4D8414CF91ABE25936E5899E9382 /* Pod */, + C35656BEDC458A6D003943F65C4BB818 /* Support Files */, ); - name = Yoga; - path = "../../node_modules/react-native/ReactCommon/yoga"; + name = "react-native-webview"; + path = "../../node_modules/react-native-webview"; sourceTree = ""; }; - 02555636E7DC8D88C01F0B4D22AAD75E /* Support Files */ = { + 02323EB0705E5CEB2B200AA6C40F5907 /* Pod */ = { isa = PBXGroup; children = ( - D99064BDB173558498756B3D1F2C2938 /* EXFileSystem-dummy.m */, - 97A7F1B2F686CD42E85B04316E0C4EB8 /* EXFileSystem-prefix.pch */, - 2BE4FA566B375DBA3B4DB6BC27B5AA1C /* EXFileSystem.debug.xcconfig */, - AC50AFC4D54DB009646B9159F60A54A1 /* EXFileSystem.release.xcconfig */, - ); - name = "Support Files"; - path = "../../../ios/Pods/Target Support Files/EXFileSystem"; - sourceTree = ""; - }; - 03152C53207508BF08513A8D8A420D20 /* Pod */ = { - isa = PBXGroup; - children = ( - 08410A292904F624C2DE426ADEAF70BB /* LICENSE */, - BFE5D863885FCEB1BE8FF6690024C0CB /* README.md */, - D59501BFC5E63AA6CC3485BADE25ECF9 /* RNImageCropPicker.podspec */, + 78A26FF517E42680FD3AFD79FA7609F6 /* LICENSE */, + 686C68A2AC151ADD5C7EED508B3C2B00 /* README.md */, + 98EF64E50320540970E31E69E5DCA16C /* RNVectorIcons.podspec */, ); name = Pod; sourceTree = ""; @@ -11440,12 +11348,55 @@ path = "../Target Support Files/Flipper-PeerTalk"; sourceTree = ""; }; - 03D9F122ECEA399083B288E7F8F10AD3 /* Pod */ = { + 03E65A8F0C6D9E7797009677A974B706 /* UMReactNativeAdapter */ = { isa = PBXGroup; children = ( - D2ADC4CC75F94025AF546F47E5DD7C16 /* UMAppLoader.podspec */, + 8EBB277779041E089174E8AA450A4FF7 /* UMBridgeModule.h */, + FC663C9A75C74115C8CFDDC69A98DF86 /* Pod */, + 7AA22DC47130D659B6F9F97BB167BAE5 /* Services */, + 222795E186FF55399AA6AC1ADCD3608B /* Support Files */, + 529A9EDA85B5463F8925143F11B72F74 /* UMModuleRegistryAdapter */, + FA3D88AF6D1BEA565DCE4B688E9B8A0F /* UMNativeModulesProxy */, + 65646E862C04B330DB2FF311F0AF7A45 /* UMViewManagerAdapter */, ); - name = Pod; + name = UMReactNativeAdapter; + path = "../../node_modules/@unimodules/react-native-adapter/ios"; + sourceTree = ""; + }; + 03EDE96745277A3BA8A9C8A50EA75F2A /* Support Files */ = { + isa = PBXGroup; + children = ( + 78A85DB4DE5F21ACB273A7C3CCD7B281 /* RNCMaskedView-dummy.m */, + E4461047D974D5B0682E9C35AA34E9A8 /* RNCMaskedView-prefix.pch */, + 8663725A3ADCD9784ACC2DFBC44C6DB2 /* RNCMaskedView.debug.xcconfig */, + 6FB28DE401C741754F74971739F5197A /* RNCMaskedView.release.xcconfig */, + ); + name = "Support Files"; + path = "../../../ios/Pods/Target Support Files/RNCMaskedView"; + sourceTree = ""; + }; + 0420D33F9226B31998D54CD547CAEF6C /* UMFileSystemInterface */ = { + isa = PBXGroup; + children = ( + B1C7C0011E5646F6AFDA5B9328164A7F /* UMFilePermissionModuleInterface.h */, + 40848FC226D472BC482EDEFBAB3ADC72 /* UMFileSystemInterface.h */, + 38A2A16EDBE8776E1F60F0D4245DF88F /* Pod */, + 21DD9E3D0884FA7783F761C2F33AE178 /* Support Files */, + ); + name = UMFileSystemInterface; + path = "../../node_modules/unimodules-file-system-interface/ios"; + sourceTree = ""; + }; + 043B5E814DD3A6D3757A439342B4F6EF /* Support Files */ = { + isa = PBXGroup; + children = ( + DD7E01B54C87575EF6639192448A874C /* EXImageLoader-dummy.m */, + 580E450AB444454946C16BDA4B345374 /* EXImageLoader-prefix.pch */, + 54C5EA6C70A5DA65CCB60876A49B0561 /* EXImageLoader.debug.xcconfig */, + 0D9221B3FB20A788F4AF98B718E061AE /* EXImageLoader.release.xcconfig */, + ); + name = "Support Files"; + path = "../../../ios/Pods/Target Support Files/EXImageLoader"; sourceTree = ""; }; 046A9F9D4FB25006E22CE722E246DBAF /* JitsiMeetSDK */ = { @@ -11458,71 +11409,36 @@ path = JitsiMeetSDK; sourceTree = ""; }; - 0562D1950AC38AFF7452998284673FDD /* react-native-webview */ = { + 04C37E6B77ABCC3E30E8E8DCD9E02F9E /* Pod */ = { isa = PBXGroup; children = ( - 1AA015F5428D10F6DEC0993B6F7B7009 /* RNCWebView.h */, - 6F8F3C5F708B33E6BDA7954BD0723779 /* RNCWebView.m */, - C23F1D6BF19EA78B7018AAD57FD9F690 /* RNCWebViewManager.h */, - D66CDF8109FBBA67E2B56878CF69AFE9 /* RNCWebViewManager.m */, - 8003D3FBFE3C573335B3BAC90E9D2567 /* RNCWKProcessPoolManager.h */, - 4EF08DD896ED55D2EC8EAF7B071FB542 /* RNCWKProcessPoolManager.m */, - 225E1A0433E17BCB7C4F48BA78E9741F /* Pod */, - 1342D89D65683DEE187BEA2DD8263D16 /* Support Files */, - ); - name = "react-native-webview"; - path = "../../node_modules/react-native-webview"; - sourceTree = ""; - }; - 0639E85480CFDC635BFECB55C3010BA0 /* Pod */ = { - isa = PBXGroup; - children = ( - CDD723C4337CAC9740C288732F194960 /* README.md */, - B5ED26149548ED377E027FEBF35D4DE5 /* RNCMaskedView.podspec */, + C26AF4228C34AC3E025DBF372F30539F /* LICENSE */, + 54B3C96FE12939E703B1F783D14F380C /* README.md */, + 3C115D12044E576618D7D93097AA2E59 /* RNBootSplash.podspec */, ); name = Pod; sourceTree = ""; }; - 074351399A186546AA249738908DBB4A /* Support Files */ = { + 0551DC75F2B766DDB5C311E543CDC040 /* Support Files */ = { isa = PBXGroup; children = ( - 6895531153DAC8AE2FC0B20FF50B0044 /* React-RCTLinking-dummy.m */, - 3073C8F0BE8E66485FAA5EFA26999703 /* React-RCTLinking-prefix.pch */, - E5C754C92E88707CAD4CB784B9931E8C /* React-RCTLinking.debug.xcconfig */, - 44F812BAD233C2A22A6461790EBE5AD6 /* React-RCTLinking.release.xcconfig */, + BCE39BDDC56E070DB5377E21095423C6 /* RNBootSplash-dummy.m */, + C35EE5768CA6B7B056AA8715DE00B445 /* RNBootSplash-prefix.pch */, + 4441F2940C6722DD773BFA75CCA20F84 /* RNBootSplash.debug.xcconfig */, + 80703130FEA470710BE011CD13E28F37 /* RNBootSplash.release.xcconfig */, ); name = "Support Files"; - path = "../../../../ios/Pods/Target Support Files/React-RCTLinking"; + path = "../../ios/Pods/Target Support Files/RNBootSplash"; sourceTree = ""; }; - 084F487B7DF1352966AAAA2D6A219BB4 /* internal */ = { + 0827DD7FD0FAC0C9BAB40790FD3ED457 /* Support Files */ = { isa = PBXGroup; children = ( - A6B147977EE9C8E4A1286D4C6094C385 /* experiments.cpp */, - 098A8102A7A2650315A84E65070320DA /* experiments.h */, - B94081F9AF625868C01702FE15ECE7CF /* experiments-inl.h */, + 3F1EA77028986CCD2B226BBBDFBF7208 /* RCTRequired.debug.xcconfig */, + 495243FF42C15581544BD8D57776765B /* RCTRequired.release.xcconfig */, ); - name = internal; - path = yoga/internal; - sourceTree = ""; - }; - 086FFAFE6E7817323A848D025A831E5F /* UMConstantsInterface */ = { - isa = PBXGroup; - children = ( - 16A494163BFD15DCF69AF6F747C88391 /* UMConstantsInterface.h */, - 471074A6A60D1F666116246F6F364CF5 /* Pod */, - 7B7A18D737CBA6070367193E0EBA60C1 /* Support Files */, - ); - name = UMConstantsInterface; - path = "../../node_modules/unimodules-constants-interface/ios"; - sourceTree = ""; - }; - 0883D9FF3379C97043F78AA648E357A2 /* Pod */ = { - isa = PBXGroup; - children = ( - 568155784873CBBA8CE28A9D27D4077F /* UMFontInterface.podspec */, - ); - name = Pod; + name = "Support Files"; + path = "../../../../ios/Pods/Target Support Files/RCTRequired"; sourceTree = ""; }; 08B21C9F26134E3ABC6AB422DFA09272 /* TOCropViewController */ = { @@ -11554,27 +11470,6 @@ path = TOCropViewController; sourceTree = ""; }; - 09178F250A1752BC5FBE870231D5A155 /* TextInput */ = { - isa = PBXGroup; - children = ( - 7B5FDE5D3E7563BEFA60D070D48F4919 /* RCTBackedTextInputDelegate.h */, - 029679B8621034F8B9F9E2A6331F37A5 /* RCTBackedTextInputDelegateAdapter.h */, - 3EE1742852808EF29B7A46B5EBE710C7 /* RCTBackedTextInputViewProtocol.h */, - E43A768F57F6CF27AA59A7BB0872D21E /* RCTBaseTextInputShadowView.h */, - B48DF8618EE0B203C4FE2E0B3AE50343 /* RCTBaseTextInputView.h */, - 0386096EA2720666899EFDA16ECCBCCF /* RCTBaseTextInputViewManager.h */, - 18F15888BFDDF2FB46513A5BA7EA613E /* RCTInputAccessoryShadowView.h */, - D1B57CF1BFC9540DEB0B75EB1FF01892 /* RCTInputAccessoryView.h */, - 02D1C5E816420BA606B3A5F7CAB19B28 /* RCTInputAccessoryViewContent.h */, - 1E39BD45138B9D64B9B931FE16A1DC79 /* RCTInputAccessoryViewManager.h */, - C78E04DE52320ED3AC3922C2299052E0 /* RCTTextSelection.h */, - 5FAC90D16813282C6B8A8657B38F7036 /* Multiline */, - 7E36263F7E04F9867FF8C9CC2EF9B8F8 /* Singleline */, - ); - name = TextInput; - path = Libraries/Text/TextInput; - sourceTree = ""; - }; 092E964DAC43F6E61216E49C0131F929 /* Folly */ = { isa = PBXGroup; children = ( @@ -11604,32 +11499,93 @@ path = Folly; sourceTree = ""; }; - 0A5D767935971C34A1E5E42439FC120E /* DevSupport */ = { + 09836901995C1FDC17F72A357A22C346 /* React-cxxreact */ = { isa = PBXGroup; children = ( - 7908FCA2BA37EA5CF7806B789C69518F /* DevSupport */, - F1981BD93BC026E0DAF5FF3C713A05B4 /* Inspector */, + B25B0BAC40DC6900D31F70A6BEA9466A /* CxxModule.h */, + 74D9944C8A9A6EEF879C1802CFA5667A /* CxxNativeModule.cpp */, + 2BCB019D2283916B6DE5028E48214C59 /* CxxNativeModule.h */, + 52AB5CE635BF5BEDED856389BCE8036A /* Instance.cpp */, + 659D01B5AEE2A6809EF7EE98B3E8C599 /* Instance.h */, + 647E05C8967F8DC91DA71C9B6858BE11 /* JsArgumentHelpers.h */, + F40F806F534E3396E5FB95C458A3DCA6 /* JsArgumentHelpers-inl.h */, + 359486B7286C835AC9695AACF2722EAE /* JSBigString.cpp */, + 9646485F24F614398BC73538B6CE21C5 /* JSBigString.h */, + 4F1942E4D0A0369C9E03DA3771CFD59A /* JSBundleType.cpp */, + C07D82705129A0470532083F125AE78E /* JSBundleType.h */, + C046213BDED8227491C0BB0BEFD48FF1 /* JSDeltaBundleClient.cpp */, + 7A1DD621194889730DD99839004FCAA5 /* JSDeltaBundleClient.h */, + 85CD28A456C68B8603089211CD0FBFC2 /* JSExecutor.cpp */, + 7E0A11B0DE343DB0606DEDCC142C32AE /* JSExecutor.h */, + 0746D017C244257B3E9BE536E78751C5 /* JSIndexedRAMBundle.cpp */, + 11ACB07EF32CFC78268CD12D6F193D37 /* JSIndexedRAMBundle.h */, + 4F09632D02FC9C4ED72FDBC95E756300 /* JSModulesUnbundle.h */, + 3A40270ABBA4DDB8980ECC88D0C87EE2 /* MessageQueueThread.h */, + 3C726C2821E39B78211ECB184B1D69B4 /* MethodCall.cpp */, + 510992EFF4DEE6FF27671ECBAC566D0F /* MethodCall.h */, + FA09A621CBF22DF792A2770940A58C7F /* ModuleRegistry.cpp */, + EE3CA38F59F3E15A51082F3628F2FAEE /* ModuleRegistry.h */, + 44444F96D7488D183BE5DC55D7264A82 /* NativeModule.h */, + 6F23D82CBEDB822F248CFC7407393DE6 /* NativeToJsBridge.cpp */, + B5A729E304BCAA17639DE80581B2B82C /* NativeToJsBridge.h */, + A9DFD276EBE155A05206FA3429A9A449 /* RAMBundleRegistry.cpp */, + 4FCDB1CF016AFCD58C3DC21A0B326BCE /* RAMBundleRegistry.h */, + 3E65EE62F274902F911EBC8F7DABC14B /* ReactMarker.cpp */, + CB424A2EB01377F79EE4D04D1751381B /* ReactMarker.h */, + EFF32B0A911C93BC6F45E81B69403EF7 /* ReactNativeVersion.h */, + 5373E87BE0AEB1F0BA02C7EB052F8A41 /* RecoverableError.h */, + 8FE9000EA3825958DF2C2198FD2C9EAD /* SharedProxyCxxModule.h */, + C70A85CAA4162AF005A26A1D36DEA399 /* SystraceSection.h */, + F38215A0AA1E84C185C4F4D1C38F0681 /* Pod */, + DE06D6B3D18F32123327608397B9EED0 /* Support Files */, ); - name = DevSupport; + name = "React-cxxreact"; + path = "../../node_modules/react-native/ReactCommon/cxxreact"; sourceTree = ""; }; - 0B242BFEE975868CE6B0F55D5F0DEDA6 /* Protocols */ = { + 09DCA0E29A0ED3156C990B5CA782D07A /* Singleline */ = { isa = PBXGroup; children = ( - DDAF9CAC69A201E7DEFDA5C32B1AA175 /* UMAppLifecycleListener.h */, - E45254F30C5813BEAC555BC34F1165C2 /* UMAppLifecycleService.h */, - 97FAE25906FA0C5B669A7BC9232E6E51 /* UMEventEmitter.h */, - ADC9A8BBBA87864B0FDDB352A3FA40C7 /* UMEventEmitterService.h */, - E63D21F31C86A64959F3CEB07B455B61 /* UMInternalModule.h */, - 900EEA5C36AE7A75E22929B621BA6B8A /* UMJavaScriptContextProvider.h */, - 83BD0CFDA35D4192A9721DD859C071EF /* UMKernelService.h */, - 8F167E84E5A3D212C35C3D03EFF6A5D4 /* UMLogHandler.h */, - C1F307C0DE699D9D8A3B06C74B03807A /* UMModuleRegistryConsumer.h */, - 926C6D196E10F4DAD7C994F18B3594EA /* UMUIManager.h */, - 00EEACC7F27DDF885CBAEA844DEA2D33 /* UMUtilitiesInterface.h */, + 290849471BE6ACFDA1FF76063D549969 /* RCTSinglelineTextInputView.h */, + 5673330D50DEB45B91BB1B7FF27E69A1 /* RCTSinglelineTextInputViewManager.h */, + 36CB10181D1D80A37D6563FE6C1E5E78 /* RCTUITextField.h */, ); - name = Protocols; - path = UMCore/Protocols; + name = Singleline; + path = Singleline; + sourceTree = ""; + }; + 0A3FC45B373C19F7DB9D292B8C5183F4 /* Support Files */ = { + isa = PBXGroup; + children = ( + B41C2605360ABB58B9F50AD61D16C9F3 /* react-native-document-picker-dummy.m */, + 152AB3C2E234CCADCE73213C078179BD /* react-native-document-picker-prefix.pch */, + 152FF61C227005E810D18BED6D345EEF /* react-native-document-picker.debug.xcconfig */, + 9B61A899427E38398366D0D471FDD053 /* react-native-document-picker.release.xcconfig */, + ); + name = "Support Files"; + path = "../../ios/Pods/Target Support Files/react-native-document-picker"; + sourceTree = ""; + }; + 0AD200FFE64CDEF15442A7DDDAFBCE55 /* react-native-mmkv-storage */ = { + isa = PBXGroup; + children = ( + 976B22DD2542425C4BFAE4920F68EDAF /* IDStore.h */, + 2336BB0C3723DC4A5D1330D6AFBC0934 /* IDStore.m */, + 90ADEADA3FED0223508CDE9C57889B0B /* MMKVStorage.h */, + CE65E999A12D2DFF534FA99A66784A0D /* MMKVStorage.m */, + 37B911D1E27C8FAA0F25F0FC68E46ECA /* SecureStorage.h */, + 878FC1C39AF8FE865BCDF7AF930E9888 /* SecureStorage.m */, + D62735DFFBE766FF979BF4D8DCD2B07A /* StorageGetters.h */, + 0D16BD08552EE1721EDADB365EE02470 /* StorageGetters.m */, + 6169351F01CF3D26049E7D74D15BF376 /* StorageIndexer.h */, + 9EE82643589B6B444972EAFDB060005F /* StorageIndexer.m */, + A76CAE5A189721F971476ADB549C7AF5 /* StorageSetters.h */, + D59EBE263CEE3618D019A50815408252 /* StorageSetters.m */, + CDC6BE3350C1563D42C4C02BF066A25B /* Pod */, + 1334BB054605204ACAB571BB9DAA5C05 /* Support Files */, + ); + name = "react-native-mmkv-storage"; + path = "../../node_modules/react-native-mmkv-storage"; sourceTree = ""; }; 0B6F3975E2DDED062C3C130D1D0D3DF1 /* CocoaAsyncSocket */ = { @@ -11645,19 +11601,20 @@ path = CocoaAsyncSocket; sourceTree = ""; }; - 0B747D2F93D5FC219BDA4941A4DE5D2E /* Profiler */ = { + 0B7575DC7CCF3323201B3B6FF9656F5C /* UMSensorsInterface */ = { isa = PBXGroup; children = ( - 7B08E71E61F5D8DE5D0C6A89F7E3C9D0 /* RCTMacros.h */, - 43CAF26635546AAF8D1D9FA621E9E9E2 /* RCTProfile.h */, - 8B41A162AB2293493C38A0315DA47450 /* RCTProfile.m */, - 427CDDF672A5EE2083898815F4294025 /* RCTProfileTrampoline-arm.S */, - 24243C6D7595BD403DF417621300CC31 /* RCTProfileTrampoline-arm64.S */, - ADBFC5DFF2709E9A883012DB1E203DAE /* RCTProfileTrampoline-i386.S */, - 7DF40FF6B975F6396C79CB878EF7628C /* RCTProfileTrampoline-x86_64.S */, + 352005A5ACDE7F22EC4B50DA27C86DCC /* UMAccelerometerInterface.h */, + F00BD769A3A2AC46A05AC61CA6449B84 /* UMBarometerInterface.h */, + D7E9963F020D87E5B6C233BD8133A574 /* UMDeviceMotionInterface.h */, + BE1DF94ABE7B2EE373071F9645721904 /* UMGyroscopeInterface.h */, + 8FD8C9381A1166824EB8418F2B1D311C /* UMMagnetometerInterface.h */, + 0F72D240444052BFB4D254000D63B413 /* UMMagnetometerUncalibratedInterface.h */, + F6D48D1B65447B8EB30BE9638FD5B670 /* Pod */, + AB4885A87527B5E5A4E8D05E42A4D196 /* Support Files */, ); - name = Profiler; - path = React/Profiler; + name = UMSensorsInterface; + path = "../../node_modules/unimodules-sensors-interface/ios"; sourceTree = ""; }; 0B8B912343EC19503B56C921190598E3 /* CoreOnly */ = { @@ -11668,39 +11625,16 @@ name = CoreOnly; sourceTree = ""; }; - 0BD935D4A756F87412AABD0B1A09EA49 /* Support Files */ = { + 0C02EF976976EFB0374B768DBD76F6D9 /* Support Files */ = { isa = PBXGroup; children = ( - 09E934C0432AD032CB0B45BCB48CE5BB /* React-RCTBlob-dummy.m */, - 6DFDF2EB4D321BF1974B4996B4D1A3F6 /* React-RCTBlob-prefix.pch */, - 5B094BF3F5248F9220D403A8D4AECFC5 /* React-RCTBlob.debug.xcconfig */, - 50D066D05FC3400486D0BACEAC86C157 /* React-RCTBlob.release.xcconfig */, + 506B898C953993C1D0B3BB7580BE46F8 /* react-native-orientation-locker-dummy.m */, + DECBFF6510CCF517ACEB329B384355B9 /* react-native-orientation-locker-prefix.pch */, + 5DC7E90105EED59F772F26A04BF69EC3 /* react-native-orientation-locker.debug.xcconfig */, + A0D05D00D0095A754EAE82B02671E2CB /* react-native-orientation-locker.release.xcconfig */, ); name = "Support Files"; - path = "../../../../ios/Pods/Target Support Files/React-RCTBlob"; - sourceTree = ""; - }; - 0C597FC495245608A7FA73A252F42EE6 /* React-callinvoker */ = { - isa = PBXGroup; - children = ( - FB1F5F8F8C6D0F39D6E8DE7625A747DE /* CallInvoker.h */, - FEAD6EA6763FA9EA3A20E58B076D2F71 /* Pod */, - 1625DFD9FA904E643B34E5C03DFEBDE5 /* Support Files */, - ); - name = "React-callinvoker"; - path = "../../node_modules/react-native/ReactCommon/callinvoker"; - sourceTree = ""; - }; - 0C62C6FA83619C08BED907116743383D /* Text */ = { - isa = PBXGroup; - children = ( - 3569675BAA3D9C4169046144EAD8ED54 /* NSTextStorage+FontScaling.m */, - A654AF3C7C8FBCD0F4F659ED79980DB7 /* RCTTextShadowView.m */, - 84C10766029544716F76D93FAACF9496 /* RCTTextView.m */, - 0B8EE857E27AB051A823505483952AA2 /* RCTTextViewManager.m */, - ); - name = Text; - path = Text; + path = "../../ios/Pods/Target Support Files/react-native-orientation-locker"; sourceTree = ""; }; 0C9D77C9F09F0E685E535780C2AB4261 /* Static */ = { @@ -11817,52 +11751,66 @@ name = Reachability; sourceTree = ""; }; - 0DD99175C117B9F22A4594D4F020BE73 /* Pod */ = { + 0DF4D67A832EAE293D62792420CD6CC7 /* RCTAnimationHeaders */ = { isa = PBXGroup; children = ( - 8D1134DE526545AC0020485B53160E33 /* EXImageLoader.podspec */, + C0E1C597B0ECDE063875B4E2CF74A4C3 /* RCTAnimationPlugins.h */, + B969A70BD950304E1BDA85E61297D663 /* RCTAnimationUtils.h */, + 6F45ACD960E14487FC86FC9D5B154DCA /* RCTNativeAnimatedModule.h */, + CFF98EA85EA0DF705D768DE9D244C652 /* RCTNativeAnimatedNodesManager.h */, + 6D8FDF35994CB33D40AC4164D97CE1B2 /* Drivers */, + CCB5D8D4459AF65AF3622048B88CCC6C /* Nodes */, ); - name = Pod; + name = RCTAnimationHeaders; sourceTree = ""; }; - 0E9178E942377A10EBB846D22282453C /* EXConstants */ = { + 0E5FBFE6F2AE74B29CBB39656AC6A619 /* react-native-slider */ = { isa = PBXGroup; children = ( - DDE577EF29EBB9F6E2DC8FBF59646752 /* EXConstants.h */, - D3C0F4C2A7D98F988B480EE3942D59C6 /* EXConstants.m */, - 1013CAE8755C03986C3D8333C92DA2BB /* EXConstantsService.h */, - 1D9376156616C8FA56B743E4A3F73513 /* EXConstantsService.m */, - F4CC2FDFBA257F843DD586BA351C9444 /* Pod */, - 8148DF8F2774B76439E5974C0FF1622B /* Support Files */, + FAB7D53A0F693908B7B13A124A59B36C /* RNCSlider.h */, + 9597C5FDD1C3DF6E58BC339393117A8E /* RNCSlider.m */, + 8FEA09CC7B4D4195993E82D320ECE105 /* RNCSliderManager.h */, + EFE3FCC42C775B220FCF89B4A00B0F07 /* RNCSliderManager.m */, + 4B2FB2EF4D9490CBC740F6670EE9A286 /* Pod */, + 52D60E1739598E354E060DB05FFFAF95 /* Support Files */, ); - name = EXConstants; - path = "../../node_modules/expo-constants/ios"; + name = "react-native-slider"; + path = "../../node_modules/@react-native-community/slider"; sourceTree = ""; }; - 0EE6A6AC15B8BD82051644CF0955BEC4 /* UMFontInterface */ = { + 0F057F4E26DE7E530327E756638CA002 /* Support Files */ = { isa = PBXGroup; children = ( - EFADD1430321D40620762E3F71D316EC /* UMFontManagerInterface.h */, - 4EBDDC34DD5EA2B46AFD7CF6924496D1 /* UMFontProcessorInterface.h */, - 7D6F1ACCC99F3B7F18025DDFD98FD4D9 /* UMFontScalerInterface.h */, - E6F41B53B99C9D4A02BA536BD636E645 /* UMFontScalersManagerInterface.h */, - 0883D9FF3379C97043F78AA648E357A2 /* Pod */, - 1B598AFCA7D3A5CB4107828508911B24 /* Support Files */, + 92BDCD7D6F411370B1DCFD5DA2976D9A /* React-RCTVibration-dummy.m */, + 91C48B1F78B88184004A5D51728858E6 /* React-RCTVibration-prefix.pch */, + 985E381BAEC05757D3A5E26F1E14DA61 /* React-RCTVibration.debug.xcconfig */, + 30D9AD3BD7FB649598B7D77965B6F417 /* React-RCTVibration.release.xcconfig */, ); - name = UMFontInterface; - path = "../../node_modules/unimodules-font-interface/ios"; + name = "Support Files"; + path = "../../../../ios/Pods/Target Support Files/React-RCTVibration"; sourceTree = ""; }; - 0F1F268623CB845A49D8DC1224E721B3 /* UMFileSystemInterface */ = { + 0F09AC66776E2017D9DE001FC6EBA192 /* React-Core */ = { isa = PBXGroup; children = ( - 22247E6BC5D6A3B1C48E23C163EA26AB /* UMFilePermissionModuleInterface.h */, - DE0F720FB17AED60FC53C4F8F4375EA5 /* UMFileSystemInterface.h */, - 27FC7A34E49ECFA0920CD4456EB770A5 /* Pod */, - 8A7DD642CB20DAEEF4623FAAE0E192EC /* Support Files */, + 9448E2C33322CDBC732462FD79CC2F2C /* CoreModulesHeaders */, + CF0C421DF4CD694A16416AB69223B655 /* Default */, + 0186074694B1188C81EE62C417479AB2 /* DevSupport */, + 64E1599C8186E2B76B764786A6F19EED /* Pod */, + 0DF4D67A832EAE293D62792420CD6CC7 /* RCTAnimationHeaders */, + FA1FFA694A906FD1141139AAEC575D4F /* RCTBlobHeaders */, + 828C8F59EC49B7B76306B792135144E4 /* RCTImageHeaders */, + 16F418D496AE2E777B43FFE0DEFE4D67 /* RCTLinkingHeaders */, + 91AA79B9FEA24E866C73FF546A60BA97 /* RCTNetworkHeaders */, + BAFD4D23DBCA1CA17CBFF68B07787234 /* RCTSettingsHeaders */, + FA46BDFC4D66B07E5AF7CF5972C0AC23 /* RCTTextHeaders */, + 26FD15549FE7F49B6C898B44B413641F /* RCTVibrationHeaders */, + 59E4B84A132BD3EEEABF654B81DCEF7A /* RCTWebSocket */, + 2FCF04DDF236912112ADDAC6077FF5A2 /* Resources */, + E3D745F13ECDDF2B43C4E32C7B9CCECC /* Support Files */, ); - name = UMFileSystemInterface; - path = "../../node_modules/unimodules-file-system-interface/ios"; + name = "React-Core"; + path = "../../node_modules/react-native"; sourceTree = ""; }; 10699B5F09038ECFE7681A4E1D51CE16 /* Support Files */ = { @@ -11877,6 +11825,22 @@ path = "../Target Support Files/Flipper-RSocket"; sourceTree = ""; }; + 10D5038E582E771891F3D77D590C277C /* LNInterpolation */ = { + isa = PBXGroup; + children = ( + BE24D304B739209FE3009067F0AECCCD /* Color+Interpolation.h */, + 94329657EDFCEF7DF01F1FD4D4689DF7 /* Color+Interpolation.m */, + E56180BC80948109BDE83BFBBC78EE4E /* LNAnimator.h */, + 594DB85767F9B7D7C188F0D0ECA4D30C /* LNAnimator.m */, + 940BFA34F0166285361309FBAD942031 /* LNInterpolable.h */, + 9A0BE951918932EC5D6FC7CE50BFF59C /* LNInterpolable.m */, + 10348EA59250727C0D8BF271D8DB4733 /* LNInterpolation.h */, + FE7537FE1407ADAA6AF0A6ED142A3757 /* NSValue+Interpolation.h */, + ); + name = LNInterpolation; + path = lib/ios/LNInterpolation; + sourceTree = ""; + }; 111AA8A31A6053F97B68BA817A64E776 /* FirebaseCore */ = { isa = PBXGroup; children = ( @@ -11946,48 +11910,25 @@ path = "Flipper-PeerTalk"; sourceTree = ""; }; - 11FFF265BC8455577CD2E9D2549BC8BE /* SurfaceHostingView */ = { + 12FA6D3933375130F565A95EB5237019 /* Source */ = { isa = PBXGroup; children = ( - C4D98AC0B05A6CD79A27010C2E150F4C /* RCTSurfaceHostingProxyRootView.h */, - 1A9107FC3F4CEAEA3FCC427E9402BEDA /* RCTSurfaceHostingProxyRootView.mm */, - 60686AB4AF07D10D074ACC81B4F49C4E /* RCTSurfaceHostingView.h */, - 6D2C636730CB450D249DDA5E4E6B0041 /* RCTSurfaceHostingView.mm */, - F09CAD65E885D3877AC113F4AA854D96 /* RCTSurfaceSizeMeasureMode.h */, - 270DFF8EC28AE8B3070C199EC52B0751 /* RCTSurfaceSizeMeasureMode.mm */, + 2DC009174A063A4958D165C0815DEA7F /* KSCrash */, ); - name = SurfaceHostingView; - path = SurfaceHostingView; + name = Source; + path = Source; sourceTree = ""; }; - 1333E4F99C58699A45B13E35C159D42E /* Pod */ = { + 1334BB054605204ACAB571BB9DAA5C05 /* Support Files */ = { isa = PBXGroup; children = ( - D12DA2B389D7BA6439B5E7D859163752 /* LICENSE */, - C1CC9D27B7C27DB8BF989C0D8324203C /* README.md */, - 8D3086EF2EB0A64D617B13589B800213 /* RNDeviceInfo.podspec */, - ); - name = Pod; - sourceTree = ""; - }; - 1342D89D65683DEE187BEA2DD8263D16 /* Support Files */ = { - isa = PBXGroup; - children = ( - 3D162487F6288CFED91B2E9F8EDA87F6 /* react-native-webview-dummy.m */, - D57E08F6A0A9451EFB9EB412D94B3A8D /* react-native-webview-prefix.pch */, - 1E3F85E2699763383E840DB66FE280F3 /* react-native-webview.debug.xcconfig */, - 05200422CF221FE64B404ED285B28A81 /* react-native-webview.release.xcconfig */, + FFEAA83950D372C14D677568D14A6065 /* react-native-mmkv-storage-dummy.m */, + 68C661E58FFB62685B7DC14E28904C13 /* react-native-mmkv-storage-prefix.pch */, + E1FCFA12FF42D20698626A42211A7FA5 /* react-native-mmkv-storage.debug.xcconfig */, + E0DEDA104BFC984FA4D38BAB8CAB3327 /* react-native-mmkv-storage.release.xcconfig */, ); name = "Support Files"; - path = "../../ios/Pods/Target Support Files/react-native-webview"; - sourceTree = ""; - }; - 141794D377F8B494684B6C3E7F8FDCC3 /* Pod */ = { - isa = PBXGroup; - children = ( - F0836D0A2E8BA89E5EA31A575B26D3AF /* UMSensorsInterface.podspec */, - ); - name = Pod; + path = "../../ios/Pods/Target Support Files/react-native-mmkv-storage"; sourceTree = ""; }; 14A70E88CE79CB6C827CC5078A0B2F11 /* Support Files */ = { @@ -12001,148 +11942,87 @@ path = "../Target Support Files/PromisesObjC"; sourceTree = ""; }; - 154F796048428F6E3E4481B068D71EC8 /* Support Files */ = { + 16F418D496AE2E777B43FFE0DEFE4D67 /* RCTLinkingHeaders */ = { isa = PBXGroup; children = ( - 69B026798EE5691465D083B5DEB9822C /* ResourceBundle-QBImagePicker-RNImageCropPicker-Info.plist */, - 0347C0A851766107F39596C3D2D1F806 /* RNImageCropPicker-dummy.m */, - 054C9445767DD83D0012B423A3B2BE4E /* RNImageCropPicker-prefix.pch */, - E29B4CE694486857A5640F64EA98DFE4 /* RNImageCropPicker.debug.xcconfig */, - D0693CE22C26695AD5D0245ACBAC9F3C /* RNImageCropPicker.release.xcconfig */, + 016F354F6F47AD212F113D6388C9F138 /* RCTLinkingManager.h */, + 1F36DED43E9E5069A7212B9596A46DB4 /* RCTLinkingPlugins.h */, + ); + name = RCTLinkingHeaders; + sourceTree = ""; + }; + 176D112B6EC718C877B6E8F271A53B04 /* Support Files */ = { + isa = PBXGroup; + children = ( + 16E7744623DB14672C28A961D8EADD76 /* RNDeviceInfo-dummy.m */, + 65DC6EAD1AAE482D1964ED82499B01CB /* RNDeviceInfo-prefix.pch */, + 6AC60DE6FB73EABAAB11CC926F684719 /* RNDeviceInfo.debug.xcconfig */, + 34105583E55E11A350CC94C083EE0812 /* RNDeviceInfo.release.xcconfig */, ); name = "Support Files"; - path = "../../ios/Pods/Target Support Files/RNImageCropPicker"; + path = "../../ios/Pods/Target Support Files/RNDeviceInfo"; sourceTree = ""; }; - 15E7B22CEC38BA408FEB9EEB7358BF0C /* UMCameraInterface */ = { + 17AF0814CC4489986FDD868680BFD1C8 /* ReactNativeART */ = { isa = PBXGroup; children = ( - FC92CC55D6BAF41621AB8ADCBB313321 /* UMCameraInterface.h */, - 6763E034031DE82C399D8FE54951F420 /* Pod */, - A0D0A721FDFA834AA78EF333CBEE0D72 /* Support Files */, + A200A2C0578FF20B0A53F60F7F715CB7 /* ARTCGFloatArray.h */, + F491BAA0FEC77EE836DE377F8EC3BEF9 /* ARTContainer.h */, + F5D8A37F434D48BEC54CB660B1659BAF /* ARTGroup.h */, + 7355B7E3D3DF2F556D0D164F096FBAE7 /* ARTGroup.m */, + D4697B43CE5BC0C104C8EA8B8401BD07 /* ARTNode.h */, + 9E65967C63D7AB04A54F68B80B6E055C /* ARTNode.m */, + C39D2B867CBC3756105C32FAA2BE9820 /* ARTRenderable.h */, + 8A24AC792D0BA02FAE99884894D81136 /* ARTRenderable.m */, + C7DA584D408C8D115F74555F3487FD2E /* ARTShadow.h */, + A1887075EA827385176388B2D8408C75 /* ARTShape.h */, + 45103FAEF9BE9D4E0926E951DD2807C2 /* ARTShape.m */, + 32F9D824DCFDD5012667D8142EEEF07A /* ARTSurfaceView.h */, + E5C1ADFCB00A8F28FE31BE7F59AB57D4 /* ARTSurfaceView.m */, + 70BE5B577F98B3F54C1A2AA7574CAC6E /* ARTText.h */, + F84514BD2584D0D2BF2831703015296B /* ARTText.m */, + 83A789A52783C1479959F0F145EA704F /* ARTTextFrame.h */, + DD8633B5B94F50472AEC500763AD1E55 /* RCTConvert+ART.h */, + 1AA8A91C60BA6671113A4594AEE98240 /* RCTConvert+ART.m */, + 735FF5BB95D372484E925C0ED5DCC4B1 /* Brushes */, + 2D97A7B562761E75B3812B4582694807 /* Pod */, + 9DDAB9AE75298D983C8E8E0DFDA6BDE2 /* Support Files */, + 8423F59ED01A3F93EBADD8AC0F4B9E79 /* ViewManagers */, ); - name = UMCameraInterface; - path = "../../node_modules/unimodules-camera-interface/ios"; + name = ReactNativeART; + path = "../../node_modules/@react-native-community/art"; sourceTree = ""; }; - 1625DFD9FA904E643B34E5C03DFEBDE5 /* Support Files */ = { + 1941C2AE3FEEE40AD26FD55A349E4507 /* UMImageLoaderInterface */ = { isa = PBXGroup; children = ( - CA3F4D9022ACE979D21EF614A7442934 /* React-callinvoker.debug.xcconfig */, - 233FEC3F1ECAB8D606435734B496DE94 /* React-callinvoker.release.xcconfig */, + A297B3447506F9CB5BBCD974EFEDAB32 /* UMImageLoaderInterface.h */, + BB13B2902A45414642D4389B214819C7 /* Pod */, + 730BEEDFECC6D92891758477EF95AC14 /* Support Files */, ); - name = "Support Files"; - path = "../../../../ios/Pods/Target Support Files/React-callinvoker"; + name = UMImageLoaderInterface; + path = "../../node_modules/unimodules-image-loader-interface/ios"; sourceTree = ""; }; - 16297DDB1A37130233D3BBB45D2F16EA /* Support Files */ = { + 1962AB26764F662D4E1365917F8718E6 /* Pod */ = { isa = PBXGroup; children = ( - 25BAD2A26CE22DF9B0A00BA43CDC30A6 /* react-native-background-timer-dummy.m */, - 972C4F6156743DD2B5BFA918D19EF30E /* react-native-background-timer-prefix.pch */, - 23515F140F314D38FF8E744CA13832D4 /* react-native-background-timer.debug.xcconfig */, - C53198250A34CDD0600420FC17178B5B /* react-native-background-timer.release.xcconfig */, - ); - name = "Support Files"; - path = "../../ios/Pods/Target Support Files/react-native-background-timer"; - sourceTree = ""; - }; - 1739E905798A11553D7A9F46AF339995 /* Pod */ = { - isa = PBXGroup; - children = ( - 290719AB3B8C5CDAB1C89C312F465D55 /* React-RCTImage.podspec */, + 7605EFD232AB6DC32125314898A58006 /* LICENSE */, + 9E60FD2DBE9C28B37BF52A4082D2AB13 /* react-native-cookies.podspec */, + 391C453007A91D79C24F5D247EF4CBE2 /* README.md */, ); name = Pod; sourceTree = ""; }; - 1782E4C0BAEC9779F492763333C34598 /* RCTImageHeaders */ = { + 1970688D225E8819B06CE7B431A09C3A /* Pod */ = { isa = PBXGroup; children = ( - 867F664DB910791F9B7EF4223E8EC0FD /* RCTAnimatedImage.h */, - 8BB70D45E218B6BDD9C887EEC783FEA2 /* RCTDisplayWeakRefreshable.h */, - 2EDF61BAC33F363752AAA16B0E492F18 /* RCTGIFImageDecoder.h */, - D69EE22C879222A4C1FD3CD771BABC7F /* RCTImageBlurUtils.h */, - 9883B17F95BA54EB43C4F6A7546EBE95 /* RCTImageCache.h */, - 2D56973D72EFFB2983A3D55E085B3C2F /* RCTImageDataDecoder.h */, - 93F9FF021CB8FF0AD61A20E7765A5EDC /* RCTImageEditingManager.h */, - D8BC2AA78AC028904E04F17D4307FB92 /* RCTImageLoader.h */, - 2C212828F45BD3FAD79DE375E3F12874 /* RCTImageLoaderProtocol.h */, - 4C18F28129AEAC8720CA8DCB98650F8F /* RCTImageLoaderWithAttributionProtocol.h */, - CD091D739D70DD6988801CE7607F66C9 /* RCTImagePlugins.h */, - CA195DADF7BC48BD83347663827C9066 /* RCTImageShadowView.h */, - A8779CC61E4AB1ED099A737360F577E1 /* RCTImageStoreManager.h */, - 299C8DA531747C55BA8ADE68D2446C52 /* RCTImageURLLoader.h */, - 9A65D311022D7BFDACF39403893FB47C /* RCTImageURLLoaderWithAttribution.h */, - A343840D9224BB86367165F3C4598D4A /* RCTImageUtils.h */, - 3FD424B19F510D11C516CA1189411478 /* RCTImageView.h */, - 427A9B8B6278E24E05EFFFA7F26432DA /* RCTImageViewManager.h */, - EA8C8D79155ED0E61A01100950DC8D66 /* RCTLocalAssetImageLoader.h */, - 85C063AC7C2B217791BC7AE86EAE3EC5 /* RCTResizeMode.h */, - 738ADC60F35108A0F881BADE8D0770CF /* RCTUIImageViewAnimated.h */, - ); - name = RCTImageHeaders; - sourceTree = ""; - }; - 183BD8E6F6390EA428681A786FFEFD1F /* react-native-appearance */ = { - isa = PBXGroup; - children = ( - FC2686CF9ED2ECCBE0D4CD6BE1DA146F /* RNCAppearance.h */, - 9D94BC0386E5D8C156D64018EBAD9D52 /* RNCAppearance.m */, - 49016DEC42E0326308CC1D75DD26B6AA /* RNCAppearanceProvider.h */, - 31CADE3B22E1E32AA799BEBC96C89F2E /* RNCAppearanceProvider.m */, - 25264852B45BDFBD98B571B5855691FC /* RNCAppearanceProviderManager.h */, - B8BBABB832F892AC79057E30FF443FD8 /* RNCAppearanceProviderManager.m */, - 7A2A83545F2FCF2AB9ED9BB7468E232A /* Pod */, - 46ACE5E8EB6099F31B26E6B855EBEB7C /* Support Files */, - ); - name = "react-native-appearance"; - path = "../../node_modules/react-native-appearance"; - sourceTree = ""; - }; - 18608142289F471E38808A8ADA158428 /* React-RCTAnimation */ = { - isa = PBXGroup; - children = ( - CFC2265CC09C3B6EAD9CA1393EA1BC34 /* RCTAnimationPlugins.mm */, - 40A24F50073CE00C418C807155B60D0B /* RCTAnimationUtils.m */, - B7C479CD9F8AC115BA4F809EA2FE7A0B /* RCTNativeAnimatedModule.mm */, - 87B30744926803421338F6ACD350EDC1 /* RCTNativeAnimatedNodesManager.m */, - 4965F8C77EE57F7B8843D516AF63701F /* Drivers */, - C42FFA6D244147A88DC3B8B52D5AEC20 /* Nodes */, - 75B5D3DB25D99C310F2596DDBAE1D595 /* Pod */, - 47246D899999BA7EB52AE8D654EE94A2 /* Support Files */, - ); - name = "React-RCTAnimation"; - path = "../../node_modules/react-native/Libraries/NativeAnimation"; - sourceTree = ""; - }; - 18D086326D1B816B8532F118DFC0B002 /* Pod */ = { - isa = PBXGroup; - children = ( - 98EBD075FA88BF61298059B8DA66AA69 /* LICENSE */, - 96791F5A9A48663AF83F84E7F2133EAE /* README.md */, - 7F01863205DBA6FB0E14ABEC758298F1 /* RNScreens.podspec */, + 518CE931EA6EC0DFA47A99DADD8103F2 /* README.md */, + A1DC2CA4DC6587A28388A8D4FBF707F8 /* RNRootView.podspec */, ); name = Pod; sourceTree = ""; }; - 18F1B47255129F664B546B7623C20B9A /* Brushes */ = { - isa = PBXGroup; - children = ( - 9073EFAD818C1FA4F37190C29FEAA509 /* ARTBrush.h */, - CB26351E8C2A3B0C196B00BD1E99A114 /* ARTBrush.m */, - 6ABF64C60A345F5FA5D6E014A4F0F92D /* ARTLinearGradient.h */, - 5676A9119066D19F58C747370FDFB455 /* ARTLinearGradient.m */, - A262C6A417653B56D513C7CBED8DC4A9 /* ARTPattern.h */, - 2CBA6A2E7DE164CC9864FFAF6AD15BEA /* ARTPattern.m */, - 74733A64EDFAE61A082AD26F50D916D6 /* ARTRadialGradient.h */, - 61BE0F021008ED1E6899CEFEB32176A7 /* ARTRadialGradient.m */, - 67D64D02C9D8DCD5F4A39C7A99EA1593 /* ARTSolidColor.h */, - F26EAD1B7F278D0282E2A1EAF7BD6340 /* ARTSolidColor.m */, - ); - name = Brushes; - path = ios/Brushes; - sourceTree = ""; - }; 19D82DDF04AEF5868380169B913D6D98 /* Core */ = { isa = PBXGroup; children = ( @@ -12170,26 +12050,29 @@ name = Core; sourceTree = ""; }; - 19DD4BF0D2BA1792C46D8F63B1B64A65 /* Support Files */ = { + 1A70B8388B60345E8A12BA338A0D30CF /* DevSupport */ = { isa = PBXGroup; children = ( - 6C24BF558E329697628671627C08884D /* react-native-jitsi-meet-dummy.m */, - 9C4817758DDF25685598ECC209BFEA71 /* react-native-jitsi-meet-prefix.pch */, - 4091633735C27CE006EE16DA0ED3F70A /* react-native-jitsi-meet.debug.xcconfig */, - 7DCC8F3AE45AC531CFF8F64CD91C48B8 /* react-native-jitsi-meet.release.xcconfig */, + 809C4655C11079B51B1A1DBD7F710F11 /* RCTDevLoadingViewProtocol.h */, + 7B423D3F339C2BABD89BAED31EC39E38 /* RCTDevLoadingViewSetEnabled.h */, + 38DE84983C96F3CEF7C835E037BA8B09 /* RCTDevLoadingViewSetEnabled.m */, + 49A248D983C45A39C2271CFD250FCC4F /* RCTInspectorDevServerHelper.h */, + 881F1ABFD25A6D8C5B21250AD1899CD5 /* RCTInspectorDevServerHelper.mm */, + 4ED4B6718B25734BD6CC3C40AA8BB7A9 /* RCTPackagerClient.h */, + B677605A7E5512FF23527814F0035B19 /* RCTPackagerClient.m */, + F1FF0DF45776400A391683CA1ABC41B1 /* RCTPackagerConnection.h */, + F0C0BF47FB1A237DDEDD08D6FF6A3A32 /* RCTPackagerConnection.mm */, ); - name = "Support Files"; - path = "../../ios/Pods/Target Support Files/react-native-jitsi-meet"; + name = DevSupport; + path = React/DevSupport; sourceTree = ""; }; - 1B598AFCA7D3A5CB4107828508911B24 /* Support Files */ = { + 1B5563B6C4F55AD3543C4ADD921F33CF /* Pod */ = { isa = PBXGroup; children = ( - C15D1BBD5E0D963F276DAFDC9D912EF9 /* UMFontInterface.debug.xcconfig */, - 1F06B9289CD38CD20D09F965A84E1F92 /* UMFontInterface.release.xcconfig */, + 0CCC9B9077994E16977981A08043DDCC /* EXImageLoader.podspec */, ); - name = "Support Files"; - path = "../../../ios/Pods/Target Support Files/UMFontInterface"; + name = Pod; sourceTree = ""; }; 1B5F27ED9554A3FBD16302E9C961C32F /* DoubleConversion */ = { @@ -12219,14 +12102,40 @@ path = DoubleConversion; sourceTree = ""; }; - 1BC0DBBB543FA45386E1A957306A3906 /* Pod */ = { + 1BC145E392B1565FB31492801D4F2662 /* Support Files */ = { isa = PBXGroup; children = ( - 09553FDB3FD9974E7D3B99CB02D84EA2 /* LICENSE.md */, - 804A1561B96171A6817526601368BB87 /* react-native-document-picker.podspec */, - 8CFFA97FB688C0969FCD2DA93D21FF25 /* README.md */, + D6B06BB6668027965E647435F756BDE0 /* react-native-notifications-dummy.m */, + 83EBC1196E5DAE3A7545F5A90FAADAB7 /* react-native-notifications-prefix.pch */, + DA4C437195FEF977059CC063B17CFF6C /* react-native-notifications.debug.xcconfig */, + 3B18616BAD314F5FB22B423EC02BB277 /* react-native-notifications.release.xcconfig */, ); - name = Pod; + name = "Support Files"; + path = "../../ios/Pods/Target Support Files/react-native-notifications"; + sourceTree = ""; + }; + 1BEF3159330E5067952B419BA37B91DE /* UMFaceDetectorInterface */ = { + isa = PBXGroup; + children = ( + 61C932215108856EBBF2265EB58B0BB3 /* UMFaceDetectorManager.h */, + AAEDEB966DF190C72014839FAD36F682 /* UMFaceDetectorManagerProvider.h */, + 7122DE99CF424CBB4EB130229B0558BA /* Pod */, + 35E8D1E79131D3C4D6AA022D83DF0154 /* Support Files */, + ); + name = UMFaceDetectorInterface; + path = "../../node_modules/unimodules-face-detector-interface/ios"; + sourceTree = ""; + }; + 1C3AEFF6E9699D15345C71CB4533FD7E /* RNLocalize */ = { + isa = PBXGroup; + children = ( + 7F21174076AEA986138D327BA59C8384 /* RNLocalize.h */, + A1D2F7D0B3B73B0F3E864F6AD0312855 /* RNLocalize.m */, + 5FD6A0F2219AB91E3CD1D43A23EFD536 /* Pod */, + B2F8EA40230DC6D83EE1E841062441DB /* Support Files */, + ); + name = RNLocalize; + path = "../../node_modules/react-native-localize"; sourceTree = ""; }; 1C52523A7E8B5F36CB651B6D47155BAC /* FBCxxFollyDynamicConvert */ = { @@ -12238,63 +12147,16 @@ name = FBCxxFollyDynamicConvert; sourceTree = ""; }; - 1E78BD0F504D1A65FCB9DAECAE320657 /* Source */ = { + 1DEFE55AEE889188DC988E7318725EAD /* react-native-cookies */ = { isa = PBXGroup; children = ( - 1F1E0F65EC172FA77464FE6EA61505E3 /* KSCrash */, + A0CE93BFF6227FCEB68103B8AD513393 /* RNCookieManagerIOS.h */, + EF6B23356D4F5B0719EA31C081603848 /* RNCookieManagerIOS.m */, + 1962AB26764F662D4E1365917F8718E6 /* Pod */, + B943672748724E554E80B88355330311 /* Support Files */, ); - name = Source; - path = Source; - sourceTree = ""; - }; - 1EA42BF00FC8845824AF1A9EB3053EA2 /* Services */ = { - isa = PBXGroup; - children = ( - D44A18A4E576294EB7F62F8ACC296DC5 /* UMReactFontManager.h */, - 4CCD990451BB54C2D5F71B2EC8118674 /* UMReactFontManager.m */, - 7E91011DB5327234A571BA053074F4D3 /* UMReactLogHandler.h */, - FCB9F9854FA0C1EF173F1072988BC27B /* UMReactLogHandler.m */, - 89E516836790BAB8B152D990125FC698 /* UMReactNativeAdapter.h */, - 7F720C62D9D3B2417C29BD6DA1571EF0 /* UMReactNativeAdapter.m */, - 63135997CD66DF14CB6C3D08D2A6BE54 /* UMReactNativeEventEmitter.h */, - DA8E28304FBC90A93EA01E8D75BBB1F9 /* UMReactNativeEventEmitter.m */, - ); - name = Services; - path = UMReactNativeAdapter/Services; - sourceTree = ""; - }; - 1F1E0F65EC172FA77464FE6EA61505E3 /* KSCrash */ = { - isa = PBXGroup; - children = ( - 2060EBE9B233361C66811D7F3B00E9D0 /* Recording */, - 831C3F43486ABC5E935971A6CFF3ED91 /* Reporting */, - ); - name = KSCrash; - path = KSCrash; - sourceTree = ""; - }; - 1F56FD3B29F35D002A0C8277CCB2BB63 /* Pod */ = { - isa = PBXGroup; - children = ( - 60DCE50527BD6D2744ED2908D45D957B /* LICENSE */, - 0199983D50A443E1BE0A11F50D48F716 /* README.md */, - B8DDF33544CB1BDCD56C15CCD835E04F /* RNReanimated.podspec */, - ); - name = Pod; - sourceTree = ""; - }; - 1F7F2987322CB4729DF4E8D85FA57DC0 /* RNConfigReader */ = { - isa = PBXGroup; - children = ( - 9C139D4A013059575C84F37E15B3D6D9 /* RNConfigReader.h */, - C2A128F617703A8ADCCD134B664CB9DF /* RNConfigReader.m */, - 9461B2310AC4F6C5B28C8ED3AA01D3D8 /* Pod */, - A3D93461A099F1E6E8B48163D1A5D8C0 /* RNConfigReader.xcodeproj */, - D811F42B94AA4B26876A1284A6554C8B /* RNConfigReader.xcworkspace */, - 4020C893A0865139AC37E5F849E2B109 /* Support Files */, - ); - name = RNConfigReader; - path = "../../node_modules/react-native-config-reader"; + name = "react-native-cookies"; + path = "../../node_modules/@react-native-community/cookies"; sourceTree = ""; }; 1FBC411B978207FD4CAB047DDE63BC21 /* SDWebImageWebPCoder */ = { @@ -12311,26 +12173,6 @@ path = SDWebImageWebPCoder; sourceTree = ""; }; - 1FF9C11DEA5FB5AC07C68242C7CA9432 /* Transitioning */ = { - isa = PBXGroup; - children = ( - F084391389D90EF8CF4ECFCE6ACE402F /* RCTConvert+REATransition.h */, - A14081D39493A10A57E2430BC0367832 /* RCTConvert+REATransition.m */, - 4222C44105ACF9CD2A045D9134622C61 /* REAAllTransitions.h */, - C7B5D7F22EC6694C63DC6FDDB44512CF /* REAAllTransitions.m */, - C0030898FE4DB1557627B02C59286307 /* REATransition.h */, - 3E96E36F5AAF6A80F189E890142C6790 /* REATransition.m */, - A5BCAC28276FE8611A4D72C73867CAE8 /* REATransitionAnimation.h */, - DF32A7BE67DD8929CB180EB9115D7E79 /* REATransitionAnimation.m */, - DC115E45AE9B773DFA80950444513408 /* REATransitionManager.h */, - BF97EB65D34483E03A6E8B7FCF89F179 /* REATransitionManager.m */, - 6216563D5EB7B6D2DFB9B412964A6EC0 /* REATransitionValues.h */, - D4AF643DEB251276A81EC8063A9F053F /* REATransitionValues.m */, - ); - name = Transitioning; - path = ios/Transitioning; - sourceTree = ""; - }; 20029F9EC0AFA43F5A4B4A873C9D907E /* Support Files */ = { isa = PBXGroup; children = ( @@ -12343,38 +12185,49 @@ path = "../Target Support Files/MMKVAppExtension"; sourceTree = ""; }; - 2060EBE9B233361C66811D7F3B00E9D0 /* Recording */ = { + 204B8CD29A1EA9F3F924D5965A2C3EE0 /* Support Files */ = { isa = PBXGroup; children = ( - 8A866499E67676965E5122117BBF92D0 /* BSG_KSCrash.h */, - 7E82028C6728DB9A8354B650C594795C /* BSG_KSCrash.m */, - 54F7C32BAB3628DAEBFE16E3D1A963BC /* BSG_KSCrashAdvanced.h */, - A4759D49F3E3AD1BCB0976839DC8BCDC /* BSG_KSCrashC.c */, - 7652CEAA30BFE987D01F1A0D42B4EB0F /* BSG_KSCrashC.h */, - DB6683D56729E793030C9787ED182DD5 /* BSG_KSCrashContext.h */, - 17A1201A1B1373C0D4D869949DD6DC1D /* BSG_KSCrashDoctor.h */, - 2B7086B4FF95C12A48AD94660A6FC301 /* BSG_KSCrashDoctor.m */, - 7EC65E615B94AFCB599DE6EA9F1B9A66 /* BSG_KSCrashIdentifier.h */, - 1E401050B6E345CA57EA75CA7F1B7F83 /* BSG_KSCrashIdentifier.m */, - A50ABD610499238953677918011EA345 /* BSG_KSCrashReport.c */, - 71143F46E3DB9DC80E053DACD169B748 /* BSG_KSCrashReport.h */, - 75BA41CB0845024FD2D6158FD1366BAD /* BSG_KSCrashReportFields.h */, - DC3B58AA606717C0FA45665D9976F685 /* BSG_KSCrashReportStore.h */, - AC3EF53CAA285B0C3D591E0FCE119B5C /* BSG_KSCrashReportStore.m */, - 41C3198A7870114D0CB5B74114B559EC /* BSG_KSCrashReportVersion.h */, - EBE539977B2F1ECFBFDC2C16330E742C /* BSG_KSCrashState.h */, - A3FD27CB2ABFBE5703A221949E3A8F2B /* BSG_KSCrashState.m */, - 64336ADBC3D8C459CB84D135DD365F93 /* BSG_KSCrashType.c */, - 3EC6BB4C8486782F353D4B94B9CDC207 /* BSG_KSCrashType.h */, - 7009BC2CAD24F37D604CF5CD634E1976 /* BSG_KSSystemCapabilities.h */, - 5204AA6A9301A33C12E1F8E92D471B5A /* BSG_KSSystemInfo.h */, - 6DE70F1E9ADAEFC680CB0DF56A0BA796 /* BSG_KSSystemInfo.m */, - 7CA0EA76C2A9FE04F093A89600261106 /* BSG_KSSystemInfoC.h */, - 36911DBC4F6A0B332EFB60CF7FE86352 /* Sentry */, - 86A09457C4E3C8214C2E108E5717EAFD /* Tools */, + E0B9144275C10AF7D0A6A184B9D5ACEB /* RCTTypeSafety-dummy.m */, + 17545BA851B1DFBC2089233450EF5AA9 /* RCTTypeSafety-prefix.pch */, + 54331796F2353B1FA7883FEEBBCB63CB /* RCTTypeSafety.debug.xcconfig */, + F58CCB42F2B72162B48CEC5AA4C952C2 /* RCTTypeSafety.release.xcconfig */, ); - name = Recording; - path = Recording; + name = "Support Files"; + path = "../../../../ios/Pods/Target Support Files/RCTTypeSafety"; + sourceTree = ""; + }; + 2061385022720A28E06740B5E3D8137D /* UIUtils */ = { + isa = PBXGroup; + children = ( + 62F98564D573BC2AC2B99B6905464940 /* RCTUIUtils.h */, + 2C6B8FF9417E97CC57C19588EC73AADC /* RCTUIUtils.m */, + ); + name = UIUtils; + path = React/UIUtils; + sourceTree = ""; + }; + 207A3F86DDB175ACFC87EC7C204C1AAC /* React-RCTVibration */ = { + isa = PBXGroup; + children = ( + AD73A5D2B0A7A8D78486198933973DBF /* RCTVibration.mm */, + 57E410A7F4B773880A4D4F1B53603A95 /* RCTVibrationPlugins.mm */, + 6000BFF43AF921038AF3D10BC8C72B19 /* Pod */, + 0F057F4E26DE7E530327E756638CA002 /* Support Files */, + ); + name = "React-RCTVibration"; + path = "../../node_modules/react-native/Libraries/Vibration"; + sourceTree = ""; + }; + 20D00E15C24958B6D1F8574D94F0E412 /* React-callinvoker */ = { + isa = PBXGroup; + children = ( + 90469AF3AF7112DF002C9E324FC959B2 /* CallInvoker.h */, + 3E1CA2230B68E7543F11BD8CF5CE76C9 /* Pod */, + CCD3BFFCF113F55A55F9E1A0582E0C12 /* Support Files */, + ); + name = "React-callinvoker"; + path = "../../node_modules/react-native/ReactCommon/callinvoker"; sourceTree = ""; }; 2190E9D0A50A0D812636F286A46886B0 /* Support Files */ = { @@ -12389,206 +12242,232 @@ path = "../Target Support Files/CocoaAsyncSocket"; sourceTree = ""; }; - 21EC55C78E7F6C46959A8C3389FE911C /* Views */ = { + 21DD9E3D0884FA7783F761C2F33AE178 /* Support Files */ = { isa = PBXGroup; children = ( - 8BF50CF401F58BA46BBB4267EBE86F68 /* RCTActivityIndicatorView.h */, - 747D5B95D8B372DC772DED829ABFE3C7 /* RCTActivityIndicatorView.m */, - D57B7EA564955711DAD9870EF606DA52 /* RCTActivityIndicatorViewManager.h */, - 9B5AE0DD6A87483AEAA0CE242842D5D8 /* RCTActivityIndicatorViewManager.m */, - 5362C7DC59923D5194301DF1C28D45F2 /* RCTAnimationType.h */, - E05361AD140D4C433AC4E1646853CEAE /* RCTAutoInsetsProtocol.h */, - 33D8BB538F1828D9A00AA9BC55D2FCC3 /* RCTBorderDrawing.h */, - 063BAEFED377695B7B330F91977A4541 /* RCTBorderDrawing.m */, - D722703E17938E620687735EA8C983D9 /* RCTBorderStyle.h */, - 13A41C305F7690029293963F88BEFD61 /* RCTComponent.h */, - 64D7F83B62FE5646EC61C1C78F8D6A68 /* RCTComponentData.h */, - A63BDDDF32E66F00231F80FA87FAFA1B /* RCTComponentData.m */, - 4A2378F2FB50DFD412D018A3BACB56D7 /* RCTConvert+CoreLocation.h */, - BBD988D67BB23F05086B6AE2FA5B32E9 /* RCTConvert+CoreLocation.m */, - 2B7D76FB8E7D5C448AAF50B694A3A684 /* RCTConvert+Transform.h */, - B2783E8C8A79BAE9AE51E80D773DDB2D /* RCTConvert+Transform.m */, - B4C1EE3F74ED63353DA485AC922659BA /* RCTDatePicker.h */, - 7F6A88B53A6E2E2C82A5B8E4633BC6DD /* RCTDatePicker.m */, - 53050823CDDA9B15EDE2BCBA4DF9FEAC /* RCTDatePickerManager.h */, - D63A7A7E8EC42561D9FEB776542D5CF0 /* RCTDatePickerManager.m */, - 2BC358F51655E4F09B0743DEB24C139F /* RCTFont.h */, - C8CDD306407E9BD523EF2092DCD6EE0F /* RCTFont.mm */, - 2B89E79FFCEFF8600B29DAC31CD75A3F /* RCTLayout.h */, - 32A9756511569DC9C0C6BEF16C916092 /* RCTLayout.m */, - EC478B8068327E66CDD99C94A742B975 /* RCTMaskedView.h */, - F84ED50C4DB2FFF9B7D663F40AB0BA31 /* RCTMaskedView.m */, - 4131217A97BD723A6DD165DE07ED6B67 /* RCTMaskedViewManager.h */, - 9095C8C20E0F58DB23E6714B8B6B30E6 /* RCTMaskedViewManager.m */, - 530B9636D742C698B4407CBF6D67B3BF /* RCTModalHostView.h */, - D30F484C51318F058A152C642B0920B9 /* RCTModalHostView.m */, - DA397571A04A01CA58D6258D423431D8 /* RCTModalHostViewController.h */, - 91D44CABDC0D8AD4BC46D00AE2FF9304 /* RCTModalHostViewController.m */, - C4514B2C800EBCD29CDB0DCDFC926F9A /* RCTModalHostViewManager.h */, - 248F18943B4F4FC493379B54A4923084 /* RCTModalHostViewManager.m */, - 5A4FE053B78720A4028DA213C773CC15 /* RCTPicker.h */, - 150F31FD99A8C71C538F0D0D60D10127 /* RCTPicker.m */, - 6636CE74E548DA0ABF051687E7C45793 /* RCTPickerManager.h */, - 4A7BF203C0C01D2D63E560D4851E24A2 /* RCTPickerManager.m */, - 367C34093ECA2E67BD089EBD9DB8457E /* RCTPointerEvents.h */, - BF5E215571D38CAD7C9A19909AC02FEA /* RCTProgressViewManager.h */, - 9CC79B7BEEE1E05B8DF70B4DBDA723A3 /* RCTProgressViewManager.m */, - 4778D802281AD0D545EFE32D9BF3FD75 /* RCTRootShadowView.h */, - F2040F70BD58607E19BF2B257D5EDBFA /* RCTRootShadowView.m */, - DD0D96E6D730314AE7C8034E6641B98D /* RCTSegmentedControl.h */, - BB275AD0048DF458F3B105B17BC2979D /* RCTSegmentedControl.m */, - F7A52421AC4E1624FA229043B7EDD69C /* RCTSegmentedControlManager.h */, - A10CB91755CDCBCFD134C92A4C6BCF54 /* RCTSegmentedControlManager.m */, - 4F2D633E76287494814E1FC604145383 /* RCTShadowView.h */, - 24DB158EC9EA65C84421AFC06D2F8CBA /* RCTShadowView.m */, - 8CE53290CEDD217BE63998976F2DA19A /* RCTShadowView+Internal.h */, - 71EE0824B08F01894BCE4A04CBCCE009 /* RCTShadowView+Internal.m */, - 8D5B65EA680A56B86A50DA10A3D7F7C0 /* RCTShadowView+Layout.h */, - AD1058B0F20D3C367979F14EF0242078 /* RCTShadowView+Layout.m */, - FA4724C19C35BF54DCFD2A635A716A11 /* RCTSlider.h */, - 0E2178102CF4EA9F7EB3C78F2273F61C /* RCTSlider.m */, - E045995218388251BBAB8A673DAC95B5 /* RCTSliderManager.h */, - 6DAA02CCAE5D3B649062362D9AF8BA5C /* RCTSliderManager.m */, - D653634F8A3BA4BB4A62E764C9B7CA32 /* RCTSwitch.h */, - AD00CBF236CCEBE1185E178EFD334949 /* RCTSwitch.m */, - 37176B64919F7E617125B15953291F78 /* RCTSwitchManager.h */, - E317496A8DC074097B8C249AB5D55E7E /* RCTSwitchManager.m */, - BFC463CEF72F1D3708AA52C16EFAF580 /* RCTTextDecorationLineType.h */, - 1C34E365003A2E9CEC40FFFB2D0F621A /* RCTView.h */, - 1C6ACE4E4DFE257A04FBBBD84F6F6E9E /* RCTView.m */, - 7A03B7173987B901D446E319A432F813 /* RCTViewManager.h */, - 2599F813746E4AE45113571B4A91D023 /* RCTViewManager.m */, - EFF6352CDA1D3A0EA06089C2462F06A7 /* RCTWrapperViewController.h */, - 72BFA2071FE17E7BC423430D83A5EC9D /* RCTWrapperViewController.m */, - E5493E3E972597596B1E5C76E44C53C1 /* UIView+Private.h */, - 3918786E8E20C9BE29981AFDDF8D1ECA /* UIView+React.h */, - 7128817469619B56E1F4D7C19B4A2A2A /* UIView+React.m */, - 475E176FFD97E2C800FF91DF03216556 /* RefreshControl */, - 7E7F90CADCBC425302A36BC37847084E /* SafeAreaView */, - B114AD28ED28AE03783C18796A445B18 /* ScrollView */, + 3BC5DF46B8687E39806371E7E7E4EE8B /* UMFileSystemInterface.debug.xcconfig */, + EFEEB8BF93362FC69EE6E8F55E3245A4 /* UMFileSystemInterface.release.xcconfig */, ); - name = Views; - path = React/Views; + name = "Support Files"; + path = "../../../ios/Pods/Target Support Files/UMFileSystemInterface"; sourceTree = ""; }; - 223AF0011C98B433401C8BB78CB6B065 /* RNDeviceInfo */ = { + 222795E186FF55399AA6AC1ADCD3608B /* Support Files */ = { isa = PBXGroup; children = ( - ED9CD1A8E4D2EAC4740033F246A5FEC6 /* DeviceUID.h */, - 770859EE2FA1790EEA676AC5AB5FDA81 /* DeviceUID.m */, - AB55D429AE13E611F56C6BE24545AD8C /* RNDeviceInfo.h */, - B7FF49D4BB2C9495FBA60F00F6FF7785 /* RNDeviceInfo.m */, - 1333E4F99C58699A45B13E35C159D42E /* Pod */, - BB77D82ABB6CD699B60B07B0A8609201 /* Support Files */, + 6F8A5C3E8294C04389D92A3125B0AF81 /* UMReactNativeAdapter-dummy.m */, + 302C8310BE1D09F70010C1F701DB41F6 /* UMReactNativeAdapter-prefix.pch */, + 84BC990B5932F4C9A221B8FA827227D5 /* UMReactNativeAdapter.debug.xcconfig */, + E7A1F54CF1550DE076C1E43DD7E9C2B4 /* UMReactNativeAdapter.release.xcconfig */, ); - name = RNDeviceInfo; - path = "../../node_modules/react-native-device-info"; + name = "Support Files"; + path = "../../../../ios/Pods/Target Support Files/UMReactNativeAdapter"; sourceTree = ""; }; - 225E1A0433E17BCB7C4F48BA78E9741F /* Pod */ = { + 22BD83B678101FA01331BB1F66ACDA15 /* Support Files */ = { isa = PBXGroup; children = ( - 28884FB1DDBDD4E9BB48826466D84D31 /* LICENSE */, - 93D74EFB015CFD784B0E79903C6773F4 /* react-native-webview.podspec */, - 087C479264A1B317065A9E54BCCE3C08 /* README.md */, + DBFB294D09E02F1A9071CDAF06E138EF /* React-jsiexecutor-dummy.m */, + 758C1C29BFB156503ABE5849433742E6 /* React-jsiexecutor-prefix.pch */, + 9508603F6BA1F20B9C84BA262FE29F08 /* React-jsiexecutor.debug.xcconfig */, + D9A200BBF13BB4915F46031A89FF6C5A /* React-jsiexecutor.release.xcconfig */, + ); + name = "Support Files"; + path = "../../../../ios/Pods/Target Support Files/React-jsiexecutor"; + sourceTree = ""; + }; + 22E73290AEC6117A8E959574BAAB1D28 /* TextInput */ = { + isa = PBXGroup; + children = ( + EFAEC012E5E9EAD8122E72B6C1B41073 /* RCTBackedTextInputDelegate.h */, + A040D2A508FC97D0624B679E432009E6 /* RCTBackedTextInputDelegateAdapter.h */, + 85278DCA2F11944F4D9AC9DDEA02A077 /* RCTBackedTextInputViewProtocol.h */, + CC5FCC4F68924176490A137A1E39DCD0 /* RCTBaseTextInputShadowView.h */, + 58ED3C3FE5BC1C02FF6ACDFA481C0A86 /* RCTBaseTextInputView.h */, + 8F99BA0A8FE3787106919BC94AF7D27D /* RCTBaseTextInputViewManager.h */, + 9760996D61B1B09583A96BF0100D6BB7 /* RCTInputAccessoryShadowView.h */, + 1D9BD610EC7E9A2C0043A8CA1E22A9D1 /* RCTInputAccessoryView.h */, + 362C0F2F708B1CA634761D478284C74B /* RCTInputAccessoryViewContent.h */, + 73B306321B65D553249B367A46C9B719 /* RCTInputAccessoryViewManager.h */, + F0955CC35725C4D3577984ECD6A13A33 /* RCTTextSelection.h */, + 68EBCB1A73333540632CF7CE62480DE0 /* Multiline */, + 09DCA0E29A0ED3156C990B5CA782D07A /* Singleline */, + ); + name = TextInput; + path = Libraries/Text/TextInput; + sourceTree = ""; + }; + 239E91C931A282B1D09E010D784A70BE /* Interfaces */ = { + isa = PBXGroup; + children = ( + D4783C7917C3E1C90944C685DA701AD2 /* UMAppLoaderInterface.h */, + 1FFB1EF336EF34B57AFE3F89A4A61682 /* UMAppRecordInterface.h */, + ); + name = Interfaces; + path = UMAppLoader/Interfaces; + sourceTree = ""; + }; + 240F51915E475CCAB3F7A6B9983FA426 /* Pod */ = { + isa = PBXGroup; + children = ( + 57A22BA5D38492DB82CE68692B202F87 /* BugsnagReactNative.podspec */, + 7933755C14BD93C771E2C975702E3C2F /* LICENSE.txt */, + A5481AAD31289946A22A761647F8C041 /* README.md */, ); name = Pod; sourceTree = ""; }; - 23229A9F79137EC5C32A5FC4974614D2 /* BaseText */ = { + 24106BFA9F9370684162C81AF4042437 /* Support Files */ = { isa = PBXGroup; children = ( - 628A48282BAAAE6B0C755DE30A1A9626 /* RCTBaseTextShadowView.m */, - DA980E04B659782E208CD6580A420932 /* RCTBaseTextViewManager.m */, + 51096531E43B6447C0D9B1D945A4D005 /* React-CoreModules-dummy.m */, + EDE0D988232DC764FC68C7DAD52AAC11 /* React-CoreModules-prefix.pch */, + D4973084DDC9ABB1F767978143F4D1D7 /* React-CoreModules.debug.xcconfig */, + 024903648BB05BFC1AA91A07253C9509 /* React-CoreModules.release.xcconfig */, ); - name = BaseText; - path = BaseText; + name = "Support Files"; + path = "../../../../ios/Pods/Target Support Files/React-CoreModules"; sourceTree = ""; }; - 236C414F2621D2152F5FD1E87C0BA023 /* Pod */ = { + 253ECEC04CD0B3E229F6233AB3ECB131 /* EXKeepAwake */ = { isa = PBXGroup; children = ( - 38A9A8F8C0F7BC70FFB6E6D23E57F3A6 /* React-jsi.podspec */, + C67FE86A126C1C4E22AF771365D3D744 /* EXKeepAwake.h */, + 4E7113059AEDDD56C9DFBFC85B58603F /* EXKeepAwake.m */, + 60DA154B868D4207B1962DBFF1071322 /* Pod */, + 01C28F99EE2280A53E20D6DEF73E4896 /* Support Files */, + ); + name = EXKeepAwake; + path = "../../node_modules/expo-keep-awake/ios"; + sourceTree = ""; + }; + 25D928370219BC605834699319A8A8B5 /* platform */ = { + isa = PBXGroup; + children = ( + D09DBDC08123F9B88ACF37AE0CBC967D /* ios */, + ); + name = platform; + path = turbomodule/core/platform; + sourceTree = ""; + }; + 25E952DD06A2614D14749C2EDEEB9241 /* Pod */ = { + isa = PBXGroup; + children = ( + C841DF62FDC483DDB32A085087EB31B0 /* LICENSE */, + DED8F9B5545FD4B78A17A97F4F8FE535 /* react-native-jitsi-meet.podspec */, + B968290195D42A559C4295FBDF222391 /* README.md */, ); name = Pod; sourceTree = ""; }; - 2619A6AD0A3FACCB5F32907EC8215996 /* Pod */ = { + 2603E021EF162D13D9C95E21403D5671 /* Pod */ = { isa = PBXGroup; children = ( - 7DC06DB3B31DDD3D5B151119DEC2BDC6 /* BugsnagReactNative.podspec */, - 32B6AFB4FF39246C40AF62895EEDFAFB /* LICENSE.txt */, - AB28F7A9ED8DD36DDA6C790D3E11AEA5 /* README.md */, + AFFF45D5064C6CDCBEFB29C94784F173 /* LICENSE */, + E37406EA40BF7C3D3F429CC3CE4FDB12 /* ReactNativeKeyboardInput.podspec */, + 4D6C67EE4AAE1608440115931A0FAAFA /* README.md */, ); name = Pod; sourceTree = ""; }; - 26674FD7DE156CDF72F26D1E1A451162 /* core */ = { + 268FE903C1F00E2586278E3EEC77708E /* Pod */ = { isa = PBXGroup; children = ( - 606F7B085BCA866D3720CC6D5FCF9A60 /* LongLivedObject.cpp */, - 1BAE84229D35B43443334AD1D87BD621 /* LongLivedObject.h */, - C3C96C1C6DF40074C58E556917065E41 /* TurboCxxModule.cpp */, - 119AA163EE5A0DE3389EA0D439315F22 /* TurboCxxModule.h */, - 92C6D968F1F420CEE7A114F9CBD45464 /* TurboModule.cpp */, - 1AE31F037F1E36CF47AF8B257751AA55 /* TurboModule.h */, - FE1BF3971DDA23472D1054E880C1F26D /* TurboModuleBinding.cpp */, - D291C56A24148D8510AA1C159AE07B1C /* TurboModuleBinding.h */, - 49BCB1B013AE59C44FF4F38FDAC4FFDD /* TurboModuleUtils.cpp */, - 5D03500B231468259C09116F18949D72 /* TurboModuleUtils.h */, - 86B1D2B7F6354DE7E902FE2FC20B7B5A /* platform */, - ); - name = core; - sourceTree = ""; - }; - 26A545BB4521618A4411ADB819D81B97 /* CoreModulesHeaders */ = { - isa = PBXGroup; - children = ( - A5E741F9671FC7F6CD960AA773922151 /* CoreModulesPlugins.h */, - F979AC57115823CDBF8EB4191491E462 /* RCTAccessibilityManager.h */, - 3B2E6FA44C12C34928F7B351816FDC58 /* RCTActionSheetManager.h */, - BDAC91970441035D624A3EE7B0ECFECC /* RCTAlertManager.h */, - B0364D8E627174BA396CA58A7451F968 /* RCTAppearance.h */, - FFB00AB649FA9941515EEE7ABDDA2560 /* RCTAppState.h */, - 9ACC090CEF53BA228E9E012822B6E4A5 /* RCTAsyncLocalStorage.h */, - E3991DCF182C3796F4FF25A3DBA63A13 /* RCTClipboard.h */, - 565BFBD8A300386DF3D6B7DA63170832 /* RCTDeviceInfo.h */, - 8780292910933F9818B30E4F0C9F0ECF /* RCTDevLoadingView.h */, - FA8FAA1FD937DAED70D1867C3A45EA3F /* RCTDevMenu.h */, - 03B00ACAA3137CF8B42479932AA84B11 /* RCTDevSettings.h */, - 40D44BA0ECCFDA52623C36E7DC52B50B /* RCTExceptionsManager.h */, - 0E83C6D92B0B8522BAB0BF0A43A41462 /* RCTFPSGraph.h */, - 1ABF16CB3517F42488E18B40B3754435 /* RCTI18nManager.h */, - 5F9008CF3189F888B288C33FCDD63C6D /* RCTKeyboardObserver.h */, - B4E0E6DFE4206A3F803116ECCF22DD90 /* RCTLogBox.h */, - 7A6045222BB4406D914AF58D7C10BE03 /* RCTPlatform.h */, - B54236F8BFE6D1E6E5F0234275E38574 /* RCTRedBox.h */, - 14CB29676D814E0DEAA45EA8C904B47B /* RCTSourceCode.h */, - D83AA0BAC32FB6F9279352AB6CC68E61 /* RCTStatusBarManager.h */, - 0CC9FF6D49C90B0AE45C0E6B55E83EB5 /* RCTTiming.h */, - F8841CAB389D5864BBD0F282D4313F21 /* RCTTVNavigationEventEmitter.h */, - E557E8FB831759A197AEA271B4A4E013 /* RCTWebSocketExecutor.h */, - 42096D708DBD77844D92805BB3460723 /* RCTWebSocketModule.h */, - ); - name = CoreModulesHeaders; - sourceTree = ""; - }; - 26EBD521B1AD91BCD418A4E78F8D8CE0 /* Pod */ = { - isa = PBXGroup; - children = ( - DC098C980C2993D32FC9AFD5D35050A2 /* LICENSE */, - 4E539C386CF7E1BFC17E306D127E55E8 /* README.md */, - C348CF2FAF6BDF7E1B9C0E3F1B4F473A /* rn-extensions-share.podspec */, + C4727C056D4FC5A6AF9C8EDAAA195E6F /* UMTaskManagerInterface.podspec */, ); name = Pod; sourceTree = ""; }; - 27FC7A34E49ECFA0920CD4456EB770A5 /* Pod */ = { + 26FD15549FE7F49B6C898B44B413641F /* RCTVibrationHeaders */ = { isa = PBXGroup; children = ( - B16412C2E33D7A2B1376C36CE5CDDB24 /* UMFileSystemInterface.podspec */, + 0305A06A28104F6A5F208F3E489C7E66 /* RCTVibration.h */, + 4C6E9D1C5FDE09F9764B1853523ACF43 /* RCTVibrationPlugins.h */, ); - name = Pod; + name = RCTVibrationHeaders; + sourceTree = ""; + }; + 2704D372C6A22863A1AB96C94FED695D /* BugsnagReactNative */ = { + isa = PBXGroup; + children = ( + 0955127522441E460AE779ACA23C7C48 /* BugsnagReactNative.h */, + D96667B0CB8929D70CE32E41D9594035 /* BugsnagReactNative.m */, + E8B9E38C11DB13A1120AA16C189E1B8D /* Core */, + 240F51915E475CCAB3F7A6B9983FA426 /* Pod */, + F47ACAA0B35DD8D34DC35235EAE43BCE /* Support Files */, + 9C19317942998BF1134439483CEE2E7A /* vendor */, + ); + name = BugsnagReactNative; + path = "../../node_modules/bugsnag-react-native"; + sourceTree = ""; + }; + 276D50CE9CFCE1E960B74587AF7BF162 /* Support Files */ = { + isa = PBXGroup; + children = ( + A1F9ACDEE76DCE90C462DCB0A4B6ABC4 /* React.debug.xcconfig */, + F1BD9EE9AF436CF1E4F5633FDDC8A9E0 /* React.release.xcconfig */, + ); + name = "Support Files"; + path = "../../ios/Pods/Target Support Files/React"; + sourceTree = ""; + }; + 2780101C7F990084BA0DA51469EDE2AB /* Support Files */ = { + isa = PBXGroup; + children = ( + 34F954E9B90DF67149D1DF8AEA262E2B /* RNFastImage-dummy.m */, + 30815AA414A9806DC08E8FFF479F2E66 /* RNFastImage-prefix.pch */, + E5E8A9339902B034ED0A3E536B15930D /* RNFastImage.debug.xcconfig */, + 416C31CEE3C675FA03825DEB93D218EE /* RNFastImage.release.xcconfig */, + ); + name = "Support Files"; + path = "../../../ios/Pods/Target Support Files/RNFastImage"; + sourceTree = ""; + }; + 27E602972B721242A1D0EC01DDCFE36A /* Tools */ = { + isa = PBXGroup; + children = ( + AD955028B0A607B00F4C5D307003BE0A /* BSG_KSArchSpecific.h */, + 4631007E5F5E335DF5E2EAFA10A61E6E /* BSG_KSBacktrace.c */, + D7DA89B3536F1DC491C0BE1719985DD4 /* BSG_KSBacktrace.h */, + 8D1F62BA31C127C20DF7A91703642F31 /* BSG_KSBacktrace_Private.h */, + 10F66C46F441031C10CF3596A8C4324A /* BSG_KSCrashCallCompletion.h */, + 7C686C22A7820E23E792CFE7CEC34194 /* BSG_KSCrashCallCompletion.m */, + 39AC9E745BA68706B0AE89D9D66F8D50 /* BSG_KSDynamicLinker.c */, + ADD23CEF9C39316A212074A84541E003 /* BSG_KSDynamicLinker.h */, + D5FEF647340558BEBCEEFE81A03D6D54 /* BSG_KSFileUtils.c */, + 3C72812947390EF4F3FE3AC3C10D0C77 /* BSG_KSFileUtils.h */, + 8635CE05D10A43345AB7380511457E26 /* BSG_KSJSONCodec.c */, + 31B30C0AF46CFD0E44714BC5856834C1 /* BSG_KSJSONCodec.h */, + ACE7BA24DDB7E915723843E2530F7AC2 /* BSG_KSJSONCodecObjC.h */, + 2FDFDE9284FAFA29E93E69931DBB6D93 /* BSG_KSJSONCodecObjC.m */, + 7EF3B553D41CFEFF9BFBAAB4F26BF38B /* BSG_KSLogger.h */, + 08BC175DFF581A63F45FB432E7265A80 /* BSG_KSLogger.m */, + 24BBBAA55A1CC02EE32B8B426C15516D /* BSG_KSMach.c */, + F57DC3AF076F8144C6408C3C79755B62 /* BSG_KSMach.h */, + C36F1747362A3B672628E464090DE8CF /* BSG_KSMach_Arm.c */, + E5015201A25299A5952B78CF8E53BC0D /* BSG_KSMach_Arm64.c */, + D45C724EB8C0D71D3902BF08C43D52A9 /* BSG_KSMach_x86_32.c */, + 50B6AD4B9670098A8950CE549EDEAE3A /* BSG_KSMach_x86_64.c */, + A6FC5A7B9316B20C740D8D8AC8A4013F /* BSG_KSMachApple.h */, + 860604C82E7C754ECB8B5E88177BCDB8 /* BSG_KSMachHeaders.h */, + 70EC929738BE759A09F7E0A5BE0CDC79 /* BSG_KSMachHeaders.m */, + C373C205427E8D0DB3CF4B34708EA1BB /* BSG_KSObjC.c */, + 5C8803E9BC5AB715FD5DFA10E7517347 /* BSG_KSObjC.h */, + 08E57BBBF49E38C54901029AAA8A529B /* BSG_KSObjCApple.h */, + 3640393C5156F9C77C23B5441732D675 /* BSG_KSSignalInfo.c */, + 94532D180CFB10D28416D4AB053726F3 /* BSG_KSSignalInfo.h */, + 5295CC5E3D7304F709069F1A7D292DDB /* BSG_KSSingleton.h */, + D5D6340F5678DBCBB48C6854343E05D9 /* BSG_KSString.c */, + E78DE3EEC7497C553D96A7096BA63A3C /* BSG_KSString.h */, + 600D816AA61D01F5E4158C5F3CFA2E7D /* BSG_KSSysCtl.c */, + C0153177194E7A1F169E6329754AFD57 /* BSG_KSSysCtl.h */, + 966AA607301E1831C4088AB16DB00954 /* BSG_RFC3339DateTool.h */, + 9688B6270FB8A586180122234A624D03 /* BSG_RFC3339DateTool.m */, + 6FD61D3C077B5C5BB76D0C9080AA7B43 /* NSError+BSG_SimpleConstructor.h */, + 6AC4EDB7ABE2FDDD4FA74FD80C5EB82F /* NSError+BSG_SimpleConstructor.m */, + ); + name = Tools; + path = Tools; sourceTree = ""; }; 2812FAB290DE50D0B2F92E3685847384 /* Resources */ = { @@ -12624,36 +12503,37 @@ name = Resources; sourceTree = ""; }; - 287C79185501C07AAC29D07AC2CBD590 /* Pod */ = { + 2A511B0F6840B59E976A3DE14F39C7C8 /* React-RCTSettings */ = { isa = PBXGroup; children = ( - 41DF63D0BEE787859D69E4C80B1A8C0C /* RCTRequired.podspec */, + 6C53459687D11CEDC9BD2E924D95DBDA /* RCTSettingsManager.mm */, + 6076E54A1D761A8377DFC0301C4FFBC6 /* RCTSettingsPlugins.mm */, + 5CC426D95E02D383C51DBD2FEB94A736 /* Pod */, + B92504FACB041A512EDEDB5F4EA7AE22 /* Support Files */, + ); + name = "React-RCTSettings"; + path = "../../node_modules/react-native/Libraries/Settings"; + sourceTree = ""; + }; + 2AD586B80053CCDA962C5323C79757BA /* Pod */ = { + isa = PBXGroup; + children = ( + 75A2AF411E6408CF1789796E8A9940A0 /* RCTTypeSafety.podspec */, ); name = Pod; sourceTree = ""; }; - 29B3BBC50E3B09CB178B41FC558C7014 /* RNRootView */ = { + 2B31901A923E93E45991118DB7BB16C1 /* React-jsi */ = { isa = PBXGroup; children = ( - 709A9F43290D17C7D62D477D719B2C35 /* RootView.h */, - B42DE144B58B9C676D6CEB7AA9A1956D /* RootView.m */, - 3B995AD4D541F49350FB326B50C92493 /* Pod */, - D8273CA949665AC698D1E87616D7FCB1 /* Support Files */, + A13E22AB2A0AEAD5E56AC5EB66D1CADD /* JSCRuntime.cpp */, + 5D27CE6B5875497450F18C08BF021A24 /* JSCRuntime.h */, + F2CC9DFC74A795003BA134FD3F40F6AB /* jsi */, + B698C19EA662FD1B6483C8D3A5CA6BCA /* Pod */, + B8D1DB4A515844AFB4F5B5AB671761DF /* Support Files */, ); - name = RNRootView; - path = "../../node_modules/rn-root-view"; - sourceTree = ""; - }; - 2A6CEFA85F23070CA70B9809FCAB1A4C /* Support Files */ = { - isa = PBXGroup; - children = ( - 42947D7AAB454BC900125EFBFE4C2750 /* React-CoreModules-dummy.m */, - 78BBAF7CBE7A037C966EBD2DAF28E9D4 /* React-CoreModules-prefix.pch */, - F9A5081C839BB5DA295E2AE5598782F1 /* React-CoreModules.debug.xcconfig */, - AC6726BF4FC5CE7C7AF3321B2A490A58 /* React-CoreModules.release.xcconfig */, - ); - name = "Support Files"; - path = "../../../../ios/Pods/Target Support Files/React-CoreModules"; + name = "React-jsi"; + path = "../../node_modules/react-native/ReactCommon/jsi"; sourceTree = ""; }; 2B45E1347166FAE6749801F0E813E85E /* FlipperKitLayoutTextSearchable */ = { @@ -12664,26 +12544,54 @@ name = FlipperKitLayoutTextSearchable; sourceTree = ""; }; - 2C0E986FD88567D520BD169C326DCAE4 /* RNBootSplash */ = { + 2B7A0DCE54A8DCFC1DB390E4B63E99AB /* Pod */ = { isa = PBXGroup; children = ( - A4B6C3E48C92E521F8502DED35235D2D /* RNBootSplash.h */, - C8A6F18406573DD1B9E64BFBC7BE2ADB /* RNBootSplash.m */, - 9C600B3CF720D09E7726049BA09B2063 /* Pod */, - 553C4B3F728EA2D2B4FD1C151D55FE0E /* Support Files */, + 302F23A8F0AA3C919D8F58AAED5AF0F7 /* FBLazyVector.podspec */, ); - name = RNBootSplash; - path = "../../node_modules/react-native-bootsplash"; + name = Pod; sourceTree = ""; }; - 2C541E9B9656B60529E2822BEC8F1AD4 /* Support Files */ = { + 2B7AC3C634766458D470426713D76194 /* Pod */ = { isa = PBXGroup; children = ( - 0016706FD6DA60F70AC4877B2ACA65BA /* UMSensorsInterface.debug.xcconfig */, - 28476FAB62AA82A560208FCD2225F979 /* UMSensorsInterface.release.xcconfig */, + 5763BB2974F7CAEA067D9FAD8B0AEA22 /* UMPermissionsInterface.podspec */, ); - name = "Support Files"; - path = "../../../ios/Pods/Target Support Files/UMSensorsInterface"; + name = Pod; + sourceTree = ""; + }; + 2BFD9A4F3BC0492F543920A70E0E6086 /* Recording */ = { + isa = PBXGroup; + children = ( + F75E69124B8637524684F5C0D01634D4 /* BSG_KSCrash.h */, + 6F1D530415E1E8F48052CB6AFE3BB087 /* BSG_KSCrash.m */, + 66DD01B75D0D51085FFA21C1E5712417 /* BSG_KSCrashAdvanced.h */, + 3A237921D4094A3F7DB5E38517E535ED /* BSG_KSCrashC.c */, + 6A2174BAE9FDA94986E9EE99590D8BAA /* BSG_KSCrashC.h */, + CB0CD3F37236BC9C2F58D3460CC0A4D6 /* BSG_KSCrashContext.h */, + BDA7A4EDE2DBFAEDE97D7EC063957325 /* BSG_KSCrashDoctor.h */, + A25167F1E0EC0A6D9BEF9BB7C6B13F7C /* BSG_KSCrashDoctor.m */, + 80ADA5AD654B848F75B764E0EDBF0A55 /* BSG_KSCrashIdentifier.h */, + 3D34D1147FF5825D85B7C27FCE3BE555 /* BSG_KSCrashIdentifier.m */, + 5CB5D959EFFF3A5E3124AC174A3814D9 /* BSG_KSCrashReport.c */, + 934E8C7477C105654FF661A2CE291B34 /* BSG_KSCrashReport.h */, + 6438611008682BE9B87E901625A6CB57 /* BSG_KSCrashReportFields.h */, + B27C49DEBDB36667C06ECE3FAD24BEF0 /* BSG_KSCrashReportStore.h */, + E6EFC9376699D27192EE2846F7017250 /* BSG_KSCrashReportStore.m */, + 9CE0AEE5BE154EE0241E057F573CF680 /* BSG_KSCrashReportVersion.h */, + DB5CAB2057435456429FA3445FD1EAAC /* BSG_KSCrashState.h */, + 3C321E819A4F442A64CB128BC31AD740 /* BSG_KSCrashState.m */, + 7B999C6D36107B57A55C835F39A8FB99 /* BSG_KSCrashType.c */, + 0E11A2018B39EB68BCE6F950D686826E /* BSG_KSCrashType.h */, + B493BD6DC566132C0D38020BA2C45C20 /* BSG_KSSystemCapabilities.h */, + 3306740FAB8D11FC5678EF7CE743EAD3 /* BSG_KSSystemInfo.h */, + 0954E35DA7C8F7318DDA7A1DEBF5BA14 /* BSG_KSSystemInfo.m */, + 2BD7FDD1B56BB354DA0C308C895A5D9C /* BSG_KSSystemInfoC.h */, + A71599AA86EAE92085E010DEC2713348 /* Sentry */, + 27E602972B721242A1D0EC01DDCFE36A /* Tools */, + ); + name = Recording; + path = Recording; sourceTree = ""; }; 2C8F886FFB08EE6EB8E83633D398BE11 /* decode */ = { @@ -12693,6 +12601,39 @@ name = decode; sourceTree = ""; }; + 2D1DE527D08A41E89321104E29093F5A /* Support Files */ = { + isa = PBXGroup; + children = ( + 2D5CE50786E06319A046DE429D71F1D8 /* react-native-appearance-dummy.m */, + 5C493E0644D3B3FC851DDFF7D22A38C4 /* react-native-appearance-prefix.pch */, + A54852A4485A3346864FA7557DC6D9BB /* react-native-appearance.debug.xcconfig */, + F667ABA327A20FB5B772C3C09561E1D0 /* react-native-appearance.release.xcconfig */, + ); + name = "Support Files"; + path = "../../ios/Pods/Target Support Files/react-native-appearance"; + sourceTree = ""; + }; + 2D97A7B562761E75B3812B4582694807 /* Pod */ = { + isa = PBXGroup; + children = ( + 1E839DEBB6721E5C36DBBB66B4BA2DF5 /* api.md */, + C4BE0F06AE3AB67FB06E3D808389C093 /* LICENSE */, + 09DB3431E7B74E6C586FD2AFF18A1D68 /* ReactNativeART.podspec */, + 095CE3142C95791DDB77685CC1DD8285 /* README.md */, + ); + name = Pod; + sourceTree = ""; + }; + 2DC009174A063A4958D165C0815DEA7F /* KSCrash */ = { + isa = PBXGroup; + children = ( + 2BFD9A4F3BC0492F543920A70E0E6086 /* Recording */, + B9DF6A9AFFB5CED75F525D4B3EB15A17 /* Reporting */, + ); + name = KSCrash; + path = KSCrash; + sourceTree = ""; + }; 2DE58ADF19843562F9835F95B52F81AD /* Support Files */ = { isa = PBXGroup; children = ( @@ -12705,126 +12646,89 @@ path = "../Target Support Files/Folly"; sourceTree = ""; }; - 2E3A1DF2DA14FB3666776C4CB4B08633 /* Support Files */ = { + 2DFA2EF732107931A1137A854A8617E3 /* Support Files */ = { isa = PBXGroup; children = ( - 23884F2077F3BCEBCC32F255C583030B /* RNCAsyncStorage-dummy.m */, - 5824C874CD967A5B1C78DA4C750E2D41 /* RNCAsyncStorage-prefix.pch */, - A87F3D7FACE03381E44D66CCADFC0F4C /* RNCAsyncStorage.debug.xcconfig */, - E95C27727C333696DE3CE5DD21ECD8B2 /* RNCAsyncStorage.release.xcconfig */, + 15188A9990A396DDDBF42E12C6EF721D /* RNFBAnalytics-dummy.m */, + 7E8FDF9F2784FF05324B097E9B869F00 /* RNFBAnalytics-prefix.pch */, + 851BDBB44A46FB4F257E118F9A6458A4 /* RNFBAnalytics.debug.xcconfig */, + 4441E75262506BBBDB0C14D0AF8ADC9F /* RNFBAnalytics.release.xcconfig */, ); name = "Support Files"; - path = "../../../ios/Pods/Target Support Files/RNCAsyncStorage"; + path = "../../../ios/Pods/Target Support Files/RNFBAnalytics"; sourceTree = ""; }; - 2E5525E616D2F8D1B0EC85FFC0F951BB /* FBReactNativeSpec */ = { + 2EB160A0736EC95D0AB21988C9C0FC87 /* CxxUtils */ = { isa = PBXGroup; children = ( - 6CEA4F39181B9C99B4CA47B51FC7A52F /* FBReactNativeSpec.h */, - 83BB5276CCBAD0A5948874E042BED951 /* FBReactNativeSpec-generated.mm */, - C5DCC868292DFFD07E37144C65ECAFF9 /* Pod */, - E78C758DA71A1C01082204E4DD379D47 /* Support Files */, + 5EC7C99A787AE1FAE9E42B30C1A77EAC /* RCTFollyConvert.h */, + A782707D85B7B5A62B0BC5054E66E98B /* RCTFollyConvert.mm */, ); - name = FBReactNativeSpec; - path = "../../node_modules/react-native/Libraries/FBReactNativeSpec"; + name = CxxUtils; + path = React/CxxUtils; sourceTree = ""; }; - 2E8DACBE318224DEE977731F4A6AFA15 /* Pod */ = { + 2EC384930985C4B24A9B2B7B7E48F5B1 /* Support Files */ = { isa = PBXGroup; children = ( - 5D7E1A1A103C6C31878F10EE018CA0C5 /* LICENSE */, - 44539B969639A3408C91032DED89095C /* README.md */, - 6776B518AE3CBCB9932E94BB1A5F1DAB /* RNFastImage.podspec */, - ); - name = Pod; - sourceTree = ""; - }; - 2F25A4A6B7D83C7454DBFD76BE418B8E /* Support Files */ = { - isa = PBXGroup; - children = ( - 83298AC3BCF7B52AF9C0EDB0BA7DAAB6 /* ReactCommon-dummy.m */, - 1555F15820E29E453831005769838B1B /* ReactCommon-prefix.pch */, - 6E14E0CEE1DE2135B46737D70E50767A /* ReactCommon.debug.xcconfig */, - 739825A0FDF0425CD3B7964A439AA9EE /* ReactCommon.release.xcconfig */, + 1AA6229619C534AF55FA40D24BA5F883 /* React-RCTLinking-dummy.m */, + 814D4623C8C092E334E066B9AA74A3B6 /* React-RCTLinking-prefix.pch */, + 34D4B8A8DB7C8315218A6C7FF6F0A203 /* React-RCTLinking.debug.xcconfig */, + 37C7AE9BC89E33B1AF117DB143AB6435 /* React-RCTLinking.release.xcconfig */, ); name = "Support Files"; - path = "../../../ios/Pods/Target Support Files/ReactCommon"; + path = "../../../../ios/Pods/Target Support Files/React-RCTLinking"; sourceTree = ""; }; - 2F642E6BAC91026C37482E77E9E3DADF /* Support Files */ = { + 2FB6B5EAE954A4E93AC59C4819B49F44 /* ReactCommon */ = { isa = PBXGroup; children = ( - 592DD630DCEE777C58C1EED2A83E5781 /* React-jsi-dummy.m */, - 09DB0608DD97244012DFDB6A79C8085F /* React-jsi-prefix.pch */, - 0F74DED5CCE9B88A2F10D02E10B256A1 /* React-jsi.debug.xcconfig */, - C9071D2B0FC87235B9674AE17CC4B86A /* React-jsi.release.xcconfig */, + 81C970C3770B0CB83433426B225E4624 /* Support Files */, + D42E8E2FEF376E30D029619C8CF4338A /* turbomodule */, ); - name = "Support Files"; - path = "../../../../ios/Pods/Target Support Files/React-jsi"; + name = ReactCommon; + path = "../../node_modules/react-native/ReactCommon"; sourceTree = ""; }; - 3022F38DDE88CB00FB5F15B26BF244DE /* Pod */ = { + 2FCF04DDF236912112ADDAC6077FF5A2 /* Resources */ = { isa = PBXGroup; children = ( - 6D84F38E5C54AFE11D41E2D745A1B65B /* React-cxxreact.podspec */, + D2CF69080B3D62569BBC0C345A366519 /* en.lproj */, ); - name = Pod; + name = Resources; sourceTree = ""; }; - 30AE52FA523D8D6A827FFD5FB52BFA40 /* EXVideoThumbnails */ = { + 30B42A2CD0A81617A08E2488E8F69ECC /* ScrollView */ = { isa = PBXGroup; children = ( - 65E7D4CADD6D7D593295ED52EE638F6B /* EXVideoThumbnailsModule.h */, - E47DAE906867F4EA69C2F609837C088C /* EXVideoThumbnailsModule.m */, - BFFE3E0EB1BCC4189411C0EF8C2B1824 /* Pod */, - 82F805433D39072A7F43BACF9CB9AADA /* Support Files */, + B74515FFE16AF68ABA56B0B0525D4E64 /* RCTScrollableProtocol.h */, + C32FA5A92FFBCFFE518FB95493529D4B /* RCTScrollContentShadowView.h */, + BA7ACD2B3319D0FCEC206069A1D8C696 /* RCTScrollContentShadowView.m */, + 0772CD1EB03764865FC293C8347E4598 /* RCTScrollContentView.h */, + 683FF8385E8A845B8EE43EDE69D6DD5A /* RCTScrollContentView.m */, + 169BCAFC2A880127CA3F55F3C5352981 /* RCTScrollContentViewManager.h */, + E744B8569EF60BC8E2E2075A062CFFA2 /* RCTScrollContentViewManager.m */, + 93B719540A604229267E3FC6CADE0DB7 /* RCTScrollEvent.h */, + 7A1712A44424732D05AB86F17D277446 /* RCTScrollEvent.m */, + 4454195B694BFC9D8732F4E94496F38F /* RCTScrollView.h */, + CDFB8664DB7DD1B86FF333BE3F57BA18 /* RCTScrollView.m */, + 561F8C652888B481FAA6AB4EE4FD77CC /* RCTScrollViewManager.h */, + DA5DB30147897FCB5B1AC8EA2D6D4F68 /* RCTScrollViewManager.m */, ); - name = EXVideoThumbnails; - path = "../../node_modules/expo-video-thumbnails/ios"; + name = ScrollView; + path = ScrollView; sourceTree = ""; }; - 30C150141518662107F5E0903C031AC8 /* Support Files */ = { + 30BE85D7CCBF65E983F5C7063D8CD484 /* RCTCustomInputController */ = { isa = PBXGroup; children = ( - 58840BBD57946D3826AF7D7B7BE3460A /* EXAppleAuthentication-dummy.m */, - 6DA747F672C6DA97EE0D9CDDE2852993 /* EXAppleAuthentication-prefix.pch */, - 813541EC1227B6192BEDCC61422B7F7E /* EXAppleAuthentication.debug.xcconfig */, - 521B70D5DD2C6D7EEB6391518ACE1CAF /* EXAppleAuthentication.release.xcconfig */, + AF8BFF1F2DB742C1A4EC63AEF5DABC73 /* RCTCustomInputController.h */, + 4314F3FA5C3A1791804E35FB074F4C9B /* RCTCustomInputController.m */, + 9CC2D1FA1DF8FDEF7C6C8C812593AFF9 /* RCTCustomKeyboardViewController.h */, + 0E721F73DBFF0584B6779F20A79840BE /* RCTCustomKeyboardViewController.m */, ); - name = "Support Files"; - path = "../../../ios/Pods/Target Support Files/EXAppleAuthentication"; - sourceTree = ""; - }; - 31153F5D3052F8E16D923A2AE07F6CBB /* Pod */ = { - isa = PBXGroup; - children = ( - FF7ADB045F5E675A0C0EF9907423DBB4 /* EXKeepAwake.podspec */, - ); - name = Pod; - sourceTree = ""; - }; - 312FF6791778C2FF701DDEA133BAD15C /* Handlers */ = { - isa = PBXGroup; - children = ( - F0842D2A48CFAEB9FD497B75F54C412F /* RNFlingHandler.h */, - B133713F9DEAAB1D042EBC4C305BA871 /* RNFlingHandler.m */, - 7E47BF8320330721BA63ECAF011A85EF /* RNForceTouchHandler.h */, - AC26CBE9BD871F6D591E55811B20F351 /* RNForceTouchHandler.m */, - 5776D2B1674A9AC9CE83D0E67BB4C08E /* RNLongPressHandler.h */, - C0E4144BC58F74404DB8E91C49EBA0F1 /* RNLongPressHandler.m */, - 38E507208666EAA5E97F8CE95EE71C4C /* RNNativeViewHandler.h */, - 66F6A981CEA13748A99785DE62DC4464 /* RNNativeViewHandler.m */, - 15263F0050ADD74E6AE7351DBB60370C /* RNPanHandler.h */, - D9B7193F174B7FE6EEBA010ADA62F9D3 /* RNPanHandler.m */, - 9EC8B77FD7AF90D9D433A22F1C9CD121 /* RNPinchHandler.h */, - B0B33A952D7E8A3DB4FF06D7ADBF0D3B /* RNPinchHandler.m */, - 6224A7F4008F7612AA80D6FE489064FC /* RNRotationHandler.h */, - A9502B61EED8AB574D2EFD4FC1F9A56F /* RNRotationHandler.m */, - 6F4B077C4A9C3CCC7C859441E903DF65 /* RNTapHandler.h */, - 296698780DFB4EC12AFDDA86CD429674 /* RNTapHandler.m */, - ); - name = Handlers; - path = ios/Handlers; + name = RCTCustomInputController; + path = lib/ios/RCTCustomInputController; sourceTree = ""; }; 3134ECC6B34121BE9E6E569D5369366B /* FlipperKitNetworkPlugin */ = { @@ -12846,28 +12750,49 @@ name = FlipperKitNetworkPlugin; sourceTree = ""; }; - 32A25F038C980CCC9DADC13D3901D76D /* Support Files */ = { + 318EE7FEB2A11C9728169868FD119FCA /* CxxBridge */ = { isa = PBXGroup; children = ( - C365170B94B6FD9ED83E156A82E5EE84 /* RNVectorIcons-dummy.m */, - 4AB53F9C77EF8C2263666249468A480A /* RNVectorIcons-prefix.pch */, - B48B0BCCD3C6C914732896C8EE15BD0C /* RNVectorIcons.debug.xcconfig */, - C4AAD8F880DFA4979E72502A2E1DB4C7 /* RNVectorIcons.release.xcconfig */, + E531255671006E36028F41DF2C8F1766 /* JSCExecutorFactory.h */, + 1BE24326339EA5D793FFC93396F5A933 /* JSCExecutorFactory.mm */, + E62AE4F62F5682031F5E7E94657C1CAF /* NSDataBigString.h */, + 1F0A457BA1B534C2D66A37D6CEAEDCE0 /* NSDataBigString.mm */, + D4926A796F3466B4AC07ACE1D5E7A1B0 /* RCTCxxBridge.mm */, + 5C09459D38513CA3B0FAE57A38D711B7 /* RCTCxxBridgeDelegate.h */, + B938E33632785E0B00428F5CBC3F7CD6 /* RCTMessageThread.h */, + C780B42FA63C09360BE3DA04772966D1 /* RCTMessageThread.mm */, + 1AB730AA47D1B6D33939F2F91C0C1735 /* RCTObjcExecutor.h */, + 5AFB77D91B861C98ECA2289609DA904B /* RCTObjcExecutor.mm */, ); - name = "Support Files"; - path = "../../ios/Pods/Target Support Files/RNVectorIcons"; + name = CxxBridge; + path = React/CxxBridge; sourceTree = ""; }; - 33B961758CD47BB742283486F0EE94DF /* Support Files */ = { + 31C5B614CBF06C7E8C5010C9BE829A8A /* RNGestureHandler */ = { isa = PBXGroup; children = ( - EFE253EDDDF2A6BE55D8EE81C7B566D7 /* react-native-mmkv-storage-dummy.m */, - AAB3E5DC0F0C5F5097B3F081E87DD052 /* react-native-mmkv-storage-prefix.pch */, - 989770EEA06C006434521276B799FE3F /* react-native-mmkv-storage.debug.xcconfig */, - 8FB5DFA213A6F5AE786C9DA06E5EDB97 /* react-native-mmkv-storage.release.xcconfig */, + 477B28B03343F5C67D5E1D1B4D06EBC1 /* RNGestureHandler.h */, + 38023691E1EF8AA80C51B1C7203D1690 /* RNGestureHandler.m */, + BBEF5D51AC5C7637169DD5A598522DDF /* RNGestureHandlerButton.h */, + C4F55E274BD829C8254C85756A40CA29 /* RNGestureHandlerButton.m */, + B361D1648F16F2E9D630D5228A0BD05D /* RNGestureHandlerDirection.h */, + 9410A1266643F02DA74B202C9B383204 /* RNGestureHandlerEvents.h */, + AB626D9B1A1FBFA86A849604F6E5B786 /* RNGestureHandlerEvents.m */, + 83DAE5534B0BE566CDA5BB76F172848B /* RNGestureHandlerManager.h */, + 2FF28F4AD267E8CC9B11CA62B73C5685 /* RNGestureHandlerManager.m */, + FF4E785CEBE31901F032772FB7660E08 /* RNGestureHandlerModule.h */, + A932D3232297BB66850D71CE87750BD1 /* RNGestureHandlerModule.m */, + 5F5F5B7BA0F1D8C949CDE8BADFE1B21E /* RNGestureHandlerRegistry.h */, + 0DD0CB02F42B830138997DC9393DE174 /* RNGestureHandlerRegistry.m */, + F894B9A16ED28923C5B8F84CD39FB70D /* RNGestureHandlerState.h */, + C1694424A9054A963D0F0EA5E69CFD36 /* RNRootViewGestureRecognizer.h */, + 3E1073C68C346E573EBD24D1AE3E1397 /* RNRootViewGestureRecognizer.m */, + 9D59CAAC5C499D5CAFE077FA7FF136A5 /* Handlers */, + FA71CD8291A9F44E99CAAB54D615C021 /* Pod */, + E0187C9660C824F7BCB997347199EFE2 /* Support Files */, ); - name = "Support Files"; - path = "../../ios/Pods/Target Support Files/react-native-mmkv-storage"; + name = RNGestureHandler; + path = "../../node_modules/react-native-gesture-handler"; sourceTree = ""; }; 3400068431D3CEA258078DCD8DA8C835 /* Pods */ = { @@ -12912,158 +12837,41 @@ name = Pods; sourceTree = ""; }; - 34661FEB231B676E2B25FB10CBD4D832 /* Support Files */ = { + 349129B6B6D464E58CBDD29F9A20E1FF /* Resources */ = { isa = PBXGroup; children = ( - BFAD44D90FC5A72757E1273280B5D544 /* EXHaptics-dummy.m */, - 636D45E785CA25BC4B4D6972DA3F1758 /* EXHaptics-prefix.pch */, - 36F6E40F093384CB14CB295B27ABC9F9 /* EXHaptics.debug.xcconfig */, - E8101F5607C38BCCA44465470167659D /* EXHaptics.release.xcconfig */, + FCA5668178EC3E3E47664DECB208150F /* de.lproj */, + 93B9066F801BD5FCBC67504C5239E200 /* en.lproj */, + 60713CD73673CF9D2884A92187EC3409 /* es.lproj */, + A5F34A16C11A38336EDFB9799B19E9FC /* fr.lproj */, + 925028FF257DC4634FE1F08F7AEEB619 /* ja.lproj */, + A32C495876A6D67DA542344F3BBAD36D /* pl.lproj */, + FD504F6B161DA27F1ECFD41CC8AE035F /* QBImagePicker.storyboard */, + B2DFDDBE737621171F95596BA013275B /* zh-Hans.lproj */, + ); + name = Resources; + sourceTree = ""; + }; + 35E8D1E79131D3C4D6AA022D83DF0154 /* Support Files */ = { + isa = PBXGroup; + children = ( + 2F083888A736E2C447072045F24C02D2 /* UMFaceDetectorInterface.debug.xcconfig */, + 1B3992AF1B85A8F16608E275651353E3 /* UMFaceDetectorInterface.release.xcconfig */, ); name = "Support Files"; - path = "../../../ios/Pods/Target Support Files/EXHaptics"; + path = "../../../ios/Pods/Target Support Files/UMFaceDetectorInterface"; sourceTree = ""; }; - 359DC2B57FFF4A2F4C8CAD4E5503C7D8 /* turbomodule */ = { + 3722C6C9EB6870E609937C5D33C87709 /* Support Files */ = { isa = PBXGroup; children = ( - 26674FD7DE156CDF72F26D1E1A451162 /* core */, + 63C74A085D1810F847F72318EA748802 /* RNDateTimePicker-dummy.m */, + 555D52D7CAF8E5F798AE34AD2134D58B /* RNDateTimePicker-prefix.pch */, + 2293EA91890914A585875B2CE1F8408F /* RNDateTimePicker.debug.xcconfig */, + 9EBE8513EE9880A09F02B09F80CABF56 /* RNDateTimePicker.release.xcconfig */, ); - name = turbomodule; - sourceTree = ""; - }; - 3681B8E9250B0176070C8FA7BD0A82AB /* rn-fetch-blob */ = { - isa = PBXGroup; - children = ( - EDBFCD6B15179805CF3E6FC80DC3B250 /* IOS7Polyfill.h */, - 33ADF32D45491F36ACC04AA21786D9FC /* RNFetchBlobConst.h */, - 4C62D3D798D7679A8D9B0CE220A26558 /* RNFetchBlobConst.m */, - 591CF5DE291F6F3D7B2E3D7F3559571E /* RNFetchBlobFS.h */, - F70F3F6CE0625D11C3ECE4FC7838EF51 /* RNFetchBlobFS.m */, - 3E78DDF7C688CE7245EE832878376B92 /* RNFetchBlobNetwork.h */, - 29155DCB0B25BB8B8C3322D366B643AB /* RNFetchBlobNetwork.m */, - AAC3E73845BB5A5E98B785C141C1A974 /* RNFetchBlobProgress.h */, - B22277B66F99CD73FE129A6FFEDAAC85 /* RNFetchBlobProgress.m */, - 878AEE37DA04FA236601B147CD9022CA /* RNFetchBlobReqBuilder.h */, - 997AB438C329A5D35A6336ED9765FC02 /* RNFetchBlobReqBuilder.m */, - B5F6ABDB85F84E535AA937C74C5DE51C /* RNFetchBlobRequest.h */, - F7B7F58C0DD115D53416979A4429C89B /* RNFetchBlobRequest.m */, - D0BD31B68E3F35B436BCABC0638963C7 /* Pod */, - FFD3C4E2D0044DBF128B493778671BA9 /* RNFetchBlob */, - 9F08E35505D2EEE7576E2B296CF9CF75 /* Support Files */, - ); - name = "rn-fetch-blob"; - path = "../../node_modules/rn-fetch-blob"; - sourceTree = ""; - }; - 36911DBC4F6A0B332EFB60CF7FE86352 /* Sentry */ = { - isa = PBXGroup; - children = ( - 62EA869E0FD95F6A5D60988D06E375EA /* BSG_KSCrashSentry.c */, - 1F8095A28ECC27ECAFF09D8B4157F95C /* BSG_KSCrashSentry.h */, - A9B3A824619663B03E4689A19ADC7A7F /* BSG_KSCrashSentry_CPPException.h */, - 54DCD51CAE6B956241E6E223E1CCF329 /* BSG_KSCrashSentry_CPPException.mm */, - 79910263DF25CA8B511ED96F6446BCF6 /* BSG_KSCrashSentry_MachException.c */, - 493F59935E3C8D6F7007BE5F62DDA46E /* BSG_KSCrashSentry_MachException.h */, - E90F87632F6DCC999AA8B84657FFA97D /* BSG_KSCrashSentry_NSException.h */, - A15BEEBBE39B54523F61DCDB62CD5FB9 /* BSG_KSCrashSentry_NSException.m */, - C2B44A86B749831A4227E1C725440B19 /* BSG_KSCrashSentry_Private.h */, - CB90D178FE39E7A139DEC60C63E9C234 /* BSG_KSCrashSentry_Signal.c */, - 9F5FB1133346CDEE3A80F43F9818DA61 /* BSG_KSCrashSentry_Signal.h */, - 7628A6AD298E923A7804528851AF346C /* BSG_KSCrashSentry_User.c */, - BABC65ABA36238412CBD358F55B41EEA /* BSG_KSCrashSentry_User.h */, - ); - name = Sentry; - path = Sentry; - sourceTree = ""; - }; - 36A706185249AAC0847D568C5A99C9F6 /* Base */ = { - isa = PBXGroup; - children = ( - 76426A494B8D38A077E05F787E76ECE1 /* RCTAssert.h */, - EA97DFEA09BDD82EED983AFE1835DA12 /* RCTAssert.m */, - D041B3D0518D80877DEAF8464CD1ADF3 /* RCTBridge.h */, - 93C901F6E9CB1802982E6C0C7077F5F0 /* RCTBridge.m */, - EB31A19D4B088A179BBBB562A4E5B551 /* RCTBridge+Private.h */, - 62147477D0529B02C595D66D9903B668 /* RCTBridgeDelegate.h */, - E8E3906981061F0F9BF3AF1AD1027A1E /* RCTBridgeMethod.h */, - 21A289577DDEDFA5253CECFFD3E75F88 /* RCTBridgeModule.h */, - 325811BC34872EF4BBB0B1FD669575DB /* RCTBundleURLProvider.h */, - BAC2229CCF7F0A0550B5E0DC8FDDC0AF /* RCTBundleURLProvider.m */, - 616759E5E19CC5E19518503433D74829 /* RCTComponentEvent.h */, - 8E0942FED22AE1584C829F1A501050CF /* RCTComponentEvent.m */, - E752934C099608793BB304F3E8C6889D /* RCTConstants.h */, - 5D1A49894D5699B239A8EC446C4C5BFD /* RCTConstants.m */, - 1CDB7565B8CB41198F2CCE761B6460E3 /* RCTConvert.h */, - 9895AF8412268FD8D4DAF8A22D61597E /* RCTConvert.m */, - 6755B74140AB33575D7F7612912E3CCB /* RCTCxxConvert.h */, - 50AFA3ACD007907EC69B44532DDC1F43 /* RCTCxxConvert.m */, - DC18B65FA697E00B9EF9F7CD384F632B /* RCTDefines.h */, - 901F6C3CC60644CE3995BF7CFBAD085E /* RCTDisplayLink.h */, - F72EC0773F19BCCA5A601D8F80BFAB38 /* RCTDisplayLink.m */, - B00A7DBC5089230DC3404C2E7C13EEB2 /* RCTErrorCustomizer.h */, - BFC4541E41094D35BFCA29320F50C28D /* RCTErrorInfo.h */, - 6B725ECAF6D8FB959331B3FDFC226549 /* RCTErrorInfo.m */, - ABBA8DE8B575DFFF2C4935CD563CBB42 /* RCTEventDispatcher.h */, - 15DB6119A63F2B953674A42920CFA829 /* RCTEventDispatcher.m */, - C5892E5E14023368F105BBFBE97321F2 /* RCTFrameUpdate.h */, - A75D50824166B49F29E5348151D0EE40 /* RCTFrameUpdate.m */, - 609480681C3B0B0608A3257DD78526FB /* RCTImageSource.h */, - F2080E40F6F66DA936175922D8EE39E4 /* RCTImageSource.m */, - 346D51C0E4A81A54101A5E224D1D0E0D /* RCTInvalidating.h */, - 006014C47BE7976F74E8506743E2E6AE /* RCTJavaScriptExecutor.h */, - 849BF04E0AF0DED84B2C5DAF9AB8B368 /* RCTJavaScriptLoader.h */, - 91D26622E5B73F31C2DB5F3294D5D338 /* RCTJavaScriptLoader.mm */, - 3555D2278049B0F16B5CD2231BAE4CCE /* RCTJSInvokerModule.h */, - 238862B6467AD75F3C8F74F4E60AC9A0 /* RCTJSStackFrame.h */, - 17C6B8E82996223DC96A44FA24D60F06 /* RCTJSStackFrame.m */, - 99F58E282FEF8BDA0B95DA503C648D0F /* RCTKeyCommands.h */, - 78C1DB4D9E285A0BBEDD46D343D5908E /* RCTKeyCommands.m */, - EFECB04B4961098514237FFDCF858366 /* RCTLog.h */, - 0F1328892B70A565CE6934664BB7B0DF /* RCTLog.mm */, - 11CF8D68F59E5DA5A6FFA1A0685E8CB3 /* RCTManagedPointer.h */, - 1245B0690D02632BE78785FF84AA32E6 /* RCTManagedPointer.mm */, - EB1493B5B74339036BCAFEA4BEA1EB92 /* RCTModuleData.h */, - A9A4DCE4BC87019EAE173236378AE571 /* RCTModuleData.mm */, - 422C1530677F86317F308C22C22F6788 /* RCTModuleMethod.h */, - C96CEA7E32DCCEE86C7442DA65BC188C /* RCTModuleMethod.mm */, - 9BBA329A5AFD8FB3EE0B6841AC58A737 /* RCTMultipartDataTask.h */, - 97018D259B0D126C7761FC5EE81F5875 /* RCTMultipartDataTask.m */, - 6EDAE9344FA470CF6BC3954CE47ACBC7 /* RCTMultipartStreamReader.h */, - 1ADE52A64FCBC1A4E3AF6DA3B109A369 /* RCTMultipartStreamReader.m */, - E9118357368F954907D3F27B7DBBBA85 /* RCTNullability.h */, - 23A1D9B9BBAF772E9D698A408B44226B /* RCTParserUtils.h */, - DA65FFD28CB295BDA17D33B6504C6891 /* RCTParserUtils.m */, - 13D4C0A6ADE1730A37B433AEB26BA301 /* RCTPerformanceLogger.h */, - 6EEDEBFB4855D5CF5E9F79FA46B476EE /* RCTPerformanceLogger.m */, - 1174981182DD83078F016F79F7A9B9DA /* RCTRedBoxSetEnabled.h */, - 7E10CC96907CE1E161D8FD66DA528DB0 /* RCTRedBoxSetEnabled.m */, - 7194C726911A0FCC37B98C166905E0E1 /* RCTReloadCommand.h */, - 3F23D900DBB1BA73C5A72BE100ABA7FB /* RCTReloadCommand.m */, - 045982EF673658512F71EE801CC44B39 /* RCTRootContentView.h */, - 13DC17260854E0110731D49511FAF2D4 /* RCTRootContentView.m */, - BAA9381E9B15567B41C7E2E4E1A54E62 /* RCTRootView.h */, - 685D7A01D6AC0926E46057218D990941 /* RCTRootView.m */, - 119A9B97855E170C276D8B2120614DFA /* RCTRootViewDelegate.h */, - 05F43FC6C16D097AE21402A3F610130B /* RCTRootViewInternal.h */, - CD0FC109571C3BBFEBF54058E8DAE3D0 /* RCTTouchEvent.h */, - DD65F3DED5FD0B14E2D6CFAA61CFC479 /* RCTTouchEvent.m */, - 0A2E4B6CE4169FF363E84BAA68A17746 /* RCTTouchHandler.h */, - 90005C773AC1EFD5D5B29B0F7235021F /* RCTTouchHandler.m */, - FF53E5999EFE1C088815317A94B7BEC5 /* RCTURLRequestDelegate.h */, - 236CD514762B113C1A45F11E0FDE64D4 /* RCTURLRequestHandler.h */, - CB87B343FC29D138799BA48A2C5007CC /* RCTUtils.h */, - 1CD39A256D86B123C40027930CB1D817 /* RCTUtils.m */, - 8784B767338465C48D3034FD940B1A63 /* RCTUtilsUIOverride.h */, - 4695251E28F41008C9F3DFF460FEECE8 /* RCTUtilsUIOverride.m */, - 880C25DFCFE81BC0CBCB59B76DB2DA4D /* RCTVersion.h */, - FFE1B62C7BFE512BE93821D330789AFC /* RCTVersion.m */, - C235EA4E425F35F554BA2B92044A3ACE /* RCTWeakProxy.h */, - 462B30AE206A35B4582AD7E286A895D6 /* RCTWeakProxy.m */, - C179B71EE2013EC55CA01132CA04DDE2 /* Surface */, - ); - name = Base; - path = React/Base; + name = "Support Files"; + path = "../../../ios/Pods/Target Support Files/RNDateTimePicker"; sourceTree = ""; }; 383A495441D156DF2998066C5E194D51 /* Flipper-RSocket */ = { @@ -13235,6 +13043,24 @@ path = "Flipper-RSocket"; sourceTree = ""; }; + 387C0DD92B15EF3E928F593940FDC7B6 /* BaseText */ = { + isa = PBXGroup; + children = ( + B7FDE4513DB617FCC57BE7A7D3369E80 /* RCTBaseTextShadowView.h */, + FFB82057B966842FA5FEEEB38804C72E /* RCTBaseTextViewManager.h */, + ); + name = BaseText; + path = Libraries/Text/BaseText; + sourceTree = ""; + }; + 38A2A16EDBE8776E1F60F0D4245DF88F /* Pod */ = { + isa = PBXGroup; + children = ( + 5554B2B126205BAA767E68749790AE07 /* UMFileSystemInterface.podspec */, + ); + name = Pod; + sourceTree = ""; + }; 3A01F6917BC83AD97A6EFF8B241F0012 /* Support Files */ = { isa = PBXGroup; children = ( @@ -13247,67 +13073,6 @@ path = "../Target Support Files/SDWebImageWebPCoder"; sourceTree = ""; }; - 3A0C474F99BC6200ADC8D79AC5758228 /* FBLazyVector */ = { - isa = PBXGroup; - children = ( - A00B982F3152D612DA89C42AA3D557D3 /* FBLazyIterator.h */, - 1BC9CB7B045CE844691F03CAE351A04D /* FBLazyVector.h */, - 531F07A0294DB23C7C27B2B47F74675E /* Pod */, - 5BB7D530C9074BE1E0E12C148FB0DD4A /* Support Files */, - ); - name = FBLazyVector; - path = "../../node_modules/react-native/Libraries/FBLazyVector"; - sourceTree = ""; - }; - 3AA563231A0D24C0C9B5353FB4D8E514 /* react-native-safe-area-context */ = { - isa = PBXGroup; - children = ( - AE1B98DEC9F623304C1276379FF93FEB /* RCTView+SafeAreaCompat.h */, - 5AF7F58E6E57D439716425CEA864ECE4 /* RCTView+SafeAreaCompat.m */, - DDE11703FBCF79D22293160A2C11C71D /* RNCSafeAreaProvider.h */, - 0B3CCACC1F606AC236D18A603EDDF651 /* RNCSafeAreaProvider.m */, - F350D11E6B0AE7F28BB423D9DEA0EF33 /* RNCSafeAreaProviderManager.h */, - A02E3E4C96E1FCA8111B57A57848B543 /* RNCSafeAreaProviderManager.m */, - 2011F6C1CC56078ADC0A9D6F4BED7B69 /* RNCSafeAreaShadowView.h */, - CB9D5BEE2AAEC88BB06E78FAB8EAED33 /* RNCSafeAreaShadowView.m */, - 91D62A8596825C76C9F5DF8594429232 /* RNCSafeAreaView.h */, - 4893A3AABA60A4D947B9185E9D78C41F /* RNCSafeAreaView.m */, - 3B218203D8DD8518EEDF8E41F1B5FAF9 /* RNCSafeAreaViewEdges.h */, - 86783AF71917D7BF5B5C642D1427D04B /* RNCSafeAreaViewEdges.m */, - AA8C028E57D4CDCD305CB1769B638432 /* RNCSafeAreaViewLocalData.h */, - 7AFA2F80A1CB6205E8096216B373B0B6 /* RNCSafeAreaViewLocalData.m */, - E71D9B68C5769651250E5E40D41472CE /* RNCSafeAreaViewManager.h */, - 4720C31A4DEA72B773C99CD7387E0C8B /* RNCSafeAreaViewManager.m */, - 92CF9D8485DEFCA6FBF506106721C94B /* RNCSafeAreaViewMode.h */, - DEC3505CDC6064515E84CC0C8BA7F28F /* RNCSafeAreaViewMode.m */, - FD606C22EB1D129E9D6962DD94E75B86 /* Pod */, - 44F87A35EDDC44C29CCBB02D620D0386 /* Support Files */, - ); - name = "react-native-safe-area-context"; - path = "../../node_modules/react-native-safe-area-context"; - sourceTree = ""; - }; - 3B995AD4D541F49350FB326B50C92493 /* Pod */ = { - isa = PBXGroup; - children = ( - 3C1A76D1F95A16DDFD31E78CDE0813A7 /* README.md */, - 03EC0553FD9D0ADAA93CA2C561E2762A /* RNRootView.podspec */, - ); - name = Pod; - sourceTree = ""; - }; - 3BE342E0A8021B43EEFC27AD20514A9D /* EXKeepAwake */ = { - isa = PBXGroup; - children = ( - 4C252EAA8CF16E6B6EFAE130677D843F /* EXKeepAwake.h */, - 5D921D2E62A6C3B4AD03A55DF0FB2A36 /* EXKeepAwake.m */, - 31153F5D3052F8E16D923A2AE07F6CBB /* Pod */, - 9CF207A6C9D805FD54018B5CADB2DB4E /* Support Files */, - ); - name = EXKeepAwake; - path = "../../node_modules/expo-keep-awake/ios"; - sourceTree = ""; - }; 3C8351982DFBF8313FF9028D61F422D4 /* Support Files */ = { isa = PBXGroup; children = ( @@ -13320,14 +13085,39 @@ path = "../Target Support Files/nanopb"; sourceTree = ""; }; - 3DF0792DBFDA3DE264CAB836696B5E3C /* Filters */ = { + 3D7DBE9FADAE2103DB0E3A68C2A67F40 /* React-jsinspector */ = { isa = PBXGroup; children = ( - CEDDB49C0A0BEB0FADF67CA1046E43F9 /* BSG_KSCrashReportFilter.h */, - 072DE48FF7AFCF659B873ABA2A201904 /* BSG_KSCrashReportFilterCompletion.h */, + 96884B759FC1D69163EC573BBAA4514C /* InspectorInterfaces.cpp */, + BD9F1AB83C59077E7EE570E9BB4FFC44 /* InspectorInterfaces.h */, + 5FE528B47CA6C37FA99EEEDF9E1DF187 /* Pod */, + CF4DB4A5108345A3225B0872B0D661EA /* Support Files */, ); - name = Filters; - path = Filters; + name = "React-jsinspector"; + path = "../../node_modules/react-native/ReactCommon/jsinspector"; + sourceTree = ""; + }; + 3E1CA2230B68E7543F11BD8CF5CE76C9 /* Pod */ = { + isa = PBXGroup; + children = ( + 73ED37EBE8B334335CF295231668E256 /* React-callinvoker.podspec */, + ); + name = Pod; + sourceTree = ""; + }; + 3F6A7084BBE258F490806BA74258B5A0 /* Video */ = { + isa = PBXGroup; + children = ( + 2221E3E897138BC48618528FD55EC913 /* EXVideoManager.h */, + AA58B73903B04758FC957E353ED68307 /* EXVideoManager.m */, + 39EE41BBF9CE955A0BE21705EDCB6103 /* EXVideoPlayerViewController.h */, + 83D580E7AA9694526BF76B197BFC65BE /* EXVideoPlayerViewController.m */, + 5A247209A37DE56BA718A900261D68C8 /* EXVideoPlayerViewControllerDelegate.h */, + 3EF08125CF8DDE18554D11E023C24F76 /* EXVideoView.h */, + 4ACF2C969C112E2DFE877438009B3A07 /* EXVideoView.m */, + ); + name = Video; + path = EXAV/Video; sourceTree = ""; }; 3F95AF94DF45EA7203D71FB37C810F5C /* mux */ = { @@ -13344,92 +13134,58 @@ name = mux; sourceTree = ""; }; - 4020C893A0865139AC37E5F849E2B109 /* Support Files */ = { + 41C3DAFDAC0ED4BFEF12C66995CE3AEA /* EXFileSystem */ = { isa = PBXGroup; children = ( - DCF75E474D3258E4CED674876666D001 /* RNConfigReader-dummy.m */, - 5332510E48716BCC1053DA998FCBB751 /* RNConfigReader-prefix.pch */, - 2986E583E38AE39D873687509F8863B7 /* RNConfigReader.debug.xcconfig */, - CEF6574E85E53A7F40ABFD78F61D5315 /* RNConfigReader.release.xcconfig */, + 996CA1B2ED72FED261FD9F4EB0C4DF6B /* EXFilePermissionModule.h */, + 6C1F49ABD135CBEE2A91E0BF3CED50A8 /* EXFilePermissionModule.m */, + 1D2E42F38790ADB9266E27984F40DF2B /* EXFileSystem.h */, + B47B992DBDF6F13F5914DB2903224132 /* EXFileSystem.m */, + E242534B02290665ED6143AF9ACE61C1 /* EXFileSystemAssetLibraryHandler.h */, + 5EA8B4CA35F011B972A94E0EB2DE0074 /* EXFileSystemAssetLibraryHandler.m */, + 1592ACCCFF77D440050B899BA5BA5ED0 /* EXFileSystemLocalFileHandler.h */, + 4DCCF6CA395570A3BEF1F3A2775A17ED /* EXFileSystemLocalFileHandler.m */, + A8FEA63B4D5325E053E800E242E9B271 /* NSData+EXFileSystem.h */, + 01B0712393C95CA9E119CC0694FD8247 /* NSData+EXFileSystem.m */, + 011437B540DCE3A42A6F68EE6355570D /* EXSessionTasks */, + F14F4730FF3344A084E3110142AD220F /* Pod */, + FA8653FCB7D0D8B147D5AFFE4BC384A0 /* Support Files */, + ); + name = EXFileSystem; + path = "../../node_modules/expo-file-system/ios"; + sourceTree = ""; + }; + 430EA6CF1668ED63988C6F417D396AB3 /* bugsnag-cocoa */ = { + isa = PBXGroup; + children = ( + E45307C51E63A7C85F3097B50F749D3E /* Source */, + ); + name = "bugsnag-cocoa"; + path = "bugsnag-cocoa"; + sourceTree = ""; + }; + 437226CC909EE8647C5AD759E09F4514 /* Support Files */ = { + isa = PBXGroup; + children = ( + B99CF8D44BD1984450386F171146D0FD /* EXHaptics-dummy.m */, + D654404E415E3C2675E31F38F4EF34A0 /* EXHaptics-prefix.pch */, + 8CDC7277B649B7DDE10FDF7A1ACDD84C /* EXHaptics.debug.xcconfig */, + D8CE7DB2A244CC7D188DB61DE9D78432 /* EXHaptics.release.xcconfig */, ); name = "Support Files"; - path = "../../ios/Pods/Target Support Files/RNConfigReader"; + path = "../../../ios/Pods/Target Support Files/EXHaptics"; sourceTree = ""; }; - 4079B81494299F2709088983860799A4 /* React-RCTBlob */ = { + 4506E3A150BFAF1C4D685C4049C4C978 /* Pod */ = { isa = PBXGroup; children = ( - 0C7880A7732E76FCD556173067551E45 /* RCTBlobCollector.mm */, - 752AB10D89766EBB610A77079A757DB7 /* RCTBlobManager.mm */, - 8D2D026EA4E9E0824B9E3EEAA9DB342B /* RCTBlobPlugins.mm */, - 232C7FC1437EA058474400006D750CB1 /* RCTFileReaderModule.mm */, - A6F421855D6AB1D1DB8A3199655DE343 /* Pod */, - 0BD935D4A756F87412AABD0B1A09EA49 /* Support Files */, - ); - name = "React-RCTBlob"; - path = "../../node_modules/react-native/Libraries/Blob"; - sourceTree = ""; - }; - 408FB929E0634581F9E6D0326B224995 /* VirtualText */ = { - isa = PBXGroup; - children = ( - A2F3ECB83544DE0AC49619B06F5ADCB5 /* RCTVirtualTextShadowView.m */, - 0265D27998B6384C969077F10D629CE7 /* RCTVirtualTextViewManager.m */, - ); - name = VirtualText; - path = VirtualText; - sourceTree = ""; - }; - 41E0BB1617922B137ACF7366BCD5A04B /* Support Files */ = { - isa = PBXGroup; - children = ( - B5A045995EF3FCC36E323E71F008C5AB /* RCTRequired.debug.xcconfig */, - 7EFBA28598B02369622936BDEEF3B5AE /* RCTRequired.release.xcconfig */, - ); - name = "Support Files"; - path = "../../../../ios/Pods/Target Support Files/RCTRequired"; - sourceTree = ""; - }; - 42453C13279AC297B17665AB79878FF7 /* Support Files */ = { - isa = PBXGroup; - children = ( - F9BD42DF524B96A94C651E9CEF5F927D /* RNFBApp-dummy.m */, - 03B41CA63595A4D875D08B1223752E36 /* RNFBApp-prefix.pch */, - C4E5E1B00EC580B4C0A9EA603E9705C6 /* RNFBApp.debug.xcconfig */, - 7E30E19A80A62F3B86F669FDB563847C /* RNFBApp.release.xcconfig */, - ); - name = "Support Files"; - path = "../../../ios/Pods/Target Support Files/RNFBApp"; - sourceTree = ""; - }; - 43EE287EE35AB05B5D93E136E5EDA47F /* Pod */ = { - isa = PBXGroup; - children = ( - C2B4C94524CB64BFA50D0CCB148FFB77 /* React-RCTText.podspec */, + 9E9178349C1FCD24AC93463651817C93 /* LICENSE */, + 7AC6925974FC31A4A32A41DDE7E64EF5 /* react-native-safe-area-context.podspec */, + F3816D381316008801DBC28B7BF8FB1D /* README.md */, ); name = Pod; sourceTree = ""; }; - 4400143791212FCDBBDDFB2FF3B0D303 /* Pod */ = { - isa = PBXGroup; - children = ( - 87C89C4D2728A4A4ACB92CD0EF9AE81B /* EXWebBrowser.podspec */, - ); - name = Pod; - sourceTree = ""; - }; - 44F87A35EDDC44C29CCBB02D620D0386 /* Support Files */ = { - isa = PBXGroup; - children = ( - CCE524C3197B457F22F38B91979EE5E6 /* react-native-safe-area-context-dummy.m */, - 1FF42A80F80327EFF19C442895701E4F /* react-native-safe-area-context-prefix.pch */, - 0CE0ADC960B2D5F61F04A203B563AEC0 /* react-native-safe-area-context.debug.xcconfig */, - E9B4385E44E2775A1CAD50DE96C7FC17 /* react-native-safe-area-context.release.xcconfig */, - ); - name = "Support Files"; - path = "../../ios/Pods/Target Support Files/react-native-safe-area-context"; - sourceTree = ""; - }; 45B95D251665611D0C77BFB3C92D80FD /* AppDelegateSwizzler */ = { isa = PBXGroup; children = ( @@ -13445,72 +13201,91 @@ name = AppDelegateSwizzler; sourceTree = ""; }; - 45F32644129876BA500890A88A22623E /* Pod */ = { + 46B38A34306F4D347491D83ADD3A9DA2 /* Pod */ = { isa = PBXGroup; children = ( - 9756F390C20B248FE2AED8586A06FDC1 /* EXPermissions.podspec */, + E641791A1F3D2A02B750DFE7AAEAAC5C /* EXConstants.podspec */, ); name = Pod; sourceTree = ""; }; - 46ACE5E8EB6099F31B26E6B855EBEB7C /* Support Files */ = { + 46E6FBB5F27E04F6B54CF43B695865CE /* RefreshControl */ = { isa = PBXGroup; children = ( - 6B7E70B7E83450FFBFAD1644E1381F57 /* react-native-appearance-dummy.m */, - D3AD7235D57C76EC0040307CA5BBB12D /* react-native-appearance-prefix.pch */, - 86A843D20B203EAA588249505E8993B4 /* react-native-appearance.debug.xcconfig */, - 45CD1220444708014B7486B3406BF5BA /* react-native-appearance.release.xcconfig */, - ); - name = "Support Files"; - path = "../../ios/Pods/Target Support Files/react-native-appearance"; - sourceTree = ""; - }; - 471074A6A60D1F666116246F6F364CF5 /* Pod */ = { - isa = PBXGroup; - children = ( - A73E5D101D8AD4362F724BCA7D09A2FD /* UMConstantsInterface.podspec */, - ); - name = Pod; - sourceTree = ""; - }; - 47246D899999BA7EB52AE8D654EE94A2 /* Support Files */ = { - isa = PBXGroup; - children = ( - 509BC14C2BB4F28EA7406F0BAEAEF662 /* React-RCTAnimation-dummy.m */, - C44E82C1ED45144F87A4F892488E0F9F /* React-RCTAnimation-prefix.pch */, - 6F3AE78B7F30EA69566D40D856216DAC /* React-RCTAnimation.debug.xcconfig */, - 98CD077C1D0F8C6C84D2A0C2F903C1A4 /* React-RCTAnimation.release.xcconfig */, - ); - name = "Support Files"; - path = "../../../../ios/Pods/Target Support Files/React-RCTAnimation"; - sourceTree = ""; - }; - 475E176FFD97E2C800FF91DF03216556 /* RefreshControl */ = { - isa = PBXGroup; - children = ( - 127B3603140E92E1392502E3A2B83823 /* RCTRefreshableProtocol.h */, - 7D20F71717F6D63DC8918152A9C9A908 /* RCTRefreshControl.h */, - 397D798D80CF6E15765D698BD0E3762A /* RCTRefreshControl.m */, - A352B95AD7AF1ADA26AA02E844AE0362 /* RCTRefreshControlManager.h */, - 85AB4DF292868E6093D2D5E475C5AC83 /* RCTRefreshControlManager.m */, + 2A83D3E6E07078C5186868A571FC7722 /* RCTRefreshableProtocol.h */, + 05EFEFFB6FBAEB2187CB89FEDE0E72BF /* RCTRefreshControl.h */, + 7A6B7CFF78D2C352400D8BAA1FE339EE /* RCTRefreshControl.m */, + 1AFF22FB1084BC1D0400D1DE8A080001 /* RCTRefreshControlManager.h */, + DD623FD80DE9D923D9D24D2B198EB10F /* RCTRefreshControlManager.m */, ); name = RefreshControl; path = RefreshControl; sourceTree = ""; }; - 48B1E22D6494F8D9D78120D3A760E5EC /* RCTTextHeaders */ = { + 46FD844494B2E54105214B83A4DAE1CF /* Support Files */ = { isa = PBXGroup; children = ( - EE6B74B9B3000DCE2E920B88157F20C4 /* RCTConvert+Text.h */, - 871FA97F338B8CD054EEFA3F08E19EFF /* RCTTextAttributes.h */, - 5F2034C1AE93F00731ACD41C145FB977 /* RCTTextTransform.h */, - C4ACFE8FB0317AD9212930E9E5F1F057 /* BaseText */, - 9231E46D5E8928E64E224D0EAF7B3FFE /* RawText */, - 9C72C7F8142B99D6AA06ECD694BADE6C /* Text */, - 09178F250A1752BC5FBE870231D5A155 /* TextInput */, - BD6B2313CAB6B283AF3E7C1C3C13D8F5 /* VirtualText */, + 71E53A8D5E3D3A0C0C1244F684485EA8 /* react-native-safe-area-context-dummy.m */, + B57A51040852401EC5C4D0B5CCCCD406 /* react-native-safe-area-context-prefix.pch */, + E8CC52B92464301D2D20161219192A70 /* react-native-safe-area-context.debug.xcconfig */, + BD421BFF30816FBFF94A1D8DD7C11849 /* react-native-safe-area-context.release.xcconfig */, ); - name = RCTTextHeaders; + name = "Support Files"; + path = "../../ios/Pods/Target Support Files/react-native-safe-area-context"; + sourceTree = ""; + }; + 47B6D7F1E5F7F157DE333CE31E8DE12C /* react-native-safe-area-context */ = { + isa = PBXGroup; + children = ( + 8970C2B1382E59AAA9DB751D6B3105BE /* RCTView+SafeAreaCompat.h */, + 4DB4BF1F7BBD3AE397B5253BFDCB6814 /* RCTView+SafeAreaCompat.m */, + 281D8CF916CAEB88471D37D11BFF690A /* RNCSafeAreaProvider.h */, + A547831DA0D16276D645112E37CAA856 /* RNCSafeAreaProvider.m */, + 4E040406828D0E4CB1DDA95C793D0466 /* RNCSafeAreaProviderManager.h */, + 0F86FFDB0F32A0B801112AA1324E48E7 /* RNCSafeAreaProviderManager.m */, + 4A045E7E48512490673FEB5EEC4A5E0D /* RNCSafeAreaShadowView.h */, + FBF3340032616F8432880795D81EF2BC /* RNCSafeAreaShadowView.m */, + 9EF4D85CD5500AE0E4C251422BD71977 /* RNCSafeAreaView.h */, + 06EEC01857B5F8830F5EDF081D9558C9 /* RNCSafeAreaView.m */, + 0A79E8FFBD8D77CB2FD1CE9F13CFDBDF /* RNCSafeAreaViewEdges.h */, + B0930EF6DAC3276D64ED110CDDDE2B6A /* RNCSafeAreaViewEdges.m */, + 1DF95089FEB8EE5AFFCEFD1085BCB730 /* RNCSafeAreaViewLocalData.h */, + CF8FACEBABF089D2EE50859CCD7257CA /* RNCSafeAreaViewLocalData.m */, + 133D5D6D11BFD245C2D50B38F5DE3339 /* RNCSafeAreaViewManager.h */, + A04698F69678504C1A8CA9E946179C70 /* RNCSafeAreaViewManager.m */, + C1793DABBD4996169EA4A95C26FABD8F /* RNCSafeAreaViewMode.h */, + 7C9416C937A72C8891C878568DD7A7F6 /* RNCSafeAreaViewMode.m */, + 4506E3A150BFAF1C4D685C4049C4C978 /* Pod */, + 46FD844494B2E54105214B83A4DAE1CF /* Support Files */, + ); + name = "react-native-safe-area-context"; + path = "../../node_modules/react-native-safe-area-context"; + sourceTree = ""; + }; + 487281ED9B795ADF1D5C1ADF9D4AF89A /* QBImagePickerController */ = { + isa = PBXGroup; + children = ( + D3F2EC236BD7B4232E6A3EB4C9421A72 /* QBAlbumCell.h */, + 7F442623754306438DD6860B5B76BB82 /* QBAlbumCell.m */, + 10C9FFAA7F46BF08423E200731C17AC7 /* QBAlbumsViewController.h */, + 5A28B748E256BC23CEBC3D8B3C85F8A7 /* QBAlbumsViewController.m */, + 2C5377271D73E125FB18FD740DDD776A /* QBAssetCell.h */, + 5764F17A53D7D7950BCA737785F5D7BF /* QBAssetCell.m */, + 926D4CD55284EDD3FC2D802D0CC09EC7 /* QBAssetsViewController.h */, + AEEF2DDFBD51E55CF34A95C267B09D30 /* QBAssetsViewController.m */, + 9F923030088F5EF171441B34C08DE856 /* QBCheckmarkView.h */, + CF73ACF3A238FB3533E91A67E3B4F996 /* QBCheckmarkView.m */, + FF03C6ABAC905D7EB2232B9074A00E2A /* QBImagePickerController.h */, + 826BC97EA03E4B7720A396673C0ABCE6 /* QBImagePickerController.m */, + 70FF0440DED16FFDDDD95C37AEE3CAEA /* QBSlomoIconView.h */, + 936DC778B9AE5AF1EDC86AA43520F2D2 /* QBSlomoIconView.m */, + E028BE7E6BBB9A5B50393231C89D4CA5 /* QBVideoIconView.h */, + 10E184C63986B93D328D3635BFBB66EC /* QBVideoIconView.m */, + 080B01DE6DFDF879F44491595E30CE94 /* QBVideoIndicatorView.h */, + 48EEC0F86D7BE8EDF11D9FA1FED2D07D /* QBVideoIndicatorView.m */, + 349129B6B6D464E58CBDD29F9A20E1FF /* Resources */, + ); + name = QBImagePickerController; sourceTree = ""; }; 494B119E0E7CA98E5728119B7D988CA3 /* Support Files */ = { @@ -13525,63 +13300,71 @@ path = "../Target Support Files/Flipper-Folly"; sourceTree = ""; }; - 4965F8C77EE57F7B8843D516AF63701F /* Drivers */ = { + 4B2FB2EF4D9490CBC740F6670EE9A286 /* Pod */ = { isa = PBXGroup; children = ( - B257747C283EC696C618A4A71FF61E13 /* RCTDecayAnimation.m */, - 878098E16FC964CDAEEB69CDDC556BCF /* RCTEventAnimation.m */, - 157534A2B0421B718C5B1C4E52FFBFC3 /* RCTFrameAnimation.m */, - A418AA0F3E33064172D5A5B5C5084363 /* RCTSpringAnimation.m */, - ); - name = Drivers; - path = Drivers; - sourceTree = ""; - }; - 4B4555D39AB9955EEB4FB6021B2541B3 /* Pod */ = { - isa = PBXGroup; - children = ( - FB423AF73A370592C088D3241E066793 /* react-native-slider.podspec */, + 7C0561502CFFD1871C4A81BA9B44B034 /* react-native-slider.podspec */, ); name = Pod; sourceTree = ""; }; - 4B736DE99F69C2EE054930F316B31C0A /* Pod */ = { + 4C3644E8FEB35957E9862405587FFDD4 /* Support Files */ = { isa = PBXGroup; children = ( - 383144616A9AB20CBE8698C62B6FD237 /* LICENSE */, - 4A16DF5A7F78ED5DC9A873E9D0302993 /* react-native-orientation-locker.podspec */, - 13CCDB2DB6B8BD5C8770E6E735D8CA21 /* README.md */, + B9627976F0E4A350657DEBF476F626A4 /* EXWebBrowser-dummy.m */, + 03193C021255D8D8E0E758BBB6DB8410 /* EXWebBrowser-prefix.pch */, + 48077F3173C437980E344105E6538C8B /* EXWebBrowser.debug.xcconfig */, + 49F6C22414F842ABC3D5C2364213EA49 /* EXWebBrowser.release.xcconfig */, ); - name = Pod; + name = "Support Files"; + path = "../../../ios/Pods/Target Support Files/EXWebBrowser"; sourceTree = ""; }; - 4BC3606C86023E1BABAEEB367D81ECD2 /* Pod */ = { + 4C4B47AEB220D192EC587E8CBDE76BF4 /* Support Files */ = { isa = PBXGroup; children = ( - D4656C8233F03153A56FC08C10718E4C /* EXAV.podspec */, + B82FEC9BA8F62D986D867F67296D6E1D /* UMAppLoader-dummy.m */, + A9AF5561FAA5C8AA51CD210CAF4F3908 /* UMAppLoader-prefix.pch */, + 1B557278197DE57EA74BF48C60BB2D68 /* UMAppLoader.debug.xcconfig */, + DC9D25E60EE94058758E2D3CD7E90614 /* UMAppLoader.release.xcconfig */, ); - name = Pod; + name = "Support Files"; + path = "../../../ios/Pods/Target Support Files/UMAppLoader"; sourceTree = ""; }; - 4C4D46873C92A0CC07977C1F66AED631 /* RCTSettingsHeaders */ = { + 4C8695363240B7C782467D6E684FB041 /* RCTTypeSafety */ = { isa = PBXGroup; children = ( - 97946DB7F94ECF921C090ACD88EC84B9 /* RCTSettingsManager.h */, - C6E18ECD8460A47BFD8515DBE328A65F /* RCTSettingsPlugins.h */, + 37D3068A0E311819E00D25AE438C4D41 /* RCTConvertHelpers.h */, + 885B4CAE3B0C6CD790D6726DC43601CF /* RCTConvertHelpers.mm */, + 2797B474D8F9D83190CCB3A0734B7B13 /* RCTTypedModuleConstants.h */, + 05B047251FF7E78077FD10153B9D1534 /* RCTTypedModuleConstants.mm */, + 2AD586B80053CCDA962C5323C79757BA /* Pod */, + 204B8CD29A1EA9F3F924D5965A2C3EE0 /* Support Files */, ); - name = RCTSettingsHeaders; + name = RCTTypeSafety; + path = "../../node_modules/react-native/Libraries/TypeSafety"; sourceTree = ""; }; - 4C815E6ABCAC10E450E2156C5EEB1236 /* UMBarCodeScannerInterface */ = { + 4C9057C5FE361FD99C392E4F75900BCE /* Nodes */ = { isa = PBXGroup; children = ( - 9742D07E86C58B356E1D2CEB3111A2C6 /* UMBarCodeScannerInterface.h */, - D63EFFCA6E4A483A94CD139DAF3D3197 /* UMBarCodeScannerProviderInterface.h */, - 95FE45F304643FC93B8ED23BA09F8AB5 /* Pod */, - 82EB486A080868A0E58CE05C23E34B55 /* Support Files */, + 638955B8123780478D526BB7091E0B4C /* RCTAdditionAnimatedNode.m */, + CBFAB93087C5B978FEF6DC2DE1E3EAB3 /* RCTAnimatedNode.m */, + 9798277A54963024E6DD67D09BFD0255 /* RCTDiffClampAnimatedNode.m */, + 0C1F0068FCF2D60B7506C7EF84F74BCB /* RCTDivisionAnimatedNode.m */, + 2B81C4E9BF098522968AA822A50BA6E0 /* RCTInterpolationAnimatedNode.m */, + DA4031C337B6B741152A4C7C75C3C1C8 /* RCTModuloAnimatedNode.m */, + A414968EE3D199F3EA504B6AA1026A3A /* RCTMultiplicationAnimatedNode.m */, + 65B294002EB5B2BE850B54D508CCD95E /* RCTPropsAnimatedNode.m */, + C90241A45FB2FF1EA87E1AC1ED2C4D38 /* RCTStyleAnimatedNode.m */, + 1A8F4B45E99C3EC1D2801E55BC49FC17 /* RCTSubtractionAnimatedNode.m */, + 082B8945EB9FF5BC4550ED07BCBAE377 /* RCTTrackingAnimatedNode.m */, + CD27403C2A5FF98DCE98D96FD88D3ADE /* RCTTransformAnimatedNode.m */, + B4A71E98BE17523C8EB3E47255062FF9 /* RCTValueAnimatedNode.m */, ); - name = UMBarCodeScannerInterface; - path = "../../node_modules/unimodules-barcode-scanner-interface/ios"; + name = Nodes; + path = Nodes; sourceTree = ""; }; 4CB87717469CEA83AA657754FD2332DF /* MMKVCore */ = { @@ -13653,14 +13436,6 @@ path = MMKVCore; sourceTree = ""; }; - 4CF351501AC02B15B49C5526787A38A9 /* Pod */ = { - isa = PBXGroup; - children = ( - F2863A89B8DCCAC70CA9C4897DD83ED0 /* React-RCTNetwork.podspec */, - ); - name = Pod; - sourceTree = ""; - }; 4DF7E720E9EFA067292067CA8FD4B76D /* Flipper-Glog */ = { isa = PBXGroup; children = ( @@ -13682,14 +13457,39 @@ path = "Flipper-Glog"; sourceTree = ""; }; - 4EB38AF68B1A72A133A9275330D5264D /* Support Files */ = { + 4E08213E335175ECB07416A8E0B2DDB4 /* Drivers */ = { isa = PBXGroup; children = ( - EA8BAB4AC0C9ED48AE01019E435995A8 /* React.debug.xcconfig */, - D9787096DA16ABD18BCCD258A9FB9C78 /* React.release.xcconfig */, + 4DCCCBFC081BF5B4C91152F758174B31 /* RCTDecayAnimation.m */, + B5D0D8817E5805823E1D5D53C84E9818 /* RCTEventAnimation.m */, + 792CC5B197E150A7EB8F1CB839A0913A /* RCTFrameAnimation.m */, + 64BE4F4291181D66BE2DC6CF992DC7A5 /* RCTSpringAnimation.m */, ); - name = "Support Files"; - path = "../../ios/Pods/Target Support Files/React"; + name = Drivers; + path = Drivers; + sourceTree = ""; + }; + 4E9D1399C681564FB72924EE31B6D65B /* RNCAsyncStorage */ = { + isa = PBXGroup; + children = ( + 215F110BC3E8F5FFB49CB62DA9EA5C88 /* RNCAsyncStorage.h */, + 8BCC733FAE8E026370783BD3B5DE6635 /* RNCAsyncStorage.m */, + 1763C60D0A0CE66E39FB0432910B2318 /* RNCAsyncStorageDelegate.h */, + F03F929DF3769E930F071238C6BA16A9 /* Pod */, + A5F895577011A0C393C1ED66C32284B5 /* Support Files */, + ); + name = RNCAsyncStorage; + path = "../../node_modules/@react-native-community/async-storage"; + sourceTree = ""; + }; + 4F398AF8880D30A462C96023839A40AA /* RawText */ = { + isa = PBXGroup; + children = ( + 29E4473A03AA93B9B6C749809A611532 /* RCTRawTextShadowView.m */, + C08C33A46B7EBDD73DBF8201FFC0F80B /* RCTRawTextViewManager.m */, + ); + name = RawText; + path = RawText; sourceTree = ""; }; 4F6FFAA95CEF3008C049B14EF40F3D0E /* GoogleAppMeasurement */ = { @@ -13702,19 +13502,6 @@ path = GoogleAppMeasurement; sourceTree = ""; }; - 500CB55126021EE637A7B9B7D72E411D /* Drivers */ = { - isa = PBXGroup; - children = ( - 0018D8E1CFAD743DC022DF9AB7FEFB8F /* RCTAnimationDriver.h */, - 8586A69714C338D48AB4CA7B190F3900 /* RCTDecayAnimation.h */, - 498405A338574FB0C01830D63D402ACD /* RCTEventAnimation.h */, - 802F1E5044088756BCC0B69978F93897 /* RCTFrameAnimation.h */, - 9AAD9AAE289E0315C796CF02BFAFDE3B /* RCTSpringAnimation.h */, - ); - name = Drivers; - path = Libraries/NativeAnimation/Drivers; - sourceTree = ""; - }; 50FB14E744A0716848E232EBD4939D36 /* Support Files */ = { isa = PBXGroup; children = ( @@ -13725,6 +13512,42 @@ path = "../Target Support Files/GoogleAppMeasurement"; sourceTree = ""; }; + 51A9A00965257140AF7FA6B2BDBC619B /* Surface */ = { + isa = PBXGroup; + children = ( + 9D0860B0933BF1CD715BB6899A3B8FFD /* RCTSurface.h */, + 716967645CD169997990F9755498231A /* RCTSurface.mm */, + 4028F623E36DBC1D2074617120AB1570 /* RCTSurfaceDelegate.h */, + 30D04107196DB48732830DC1309046AC /* RCTSurfaceRootShadowView.h */, + 430573CAF63D4ADA555F3293195E4B4D /* RCTSurfaceRootShadowView.m */, + 11339A94BDAF9D0A20F50A3489FE5BCB /* RCTSurfaceRootShadowViewDelegate.h */, + FC39D38061F4CD55842A5CEA500B9611 /* RCTSurfaceRootView.h */, + 5BBFF8E539D698791E5EA61FB18F767A /* RCTSurfaceRootView.mm */, + 12318603634247B4D19AFC3EE97DE563 /* RCTSurfaceStage.h */, + 27666DEC379C23CE7A127AAD36CC062A /* RCTSurfaceStage.m */, + 6525A82A80E0F2393BB29B17E3EC8E1C /* RCTSurfaceView.h */, + 1206F6B5498E2079C6C150892CE17234 /* RCTSurfaceView.mm */, + FE52B789345AAE5C936BEC0D8A3356DB /* RCTSurfaceView+Internal.h */, + 51AC5EB101264E54563D707DD7C3E944 /* SurfaceHostingView */, + ); + name = Surface; + path = Surface; + sourceTree = ""; + }; + 51AC5EB101264E54563D707DD7C3E944 /* SurfaceHostingView */ = { + isa = PBXGroup; + children = ( + 3E7CBC38A3E2B93C112071548EACE16F /* RCTSurfaceHostingProxyRootView.h */, + 69E59662AE156BDD9E610549CBE8865A /* RCTSurfaceHostingProxyRootView.mm */, + 5D804EAA43D9C8F4567BC675A3A5DEAF /* RCTSurfaceHostingView.h */, + 2754616E67EED413A0F9B16D7F22D690 /* RCTSurfaceHostingView.mm */, + ED4150AB26E35DADACDB94A3040451EB /* RCTSurfaceSizeMeasureMode.h */, + AE3B1CDBEB0818930D87B93F7C64B975 /* RCTSurfaceSizeMeasureMode.mm */, + ); + name = SurfaceHostingView; + path = SurfaceHostingView; + sourceTree = ""; + }; 51B3B8CB3DDCA94CE8EEDDCBBD482943 /* Core */ = { isa = PBXGroup; children = ( @@ -13873,144 +13696,120 @@ name = Core; sourceTree = ""; }; - 531F07A0294DB23C7C27B2B47F74675E /* Pod */ = { + 529A9EDA85B5463F8925143F11B72F74 /* UMModuleRegistryAdapter */ = { isa = PBXGroup; children = ( - DC6AF0419BC768638243CD0F9EB38875 /* FBLazyVector.podspec */, + D1688DEEC817ADA5B045B0A1C150408A /* UMModuleRegistryAdapter.h */, + 622E54713720A1158C65FF55839ED85B /* UMModuleRegistryAdapter.m */, + 13208548F575F5B4256D6DA56C7C79DA /* UMModuleRegistryHolderReactModule.h */, + 70BF9DD00B20947CD78D195CD6F912E6 /* UMModuleRegistryHolderReactModule.m */, + 87B7231DF0D484A9D88649C7D3A310B0 /* UMViewManagerAdapterClassesRegistry.h */, + 7104EC731C7D088A2EE14B26874793FB /* UMViewManagerAdapterClassesRegistry.m */, + ); + name = UMModuleRegistryAdapter; + path = UMReactNativeAdapter/UMModuleRegistryAdapter; + sourceTree = ""; + }; + 52D60E1739598E354E060DB05FFFAF95 /* Support Files */ = { + isa = PBXGroup; + children = ( + EC14D56E14AF1C0C68A3A29516DD80CD /* react-native-slider-dummy.m */, + DC18A7426A7EA5BFFBABFECA298640C9 /* react-native-slider-prefix.pch */, + 73C8B46301BDF892A23754F31A7A501C /* react-native-slider.debug.xcconfig */, + B796A4811E900479D9C0B12B8BDD78A4 /* react-native-slider.release.xcconfig */, + ); + name = "Support Files"; + path = "../../../ios/Pods/Target Support Files/react-native-slider"; + sourceTree = ""; + }; + 54055683D6BF2FC1D2D4759EDCD3ABFA /* React */ = { + isa = PBXGroup; + children = ( + ACD44710E53FA0AF5352FEDE8D0BBC64 /* Pod */, + 276D50CE9CFCE1E960B74587AF7BF162 /* Support Files */, + ); + name = React; + path = "../../node_modules/react-native"; + sourceTree = ""; + }; + 543E63506B9D172DA4C70C2B46801072 /* Pod */ = { + isa = PBXGroup; + children = ( + 518E63188022A48CEF7F42D956D94343 /* EXVideoThumbnails.podspec */, ); name = Pod; sourceTree = ""; }; - 546B02590E0D91DFDC6CCFF7A174AEA7 /* Pod */ = { + 54B674CAFA75D9D29CA111B3046DB054 /* React-RCTNetwork */ = { isa = PBXGroup; children = ( - 2EE7BC04B336F4E7738CF15ADD4B1334 /* React-jsiexecutor.podspec */, + 617B082ECE9579851D2C0FD1734669B1 /* RCTDataRequestHandler.mm */, + 1A3541823C7111D0BE86D2903E0A7BE6 /* RCTFileRequestHandler.mm */, + 76D1545854377DFAA9F6ADDC4CA30C0C /* RCTHTTPRequestHandler.mm */, + 705D3EB39F3E7E497BCD9B30D554C70A /* RCTNetworking.mm */, + A4FAF9DF220421D9D23C351781B0CCEE /* RCTNetworkPlugins.mm */, + B8D756B10CF55071D90D7D36960B25FE /* RCTNetworkTask.mm */, + 828703F5D09E4D8E7F35A4AEE3ECD7AC /* Pod */, + D5E99BEDED437EE5A7579DB8805F078C /* Support Files */, + ); + name = "React-RCTNetwork"; + path = "../../node_modules/react-native/Libraries/Network"; + sourceTree = ""; + }; + 5525689FEBCEC9756C90B62E9831D2B9 /* RNConfigReader.xcodeproj */ = { + isa = PBXGroup; + children = ( + 3737D2F084443F0B2F0104E57A8E33D9 /* project.pbxproj */, + ); + name = RNConfigReader.xcodeproj; + path = ios/RNConfigReader.xcodeproj; + sourceTree = ""; + }; + 55C1D0456D9162524B1E91DD3B06FBE0 /* Support Files */ = { + isa = PBXGroup; + children = ( + B51AE3C8AD280681A6529749FDACD93A /* React-RCTText-dummy.m */, + 0CC12829A005EDB7C7DA51D767D80E5F /* React-RCTText-prefix.pch */, + 70C48C8FBB2A2310BFF10C86BB062CBF /* React-RCTText.debug.xcconfig */, + 15E9F2CF35CC04E2A708F42F319A3363 /* React-RCTText.release.xcconfig */, + ); + name = "Support Files"; + path = "../../../../ios/Pods/Target Support Files/React-RCTText"; + sourceTree = ""; + }; + 562A3302DA1C370CCA9CEAAE9CF5D106 /* Pod */ = { + isa = PBXGroup; + children = ( + A0B0D38822DBDA9C98F9A683465E4E58 /* advancedIos.md */, + DB10900E5E640265443F3FB1835E6A6D /* installation.md */, + 64348D5A41E5D0CC3173E207DBC6A48F /* LICENSE */, + 2F1D943C474D374641A31A797A9E40C2 /* localNotifications.md */, + 9E39C6DAC1D6CA3C2CC0DDC038164A03 /* notificationsEvents.md */, + C718DE25806EFD2D9155A6B7A5D40910 /* react-native-notifications.podspec */, + CCBBA2758C1C959967EFC783EC66B0CD /* README.md */, + 54C09965849900B70828F856EFC6730A /* subscription.md */, ); name = Pod; sourceTree = ""; }; - 546C59403695D545F9E2FA727AB8B1DE /* ViewManagers */ = { + 5768C42C43C6EA62A13A515140584818 /* Pod */ = { isa = PBXGroup; children = ( - A09B64E1D9E3D975BB07A80B50A52E68 /* ARTGroupManager.h */, - 95F83EBEB4ECB16ACBC42F3E9CE72C42 /* ARTGroupManager.m */, - 08519E82B954DA60AF0DDFA56AB29551 /* ARTNodeManager.h */, - 92C76AF1348C178EFD29816522B1F654 /* ARTNodeManager.m */, - 53388542A3913EF6F7FDFEC30720D2B0 /* ARTRenderableManager.h */, - 19ABD26097A488C817B74BF4E757A868 /* ARTRenderableManager.m */, - DDF74F15CBA15B1E87802F3C80B2BE1A /* ARTShapeManager.h */, - C78A53FDD44844F384DCCCE1E1DA650A /* ARTShapeManager.m */, - 6E7A86BB103B0B52942B03CC6939F793 /* ARTSurfaceViewManager.h */, - 59AC7D749ED5E79488C3134A037A83BC /* ARTSurfaceViewManager.m */, - 08DDD533763FE910E40EFBF265C91E3E /* ARTTextManager.h */, - 49CB22390E5D62971366462E93DB7C3B /* ARTTextManager.m */, + A625E7A7A75278098CBAFB4AF17988FB /* LICENSE */, + 51AC465D2E94A1376C41C66FFE261AD3 /* README.md */, + 77A8857237B0B84FD053761F0E6DDE46 /* RNFBAnalytics.podspec */, ); - name = ViewManagers; - path = ios/ViewManagers; + name = Pod; sourceTree = ""; }; - 553C4B3F728EA2D2B4FD1C151D55FE0E /* Support Files */ = { + 5773792FF520B134C34C4E721A814087 /* Pod */ = { isa = PBXGroup; children = ( - FAA36A69548EACA133D443DB56EB00CF /* RNBootSplash-dummy.m */, - 9B78BB3D98202529AB26B2984777EF0D /* RNBootSplash-prefix.pch */, - 6D604183C8F87932EA13E5EAC860AFB3 /* RNBootSplash.debug.xcconfig */, - 52ED500EA48961193188CD27BF85587D /* RNBootSplash.release.xcconfig */, + B3E0B3E6199118758AF4BF725F5AD3C0 /* LICENSE */, + 1F161F4847E6A08FD89C0690394D5246 /* README.md */, + 5A58CCA661B2E7CAEBCFE13029FC264A /* RNDeviceInfo.podspec */, ); - name = "Support Files"; - path = "../../ios/Pods/Target Support Files/RNBootSplash"; - sourceTree = ""; - }; - 563BC5455FAED9898AA5CAC53BCB5673 /* Support Files */ = { - isa = PBXGroup; - children = ( - D4519BC03FAB489D86D0F7FE4A422662 /* React-jsinspector-dummy.m */, - F16C7098707E23C1652F03AC187C367B /* React-jsinspector-prefix.pch */, - 01C96BB76A2059556A480B926E409D77 /* React-jsinspector.debug.xcconfig */, - 1AE7D0739FA5806E6F14673765F78C79 /* React-jsinspector.release.xcconfig */, - ); - name = "Support Files"; - path = "../../../../ios/Pods/Target Support Files/React-jsinspector"; - sourceTree = ""; - }; - 566F12155681D85212C8AE483D165828 /* Support Files */ = { - isa = PBXGroup; - children = ( - DE2EECAC664F36FA7E21CB3C5AABB48E /* react-native-cookies-dummy.m */, - 4D9B5E822DFD353429E2CCC69F4124F3 /* react-native-cookies-prefix.pch */, - A59AB2679071C390418F5560CADA1083 /* react-native-cookies.debug.xcconfig */, - 61ABA5F1FC2C8B3E4833C4AE786A2242 /* react-native-cookies.release.xcconfig */, - ); - name = "Support Files"; - path = "../../../ios/Pods/Target Support Files/react-native-cookies"; - sourceTree = ""; - }; - 56E6FB8C827F32E4242463131AB8B336 /* event */ = { - isa = PBXGroup; - children = ( - 7BBD17E2257061C54306749D6F782A0A /* event.cpp */, - C47E09C373B0A0FB35238FDA7C561401 /* event.h */, - ); - name = event; - path = yoga/event; - sourceTree = ""; - }; - 56F60C7BA9A1211A3CCBB06A5AFF931B /* React-RCTVibration */ = { - isa = PBXGroup; - children = ( - 4E0B485BCE1A2A3D1063FAE9CCCBD5CF /* RCTVibration.mm */, - 6465BBA18EC33F3B5EE4492B2E668759 /* RCTVibrationPlugins.mm */, - B1AE52BEF388CDB7119F6302E5979D93 /* Pod */, - 820D723FBDD9BD36BFF1B95E38EA8864 /* Support Files */, - ); - name = "React-RCTVibration"; - path = "../../node_modules/react-native/Libraries/Vibration"; - sourceTree = ""; - }; - 579C0D12109D228082DB3ACBC303F6A4 /* Nodes */ = { - isa = PBXGroup; - children = ( - 8C2C2F77A371FE25D6BFC654A2C41283 /* REAAlwaysNode.h */, - 52714A2CCD2587FBB70807FBE809B006 /* REAAlwaysNode.m */, - B5381095D620F8CEE1468E12F5FDABB7 /* REABezierNode.h */, - A49A84F5A7DDF18E14CCA469FEB30E43 /* REABezierNode.m */, - 841AD936110C13F90749C632ADF377FE /* REABlockNode.h */, - 428C6C0EE85E68F26CB4D2AADAFA755F /* REABlockNode.m */, - 7F9CD9F5AA07636A4CA4822D75C54E0F /* REACallFuncNode.h */, - F73BE8E26076DC528C032DAD41B0A191 /* REACallFuncNode.m */, - EAC0491058DDEC4FF937D1A42C95A83D /* REAClockNodes.h */, - 7544204EF346CE3CF0A17C6FB8FF9103 /* REAClockNodes.m */, - B47F592F534DCE24F44257D123C663FE /* REAConcatNode.h */, - CB39A92AF5D039A61F5EB788855D543A /* REAConcatNode.m */, - 6F06679A9EB4706666C01F5581716CBE /* REACondNode.h */, - 60F4E9F97C80863480B45DF23E84A182 /* REACondNode.m */, - 81766F98093BA351E98CB69984609C69 /* READebugNode.h */, - D7425907A788D25CB58D6971758201EA /* READebugNode.m */, - 797BE538447BD0E37CDA2854A9B8E5CB /* REAEventNode.h */, - 26E3E79468DED17BAF45FD27958BF791 /* REAEventNode.m */, - 4DAC573399AFC1F7C2300C1DB4400553 /* REAFunctionNode.h */, - 26D494ED4409B9A7C3E31544FB3C8766 /* REAFunctionNode.m */, - 195D57C1FDD7157567742C3B29C9148F /* REAJSCallNode.h */, - A77A66F28E2D871386C09DD6425F2C04 /* REAJSCallNode.m */, - 644B8A6569BEEBB4352F664FDB906D10 /* REANode.h */, - A7B125F1892F0C21D8BE2A40FE16C7F7 /* REANode.m */, - 20083FCD33955CBF680506B2DA0CA847 /* REAOperatorNode.h */, - 977F25FEB3197F59727F735FB9A4B52C /* REAOperatorNode.m */, - AFA21B0061C878DA5977940FE31E0D93 /* REAParamNode.h */, - 28540FE171475E25406318DCED3482B5 /* REAParamNode.m */, - 3AF58C59174E3A5F769E8C8E86C4AC78 /* REAPropsNode.h */, - 790F21FF37AFBE5BFB38D22EBDAA25C0 /* REAPropsNode.m */, - 2744D9AB6AFC3C47A5773B2A45689556 /* REASetNode.h */, - C5D16A5CE68DF3DBB369C3253854EC1E /* REASetNode.m */, - 5DA470C8D907128F39A23FF2A1926F01 /* REAStyleNode.h */, - 39CBC53CBC21C37833DE520B3FBB4902 /* REAStyleNode.m */, - 221EAFBF8C4EFA60E7201C7605DA24F7 /* REATransformNode.h */, - 6BA02752B3E8452A3F27B9220BE4E524 /* REATransformNode.m */, - E0579A2778DF7E58097C9B4C0F4F2F5B /* REAValueNode.h */, - A8C21718E04F4E236AEC61E8AF869AA4 /* REAValueNode.m */, - ); - name = Nodes; - path = ios/Nodes; + name = Pod; sourceTree = ""; }; 585117205089EE773CF8220FF60DE426 /* Frameworks */ = { @@ -14022,16 +13821,21 @@ name = Frameworks; sourceTree = ""; }; - 58A9B7BCDAFACA0FDC6F535EE1E27A28 /* Support Files */ = { + 5866177121B3C5BF469606D5822DFB5D /* React-RCTText */ = { isa = PBXGroup; children = ( - 473F2EB36323A7D3EE84A937C6AD6108 /* ReactNativeKeyboardInput-dummy.m */, - E13DBC7AA929E656D00405709E528DD1 /* ReactNativeKeyboardInput-prefix.pch */, - C07B0A62EC6A3B0E3F1262B91453A088 /* ReactNativeKeyboardInput.debug.xcconfig */, - E73BC0618D86EFC57D02673138646F92 /* ReactNativeKeyboardInput.release.xcconfig */, + 31DE601F5B00F05D733ACA7227878644 /* RCTConvert+Text.m */, + 7114321D983DA3CB9B23FB8EDDB3FA91 /* RCTTextAttributes.m */, + B7CECBE2BB5B2095D2BF1EFF0E6BC933 /* BaseText */, + 8C366ECDFDE298113FF66107FEAE0A07 /* Pod */, + 4F398AF8880D30A462C96023839A40AA /* RawText */, + 55C1D0456D9162524B1E91DD3B06FBE0 /* Support Files */, + 6C3ABDEC76D498249CFB614336931B69 /* Text */, + A2E3C6838D0D01DADBBF16FB4CE2040A /* TextInput */, + A6C523909041BADC325BE7D56F048ABB /* VirtualText */, ); - name = "Support Files"; - path = "../../ios/Pods/Target Support Files/ReactNativeKeyboardInput"; + name = "React-RCTText"; + path = "../../node_modules/react-native/Libraries/Text"; sourceTree = ""; }; 596959E8F6CA185C187D9DC91DAC32CF /* Support Files */ = { @@ -14045,28 +13849,124 @@ path = "../Target Support Files/FirebaseCore"; sourceTree = ""; }; - 5A459960D6CFBC076295E0C11B5CE13A /* Support Files */ = { + 599F893775DF5CA77AD437719A6E770D /* Pod */ = { isa = PBXGroup; children = ( - 4C8C11AD6FA6470DC663D9FAE13E49A5 /* RNLocalize-dummy.m */, - 4AAD645A89AA53AA46FF2F2EA406D435 /* RNLocalize-prefix.pch */, - 6B3B7295D7F8B3A1A12FBFF80B2AD01F /* RNLocalize.debug.xcconfig */, - 5C1400EE7D0C77C4DCC222F93DBBF116 /* RNLocalize.release.xcconfig */, + EC631D218C160AFF25570B4D3CD2A727 /* LICENSE */, + 3D6AC701B973EEF8DC457CFC29353416 /* react-native-background-timer.podspec */, + 36CB4A6EA92CE59262530D8A63D84FEC /* README.md */, ); - name = "Support Files"; - path = "../../ios/Pods/Target Support Files/RNLocalize"; + name = Pod; sourceTree = ""; }; - 5B73AE5A405588EB2A1DFF2098FA17C6 /* Support Files */ = { + 59E4B84A132BD3EEEABF654B81DCEF7A /* RCTWebSocket */ = { isa = PBXGroup; children = ( - 9D7522F84C8F35A7C9E425262305F26D /* react-native-document-picker-dummy.m */, - C7E06C4B7A2DC711C361CA70A01762D9 /* react-native-document-picker-prefix.pch */, - 97CD3F3743671CC2E9A1905DCE895CE3 /* react-native-document-picker.debug.xcconfig */, - DB24569B7695A72E1A527E2E561D26D2 /* react-native-document-picker.release.xcconfig */, + 454642A70E639C89D118ABE1A81999C7 /* RCTReconnectingWebSocket.h */, + 2E24CB94ACDE4208A2F74AFF8B370964 /* RCTReconnectingWebSocket.m */, + 7DCBC3BF7063D7893DD6E720842EB674 /* RCTSRWebSocket.h */, + 81BEB03FF4BED8573EBE9E18CAB3E2AA /* RCTSRWebSocket.m */, ); - name = "Support Files"; - path = "../../ios/Pods/Target Support Files/react-native-document-picker"; + name = RCTWebSocket; + sourceTree = ""; + }; + 5A2CA4798CDBEF1379E0ADB806B456AB /* Views */ = { + isa = PBXGroup; + children = ( + 764AEB0526717771F8BD7A6C9357B7DF /* RCTActivityIndicatorView.h */, + B688BF60BEAFBD9E5BA1394561849F89 /* RCTActivityIndicatorView.m */, + CF745B7AE8CFE90CDA62D46441A3C707 /* RCTActivityIndicatorViewManager.h */, + 8C61C84C3C5766BD74DDD64285BBF9A0 /* RCTActivityIndicatorViewManager.m */, + E260122216BFD10EF3573B07DE80636D /* RCTAnimationType.h */, + 729125632DBFA13BFE7708A0A929F1C8 /* RCTAutoInsetsProtocol.h */, + 5017E37A73391D7682EFB3F743ACF5CF /* RCTBorderDrawing.h */, + E5D28153CC5C6AE1C5F6C6533937C3DC /* RCTBorderDrawing.m */, + CF207FF954594543030AF9A57CB88BCE /* RCTBorderStyle.h */, + EB95AFF8515B8C0895CD9991DBBD80D9 /* RCTComponent.h */, + 4EA016B8FFFAB2E1D4D2BBC0CEF441CD /* RCTComponentData.h */, + F69088FF9137E1A22EA0E9359EBF6B96 /* RCTComponentData.m */, + F483F9DD2042D4D177D18F5507954087 /* RCTConvert+CoreLocation.h */, + E9CE77DDA1A7F84B3C10ADC5FAFBA481 /* RCTConvert+CoreLocation.m */, + 0A584D274903A564E120260FBAEC163F /* RCTConvert+Transform.h */, + CE52B2322F5A722469845A5FF8E82B1E /* RCTConvert+Transform.m */, + F401D73CEB90888EAF4B4FA4B04C2D01 /* RCTDatePicker.h */, + B48D0EC4D6AB87AC52C703AF50275207 /* RCTDatePicker.m */, + E7329921F0879CED0F73EBBDBC1D0E0A /* RCTDatePickerManager.h */, + 0159D057369B74CBE0C3471C25A61664 /* RCTDatePickerManager.m */, + CF6E4A60E10A9EE1158AACE39FB504E7 /* RCTFont.h */, + D8BBF0AF3F05628625B8716FD0F530F2 /* RCTFont.mm */, + EA20ED1DC2423D44F91E9BD23BC3BEE5 /* RCTLayout.h */, + 48FF4E16D3117C99285385E40CCF0B5E /* RCTLayout.m */, + 8415466C1EA9882F7C98357DC2A3C56E /* RCTMaskedView.h */, + 7B39967770B8790E5E3F2E4E66B738F2 /* RCTMaskedView.m */, + DEAA8990BF96D0925C82AC3D05344E8D /* RCTMaskedViewManager.h */, + 92B3D1C9836ABB9BC4DE52FEC56CD705 /* RCTMaskedViewManager.m */, + EB930BAE07AEE8D8395B70E2A3394A9F /* RCTModalHostView.h */, + 9A18F10C9821DF66F748687E16DED678 /* RCTModalHostView.m */, + 85070F20AC1AAC643BCBAB997B0A1968 /* RCTModalHostViewController.h */, + C0361DFADB5DCE4EB198AA112B9ACD6E /* RCTModalHostViewController.m */, + 942AA1418D70DA7612B50F21C0E24336 /* RCTModalHostViewManager.h */, + DEE6721A0D2ADFAC5D36D6CCD0D3490A /* RCTModalHostViewManager.m */, + 736A16E93CE6664EA8CF0EA289AE8A8E /* RCTPicker.h */, + BA5E3073BA7F3C9F595624AA607989F4 /* RCTPicker.m */, + AE7D0AA3C019207903AFB1A815C8C3B5 /* RCTPickerManager.h */, + 04C7199F89520D6B44F7C1B306AB3DA9 /* RCTPickerManager.m */, + 0E3666B201224AEA5752F509B548A672 /* RCTPointerEvents.h */, + 7A41176511AE56D98A8467D6889F4072 /* RCTProgressViewManager.h */, + 40DC9AE657A1D013F7C0A23E0D8B1DA1 /* RCTProgressViewManager.m */, + 534FDDBCB78BE7A8C4D8D39DF13F700E /* RCTRootShadowView.h */, + 6A4E029ADB9B52B57E9556BC69538ACB /* RCTRootShadowView.m */, + 077F8E04F2D3688403F8D340E4824BB6 /* RCTSegmentedControl.h */, + F1C4447775C321032BE516A0BC165007 /* RCTSegmentedControl.m */, + AEB1087B57D6F978F92CDA9C14EDB60C /* RCTSegmentedControlManager.h */, + FE674740E3369E8BCF94F0EA5AECDCE5 /* RCTSegmentedControlManager.m */, + 2432A98B30D26D6A0EB943B7B4062D10 /* RCTShadowView.h */, + 14FC7C467B63A006869982C7C1DFC1FA /* RCTShadowView.m */, + 2EC61611D7A38B4BDCDFDB8347C4F1E3 /* RCTShadowView+Internal.h */, + E2E9DD9B3DC7A406C1CA8D7ABD12D7AE /* RCTShadowView+Internal.m */, + A5B79A762EE2ED264442A969675C775A /* RCTShadowView+Layout.h */, + 82C1A4D1D1DC5C630555A4C48B35A723 /* RCTShadowView+Layout.m */, + BC1726A8A195FCE50786A827566C5D5B /* RCTSlider.h */, + A3AC869C7BCB7C9B0EEA291E8CCE592B /* RCTSlider.m */, + 9D9426143F78D6A00BBA6C6748C66DDB /* RCTSliderManager.h */, + F9DBC5769059324CA6BBEA5F9E1A702E /* RCTSliderManager.m */, + 49DC05020B3EE5FC65B07DC95C77E61B /* RCTSwitch.h */, + 985774EE5032AA9267DA1E8C579E4E5F /* RCTSwitch.m */, + 827231DE3E978B0707E476CDA7825A31 /* RCTSwitchManager.h */, + D7FCD9058F8F1CE3755B47E903412B3D /* RCTSwitchManager.m */, + 4691158A680561562C3BD4EFCA236E87 /* RCTTextDecorationLineType.h */, + 29F56857296C165FD75A3B08606C0E30 /* RCTView.h */, + 6AC5C5F2293A8179085B5C8C5FA4F526 /* RCTView.m */, + 7DCDAFE44FE167FC68E9A412325E8F37 /* RCTViewManager.h */, + 76A42307B642F3B36017AC96973995F4 /* RCTViewManager.m */, + 96254962E9F5AD16AD3798790DDCCED6 /* RCTWrapperViewController.h */, + D9F5DD1F449797557B1FF604DD50DE75 /* RCTWrapperViewController.m */, + 00D2DF48B6D69A1A3B7C96A665DE7675 /* UIView+Private.h */, + 9223FA494673CD43DA2500F7B4A51C60 /* UIView+React.h */, + 2B2F1745446D0F6241D56B08FD7EB45F /* UIView+React.m */, + 46E6FBB5F27E04F6B54CF43B695865CE /* RefreshControl */, + BFDEC0F38584746FB6A14578FC780B47 /* SafeAreaView */, + 30B42A2CD0A81617A08E2488E8F69ECC /* ScrollView */, + ); + name = Views; + path = React/Views; + sourceTree = ""; + }; + 5B7DDC0FAAC44153686E9BA396DBC45B /* CxxModule */ = { + isa = PBXGroup; + children = ( + 4C8C119F60CED5873359325CC7F0E23A /* DispatchMessageQueueThread.h */, + A12E12EE8EAF7671F7B4E3B99567F41A /* RCTCxxMethod.h */, + A4540BAF73AE068913CA929A5297D2FC /* RCTCxxMethod.mm */, + 16C434122E7AFD7FB0E97BE8DF9AC03E /* RCTCxxModule.h */, + 71769EBDB16C53B0BBB8EAB513CE9551 /* RCTCxxModule.mm */, + F15ACCC49EE82C62FB9B1233BA69702A /* RCTCxxUtils.h */, + AE36F36F0E6BC974C8AD80BB6CF9B5DB /* RCTCxxUtils.mm */, + 7C1CADBD19400905ABE9EB8872167C84 /* RCTNativeModule.h */, + 8CF926B54ADE16ADC9B5AFD9FD5CC51D /* RCTNativeModule.mm */, + ); + name = CxxModule; + path = React/CxxModule; sourceTree = ""; }; 5B8F51C88042A440D531603516386B85 /* Support Files */ = { @@ -14079,14 +13979,13 @@ path = "../Target Support Files/OpenSSL-Universal"; sourceTree = ""; }; - 5BB7D530C9074BE1E0E12C148FB0DD4A /* Support Files */ = { + 5BAB278F1F0346D490C5FECE13075BB2 /* RNConfigReader.xcworkspace */ = { isa = PBXGroup; children = ( - 246949E5FF4118302D0130A6CE306257 /* FBLazyVector.debug.xcconfig */, - 4382086837B45B455742559DF0B47770 /* FBLazyVector.release.xcconfig */, + 2FEE374725A51DAC67D32BEDE90A543B /* contents.xcworkspacedata */, ); - name = "Support Files"; - path = "../../../../ios/Pods/Target Support Files/FBLazyVector"; + name = RNConfigReader.xcworkspace; + path = ios/RNConfigReader.xcworkspace; sourceTree = ""; }; 5BCFFA1DE18AC03DF2BDB0F208FAE05A /* Flipper */ = { @@ -14180,29 +14079,12 @@ path = PromisesObjC; sourceTree = ""; }; - 5CD12DD1F6F55AA3E814CAD4DBADA4FA /* Core */ = { + 5CC426D95E02D383C51DBD2FEB94A736 /* Pod */ = { isa = PBXGroup; children = ( + B412407B60EC6DE72031E2A90E2CF80F /* React-RCTSettings.podspec */, ); - name = Core; - sourceTree = ""; - }; - 5D3EF85EEA74440667856A174A7CF90C /* RNScreens */ = { - isa = PBXGroup; - children = ( - 5A890AEA1B62F48472037A6E4B8FBDB8 /* RNSScreen.h */, - 3B96DA6A06FBD277935AE7448D8629F6 /* RNSScreen.m */, - 4F27C91073AFBF5FA95E871D937BBD41 /* RNSScreenContainer.h */, - DACBFB8D3758D83903550F2AD17B14EE /* RNSScreenContainer.m */, - A1490A5369E542D596EAEA9F480A37D8 /* RNSScreenStack.h */, - BD5AACE9060BB7DE24D02208B96350D5 /* RNSScreenStack.m */, - CF25046EDD37FD4274ED2A9926FF12FE /* RNSScreenStackHeaderConfig.h */, - 8F7C4E8018EE5B378B08284AF2C6DDBD /* RNSScreenStackHeaderConfig.m */, - 18D086326D1B816B8532F118DFC0B002 /* Pod */, - FD57CBD6983388FA42FFFC36787B0E8E /* Support Files */, - ); - name = RNScreens; - path = "../../node_modules/react-native-screens"; + name = Pod; sourceTree = ""; }; 5DBDFB69F4CA4ABD9CB5934DE6FCEABD /* NSData+zlib */ = { @@ -14215,116 +14097,153 @@ name = "NSData+zlib"; sourceTree = ""; }; - 5EEF917987BCC8AEF5CF5061469CE45C /* Resources */ = { + 5E3C92A10CB21171898BE3C7C6DD4620 /* Pod */ = { isa = PBXGroup; children = ( - 9F1539EF19F291E33E18CF6ACA7243FA /* en.lproj */, - ); - name = Resources; - sourceTree = ""; - }; - 5F882E7BBFA9658259142D5289B455EB /* Pod */ = { - isa = PBXGroup; - children = ( - 7B12B24F0D2B4C9ABF11C62EC0707101 /* LICENSE */, - 28105B13EA351F4B508FE0E4AD5B2230 /* ReactNativeKeyboardTrackingView.podspec */, - C60524B5B9A9D8052ECA2416033AC77E /* README.md */, + 5FF46CC63C895B2BC6EA05546DE7B911 /* LICENSE */, + 4C08794CC6CFFA790237F6122718141C /* README.md */, + 18956606EBD6845E159A386DDE4E058E /* rn-extensions-share.podspec */, ); name = Pod; sourceTree = ""; }; - 5FAC90D16813282C6B8A8657B38F7036 /* Multiline */ = { + 5F3ABBF30CD1FDBBB0C110E125EEE6A7 /* Pod */ = { isa = PBXGroup; children = ( - C6868C8457E5B8FA9B29D3E5C23D62C6 /* RCTMultilineTextInputView.h */, - 904B9C0F5B5A4A0CC2B435A98A9779B8 /* RCTMultilineTextInputViewManager.h */, - A7801F30220C1D16F961685B7CF20131 /* RCTUITextView.h */, + 72BA835BC3611EC340868DB2DC96C7BD /* LICENSE */, + EDD3ADF5E1D2A5DEEA3627DCB31F5303 /* README.md */, + D6BA98FD2CBC117C48D4B78403EDA6A7 /* RNReanimated.podspec */, ); - name = Multiline; - path = Multiline; + name = Pod; sourceTree = ""; }; - 60246F03CBD5215A4D05C4DBB9618114 /* ReactNativeKeyboardInput */ = { + 5F9276F7D7DED8DB2E8F7B805E304A88 /* Pod */ = { isa = PBXGroup; children = ( - A9387CF7966E546046E2F9ED7B573504 /* LNInterpolation */, - 755308F53B9F113348A5EAEE5F791C50 /* Pod */, - 9184F2D9EFBD9839DF678BEC01488F70 /* RCTCustomInputController */, - 58A9B7BCDAFACA0FDC6F535EE1E27A28 /* Support Files */, + 952A2656D29E2D1D857D9963B29F4D0B /* React-RCTLinking.podspec */, ); - name = ReactNativeKeyboardInput; - path = "../../node_modules/react-native-keyboard-input"; + name = Pod; sourceTree = ""; }; - 6110DC87D643E5BB776753A2E2DA0B19 /* RCTBlobHeaders */ = { + 5FCB780E96C3D97EFB7F7483196BB3CC /* React-RCTLinking */ = { isa = PBXGroup; children = ( - DF279B7B525E04033CBDC3488570B1A4 /* RCTBlobManager.h */, - 5B8262D25D30A6111A0B6A817AF55FB2 /* RCTFileReaderModule.h */, + E166D873D615A5C11E0FEDB353AFA5CF /* RCTLinkingManager.mm */, + 9C135EEF6C4A819558A09EC787D03B47 /* RCTLinkingPlugins.mm */, + 5F9276F7D7DED8DB2E8F7B805E304A88 /* Pod */, + 2EC384930985C4B24A9B2B7B7E48F5B1 /* Support Files */, ); - name = RCTBlobHeaders; + name = "React-RCTLinking"; + path = "../../node_modules/react-native/Libraries/LinkingIOS"; sourceTree = ""; }; - 6153446E70B9D23EE70C201E02BF89D7 /* Support Files */ = { + 5FD6A0F2219AB91E3CD1D43A23EFD536 /* Pod */ = { isa = PBXGroup; children = ( - B843E54074EDB62A3C081817E57AC38B /* react-native-slider-dummy.m */, - 3BE6681C640A8D82C22D08B78CD22781 /* react-native-slider-prefix.pch */, - 0709BBC41221895334569C4856137579 /* react-native-slider.debug.xcconfig */, - 2939EB4E5E7E94A02C3A9CD37B99AC49 /* react-native-slider.release.xcconfig */, + FFF6B215BBD3B7021EB2B5AEF5E907DC /* LICENSE */, + EF2B5703A30434EDBF01FA54265F05F9 /* README.md */, + 4B603DA70AA28DDFC4E541E64EA93064 /* RNLocalize.podspec */, + ); + name = Pod; + sourceTree = ""; + }; + 5FE528B47CA6C37FA99EEEDF9E1DF187 /* Pod */ = { + isa = PBXGroup; + children = ( + 60BF0D104534FDEECAC4681C32061822 /* React-jsinspector.podspec */, + ); + name = Pod; + sourceTree = ""; + }; + 6000BFF43AF921038AF3D10BC8C72B19 /* Pod */ = { + isa = PBXGroup; + children = ( + EC57A10E5379B89C0544ACA87023243F /* React-RCTVibration.podspec */, + ); + name = Pod; + sourceTree = ""; + }; + 60DA154B868D4207B1962DBFF1071322 /* Pod */ = { + isa = PBXGroup; + children = ( + E62C02511AA502417FB5C54ADF4CE523 /* EXKeepAwake.podspec */, + ); + name = Pod; + sourceTree = ""; + }; + 62ECB597B638ADEB1FB67EEB5103C517 /* Pod */ = { + isa = PBXGroup; + children = ( + 32200620D32082C1EB6293DC0C0D5F53 /* React-jsiexecutor.podspec */, + ); + name = Pod; + sourceTree = ""; + }; + 635B0E10698244657845465E74BBF045 /* Support Files */ = { + isa = PBXGroup; + children = ( + 00EC4CE6F1F7EC1C98F06E4935F70880 /* react-native-cameraroll-dummy.m */, + 687123C18109B0B1D0E545560537FF1A /* react-native-cameraroll-prefix.pch */, + 0E587E6D478E105E756238B7D7B4EF25 /* react-native-cameraroll.debug.xcconfig */, + 82902E0C44568048C430BC27BFC98FDB /* react-native-cameraroll.release.xcconfig */, ); name = "Support Files"; - path = "../../../ios/Pods/Target Support Files/react-native-slider"; + path = "../../../ios/Pods/Target Support Files/react-native-cameraroll"; sourceTree = ""; }; - 623B30ACF92AF9DFE025A5AC85E7658F /* Pod */ = { + 64E1599C8186E2B76B764786A6F19EED /* Pod */ = { isa = PBXGroup; children = ( - 8EA5049FEBF87BF99988F7BB6B3A542A /* LICENSE */, - FEFA42E3A626B7AD203A6688EEB6BFBA /* react-native-mmkv-storage.podspec */, - C0FFCF3DFB89B29660D715CD5BF1E35D /* README.md */, + 999EF40AE7C056063D6705BA9FA716F5 /* React-Core.podspec */, ); name = Pod; sourceTree = ""; }; - 638A5498CA549D052BF54A0DD032BB90 /* Multiline */ = { + 64F26EE1D4D49B64780DED1BA75156CA /* RNFBAnalytics */ = { isa = PBXGroup; children = ( - 76985D955D3B6775EC88E7EEFA9CA722 /* RCTMultilineTextInputView.m */, - 1B29FE125F86A52CEC396A449E54AAB9 /* RCTMultilineTextInputViewManager.m */, - DBFACC49F2EBD1BC517C49872975356A /* RCTUITextView.m */, + 636CCC2E08CE0BD5443FB0D8F435BEDF /* RNFBAnalyticsModule.h */, + 27115A58C44A611EE094D04B426E7BFB /* RNFBAnalyticsModule.m */, + 5768C42C43C6EA62A13A515140584818 /* Pod */, + 2DFA2EF732107931A1137A854A8617E3 /* Support Files */, ); - name = Multiline; - path = Multiline; + name = RNFBAnalytics; + path = "../../node_modules/@react-native-firebase/analytics"; sourceTree = ""; }; - 642AB45569CCE76C03F7FEF7DF743E10 /* Services */ = { + 65646E862C04B330DB2FF311F0AF7A45 /* UMViewManagerAdapter */ = { isa = PBXGroup; children = ( - F3C71100E34406E799C96C08C5F30641 /* UMLogManager.h */, - C5D601B7EBBF05100560CFD1E220236A /* UMLogManager.m */, + 81CC00FA4FE4645F3158AA13C2172A42 /* UMViewManagerAdapter.h */, + 763B66916CA792042712037004F90D3A /* UMViewManagerAdapter.m */, ); - name = Services; - path = UMCore/Services; + name = UMViewManagerAdapter; + path = UMReactNativeAdapter/UMViewManagerAdapter; sourceTree = ""; }; - 6670945F244007AF97B3B4793D972E83 /* RCTVibrationHeaders */ = { + 65834CD4BC89F22BE7E40C2E42625176 /* Pod */ = { isa = PBXGroup; children = ( - 094F0D34BFD6E291AE123770D2E87600 /* RCTVibration.h */, - 03392E5EB7FAEE948555583AF17458BE /* RCTVibrationPlugins.h */, - ); - name = RCTVibrationHeaders; - sourceTree = ""; - }; - 6763E034031DE82C399D8FE54951F420 /* Pod */ = { - isa = PBXGroup; - children = ( - A1F4D676DDF4AFA47254899CD233F1ED /* UMCameraInterface.podspec */, + 417775EC0167B9C6DFDE3E238F3799D0 /* KeyCommands.podspec */, + DED5163C39015AF7E5E85AE9AD7F0245 /* README.md */, ); name = Pod; sourceTree = ""; }; + 65D9A9EE48435908752FF3E938D7CA4B /* React-jsiexecutor */ = { + isa = PBXGroup; + children = ( + 282FB6D72191F808CC7817388052329B /* JSIExecutor.cpp */, + A4B81A14BA60FD9203C458E4C264F55B /* JSIExecutor.h */, + 2235F3F4971587F92D12EC2AE37D81A5 /* JSINativeModules.cpp */, + 2D8EC94C01ED675E63A875FCA6393D47 /* JSINativeModules.h */, + 62ECB597B638ADEB1FB67EEB5103C517 /* Pod */, + 22BD83B678101FA01331BB1F66ACDA15 /* Support Files */, + ); + name = "React-jsiexecutor"; + path = "../../node_modules/react-native/ReactCommon/jsiexecutor"; + sourceTree = ""; + }; 67A70C3DB663C3E60CDFDFCC9590905C /* FBDefines */ = { isa = PBXGroup; children = ( @@ -14333,6 +14252,20 @@ name = FBDefines; sourceTree = ""; }; + 67BB367161CF730B0623B33AF3560370 /* react-native-jitsi-meet */ = { + isa = PBXGroup; + children = ( + 9C32669A17D6C47E7847952EB929DA10 /* RNJitsiMeetView.h */, + 356D6C04D0A12FFEA005F737D50CB188 /* RNJitsiMeetView.m */, + DCCE06B14E1B2CF20E94776F50F648CD /* RNJitsiMeetViewManager.h */, + D8F571CDD912D82C6C335EBA2A5AA715 /* RNJitsiMeetViewManager.m */, + 25E952DD06A2614D14749C2EDEEB9241 /* Pod */, + E591271ECE984D651C32110F30DF3800 /* Support Files */, + ); + name = "react-native-jitsi-meet"; + path = "../../node_modules/react-native-jitsi-meet"; + sourceTree = ""; + }; 683E72D9D7A7C81414D10C7FCD01720F /* Environment */ = { isa = PBXGroup; children = ( @@ -14350,31 +14283,15 @@ name = Environment; sourceTree = ""; }; - 68698F1A3F479AABB642766229EE31EA /* UMReactNativeAdapter */ = { + 68EBCB1A73333540632CF7CE62480DE0 /* Multiline */ = { isa = PBXGroup; children = ( - 6E4008EF45A0D71DCFBA6F91F3D00EA8 /* UMBridgeModule.h */, - F64C64DDE6EC5C49768FD88986FB73A2 /* Pod */, - 1EA42BF00FC8845824AF1A9EB3053EA2 /* Services */, - 94A89412E5841A0D0B040C6409F6E90A /* Support Files */, - 7557E182950A7CB57CDD1DED5664C8EF /* UMModuleRegistryAdapter */, - 81A0A887501720585A6ED4B8337DA728 /* UMNativeModulesProxy */, - 86289DA29472A446FE7B07E68E144B26 /* UMViewManagerAdapter */, + 30F398055ADF624F0EDC591B8B0BE805 /* RCTMultilineTextInputView.h */, + 2B14DE84C4710921B5FC4F09908D4E1E /* RCTMultilineTextInputViewManager.h */, + 99187B5EAF9E7564364CA44D29DDCFBA /* RCTUITextView.h */, ); - name = UMReactNativeAdapter; - path = "../../node_modules/@unimodules/react-native-adapter/ios"; - sourceTree = ""; - }; - 68B333B521F2661162615BECA7986FFE /* Support Files */ = { - isa = PBXGroup; - children = ( - 8A987EA58D932E4F1D2EE0286730EAA6 /* RNFBCrashlytics-dummy.m */, - 672FB528F5AD5313A27A93E44D7275C1 /* RNFBCrashlytics-prefix.pch */, - B549A7E45CCC048D345D4E1DCF59A85E /* RNFBCrashlytics.debug.xcconfig */, - 17762E112CF7FDA3FF991A591EE56FC3 /* RNFBCrashlytics.release.xcconfig */, - ); - name = "Support Files"; - path = "../../../ios/Pods/Target Support Files/RNFBCrashlytics"; + name = Multiline; + path = Multiline; sourceTree = ""; }; 697E6CD1227AD119CC4E3A7D8D9222E4 /* Support Files */ = { @@ -14389,18 +14306,6 @@ path = "../Target Support Files/glog"; sourceTree = ""; }; - 6986F119D6270D7130A36CB90A7DAEEA /* Support Files */ = { - isa = PBXGroup; - children = ( - D59F913E76E074296AA881EE17A00394 /* rn-extensions-share-dummy.m */, - 5A2C14A8D023869B15AE3C8A886173EC /* rn-extensions-share-prefix.pch */, - 7F3A7F96EE7DA91347F320A07F9CF373 /* rn-extensions-share.debug.xcconfig */, - 7DE6A677E0E6DFFA30734D9136451DDD /* rn-extensions-share.release.xcconfig */, - ); - name = "Support Files"; - path = "../../ios/Pods/Target Support Files/rn-extensions-share"; - sourceTree = ""; - }; 698A0BFBD27F2486B9151A654CC5C614 /* MMKVAppExtension */ = { isa = PBXGroup; children = ( @@ -14413,61 +14318,74 @@ path = MMKVAppExtension; sourceTree = ""; }; - 6A22E9AB051C3C1A09ACAD7492425B71 /* Pod */ = { + 69B343F63C1AE210AB6B5B2964BF6B7A /* Multiline */ = { isa = PBXGroup; children = ( - 2631E8762A1DFC1BA0B0348CC1451B19 /* React-jsinspector.podspec */, + 82E77850EBDB8635AC976F667B8B9C87 /* RCTMultilineTextInputView.m */, + 886C400CDA37EF7577E77029071CFB6C /* RCTMultilineTextInputViewManager.m */, + 81F07119EA14BCACE45B5265661DEC55 /* RCTUITextView.m */, + ); + name = Multiline; + path = Multiline; + sourceTree = ""; + }; + 6AA8B9FD7CF945D06FD187A46F2D58CA /* Pod */ = { + isa = PBXGroup; + children = ( + 86CCC328C36640AD519D121936DBB6A8 /* LICENSE */, + 5ED41CE4A1586005DE1892A40E47A707 /* README.md */, + E676D2886E1C744155B0C5ADBB45646E /* RNFastImage.podspec */, ); name = Pod; sourceTree = ""; }; - 6A3D7D9823C968C937C778C265FA3671 /* CxxBridge */ = { + 6BFA7AD77FF3A663BA6D93E4A80C92B1 /* Support Files */ = { isa = PBXGroup; children = ( - 7EACD5824921383288E9F730A938E752 /* JSCExecutorFactory.h */, - 1E098669008D834D746C72C165990C67 /* JSCExecutorFactory.mm */, - 51357BA4D6EAB4480E755316731DC52C /* NSDataBigString.h */, - D5987EC0DF3517E6D9F5C244C1837F1B /* NSDataBigString.mm */, - 262653AEBD7EA70BB4AD8AB620DA21C8 /* RCTCxxBridge.mm */, - 7E24D2BD63FE094A49FF7AC7CFC05A19 /* RCTCxxBridgeDelegate.h */, - 7834B42B5EF58DFF8D1B3F3195EBF519 /* RCTMessageThread.h */, - 9DD1E5F69423AB2A0A02E30A9CA3ABFF /* RCTMessageThread.mm */, - C742630069F512A418B5F71A72EC6EF2 /* RCTObjcExecutor.h */, - B9D24F6F371C919129EDF5A34E8C172D /* RCTObjcExecutor.mm */, - ); - name = CxxBridge; - path = React/CxxBridge; - sourceTree = ""; - }; - 6A6E0CB9BE2DAE8EFEA047CACFB426E7 /* Pod */ = { - isa = PBXGroup; - children = ( - 62745929D97AF49C979E30DA0E40E56F /* UMTaskManagerInterface.podspec */, - ); - name = Pod; - sourceTree = ""; - }; - 6AADFBA24CBBB3224CFC77C9B15E7BF9 /* RCTRequired */ = { - isa = PBXGroup; - children = ( - D0B4C8DADC8526FA24BCCF04E3A4D41F /* RCTRequired.h */, - 287C79185501C07AAC29D07AC2CBD590 /* Pod */, - 41E0BB1617922B137ACF7366BCD5A04B /* Support Files */, - ); - name = RCTRequired; - path = "../../node_modules/react-native/Libraries/RCTRequired"; - sourceTree = ""; - }; - 6C3F0C275A0AC9862755F3B9A314D843 /* Support Files */ = { - isa = PBXGroup; - children = ( - 9D6562AF4C78020462C6A942F8BE3937 /* RNFastImage-dummy.m */, - 8799C6D324F39F47AFE742FD3F5324C4 /* RNFastImage-prefix.pch */, - 9FF0C1156D7F1A10C946731FA6527EA3 /* RNFastImage.debug.xcconfig */, - 4EBC7FACB50E141DA6A4D7EA34FC21DE /* RNFastImage.release.xcconfig */, + 75EFC6E58AA6396FF7CC6FCB93F2598D /* UMBarCodeScannerInterface.debug.xcconfig */, + 1B8513CD935F79A6758B932AC79ACB93 /* UMBarCodeScannerInterface.release.xcconfig */, ); name = "Support Files"; - path = "../../../ios/Pods/Target Support Files/RNFastImage"; + path = "../../../ios/Pods/Target Support Files/UMBarCodeScannerInterface"; + sourceTree = ""; + }; + 6C3ABDEC76D498249CFB614336931B69 /* Text */ = { + isa = PBXGroup; + children = ( + C3F0321A0EA2D767809064EDDA1A9F48 /* NSTextStorage+FontScaling.m */, + DF5FBCE781A6B4FF035B948D86FFB703 /* RCTTextShadowView.m */, + 2E70A33A18E5E1955F5C3B52D6D4D65C /* RCTTextView.m */, + 422D4000FA1A4B67FABBF26D5D4DCB2B /* RCTTextViewManager.m */, + ); + name = Text; + path = Text; + sourceTree = ""; + }; + 6CD4D598BABB6B403719313617AADEA4 /* UMCore */ = { + isa = PBXGroup; + children = ( + 129F978EBF8760785DAABFC36BA4AD08 /* UMAppDelegateWrapper.h */, + 01DD8651408BF0EF21DCC30536D473C6 /* UMAppDelegateWrapper.m */, + 544922217666899EE7914E0FBCBCCE02 /* UMDefines.h */, + 1BDC53BE56E2FAD7A13C39E18F650CAF /* UMErrorCodes.h */, + ACC862A893B32F26CDE968FE948F22F8 /* UMErrorCodes.m */, + 8B543C70BF53EF239BB3CF1359E80C83 /* UMExportedModule.h */, + 860ADC7FE10C13203FCB23B98F88A5F5 /* UMExportedModule.m */, + 2C21A4FA570095AF52C1319C2686BDE5 /* UMSingletonModule.h */, + D56407E0D90F556BD004EFCA88C388CB /* UMSingletonModule.m */, + 34630BFFDAF5F576B1AD4719823F7FE3 /* UMUtilities.h */, + 70DDF1627FFE016066CDBAB5020EE26B /* UMUtilities.m */, + 61254B3B4E4A82CE31D76E61CAD224AB /* UMViewManager.h */, + 00404CDA3D285D5E043FDD98DC7821DA /* UMViewManager.m */, + F4D5767147B4EF2AEB1E4D4CBDACBB28 /* Pod */, + A9BF672E0753827D27953250ABA66311 /* Protocols */, + 8E7C74BBC5D1BF7F16D9A920B6F1736B /* Services */, + 972C984980FEE2B1079B5CA6E7F13A88 /* Support Files */, + FE6322BC40B875FD1F02FCE9C80F6846 /* UMModuleRegistry */, + CCAF863AD7DF6B4F6B5CA3F3717B86D8 /* UMModuleRegistryProvider */, + ); + name = UMCore; + path = "../../node_modules/@unimodules/core/ios"; sourceTree = ""; }; 6D05F4D9D9905FAE82B3502119505EAB /* Pods-ShareRocketChatRN */ = { @@ -14486,6 +14404,19 @@ path = "Target Support Files/Pods-ShareRocketChatRN"; sourceTree = ""; }; + 6D8FDF35994CB33D40AC4164D97CE1B2 /* Drivers */ = { + isa = PBXGroup; + children = ( + D1908C07ECC1F8AD68708EB21D7278F6 /* RCTAnimationDriver.h */, + BD60E6D8B57D52B2ECCCFCFBE32C456F /* RCTDecayAnimation.h */, + A80D05139C7D3E7FF9152DD4490C3E90 /* RCTEventAnimation.h */, + 44876E888F86BD38FFCF21901E02AFE2 /* RCTFrameAnimation.h */, + 0DF94A484DD1F8459AF2DBFE0AA9B633 /* RCTSpringAnimation.h */, + ); + name = Drivers; + path = Libraries/NativeAnimation/Drivers; + sourceTree = ""; + }; 6D9DFF6787A6BB619EA401C186FE626E /* Support Files */ = { isa = PBXGroup; children = ( @@ -14498,15 +14429,16 @@ path = "../Target Support Files/DoubleConversion"; sourceTree = ""; }; - 6DF023158562145E939F8A39A7E760CE /* RCTWebSocket */ = { + 6DD9FD4FC4DB31371C117A12E7E48A70 /* Support Files */ = { isa = PBXGroup; children = ( - 175DC646FB21045009343C18BC975F4B /* RCTReconnectingWebSocket.h */, - 821B1D4109543910D6B6A5FD67FE2E98 /* RCTReconnectingWebSocket.m */, - B47B6BB5880F20772D1E5C7705CDA7CB /* RCTSRWebSocket.h */, - 7F47E78BB15E64AD457C1F710D1D8BBE /* RCTSRWebSocket.m */, + FD1253FD65106E5F8C9ED11F094B1985 /* React-RCTAnimation-dummy.m */, + ABC02EA57D9B91A5778491E62C69C64A /* React-RCTAnimation-prefix.pch */, + B676F675E3FC1BECCF4989E31D820332 /* React-RCTAnimation.debug.xcconfig */, + 5A09B84FE66CD31475E6E02E791E6AE1 /* React-RCTAnimation.release.xcconfig */, ); - name = RCTWebSocket; + name = "Support Files"; + path = "../../../../ios/Pods/Target Support Files/React-RCTAnimation"; sourceTree = ""; }; 6DF29A607C0E6B2D634E6B437FCACFE9 /* Firebase */ = { @@ -14519,36 +14451,16 @@ path = Firebase; sourceTree = ""; }; - 6E93EE68EBA038DCE0B1E7B02D040683 /* react-native-slider */ = { + 6F985D413152D98EF2B8A28DBCDB0C25 /* rn-extensions-share */ = { isa = PBXGroup; children = ( - AEEFC23F784DE14FBDEAB6113FA35638 /* RNCSlider.h */, - FDA84047F1F5ED482917193D6CD48E0A /* RNCSlider.m */, - D64FB73E45B1EE3AA5F2B637D97FA5DF /* RNCSliderManager.h */, - C5D1A45B52A3F32F4D6F2203E1BB3BEF /* RNCSliderManager.m */, - 4B4555D39AB9955EEB4FB6021B2541B3 /* Pod */, - 6153446E70B9D23EE70C201E02BF89D7 /* Support Files */, + BE4A35A4A61BFE93309256BD7659483C /* ReactNativeShareExtension.h */, + 19F477349FD2D794BE96B2CD391FD731 /* ReactNativeShareExtension.m */, + 5E3C92A10CB21171898BE3C7C6DD4620 /* Pod */, + ECA44ABC50F2767009AAB1AE2976D590 /* Support Files */, ); - name = "react-native-slider"; - path = "../../node_modules/@react-native-community/slider"; - sourceTree = ""; - }; - 6FBB216DC07131C87EEEF0DB4E44A2D7 /* Pod */ = { - isa = PBXGroup; - children = ( - C25E4150B5718F88A5B69F105C1D3A6E /* React.podspec */, - ); - name = Pod; - sourceTree = ""; - }; - 702CF7685D8DA608FFFC5196A4606846 /* Interfaces */ = { - isa = PBXGroup; - children = ( - 43580BF100C066A52A315A024BACB30C /* UMAppLoaderInterface.h */, - B3EBDFEF2FCB88FEEBA7C086A33B31BC /* UMAppRecordInterface.h */, - ); - name = Interfaces; - path = UMAppLoader/Interfaces; + name = "rn-extensions-share"; + path = "../../node_modules/rn-extensions-share"; sourceTree = ""; }; 7035C80412B0C4841897265AEB12BD04 /* Flipper-Folly */ = { @@ -15183,6 +15095,14 @@ path = "Flipper-Folly"; sourceTree = ""; }; + 7122DE99CF424CBB4EB130229B0558BA /* Pod */ = { + isa = PBXGroup; + children = ( + CE5B760B2414FE0F23B1593907FB80D3 /* UMFaceDetectorInterface.podspec */, + ); + name = Pod; + sourceTree = ""; + }; 71A2BD1EFB778BF6CCB7D5B14F22767B /* MethodSwizzler */ = { isa = PBXGroup; children = ( @@ -15193,94 +15113,16 @@ name = MethodSwizzler; sourceTree = ""; }; - 721FBB9C55DB8A2C167B27192DEC6A44 /* Development Pods */ = { + 72CE3200DE3EC19D2450997944F13EC0 /* Support Files */ = { isa = PBXGroup; children = ( - 7339638B7AEEF9AAAE93581B618D0BB4 /* BugsnagReactNative */, - 7AADAA82E7426993A74336EFA774F34D /* EXAppleAuthentication */, - C5E2E085289C40CB6D0809477B758A64 /* EXAV */, - 0E9178E942377A10EBB846D22282453C /* EXConstants */, - D90B3B1C85E811A1E6F6E2F46ECB939E /* EXFileSystem */, - EBDD451B1EDFE6C57384BADA0A2049F7 /* EXHaptics */, - 7F62E3271D235EE9FE7B658D6D7C80E8 /* EXImageLoader */, - 3BE342E0A8021B43EEFC27AD20514A9D /* EXKeepAwake */, - A4F7178970D321F93655D5010C1A8A0B /* EXLocalAuthentication */, - B9DEA0474651DC8C0EBD144C9DE73A73 /* EXPermissions */, - 30AE52FA523D8D6A827FFD5FB52BFA40 /* EXVideoThumbnails */, - B679771910F4A81551D1E38E4665DBEF /* EXWebBrowser */, - 3A0C474F99BC6200ADC8D79AC5758228 /* FBLazyVector */, - 2E5525E616D2F8D1B0EC85FFC0F951BB /* FBReactNativeSpec */, - 8650E049AE9AEABDF45E3A8FDA2772C4 /* KeyCommands */, - 6AADFBA24CBBB3224CFC77C9B15E7BF9 /* RCTRequired */, - AB75C7A1FBE5932918837FE11AD9BE23 /* RCTTypeSafety */, - E807A22ADAF010AC5DC5DA60FB950E40 /* React */, - 0C597FC495245608A7FA73A252F42EE6 /* React-callinvoker */, - 9CE656F4C732E4BFEC5E9D514824E861 /* React-Core */, - EC6A6B6D30F3D3E2AF0FD5D232FDAED1 /* React-CoreModules */, - DD9331D5DFCFE97933F9B50DC25D6CC6 /* React-cxxreact */, - F0BE9487BBA120FD4FC7D02B2CCD7DE4 /* React-jsi */, - 8D029EC7DE4AB620FDE06D2AE2BE0C6A /* React-jsiexecutor */, - B220566F9A71391BE56F0D1D6CE408E2 /* React-jsinspector */, - 183BD8E6F6390EA428681A786FFEFD1F /* react-native-appearance */, - B4A97F3E1D7799A2FCB2972DE3775727 /* react-native-background-timer */, - D2BB87ABF2D0379B8151A30B546665CD /* react-native-cameraroll */, - BA934D1C302756BA6C0B6C6E726E4B2B /* react-native-cookies */, - B9C9572617DA0B4487142D672E64C4FA /* react-native-document-picker */, - A0D690C389A7578A96C11AE72AF35FE2 /* react-native-jitsi-meet */, - C2996937B571F082A28491934DCCAAA6 /* react-native-mmkv-storage */, - FE1FED9E7D28F792F81F1C9089FE4B22 /* react-native-notifications */, - C35584EB1147A59FB5CC2BD6E2C40F2B /* react-native-orientation-locker */, - 3AA563231A0D24C0C9B5353FB4D8E514 /* react-native-safe-area-context */, - 6E93EE68EBA038DCE0B1E7B02D040683 /* react-native-slider */, - 0562D1950AC38AFF7452998284673FDD /* react-native-webview */, - F0A4DDB1922ACA2CEBF85FF611F351B3 /* React-RCTActionSheet */, - 18608142289F471E38808A8ADA158428 /* React-RCTAnimation */, - 4079B81494299F2709088983860799A4 /* React-RCTBlob */, - F0A9B2C00158E823B2BAB8A75F87F2D5 /* React-RCTImage */, - B1AB7A685813F87E6F10088EFF9D7EC6 /* React-RCTLinking */, - 87B44C786802D54011001CF3593AA227 /* React-RCTNetwork */, - E1A6A5527B8AF92949B3BD0A9F957A70 /* React-RCTSettings */, - D35F6BBC82BB0DF5ADA0BE825A2EEC71 /* React-RCTText */, - 56F60C7BA9A1211A3CCBB06A5AFF931B /* React-RCTVibration */, - 88EAC76CC77BEACE9FC56AE8F1780819 /* ReactCommon */, - C6F9029A910D8BC8C0163810A27C265E /* ReactNativeART */, - 60246F03CBD5215A4D05C4DBB9618114 /* ReactNativeKeyboardInput */, - B8740C3710BC2CD3EBFA3882D0B01D27 /* ReactNativeKeyboardTrackingView */, - EF2EE03D2AB8243D4370E0D9DDCF4077 /* rn-extensions-share */, - 3681B8E9250B0176070C8FA7BD0A82AB /* rn-fetch-blob */, - 2C0E986FD88567D520BD169C326DCAE4 /* RNBootSplash */, - 8F000F8109FE293C1E6C9C0F7074773A /* RNCAsyncStorage */, - 7BA21EE8A409F080FA366712FEA72879 /* RNCMaskedView */, - 1F7F2987322CB4729DF4E8D85FA57DC0 /* RNConfigReader */, - E1009CF6D720934DF51787A152623C92 /* RNDateTimePicker */, - 223AF0011C98B433401C8BB78CB6B065 /* RNDeviceInfo */, - B563E4387CB19E8B38671C4749768402 /* RNFastImage */, - B28E02485F4EDD492C77DC8A7F0663AF /* RNFBAnalytics */, - 93142AD3FFDCF47D39445C3EFFAD3441 /* RNFBApp */, - C4CE50BE886B79DBD9FE749BE209B9C5 /* RNFBCrashlytics */, - B3DC4F27F4448D79BC412C62FA9717B9 /* RNGestureHandler */, - D5C29F1A49DB36147E9D23E58FF89FD2 /* RNImageCropPicker */, - A7C40E40254E48BAE66811C865E24C74 /* RNLocalize */, - 8872ED4AB014463DC3D15E08FBA2E263 /* RNReanimated */, - 29B3BBC50E3B09CB178B41FC558C7014 /* RNRootView */, - 5D3EF85EEA74440667856A174A7CF90C /* RNScreens */, - B734537B266390DB30BD231BDC85C051 /* RNVectorIcons */, - 740011A901CE6286CEBD5422B595F2AF /* UMAppLoader */, - 4C815E6ABCAC10E450E2156C5EEB1236 /* UMBarCodeScannerInterface */, - 15E7B22CEC38BA408FEB9EEB7358BF0C /* UMCameraInterface */, - 086FFAFE6E7817323A848D025A831E5F /* UMConstantsInterface */, - F29688D79448210C180DF95E41A2AF8A /* UMCore */, - A8B98527ECC67F41B8F69CE6FFCA004F /* UMFaceDetectorInterface */, - 0F1F268623CB845A49D8DC1224E721B3 /* UMFileSystemInterface */, - 0EE6A6AC15B8BD82051644CF0955BEC4 /* UMFontInterface */, - 73E3485F483F1C6D18E3922E7E999941 /* UMImageLoaderInterface */, - DA0155A9707F7A7502C69CB1B71C31E9 /* UMPermissionsInterface */, - 68698F1A3F479AABB642766229EE31EA /* UMReactNativeAdapter */, - 9F01BA565B63C672890B6711D54BA225 /* UMSensorsInterface */, - CBA0DDEA86B5331F979D7D142AA9848F /* UMTaskManagerInterface */, - 02415FCC4611A85031296AE92CB66F81 /* Yoga */, + B96043C0323920E970B3181930AD672F /* ReactNativeKeyboardInput-dummy.m */, + 963157A18BD178C2AA8EAF185FFC0E9D /* ReactNativeKeyboardInput-prefix.pch */, + BCA67CD67581F093370A347ABC5D2595 /* ReactNativeKeyboardInput.debug.xcconfig */, + 2DF0BCAF251563DCC19C1943043DDE9B /* ReactNativeKeyboardInput.release.xcconfig */, ); - name = "Development Pods"; + name = "Support Files"; + path = "../../ios/Pods/Target Support Files/ReactNativeKeyboardInput"; sourceTree = ""; }; 72F070DC3360CE59390200E880493E96 /* FirebaseCrashlytics */ = { @@ -15497,18 +15339,32 @@ path = FirebaseCrashlytics; sourceTree = ""; }; - 7339638B7AEEF9AAAE93581B618D0BB4 /* BugsnagReactNative */ = { + 730BEEDFECC6D92891758477EF95AC14 /* Support Files */ = { isa = PBXGroup; children = ( - 2F6ED76AB342C2BED3A639A29841D55B /* BugsnagReactNative.h */, - 6E300BF7F49E97B07CECDE4B42623983 /* BugsnagReactNative.m */, - 5CD12DD1F6F55AA3E814CAD4DBADA4FA /* Core */, - 2619A6AD0A3FACCB5F32907EC8215996 /* Pod */, - C6B3F1CB2CE57E47EF2743BD1A56EBB4 /* Support Files */, - DE38A7557C1E27EF1209860DC5428B02 /* vendor */, + 4AAE0836A9A0CFAFFF721D6884637306 /* UMImageLoaderInterface.debug.xcconfig */, + 25E310781B155F8BF728BFE1DB73F3CD /* UMImageLoaderInterface.release.xcconfig */, ); - name = BugsnagReactNative; - path = "../../node_modules/bugsnag-react-native"; + name = "Support Files"; + path = "../../../ios/Pods/Target Support Files/UMImageLoaderInterface"; + sourceTree = ""; + }; + 735FF5BB95D372484E925C0ED5DCC4B1 /* Brushes */ = { + isa = PBXGroup; + children = ( + 8744BF5FC2568E0F2D13883CA5F2DEFE /* ARTBrush.h */, + EA0BF2652807A41E88350A0657875644 /* ARTBrush.m */, + C74544134889899AC6296DEBF2830A4D /* ARTLinearGradient.h */, + 6CCC37EC3A64CED0316F1A0D74935735 /* ARTLinearGradient.m */, + 11BBD474529D9A2A7A5EBE5B6E9249F0 /* ARTPattern.h */, + DB20B30BD0D0DC13596A495BE4DFD2D1 /* ARTPattern.m */, + ACFBEA7E7AC2EDFB06A70EE8713187D7 /* ARTRadialGradient.h */, + 3C684B70EB0AB1F720D07F47EFD1B30A /* ARTRadialGradient.m */, + BB7B5A274FB264D81BAB0F0814C17943 /* ARTSolidColor.h */, + E8E7DC77DB1C8647B33A7CA75FBB324C /* ARTSolidColor.m */, + ); + name = Brushes; + path = ios/Brushes; sourceTree = ""; }; 7379C5E618F712834D08CA2D2A372235 /* FirebaseAnalytics */ = { @@ -15521,28 +15377,26 @@ path = FirebaseAnalytics; sourceTree = ""; }; - 73E3485F483F1C6D18E3922E7E999941 /* UMImageLoaderInterface */ = { + 73ABE3D093B454EFB6102C923FF2B602 /* Support Files */ = { isa = PBXGroup; children = ( - 1DDFF192969E5F39CBE160C9D07FF0A7 /* UMImageLoaderInterface.h */, - EA39D57D4F1CC9E749FF3E4960E8446A /* Pod */, - 9DD3303727E2848889ABD26D094BEB27 /* Support Files */, + DF6F7D50EDE38A3CC3865465EDE7ECE1 /* KeyCommands-dummy.m */, + B29CBE8985375500C55D4F0137AD8172 /* KeyCommands-prefix.pch */, + 10586F4EBB6F94DBCA6929DE382470E4 /* KeyCommands.debug.xcconfig */, + 6DA978F4185B2D4435F565FBB6613130 /* KeyCommands.release.xcconfig */, ); - name = UMImageLoaderInterface; - path = "../../node_modules/unimodules-image-loader-interface/ios"; + name = "Support Files"; + path = "../../ios/Pods/Target Support Files/KeyCommands"; sourceTree = ""; }; - 740011A901CE6286CEBD5422B595F2AF /* UMAppLoader */ = { + 73C3A730295724A78E5C04236488F939 /* Support Files */ = { isa = PBXGroup; children = ( - 69B843B9971F7D79C012E496D89DC4D0 /* UMAppLoaderProvider.h */, - F732528299336083E0EC2A0D9EB1D5BC /* UMAppLoaderProvider.m */, - 702CF7685D8DA608FFFC5196A4606846 /* Interfaces */, - 03D9F122ECEA399083B288E7F8F10AD3 /* Pod */, - 8867F1CE22441F0419DD9EED0844ADC5 /* Support Files */, + 22A3E937F0938445194AE986BDD05F25 /* React-RCTActionSheet.debug.xcconfig */, + 55080F3098DF4E2325515CD506183A7D /* React-RCTActionSheet.release.xcconfig */, ); - name = UMAppLoader; - path = "../../node_modules/unimodules-app-loader/ios"; + name = "Support Files"; + path = "../../../../ios/Pods/Target Support Files/React-RCTActionSheet"; sourceTree = ""; }; 74F82CFA2A7C3CE5AD9C85B71AB9CDE1 /* Frameworks */ = { @@ -15553,53 +15407,6 @@ name = Frameworks; sourceTree = ""; }; - 755308F53B9F113348A5EAEE5F791C50 /* Pod */ = { - isa = PBXGroup; - children = ( - 4B7875F27F127CF8396F2E6645C875E5 /* LICENSE */, - A695A13C0E5F831730D8888E9514AD6B /* ReactNativeKeyboardInput.podspec */, - A7FFCC9D6C2098659C31E890B08D598B /* README.md */, - ); - name = Pod; - sourceTree = ""; - }; - 7557E182950A7CB57CDD1DED5664C8EF /* UMModuleRegistryAdapter */ = { - isa = PBXGroup; - children = ( - 28FCEF2162CFCC3718107CF2DB058AEC /* UMModuleRegistryAdapter.h */, - 239D9B2BD194E5E586A96FBFBDB4E0E6 /* UMModuleRegistryAdapter.m */, - 9389A0A7F1E6F8E7BABB2B8B3338002F /* UMModuleRegistryHolderReactModule.h */, - 1061DD7D7CAC8550321BD6B46CD6CB7F /* UMModuleRegistryHolderReactModule.m */, - D58A394D72B6C488E64A3371BDF02758 /* UMViewManagerAdapterClassesRegistry.h */, - CD99FA70EEE75645133D46B391FA3856 /* UMViewManagerAdapterClassesRegistry.m */, - ); - name = UMModuleRegistryAdapter; - path = UMReactNativeAdapter/UMModuleRegistryAdapter; - sourceTree = ""; - }; - 75B5D3DB25D99C310F2596DDBAE1D595 /* Pod */ = { - isa = PBXGroup; - children = ( - 73AAE5A40DA4CC489A5CADE17D4DBFF0 /* React-RCTAnimation.podspec */, - ); - name = Pod; - sourceTree = ""; - }; - 779D1B1C32EE8AEFEB2D4CF8428F167F /* Default */ = { - isa = PBXGroup; - children = ( - 36A706185249AAC0847D568C5A99C9F6 /* Base */, - 6A3D7D9823C968C937C778C265FA3671 /* CxxBridge */, - 819F5BF032F7AD3DF905F77ED002FB6B /* CxxModule */, - DCBDC2813D02CD43AAD20A4D4BBBB537 /* CxxUtils */, - EB375272F0B356B85856342BB99FF5D6 /* Modules */, - 0B747D2F93D5FC219BDA4941A4DE5D2E /* Profiler */, - 9834DD3FEFDCAD9ACA032885CD5E6E4E /* UIUtils */, - 21EC55C78E7F6C46959A8C3389FE911C /* Views */, - ); - name = Default; - sourceTree = ""; - }; 78965AEC7CFAC80BAA06DF24D74E3323 /* libwebp */ = { isa = PBXGroup; children = ( @@ -15612,23 +15419,6 @@ path = libwebp; sourceTree = ""; }; - 7908FCA2BA37EA5CF7806B789C69518F /* DevSupport */ = { - isa = PBXGroup; - children = ( - 66015B1F276053D0A20A904C31DC766D /* RCTDevLoadingViewProtocol.h */, - FDC8CE850A3917F3DF541580B318EF49 /* RCTDevLoadingViewSetEnabled.h */, - 2188A85B4A309F414FC01E664E37F683 /* RCTDevLoadingViewSetEnabled.m */, - 96FF522E85734C284A19EAC6F444B151 /* RCTInspectorDevServerHelper.h */, - CF91BE09FB7AF4142DCFAB682F69CBEF /* RCTInspectorDevServerHelper.mm */, - A55847904D4A37420994558664F369FD /* RCTPackagerClient.h */, - 061E275A1BE4FF3A74299CB2F8DBC4A7 /* RCTPackagerClient.m */, - 8EEC86B693C1EB3C320557DB3E620D43 /* RCTPackagerConnection.h */, - B4F7DE84791690C51E30C09DE392C126 /* RCTPackagerConnection.mm */, - ); - name = DevSupport; - path = React/DevSupport; - sourceTree = ""; - }; 7931A39B705A95BB7866F27ABB98A3D6 /* CocoaLibEvent */ = { isa = PBXGroup; children = ( @@ -15687,135 +15477,76 @@ path = "Target Support Files/Pods-RocketChatRN"; sourceTree = ""; }; - 7A2A83545F2FCF2AB9ED9BB7468E232A /* Pod */ = { + 7AA22DC47130D659B6F9F97BB167BAE5 /* Services */ = { isa = PBXGroup; children = ( - 79F8ED89BD94F8EE6B1B828CD57F6CA8 /* LICENSE */, - 7F59A20232A82C3A1F2221D19BDCB4B9 /* react-native-appearance.podspec */, - 8807F8279AA9D8328C725CC8315E6FA9 /* README.md */, + 0E17EFBA0C00CC4DF880CC3D1D3E8219 /* UMReactFontManager.h */, + 89E6B70AC13F00CA4BB9593DAD58EC8D /* UMReactFontManager.m */, + B9D6A55BB57A1F525929578A88F9CF8E /* UMReactLogHandler.h */, + 0CF1E70BD129B3642E9FD40999CC5999 /* UMReactLogHandler.m */, + 32744568A11593303C3B498CB700AD54 /* UMReactNativeAdapter.h */, + DB1C7D642895B4ADFC79F4C672E494DC /* UMReactNativeAdapter.m */, + 2E11A16FC5E4BF78B586932EF0D7DF75 /* UMReactNativeEventEmitter.h */, + 70ED4C090E9C8B63638B22398994C693 /* UMReactNativeEventEmitter.m */, + ); + name = Services; + path = UMReactNativeAdapter/Services; + sourceTree = ""; + }; + 7B0E0E3B84357D342EA98E4859DC100B /* RNReanimated */ = { + isa = PBXGroup; + children = ( + 73607BED56C71E8FAA6D55748604FE13 /* REAModule.h */, + 743F35FB5F73B465B9071D27084762F4 /* REAModule.m */, + 9089C34DED7890F744A034D53AC63CCD /* REANodesManager.h */, + EC471A44E5989AB5888EDA3D721254CA /* REANodesManager.m */, + BCD6F7F5ED1C0F008588E29072442360 /* REAUtils.h */, + ACBDA655418C8CA1DBDE87DB7F81E940 /* Nodes */, + 5F3ABBF30CD1FDBBB0C110E125EEE6A7 /* Pod */, + C102979F9508E62499B0F4497877DC6F /* Support Files */, + 80E57D43FE74CEC00E6B935079BE0B9F /* Transitioning */, + ); + name = RNReanimated; + path = "../../node_modules/react-native-reanimated"; + sourceTree = ""; + }; + 7BCA45C5101EA30E993A6F2A2D70DF4D /* Pod */ = { + isa = PBXGroup; + children = ( + 492C85600670CE9FD205E89A0C4E01F9 /* UMBarCodeScannerInterface.podspec */, ); name = Pod; sourceTree = ""; }; - 7AADAA82E7426993A74336EFA774F34D /* EXAppleAuthentication */ = { + 7C51846A8CBAFF4FCEB09886DAA4ABD7 /* Pod */ = { isa = PBXGroup; children = ( - FA7C788A5A6CD1D7002EDCDC20F9879D /* EXAppleAuthentication.h */, - 24B943E24D1352DDB5ADA65A72D201B9 /* EXAppleAuthentication.m */, - 2D8130D2885D398FABB766D2D6CC2C4D /* EXAppleAuthenticationButton.h */, - EDC8F3A9C104EA2BC38D5A3BEFB5AF3C /* EXAppleAuthenticationButton.m */, - 0D66B5ED4F0CC77DB4C0D910890326CB /* EXAppleAuthenticationButtonViewManagers.m */, - 8256EFD63BE8A803AAC60B603C88D783 /* EXAppleAuthenticationMappings.h */, - 6714A30477A6F584F593D6ED6436AEBF /* EXAppleAuthenticationMappings.m */, - F3CA9C25F6C5EEB7BBC71244E41A0179 /* EXAppleAuthenticationRequest.h */, - EE84B2B7453419AD8490FD5567A0C77B /* EXAppleAuthenticationRequest.m */, - F9D236E165E1EDACD5276D08F324B36E /* Pod */, - 30C150141518662107F5E0903C031AC8 /* Support Files */, - ); - name = EXAppleAuthentication; - path = "../../node_modules/expo-apple-authentication/ios"; - sourceTree = ""; - }; - 7AB19570D7E63EBE5AB8517EBF3ECE0A /* Pod */ = { - isa = PBXGroup; - children = ( - 0A6004443115709FE18B9DDF74161C07 /* React-Core.podspec */, + 27D780ADCF667BA69C62A0E9E90982CF /* LICENSE */, + CD4F61FEDB2C7848067C7FA898CB6472 /* README.md */, + 9F759A5DE7DB4BB9A632215E541A1A8E /* RNFBCrashlytics.podspec */, ); name = Pod; sourceTree = ""; }; - 7AEB97E7662E5C9DB5488345FDBEF150 /* Support Files */ = { + 7C998C090FAE720F600AAA2867919DA4 /* Support Files */ = { isa = PBXGroup; children = ( - 07E6C850E620161FEB0E005308D7E900 /* UMPermissionsInterface-dummy.m */, - A5190ACF6DCC4A3587DB78E561CE8A86 /* UMPermissionsInterface-prefix.pch */, - 959A86D7CA7F0B8E5DEEE309EE719700 /* UMPermissionsInterface.debug.xcconfig */, - 959694E837863732CC9FDA8D7E47D5E8 /* UMPermissionsInterface.release.xcconfig */, + 70C08CCDA58ED0EB8400ECA093ED6D20 /* ResourceBundle-QBImagePicker-RNImageCropPicker-Info.plist */, + 1E8F60E9F04E72F87227CA2A8BEED97C /* RNImageCropPicker-dummy.m */, + 0D8009D6AF05952E39439DA147AC32B1 /* RNImageCropPicker-prefix.pch */, + E14E0BC1417E99F96262AFDEAC811761 /* RNImageCropPicker.debug.xcconfig */, + DEEAEA86A5264367C48194D42559ED39 /* RNImageCropPicker.release.xcconfig */, ); name = "Support Files"; - path = "../../../ios/Pods/Target Support Files/UMPermissionsInterface"; + path = "../../ios/Pods/Target Support Files/RNImageCropPicker"; sourceTree = ""; }; - 7B7A18D737CBA6070367193E0EBA60C1 /* Support Files */ = { + 7ECF02BFB798177CFA2C5A6570A0D7D2 /* Pod */ = { isa = PBXGroup; children = ( - 47135A5C5BE770C65EB3FEF779F3097D /* UMConstantsInterface.debug.xcconfig */, - D26288AC28A3C2083227530664149A61 /* UMConstantsInterface.release.xcconfig */, + FAA5397CB7B0A8217558A3B79B2C550B /* Yoga.podspec */, ); - name = "Support Files"; - path = "../../../ios/Pods/Target Support Files/UMConstantsInterface"; - sourceTree = ""; - }; - 7BA21EE8A409F080FA366712FEA72879 /* RNCMaskedView */ = { - isa = PBXGroup; - children = ( - A2FD9C90292706175AF313CF69B11680 /* RNCMaskedView.h */, - 76877B6396E317E82104E62325077F2F /* RNCMaskedView.m */, - EBE9EE3C372D7609E687C433CF4AE1A8 /* RNCMaskedViewManager.h */, - 65FB729F1A489137605E6745BB996314 /* RNCMaskedViewManager.m */, - 0639E85480CFDC635BFECB55C3010BA0 /* Pod */, - D7D299527FC6E48E0616004EC49AB790 /* Support Files */, - ); - name = RNCMaskedView; - path = "../../node_modules/@react-native-community/masked-view"; - sourceTree = ""; - }; - 7E36263F7E04F9867FF8C9CC2EF9B8F8 /* Singleline */ = { - isa = PBXGroup; - children = ( - FF5849FF5BEEC0D287164A9684F89B35 /* RCTSinglelineTextInputView.h */, - 7F9744A33CB3738D77C7575BF4C42ABD /* RCTSinglelineTextInputViewManager.h */, - 13DE7CDF0865FCA5347076BF7571D525 /* RCTUITextField.h */, - ); - name = Singleline; - path = Singleline; - sourceTree = ""; - }; - 7E785726C5B8AF523BFB6D7C2B4BD8E2 /* Support Files */ = { - isa = PBXGroup; - children = ( - 3D05B4ABDF0E6711F632BA6226F45A95 /* UMTaskManagerInterface.debug.xcconfig */, - 534CFD59426C3B661C2A805A51FE615E /* UMTaskManagerInterface.release.xcconfig */, - ); - name = "Support Files"; - path = "../../../ios/Pods/Target Support Files/UMTaskManagerInterface"; - sourceTree = ""; - }; - 7E7F90CADCBC425302A36BC37847084E /* SafeAreaView */ = { - isa = PBXGroup; - children = ( - C3127987CE8EBADE3F9B87522B43E92E /* RCTSafeAreaShadowView.h */, - 5899B0AD4E23B58ED31078117CB6934B /* RCTSafeAreaShadowView.m */, - FC6DEDC1F8CEF9F44D32EFABB03691ED /* RCTSafeAreaView.h */, - D5B2A78827E3C980402498913BB5F416 /* RCTSafeAreaView.m */, - 3FA5349F4BBD0D79B49E22361071C670 /* RCTSafeAreaViewLocalData.h */, - D8EA47813EDC15DDA8E1327359C5BDCA /* RCTSafeAreaViewLocalData.m */, - 11AFE86C5FDD844462AE19C0333F1187 /* RCTSafeAreaViewManager.h */, - A27A7C6DA2747997F4AC6A88E87F5BEA /* RCTSafeAreaViewManager.m */, - ); - name = SafeAreaView; - path = SafeAreaView; - sourceTree = ""; - }; - 7EFBFCE9A24CBD2BACDEAC662C42F6DE /* Nodes */ = { - isa = PBXGroup; - children = ( - AB7D5065667112B69A7B32D5189ED029 /* RCTAdditionAnimatedNode.h */, - 9954C32DE398F63ED844FD968BB12B07 /* RCTAnimatedNode.h */, - FC1497F51ED6BD598D5BE9AE24266637 /* RCTDiffClampAnimatedNode.h */, - 4102BD2284BF4B0EB444DFA425BD734F /* RCTDivisionAnimatedNode.h */, - A08A165C896418C3816BAC1386022A3D /* RCTInterpolationAnimatedNode.h */, - 3B15E1593096E9804FCEE5EF743A465A /* RCTModuloAnimatedNode.h */, - 0DBC7C0BA6564C2A676E375BAA7B3464 /* RCTMultiplicationAnimatedNode.h */, - 613CB7E41ABB9059B0BE45D7287F19F0 /* RCTPropsAnimatedNode.h */, - 43D430E6596600DC08C865EE93659233 /* RCTStyleAnimatedNode.h */, - 8DBF8053988363F40F01EF45A5F20C51 /* RCTSubtractionAnimatedNode.h */, - CCE82C3857C8B7741E52A38455E8F3D9 /* RCTTrackingAnimatedNode.h */, - F5CD8826F69E4326D2A1828095C86A59 /* RCTTransformAnimatedNode.h */, - DA7A33C40D20F6BBF969F198E10F2AE4 /* RCTValueAnimatedNode.h */, - ); - name = Nodes; - path = Libraries/NativeAnimation/Nodes; + name = Pod; sourceTree = ""; }; 7F0D6CCE718597B8302CF93DD952FD8E /* demux */ = { @@ -15839,282 +15570,275 @@ path = "../Target Support Files/GoogleDataTransportCCTSupport"; sourceTree = ""; }; - 7F62E3271D235EE9FE7B658D6D7C80E8 /* EXImageLoader */ = { + 80B6FA22862E245BD10AD1BADCA1C318 /* Modules */ = { isa = PBXGroup; children = ( - E196E89A6F2C58097F0281E21C226143 /* EXImageLoader.h */, - 9FBB73BC0A70066DE7B0D55ED7C7E6E2 /* EXImageLoader.m */, - 0DD99175C117B9F22A4594D4F020BE73 /* Pod */, - B136CC6E2F397AB8AF475C4F14D06A43 /* Support Files */, + 3F7EEAFD16171C39C8A7624C6D953D9D /* RCTEventEmitter.h */, + AC588D9B293EC8CC5098197C6EBA21AF /* RCTEventEmitter.m */, + 5876CFCE328DC4C4BBF3769AD582D59C /* RCTI18nUtil.h */, + 4D53EB47529C35BFAD253421073C5C34 /* RCTI18nUtil.m */, + 9841D0FF9A7C6DD086FD60A318148839 /* RCTLayoutAnimation.h */, + D5D5255D1B7C92216193346313BCD7A1 /* RCTLayoutAnimation.m */, + F27EAEA907837037A9AFC6DB3F6A3960 /* RCTLayoutAnimationGroup.h */, + 2D63FE46107F16946A2BEA13BA0868EE /* RCTLayoutAnimationGroup.m */, + BBE264BBFCC27844270969A8D76274D6 /* RCTRedBoxExtraDataViewController.h */, + 7A0F675813E7A139C53C107616014E4E /* RCTRedBoxExtraDataViewController.m */, + 9D531ECD3EF97077C1F842731A53A609 /* RCTSurfacePresenterStub.h */, + C6BF0EF5DC01D06AC957994EC8912825 /* RCTSurfacePresenterStub.m */, + 677B492ED82EA3A95B74597A9BEFD09C /* RCTUIManager.h */, + E31C7E7BE8DE6DB1A7A8A9D7B7E956F6 /* RCTUIManager.m */, + 960B4102D57AFFD168882E44F6C6A10F /* RCTUIManagerObserverCoordinator.h */, + 940CAEA0D4D0F3B3EDA2ADB528E0CFD6 /* RCTUIManagerObserverCoordinator.mm */, + 9E33E8382AA04A7442BA30501C24922A /* RCTUIManagerUtils.h */, + F88FBC0B1C85206F107D8D5FF9ED34C8 /* RCTUIManagerUtils.m */, ); - name = EXImageLoader; - path = "../../node_modules/expo-image-loader/ios"; + name = Modules; + path = React/Modules; sourceTree = ""; }; - 80781ED6A52467FA288B316E0E11CC06 /* Support Files */ = { + 80E57D43FE74CEC00E6B935079BE0B9F /* Transitioning */ = { isa = PBXGroup; children = ( - 872E56EE2C06838095DEE0107BAE3A23 /* UMFaceDetectorInterface.debug.xcconfig */, - CCB8B95FEA43BB698CB842B468123F6C /* UMFaceDetectorInterface.release.xcconfig */, + 9A8C3BE4125E69A396D54F11F1B7D3AA /* RCTConvert+REATransition.h */, + 66554C7012880FC5D738096E4A6AA39C /* RCTConvert+REATransition.m */, + 7784341297FF0643533725E4F00BE6E8 /* REAAllTransitions.h */, + DB0288B59401C2B79E8784E8508EBD53 /* REAAllTransitions.m */, + E299CDD0455B02CE697438DC4E31884B /* REATransition.h */, + 25E101047A1BCAA18A100456D9C1C2C3 /* REATransition.m */, + EA49353E51A7C1DC5E3520B1CDA24184 /* REATransitionAnimation.h */, + F0749510A7A80D9C4232E235BBE1BEB6 /* REATransitionAnimation.m */, + 1BAAEFED317DFDF0BEC292644471A471 /* REATransitionManager.h */, + F6B30153BFAEAFB9FAFBEB193DD2597F /* REATransitionManager.m */, + F28715E157ECC0469457139AFE6C51E1 /* REATransitionValues.h */, + 418C567F66532F9B89662F5044CF75A0 /* REATransitionValues.m */, + ); + name = Transitioning; + path = ios/Transitioning; + sourceTree = ""; + }; + 816F6E5A40680238715271EF7EBDE1AB /* Support Files */ = { + isa = PBXGroup; + children = ( + 13760B5A97CDEC3F96A6319E3B671158 /* EXPermissions-dummy.m */, + EC07DBAD7C7C4BAF90ABBB8D3DCAB7A7 /* EXPermissions-prefix.pch */, + 8B80FB35984A1E5FC9587D9925328A5B /* EXPermissions.debug.xcconfig */, + 733A59591112E23583DE4D777578C912 /* EXPermissions.release.xcconfig */, ); name = "Support Files"; - path = "../../../ios/Pods/Target Support Files/UMFaceDetectorInterface"; + path = "../../../ios/Pods/Target Support Files/EXPermissions"; sourceTree = ""; }; - 8148DF8F2774B76439E5974C0FF1622B /* Support Files */ = { + 8189B98DBB1D97F866DB6F924795A271 /* Support Files */ = { isa = PBXGroup; children = ( - 9FBEA02E5196810C727737B18F6B1714 /* EXConstants-dummy.m */, - BFD5E52AEA94E4656958C33DC62DF317 /* EXConstants-prefix.pch */, - A6D49DD54896F660CD6543B59ADB425C /* EXConstants.debug.xcconfig */, - 4E076C44C413E47F342AC4EE67E397E2 /* EXConstants.release.xcconfig */, + CA0FA712394D195459EE2ED9634212ED /* react-native-background-timer-dummy.m */, + 17AB22E4FF65EEC008990CA61A55310A /* react-native-background-timer-prefix.pch */, + 71F30927FE87C64AC3B5478EA9F684C1 /* react-native-background-timer.debug.xcconfig */, + 5B6F4DD3391EEC4009CBB847FED6DDC8 /* react-native-background-timer.release.xcconfig */, ); name = "Support Files"; - path = "../../../ios/Pods/Target Support Files/EXConstants"; + path = "../../ios/Pods/Target Support Files/react-native-background-timer"; sourceTree = ""; }; - 819F5BF032F7AD3DF905F77ED002FB6B /* CxxModule */ = { + 81C970C3770B0CB83433426B225E4624 /* Support Files */ = { isa = PBXGroup; children = ( - 14F2DBCCF63939F5750FC51309DC6CCC /* DispatchMessageQueueThread.h */, - 7735EA531CE7D0CE05B9DCC8B9D002AC /* RCTCxxMethod.h */, - 49C05D2BFB60A03B270CB32F22D85CAD /* RCTCxxMethod.mm */, - A43CD11C23A1BA645E7ADC434E91A7CE /* RCTCxxModule.h */, - 8ED6C5125E97E6C0BE9830041766E1FF /* RCTCxxModule.mm */, - 286281A976AB56971B58CBCAD49A3A0B /* RCTCxxUtils.h */, - 2FE823472FBF17C51C7D186752692E69 /* RCTCxxUtils.mm */, - 9CD365776BC1EB2E9332DED86771899D /* RCTNativeModule.h */, - B902D2AC66BDA9135C720123F2CBC7C4 /* RCTNativeModule.mm */, - ); - name = CxxModule; - path = React/CxxModule; - sourceTree = ""; - }; - 81A0A887501720585A6ED4B8337DA728 /* UMNativeModulesProxy */ = { - isa = PBXGroup; - children = ( - 17CA2A15F132AD8F57DDE3E9D6AF1E11 /* UMNativeModulesProxy.h */, - 62AD1E3F452D600843E69C770EB37596 /* UMNativeModulesProxy.m */, - ); - name = UMNativeModulesProxy; - path = UMReactNativeAdapter/UMNativeModulesProxy; - sourceTree = ""; - }; - 820D723FBDD9BD36BFF1B95E38EA8864 /* Support Files */ = { - isa = PBXGroup; - children = ( - 69B0AD9383B016DD49BC331DF8241707 /* React-RCTVibration-dummy.m */, - 263274F1FC8F196D9F7C9F2C12F26D52 /* React-RCTVibration-prefix.pch */, - 010F1417BBCD68412849A986F5CCA6AB /* React-RCTVibration.debug.xcconfig */, - 9BCA5CC96CCBEDF28E76366D11D0DCD6 /* React-RCTVibration.release.xcconfig */, + EEB609A23C4E52C1AF27256001C9FCC1 /* ReactCommon-dummy.m */, + 7FCF26D2C9C17A60B0A473D4D36DFD98 /* ReactCommon-prefix.pch */, + B2F04D142CC630BFC7B8B890CAB4F0E0 /* ReactCommon.debug.xcconfig */, + AFA97D49ECF479AEBEE10680EE31A51B /* ReactCommon.release.xcconfig */, ); name = "Support Files"; - path = "../../../../ios/Pods/Target Support Files/React-RCTVibration"; + path = "../../../ios/Pods/Target Support Files/ReactCommon"; sourceTree = ""; }; - 82650B58A2B1A3F501FACF130C6CC508 /* Pod */ = { + 828703F5D09E4D8E7F35A4AEE3ECD7AC /* Pod */ = { isa = PBXGroup; children = ( - 81477035CACCD5F63C95CD0D19747EB4 /* LICENSE */, - 8FA1CAFA4C9B4AD3FE1691EE96767F7B /* README.md */, - 0DD269157CA10F350C3350C38D4D7F15 /* RNGestureHandler.podspec */, + 4299A8736AD931DFC768E57E6425F72D /* React-RCTNetwork.podspec */, ); name = Pod; sourceTree = ""; }; - 82EB486A080868A0E58CE05C23E34B55 /* Support Files */ = { + 828C8F59EC49B7B76306B792135144E4 /* RCTImageHeaders */ = { isa = PBXGroup; children = ( - 39A0AD781D6BD52414608D51D30D7885 /* UMBarCodeScannerInterface.debug.xcconfig */, - 45B4F243A295CB5198BCAC4555E428EB /* UMBarCodeScannerInterface.release.xcconfig */, + 94488B1BA3670A4CA9A874AF44BD6D20 /* RCTAnimatedImage.h */, + C6F1ECB36B10C29F123B5F00F2EE35C5 /* RCTDisplayWeakRefreshable.h */, + 3DFE153F31FEFF2CCE0DD9BDB0668990 /* RCTGIFImageDecoder.h */, + 1FA083C52BE41BD164D10B6C4FCA9721 /* RCTImageBlurUtils.h */, + 8C2248AC90042C8E46ABB7FE87BA8903 /* RCTImageCache.h */, + 46CE1E433709DA258BD09643EE4944CC /* RCTImageDataDecoder.h */, + 9F00C6A6BA9CCFAEF0F09F948E183213 /* RCTImageEditingManager.h */, + AD426C18D4F5103D4315CD43CB77DE23 /* RCTImageLoader.h */, + 2F97963337E937189EA9C8BF0BD95C63 /* RCTImageLoaderProtocol.h */, + B63DD46CA1EA6FE4A4C7B2661B0BCB9F /* RCTImageLoaderWithAttributionProtocol.h */, + DA5816048BBDA2DD04ECAD0D3E019DB0 /* RCTImagePlugins.h */, + 6C7D96869DD87E4DB3B7376688EC49F4 /* RCTImageShadowView.h */, + D308AC56AA2DCD919EC44E69321229A5 /* RCTImageStoreManager.h */, + 74D9807470785F5581102ABE6F3805E8 /* RCTImageURLLoader.h */, + 32EBE25597E3A830306E0B8C13C95089 /* RCTImageURLLoaderWithAttribution.h */, + 4A7C72C531674FE141DC42F4307DC998 /* RCTImageUtils.h */, + 66C86DF90F7DB5286286B1D63407FF5E /* RCTImageView.h */, + 5A5E19C7F9E618E9F0D4AF7EE50F9FAE /* RCTImageViewManager.h */, + B27A81E987ED9E9F1081B1945A115B47 /* RCTLocalAssetImageLoader.h */, + 738D5556685EFE790866EDEF90749B4A /* RCTResizeMode.h */, + 136AD780318D71CEC1CAD01049A43192 /* RCTUIImageViewAnimated.h */, + ); + name = RCTImageHeaders; + sourceTree = ""; + }; + 82B434D114C86FE0B5365D2E44405376 /* KSCrash */ = { + isa = PBXGroup; + children = ( + 12FA6D3933375130F565A95EB5237019 /* Source */, + ); + name = KSCrash; + path = KSCrash; + sourceTree = ""; + }; + 8423F59ED01A3F93EBADD8AC0F4B9E79 /* ViewManagers */ = { + isa = PBXGroup; + children = ( + 91C94719B3D638CB8C0670CBA747F353 /* ARTGroupManager.h */, + AC6B38274AAF8DA585D7959301C33AE0 /* ARTGroupManager.m */, + 8B69761C90606CFF144962B2AC895EAD /* ARTNodeManager.h */, + 5970D65E17317AF469A8541B7F146C0A /* ARTNodeManager.m */, + 5A383BA2FD009C3FD7909E354E65AE36 /* ARTRenderableManager.h */, + AEF1581357A751A307769D053EF7CF1C /* ARTRenderableManager.m */, + 1919D4695751A83FBE052BBA9998B780 /* ARTShapeManager.h */, + ECFA9C65A82E450DB07974BB0CEA789D /* ARTShapeManager.m */, + 784B1BD0945E4C0B9FA4CC2342BAB146 /* ARTSurfaceViewManager.h */, + 4FA90284218FAB4C910CF0CD7D02CEE8 /* ARTSurfaceViewManager.m */, + FDC9172EDAE66EF077AF11ECBFC39F8B /* ARTTextManager.h */, + 1A6DB46779E29DB2464654BA3618F2D8 /* ARTTextManager.m */, + ); + name = ViewManagers; + path = ios/ViewManagers; + sourceTree = ""; + }; + 852B0B90094EE62EA9873F8DCB9F899A /* ReactNativeKeyboardInput */ = { + isa = PBXGroup; + children = ( + 10D5038E582E771891F3D77D590C277C /* LNInterpolation */, + 2603E021EF162D13D9C95E21403D5671 /* Pod */, + 30BE85D7CCBF65E983F5C7063D8CD484 /* RCTCustomInputController */, + 72CE3200DE3EC19D2450997944F13EC0 /* Support Files */, + ); + name = ReactNativeKeyboardInput; + path = "../../node_modules/react-native-keyboard-input"; + sourceTree = ""; + }; + 8547937C26A75EF4A8050C871F148FF0 /* Support Files */ = { + isa = PBXGroup; + children = ( + 4BA15B734C612FDB44FE65B69238926A /* React-RCTImage-dummy.m */, + 0E43DDDE5E19719542B8E4E9D445DEA6 /* React-RCTImage-prefix.pch */, + C59CDE27968CFF70651020B9468F8736 /* React-RCTImage.debug.xcconfig */, + 98FBFC4013373EA7B9B7B048270F2A84 /* React-RCTImage.release.xcconfig */, ); name = "Support Files"; - path = "../../../ios/Pods/Target Support Files/UMBarCodeScannerInterface"; + path = "../../../../ios/Pods/Target Support Files/React-RCTImage"; sourceTree = ""; }; - 82F805433D39072A7F43BACF9CB9AADA /* Support Files */ = { + 85CD52A55DF445A2AF69C337C82FB48A /* react-native-document-picker */ = { isa = PBXGroup; children = ( - 6BC687D3736C45E150AB1A6D24B3E57B /* EXVideoThumbnails-dummy.m */, - 0810F33036DAB18C702F91D1600E5DB6 /* EXVideoThumbnails-prefix.pch */, - 3B71CD884560072342CD67020641D666 /* EXVideoThumbnails.debug.xcconfig */, - E28511542FA77E96F0D9B2321580BAA4 /* EXVideoThumbnails.release.xcconfig */, + 68CCE3BE3F6A6A2D44D6B6CE441F9E64 /* RNDocumentPicker.h */, + 00530FD95701E1318366E6EEC13905C8 /* RNDocumentPicker.m */, + EB01C43F56CDB6CEF320250CD9503938 /* Pod */, + 0A3FC45B373C19F7DB9D292B8C5183F4 /* Support Files */, ); - name = "Support Files"; - path = "../../../ios/Pods/Target Support Files/EXVideoThumbnails"; + name = "react-native-document-picker"; + path = "../../node_modules/react-native-document-picker"; sourceTree = ""; }; - 831C3F43486ABC5E935971A6CFF3ED91 /* Reporting */ = { + 87D06D33185AE422520A2EE1AC0F17AB /* KeyCommands */ = { isa = PBXGroup; children = ( - 3DF0792DBFDA3DE264CAB836696B5E3C /* Filters */, - ); - name = Reporting; - path = Reporting; - sourceTree = ""; - }; - 86289DA29472A446FE7B07E68E144B26 /* UMViewManagerAdapter */ = { - isa = PBXGroup; - children = ( - 9D1786199ACA405C5B41D1408981881F /* UMViewManagerAdapter.h */, - 972D4F3CE9FD350F5376D01A66A01447 /* UMViewManagerAdapter.m */, - ); - name = UMViewManagerAdapter; - path = UMReactNativeAdapter/UMViewManagerAdapter; - sourceTree = ""; - }; - 8650E049AE9AEABDF45E3A8FDA2772C4 /* KeyCommands */ = { - isa = PBXGroup; - children = ( - 6312A8D11BABD3D9A25AE1BA901AAC3E /* RCTKeyCommandConstants.h */, - 4B59F134317903C5ECDD3566B6791F82 /* RCTKeyCommandConstants.m */, - 9D7C3470532BBEEA08DDD0E597BF0C2F /* RCTKeyCommandsManager.h */, - 5DDE8D8C46A684C9E2E623560792AE43 /* RCTKeyCommandsManager.m */, - F0FAFB50C1D05826529E858FF0FCFA86 /* Pod */, - D73BBA1C2866858577B8A74420A9B8E4 /* Support Files */, + C4E8BE743FAB019787F786D6B56B7975 /* RCTKeyCommandConstants.h */, + 637D8CCFCD2E29E71F03DF8744F47CAB /* RCTKeyCommandConstants.m */, + 02B0AFD0AFE2860DBA2E4EE0CA8F9940 /* RCTKeyCommandsManager.h */, + DC2C731D4EE491B39B1F3F672873DB23 /* RCTKeyCommandsManager.m */, + 65834CD4BC89F22BE7E40C2E42625176 /* Pod */, + 73ABE3D093B454EFB6102C923FF2B602 /* Support Files */, ); name = KeyCommands; path = "../../node_modules/react-native-keycommands"; sourceTree = ""; }; - 86A09457C4E3C8214C2E108E5717EAFD /* Tools */ = { + 87EBCD30608D129A47EEEB25151CF40E /* core */ = { isa = PBXGroup; children = ( - 5F9FE902085D3594784DA653548B5430 /* BSG_KSArchSpecific.h */, - 015E65E1EDEC6865B8F3E2EBDE6234D2 /* BSG_KSBacktrace.c */, - AC2F04C929909685699118877A84D9BA /* BSG_KSBacktrace.h */, - BEF7FA215BDEA0ECA02A1A63E0B57A45 /* BSG_KSBacktrace_Private.h */, - EB8717F94E6D6B3A49987B7C3A70D110 /* BSG_KSCrashCallCompletion.h */, - 47C4BF0B542880B1B7650996662A4FD5 /* BSG_KSCrashCallCompletion.m */, - 0F35EB0C64A8531ECD14981713A8C2D1 /* BSG_KSDynamicLinker.c */, - 0DE57190FDC2F44ED1F1772CD8BBFC8A /* BSG_KSDynamicLinker.h */, - 0318045AAA150FBF6B3FFF4706ABF521 /* BSG_KSFileUtils.c */, - 209B08A2B00CCB936D9927233C013307 /* BSG_KSFileUtils.h */, - F1CFD83224C363E1273A30D0E48000A7 /* BSG_KSJSONCodec.c */, - F111FB6EECFBAFD20B718467C3B4DA26 /* BSG_KSJSONCodec.h */, - 7B150812372A7D3BC35960689937BCF6 /* BSG_KSJSONCodecObjC.h */, - AAAB492F87854663F71527702CB6F7D4 /* BSG_KSJSONCodecObjC.m */, - D83DD38AB207308D8139FAD7D1B222BA /* BSG_KSLogger.h */, - 6FA0E8FB2B6FDAB51FDBCCA8290F854D /* BSG_KSLogger.m */, - EB0F2DE671E8965C79C9DB011693D95A /* BSG_KSMach.c */, - 90FF7CA990EA226AB6851046F9699FD9 /* BSG_KSMach.h */, - 2691AC68E52992AFB4E33BA65C93DE50 /* BSG_KSMach_Arm.c */, - 7D75ED698F98D3A6AEE44A0BC15F9F39 /* BSG_KSMach_Arm64.c */, - D3FC713448A626AEA1B4492E6EFAEA45 /* BSG_KSMach_x86_32.c */, - 9095A8339EAF826F8FB8A8E2D6AAA2D5 /* BSG_KSMach_x86_64.c */, - C335FBD0DDF363EA880EA2A4EF3B2B98 /* BSG_KSMachApple.h */, - 60244CC06F7882BD32F9C428E2A7F362 /* BSG_KSMachHeaders.h */, - 09B2AC3210802A7AE1D972D3F3C233A3 /* BSG_KSMachHeaders.m */, - FF50F9DDA7E430DBF3FBA1FC7435A753 /* BSG_KSObjC.c */, - C9F5CB0B8E3B1E1DA9C367F33FC0E935 /* BSG_KSObjC.h */, - 8280017D56CEAE4807214764EC124199 /* BSG_KSObjCApple.h */, - FB2D495D2E4C57115567F408F1DD4A0E /* BSG_KSSignalInfo.c */, - 45F3245C26DABB977EA20BA2530315D8 /* BSG_KSSignalInfo.h */, - 0D3C22A6CCD6685521812D4A6F5434B7 /* BSG_KSSingleton.h */, - 79E279554A094F65CDDAB71F3B065F51 /* BSG_KSString.c */, - 87CC06497D4C74FD903F4554543BA3AF /* BSG_KSString.h */, - 0C60821A40C373B9D45D5A2378D78185 /* BSG_KSSysCtl.c */, - B857BE38CB800BD45374F28A59CDA78C /* BSG_KSSysCtl.h */, - 903475102B1C946FCDB837495FCD97FC /* BSG_RFC3339DateTool.h */, - 31DEE730FE333EEBD7688AF684C1DB65 /* BSG_RFC3339DateTool.m */, - B60C0FAA9408E4E1B7C6DC275C52712B /* NSError+BSG_SimpleConstructor.h */, - D676B1A580C787065B0D1DE458EABF5C /* NSError+BSG_SimpleConstructor.m */, + 868A5681C793ECF276B15D5778728D1A /* LongLivedObject.cpp */, + 735FF3BA937B89B448F48F56810653A3 /* LongLivedObject.h */, + 00892DBCDA5DECE33799697A8BDCEAB7 /* TurboCxxModule.cpp */, + 8BC9D5666DBDE5812E982739274F6669 /* TurboCxxModule.h */, + 01416F5AC4744A28E93F13269C8866B7 /* TurboModule.cpp */, + A38CBB2B7FE0514CA5F8D26657956C10 /* TurboModule.h */, + E975B5F40C52E1FE8A98636EF12D35B5 /* TurboModuleBinding.cpp */, + C22650DDC3DD4785AC64C1A1E5AEAC6B /* TurboModuleBinding.h */, + 5B5ED57220183E7BAC4E525CC7ED74A8 /* TurboModuleUtils.cpp */, + 5E885B96FBC057287EE2A714130907C5 /* TurboModuleUtils.h */, + 25D928370219BC605834699319A8A8B5 /* platform */, ); - name = Tools; - path = Tools; + name = core; sourceTree = ""; }; - 86A332B4C12AD8F3923A6894535E7C7A /* UMModuleRegistryProvider */ = { + 87ED5356CB8561E2EA481C1679627D22 /* RNBootSplash */ = { isa = PBXGroup; children = ( - 61BC2AAF56B32AC91A977CEB42F66695 /* UMModuleRegistryProvider.h */, - 54E0E251A765F0B9EDE3FF7BF0185594 /* UMModuleRegistryProvider.m */, + 51F507B8FC55018207BC94B50E557268 /* RNBootSplash.h */, + CD8CD7396DE846D7BBFCC79358376367 /* RNBootSplash.m */, + 04C37E6B77ABCC3E30E8E8DCD9E02F9E /* Pod */, + 0551DC75F2B766DDB5C311E543CDC040 /* Support Files */, ); - name = UMModuleRegistryProvider; - path = UMCore/UMModuleRegistryProvider; + name = RNBootSplash; + path = "../../node_modules/react-native-bootsplash"; sourceTree = ""; }; - 86B1D2B7F6354DE7E902FE2FC20B7B5A /* platform */ = { + 8804BF6963913E67CFFF8842A238CED0 /* Support Files */ = { isa = PBXGroup; children = ( - F5AC1BF6EBB1BC08684BA28CE1424A8A /* ios */, - ); - name = platform; - path = turbomodule/core/platform; - sourceTree = ""; - }; - 87B44C786802D54011001CF3593AA227 /* React-RCTNetwork */ = { - isa = PBXGroup; - children = ( - 81CBFBBE6DED4EA389740EB8A4833712 /* RCTDataRequestHandler.mm */, - 4A5AC3525D69BAF7B7174D3D76953776 /* RCTFileRequestHandler.mm */, - 2470AB757FBFC958CA8AFA7B924E6A36 /* RCTHTTPRequestHandler.mm */, - 51C591DF70D6A2D0ECE3DC79836853EC /* RCTNetworking.mm */, - 4619B5C4361835F94670FBF257AD04A2 /* RCTNetworkPlugins.mm */, - CAAE6CD9C0F75AFE449CEB2459346207 /* RCTNetworkTask.mm */, - 4CF351501AC02B15B49C5526787A38A9 /* Pod */, - B721D6049C917C7D59E061A5C064ED5A /* Support Files */, - ); - name = "React-RCTNetwork"; - path = "../../node_modules/react-native/Libraries/Network"; - sourceTree = ""; - }; - 880DD25C8EB60CF5AFF741B06575E376 /* RCTLinkingHeaders */ = { - isa = PBXGroup; - children = ( - D7F643DA9519CE1ABCB28C7304A02A6A /* RCTLinkingManager.h */, - 9DF08272BC2BBD540559EBBF70AB3D38 /* RCTLinkingPlugins.h */, - ); - name = RCTLinkingHeaders; - sourceTree = ""; - }; - 8867F1CE22441F0419DD9EED0844ADC5 /* Support Files */ = { - isa = PBXGroup; - children = ( - 5CB9B40FE0E1C19F97282A5575AFE13D /* UMAppLoader-dummy.m */, - 53189377CC587CA423403F74E0A8613D /* UMAppLoader-prefix.pch */, - B62F088435CAF4ECD06E812357D975CA /* UMAppLoader.debug.xcconfig */, - 92BEB7AEBDE30BF45FAD8DB1B5442E8D /* UMAppLoader.release.xcconfig */, + 7F2EEEA4D466CF66AE76A8474AD38061 /* EXAV-dummy.m */, + 45F2D635013A38FABB1F7EA15B060F86 /* EXAV-prefix.pch */, + 9CFABA37DA49BE1E73E2D3391A077BC3 /* EXAV.debug.xcconfig */, + FCA8B8FA3AC9F624A5A2D5D3F04AE912 /* EXAV.release.xcconfig */, ); name = "Support Files"; - path = "../../../ios/Pods/Target Support Files/UMAppLoader"; + path = "../../../ios/Pods/Target Support Files/EXAV"; sourceTree = ""; }; - 8872ED4AB014463DC3D15E08FBA2E263 /* RNReanimated */ = { + 8AF929DF508CC2D1525B65706F24E2BF /* Support Files */ = { isa = PBXGroup; children = ( - E0A24C295DB49B8CD053F2B8E5BEC389 /* REAModule.h */, - 9AF7B0CC25C462C892C25ED32E403843 /* REAModule.m */, - E95DB92B336BB03EBD89043B4102A6A1 /* REANodesManager.h */, - BF46B5AC65808FAC6FAB1387F3B820BE /* REANodesManager.m */, - EE71E4D657D99227CC5F0CECF924C7B7 /* REAUtils.h */, - 579C0D12109D228082DB3ACBC303F6A4 /* Nodes */, - 1F56FD3B29F35D002A0C8277CCB2BB63 /* Pod */, - DD762FA6B790835B10AD4A5F866A4E79 /* Support Files */, - 1FF9C11DEA5FB5AC07C68242C7CA9432 /* Transitioning */, - ); - name = RNReanimated; - path = "../../node_modules/react-native-reanimated"; - sourceTree = ""; - }; - 88EAC76CC77BEACE9FC56AE8F1780819 /* ReactCommon */ = { - isa = PBXGroup; - children = ( - 2F25A4A6B7D83C7454DBFD76BE418B8E /* Support Files */, - 359DC2B57FFF4A2F4C8CAD4E5503C7D8 /* turbomodule */, - ); - name = ReactCommon; - path = "../../node_modules/react-native/ReactCommon"; - sourceTree = ""; - }; - 8A7DD642CB20DAEEF4623FAAE0E192EC /* Support Files */ = { - isa = PBXGroup; - children = ( - 299246C1B027F6E7FA58E83A9150AFB5 /* UMFileSystemInterface.debug.xcconfig */, - 784022803F34788B4D388DA5581E6920 /* UMFileSystemInterface.release.xcconfig */, + 57CDFDB0156BBE2F00007E46835F25AB /* RNRootView-dummy.m */, + 5BA85AB8C4133808A097138366097B46 /* RNRootView-prefix.pch */, + FD0EB7A71B4512820E6B538699BBDEB4 /* RNRootView.debug.xcconfig */, + F955A5A06194B758ECF9B4F0FFC6903F /* RNRootView.release.xcconfig */, ); name = "Support Files"; - path = "../../../ios/Pods/Target Support Files/UMFileSystemInterface"; + path = "../../ios/Pods/Target Support Files/RNRootView"; + sourceTree = ""; + }; + 8B09464F4D14B716435D4FD07CFE0C1F /* Pod */ = { + isa = PBXGroup; + children = ( + 3A003B35916E626E6D132BEBE8E7FE71 /* React-RCTActionSheet.podspec */, + ); + name = Pod; + sourceTree = ""; + }; + 8B2E4BC9B51B4622CDD65C38C692A3BF /* Support Files */ = { + isa = PBXGroup; + children = ( + 645F36069223AF2009C3501B14388BE2 /* RNConfigReader-dummy.m */, + 57150F7492269C3822B057D6A8B76967 /* RNConfigReader-prefix.pch */, + A631E1176D2052D107B00C46F615CCE2 /* RNConfigReader.debug.xcconfig */, + EF2E203C96DEB13B15CB72B513C9C4E0 /* RNConfigReader.release.xcconfig */, + ); + name = "Support Files"; + path = "../../ios/Pods/Target Support Files/RNConfigReader"; sourceTree = ""; }; 8B5D3D6A59DDA44D0193F5E8C4D284FA /* Support Files */ = { @@ -16130,6 +15854,26 @@ path = "../Target Support Files/TOCropViewController"; sourceTree = ""; }; + 8BB8F0DE8087C5ED6F88C5AE7EF532C3 /* EXImageLoader */ = { + isa = PBXGroup; + children = ( + 1370EFCE9426360B0A07FEE144120715 /* EXImageLoader.h */, + EBA71C5BEDB01DA239AC0B9A51B32A69 /* EXImageLoader.m */, + 1B5563B6C4F55AD3543C4ADD921F33CF /* Pod */, + 043B5E814DD3A6D3757A439342B4F6EF /* Support Files */, + ); + name = EXImageLoader; + path = "../../node_modules/expo-image-loader/ios"; + sourceTree = ""; + }; + 8C366ECDFDE298113FF66107FEAE0A07 /* Pod */ = { + isa = PBXGroup; + children = ( + 2984CC6A40868FD7BF5A2ED6CB4EF964 /* React-RCTText.podspec */, + ); + name = Pod; + sourceTree = ""; + }; 8C76EE0DDC78CD80396D1EE857BBF1E8 /* Support Files */ = { isa = PBXGroup; children = ( @@ -16142,18 +15886,51 @@ path = "../Target Support Files/MMKV"; sourceTree = ""; }; - 8D029EC7DE4AB620FDE06D2AE2BE0C6A /* React-jsiexecutor */ = { + 8DA99D56FA3C1670492FD47EB993902B /* Yoga */ = { isa = PBXGroup; children = ( - 70E5021AED47342D9252531B597044AF /* JSIExecutor.cpp */, - 6BAAADC474E30F829DA27F463DFDF466 /* JSIExecutor.h */, - 513F6A6502ECD4B1324FF330C306774E /* JSINativeModules.cpp */, - 01FE376F0F3AF767911A57088F87BBB1 /* JSINativeModules.h */, - 546B02590E0D91DFDC6CCFF7A174AEA7 /* Pod */, - E53604BCCEDA8D0736C10B7BE25BCFF4 /* Support Files */, + 8CEE4A50337FABC6F0F9FBC86217EE1D /* BitUtils.h */, + EFEDE0F8A0DF6BE20845C410FED10E77 /* CompactValue.h */, + A4A83EBC718D52F01D25A72DC68BE2FD /* log.cpp */, + FEEEF26665A6F41DBAC7E39F1E50E5A5 /* log.h */, + AA0DF8BF95726112B5ACADB8FCC15893 /* Utils.cpp */, + 21AA5E423691326E6A1899EA853E4857 /* Utils.h */, + 94C474C82BBF846E160C0EEA99712E0B /* YGConfig.cpp */, + A8D8B00F25FD4C3F8E777A0618B11F73 /* YGConfig.h */, + D036A8B91F9D274755D69D2C610FC578 /* YGEnums.cpp */, + 57BF4EA60161A139C42C1FA0529DB664 /* YGEnums.h */, + 9C278A6C573FD2DAEE0768B796883548 /* YGFloatOptional.h */, + 5FAC3C728CC2B1194530CF247719BB70 /* YGLayout.cpp */, + F6DA36798F450E3C1D96AEBA2346B891 /* YGLayout.h */, + D51E6A116D06020D51C1DD7F353955B8 /* YGMacros.h */, + 5A369F3FA666825DE880F424C909C974 /* YGNode.cpp */, + 13ACD9ADA5090986B21F242D58D5A40F /* YGNode.h */, + 60090F1A99574404DAE0E091F96DC311 /* YGNodePrint.cpp */, + 3DE2034E122154A0BBED46729EF813C2 /* YGNodePrint.h */, + 83590D21376A4179BCCE0E8EE64CED52 /* YGStyle.cpp */, + 3DFAD60463B3AEAE2E413CA40595B32A /* YGStyle.h */, + 56F783BA26ECFE6176DBD2A9EDBB6BD8 /* YGValue.cpp */, + 2F673D9D1B32092D286D80FB690741AE /* YGValue.h */, + 1C7BBD0C8EB2D2875B6E17063539A218 /* Yoga.cpp */, + 5AEB87B4EAC3FA3B75267CEC218264AE /* Yoga.h */, + 5B796E5BBC9DF22B686425DE79FB6F1C /* Yoga-internal.h */, + 98BF60F4E7B5DC5B03965395168EFBF2 /* event */, + E463F2746BC91C1F7E36CD7F779627AC /* internal */, + 7ECF02BFB798177CFA2C5A6570A0D7D2 /* Pod */, + CCBA863C544B94CEAB231574DD43B650 /* Support Files */, ); - name = "React-jsiexecutor"; - path = "../../node_modules/react-native/ReactCommon/jsiexecutor"; + name = Yoga; + path = "../../node_modules/react-native/ReactCommon/yoga"; + sourceTree = ""; + }; + 8E7C74BBC5D1BF7F16D9A920B6F1736B /* Services */ = { + isa = PBXGroup; + children = ( + 026BEC126F4F1395BF37300DB4E3530E /* UMLogManager.h */, + BF90940C58FE52ED35CD05C8BF011C77 /* UMLogManager.m */, + ); + name = Services; + path = UMCore/Services; sourceTree = ""; }; 8ECB27809797ED53D46CE26B74E1389A /* FKPortForwarding */ = { @@ -16166,44 +15943,16 @@ name = FKPortForwarding; sourceTree = ""; }; - 8F000F8109FE293C1E6C9C0F7074773A /* RNCAsyncStorage */ = { + 8F098D4742BD4FD0A10DDC90C8867F7B /* FBLazyVector */ = { isa = PBXGroup; children = ( - 010DF4C6234863CFFFE2649352EB2007 /* RNCAsyncStorage.h */, - F7F852944B7F82BB22DC3A97A1E193B7 /* RNCAsyncStorage.m */, - D1D1DC7304785668C1A841980DEEE247 /* RNCAsyncStorageDelegate.h */, - DBFEF84851C94D8F9D9E178D5CDD5327 /* Pod */, - 2E3A1DF2DA14FB3666776C4CB4B08633 /* Support Files */, + 891F88369986A2569E7F06E3DA96F255 /* FBLazyIterator.h */, + 34C6DEE7DC2BA828BDB505D8B6B68001 /* FBLazyVector.h */, + 2B7A0DCE54A8DCFC1DB390E4B63E99AB /* Pod */, + FFC79262E3EE3F9E3AD2ECF2F9AAA071 /* Support Files */, ); - name = RNCAsyncStorage; - path = "../../node_modules/@react-native-community/async-storage"; - sourceTree = ""; - }; - 8F464B8A277C64EFD4C6E529DECC8330 /* TextInput */ = { - isa = PBXGroup; - children = ( - 8DD04E2E3F09F73734B78C61CA50FDEE /* RCTBackedTextInputDelegateAdapter.m */, - 666BAD526FFAE2C6EDB4F7546A6EEE17 /* RCTBaseTextInputShadowView.m */, - 381F8C518E1401676014CF63F3ADA4D3 /* RCTBaseTextInputView.m */, - F05B38760018C05A0FF3CBEDF51828F7 /* RCTBaseTextInputViewManager.m */, - 515F60BAA2C44398E4C432812DFAEF87 /* RCTInputAccessoryShadowView.m */, - 91E9687C6628063123FD14C1A1C30A45 /* RCTInputAccessoryView.m */, - 711DB2C8D8A7E87450B0382B3FB4E062 /* RCTInputAccessoryViewContent.m */, - 0220E7FC3C4159B65505E2B219D9A9A0 /* RCTInputAccessoryViewManager.m */, - F0308CC8B4C0BB684833C4A8D160333B /* RCTTextSelection.m */, - 638A5498CA549D052BF54A0DD032BB90 /* Multiline */, - 9843954947EAC85E371AC52E236D5BAB /* Singleline */, - ); - name = TextInput; - path = TextInput; - sourceTree = ""; - }; - 902E19639B871BC67EB4FF4E4F4EA39D /* Pod */ = { - isa = PBXGroup; - children = ( - CE1F06876D0CC4BBA737075281BD9C98 /* React-RCTActionSheet.podspec */, - ); - name = Pod; + name = FBLazyVector; + path = "../../node_modules/react-native/Libraries/FBLazyVector"; sourceTree = ""; }; 91222BD6062AEB28CA1E594E98BCC24F /* Support Files */ = { @@ -16223,56 +15972,33 @@ name = CppBridge; sourceTree = ""; }; - 9184F2D9EFBD9839DF678BEC01488F70 /* RCTCustomInputController */ = { + 91AA79B9FEA24E866C73FF546A60BA97 /* RCTNetworkHeaders */ = { isa = PBXGroup; children = ( - CEFBDF861F3301ABB280F2E94FD6073C /* RCTCustomInputController.h */, - C07661741AA1DCA0B3F0A6E482EBC55C /* RCTCustomInputController.m */, - 56BA74359E64F1AFBD8D47B4C2B9F026 /* RCTCustomKeyboardViewController.h */, - 425D9D18F9684EFF4B131BC102AD46EE /* RCTCustomKeyboardViewController.m */, + B91C52A0DCF1F20CA83697EFC5980B4A /* RCTDataRequestHandler.h */, + 380F52237572AF309222A94D8E4F5089 /* RCTFileRequestHandler.h */, + C58FC66A78828CD9718D9E80796801D4 /* RCTHTTPRequestHandler.h */, + 4666F0B31DCA585F6B9ADA16B9208840 /* RCTNetworking.h */, + DBAA213439DB4A2F820FC256FD8B83D9 /* RCTNetworkPlugins.h */, + 56C7FD11D465FA3932202B5F6C1DF1DE /* RCTNetworkTask.h */, ); - name = RCTCustomInputController; - path = lib/ios/RCTCustomInputController; + name = RCTNetworkHeaders; sourceTree = ""; }; - 9231E46D5E8928E64E224D0EAF7B3FFE /* RawText */ = { + 92D47903D3EF89058115B42B571DAC5D /* ReactNativeKeyboardTrackingView */ = { isa = PBXGroup; children = ( - 46FC02C46C54CAD113B87A9F8462B5EA /* RCTRawTextShadowView.h */, - FF05DCF7ACB2BA0BEF6AAFDE1F9C4D62 /* RCTRawTextViewManager.h */, + 3113BA32877CA6A0FA4EA673733A0AA6 /* KeyboardTrackingViewManager.h */, + AD83718DAFA2539788C81048B9E4AEA3 /* KeyboardTrackingViewManager.m */, + BB1B50F6E9C105E2E06B5A0F701187CD /* ObservingInputAccessoryView.h */, + 3BFBE70DB9803AEE8F2839BAA8572BA6 /* ObservingInputAccessoryView.m */, + 56894A1E0869F51CAF3052132E795BE1 /* UIResponder+FirstResponder.h */, + 98DE811D2532B4CAA9C599E4B2E6BA45 /* UIResponder+FirstResponder.m */, + AD57F0318089FC55B0E8852C8FE52EF4 /* Pod */, + EE994788124EBE90961B6D9BD7E43C7A /* Support Files */, ); - name = RawText; - path = Libraries/Text/RawText; - sourceTree = ""; - }; - 93142AD3FFDCF47D39445C3EFFAD3441 /* RNFBApp */ = { - isa = PBXGroup; - children = ( - 8829938A716496FE3BDAB4CC2EE1A100 /* RCTConvert+FIRApp.h */, - C9DD3F683758C769A9305AC28B4E8946 /* RCTConvert+FIRApp.m */, - AFCC6D612B0011E96730E8DFD27E6E85 /* RCTConvert+FIROptions.h */, - 44A95C29C46FABC2B4AB1DF51CEF3A4D /* RCTConvert+FIROptions.m */, - 44C578DE64AD8D7487F4DA83FC07CD67 /* RNFBAppModule.h */, - 4AF9E7B8683D29B68734C324C35039C1 /* RNFBAppModule.m */, - BF24D0A4E2EDB9C0D750B3C4EA3BEAC0 /* RNFBJSON.h */, - 504CCEB26B7B4EDACBA51B3383961FF7 /* RNFBJSON.m */, - E0B55D0C673CD5BE3E824D41A58D1DC7 /* RNFBMeta.h */, - A88F81EC6E09430BBDB731760A9EDB35 /* RNFBMeta.m */, - 96A5DDE33DAAF319864E22ED91A799C8 /* RNFBPreferences.h */, - 19AA7A1C7A54F2CDF0D9ED234CA46358 /* RNFBPreferences.m */, - F28BC214752794297FD5ECB6E1197268 /* RNFBRCTEventEmitter.h */, - AD0C793B510FC63C24840A849BD60F0F /* RNFBRCTEventEmitter.m */, - 48CF9C5580DE586E095C781BF30E40E1 /* RNFBSharedUtils.h */, - 2CE8F089F68FD8BFECA4B8721154937C /* RNFBSharedUtils.m */, - 078BB89A64C2CB0B267C97A9A63E54C2 /* RNFBUtilsModule.h */, - A4165270806368E9119C3DDB178C17D8 /* RNFBUtilsModule.m */, - FBB2FE1FA17DF5D5B67E9F37D47EDDBA /* RNFBVersion.h */, - A75FE2F6701004FDD87621AEB89BF0AE /* RNFBVersion.m */, - D526C46309BDFACBF5E631780994DA9A /* Pod */, - 42453C13279AC297B17665AB79878FF7 /* Support Files */, - ); - name = RNFBApp; - path = "../../node_modules/@react-native-firebase/app"; + name = ReactNativeKeyboardTrackingView; + path = "../../node_modules/react-native-keyboard-tracking-view"; sourceTree = ""; }; 931B1399964B6232B293D86F2DD24E61 /* Pods-NotificationService */ = { @@ -16288,81 +16014,143 @@ path = "Target Support Files/Pods-NotificationService"; sourceTree = ""; }; - 937845A46CC759D9F8C191E92F949C72 /* Support Files */ = { + 9448E2C33322CDBC732462FD79CC2F2C /* CoreModulesHeaders */ = { isa = PBXGroup; children = ( - AA3E15764E9368FDD8CF2727250DAC00 /* EXAV-dummy.m */, - E51D7295706B24C7E51D40AC2374D6C1 /* EXAV-prefix.pch */, - 80B56924E6DBFF597348ED058F104360 /* EXAV.debug.xcconfig */, - 7C599A1B347A877D641536645093F9CA /* EXAV.release.xcconfig */, + 771A2C0248C6DAB6280C40E3A43DFCE4 /* CoreModulesPlugins.h */, + 538524D3A13CF548117D6D2F14640A67 /* RCTAccessibilityManager.h */, + 1250E7DAB23472ECDE2C57774F7BB962 /* RCTActionSheetManager.h */, + CE4992EE87E3DB6DB4CE49F27C6E39C9 /* RCTAlertManager.h */, + DF84A5AECBCCAD03CEFF81580D77F6A4 /* RCTAppearance.h */, + D9F83C48F14D7A211718FCC76D29623B /* RCTAppState.h */, + 9D6AD1009A74ED5DA0C3A7BC500DE4E9 /* RCTAsyncLocalStorage.h */, + 2D805B65BB1D28514278D8AAB986AD18 /* RCTClipboard.h */, + 2C704C8083AFB4F2D56D934673F6990F /* RCTDeviceInfo.h */, + 1D6E3201AE259415F5A9F8E59B3AD6A2 /* RCTDevLoadingView.h */, + 59E79A9C43DBE1DC8F04DFE61673CF5C /* RCTDevMenu.h */, + 67E04919774EBE3A9E1B7AA65D274155 /* RCTDevSettings.h */, + FEED02E25B5D1959FA6688FC441AEC3E /* RCTExceptionsManager.h */, + 79CE403031812C4DA38A52DFBAB12B83 /* RCTFPSGraph.h */, + 2EF3E4F1F17D048546EFD84791B3A7B9 /* RCTI18nManager.h */, + B4F5793294B2FB7F9C1461C7A9A11DCD /* RCTKeyboardObserver.h */, + 66B202038A90A6F376B7521002FEED5E /* RCTLogBox.h */, + E2470D9217B50C94F245648D7D860C2F /* RCTPlatform.h */, + E2880FB15A337679AF1C03C6AF64651A /* RCTRedBox.h */, + 663F678BA4D1DC92F6056E3F7B0D75B1 /* RCTSourceCode.h */, + 84799DC573A1A80C50AE2985D4258247 /* RCTStatusBarManager.h */, + 6D7FF2802D7D5B8BDC6FB150E8888529 /* RCTTiming.h */, + 152285078E580B2302C262BBC8BDBB63 /* RCTTVNavigationEventEmitter.h */, + E1721A9A79CAF1077FAA116A2166F6CC /* RCTWebSocketExecutor.h */, + 60EDD1E032A4724CC952A48996263EA2 /* RCTWebSocketModule.h */, ); - name = "Support Files"; - path = "../../../ios/Pods/Target Support Files/EXAV"; + name = CoreModulesHeaders; sourceTree = ""; }; - 9461B2310AC4F6C5B28C8ED3AA01D3D8 /* Pod */ = { + 955AFEEE699D0EC3DF009618CC71C69F /* RNFastImage */ = { isa = PBXGroup; children = ( - E115A5CC8349D2EBB53C173598E174B5 /* LICENSE */, - E65F9FE191E8F5252BAC81336BB2BE24 /* README.md */, - 2B71EBC4ACEA997915594817EF22B58D /* RNConfigReader.podspec */, + 72A876A2858E5A450906DA4D566FA040 /* FFFastImageSource.h */, + 73FC6A6E09D55921C1D7016E577E10A2 /* FFFastImageSource.m */, + A671B4633078950803164D2C663B82E0 /* FFFastImageView.h */, + 287449DDCA44CB382B8D443DAC8BB4AD /* FFFastImageView.m */, + AE86DB11D359622B361796B10E334477 /* FFFastImageViewManager.h */, + DF72753EB246A57B1E4ABCDC3156DEAE /* FFFastImageViewManager.m */, + 9869AC02AFA8E00FE51A11DA36240D93 /* RCTConvert+FFFastImage.h */, + A1476AB545279DF4F48290E67F873C91 /* RCTConvert+FFFastImage.m */, + 6AA8B9FD7CF945D06FD187A46F2D58CA /* Pod */, + 2780101C7F990084BA0DA51469EDE2AB /* Support Files */, ); - name = Pod; + name = RNFastImage; + path = "../../node_modules/@rocket.chat/react-native-fast-image"; sourceTree = ""; }; - 94A89412E5841A0D0B040C6409F6E90A /* Support Files */ = { + 961FBD9A25B32796E15B1763AAACC36C /* Development Pods */ = { isa = PBXGroup; children = ( - 82EDC9A83B4EE9F8225B22D6596A9BF0 /* UMReactNativeAdapter-dummy.m */, - 52CB8EBF34160CEFC2CB2675D6FB6492 /* UMReactNativeAdapter-prefix.pch */, - 315B96E1A389F5742EECA6EB59B63DA4 /* UMReactNativeAdapter.debug.xcconfig */, - B4CDB506C4651CF6C6E26964F375783D /* UMReactNativeAdapter.release.xcconfig */, + 2704D372C6A22863A1AB96C94FED695D /* BugsnagReactNative */, + C8608733D49EAE9BFFC1FD7A771D38A0 /* EXAppleAuthentication */, + D9D9C76D94D5118463DDCDD181AC0CF6 /* EXAV */, + C5FD639A0445E0A7D1DA59C10B969929 /* EXConstants */, + 41C3DAFDAC0ED4BFEF12C66995CE3AEA /* EXFileSystem */, + D900D0720D37864F4B460A6324B0857F /* EXHaptics */, + 8BB8F0DE8087C5ED6F88C5AE7EF532C3 /* EXImageLoader */, + 253ECEC04CD0B3E229F6233AB3ECB131 /* EXKeepAwake */, + C6A3153BEFD527AE9C6C22C8B92B31B5 /* EXLocalAuthentication */, + BBD1C74F13005BEC0132312867B7547B /* EXPermissions */, + F029A1EBC413597236A123D5F610F289 /* EXVideoThumbnails */, + D961C584C9A70F85ED99D655BBFFD0B3 /* EXWebBrowser */, + 8F098D4742BD4FD0A10DDC90C8867F7B /* FBLazyVector */, + FBCED308AD91589EB059E48216C36FC9 /* FBReactNativeSpec */, + 87D06D33185AE422520A2EE1AC0F17AB /* KeyCommands */, + C9263191A52C4C773168FC771C620000 /* RCTRequired */, + 4C8695363240B7C782467D6E684FB041 /* RCTTypeSafety */, + 54055683D6BF2FC1D2D4759EDCD3ABFA /* React */, + 20D00E15C24958B6D1F8574D94F0E412 /* React-callinvoker */, + 0F09AC66776E2017D9DE001FC6EBA192 /* React-Core */, + D8472C7D3921721C76F81E630B7D96B7 /* React-CoreModules */, + 09836901995C1FDC17F72A357A22C346 /* React-cxxreact */, + 2B31901A923E93E45991118DB7BB16C1 /* React-jsi */, + 65D9A9EE48435908752FF3E938D7CA4B /* React-jsiexecutor */, + 3D7DBE9FADAE2103DB0E3A68C2A67F40 /* React-jsinspector */, + F9F39FE4519253E80F0DBD9F0CC2BE58 /* react-native-appearance */, + CA9C9B6B949698EF034C5AD4522EAA2A /* react-native-background-timer */, + FE2AFE2F2E6F5FB97A02B6BCA64A50A8 /* react-native-cameraroll */, + 1DEFE55AEE889188DC988E7318725EAD /* react-native-cookies */, + 85CD52A55DF445A2AF69C337C82FB48A /* react-native-document-picker */, + 67BB367161CF730B0623B33AF3560370 /* react-native-jitsi-meet */, + 0AD200FFE64CDEF15442A7DDDAFBCE55 /* react-native-mmkv-storage */, + C7F2D66F5F8E2B79A1F23DE34A17CF6A /* react-native-notifications */, + F7023BCB1A22066B3CFCB83A912DA25F /* react-native-orientation-locker */, + 47B6D7F1E5F7F157DE333CE31E8DE12C /* react-native-safe-area-context */, + 0E5FBFE6F2AE74B29CBB39656AC6A619 /* react-native-slider */, + 01F17663ED8D4C9C3FE9D812D3E33AA3 /* react-native-webview */, + C78597242CEB435ACBB65B3C0032907D /* React-RCTActionSheet */, + DEB3D9BC7877745AC2E6604AE60D839E /* React-RCTAnimation */, + FEC8FC66558FF0B90AE154AE89DE95C1 /* React-RCTBlob */, + E256A9516DC6D6A2F675606769A41CCB /* React-RCTImage */, + 5FCB780E96C3D97EFB7F7483196BB3CC /* React-RCTLinking */, + 54B674CAFA75D9D29CA111B3046DB054 /* React-RCTNetwork */, + 2A511B0F6840B59E976A3DE14F39C7C8 /* React-RCTSettings */, + 5866177121B3C5BF469606D5822DFB5D /* React-RCTText */, + 207A3F86DDB175ACFC87EC7C204C1AAC /* React-RCTVibration */, + 2FB6B5EAE954A4E93AC59C4819B49F44 /* ReactCommon */, + 17AF0814CC4489986FDD868680BFD1C8 /* ReactNativeART */, + 852B0B90094EE62EA9873F8DCB9F899A /* ReactNativeKeyboardInput */, + 92D47903D3EF89058115B42B571DAC5D /* ReactNativeKeyboardTrackingView */, + 6F985D413152D98EF2B8A28DBCDB0C25 /* rn-extensions-share */, + 87ED5356CB8561E2EA481C1679627D22 /* RNBootSplash */, + 4E9D1399C681564FB72924EE31B6D65B /* RNCAsyncStorage */, + B6170C0DBE0A6EFDC62B766E838440B9 /* RNCMaskedView */, + ECC8935873EED16248EB5ADFDB72529B /* RNConfigReader */, + CACFF5676DE5CD1F4BEC35E40035CE2F /* RNDateTimePicker */, + B522B483964AE8CF0A644BB1A08722BE /* RNDeviceInfo */, + 955AFEEE699D0EC3DF009618CC71C69F /* RNFastImage */, + 64F26EE1D4D49B64780DED1BA75156CA /* RNFBAnalytics */, + AB7F4F8C240931FFA043924262EA241D /* RNFBApp */, + EE0F62AE8B6A2FFDF70E8CDAC416508F /* RNFBCrashlytics */, + 31C5B614CBF06C7E8C5010C9BE829A8A /* RNGestureHandler */, + BDA225705609449D48AB93571C71F7FD /* RNImageCropPicker */, + 1C3AEFF6E9699D15345C71CB4533FD7E /* RNLocalize */, + 7B0E0E3B84357D342EA98E4859DC100B /* RNReanimated */, + DF7D7D3DE64A967BB88BBB99746A3797 /* RNRootView */, + FEC71B1693A20C80FE6CE158DC4C659B /* RNScreens */, + A4CF8B70EB201B72E56D6148D39CEB0C /* RNVectorIcons */, + CAA61C0C6F1E5E32D398384291379CA4 /* UMAppLoader */, + F6372863DB61488181600D2343F022DF /* UMBarCodeScannerInterface */, + D161B571FB06DF1EA3B12ECA8629B3D7 /* UMCameraInterface */, + A3835B03F4AFE88F2F4133BFC68690DF /* UMConstantsInterface */, + 6CD4D598BABB6B403719313617AADEA4 /* UMCore */, + 1BEF3159330E5067952B419BA37B91DE /* UMFaceDetectorInterface */, + 0420D33F9226B31998D54CD547CAEF6C /* UMFileSystemInterface */, + A6243F9C6077D3D604D3220E43480298 /* UMFontInterface */, + 1941C2AE3FEEE40AD26FD55A349E4507 /* UMImageLoaderInterface */, + C3562FD9A362B95003356729A19C5BCC /* UMPermissionsInterface */, + 03E65A8F0C6D9E7797009677A974B706 /* UMReactNativeAdapter */, + 0B7575DC7CCF3323201B3B6FF9656F5C /* UMSensorsInterface */, + CA8CC6F781903BAA25AA18CB00D630E8 /* UMTaskManagerInterface */, + 8DA99D56FA3C1670492FD47EB993902B /* Yoga */, ); - name = "Support Files"; - path = "../../../../ios/Pods/Target Support Files/UMReactNativeAdapter"; - sourceTree = ""; - }; - 94B2B74240F5AECB6A1F0A2C293FF151 /* Pod */ = { - isa = PBXGroup; - children = ( - 2E5FC021907B516E89D8CC0F3E05853E /* LICENCE */, - 280A32BBCE7F8146256E7F950329E303 /* react-native-cameraroll.podspec */, - F45D686FDB1D5BFC093C6D094A0ACCE5 /* README.md */, - ); - name = Pod; - sourceTree = ""; - }; - 95DB2161F10DC2494DEE86BB76F251D5 /* Support Files */ = { - isa = PBXGroup; - children = ( - 665A7C3432F2F39F9373C0DE70BE195E /* React-Core-dummy.m */, - EB518DB5516FA7D8B25BCC8C68E58B25 /* React-Core-prefix.pch */, - 35E6909514C72A28D802A5BA1D95000C /* React-Core.debug.xcconfig */, - CE8515B96EEE31F08F168D2B9AC4D691 /* React-Core.release.xcconfig */, - BA173522044DEE0F36BE18B95FF4FD19 /* ResourceBundle-AccessibilityResources-React-Core-Info.plist */, - ); - name = "Support Files"; - path = "../../ios/Pods/Target Support Files/React-Core"; - sourceTree = ""; - }; - 95FE45F304643FC93B8ED23BA09F8AB5 /* Pod */ = { - isa = PBXGroup; - children = ( - 652F3A596F67FFC587579C04CAC911CA /* UMBarCodeScannerInterface.podspec */, - ); - name = Pod; - sourceTree = ""; - }; - 9658D76025EDC3DB86FC95FE8BAE2B13 /* Support Files */ = { - isa = PBXGroup; - children = ( - 1FAE1DED76F1FEADC50895673E572B86 /* react-native-orientation-locker-dummy.m */, - 7B458DF706EDC0CE70F50A6C1CF721FC /* react-native-orientation-locker-prefix.pch */, - 7CEB1CEEA011E402873E3FE6281AF212 /* react-native-orientation-locker.debug.xcconfig */, - 7327566E630ABBF4AA3439CE94E441D7 /* react-native-orientation-locker.release.xcconfig */, - ); - name = "Support Files"; - path = "../../ios/Pods/Target Support Files/react-native-orientation-locker"; + name = "Development Pods"; sourceTree = ""; }; 96DF5A7A1C0F27BFF26BC82FFB899D12 /* Support Files */ = { @@ -16377,6 +16165,18 @@ path = "../Target Support Files/GoogleUtilities"; sourceTree = ""; }; + 972C984980FEE2B1079B5CA6E7F13A88 /* Support Files */ = { + isa = PBXGroup; + children = ( + 7D456170E0B84B48E6B47976D2AE811D /* UMCore-dummy.m */, + 31C9AE489D0D1FCEA6B25AEADFB67EAF /* UMCore-prefix.pch */, + 1C0848D5A04E38224699DC9B7823DE29 /* UMCore.debug.xcconfig */, + 451ABB101F357DD2EBE5104DCDABCDE2 /* UMCore.release.xcconfig */, + ); + name = "Support Files"; + path = "../../../../ios/Pods/Target Support Files/UMCore"; + sourceTree = ""; + }; 97616CA14B35CA218C84A3BF19A1AF2C /* Support Files */ = { isa = PBXGroup; children = ( @@ -16387,46 +16187,167 @@ path = "../Target Support Files/FirebaseAnalytics"; sourceTree = ""; }; - 980AC0D48DFE00EF6DBF78B8CAC4CC3F /* Support Files */ = { + 977D76ECAF33E1BC91A10ED64C9ECA7A /* Base */ = { isa = PBXGroup; children = ( - ECD7910C1E27895790CA2D50173A0FB5 /* React-RCTActionSheet.debug.xcconfig */, - 0B10AB992B97BBD69B235538CBC74ED3 /* React-RCTActionSheet.release.xcconfig */, + DF1FF13E6E8D3CBF2EAD96AEBE0CD305 /* RCTAssert.h */, + A1973DE2E5FBE48CC98F42EDE0A4F185 /* RCTAssert.m */, + 0E611D80D06D1A7B2E7E0828F2CB02BE /* RCTBridge.h */, + 3094008CAE112CF6ED6AF1675211F86A /* RCTBridge.m */, + CD1EE304F62FF3B21CBB2CC033ACED60 /* RCTBridge+Private.h */, + 757356D3CA675CE5630F7D57BCA0F804 /* RCTBridgeDelegate.h */, + AE779F356C67EFB3AC8963370280F3E8 /* RCTBridgeMethod.h */, + 0B4FA5D9415D468DD3DBB37EA8689571 /* RCTBridgeModule.h */, + 070C30D6B59F6646B698C3B35C4E4F63 /* RCTBundleURLProvider.h */, + 8E6B1FC9174FFA5D5473016481D2A010 /* RCTBundleURLProvider.m */, + E7E0457D29F9D59DB17AB6FD06FAF418 /* RCTComponentEvent.h */, + A6C8B780938A28CFA1950CF71BC0D1CC /* RCTComponentEvent.m */, + AA9D5076FC59778EDFA5D5C08DB28820 /* RCTConstants.h */, + F5B296D95D5EC9D4EBE12A5EB082B7A3 /* RCTConstants.m */, + 6F2E6313BF81DAAF1374B78917E08A51 /* RCTConvert.h */, + CE35B0B7DE4CDF90DDE767F2A716FAAC /* RCTConvert.m */, + BEC5DF2A419DAEE79BE17C9027846C39 /* RCTCxxConvert.h */, + B8ADCE6ECF30078B12D4977BD39533DD /* RCTCxxConvert.m */, + 47A0B6814246A0469242343FA7ADCE6F /* RCTDefines.h */, + 96FC6DC0FB470B4764455E508828D276 /* RCTDisplayLink.h */, + 495D717A01CA75C26F0E81EFDDE53B1B /* RCTDisplayLink.m */, + DE1D858531EAACE24FF3DCF14A9F5214 /* RCTErrorCustomizer.h */, + BD21A48EE4C43BAA9E58A7E7956BE0A6 /* RCTErrorInfo.h */, + 352A9DF0D33189F7B359EABBD63C3260 /* RCTErrorInfo.m */, + 76B50BE6D55C4A5811D51DE8969DB714 /* RCTEventDispatcher.h */, + B5879F9754B13A5124693008CFD4361B /* RCTEventDispatcher.m */, + 883757E4B7C80E441843B2082413BBD3 /* RCTFrameUpdate.h */, + FB31C81BA75EA1A415012B9FB49FAA29 /* RCTFrameUpdate.m */, + 853B3B16B5DF0C1B26D21CFB5F4F0850 /* RCTImageSource.h */, + E5C9B5BCBB5FEEF0DFEACE6BC53D5198 /* RCTImageSource.m */, + B8491340A2D8F67A220A17EACCBE4BB6 /* RCTInvalidating.h */, + B34F3D84C8EC332A55289CC4FA4E138A /* RCTJavaScriptExecutor.h */, + A7AB3DBD690D8D4D5E19BD91149B0734 /* RCTJavaScriptLoader.h */, + 7EF75E243F857CEAB85C1D0ACBF17B73 /* RCTJavaScriptLoader.mm */, + 982337379B5505C2FF997F9BE7F00ACC /* RCTJSInvokerModule.h */, + 734D20FDB284D37C9DFD03C2E27A111F /* RCTJSStackFrame.h */, + CFC4318F0869259F0C82E75701162A3E /* RCTJSStackFrame.m */, + F03427101F3B8C7060CC590A8363CA6F /* RCTKeyCommands.h */, + C829C3375EC07F1EAFF8CCC8C39012CF /* RCTKeyCommands.m */, + F6DD8117884B527CC1DFAF11593CFDA3 /* RCTLog.h */, + 812AAA79B95E42D3E675EA51A44BC110 /* RCTLog.mm */, + 498FF03499E9ACAF13027DCC30825AB7 /* RCTManagedPointer.h */, + 72D66E801D034FB15E25A0B811EB00A3 /* RCTManagedPointer.mm */, + CAFE7FC8058A8AFE746C84010F2A9F5B /* RCTModuleData.h */, + DF25171794B0D2F410EADE1EDA4EB230 /* RCTModuleData.mm */, + 669B53B0F1825B1394A00752270DA103 /* RCTModuleMethod.h */, + 1EE0AC1E1F22C30D36B89A4E7D4B2975 /* RCTModuleMethod.mm */, + 2554F5BFBCAFD71425177DE0CF41C7C0 /* RCTMultipartDataTask.h */, + 3C3404C0F297D00A0B67F3F1D0F415FA /* RCTMultipartDataTask.m */, + FE26C3940DF317A6CE0C308355B10250 /* RCTMultipartStreamReader.h */, + 244F8B921D69A96B1E64C7A77F10835E /* RCTMultipartStreamReader.m */, + 3638E68D65EF41AD7607076000BEAF83 /* RCTNullability.h */, + 50E330AF398B6E19F80FB6585541C4CB /* RCTParserUtils.h */, + 02F1047B882E0C8E3E1C90A862861A8B /* RCTParserUtils.m */, + 7F2A08D7B3DBF49C782821A66DE3DE38 /* RCTPerformanceLogger.h */, + B20E387478BB9BD681C496D963E6215E /* RCTPerformanceLogger.m */, + 8BD211382ED263876E7B39576EFFA214 /* RCTRedBoxSetEnabled.h */, + 41F1944D6B16E6CBFCAB66B4C76FCFF9 /* RCTRedBoxSetEnabled.m */, + 6235B98CC402A2AE353E52314BD1930B /* RCTReloadCommand.h */, + 1DED3251A30B105D2548A9613D5B28EA /* RCTReloadCommand.m */, + 972B2B9D0D7A9ED5AFAEECE53FAC793E /* RCTRootContentView.h */, + CC0B6AEE5456888709FAB129B5F70007 /* RCTRootContentView.m */, + 56ECE2B3EE6E81D98563054DF5B9532A /* RCTRootView.h */, + F13288A5114C62E8068FC4F1B15F90E2 /* RCTRootView.m */, + 177C58289CCB8340F454EFD21A4267DE /* RCTRootViewDelegate.h */, + 4D8B3371FE0AD99CE7A75B25562E7F77 /* RCTRootViewInternal.h */, + AB6A7A9E9A997AC3109E097CE509454D /* RCTTouchEvent.h */, + F64EE5366B123EEB8C5ADCF2B1240B7A /* RCTTouchEvent.m */, + B90181D6D7F1F52B27BC8162173D9439 /* RCTTouchHandler.h */, + 189631C628859E4658BE8042210DB85E /* RCTTouchHandler.m */, + 2F1D595180249D6C411CEBF375E6B6C4 /* RCTURLRequestDelegate.h */, + BDDBBE05673016D2E8CDCD1A03E97BDA /* RCTURLRequestHandler.h */, + FAFE9A5B9A255E22283C818BD0A24D19 /* RCTUtils.h */, + 9227DC0B4D5E0AB81CAB51D97D06A271 /* RCTUtils.m */, + 03706A3E4C111F65A8CD82315D1F8A22 /* RCTUtilsUIOverride.h */, + 16FCE78241F592B11B57CF463BBB48D2 /* RCTUtilsUIOverride.m */, + BB9F84B8F1184E97F9CB46B2B5732796 /* RCTVersion.h */, + A1977F6EED8F723F1AB1B88C7CC426FB /* RCTVersion.m */, + F2A43425DF1F3C91BF3FD4F21C29AD3C /* RCTWeakProxy.h */, + DF5DF2E0A88ED035A01CF8D763EEA4A4 /* RCTWeakProxy.m */, + 51A9A00965257140AF7FA6B2BDBC619B /* Surface */, + ); + name = Base; + path = React/Base; + sourceTree = ""; + }; + 983590500D6948A5752C33AA721DB03F /* Support Files */ = { + isa = PBXGroup; + children = ( + DBEE05277B6BD752321FDD91FB2E36B7 /* RNFBApp-dummy.m */, + 29231BF818B69943DC71AD853540CA87 /* RNFBApp-prefix.pch */, + C764DF44D7453D3C43301C04580500D8 /* RNFBApp.debug.xcconfig */, + C0B1FDF52D0A6E124CBAB869F773E3F3 /* RNFBApp.release.xcconfig */, ); name = "Support Files"; - path = "../../../../ios/Pods/Target Support Files/React-RCTActionSheet"; + path = "../../../ios/Pods/Target Support Files/RNFBApp"; sourceTree = ""; }; - 9834DD3FEFDCAD9ACA032885CD5E6E4E /* UIUtils */ = { + 98918DD13579DBFD93FA0AA672CBB8E8 /* Support Files */ = { isa = PBXGroup; children = ( - 0CE19452558BC74C3D8AE5F85508DFB1 /* RCTUIUtils.h */, - 83EB253967C7837D281EA81637EEFA3C /* RCTUIUtils.m */, + F0AEC5186B8F5808589C526E5DCDE874 /* RNVectorIcons-dummy.m */, + 8E40DE928DDC68FD9AC458211AF1D43A /* RNVectorIcons-prefix.pch */, + 212E87F4E56036CBA470C4BD58DFFB23 /* RNVectorIcons.debug.xcconfig */, + EB8CAC2469765EC8EE6D42D9C4E73E20 /* RNVectorIcons.release.xcconfig */, ); - name = UIUtils; - path = React/UIUtils; + name = "Support Files"; + path = "../../ios/Pods/Target Support Files/RNVectorIcons"; sourceTree = ""; }; - 9843954947EAC85E371AC52E236D5BAB /* Singleline */ = { + 98BF60F4E7B5DC5B03965395168EFBF2 /* event */ = { isa = PBXGroup; children = ( - 58C18FE91FB67242278A44685447B26F /* RCTSinglelineTextInputView.m */, - 4AC68D790CEC3B99E278CE3D11F66364 /* RCTSinglelineTextInputViewManager.m */, - 59B32B64163E777D7B6963D22BD83B87 /* RCTUITextField.m */, + 1317BAA69CB885635DCB474C181AE897 /* event.cpp */, + 62ECF1E16FE4FF13298DA5AC28BA3769 /* event.h */, ); - name = Singleline; - path = Singleline; + name = event; + path = yoga/event; sourceTree = ""; }; - 98AAB1644CD3447E74BD128066C60ED2 /* UMModuleRegistry */ = { + 994D5D0037F32B12210060ED84FAD773 /* VirtualText */ = { isa = PBXGroup; children = ( - 35EA8D7C682966B982E188098EC2D382 /* UMModuleRegistry.h */, - DA75404D28828B63667CCB72B68F56AB /* UMModuleRegistry.m */, - A18579BD009DC1953DF6C602D20DC300 /* UMModuleRegistryDelegate.h */, + 1E45F82FEADDDB60B0FB36E6274AD585 /* RCTVirtualTextShadowView.h */, + 899E84B80A9168A6A9EE1AE216E86340 /* RCTVirtualTextViewManager.h */, ); - name = UMModuleRegistry; - path = UMCore/UMModuleRegistry; + name = VirtualText; + path = Libraries/Text/VirtualText; + sourceTree = ""; + }; + 9A092C2D17FB0C3E83CF1B2B0C142F7E /* Support Files */ = { + isa = PBXGroup; + children = ( + 3E97FC25847E19B484E133B42AD4BD49 /* EXVideoThumbnails-dummy.m */, + 46083C0E068C7594F3A25D90821204BC /* EXVideoThumbnails-prefix.pch */, + F36486BDD5A4BBAF53668B3074195C85 /* EXVideoThumbnails.debug.xcconfig */, + 19A6E450ED992CDA89F06974AEC38E43 /* EXVideoThumbnails.release.xcconfig */, + ); + name = "Support Files"; + path = "../../../ios/Pods/Target Support Files/EXVideoThumbnails"; + sourceTree = ""; + }; + 9A94F290F57460D4D1AA3735E07B389A /* Pod */ = { + isa = PBXGroup; + children = ( + E319824B0FA08CCFE69EFDA335EA4C45 /* LICENSE */, + 6D195CD277334A8679378ED118F3E2C6 /* README.md */, + 8AC1F8D36799F9ABF8BD5698B9D0D094 /* RNScreens.podspec */, + ); + name = Pod; + sourceTree = ""; + }; + 9BAE9849C289E48257EA0A274D2559BF /* Pod */ = { + isa = PBXGroup; + children = ( + 24F7B7E183DEA9C6609CEB0D8EEC5572 /* EXAppleAuthentication.podspec */, + ); + name = Pod; sourceTree = ""; }; 9BB451EB821AB63047B31B9C102AC3B8 /* FirebaseCoreDiagnostics */ = { @@ -16443,199 +16364,21 @@ path = FirebaseCoreDiagnostics; sourceTree = ""; }; - 9BB6234C987718DC13F14E841155ACC7 /* Support Files */ = { + 9C02DFC6B1D773DFF81048888F52D7D0 /* Pod */ = { isa = PBXGroup; children = ( - E520F185A3C7738EB377EC4FDA4521F2 /* React-RCTSettings-dummy.m */, - 18789E868EC609FF031C4FF9E7A205F2 /* React-RCTSettings-prefix.pch */, - 8F09C7FE093BD6A8CB157D39E6DEDE75 /* React-RCTSettings.debug.xcconfig */, - 381810022A980CE3E07CBAFCCA20F69B /* React-RCTSettings.release.xcconfig */, - ); - name = "Support Files"; - path = "../../../../ios/Pods/Target Support Files/React-RCTSettings"; - sourceTree = ""; - }; - 9C2BB1CC9390462F2FB8D3EFF60A138F /* Pod */ = { - isa = PBXGroup; - children = ( - C9E1CC4BE8E54D8BD85A389E56BC06AD /* EXFileSystem.podspec */, + 95552E68437FC08D2603DC7402B322FC /* React-RCTAnimation.podspec */, ); name = Pod; sourceTree = ""; }; - 9C600B3CF720D09E7726049BA09B2063 /* Pod */ = { + 9C19317942998BF1134439483CEE2E7A /* vendor */ = { isa = PBXGroup; children = ( - DC74CADD05342A7985DBEA1B0FBB5E10 /* LICENSE */, - DFB02A2A091BEC65DFC9E8B38C00DCA8 /* README.md */, - CE7D59CB5FF71F5B1A541F69ABFAC75C /* RNBootSplash.podspec */, + 430EA6CF1668ED63988C6F417D396AB3 /* bugsnag-cocoa */, ); - name = Pod; - sourceTree = ""; - }; - 9C72C7F8142B99D6AA06ECD694BADE6C /* Text */ = { - isa = PBXGroup; - children = ( - DC804774950FB558F15D16C53E14A2E3 /* NSTextStorage+FontScaling.h */, - C042E6B28BC90C905A83E58EF3A2CFFB /* RCTTextShadowView.h */, - E311B9BC095F8526FABFC27783015FC1 /* RCTTextView.h */, - 12769C158B809904700E4888E6AFFE0E /* RCTTextViewManager.h */, - ); - name = Text; - path = Libraries/Text/Text; - sourceTree = ""; - }; - 9C96ADE704FBC758CF1CCA401EA0546C /* Products */ = { - isa = PBXGroup; - children = ( - FE6D792B6328AAF68E46924D7F466631 /* AccessibilityResources.bundle */, - 3EEAA606F6866DA20E6601B9655B1027 /* libBugsnagReactNative.a */, - 6CBEFE4F9E22AFDC6347A739BB35FF8C /* libCocoaAsyncSocket.a */, - 6FFB7B2992BB53405E6B771A5BA1E97D /* libDoubleConversion.a */, - 7E7E46B76D0AFE3DFC477DC55C5DB326 /* libEXAppleAuthentication.a */, - AD40A94AE1ADFA1CDF9602BA3B04C90E /* libEXAV.a */, - 220361FF3B2778F8F38C2C4DCC5B49FD /* libEXConstants.a */, - ED1E3FC0DC90F4A787472917BFB6B235 /* libEXFileSystem.a */, - 80A51B61FECFED8D1A0D95AAD32A2938 /* libEXHaptics.a */, - 494E934B4070A029E1A8D42C9BDF4646 /* libEXImageLoader.a */, - 09B5856105EF7C6447B9EC57E7E36B34 /* libEXKeepAwake.a */, - 72558F571738704549E1838E845D2770 /* libEXLocalAuthentication.a */, - 72E494917AC5EC2582197F07061A28B0 /* libEXPermissions.a */, - 130335B611EDD6AFF8824641E06138D6 /* libEXVideoThumbnails.a */, - 574E8A849B86DCF8EE5726418D974721 /* libEXWebBrowser.a */, - ABFEEA82A6C346B22843FBE0B0582182 /* libFBReactNativeSpec.a */, - E2B63D462DB7F827C4B11FD51E4F8E2D /* libFirebaseCore.a */, - 8CC9178C366942FD6FF6A115604EAD58 /* libFirebaseCoreDiagnostics.a */, - 86375444C196BA272DDBB8165BF64A15 /* libFirebaseCrashlytics.a */, - 13C8C8B254851998F9289F71229B28A2 /* libFirebaseInstallations.a */, - E93F701CA8EB196D77AE99E094D873E4 /* libFlipper.a */, - AC12C7E29555A7CFDDEF1EDB5BC2F3DA /* libFlipper-DoubleConversion.a */, - 99D5CD245388DC76AAEF6E1E351A90ED /* libFlipper-Folly.a */, - E00BE2A3146698E81A8F9D00E8F93A6C /* libFlipper-Glog.a */, - ACBB7F62B267CC7C9BBBAE41DE94743B /* libFlipper-PeerTalk.a */, - FFDC7746794AB17CFB7150820479DF40 /* libFlipper-RSocket.a */, - 65234B3E668A42D9137B2C7AB051EE37 /* libFlipperKit.a */, - 06489499588BFA8FD5E63DD6375CD533 /* libFolly.a */, - 3CA7A9404CCDD6BA22C97F8348CE3209 /* libglog.a */, - 856B5CD56F194FAD26EA91620B66D614 /* libGoogleDataTransport.a */, - 6942351307BC1F54575D9853307EAE0E /* libGoogleDataTransportCCTSupport.a */, - B43874C6CBB50E7134FBEC24BABFE14F /* libGoogleUtilities.a */, - 279390C893577F74DD2049383E1EDD1A /* libKeyCommands.a */, - 5E4674603A5D5B9215FFA0F8E69F8B71 /* liblibwebp.a */, - B88A54159B245E727A6D16DEFE105A09 /* libMMKV.a */, - 4195015D26D9AC88BE151FE609A81EBD /* libMMKVAppExtension.a */, - E0B603F54009DAEF6C3BAAE621E5F180 /* libMMKVCore.a */, - 06FC5C9CF96D60C50FCD47D339C91951 /* libnanopb.a */, - 563E0A0FEB65B564D6A02A0A948B2E62 /* libPods-NotificationService.a */, - 586602EDE69E2D273945D156ECB89853 /* libPods-RocketChatRN.a */, - ABCA9F4CD6EE0D4686EBA505F526A436 /* libPods-ShareRocketChatRN.a */, - 3347A1AB6546F0A3977529B8F199DC41 /* libPromisesObjC.a */, - F958876A082BF810B342435CE3FB5AF6 /* libRCTTypeSafety.a */, - BD71E2539823621820F84384064C253A /* libReact-Core.a */, - 6771D231F4C8C5976470A369C474B32E /* libReact-CoreModules.a */, - 37592FDAD45752511010F4B06AC57355 /* libReact-cxxreact.a */, - D9F334F2E90E3EE462FC4192AF5C03BD /* libReact-jsi.a */, - F2E7C88DFCD460A4B46B913ADEB8A641 /* libReact-jsiexecutor.a */, - 2577F299FCB0A19824FE989BE77B8E8F /* libReact-jsinspector.a */, - 242758B9EDFF146ABE411909CAC8F130 /* libreact-native-appearance.a */, - B75A261FE3CE62D5A559B997074E70FC /* libreact-native-background-timer.a */, - 8C3E2A6E6F93E60E397F6C0BBA710BF5 /* libreact-native-cameraroll.a */, - 7E103FA6ED177E4D7EF38AD267B42C58 /* libreact-native-cookies.a */, - 08D1FFC2980C1ED72AE9A4C44A0544C3 /* libreact-native-document-picker.a */, - 8074129DF318155B29544548E1CAF4A3 /* libreact-native-jitsi-meet.a */, - 4047BC0750B116B1191149A8E7B5389B /* libreact-native-mmkv-storage.a */, - 012242E4480B29DF1D5791EC61C27FEE /* libreact-native-notifications.a */, - 48425DA2F01D82A20786D5E55E264A29 /* libreact-native-orientation-locker.a */, - 52FCF98CEFF94C742080B6965D537AD0 /* libreact-native-safe-area-context.a */, - 2B17A71888AA28CEFEC37B72F2A68A91 /* libreact-native-slider.a */, - 8DF63376066E2275FF26820B3A512A9B /* libreact-native-webview.a */, - FE7B9294FF05AAFD1653E2104E10844A /* libReact-RCTAnimation.a */, - F71EBF73F354B475D465FF6DE9A66707 /* libReact-RCTBlob.a */, - EEDBF403E8E0B3885E65C2741B536BC5 /* libReact-RCTImage.a */, - 802121F5B756ACBFDD6D08C36246DADD /* libReact-RCTLinking.a */, - A68E5A9B69A3BA0FD52CAF7A354EC93B /* libReact-RCTNetwork.a */, - 269BE773C9482484B70949A40F4EA525 /* libReact-RCTSettings.a */, - E6A16705C69FC7DE11C2469A4A0F8358 /* libReact-RCTText.a */, - C1A919103EAC9813D236486C34FC0A21 /* libReact-RCTVibration.a */, - D5C775614AC76D44CECB6BE08B022F1F /* libReactCommon.a */, - 51B50F20C76CF72E2BEF8D4764235306 /* libReactNativeART.a */, - 16E9F31EC059F2E6FADBF7D544CCCA1D /* libReactNativeKeyboardInput.a */, - 17772905A5DCAAE05D22C2CC78ABB63D /* libReactNativeKeyboardTrackingView.a */, - 858AFA83985937825473045CF6808B15 /* librn-extensions-share.a */, - 4FDA96879D96070EB1983E98E655CBDC /* librn-fetch-blob.a */, - 202722AA0D229A11350F6DC0F267A0BA /* libRNBootSplash.a */, - 5737DDB4BC95AD399B3206838AB97095 /* libRNCAsyncStorage.a */, - B8CD4B9B578CE9FA38114B638C9CAA78 /* libRNCMaskedView.a */, - 812ED9CD85898FB3B82136F7CB9A3191 /* libRNConfigReader.a */, - 72DE4BF3FB9CE0858E90F96FEF8A53AE /* libRNDateTimePicker.a */, - E0FE6533198104C97DB047DD5CD8AC67 /* libRNDeviceInfo.a */, - E55EA3C6F285F6FA8067C5C8A428FA64 /* libRNFastImage.a */, - 34C842CD40D88AB4B2BF24FC77DA0009 /* libRNFBAnalytics.a */, - 18D0B1E13C69654196028DD6EDCC3452 /* libRNFBApp.a */, - EE4AEFEACE275DDCFB42B9400BF6B218 /* libRNFBCrashlytics.a */, - 8F65F9361F2069CF9E9D751272968DE4 /* libRNGestureHandler.a */, - 3AEA4A114C08533A2C0F8E039A4C5EB9 /* libRNImageCropPicker.a */, - 15912309AA610251329D74FA111DE5CA /* libRNLocalize.a */, - C777CF2FB1E39A45CBBDB54E8693F471 /* libRNReanimated.a */, - E496A53A92B4E464B5C30DC5B1E4E257 /* libRNRootView.a */, - 50B5347C9A6E93B7D4CFC3673BA6FB7E /* libRNScreens.a */, - 8998273719FDD789E6F9C7541AFD0B33 /* libRNVectorIcons.a */, - B0B214D775196BA7CA8E17E53048A493 /* libSDWebImage.a */, - FCF61D9B2B75054A9A3185DDC609B7FF /* libSDWebImageWebPCoder.a */, - 7862C607B7BE0510C2D65193F9B4B4F9 /* libTOCropViewController.a */, - 2D86D213801ABEF7CD86291D4F3FDD34 /* libUMAppLoader.a */, - AF72FD600DE7E2D330BA50F877993E05 /* libUMCore.a */, - BC41F4BEFC115303267857B135A144AE /* libUMPermissionsInterface.a */, - 3B640835BAA914DD267B5E780D8CFEC7 /* libUMReactNativeAdapter.a */, - 65D0A19C165FA1126B1360680FE6DB12 /* libYoga.a */, - 5B3357A1CE67C0BF4AE31936A1BE6888 /* libYogaKit.a */, - 3DCCC9C42EB3E07CFD81800EC8A2515D /* QBImagePicker.bundle */, - FE1E812071397E31AE21DFF368B781B1 /* TOCropViewControllerBundle.bundle */, - ); - name = Products; - sourceTree = ""; - }; - 9CC3BB3D2AB4DF10C475BE71E361083C /* Pod */ = { - isa = PBXGroup; - children = ( - A291C68FDF6EABA33847A4B7BDEBD91B /* React-RCTLinking.podspec */, - ); - name = Pod; - sourceTree = ""; - }; - 9CE656F4C732E4BFEC5E9D514824E861 /* React-Core */ = { - isa = PBXGroup; - children = ( - 26A545BB4521618A4411ADB819D81B97 /* CoreModulesHeaders */, - 779D1B1C32EE8AEFEB2D4CF8428F167F /* Default */, - 0A5D767935971C34A1E5E42439FC120E /* DevSupport */, - 7AB19570D7E63EBE5AB8517EBF3ECE0A /* Pod */, - CECEFD6E271041A8ABD3586765BFE9D6 /* RCTAnimationHeaders */, - 6110DC87D643E5BB776753A2E2DA0B19 /* RCTBlobHeaders */, - 1782E4C0BAEC9779F492763333C34598 /* RCTImageHeaders */, - 880DD25C8EB60CF5AFF741B06575E376 /* RCTLinkingHeaders */, - 9DFAD1AEDEA1032D854F69609362D4B0 /* RCTNetworkHeaders */, - 4C4D46873C92A0CC07977C1F66AED631 /* RCTSettingsHeaders */, - 48B1E22D6494F8D9D78120D3A760E5EC /* RCTTextHeaders */, - 6670945F244007AF97B3B4793D972E83 /* RCTVibrationHeaders */, - 6DF023158562145E939F8A39A7E760CE /* RCTWebSocket */, - 5EEF917987BCC8AEF5CF5061469CE45C /* Resources */, - 95DB2161F10DC2494DEE86BB76F251D5 /* Support Files */, - ); - name = "React-Core"; - path = "../../node_modules/react-native"; - sourceTree = ""; - }; - 9CF207A6C9D805FD54018B5CADB2DB4E /* Support Files */ = { - isa = PBXGroup; - children = ( - 45E4D1EAD09F7CA0D14E56863A6BF8F9 /* EXKeepAwake-dummy.m */, - 7D4E4DC5E49587673355D1AEB0FBD285 /* EXKeepAwake-prefix.pch */, - 8EECD41092463F29BACCCD2298420D8D /* EXKeepAwake.debug.xcconfig */, - 240A0604FB3B4D9B563670304DDF5727 /* EXKeepAwake.release.xcconfig */, - ); - name = "Support Files"; - path = "../../../ios/Pods/Target Support Files/EXKeepAwake"; + name = vendor; + path = cocoa/vendor; sourceTree = ""; }; 9D05350BC834DB12AF6A7AC48E944276 /* UserDefaults */ = { @@ -16647,110 +16390,46 @@ name = UserDefaults; sourceTree = ""; }; - 9DD3303727E2848889ABD26D094BEB27 /* Support Files */ = { + 9D59CAAC5C499D5CAFE077FA7FF136A5 /* Handlers */ = { isa = PBXGroup; children = ( - DF681188117E7118975A20BE91DB9C2E /* UMImageLoaderInterface.debug.xcconfig */, - D361920963428B433A2ADC064FC14813 /* UMImageLoaderInterface.release.xcconfig */, + ACAD9C78E056AD7226461F4926E827D4 /* RNFlingHandler.h */, + 75F5287CB1010B04DDDAD619A3B717E0 /* RNFlingHandler.m */, + 34DCC42FA67629FEB512605D1BFEBDE0 /* RNForceTouchHandler.h */, + 81AC90B2EE224E62D204947695D45516 /* RNForceTouchHandler.m */, + 2F552E514D2EF12B47525EBC4FF41BB9 /* RNLongPressHandler.h */, + 57BA216B1389E78492600FAD2A931D2A /* RNLongPressHandler.m */, + 0038443937503E8F7775EB12685926F9 /* RNNativeViewHandler.h */, + 8969190E8CF8AD9B7A5DE697C2B2EEC6 /* RNNativeViewHandler.m */, + C05B11845BF008914EBA659F2E306C79 /* RNPanHandler.h */, + EA7CCE578247659B1632E00489116C48 /* RNPanHandler.m */, + 4DF9BDC94D7D090AAC215443CF1F8E86 /* RNPinchHandler.h */, + B5C143AB3CA83518CFCD44C393AE9920 /* RNPinchHandler.m */, + C97B622143A5155BF69A5EA97E062D0F /* RNRotationHandler.h */, + 505AC2CA7722CF9458A590359F9B9E5D /* RNRotationHandler.m */, + E59C4A01D83FB7C0D2CADD007B8259A8 /* RNTapHandler.h */, + 165CECF72188936C82EE111426516F28 /* RNTapHandler.m */, + ); + name = Handlers; + path = ios/Handlers; + sourceTree = ""; + }; + 9DDAB9AE75298D983C8E8E0DFDA6BDE2 /* Support Files */ = { + isa = PBXGroup; + children = ( + E98ACFEF9F03D77A90F0ED273811E49B /* ReactNativeART-dummy.m */, + E1881A425E65AA4CF092A8BA4C4386A4 /* ReactNativeART-prefix.pch */, + 5B2A93BF0331B2DD1FA0130AC6DE5F35 /* ReactNativeART.debug.xcconfig */, + 30027C4C59F07D43E67791AD69BE78A3 /* ReactNativeART.release.xcconfig */, ); name = "Support Files"; - path = "../../../ios/Pods/Target Support Files/UMImageLoaderInterface"; + path = "../../../ios/Pods/Target Support Files/ReactNativeART"; sourceTree = ""; }; - 9DFAD1AEDEA1032D854F69609362D4B0 /* RCTNetworkHeaders */ = { + A0199E7239D676DF34BFCB12430A203D /* Pod */ = { isa = PBXGroup; children = ( - CCFE3517B8155FC4FAB5E748CA4F0AF0 /* RCTDataRequestHandler.h */, - 2AFB8E0F83F5D33F086E1ADC77CE19AE /* RCTFileRequestHandler.h */, - C56F2DA2C7F1E8F9DB4857ED819213A1 /* RCTHTTPRequestHandler.h */, - 13BE659A6BB32780BE92A7BC3C7C9B52 /* RCTNetworking.h */, - FB84F7412C58504835C6E61D33EB4C5D /* RCTNetworkPlugins.h */, - 063E2E543E65D3B537179D7975167DBD /* RCTNetworkTask.h */, - ); - name = RCTNetworkHeaders; - sourceTree = ""; - }; - 9ED079D851167E88732EDE5AF46C7F67 /* Pod */ = { - isa = PBXGroup; - children = ( - 9A67BC0E541A9D25F6A5A49A2496768B /* advancedIos.md */, - 328B0CA65EF2262F638651C7A6AA1AFF /* installation.md */, - BC488A23661459D78B3AAE07E520B0F0 /* LICENSE */, - 2603074FEBFC477C3D117AB5C694CAD9 /* localNotifications.md */, - D856AB5537848570AF1BB8E671AD202F /* notificationsEvents.md */, - EBAA76A623C8B547437FD0117AD7E1BC /* react-native-notifications.podspec */, - BE073D0DD5ECA301ED61E24C790ED6C3 /* README.md */, - 81118BF48D985BBD3F4B1B670E8F2DA7 /* subscription.md */, - ); - name = Pod; - sourceTree = ""; - }; - 9F01BA565B63C672890B6711D54BA225 /* UMSensorsInterface */ = { - isa = PBXGroup; - children = ( - 7DF188500B821D2A3F9FE8B0BBE2C438 /* UMAccelerometerInterface.h */, - CFCB57D8AD754C62A592AD22F73AD0C9 /* UMBarometerInterface.h */, - 7BCF154E10A7B538805D44D3345C4AE2 /* UMDeviceMotionInterface.h */, - D9F6F69292C2F6F64608AA02822B5C99 /* UMGyroscopeInterface.h */, - B5A0E639535A43CD1EE73AE08E99399F /* UMMagnetometerInterface.h */, - 0F919D9C2C8ADB90E776350580593764 /* UMMagnetometerUncalibratedInterface.h */, - 141794D377F8B494684B6C3E7F8FDCC3 /* Pod */, - 2C541E9B9656B60529E2822BEC8F1AD4 /* Support Files */, - ); - name = UMSensorsInterface; - path = "../../node_modules/unimodules-sensors-interface/ios"; - sourceTree = ""; - }; - 9F08E35505D2EEE7576E2B296CF9CF75 /* Support Files */ = { - isa = PBXGroup; - children = ( - A771D8CBDD067DB49AF9207743058629 /* rn-fetch-blob-dummy.m */, - 8D2E9A5AE0578008F281459CB9A08251 /* rn-fetch-blob-prefix.pch */, - 04264099B10AC369360E77DC32FBA9A5 /* rn-fetch-blob.debug.xcconfig */, - FC2860AA6BBDB3E9FB279C716016411E /* rn-fetch-blob.release.xcconfig */, - ); - name = "Support Files"; - path = "../../ios/Pods/Target Support Files/rn-fetch-blob"; - sourceTree = ""; - }; - A0D0A721FDFA834AA78EF333CBEE0D72 /* Support Files */ = { - isa = PBXGroup; - children = ( - 2AE8ED4D47EA19D4D505FAC25A66067E /* UMCameraInterface.debug.xcconfig */, - 328D33677E43C627904AA64DB0C9ADAB /* UMCameraInterface.release.xcconfig */, - ); - name = "Support Files"; - path = "../../../ios/Pods/Target Support Files/UMCameraInterface"; - sourceTree = ""; - }; - A0D690C389A7578A96C11AE72AF35FE2 /* react-native-jitsi-meet */ = { - isa = PBXGroup; - children = ( - C93CF245B68730A4106CB88F659BCF9D /* RNJitsiMeetView.h */, - AFCF9E1E2D811F925E31D06D83E33E59 /* RNJitsiMeetView.m */, - 4AA9214E80ABD8633D03CE765739D87E /* RNJitsiMeetViewManager.h */, - F8039EED794F2A04F14695B7D2404C45 /* RNJitsiMeetViewManager.m */, - A1D03F8AADF9F38DC515981BD4C1C5A8 /* Pod */, - 19DD4BF0D2BA1792C46D8F63B1B64A65 /* Support Files */, - ); - name = "react-native-jitsi-meet"; - path = "../../node_modules/react-native-jitsi-meet"; - sourceTree = ""; - }; - A1115708637BBF26EE97A9665E561161 /* Pod */ = { - isa = PBXGroup; - children = ( - 61762F11F9DF31EAB9C7312E6B679C47 /* LICENSE */, - F39F75CD0519FDEC289CE7B6DD93F1E1 /* README.md */, - 4FC5FD206FDA8596406D871F557C3CC8 /* RNFBAnalytics.podspec */, - ); - name = Pod; - sourceTree = ""; - }; - A1715B3CA2753027E5EA8197BC7F58AF /* Pod */ = { - isa = PBXGroup; - children = ( - 29622706EC0A8413E4BCAC4ED3B8A4A9 /* UMCore.podspec */, + EFB1EC12BAAB3786F445260E6334B505 /* React-RCTImage.podspec */, ); name = Pod; sourceTree = ""; @@ -16776,53 +16455,34 @@ path = glog; sourceTree = ""; }; - A1D03F8AADF9F38DC515981BD4C1C5A8 /* Pod */ = { + A2E3C6838D0D01DADBBF16FB4CE2040A /* TextInput */ = { isa = PBXGroup; children = ( - 6230D56843EEEDD6911A8EA529A78DF9 /* LICENSE */, - 3F13EB1F5655AF4A8A32C61FD6D851E8 /* react-native-jitsi-meet.podspec */, - 64943AE33232EE083680F7A06B4520AC /* README.md */, + EE125F69D84359A3F82864F3178CA6C3 /* RCTBackedTextInputDelegateAdapter.m */, + 6EC31A7E21065C343EAC68D90EFC2994 /* RCTBaseTextInputShadowView.m */, + 72ECF21D2993D114EB1E5CDF3328E2AE /* RCTBaseTextInputView.m */, + E8AE532D51ABED7FC35AEF600D8411C3 /* RCTBaseTextInputViewManager.m */, + E4291A0C22A564FBF7DB4C2E89F5B409 /* RCTInputAccessoryShadowView.m */, + 9E5B1F1258B76DB7E85081EC04F9AFD0 /* RCTInputAccessoryView.m */, + 9FF293186ED50310BDCC3A0C25E87310 /* RCTInputAccessoryViewContent.m */, + A2BD7930E6BFE5A41A1821E924A6F1BF /* RCTInputAccessoryViewManager.m */, + E9F90B8FCB470D2192F31D6C144E76C7 /* RCTTextSelection.m */, + 69B343F63C1AE210AB6B5B2964BF6B7A /* Multiline */, + E8BE0F476DF748FF7A6E2926A5DF1D96 /* Singleline */, ); - name = Pod; + name = TextInput; + path = TextInput; sourceTree = ""; }; - A25D44189272012B9CE829CE329E5F32 /* Support Files */ = { + A3835B03F4AFE88F2F4133BFC68690DF /* UMConstantsInterface */ = { isa = PBXGroup; children = ( - D18C3913BE966444087C2C07EEEFFAB9 /* React-RCTText-dummy.m */, - 87A27DFB848B1D91986B582737F67521 /* React-RCTText-prefix.pch */, - 4956774B7CEB3C00668F241520D85D57 /* React-RCTText.debug.xcconfig */, - D00CA78130748B67E6183E86B93CBA1E /* React-RCTText.release.xcconfig */, + 9D7291D61325DACDDA505BC04F56F0F6 /* UMConstantsInterface.h */, + E66FE4ADDEDBB4E742159F777C4024CA /* Pod */, + E832BE0982D85AE2B1B074FCE96C3061 /* Support Files */, ); - name = "Support Files"; - path = "../../../../ios/Pods/Target Support Files/React-RCTText"; - sourceTree = ""; - }; - A3AEAD23E7A03E1D0F23C2ED39654FAB /* Pod */ = { - isa = PBXGroup; - children = ( - F7B12EF93162BD019F19684ACA1D380C /* UMFaceDetectorInterface.podspec */, - ); - name = Pod; - sourceTree = ""; - }; - A3BA7870D82678CCF297623E779A7007 /* Pod */ = { - isa = PBXGroup; - children = ( - 7715D0E3CFB75F67FEE64C273A3B1703 /* LICENSE */, - 3BC93B6831CA460AE41FA2A1BDC200AE /* README.md */, - 0CA915474D78F85DA6EDC4CB123DFBA4 /* RNFBCrashlytics.podspec */, - ); - name = Pod; - sourceTree = ""; - }; - A3D93461A099F1E6E8B48163D1A5D8C0 /* RNConfigReader.xcodeproj */ = { - isa = PBXGroup; - children = ( - 1391CAE7988E836552045C7CEE132EAB /* project.pbxproj */, - ); - name = RNConfigReader.xcodeproj; - path = ios/RNConfigReader.xcodeproj; + name = UMConstantsInterface; + path = "../../node_modules/unimodules-constants-interface/ios"; sourceTree = ""; }; A4BD9703F9F43D3B54B612A58BF81EB8 /* SDWebImage */ = { @@ -16835,16 +16495,17 @@ path = SDWebImage; sourceTree = ""; }; - A4F7178970D321F93655D5010C1A8A0B /* EXLocalAuthentication */ = { + A4CF8B70EB201B72E56D6148D39CEB0C /* RNVectorIcons */ = { isa = PBXGroup; children = ( - A4ABC77A958C97FA418FE3A22CDD6578 /* EXLocalAuthentication.h */, - DD71F6A9E0EC82BE4DD83A952587DFD8 /* EXLocalAuthentication.m */, - C7EFCC0DF1E201722806663C2CA529FC /* Pod */, - BAAF7FEF08B6486425931A89F9FC3BA5 /* Support Files */, + FA64382D09BA132AF7E961533E75C9F2 /* RNVectorIconsManager.h */, + D0F2DC87E7E74A05A17321E86C47778C /* RNVectorIconsManager.m */, + 02323EB0705E5CEB2B200AA6C40F5907 /* Pod */, + FC1550E2EBD8F2283B366B89132683CF /* Resources */, + 98918DD13579DBFD93FA0AA672CBB8E8 /* Support Files */, ); - name = EXLocalAuthentication; - path = "../../node_modules/expo-local-authentication/ios"; + name = RNVectorIcons; + path = "../../node_modules/react-native-vector-icons"; sourceTree = ""; }; A5022E231A23D8572173516017C3EEF7 /* Support Files */ = { @@ -16857,84 +16518,110 @@ path = "../Target Support Files/CocoaLibEvent"; sourceTree = ""; }; - A545B6C991DB6190BB3E2DD38991FB69 /* Pod */ = { + A5F895577011A0C393C1ED66C32284B5 /* Support Files */ = { isa = PBXGroup; children = ( - 2EAFCBAA5D97BE2F1EBB907AC5FA7666 /* EXHaptics.podspec */, + BF546F3405187DE219241C660D45568C /* RNCAsyncStorage-dummy.m */, + 4FDF8D5BD33BEF9E73173B4AAF01D661 /* RNCAsyncStorage-prefix.pch */, + 79D2F6D6133F4321E9CD3845016C0747 /* RNCAsyncStorage.debug.xcconfig */, + E842FB0194152421B0388A100AC13F5D /* RNCAsyncStorage.release.xcconfig */, + ); + name = "Support Files"; + path = "../../../ios/Pods/Target Support Files/RNCAsyncStorage"; + sourceTree = ""; + }; + A6243F9C6077D3D604D3220E43480298 /* UMFontInterface */ = { + isa = PBXGroup; + children = ( + 565DCFAAE81C7FABF42B4DFF9756E7F6 /* UMFontManagerInterface.h */, + E562EE4FB797C8662A28586B44A0F666 /* UMFontProcessorInterface.h */, + AACAC5766472F3259AD33FBC3185A93D /* UMFontScalerInterface.h */, + A525327B785CAC4903421EE18207F613 /* UMFontScalersManagerInterface.h */, + C7834E37344BC73204B9336317D7D731 /* Pod */, + DD48AACE4AF818416D524AC1E2ABEFCD /* Support Files */, + ); + name = UMFontInterface; + path = "../../node_modules/unimodules-font-interface/ios"; + sourceTree = ""; + }; + A632918A05B0C0F8185DB87876A4AFF4 /* Support Files */ = { + isa = PBXGroup; + children = ( + 7705E58971666626858298B319CE3F93 /* UMCameraInterface.debug.xcconfig */, + A20E55FFE43C2FCD63BD69DBE230BA59 /* UMCameraInterface.release.xcconfig */, + ); + name = "Support Files"; + path = "../../../ios/Pods/Target Support Files/UMCameraInterface"; + sourceTree = ""; + }; + A6C523909041BADC325BE7D56F048ABB /* VirtualText */ = { + isa = PBXGroup; + children = ( + 30B81318CEBAC9029D39DB0942C62F50 /* RCTVirtualTextShadowView.m */, + F95DA952A03887E593F6A72FF89BD818 /* RCTVirtualTextViewManager.m */, + ); + name = VirtualText; + path = VirtualText; + sourceTree = ""; + }; + A71599AA86EAE92085E010DEC2713348 /* Sentry */ = { + isa = PBXGroup; + children = ( + B6E339C45A232633FEDBD95AF585254D /* BSG_KSCrashSentry.c */, + ED4EBB0D34414B78E6F16D443D1C15CF /* BSG_KSCrashSentry.h */, + 3B81C5658EA30CBAC7F3ECEADAA14F25 /* BSG_KSCrashSentry_CPPException.h */, + F9F2A50B03D025FC1211F91251E6DEA7 /* BSG_KSCrashSentry_CPPException.mm */, + 0B46F02D35C6E887BE14C61F272C0792 /* BSG_KSCrashSentry_MachException.c */, + BD96C5CA8DE17ACBCDA763322BA77B4A /* BSG_KSCrashSentry_MachException.h */, + 07E46AF9C96EE50EE5FFB1E6032FC442 /* BSG_KSCrashSentry_NSException.h */, + E1373DD4F8357B73B5459460092A0AFC /* BSG_KSCrashSentry_NSException.m */, + 5D5B6DDBD1676530D94609E7A91E5A0B /* BSG_KSCrashSentry_Private.h */, + 2A2BE72BF262867899367F5232C7E751 /* BSG_KSCrashSentry_Signal.c */, + 0CB914CB5A4080A4AEFD0FAF60BEBC18 /* BSG_KSCrashSentry_Signal.h */, + CB2419D38E6A5851A62CBF61C80EC5B8 /* BSG_KSCrashSentry_User.c */, + 3C4961EE6893C92B8D556E78119823E7 /* BSG_KSCrashSentry_User.h */, + ); + name = Sentry; + path = Sentry; + sourceTree = ""; + }; + A8CA2E7820F721584A0DCD0F57905F2E /* Pod */ = { + isa = PBXGroup; + children = ( + 3F77891D595E4C844D2662EDC090247D /* LICENSE.md */, + 2D65F88990F3839685AA02C6C80A6D60 /* README.md */, + B13DE9FE3415AEB56CC9AFC05261FB92 /* RNDateTimePicker.podspec */, ); name = Pod; sourceTree = ""; }; - A5C3840DD86195F6C22AD127E5F59154 /* Support Files */ = { + A9BF672E0753827D27953250ABA66311 /* Protocols */ = { isa = PBXGroup; children = ( - 38312F520B2C0F50CE500EB026C95A1C /* RCTTypeSafety-dummy.m */, - 614819B2D574266BADC22FC38FE98BCE /* RCTTypeSafety-prefix.pch */, - A59873A2151FBF63DAA0862DE801D1AE /* RCTTypeSafety.debug.xcconfig */, - 491BE702DDF7794091447DE465250257 /* RCTTypeSafety.release.xcconfig */, + C02676E9B7E1F93FE6C234DC97F32985 /* UMAppLifecycleListener.h */, + FAB2F8113C0E0E0ED8539E5B2D144E9C /* UMAppLifecycleService.h */, + 593848E320E7B0CB4ED7A4AAC418DD90 /* UMEventEmitter.h */, + 7C1DAA8A5E4DD55981700D3946D57BFF /* UMEventEmitterService.h */, + 36FAA34B9091992AC29AD6C429424384 /* UMInternalModule.h */, + E5196A8601779BD3365AB38A763B910E /* UMJavaScriptContextProvider.h */, + 9449A50CF22507F460ECAD220F2E714B /* UMKernelService.h */, + 19153D097CD7D2C239B4CDB0599A8D64 /* UMLogHandler.h */, + 12FB1FD075CE4489FF614176A888A7CB /* UMModuleRegistryConsumer.h */, + 6B2CC74B0D9DC7218C75205D578D24A9 /* UMUIManager.h */, + DCC569001FB6B2E5F2E4A1B3102FC676 /* UMUtilitiesInterface.h */, ); - name = "Support Files"; - path = "../../../../ios/Pods/Target Support Files/RCTTypeSafety"; + name = Protocols; + path = UMCore/Protocols; sourceTree = ""; }; - A6F421855D6AB1D1DB8A3199655DE343 /* Pod */ = { + AAD9E15A736134B918D413C06BD09474 /* Filters */ = { isa = PBXGroup; children = ( - F03382C69DFBABB2DD7976155CEDE2DD /* React-RCTBlob.podspec */, + 7276BB5A3FF9049045EFFA27F32B74A9 /* BSG_KSCrashReportFilter.h */, + 2B8F49EBED007C3C57746CBB11AD0027 /* BSG_KSCrashReportFilterCompletion.h */, ); - name = Pod; - sourceTree = ""; - }; - A7C40E40254E48BAE66811C865E24C74 /* RNLocalize */ = { - isa = PBXGroup; - children = ( - E87932547D9F3089483EE98DD7F6C76F /* RNLocalize.h */, - 43BB592AC682C7916135FFA71B6E7D2B /* RNLocalize.m */, - E67AAC0A27FEC1102B53A4CE8AF5575E /* Pod */, - 5A459960D6CFBC076295E0C11B5CE13A /* Support Files */, - ); - name = RNLocalize; - path = "../../node_modules/react-native-localize"; - sourceTree = ""; - }; - A8B98527ECC67F41B8F69CE6FFCA004F /* UMFaceDetectorInterface */ = { - isa = PBXGroup; - children = ( - 41C2E2C1CD378DA7F3D84F4A99A6B16E /* UMFaceDetectorManager.h */, - F966C8F147E0EBC2FB6FA6061DD5CF3E /* UMFaceDetectorManagerProvider.h */, - A3AEAD23E7A03E1D0F23C2ED39654FAB /* Pod */, - 80781ED6A52467FA288B316E0E11CC06 /* Support Files */, - ); - name = UMFaceDetectorInterface; - path = "../../node_modules/unimodules-face-detector-interface/ios"; - sourceTree = ""; - }; - A9387CF7966E546046E2F9ED7B573504 /* LNInterpolation */ = { - isa = PBXGroup; - children = ( - DDBA323F70092B9A5A7C3702A096E6F6 /* Color+Interpolation.h */, - 479AD4FF8D6EDE3854F66F693EC50FC4 /* Color+Interpolation.m */, - B8FE5FD3EA2019EA36AE625A30E86DE9 /* LNAnimator.h */, - 681F8AF4264FDD3F88EF3C867529EC46 /* LNAnimator.m */, - 2DF13A81DF5DC2707D07670437B879ED /* LNInterpolable.h */, - 31EE4D699487DFA9B5739BFE68377FE6 /* LNInterpolable.m */, - 72456855E661BED404A920429EBFBBD3 /* LNInterpolation.h */, - E4BB3E4F4BF1AAE167A8E5EF060CB906 /* NSValue+Interpolation.h */, - ); - name = LNInterpolation; - path = lib/ios/LNInterpolation; - sourceTree = ""; - }; - AB12B5EFBD14AC0274E96A461BDF4922 /* Support Files */ = { - isa = PBXGroup; - children = ( - 679FE0776CFF119C578544CA4F55D90F /* RNGestureHandler-dummy.m */, - CFFCDECA7EBF6812A30EAF74864C7167 /* RNGestureHandler-prefix.pch */, - 253B9A685B03722020ACAA2653DDBDCF /* RNGestureHandler.debug.xcconfig */, - C024616A7F971881825C53BFA4C681FD /* RNGestureHandler.release.xcconfig */, - ); - name = "Support Files"; - path = "../../ios/Pods/Target Support Files/RNGestureHandler"; + name = Filters; + path = Filters; sourceTree = ""; }; AB2FD0CB1DC61420565381A535B87AB2 /* boost-for-react-native */ = { @@ -16946,6 +16633,16 @@ path = "boost-for-react-native"; sourceTree = ""; }; + AB4885A87527B5E5A4E8D05E42A4D196 /* Support Files */ = { + isa = PBXGroup; + children = ( + FB67DE7570F66944A6D8D9DCE33229B0 /* UMSensorsInterface.debug.xcconfig */, + 6A653D7B9D37FA53E3075AA514F01543 /* UMSensorsInterface.release.xcconfig */, + ); + name = "Support Files"; + path = "../../../ios/Pods/Target Support Files/UMSensorsInterface"; + sourceTree = ""; + }; AB529415742B86552D722F50B7935C63 /* Frameworks */ = { isa = PBXGroup; children = ( @@ -16957,299 +16654,180 @@ name = Frameworks; sourceTree = ""; }; - AB75C7A1FBE5932918837FE11AD9BE23 /* RCTTypeSafety */ = { + AB7F4F8C240931FFA043924262EA241D /* RNFBApp */ = { isa = PBXGroup; children = ( - 5616FE4883461F428F373266531C33AA /* RCTConvertHelpers.h */, - BC6A56B2103C7FBB3A585B52A0D04257 /* RCTConvertHelpers.mm */, - 5E61BC63F94EA8B1B56C3F71F0DF3932 /* RCTTypedModuleConstants.h */, - 8E67975B58D2B1A70A0463A70D9C98E2 /* RCTTypedModuleConstants.mm */, - D867B9C36AAF93BB07B4B326E76A4BEE /* Pod */, - A5C3840DD86195F6C22AD127E5F59154 /* Support Files */, + 36853FC6F15D3BD1A734B57036B0E500 /* RCTConvert+FIRApp.h */, + 1E1C2C4244877057C8EF07689B58B137 /* RCTConvert+FIRApp.m */, + A8F0290DFE7AD596019126092B9342BA /* RCTConvert+FIROptions.h */, + 24EFC63E862C3EC720F077DAE67C3147 /* RCTConvert+FIROptions.m */, + 9527CB009A4357CB2F39838184EA439B /* RNFBAppModule.h */, + 5D05064985ABDECFAD90DAA8EA7A3E7B /* RNFBAppModule.m */, + FAEE8FD0388A3BDD44335132BDAF74DD /* RNFBJSON.h */, + 93DB38E9D30DB45A730E514C59E52670 /* RNFBJSON.m */, + 738841D1B0F383E802F2042816867763 /* RNFBMeta.h */, + 1FB8B81346229A35FFC8613A8CCB527F /* RNFBMeta.m */, + 663E7CD908F00288887179732A22BC3E /* RNFBPreferences.h */, + CE09A37DC922DC3974CE8B6614EB48F6 /* RNFBPreferences.m */, + 0A471759F497FD68797578567C427CDA /* RNFBRCTEventEmitter.h */, + DD4B0FD90EC53F24ED9D645DE9F28329 /* RNFBRCTEventEmitter.m */, + FDCACD3292A92443EA5C6F7B4756FFB5 /* RNFBSharedUtils.h */, + 1E343992E1FAC98C935CAFF46CCCCF32 /* RNFBSharedUtils.m */, + BF284EB59B526B332F6F42408804630B /* RNFBUtilsModule.h */, + B698277961B93EEFACEA54383F04012A /* RNFBUtilsModule.m */, + 68C18BFAB40D1AC0B74712801B1BF7DC /* RNFBVersion.h */, + C6198FE4A7665EA266F5F058ECC857E0 /* RNFBVersion.m */, + D5FA9CE10DDB0072623872BCE8BFD4EC /* Pod */, + 983590500D6948A5752C33AA721DB03F /* Support Files */, ); - name = RCTTypeSafety; - path = "../../node_modules/react-native/Libraries/TypeSafety"; + name = RNFBApp; + path = "../../node_modules/@react-native-firebase/app"; sourceTree = ""; }; - ACB9607D84896078272620A2E1D962D4 /* Resources */ = { + AC3EED847550E1F6D91D62C4CAFE1F96 /* Support Files */ = { isa = PBXGroup; children = ( - 32EFF23C5D7562F6C858A50A7A4258A8 /* AntDesign.ttf */, - 865C102D39A7D472F578BF83450016DC /* Entypo.ttf */, - BFA3321B234B08C7B816977EB7FECA58 /* EvilIcons.ttf */, - 83F22593E2A934B430841A48D9801164 /* Feather.ttf */, - 8DF78B4B81C3C19E39ADF3D34859C626 /* FontAwesome.ttf */, - 936D72B3D0E143CB516F5BF22CBADAB4 /* FontAwesome5_Brands.ttf */, - 843B1EF185471BC08E9BA3B40CB9DDB0 /* FontAwesome5_Regular.ttf */, - 53F35907FAA3E87EC41A5869F4B00646 /* FontAwesome5_Solid.ttf */, - 577C1C8DC38F16DD4F965E1B128C0CE4 /* Fontisto.ttf */, - 4DCE9007D77EB18D5FAB788689DE140A /* Foundation.ttf */, - 4D99BA9B27AB22CAB03D1EFE09E33E0E /* Ionicons.ttf */, - 2858B3C406226118D28DC967086236A6 /* MaterialCommunityIcons.ttf */, - 841D44BF593332B09202C9A5E64459B8 /* MaterialIcons.ttf */, - B56B664308FCB6852CE5A0F93B6EF57E /* Octicons.ttf */, - 39F46680FF08FA6F0073C1BD702C5DCF /* SimpleLineIcons.ttf */, - 737458C07B96B88B234E2C441DB04B85 /* Zocial.ttf */, + 2A7A06B9C6BB0524CF511FA038538A70 /* UMPermissionsInterface-dummy.m */, + C7CA65108DB14A86E5A6EC93C2D0FAE9 /* UMPermissionsInterface-prefix.pch */, + A7973544829EA3BF8EC37AD66DB844F3 /* UMPermissionsInterface.debug.xcconfig */, + FBFC807669C93C25E3305116FCDC8837 /* UMPermissionsInterface.release.xcconfig */, ); - name = Resources; + name = "Support Files"; + path = "../../../ios/Pods/Target Support Files/UMPermissionsInterface"; sourceTree = ""; }; - AFFFE20E862C5AF555EAA589CEB78765 /* Pod */ = { + ACBDA655418C8CA1DBDE87DB7F81E940 /* Nodes */ = { isa = PBXGroup; children = ( - FD514DC6C839CAE30673C5D7D536281F /* Yoga.podspec */, + FE44C04F1ACFD7D5E1B381AA6113E68F /* REAAlwaysNode.h */, + FCB0C513BB5929DB720B39D2081ADD7B /* REAAlwaysNode.m */, + BB303780E5625A5F44EF222F1177D5E7 /* REABezierNode.h */, + 5A7A81D6A91D612D952CF94A50D5108C /* REABezierNode.m */, + 5D289C87CB35562DC78D801729917477 /* REABlockNode.h */, + 01FBB60C12BF83A6945FAB06D9E0D432 /* REABlockNode.m */, + AB2D1941EEDB949949D108EB02723FB5 /* REACallFuncNode.h */, + C87081B7A7CE9EBCD9709C1C321C4D4A /* REACallFuncNode.m */, + EFDE3811302227FA99A72245CA18092A /* REAClockNodes.h */, + D5609C8A9C5815B0F95C2122E560BEC7 /* REAClockNodes.m */, + B9A99059D66C0A81EA8F66AB4CA6FD73 /* REAConcatNode.h */, + 5FB8C63F680562186BBD3E59739B4273 /* REAConcatNode.m */, + 490F639165FEF1EBB90D7CE4AEA832A1 /* REACondNode.h */, + F49FFE22DD8A2C906F3B99017B153065 /* REACondNode.m */, + F7C026615F683DD5D47F4F6AEDE5710E /* READebugNode.h */, + 119664C5DB633E01FA1E09ED44FE65C0 /* READebugNode.m */, + 2B1707F6B00B819F5C1CDFBCFE481E89 /* REAEventNode.h */, + ACDE4DEFDEB550C64CD5BD4B7A7FCBA5 /* REAEventNode.m */, + A85E740F7324B436A14DAA9774F14F54 /* REAFunctionNode.h */, + 791F6D8DB121E610779FEFFF32231F82 /* REAFunctionNode.m */, + 19775B292FBC33D8E72DE17AB66B8048 /* REAJSCallNode.h */, + E4DBD6562F19ADFAA30FFACD9839D64D /* REAJSCallNode.m */, + 573BD7573CC2D618C251A8172FBAE621 /* REANode.h */, + 77B19152B494BA1B36F7AB79B984AB98 /* REANode.m */, + F82B3731EBF63DA2A05EFEF28118970A /* REAOperatorNode.h */, + CCA4EBF3A7E4A4B8C5515F21F510B772 /* REAOperatorNode.m */, + C299BBA12390470959352EDDD74E3571 /* REAParamNode.h */, + 2A7BD31EFF63B3F992B7DD689773C445 /* REAParamNode.m */, + 0F6AE8861B7DFAC3DB672F5BBB668797 /* REAPropsNode.h */, + 1D812D9B141E45485A16077001C2371A /* REAPropsNode.m */, + 1CB8B41FF44F17347FE529F0BF24AE17 /* REASetNode.h */, + 25D411FCF75BE42191E210883867EC33 /* REASetNode.m */, + 40E14CDDD4B220ACBCC5D0293B39C2EB /* REAStyleNode.h */, + CAA93BAEA634ABC2D37E973391483399 /* REAStyleNode.m */, + 09F07623EF792B7E062D8915EA0CF9C8 /* REATransformNode.h */, + 2181B6496948B00951555D7B00482551 /* REATransformNode.m */, + 15F9210C803B8C538F79B6F81450930F /* REAValueNode.h */, + DA3FEB9D96DE8AC187E74978B37A108F /* REAValueNode.m */, + ); + name = Nodes; + path = ios/Nodes; + sourceTree = ""; + }; + ACD44710E53FA0AF5352FEDE8D0BBC64 /* Pod */ = { + isa = PBXGroup; + children = ( + 8BDD25E153EE6C3A3DF2D23400DD54D7 /* React.podspec */, ); name = Pod; sourceTree = ""; }; - B02039631428F9D4DBCACFEDCAB96BF9 /* Pod */ = { + AD57F0318089FC55B0E8852C8FE52EF4 /* Pod */ = { isa = PBXGroup; children = ( - EAA89C337BBDAED7F2802BECE9B200DB /* UMPermissionsInterface.podspec */, + A8EB62C697C69094C7FAE6AB565E81C2 /* LICENSE */, + 2FC31B85AE901CDD404EF5E4319E4997 /* ReactNativeKeyboardTrackingView.podspec */, + 6031319F68ABEB765689862837B9024E /* README.md */, ); name = Pod; sourceTree = ""; }; - B114AD28ED28AE03783C18796A445B18 /* ScrollView */ = { + B1963BE5A005556D99FD7ECB6C8D834F /* Pod */ = { isa = PBXGroup; children = ( - CB01C1E81C5C4C18A7EB21CE16A0867B /* RCTScrollableProtocol.h */, - 1CDE50EA2C2F3D84048A4674DC950D74 /* RCTScrollContentShadowView.h */, - B8F66399ADB837C4F6DDB78D18E61392 /* RCTScrollContentShadowView.m */, - 889AC4585FC0CF11E59FA4BC41902F33 /* RCTScrollContentView.h */, - D49BD9594FA69C7DCE14EF69C1BD7912 /* RCTScrollContentView.m */, - B56D94C0DBA9BAD5FF5EEC37AD360624 /* RCTScrollContentViewManager.h */, - DDC716AC6C440336F5C3AE88DC61EB85 /* RCTScrollContentViewManager.m */, - 5CFFBDDC4D6EA6D00B0120B61EA6182A /* RCTScrollEvent.h */, - 2B8BE2ECD06D9EDDE367C058CB0E9DA7 /* RCTScrollEvent.m */, - 5BFF236C040D554B572D0078D72502BC /* RCTScrollView.h */, - 57A13CEB3147F872D0A166EEF0D2A3E5 /* RCTScrollView.m */, - CBE6C2B5713C7453835DB639E7FB9C83 /* RCTScrollViewManager.h */, - 0322873C7A1E58DBF96AFD30EE01AEEE /* RCTScrollViewManager.m */, - ); - name = ScrollView; - path = ScrollView; - sourceTree = ""; - }; - B136CC6E2F397AB8AF475C4F14D06A43 /* Support Files */ = { - isa = PBXGroup; - children = ( - 106331FE6D581CF0C0EA01A2E6FD2214 /* EXImageLoader-dummy.m */, - 4856E4B99BCEC6FFAED5E4BED783FF19 /* EXImageLoader-prefix.pch */, - B9853DF4A475033BBD0E2DC7B38FF186 /* EXImageLoader.debug.xcconfig */, - C14756E56C3613A0E54881830E099898 /* EXImageLoader.release.xcconfig */, - ); - name = "Support Files"; - path = "../../../ios/Pods/Target Support Files/EXImageLoader"; - sourceTree = ""; - }; - B1AB7A685813F87E6F10088EFF9D7EC6 /* React-RCTLinking */ = { - isa = PBXGroup; - children = ( - 456108B3214E143622CB7C6C724916A5 /* RCTLinkingManager.mm */, - 6659CA263E9BE993C0CDDC48CB848A07 /* RCTLinkingPlugins.mm */, - 9CC3BB3D2AB4DF10C475BE71E361083C /* Pod */, - 074351399A186546AA249738908DBB4A /* Support Files */, - ); - name = "React-RCTLinking"; - path = "../../node_modules/react-native/Libraries/LinkingIOS"; - sourceTree = ""; - }; - B1AE52BEF388CDB7119F6302E5979D93 /* Pod */ = { - isa = PBXGroup; - children = ( - 08E9EA705803A7C8E505CFBA35398591 /* React-RCTVibration.podspec */, + F98C79CAC54C43BA4A42395878C3370E /* LICENCE */, + DD132958B5811CDA35EB0BF375186534 /* react-native-cameraroll.podspec */, + A73D0D80D3CDD243DA7EB6DCC072D765 /* README.md */, ); name = Pod; sourceTree = ""; }; - B220566F9A71391BE56F0D1D6CE408E2 /* React-jsinspector */ = { + B201BE5334BA54116CD6D7160DB9BE92 /* Text */ = { isa = PBXGroup; children = ( - B1F80AF2E53193E40A5C4112C6510EA4 /* InspectorInterfaces.cpp */, - 975098775A42414F7AAA7795254F9785 /* InspectorInterfaces.h */, - 6A22E9AB051C3C1A09ACAD7492425B71 /* Pod */, - 563BC5455FAED9898AA5CAC53BCB5673 /* Support Files */, + E51CF6B8DB4476AB9AEA0446FFE67FF1 /* NSTextStorage+FontScaling.h */, + A0B44E05599C2819FCABBFC5AD39381B /* RCTTextShadowView.h */, + CBDCAAEFF19248FF5247C5192EB10655 /* RCTTextView.h */, + 67E0707F1E40C6E88B45D2E8B0BF81AB /* RCTTextViewManager.h */, ); - name = "React-jsinspector"; - path = "../../node_modules/react-native/ReactCommon/jsinspector"; + name = Text; + path = Libraries/Text/Text; sourceTree = ""; }; - B28E02485F4EDD492C77DC8A7F0663AF /* RNFBAnalytics */ = { + B2F8EA40230DC6D83EE1E841062441DB /* Support Files */ = { isa = PBXGroup; children = ( - 6177603ABD5E6068DCA851802480FD23 /* RNFBAnalyticsModule.h */, - D671D1057D25C142B595A08CECEE425F /* RNFBAnalyticsModule.m */, - A1115708637BBF26EE97A9665E561161 /* Pod */, - B2D05423883F80C2C64D165868D8011D /* Support Files */, - ); - name = RNFBAnalytics; - path = "../../node_modules/@react-native-firebase/analytics"; - sourceTree = ""; - }; - B2D05423883F80C2C64D165868D8011D /* Support Files */ = { - isa = PBXGroup; - children = ( - 1707FE631BF1D82FC7C5F34615DA6293 /* RNFBAnalytics-dummy.m */, - 356C3802AAB930F1B1EC52AD86B24EB9 /* RNFBAnalytics-prefix.pch */, - BDC6DCD3BD2FDA303242D3410C5B8694 /* RNFBAnalytics.debug.xcconfig */, - 169D03E9EBF659079B622BDDFCA18349 /* RNFBAnalytics.release.xcconfig */, + C0AEFA31C203D0F1AB46900DAB4B9D35 /* RNLocalize-dummy.m */, + DF1631A94B242648EF9339FD80D13CB2 /* RNLocalize-prefix.pch */, + 4A109ADFD9DF216B0398F92BF13E6105 /* RNLocalize.debug.xcconfig */, + AAA31ECA5C35C35D5B4A2BFA46D56C7B /* RNLocalize.release.xcconfig */, ); name = "Support Files"; - path = "../../../ios/Pods/Target Support Files/RNFBAnalytics"; + path = "../../ios/Pods/Target Support Files/RNLocalize"; sourceTree = ""; }; - B3770FCAACFEC879FF1F721AC639359D /* Support Files */ = { + B522B483964AE8CF0A644BB1A08722BE /* RNDeviceInfo */ = { isa = PBXGroup; children = ( - AFF55825BE627B9868DED9897A0CFEC9 /* react-native-notifications-dummy.m */, - D704632CB2E62CA40864DA093B702AB6 /* react-native-notifications-prefix.pch */, - 600646A79B18A0EB50628411DE70FA2A /* react-native-notifications.debug.xcconfig */, - 591C71BB3B796D89B345747C9C9A26B7 /* react-native-notifications.release.xcconfig */, + EE2A81427693ACA8E46CED098BF2F541 /* DeviceUID.h */, + C9CBED7B7CBF4B50D48CC9F48B3404B0 /* DeviceUID.m */, + 43084D396086F8741F536FD67182EEFF /* RNDeviceInfo.h */, + 168D38584A334CC1075ED6E11A0146E2 /* RNDeviceInfo.m */, + 5773792FF520B134C34C4E721A814087 /* Pod */, + 176D112B6EC718C877B6E8F271A53B04 /* Support Files */, ); - name = "Support Files"; - path = "../../ios/Pods/Target Support Files/react-native-notifications"; + name = RNDeviceInfo; + path = "../../node_modules/react-native-device-info"; sourceTree = ""; }; - B3DC4F27F4448D79BC412C62FA9717B9 /* RNGestureHandler */ = { + B6170C0DBE0A6EFDC62B766E838440B9 /* RNCMaskedView */ = { isa = PBXGroup; children = ( - 48B8C83706E6EB956E9B582DE0DE15E4 /* RNGestureHandler.h */, - 87AE74ADAF954E43ADFEF376FE1C35E7 /* RNGestureHandler.m */, - 0786D6F091FA6543F6D2353917518AEB /* RNGestureHandlerButton.h */, - E3E949AE1BC7DC75625C7108BFFB4FCE /* RNGestureHandlerButton.m */, - EE5710A8FA0A17AA1BE189ADABC2203D /* RNGestureHandlerDirection.h */, - 66C22CE3936F8C9398388D144661EEBC /* RNGestureHandlerEvents.h */, - B39EAA6F5F6CB3CF0A02BD1B915B85EE /* RNGestureHandlerEvents.m */, - 4F73DE85FFCAB9588F5CD8E37815637D /* RNGestureHandlerManager.h */, - 8187E8B4641324A844BDF9D6489123F6 /* RNGestureHandlerManager.m */, - C104FC8989C82D55AC529CBE9DDD4EDE /* RNGestureHandlerModule.h */, - C23F16BDE8465F7A056C4F4E75E894FD /* RNGestureHandlerModule.m */, - 9C64C7FE4B28EB30762C6FAF226BE8C8 /* RNGestureHandlerRegistry.h */, - 48423A8E18B39E0755E7A8FE8F1A4A6A /* RNGestureHandlerRegistry.m */, - 18655F332376A6C0A76D021BA7F31217 /* RNGestureHandlerState.h */, - C3E03E5ED1D10385A09980AD737FA52F /* RNRootViewGestureRecognizer.h */, - E3B49A93FCEE5A690E853AB1D1E4554F /* RNRootViewGestureRecognizer.m */, - 312FF6791778C2FF701DDEA133BAD15C /* Handlers */, - 82650B58A2B1A3F501FACF130C6CC508 /* Pod */, - AB12B5EFBD14AC0274E96A461BDF4922 /* Support Files */, + 77D2697B99172AD1D5F8638ED17D1D41 /* RNCMaskedView.h */, + 3F0FA46A006F4936B0915FD4910BC10B /* RNCMaskedView.m */, + 37EFAE7AC35E13608EE858E835CBE78C /* RNCMaskedViewManager.h */, + E8485B1132B261C16F96FE0F451A8E56 /* RNCMaskedViewManager.m */, + BCEA49235C13C7CE1655A69D9772FDCE /* Pod */, + 03EDE96745277A3BA8A9C8A50EA75F2A /* Support Files */, ); - name = RNGestureHandler; - path = "../../node_modules/react-native-gesture-handler"; + name = RNCMaskedView; + path = "../../node_modules/@react-native-community/masked-view"; sourceTree = ""; }; - B479ACCE09BBADB7D83DB327ADAB2FFD /* EXSessionTasks */ = { + B698C19EA662FD1B6483C8D3A5CA6BCA /* Pod */ = { isa = PBXGroup; children = ( - C33D94D2CA59CDD044F5356C10911747 /* EXResumablesManager.h */, - 619C5485D25F63D67B819CE38AA9D59A /* EXResumablesManager.m */, - DCBB4DB2472B85F4A8405C3E47552D0C /* EXSessionDownloadTaskDelegate.h */, - DF83F0AA289411C2F3DAE7F3F7E075EA /* EXSessionDownloadTaskDelegate.m */, - 312D6C38A39D7D464027E4AC1F6CA3F6 /* EXSessionResumableDownloadTaskDelegate.h */, - AA61FF70B4B192F029EFB925B4B625ED /* EXSessionResumableDownloadTaskDelegate.m */, - 47118A9ACC1AB1735068E8ABAE09B11C /* EXSessionTaskDelegate.h */, - C13F1D81883D8F928423E496827276FC /* EXSessionTaskDelegate.m */, - 76A2AE1205D4BB60A9F35C15D32740E4 /* EXSessionTaskDispatcher.h */, - BAF22493D3FEA5B771C9DE8631B3E369 /* EXSessionTaskDispatcher.m */, - F4C6B9A8AC5AD667E97A4CD7AE2FA0B3 /* EXSessionUploadTaskDelegate.h */, - 2C32E99342E5E34910332E53E0FAC48F /* EXSessionUploadTaskDelegate.m */, + 217E2944D2DCF8DE519D0192E0A9E44D /* React-jsi.podspec */, ); - name = EXSessionTasks; - path = EXFileSystem/EXSessionTasks; - sourceTree = ""; - }; - B4A97F3E1D7799A2FCB2972DE3775727 /* react-native-background-timer */ = { - isa = PBXGroup; - children = ( - E9999B8771EACECAFCB66F7CA9C71B92 /* RNBackgroundTimer.h */, - 0EE044559665883CF4AA2F8703CDEC8A /* RNBackgroundTimer.m */, - BE18140944816C020D3CD834E0B95100 /* Pod */, - 16297DDB1A37130233D3BBB45D2F16EA /* Support Files */, - ); - name = "react-native-background-timer"; - path = "../../node_modules/react-native-background-timer"; - sourceTree = ""; - }; - B563E4387CB19E8B38671C4749768402 /* RNFastImage */ = { - isa = PBXGroup; - children = ( - 8529E67141DA8CCDE842D0C1AFA6FD12 /* FFFastImageSource.h */, - DD869F79EA51E95B0B8C6E7DCBF73D15 /* FFFastImageSource.m */, - 22A3CFE580C92B99B0376CE5B0497DF8 /* FFFastImageView.h */, - 443098314628D666DC0EDE6A03600032 /* FFFastImageView.m */, - 69A93D2AAF46119E429ED7D204E69723 /* FFFastImageViewManager.h */, - A97771F65EFE9C37DEAED2A4534B170E /* FFFastImageViewManager.m */, - 713A15F48B0F0FEC3E2F7407BDC4BFA6 /* RCTConvert+FFFastImage.h */, - E4F505C239991EFC6D8CF40383BDC606 /* RCTConvert+FFFastImage.m */, - 2E8DACBE318224DEE977731F4A6AFA15 /* Pod */, - 6C3F0C275A0AC9862755F3B9A314D843 /* Support Files */, - ); - name = RNFastImage; - path = "../../node_modules/@rocket.chat/react-native-fast-image"; - sourceTree = ""; - }; - B679771910F4A81551D1E38E4665DBEF /* EXWebBrowser */ = { - isa = PBXGroup; - children = ( - 3A0D9D341A2829B61652D7C008D135C0 /* EXWebBrowser.h */, - F57FA8D2DBFF8C1AD38B570DD28EE95B /* EXWebBrowser.m */, - 4400143791212FCDBBDDFB2FF3B0D303 /* Pod */, - 016A0553A89829B70C552FDF9F3380A4 /* Support Files */, - ); - name = EXWebBrowser; - path = "../../node_modules/expo-web-browser/ios"; - sourceTree = ""; - }; - B6FCC62BF0988F46A067913AD1AA4551 /* Support Files */ = { - isa = PBXGroup; - children = ( - 19222004B82B95179F0AD56041CA0F2A /* UMCore-dummy.m */, - 27D3620E5516A7CD19F78992AAD108CF /* UMCore-prefix.pch */, - E49AAC64025F8822FB4D98997A498BF2 /* UMCore.debug.xcconfig */, - EEE1389654547C8B4EA7BBE2355F5AE2 /* UMCore.release.xcconfig */, - ); - name = "Support Files"; - path = "../../../../ios/Pods/Target Support Files/UMCore"; - sourceTree = ""; - }; - B721D6049C917C7D59E061A5C064ED5A /* Support Files */ = { - isa = PBXGroup; - children = ( - DB204485D17219DFED5207BE90EC1E30 /* React-RCTNetwork-dummy.m */, - E2F1266F17E68F3DB63FFF9582C74F85 /* React-RCTNetwork-prefix.pch */, - 976883AF4FFF2235B2E1D4C0363C9AB3 /* React-RCTNetwork.debug.xcconfig */, - 4470E7F334F720A2442836C4DE1412F9 /* React-RCTNetwork.release.xcconfig */, - ); - name = "Support Files"; - path = "../../../../ios/Pods/Target Support Files/React-RCTNetwork"; - sourceTree = ""; - }; - B734537B266390DB30BD231BDC85C051 /* RNVectorIcons */ = { - isa = PBXGroup; - children = ( - E911A339CABE081B9961C9A25FFFA4B4 /* RNVectorIconsManager.h */, - 6B2074348619E86D6B3FA2F6F9BB3DB4 /* RNVectorIconsManager.m */, - D0A1B4D080DF1AF22AE4211A40CFB0D5 /* Pod */, - ACB9607D84896078272620A2E1D962D4 /* Resources */, - 32A25F038C980CCC9DADC13D3901D76D /* Support Files */, - ); - name = RNVectorIcons; - path = "../../node_modules/react-native-vector-icons"; - sourceTree = ""; - }; - B7A42549C43C9DE254F76B890B920C43 /* Resources */ = { - isa = PBXGroup; - children = ( - 42817937F1E875A7A8871155D62D0947 /* de.lproj */, - E99C7750F7EF2372DCF29EC658457AF9 /* en.lproj */, - BDF605201112541ED81426885684670B /* es.lproj */, - 09558B8383ECB49A8A125922CB9388B6 /* fr.lproj */, - 6F660D3CB14E6BFC2F077B4EA89EC1CC /* ja.lproj */, - 19A82C65D20BC59DF5114BAFE3F18810 /* pl.lproj */, - C69CE7EBF03AD807A3216CE570AF7D93 /* QBImagePicker.storyboard */, - C7EA47076F3D88179E77D0AEB8A23837 /* zh-Hans.lproj */, - ); - name = Resources; + name = Pod; sourceTree = ""; }; B7C61A8692159E71352B7B376D656091 /* SKIOSNetworkPlugin */ = { @@ -17269,20 +16847,38 @@ name = SKIOSNetworkPlugin; sourceTree = ""; }; - B8740C3710BC2CD3EBFA3882D0B01D27 /* ReactNativeKeyboardTrackingView */ = { + B7CECBE2BB5B2095D2BF1EFF0E6BC933 /* BaseText */ = { isa = PBXGroup; children = ( - 3E698A7E4C8F177AB5E6894F03DEA9D8 /* KeyboardTrackingViewManager.h */, - 34E3E2F0D3B69CBBF936FF8309660F15 /* KeyboardTrackingViewManager.m */, - 6E7E9B42637518949CA77C619960587A /* ObservingInputAccessoryView.h */, - 735E9CFB0C211D545A1366F22F8E0B51 /* ObservingInputAccessoryView.m */, - 3889B761F61E92B86DAC2BC855208080 /* UIResponder+FirstResponder.h */, - 8F1A5F0294AEA295494496A575F3A18A /* UIResponder+FirstResponder.m */, - 5F882E7BBFA9658259142D5289B455EB /* Pod */, - C316937714E3F51B9C385E59EB88B6C8 /* Support Files */, + 927D77391B15AFCED6611B2DC1F6AC61 /* RCTBaseTextShadowView.m */, + E8B9D258AFCB14A66CCB0FDAE09F940E /* RCTBaseTextViewManager.m */, ); - name = ReactNativeKeyboardTrackingView; - path = "../../node_modules/react-native-keyboard-tracking-view"; + name = BaseText; + path = BaseText; + sourceTree = ""; + }; + B8D1DB4A515844AFB4F5B5AB671761DF /* Support Files */ = { + isa = PBXGroup; + children = ( + 61FA1904373226CD5BA7427B930E8D20 /* React-jsi-dummy.m */, + F25F07E17FB3E6A08F5770D1E269EA0D /* React-jsi-prefix.pch */, + 9C0BD7B90625A3C61DFC9548B3F17020 /* React-jsi.debug.xcconfig */, + DE61113DD804EDFA6D3D28A7237D70E6 /* React-jsi.release.xcconfig */, + ); + name = "Support Files"; + path = "../../../../ios/Pods/Target Support Files/React-jsi"; + sourceTree = ""; + }; + B92504FACB041A512EDEDB5F4EA7AE22 /* Support Files */ = { + isa = PBXGroup; + children = ( + 1D8D36404A4931903010BBF9C9AB890A /* React-RCTSettings-dummy.m */, + 90671AFB24B23C612EE709778E139CFD /* React-RCTSettings-prefix.pch */, + 88AB943D8ACDDEF14D02CE9A03FC669F /* React-RCTSettings.debug.xcconfig */, + 37ACDF2E77393C4BB6C57BEAEA4AD1D0 /* React-RCTSettings.release.xcconfig */, + ); + name = "Support Files"; + path = "../../../../ios/Pods/Target Support Files/React-RCTSettings"; sourceTree = ""; }; B93CA65AE4C2256B8E1C7B2635240739 /* Support Files */ = { @@ -17297,54 +16893,42 @@ path = "../Target Support Files/libwebp"; sourceTree = ""; }; - B9C9572617DA0B4487142D672E64C4FA /* react-native-document-picker */ = { + B943672748724E554E80B88355330311 /* Support Files */ = { isa = PBXGroup; children = ( - 1BBB24CA1832696C3E346DCBB17EEECB /* RNDocumentPicker.h */, - 45778D15AB03D0B85694B79BC8729514 /* RNDocumentPicker.m */, - 1BC0DBBB543FA45386E1A957306A3906 /* Pod */, - 5B73AE5A405588EB2A1DFF2098FA17C6 /* Support Files */, - ); - name = "react-native-document-picker"; - path = "../../node_modules/react-native-document-picker"; - sourceTree = ""; - }; - B9DEA0474651DC8C0EBD144C9DE73A73 /* EXPermissions */ = { - isa = PBXGroup; - children = ( - D80BE1CEFF36FC5B2A2A5E1D5275D4FB /* EXPermissions.h */, - 1E96054DFD340F0B512E53F8C3CF31F3 /* EXPermissions.m */, - FAD52342A2D2C5F4134E4EDA79DF1AF6 /* EXReactNativeUserNotificationCenterProxy.h */, - 3C519268C53CCF0EE6CC0E33831B07F5 /* EXReactNativeUserNotificationCenterProxy.m */, - 45F32644129876BA500890A88A22623E /* Pod */, - C9023A8DF9AF325A6A182AAE34C6391F /* Support Files */, - ); - name = EXPermissions; - path = "../../node_modules/expo-permissions/ios"; - sourceTree = ""; - }; - BA934D1C302756BA6C0B6C6E726E4B2B /* react-native-cookies */ = { - isa = PBXGroup; - children = ( - BA7D0472C62DF8CCD5CF1C9925C83DC4 /* RNCookieManagerIOS.h */, - AA681D82870D8F25DE071604F1FBDE85 /* RNCookieManagerIOS.m */, - FB4CF3D1F5E261FDB1CF2195499536FD /* Pod */, - 566F12155681D85212C8AE483D165828 /* Support Files */, - ); - name = "react-native-cookies"; - path = "../../node_modules/@react-native-community/cookies"; - sourceTree = ""; - }; - BAAF7FEF08B6486425931A89F9FC3BA5 /* Support Files */ = { - isa = PBXGroup; - children = ( - 1C44DCB2276F1187E5C4D51085144927 /* EXLocalAuthentication-dummy.m */, - C684B614F7A5FBBA191DA064B25F6FE2 /* EXLocalAuthentication-prefix.pch */, - A2DB9A08443DA9E2D1E3CBBD63F734E3 /* EXLocalAuthentication.debug.xcconfig */, - 5D06BF3EB1FB6553A48935C109173930 /* EXLocalAuthentication.release.xcconfig */, + 4AD0D94ADB6F6074C7902E7BBE3758A8 /* react-native-cookies-dummy.m */, + 397FF534712EA1ED510833A4DA72C638 /* react-native-cookies-prefix.pch */, + 1D6C6244700B527CBC318758B65B81C8 /* react-native-cookies.debug.xcconfig */, + 5285EE84BCD6E6DD1FB358E81D58A297 /* react-native-cookies.release.xcconfig */, ); name = "Support Files"; - path = "../../../ios/Pods/Target Support Files/EXLocalAuthentication"; + path = "../../../ios/Pods/Target Support Files/react-native-cookies"; + sourceTree = ""; + }; + B9DF6A9AFFB5CED75F525D4B3EB15A17 /* Reporting */ = { + isa = PBXGroup; + children = ( + AAD9E15A736134B918D413C06BD09474 /* Filters */, + ); + name = Reporting; + path = Reporting; + sourceTree = ""; + }; + BAFD4D23DBCA1CA17CBFF68B07787234 /* RCTSettingsHeaders */ = { + isa = PBXGroup; + children = ( + 5975D7D6704CDCF5D8EF4744561C1261 /* RCTSettingsManager.h */, + C3F1FB62C42FF3D34C4E94892850221A /* RCTSettingsPlugins.h */, + ); + name = RCTSettingsHeaders; + sourceTree = ""; + }; + BB13B2902A45414642D4389B214819C7 /* Pod */ = { + isa = PBXGroup; + children = ( + DBC1D0C156C5E9800D9D75DC67352895 /* UMImageLoaderInterface.podspec */, + ); + name = Pod; sourceTree = ""; }; BB5FABDA66760511AF47DE0D280E26E3 /* YogaKit */ = { @@ -17362,24 +16946,18 @@ path = YogaKit; sourceTree = ""; }; - BB77D82ABB6CD699B60B07B0A8609201 /* Support Files */ = { + BBD1C74F13005BEC0132312867B7547B /* EXPermissions */ = { isa = PBXGroup; children = ( - 32AA328984C187EE8B0FADB47E97921F /* RNDeviceInfo-dummy.m */, - CA0EEC2F605A34718DCC11945AF562C6 /* RNDeviceInfo-prefix.pch */, - 83DF9403D673316EEE1589BD26757A38 /* RNDeviceInfo.debug.xcconfig */, - A7D9E92DC1F5E2C934E96BE51A672DED /* RNDeviceInfo.release.xcconfig */, + 437EEDF51183CE95AF08B8B294DDB401 /* EXPermissions.h */, + 5604F6A1E1D9E12C63B9ABF733DC7D47 /* EXPermissions.m */, + D04E2BDC02160BC77E7D45B622335C6E /* EXReactNativeUserNotificationCenterProxy.h */, + 8D6AC6E074E3F8EFDEA205BAEBB6C0D0 /* EXReactNativeUserNotificationCenterProxy.m */, + CDDCA61050428F76BE2A114D81A7BA68 /* Pod */, + 816F6E5A40680238715271EF7EBDE1AB /* Support Files */, ); - name = "Support Files"; - path = "../../ios/Pods/Target Support Files/RNDeviceInfo"; - sourceTree = ""; - }; - BBA837FCCB47B023F6823CB6D1E7690B /* Pod */ = { - isa = PBXGroup; - children = ( - 22FEE90964CE911CF9B035C2DE71DDBD /* React-RCTSettings.podspec */, - ); - name = Pod; + name = EXPermissions; + path = "../../node_modules/expo-permissions/ios"; sourceTree = ""; }; BC61BEE1F3C320A72252A211E07559F6 /* Support Files */ = { @@ -17394,26 +16972,34 @@ path = "../Target Support Files/SDWebImage"; sourceTree = ""; }; - BD6B2313CAB6B283AF3E7C1C3C13D8F5 /* VirtualText */ = { + BCEA49235C13C7CE1655A69D9772FDCE /* Pod */ = { isa = PBXGroup; children = ( - D9EF36754BD7817A120BED4E5A46D0FE /* RCTVirtualTextShadowView.h */, - 8ABB41B7F9DD098BAE8F4210DAAC5F82 /* RCTVirtualTextViewManager.h */, - ); - name = VirtualText; - path = Libraries/Text/VirtualText; - sourceTree = ""; - }; - BE18140944816C020D3CD834E0B95100 /* Pod */ = { - isa = PBXGroup; - children = ( - 8A3EC40F8D83F2576BD5667948D04DEE /* LICENSE */, - 2608A00DB071AABD68B93DFC7C46A01B /* react-native-background-timer.podspec */, - 7C2E6D530C35035871EC5B2C5D0428C8 /* README.md */, + D48275BB43CA74E1BDA9315DA6073E4E /* README.md */, + C3BFC3D8E4E88268D27794BDB6A66BE7 /* RNCMaskedView.podspec */, ); name = Pod; sourceTree = ""; }; + BDA225705609449D48AB93571C71F7FD /* RNImageCropPicker */ = { + isa = PBXGroup; + children = ( + CB54911DDCC8216A22A20303C811DC3F /* Compression.h */, + 43504F047FFD564514378D7164DA9179 /* Compression.m */, + 0F394CB1A791D488D9E3FA92F2295844 /* ImageCropPicker.h */, + A648E34173D783314DFC200842909F85 /* ImageCropPicker.m */, + A9EF32B6C7A91D7C0C66B64D36445C17 /* UIImage+Extension.h */, + 83CBCAB82AC7193FC38EA5BD77082C8C /* UIImage+Extension.m */, + 69E492CD03317F9F72D4C017CDEC9537 /* UIImage+Resize.h */, + 3D351820F33E5DB5B8D1AA53186907F9 /* UIImage+Resize.m */, + C3494AF368487331DF7CAD69327DE23A /* Pod */, + 487281ED9B795ADF1D5C1ADF9D4AF89A /* QBImagePickerController */, + 7C998C090FAE720F600AAA2867919DA4 /* Support Files */, + ); + name = RNImageCropPicker; + path = "../../node_modules/react-native-image-crop-picker"; + sourceTree = ""; + }; BEA1A3B689A4A08DCB5788951428BDCE /* Support Files */ = { isa = PBXGroup; children = ( @@ -17489,6 +17075,16 @@ path = FirebaseInstallations; sourceTree = ""; }; + BF1F5CC90E84DE6CBB7E91C564E9D6F0 /* Pod */ = { + isa = PBXGroup; + children = ( + 4B0055F7A69A13F253B736E78AF9A1C7 /* LICENSE */, + 60438234C4682AE09F8F3FB200FAAD79 /* react-native-appearance.podspec */, + FA44A39B07E58438CDA713C03FE6BB01 /* README.md */, + ); + name = Pod; + sourceTree = ""; + }; BF29A2E155382234DB5DFF740C3B3C85 /* Frameworks */ = { isa = PBXGroup; children = ( @@ -17653,34 +17249,40 @@ name = webp; sourceTree = ""; }; - BFFE3E0EB1BCC4189411C0EF8C2B1824 /* Pod */ = { + BFDEC0F38584746FB6A14578FC780B47 /* SafeAreaView */ = { isa = PBXGroup; children = ( - 32A2F852FACB7687260A645A7CA35306 /* EXVideoThumbnails.podspec */, + 6017D6B8B2DD3DA246787B41CBF74A43 /* RCTSafeAreaShadowView.h */, + 428136ED943AB31EFCA02F5CC8730F15 /* RCTSafeAreaShadowView.m */, + EDA8BEF50E13CBF8F30B28B55A61D886 /* RCTSafeAreaView.h */, + C9BA13939F13DADE2982229661846EA3 /* RCTSafeAreaView.m */, + 96221E20136A570A19171990887748A1 /* RCTSafeAreaViewLocalData.h */, + D7687BF0A6EF86947E3471A3AEA8EEA6 /* RCTSafeAreaViewLocalData.m */, + 7C86F8D9A8A1C3FA0031BE354FBD8CDC /* RCTSafeAreaViewManager.h */, + AF6A28767374A51B98A0B41BABBA2020 /* RCTSafeAreaViewManager.m */, + ); + name = SafeAreaView; + path = SafeAreaView; + sourceTree = ""; + }; + C0D23ED30840DC2A77CC122C56B621FE /* Pod */ = { + isa = PBXGroup; + children = ( + C117E322C6AECECD093B0D115B235F63 /* RCTRequired.podspec */, ); name = Pod; sourceTree = ""; }; - C179B71EE2013EC55CA01132CA04DDE2 /* Surface */ = { + C102979F9508E62499B0F4497877DC6F /* Support Files */ = { isa = PBXGroup; children = ( - 725424381354EA0E9600C553ADF39FFB /* RCTSurface.h */, - B8D0E246E8EE55A72D534D88EDAA857E /* RCTSurface.mm */, - F1B0E77ACAB737FA392EF5592503B822 /* RCTSurfaceDelegate.h */, - 6BE2492912B242220358351675894420 /* RCTSurfaceRootShadowView.h */, - 8ECE5C83E42031C57AFA60904FC4FC2A /* RCTSurfaceRootShadowView.m */, - A66E40BD8338E6F6E155FE47C58E1277 /* RCTSurfaceRootShadowViewDelegate.h */, - 171B38A2E9137BE249B73C8DD7650557 /* RCTSurfaceRootView.h */, - 216AFA1AEF9D705AC54D210237DE10EF /* RCTSurfaceRootView.mm */, - 792DBE47299BD2B68D5EB6DBD610DB7D /* RCTSurfaceStage.h */, - A0E3D551643091C512D0440DF27E283A /* RCTSurfaceStage.m */, - B570AD3288F646353B803C672C681ADB /* RCTSurfaceView.h */, - 631536E35AEB6990AE1B373DD9B0DB26 /* RCTSurfaceView.mm */, - 37FC2B874DAAE07CE3174D9DFFE5CAFB /* RCTSurfaceView+Internal.h */, - 11FFF265BC8455577CD2E9D2549BC8BE /* SurfaceHostingView */, + C38988527DE8EB8178CBEC5608611F79 /* RNReanimated-dummy.m */, + 5E8510D095CB4B75FF0A224BEBEC96AB /* RNReanimated-prefix.pch */, + 2D25EF979879F9BF08A6DA3734FB2921 /* RNReanimated.debug.xcconfig */, + E032B7D27DBC2C30222D584A1041D3E4 /* RNReanimated.release.xcconfig */, ); - name = Surface; - path = Surface; + name = "Support Files"; + path = "../../ios/Pods/Target Support Files/RNReanimated"; sourceTree = ""; }; C22D7639420093ED0085941A484DFBA7 /* Support Files */ = { @@ -17695,107 +17297,40 @@ path = "../Target Support Files/Flipper-Glog"; sourceTree = ""; }; - C2996937B571F082A28491934DCCAAA6 /* react-native-mmkv-storage */ = { + C3494AF368487331DF7CAD69327DE23A /* Pod */ = { isa = PBXGroup; children = ( - DD4057B7D33DB6245E1FF3A0A73BDFA5 /* IDStore.h */, - 5D825969D5BF6A91812A4A90C337F5D0 /* IDStore.m */, - BEF8B89F521FDA3E0251AB10B09AA102 /* MMKVStorage.h */, - 0EE189513282D54B02C8FE1103565049 /* MMKVStorage.m */, - 642ABBCB9815AA342641F7FA6FBAC887 /* SecureStorage.h */, - 3F49986B7019EA92B663E6C018816E88 /* SecureStorage.m */, - 3D2D37BF95E30FBBE4595336259D4477 /* StorageGetters.h */, - 4A40C8F59798D8A2BCE6790DFB979A47 /* StorageGetters.m */, - D739322E3D043389E7DF466D7B076593 /* StorageIndexer.h */, - E3DF2CA44D2DEADF92E75108A79FC16D /* StorageIndexer.m */, - 986846FDBC8F47730A77A72F406E0D63 /* StorageSetters.h */, - 4647488323356C67846E7D3A4E25D40C /* StorageSetters.m */, - 623B30ACF92AF9DFE025A5AC85E7658F /* Pod */, - 33B961758CD47BB742283486F0EE94DF /* Support Files */, + D51C3499F9412DC78328E33E0825718D /* LICENSE */, + 506885F1F9D961E9262E32A677A81A49 /* README.md */, + BDEF573C64A98F7E6C2FE4EA78792992 /* RNImageCropPicker.podspec */, ); - name = "react-native-mmkv-storage"; - path = "../../node_modules/react-native-mmkv-storage"; + name = Pod; sourceTree = ""; }; - C316937714E3F51B9C385E59EB88B6C8 /* Support Files */ = { + C3562FD9A362B95003356729A19C5BCC /* UMPermissionsInterface */ = { isa = PBXGroup; children = ( - 9A6C6418ABC4B09CEFF6B38431FE6BC2 /* ReactNativeKeyboardTrackingView-dummy.m */, - 015A25D2F24C5E05205779B1A4BAC1D8 /* ReactNativeKeyboardTrackingView-prefix.pch */, - 5E2282392F335E8B610195FA45E062B6 /* ReactNativeKeyboardTrackingView.debug.xcconfig */, - DF37C491FCA7E98BCF5661AE7BA1AA8F /* ReactNativeKeyboardTrackingView.release.xcconfig */, + DA3640CBD10933A84833803C4AF8AB2C /* UMPermissionsInterface.h */, + EF8D483D01F8555E1F06C4003856A678 /* UMPermissionsMethodsDelegate.h */, + 88DE28457509CE76EC604FE97FCE31D1 /* UMPermissionsMethodsDelegate.m */, + DEF328ABA4CF8E6FACADFA6FB5153C82 /* UMUserNotificationCenterProxyInterface.h */, + 2B7AC3C634766458D470426713D76194 /* Pod */, + AC3EED847550E1F6D91D62C4CAFE1F96 /* Support Files */, + ); + name = UMPermissionsInterface; + path = "../../node_modules/unimodules-permissions-interface/ios"; + sourceTree = ""; + }; + C35656BEDC458A6D003943F65C4BB818 /* Support Files */ = { + isa = PBXGroup; + children = ( + 560DBAC8BE666C72A31C0A72190FE10B /* react-native-webview-dummy.m */, + 095EB85F1881745BA00AC9D7BAA39BE9 /* react-native-webview-prefix.pch */, + 913108B8E542C35EFE7A98D981C757F4 /* react-native-webview.debug.xcconfig */, + 8667BECE652CF876779D45518F931AD9 /* react-native-webview.release.xcconfig */, ); name = "Support Files"; - path = "../../ios/Pods/Target Support Files/ReactNativeKeyboardTrackingView"; - sourceTree = ""; - }; - C35584EB1147A59FB5CC2BD6E2C40F2B /* react-native-orientation-locker */ = { - isa = PBXGroup; - children = ( - DE862D4983DE78BB3F8A67061C29E078 /* Orientation.h */, - 366DE628851B630B8F8DB599E4A6EEBA /* Orientation.m */, - 4B736DE99F69C2EE054930F316B31C0A /* Pod */, - 9658D76025EDC3DB86FC95FE8BAE2B13 /* Support Files */, - ); - name = "react-native-orientation-locker"; - path = "../../node_modules/react-native-orientation-locker"; - sourceTree = ""; - }; - C42FFA6D244147A88DC3B8B52D5AEC20 /* Nodes */ = { - isa = PBXGroup; - children = ( - 90DFDB23DB864442441F33314557D9D8 /* RCTAdditionAnimatedNode.m */, - 8B8B99BA10EB6FEB7DE47188B6497DC4 /* RCTAnimatedNode.m */, - DBB579345D4A3A0F6FB37AA3EF5B4CB7 /* RCTDiffClampAnimatedNode.m */, - 998927E494E0F739E6998287E1AC76F0 /* RCTDivisionAnimatedNode.m */, - CA62E9DDFDBC1C2126E21CFCAC8BA10D /* RCTInterpolationAnimatedNode.m */, - 76A061142827CF13C4D7ECF381D71B03 /* RCTModuloAnimatedNode.m */, - E2B3AE70F69C20072057036358ED5FEC /* RCTMultiplicationAnimatedNode.m */, - 686AE5DA8D614D5693B035866D43A309 /* RCTPropsAnimatedNode.m */, - 9D6343DDC6EE24F07C4D558FC43986AD /* RCTStyleAnimatedNode.m */, - 54E2A3033243CD5D1DC83180245A17A0 /* RCTSubtractionAnimatedNode.m */, - 29F2E4B180DDD47F010CB79BD33A19F5 /* RCTTrackingAnimatedNode.m */, - BFB1C9A845B4B8633E6745FBCF9F664B /* RCTTransformAnimatedNode.m */, - 27CACEA45457F24C054262D1715A08E3 /* RCTValueAnimatedNode.m */, - ); - name = Nodes; - path = Nodes; - sourceTree = ""; - }; - C4ACFE8FB0317AD9212930E9E5F1F057 /* BaseText */ = { - isa = PBXGroup; - children = ( - A677CF88C75F1C80A59F60569405718A /* RCTBaseTextShadowView.h */, - E17E4005B34544F5D2486E45C83B7484 /* RCTBaseTextViewManager.h */, - ); - name = BaseText; - path = Libraries/Text/BaseText; - sourceTree = ""; - }; - C4CE50BE886B79DBD9FE749BE209B9C5 /* RNFBCrashlytics */ = { - isa = PBXGroup; - children = ( - BA9E1BC397F2ABDF1DD232F2330432FC /* RNFBCrashlyticsInitProvider.h */, - B03FF6E3B8D37404DA7BFDE30A6056DB /* RNFBCrashlyticsInitProvider.m */, - AE42FFF16051C044366E5125F3E908CD /* RNFBCrashlyticsModule.h */, - EB73C4B22E6FDA94136303678D79778E /* RNFBCrashlyticsModule.m */, - A3BA7870D82678CCF297623E779A7007 /* Pod */, - 68B333B521F2661162615BECA7986FFE /* Support Files */, - ); - name = RNFBCrashlytics; - path = "../../node_modules/@react-native-firebase/crashlytics"; - sourceTree = ""; - }; - C517FF34D8D7F08409C9CF27EF526395 /* Support Files */ = { - isa = PBXGroup; - children = ( - FD779AF4010DC2C19CCEF471E97AA35B /* ReactNativeART-dummy.m */, - 0ED415A1D72AF8ED46007836A649B44C /* ReactNativeART-prefix.pch */, - EFCD3A6297E4D831C280F58CCA656218 /* ReactNativeART.debug.xcconfig */, - BD10ABD4FC3F60F7975CEEC6CB6F1CFA /* ReactNativeART.release.xcconfig */, - ); - name = "Support Files"; - path = "../../../ios/Pods/Target Support Files/ReactNativeART"; + path = "../../ios/Pods/Target Support Files/react-native-webview"; sourceTree = ""; }; C58D9F18D8A5B9C619A30F6E2612B563 /* Logger */ = { @@ -17808,103 +17343,154 @@ name = Logger; sourceTree = ""; }; - C5DCC868292DFFD07E37144C65ECAFF9 /* Pod */ = { + C5FD639A0445E0A7D1DA59C10B969929 /* EXConstants */ = { isa = PBXGroup; children = ( - AF4B58897DB5D08DFE4FF967DDFF100D /* FBReactNativeSpec.podspec */, + 80C0F9D8F07EF1FC795CD44A602D9EFA /* EXConstants.h */, + 4B59D82DF9BD9A69732E769401112AB2 /* EXConstants.m */, + 33923137DA40CC87E0CF534F2AC99F0E /* EXConstantsService.h */, + 1996D3629424831EF5298F79630FB91A /* EXConstantsService.m */, + 46B38A34306F4D347491D83ADD3A9DA2 /* Pod */, + CB24D44169CC51FA07C28718E20A4750 /* Support Files */, + ); + name = EXConstants; + path = "../../node_modules/expo-constants/ios"; + sourceTree = ""; + }; + C64D1BE847B591BB208913A2B2242F83 /* Support Files */ = { + isa = PBXGroup; + children = ( + B9DCD2F8AD33BD5688630CE260E1E5B6 /* EXAppleAuthentication-dummy.m */, + 4B96DA14C0476D9773D2097026D319C3 /* EXAppleAuthentication-prefix.pch */, + 9CB3E350CD65B8202DD367A2AD86B6DF /* EXAppleAuthentication.debug.xcconfig */, + 590AA0284A185DEB2F6E7EB478B87474 /* EXAppleAuthentication.release.xcconfig */, + ); + name = "Support Files"; + path = "../../../ios/Pods/Target Support Files/EXAppleAuthentication"; + sourceTree = ""; + }; + C6A3153BEFD527AE9C6C22C8B92B31B5 /* EXLocalAuthentication */ = { + isa = PBXGroup; + children = ( + 826C3D5D8AA1F26A94A0FC6CF14D49BA /* EXLocalAuthentication.h */, + C98188E4432B4AD67B23D5E22F92E340 /* EXLocalAuthentication.m */, + EDE68C551FAD8315EC3A79DBA084285E /* Pod */, + F7AB0A18090FD96BA8CC6A57D853B90B /* Support Files */, + ); + name = EXLocalAuthentication; + path = "../../node_modules/expo-local-authentication/ios"; + sourceTree = ""; + }; + C7834E37344BC73204B9336317D7D731 /* Pod */ = { + isa = PBXGroup; + children = ( + B8C5CE35FB4BBF24AD8EE2412183D309 /* UMFontInterface.podspec */, ); name = Pod; sourceTree = ""; }; - C5E2E085289C40CB6D0809477B758A64 /* EXAV */ = { + C78597242CEB435ACBB65B3C0032907D /* React-RCTActionSheet */ = { isa = PBXGroup; children = ( - FA9255819F526C93F918A5D638E130A5 /* EXAudioRecordingPermissionRequester.h */, - 1B4BE88B476F9BF18B1EB4988958D7CF /* EXAudioRecordingPermissionRequester.m */, - 53AF5325ADA63E488A4037CA58FFFF66 /* EXAudioSessionManager.h */, - DBCB6C3D8A29BA1B09704D4B302D1E3E /* EXAudioSessionManager.m */, - 60A084BF2656161A40E5992795CAEC30 /* EXAV.h */, - EA68B25507C1C2949DBD5C478926C2ED /* EXAV.m */, - 96F2D40B663B82645158A02DAE87A215 /* EXAVObject.h */, - 3DF4A13929EE3DC753F4163E47F811E8 /* EXAVPlayerData.h */, - 90DB9C70CE53A913FF931358A1D8C403 /* EXAVPlayerData.m */, - 4BC3606C86023E1BABAEEB367D81ECD2 /* Pod */, - 937845A46CC759D9F8C191E92F949C72 /* Support Files */, - 0175D4A2285D7A014772C16BE04FBDB8 /* Video */, + 8B09464F4D14B716435D4FD07CFE0C1F /* Pod */, + 73C3A730295724A78E5C04236488F939 /* Support Files */, ); - name = EXAV; - path = "../../node_modules/expo-av/ios"; + name = "React-RCTActionSheet"; + path = "../../node_modules/react-native/Libraries/ActionSheetIOS"; sourceTree = ""; }; - C6B3F1CB2CE57E47EF2743BD1A56EBB4 /* Support Files */ = { + C7ECAB562304D0B6B292556A24CB6C17 /* Support Files */ = { isa = PBXGroup; children = ( - 56D1AC6199D6D9BCA7F42097A4D29D47 /* BugsnagReactNative-dummy.m */, - DC0530B18D643FC0A01CC5B69C62B0FE /* BugsnagReactNative-prefix.pch */, - B59DC524F4C232EFBD99B851A98BBD5E /* BugsnagReactNative.debug.xcconfig */, - E0F35E91C5D29DA6E86BDC3BF264F3F7 /* BugsnagReactNative.release.xcconfig */, + 824FB8620083A7857CB4544205469C8A /* RNScreens-dummy.m */, + 861DA7E115B51D1E6FA094856340CF02 /* RNScreens-prefix.pch */, + 3D6018E5288BE28B9EC1F1A143AEACC8 /* RNScreens.debug.xcconfig */, + 31B287BFBC3F666064A1C36269F07FD1 /* RNScreens.release.xcconfig */, ); name = "Support Files"; - path = "../../ios/Pods/Target Support Files/BugsnagReactNative"; + path = "../../ios/Pods/Target Support Files/RNScreens"; sourceTree = ""; }; - C6F9029A910D8BC8C0163810A27C265E /* ReactNativeART */ = { + C7F2D66F5F8E2B79A1F23DE34A17CF6A /* react-native-notifications */ = { isa = PBXGroup; children = ( - 1704838BFA01DE086B84967801D4C522 /* ARTCGFloatArray.h */, - 5F6755DED0CBA411D15184F9FECDB49D /* ARTContainer.h */, - 48684E712058B9F3CABC3CFA659529DB /* ARTGroup.h */, - 9003E57E05EE3384CF26A33747B1CED5 /* ARTGroup.m */, - 3F223A82902DD313C050DCD91B7F3FC5 /* ARTNode.h */, - E5153F1C2295E8706EC9CF53194E982F /* ARTNode.m */, - 2726389FEBA35766473DE059CB0C6DF5 /* ARTRenderable.h */, - 65BD4A98D5F8FE4A3CB5D9620C8F404A /* ARTRenderable.m */, - 3F0BB8309F9346A40B0FC1DDF6EC9719 /* ARTShadow.h */, - 60A6922B50E417EA04251F4E5C3F800B /* ARTShape.h */, - 5D65BA6FD0D2C03EA801C528901BAA7F /* ARTShape.m */, - 2C22B13F2F4E2FF515288C827574A36E /* ARTSurfaceView.h */, - D408A6090D5A52F2EAAD3BB6A15B2E68 /* ARTSurfaceView.m */, - 243D81831B5B5E8EC831CD0EAA6AA865 /* ARTText.h */, - B3FBA663983BBDC4F2180010734E046B /* ARTText.m */, - 684CCB669022FF86D7717FF48A76B382 /* ARTTextFrame.h */, - C667E1C8D7B6611C4071949D497B01CE /* RCTConvert+ART.h */, - CC178B69A8951D7DD44E3380D74F180E /* RCTConvert+ART.m */, - 18F1B47255129F664B546B7623C20B9A /* Brushes */, - CF42B896A9FFE0C0927F0E7E970B8810 /* Pod */, - C517FF34D8D7F08409C9CF27EF526395 /* Support Files */, - 546C59403695D545F9E2FA727AB8B1DE /* ViewManagers */, + 18A6F6191B6BB7A9F68ED627E36E0403 /* RCTConvert+RNNotifications.h */, + B832E03657548301AA0D478F8515FD2C /* RCTConvert+RNNotifications.m */, + 0C29A1CAF05604A13712D500C0875703 /* RNBridgeModule.h */, + 924751BF042ACF3265E90211373C25C8 /* RNBridgeModule.m */, + E6FD759155B85474D1C15F8473E0C9F6 /* RNCommandsHandler.h */, + DBFA901B9E9443A2248E5A695AF863DE /* RNCommandsHandler.m */, + 3C6C88F000D42E1E401C7075ADC15AF3 /* RNEventEmitter.h */, + 9052DA01A55F1C47B7B92919552AAC8B /* RNEventEmitter.m */, + 610E64DCD046F3EA7BA9FB47611C672C /* RNNotificationCenter.h */, + 67280C936CFE5B6DD98C4242D8E002BA /* RNNotificationCenter.m */, + EF242DDAABF8F823999D3669E70D4280 /* RNNotificationCenterListener.h */, + 46D1906EE5CBCD96DE5885EE452ED41D /* RNNotificationCenterListener.m */, + 0F6A26B25688950A36ACE7E69C8EC081 /* RNNotificationCenterMulticast.h */, + C96964615B9F8F7FE876DFC466D2F08E /* RNNotificationCenterMulticast.m */, + F4F685E59CA20E3A8D923016C0BD2E5D /* RNNotificationEventHandler.h */, + 2566A1804E4853C29DEEF2A318128070 /* RNNotificationEventHandler.m */, + 05017CE8ABDD7A47FC93E01E39E48638 /* RNNotificationParser.h */, + C1407F01B5A3653F4A7CB2ADD9476CEE /* RNNotificationParser.m */, + 200DE445014A44C9F9D4B2F83F737F11 /* RNNotifications.h */, + DF3F8D40749CC44E4B77448B7CA36988 /* RNNotifications.m */, + 0097B831D5A9B39C1A487D43145B7CAF /* RNNotificationsStore.h */, + 958AA812FE979273FA6E04F1FCCF266A /* RNNotificationsStore.m */, + 6EEA2F86DA18D55EA72D0EACEF342EB9 /* RNNotificationUtils.h */, + E89C421F1F61AF286055F0A870203BEF /* RNNotificationUtils.m */, + 5449E244F235CF29D6B99C7A8C78E5C0 /* RNPushKit.h */, + C45ECC5508F8E2A2D68DFEED2E15026F /* RNPushKit.m */, + F9CD60B851F051B0A60BEE9A7C62222C /* RNPushKitEventHandler.h */, + CEE10F57E2A70426F83D3CE2488EF6FF /* RNPushKitEventHandler.m */, + 7489B16EF5CAA94B955C1B567E9D6648 /* RNPushKitEventListener.h */, + FA199344659BD6BBA1F44843A8F1073B /* RNPushKitEventListener.m */, + 562A3302DA1C370CCA9CEAAE9CF5D106 /* Pod */, + 1BC145E392B1565FB31492801D4F2662 /* Support Files */, ); - name = ReactNativeART; - path = "../../node_modules/@react-native-community/art"; + name = "react-native-notifications"; + path = "../../node_modules/react-native-notifications"; sourceTree = ""; }; - C7EFCC0DF1E201722806663C2CA529FC /* Pod */ = { + C8608733D49EAE9BFFC1FD7A771D38A0 /* EXAppleAuthentication */ = { isa = PBXGroup; children = ( - C206B460F00BE3D60B15BE7D81CB3D3B /* EXLocalAuthentication.podspec */, + 23798980D7D6B0CC21A97D3808881278 /* EXAppleAuthentication.h */, + AF530C3C866EBAA8BF35D40DC22A0A0E /* EXAppleAuthentication.m */, + E6B2EC501CD328F42E7BB1424DD941E0 /* EXAppleAuthenticationButton.h */, + 8FBB9920B3E73D1D0B0A17C7569C0394 /* EXAppleAuthenticationButton.m */, + 36657BF4BBB7BE8059A6EBD1E10C37A0 /* EXAppleAuthenticationButtonViewManagers.m */, + 6A250FCA3C17EEDDE48B8D03D8831ACC /* EXAppleAuthenticationMappings.h */, + 6A427698B8FD252ADCDCC46934F4BE17 /* EXAppleAuthenticationMappings.m */, + 63879AE45CF71EE31DF727C9F47BCB43 /* EXAppleAuthenticationRequest.h */, + 708D9BFECF2DF742CB6DD8AA8FD6AE45 /* EXAppleAuthenticationRequest.m */, + 9BAE9849C289E48257EA0A274D2559BF /* Pod */, + C64D1BE847B591BB208913A2B2242F83 /* Support Files */, ); - name = Pod; + name = EXAppleAuthentication; + path = "../../node_modules/expo-apple-authentication/ios"; sourceTree = ""; }; - C86C1D1A171514AC0624798801B35FDE /* KSCrash */ = { + C9204BB5B8438650737E978C28594162 /* Support Files */ = { isa = PBXGroup; children = ( - 1E78BD0F504D1A65FCB9DAECAE320657 /* Source */, - ); - name = KSCrash; - path = KSCrash; - sourceTree = ""; - }; - C9023A8DF9AF325A6A182AAE34C6391F /* Support Files */ = { - isa = PBXGroup; - children = ( - 3901A3B3F06ECD8EC4958E1172ACCF1B /* EXPermissions-dummy.m */, - 4295B57AAE8A51F29CF4FA7D56C33278 /* EXPermissions-prefix.pch */, - 1134AA4CCD4E29C74879D6BDCF6D501B /* EXPermissions.debug.xcconfig */, - 4EFE0B1BA18DBCCC4A83B871AFB1E0A3 /* EXPermissions.release.xcconfig */, + 53AEDE8E2CF908FDA04B03D3CAE253E3 /* FBReactNativeSpec-dummy.m */, + 1F4BB69159BA2D58EB20DE06F56D7C88 /* FBReactNativeSpec-prefix.pch */, + BED99C373DF99CA1D3FBC5E7F81A319F /* FBReactNativeSpec.debug.xcconfig */, + 5CD71215B8EE60E18EEDF1C2D5F124F9 /* FBReactNativeSpec.release.xcconfig */, ); name = "Support Files"; - path = "../../../ios/Pods/Target Support Files/EXPermissions"; + path = "../../../../ios/Pods/Target Support Files/FBReactNativeSpec"; + sourceTree = ""; + }; + C9263191A52C4C773168FC771C620000 /* RCTRequired */ = { + isa = PBXGroup; + children = ( + 1EA9C762A351B70116596A2E7CB74C77 /* RCTRequired.h */, + C0D23ED30840DC2A77CC122C56B621FE /* Pod */, + 0827DD7FD0FAC0C9BAB40790FD3ED457 /* Support Files */, + ); + name = RCTRequired; + path = "../../node_modules/react-native/Libraries/RCTRequired"; sourceTree = ""; }; C9A7E242B04B75180DD933503C90A025 /* Network */ = { @@ -17924,99 +17510,235 @@ name = Network; sourceTree = ""; }; - CBA0DDEA86B5331F979D7D142AA9848F /* UMTaskManagerInterface */ = { + CA8CC6F781903BAA25AA18CB00D630E8 /* UMTaskManagerInterface */ = { isa = PBXGroup; children = ( - 7E267174212E19B04A01C07145D71267 /* UMTaskConsumerInterface.h */, - 73E9AEB2E778BD948922EDDACC00E7F5 /* UMTaskInterface.h */, - 6D326D6854826E51E3B60CC4C38C3D10 /* UMTaskLaunchReason.h */, - 0D57A3B97BBF036A0F89F1C8EB0028D8 /* UMTaskManagerInterface.h */, - C9CA371FF7BCD3F21171FD25C7E984EA /* UMTaskServiceInterface.h */, - 6A6E0CB9BE2DAE8EFEA047CACFB426E7 /* Pod */, - 7E785726C5B8AF523BFB6D7C2B4BD8E2 /* Support Files */, + 074278C80DA4533D8AE15C7D373FBA2E /* UMTaskConsumerInterface.h */, + 8EAF2ABEBAEE8AC61024B9E248BE40FA /* UMTaskInterface.h */, + D16965FADC0182467809263522EFAFE8 /* UMTaskLaunchReason.h */, + BAF71E796068E6BBF244D71F499989E3 /* UMTaskManagerInterface.h */, + 475533E523D9AAB2D6357E18AC25B45E /* UMTaskServiceInterface.h */, + 268FE903C1F00E2586278E3EEC77708E /* Pod */, + FFF065B9EDED27A5EF3DE66459530C91 /* Support Files */, ); name = UMTaskManagerInterface; path = "../../node_modules/unimodules-task-manager-interface/ios"; sourceTree = ""; }; - CBFEEB473A4D4FE51210FD04BAF2E4A2 /* Support Files */ = { + CA9C9B6B949698EF034C5AD4522EAA2A /* react-native-background-timer */ = { isa = PBXGroup; children = ( - 96977E1E25852EB139B549371C3666EF /* react-native-cameraroll-dummy.m */, - 0137B39BC50F3262C2E164A39B235DD4 /* react-native-cameraroll-prefix.pch */, - 701C0920ECD665C80F9C28F52B56417D /* react-native-cameraroll.debug.xcconfig */, - 61190B649DECA3233E036C2E27576AAD /* react-native-cameraroll.release.xcconfig */, + 4EE5F56CD5B36D1A2F93F85A7A7E33CE /* RNBackgroundTimer.h */, + A9B68751E4B84B73C114ECBB96CA153B /* RNBackgroundTimer.m */, + 599F893775DF5CA77AD437719A6E770D /* Pod */, + 8189B98DBB1D97F866DB6F924795A271 /* Support Files */, ); - name = "Support Files"; - path = "../../../ios/Pods/Target Support Files/react-native-cameraroll"; + name = "react-native-background-timer"; + path = "../../node_modules/react-native-background-timer"; sourceTree = ""; }; - CDD666C781E3AC61E01A8E1E85A729BE /* Support Files */ = { + CAA61C0C6F1E5E32D398384291379CA4 /* UMAppLoader */ = { isa = PBXGroup; children = ( - B6587D1DF773B9E9D1F5D6232B7BBEB3 /* RNDateTimePicker-dummy.m */, - 21C25CB38B6A575937CCDBD087F8E3BA /* RNDateTimePicker-prefix.pch */, - FC9F0961A88737D9DF6EB115C4E9EDCB /* RNDateTimePicker.debug.xcconfig */, - 0BE0F9192683E20BA98C8C2EA4ECF5A3 /* RNDateTimePicker.release.xcconfig */, + E547D116FEED98615DA77805F58A68FC /* UMAppLoaderProvider.h */, + 5AED3CDAB8F993EF5F215585D86C4E7E /* UMAppLoaderProvider.m */, + 239E91C931A282B1D09E010D784A70BE /* Interfaces */, + FA5004241D938A28BE133C4251605536 /* Pod */, + 4C4B47AEB220D192EC587E8CBDE76BF4 /* Support Files */, ); - name = "Support Files"; - path = "../../../ios/Pods/Target Support Files/RNDateTimePicker"; + name = UMAppLoader; + path = "../../node_modules/unimodules-app-loader/ios"; sourceTree = ""; }; - CECEFD6E271041A8ABD3586765BFE9D6 /* RCTAnimationHeaders */ = { + CACFF5676DE5CD1F4BEC35E40035CE2F /* RNDateTimePicker */ = { isa = PBXGroup; children = ( - DDC98A98CB90A4FFF2DE3CC1807092FA /* RCTAnimationPlugins.h */, - 41001AD7FDEAF2D3404E598ED3B7DDAD /* RCTAnimationUtils.h */, - D70FB57857EFAE2D26EB78BB1B652DB9 /* RCTNativeAnimatedModule.h */, - EC83B127D59FD5EBB379F74AE245056C /* RCTNativeAnimatedNodesManager.h */, - 500CB55126021EE637A7B9B7D72E411D /* Drivers */, - 7EFBFCE9A24CBD2BACDEAC662C42F6DE /* Nodes */, + 1DE5D6F059D9DA87F5CCB88A98789EFC /* RNDateTimePicker.h */, + 80F1BFF34E4046A5C275E533DA3C6EA8 /* RNDateTimePicker.m */, + 3FEDBA1E9385ABCDE5AEFCA1E59ECAEB /* RNDateTimePickerManager.h */, + 9F4FF8DB7EA8496850F44B17A9CF6A3F /* RNDateTimePickerManager.m */, + A8CA2E7820F721584A0DCD0F57905F2E /* Pod */, + 3722C6C9EB6870E609937C5D33C87709 /* Support Files */, ); - name = RCTAnimationHeaders; + name = RNDateTimePicker; + path = "../../node_modules/@react-native-community/datetimepicker"; + sourceTree = ""; + }; + CB0DC8C9E4E68F3C7B1D6EF461B141F2 /* Support Files */ = { + isa = PBXGroup; + children = ( + 594714BFF43C3D926765DDD84658BA73 /* RNFBCrashlytics-dummy.m */, + 4FAF0B9C17758811C5D83729554EACA3 /* RNFBCrashlytics-prefix.pch */, + 309CC8389030B4B592160DADDB0C242D /* RNFBCrashlytics.debug.xcconfig */, + AA6DB86CAAF4362E6B415731F3E26A31 /* RNFBCrashlytics.release.xcconfig */, + ); + name = "Support Files"; + path = "../../../ios/Pods/Target Support Files/RNFBCrashlytics"; + sourceTree = ""; + }; + CB24D44169CC51FA07C28718E20A4750 /* Support Files */ = { + isa = PBXGroup; + children = ( + C0BDA414C7FAD399D75F3EDE295BBEAD /* EXConstants-dummy.m */, + D112CD0BA49FDA81DCFC8DCD0F6875A2 /* EXConstants-prefix.pch */, + C299A3D08D0711B5597F56C4AA43BECF /* EXConstants.debug.xcconfig */, + 22629D11EB2B355DA16B970AFFDB7450 /* EXConstants.release.xcconfig */, + ); + name = "Support Files"; + path = "../../../ios/Pods/Target Support Files/EXConstants"; + sourceTree = ""; + }; + CCAF863AD7DF6B4F6B5CA3F3717B86D8 /* UMModuleRegistryProvider */ = { + isa = PBXGroup; + children = ( + 87A270C2B7CC46E7814AF398A0408F56 /* UMModuleRegistryProvider.h */, + 7802BDE20DCF11D82491302C806643E7 /* UMModuleRegistryProvider.m */, + ); + name = UMModuleRegistryProvider; + path = UMCore/UMModuleRegistryProvider; + sourceTree = ""; + }; + CCB5D8D4459AF65AF3622048B88CCC6C /* Nodes */ = { + isa = PBXGroup; + children = ( + 20A49CA9DE94DFE86B4BA259A03AA132 /* RCTAdditionAnimatedNode.h */, + 7602CBC2F5FA398204C4DD3DF1F67C6B /* RCTAnimatedNode.h */, + 18ABAE27442876292334E0FFA745E1DB /* RCTDiffClampAnimatedNode.h */, + 24FFF063FB9972AAD27940D201948ADE /* RCTDivisionAnimatedNode.h */, + BA1332B5E93D70C9EA3377B2A1B89A5B /* RCTInterpolationAnimatedNode.h */, + 80C25DD58673E449DC782A94464B38CB /* RCTModuloAnimatedNode.h */, + 98E6EE1E1ABABF95E92F9E03E4540801 /* RCTMultiplicationAnimatedNode.h */, + 527DDD151C134F679B2D642F96C3CDCA /* RCTPropsAnimatedNode.h */, + 1135F54BE20F138B7BACB896A2F50D0C /* RCTStyleAnimatedNode.h */, + C4689B14EA62388B0528481789F70DDB /* RCTSubtractionAnimatedNode.h */, + 5F561CFE55AC904721C7055F48E88A06 /* RCTTrackingAnimatedNode.h */, + 186DAA847ADDDA4FCE625E3A62D12BC8 /* RCTTransformAnimatedNode.h */, + 7E25BBD2755A2F8278A52EEB258B1351 /* RCTValueAnimatedNode.h */, + ); + name = Nodes; + path = Libraries/NativeAnimation/Nodes; + sourceTree = ""; + }; + CCBA863C544B94CEAB231574DD43B650 /* Support Files */ = { + isa = PBXGroup; + children = ( + 97CC85F7A322A8C883D2DC8C8F378FB1 /* Yoga.modulemap */, + 7A329C3F15FB7A0AF00A8CE59638B9DD /* Yoga-dummy.m */, + F720D308CF7071639F49D7BABE3FD505 /* Yoga-prefix.pch */, + 6F055F01DACF890C5CA5F8E9547EA2E1 /* Yoga-umbrella.h */, + 1FE852AD4A00AD90F2F8490F4A630BF0 /* Yoga.debug.xcconfig */, + 3411586E47B7D03288A8ED57EF5342AF /* Yoga.release.xcconfig */, + ); + name = "Support Files"; + path = "../../../../ios/Pods/Target Support Files/Yoga"; + sourceTree = ""; + }; + CCC6DB9ACB24F980232648F3E6277C41 /* Pod */ = { + isa = PBXGroup; + children = ( + 0D39F7E1FE32756922D3B71C6C66AD11 /* UMCameraInterface.podspec */, + ); + name = Pod; + sourceTree = ""; + }; + CCD3BFFCF113F55A55F9E1A0582E0C12 /* Support Files */ = { + isa = PBXGroup; + children = ( + 47B2CFFA7BB9D017FD9B29C2B45AC44B /* React-callinvoker.debug.xcconfig */, + E4B92FFE0E725593C47FDAA9082740BD /* React-callinvoker.release.xcconfig */, + ); + name = "Support Files"; + path = "../../../../ios/Pods/Target Support Files/React-callinvoker"; + sourceTree = ""; + }; + CDC6BE3350C1563D42C4C02BF066A25B /* Pod */ = { + isa = PBXGroup; + children = ( + FD83084EF22D6863ED06EE147F615B17 /* LICENSE */, + A3E58C7DBBEAD342ED5EAD55094EC5AA /* react-native-mmkv-storage.podspec */, + C190D8F5B0DDE9F0C426556720219F6E /* README.md */, + ); + name = Pod; + sourceTree = ""; + }; + CDDCA61050428F76BE2A114D81A7BA68 /* Pod */ = { + isa = PBXGroup; + children = ( + EA8A8E205C931615D290BBE17BB9467D /* EXPermissions.podspec */, + ); + name = Pod; + sourceTree = ""; + }; + CF0C421DF4CD694A16416AB69223B655 /* Default */ = { + isa = PBXGroup; + children = ( + 977D76ECAF33E1BC91A10ED64C9ECA7A /* Base */, + 318EE7FEB2A11C9728169868FD119FCA /* CxxBridge */, + 5B7DDC0FAAC44153686E9BA396DBC45B /* CxxModule */, + 2EB160A0736EC95D0AB21988C9C0FC87 /* CxxUtils */, + 80B6FA22862E245BD10AD1BADCA1C318 /* Modules */, + E7BE2FDED0714B3CD777C662EE6BBAB9 /* Profiler */, + 2061385022720A28E06740B5E3D8137D /* UIUtils */, + 5A2CA4798CDBEF1379E0ADB806B456AB /* Views */, + ); + name = Default; sourceTree = ""; }; CF1408CF629C7361332E53B88F7BD30C = { isa = PBXGroup; children = ( 9D940727FF8FB9C785EB98E56350EF41 /* Podfile */, - 721FBB9C55DB8A2C167B27192DEC6A44 /* Development Pods */, + 961FBD9A25B32796E15B1763AAACC36C /* Development Pods */, D89477F20FB1DE18A04690586D7808C4 /* Frameworks */, 3400068431D3CEA258078DCD8DA8C835 /* Pods */, - 9C96ADE704FBC758CF1CCA401EA0546C /* Products */, + F203245C051FE88188DFE361A8D32BF5 /* Products */, EF5C4859F5A12DBFB3EA6B1F9AB46C96 /* Targets Support Files */, ); sourceTree = ""; }; - CF42B896A9FFE0C0927F0E7E970B8810 /* Pod */ = { + CF4DB4A5108345A3225B0872B0D661EA /* Support Files */ = { isa = PBXGroup; children = ( - 955B0ABD6B881D56D89D8467D05E1026 /* api.md */, - 0198722D68E03C4B9B279C4D4CD8A0D6 /* LICENSE */, - CDED5F5372FA6EF7326495F735851235 /* ReactNativeART.podspec */, - ED13537DBFF77DE7964F659DDCBBE171 /* README.md */, + 472C79CEAE9B20FA4753D176E4E34C02 /* React-jsinspector-dummy.m */, + C1DB7A8DED9D40B6C91FD8288ADEB7B8 /* React-jsinspector-prefix.pch */, + AA69A0C5EA60453EA72D966940C10E6E /* React-jsinspector.debug.xcconfig */, + B4782044EC10FD9DB140B3F6E9054AD7 /* React-jsinspector.release.xcconfig */, + ); + name = "Support Files"; + path = "../../../../ios/Pods/Target Support Files/React-jsinspector"; + sourceTree = ""; + }; + CF910FFE0831615F08EADC13BD74725A /* Pod */ = { + isa = PBXGroup; + children = ( + 9F891121EEA4702D42F6AAA827307D16 /* LICENSE */, + EE6E3502DD76FCE65B18B8525258A8FB /* react-native-orientation-locker.podspec */, + 3868817D9BE5906C6B8EA876A82A24C0 /* README.md */, ); name = Pod; sourceTree = ""; }; - D0A1B4D080DF1AF22AE4211A40CFB0D5 /* Pod */ = { + D09DBDC08123F9B88ACF37AE0CBC967D /* ios */ = { isa = PBXGroup; children = ( - 7FDB299549A5E3A7F289B83A8CDB39D5 /* LICENSE */, - 0B54E26720C532089346FE86B3132868 /* README.md */, - D9D5FD2D636CD6383F462202B6FFDBE1 /* RNVectorIcons.podspec */, + 6DAD2EA5D41100A994261256A631FAD6 /* RCTTurboModule.h */, + 8BEA473D1F6CF8A1358C4DBD28302476 /* RCTTurboModule.mm */, + C4EEFCE9ACCAE5FBCA5B8E26F3D1856A /* RCTTurboModuleManager.h */, + 9D7514896A50398E7EA0AF2CFAD692E9 /* RCTTurboModuleManager.mm */, ); - name = Pod; + name = ios; + path = ios; sourceTree = ""; }; - D0BD31B68E3F35B436BCABC0638963C7 /* Pod */ = { + D161B571FB06DF1EA3B12ECA8629B3D7 /* UMCameraInterface */ = { isa = PBXGroup; children = ( - D474F20FA3901D402C092E2072F7FDA2 /* LICENSE */, - AE47709761629CABA2BA6E4131D3A178 /* README.md */, - F650D5A2DDB953E8551DB0E070D2CF99 /* rn-fetch-blob.podspec */, + 1E9A0DF777E7551F1861824A97D82460 /* UMCameraInterface.h */, + CCC6DB9ACB24F980232648F3E6277C41 /* Pod */, + A632918A05B0C0F8185DB87876A4AFF4 /* Support Files */, ); - name = Pod; + name = UMCameraInterface; + path = "../../node_modules/unimodules-camera-interface/ios"; sourceTree = ""; }; D1B0B488533552F124F850163A3CB132 /* FlipperKit */ = { @@ -18040,15 +17762,6 @@ path = FlipperKit; sourceTree = ""; }; - D27E58D8E790DFE35F708EF1761E8737 /* bugsnag-cocoa */ = { - isa = PBXGroup; - children = ( - E709B7D918895085766532057B550217 /* Source */, - ); - name = "bugsnag-cocoa"; - path = "bugsnag-cocoa"; - sourceTree = ""; - }; D2A5DFCE08059B30609B67A4B1B6C486 /* Support Files */ = { isa = PBXGroup; children = ( @@ -18061,119 +17774,90 @@ path = "../Target Support Files/Flipper-DoubleConversion"; sourceTree = ""; }; - D2BB87ABF2D0379B8151A30B546665CD /* react-native-cameraroll */ = { + D42E8E2FEF376E30D029619C8CF4338A /* turbomodule */ = { isa = PBXGroup; children = ( - EF3D382978D78DB8C4A2717909EED7DC /* RNCAssetsLibraryRequestHandler.h */, - 128441885676DD4E8AB1FF7B1A115C41 /* RNCAssetsLibraryRequestHandler.m */, - 2705064DEB16DB24F040925BCA5F6004 /* RNCCameraRollManager.h */, - 1992F6EEFEAC307A87A495787C244ADD /* RNCCameraRollManager.m */, - 94B2B74240F5AECB6A1F0A2C293FF151 /* Pod */, - CBFEEB473A4D4FE51210FD04BAF2E4A2 /* Support Files */, + 87EBCD30608D129A47EEEB25151CF40E /* core */, ); - name = "react-native-cameraroll"; - path = "../../node_modules/@react-native-community/cameraroll"; + name = turbomodule; sourceTree = ""; }; - D35F6BBC82BB0DF5ADA0BE825A2EEC71 /* React-RCTText */ = { + D5A1281124DB1B56016756D23960D509 /* RawText */ = { isa = PBXGroup; children = ( - 69CF3496F196E4B79AD75BC43B719A0C /* RCTConvert+Text.m */, - 428829B9D99E52C02D9F9C48851D307F /* RCTTextAttributes.m */, - 23229A9F79137EC5C32A5FC4974614D2 /* BaseText */, - 43EE287EE35AB05B5D93E136E5EDA47F /* Pod */, - FCFBBE0E5DDCEE2654840AEF57F46DDB /* RawText */, - A25D44189272012B9CE829CE329E5F32 /* Support Files */, - 0C62C6FA83619C08BED907116743383D /* Text */, - 8F464B8A277C64EFD4C6E529DECC8330 /* TextInput */, - 408FB929E0634581F9E6D0326B224995 /* VirtualText */, + C54731E71DF80D26B8650C54BAF40E0C /* RCTRawTextShadowView.h */, + 7A92ECAC3A1F2597E7F6F4A3743E5804 /* RCTRawTextViewManager.h */, ); - name = "React-RCTText"; - path = "../../node_modules/react-native/Libraries/Text"; + name = RawText; + path = Libraries/Text/RawText; sourceTree = ""; }; - D526C46309BDFACBF5E631780994DA9A /* Pod */ = { + D5E99BEDED437EE5A7579DB8805F078C /* Support Files */ = { isa = PBXGroup; children = ( - 382EFED58DCA8E7193FCFBD1BB62B4B1 /* LICENSE */, - F5F84D10EF74634D0FCB13129D4B8F22 /* README.md */, - 4C5BC8126FADA854265387D3DD55D91F /* RNFBApp.podspec */, + A94C1972858879371C734E8235A9B521 /* React-RCTNetwork-dummy.m */, + D2CE893C7CA050D01E49C5C0C6D5D936 /* React-RCTNetwork-prefix.pch */, + CAC136B2695A2828833DF8153B21EA23 /* React-RCTNetwork.debug.xcconfig */, + 63AE8981557B5472C48C73815EFDD81B /* React-RCTNetwork.release.xcconfig */, + ); + name = "Support Files"; + path = "../../../../ios/Pods/Target Support Files/React-RCTNetwork"; + sourceTree = ""; + }; + D5FA9CE10DDB0072623872BCE8BFD4EC /* Pod */ = { + isa = PBXGroup; + children = ( + 1380835923090445C46163B372DDC657 /* LICENSE */, + 0C26863A8FB144BCB7420104DE244091 /* README.md */, + EEF118D8545B4604B15FFD7B318E4E2E /* RNFBApp.podspec */, ); name = Pod; sourceTree = ""; }; - D5C29F1A49DB36147E9D23E58FF89FD2 /* RNImageCropPicker */ = { + D66A0DC7E12BDCC5090E2C10B7E81C5B /* Pod */ = { isa = PBXGroup; children = ( - A347E733DD144D64D06020C3913C52B3 /* Compression.h */, - 8BBF7A4E68A31F1A285B5CCB2E2A720B /* Compression.m */, - 603BAA50500CCF9DDAA789B05DA5431D /* ImageCropPicker.h */, - 0BFA466E5FDAB6CCE83BF9DDCBE72305 /* ImageCropPicker.m */, - AA8AE8F91ADE6CC35F55B1A7E0157DDC /* UIImage+Extension.h */, - E5593CB6CA9BD3930C83237F8F9B656E /* UIImage+Extension.m */, - 0E8D08598952C115C8C26E5B1E95284E /* UIImage+Resize.h */, - F58267D4AF5DDBE52E92608956536334 /* UIImage+Resize.m */, - 03152C53207508BF08513A8D8A420D20 /* Pod */, - F3222475CBE281DAD1C87C8B10BBBC48 /* QBImagePickerController */, - 154F796048428F6E3E4481B068D71EC8 /* Support Files */, - ); - name = RNImageCropPicker; - path = "../../node_modules/react-native-image-crop-picker"; - sourceTree = ""; - }; - D73BBA1C2866858577B8A74420A9B8E4 /* Support Files */ = { - isa = PBXGroup; - children = ( - AF2EFFDCC67B24BCD8BB72BB6362E6B1 /* KeyCommands-dummy.m */, - 3448D6404B855EB294BFB114FA1124DF /* KeyCommands-prefix.pch */, - 7F539EF06CF6824CA9CD00CA7BC7CB6A /* KeyCommands.debug.xcconfig */, - 1D35B8F90C4B0C183884AE2D6077C005 /* KeyCommands.release.xcconfig */, - ); - name = "Support Files"; - path = "../../ios/Pods/Target Support Files/KeyCommands"; - sourceTree = ""; - }; - D7D299527FC6E48E0616004EC49AB790 /* Support Files */ = { - isa = PBXGroup; - children = ( - DBA8760FE4562DBA8844F434441ABE4F /* RNCMaskedView-dummy.m */, - 4AE9D6CF50E23989C0B2606E12509C7E /* RNCMaskedView-prefix.pch */, - B65F6B6AFDDF679826C5342BCE3C2CB4 /* RNCMaskedView.debug.xcconfig */, - 4908928E270C6B7358719FDD46676BD8 /* RNCMaskedView.release.xcconfig */, - ); - name = "Support Files"; - path = "../../../ios/Pods/Target Support Files/RNCMaskedView"; - sourceTree = ""; - }; - D811F42B94AA4B26876A1284A6554C8B /* RNConfigReader.xcworkspace */ = { - isa = PBXGroup; - children = ( - 6849721AB8101FAE453B68A42AB5F27C /* contents.xcworkspacedata */, - ); - name = RNConfigReader.xcworkspace; - path = ios/RNConfigReader.xcworkspace; - sourceTree = ""; - }; - D8273CA949665AC698D1E87616D7FCB1 /* Support Files */ = { - isa = PBXGroup; - children = ( - D1207207F6CE5936DB18C2F8BAC8279E /* RNRootView-dummy.m */, - DA5885B5167CF1A74D09B120F0BAB820 /* RNRootView-prefix.pch */, - 48F31C9E21AD82BF2534690A1ADD63F6 /* RNRootView.debug.xcconfig */, - FFD260E5D2C738B6BF820B4023CCBCD3 /* RNRootView.release.xcconfig */, - ); - name = "Support Files"; - path = "../../ios/Pods/Target Support Files/RNRootView"; - sourceTree = ""; - }; - D867B9C36AAF93BB07B4B326E76A4BEE /* Pod */ = { - isa = PBXGroup; - children = ( - C1DE9F2CA4B226AD48DEADB4C14A2A5D /* RCTTypeSafety.podspec */, + 0C2E0DB3EC3A10C78EA0FD8DF4E6815D /* React-RCTBlob.podspec */, ); name = Pod; sourceTree = ""; }; + D8472C7D3921721C76F81E630B7D96B7 /* React-CoreModules */ = { + isa = PBXGroup; + children = ( + FC45955B628228E0D0C9521BCC8F3395 /* CoreModulesPlugins.mm */, + 269103AE2842B6139A3CB355BF124290 /* RCTAccessibilityManager.mm */, + 9B0CD9409BD7015ED66ADBCD54D55FCE /* RCTActionSheetManager.mm */, + 24EF4F21CA0981558A2E33447B04DCF0 /* RCTAlertManager.mm */, + D89C1050BD97F41EDFF2FC4C15139634 /* RCTAppearance.mm */, + 385C921A580DD41425132470A995ADA8 /* RCTAppState.mm */, + BB7EB853165E8E006751FE1B7E183C1B /* RCTAsyncLocalStorage.mm */, + 8EB53507BB5AD036B428E8B9C6B20031 /* RCTClipboard.mm */, + 3A4010E0820914403105766CA640AA0A /* RCTDeviceInfo.mm */, + 4A7225A2194793114250CE1927337DD2 /* RCTDevLoadingView.mm */, + BA817FB4A57C669CE63C028340C0DF60 /* RCTDevMenu.mm */, + FADB94CE7A937E474B73DFEED2AAB8A9 /* RCTDevSettings.mm */, + D688572FBCC28D9871946C75B648AD1E /* RCTExceptionsManager.mm */, + 0A8BD8715F66E697FEAC7397BE88D4A3 /* RCTFPSGraph.m */, + 3224C3AF12965DCE435D987250A52E53 /* RCTI18nManager.mm */, + D44F3771A051790D917427E8BAED5119 /* RCTKeyboardObserver.mm */, + FDF89BB54E5CB2C32C6511C73C6B696E /* RCTLogBox.mm */, + 4DE488FC1A00492FF950068953C3E320 /* RCTPerfMonitor.mm */, + E2BC5554A4B30B3596021E95E913B75B /* RCTPlatform.mm */, + 709B74F86C9DD5A0882AFFF117A95AD2 /* RCTRedBox.mm */, + F1FD21236AAA501D54541BE94EF23DE8 /* RCTSourceCode.mm */, + 22B2621B5452FBF1E9860F81384C7768 /* RCTStatusBarManager.mm */, + 7885BFE794162E7DB0AD8A7C5C893E0D /* RCTTiming.mm */, + 95B91A66CA8605937DD44B8BCE56913F /* RCTTVNavigationEventEmitter.mm */, + 4FEE944880F89AA298E1FA6DA1AEB54E /* RCTWebSocketExecutor.mm */, + EB881B5852C5A92C627D8404F4949D72 /* RCTWebSocketModule.mm */, + E1C7711EF287EA42294F32B24E2C582E /* Pod */, + 24106BFA9F9370684162C81AF4042437 /* Support Files */, + ); + name = "React-CoreModules"; + path = "../../node_modules/react-native/React/CoreModules"; + sourceTree = ""; + }; D89477F20FB1DE18A04690586D7808C4 /* Frameworks */ = { isa = PBXGroup; children = ( @@ -18181,136 +17865,96 @@ name = Frameworks; sourceTree = ""; }; - D90B3B1C85E811A1E6F6E2F46ECB939E /* EXFileSystem */ = { + D900D0720D37864F4B460A6324B0857F /* EXHaptics */ = { isa = PBXGroup; children = ( - 0BEDAED93228C373ADA8F3B7F3DC31E9 /* EXFilePermissionModule.h */, - D79C9F2D77AA78CCBC29D9F14C0C204D /* EXFilePermissionModule.m */, - 70D1C7A75E50A03600FE3AAC8F13C821 /* EXFileSystem.h */, - 9BB8A71916E82392E9B0197A36C12033 /* EXFileSystem.m */, - 920F7DABE38B2A1C16988B0AF4DD7A5F /* EXFileSystemAssetLibraryHandler.h */, - 79A081D4ED6B40E9F938F1F25B3FEEBF /* EXFileSystemAssetLibraryHandler.m */, - FE789293614651E0AFF0065BE7CD5A36 /* EXFileSystemLocalFileHandler.h */, - 45F9306FAFA433BFB7107599688C2234 /* EXFileSystemLocalFileHandler.m */, - A8AA7514868494473202C83930F07E68 /* NSData+EXFileSystem.h */, - 877D1D546EEC3A7F2D6F189F1A4EC633 /* NSData+EXFileSystem.m */, - B479ACCE09BBADB7D83DB327ADAB2FFD /* EXSessionTasks */, - 9C2BB1CC9390462F2FB8D3EFF60A138F /* Pod */, - 02555636E7DC8D88C01F0B4D22AAD75E /* Support Files */, + ECDD159A98CEC8404A84784B05FE4A60 /* EXHapticsModule.h */, + D41292C5501551FD56A523432F93C42F /* EXHapticsModule.m */, + DA25D266C17C3DD1B1AD84FC8200FE41 /* Pod */, + 437226CC909EE8647C5AD759E09F4514 /* Support Files */, ); - name = EXFileSystem; - path = "../../node_modules/expo-file-system/ios"; + name = EXHaptics; + path = "../../node_modules/expo-haptics/ios"; sourceTree = ""; }; - DA0155A9707F7A7502C69CB1B71C31E9 /* UMPermissionsInterface */ = { + D961C584C9A70F85ED99D655BBFFD0B3 /* EXWebBrowser */ = { isa = PBXGroup; children = ( - E9B869E80FBDE534AF2DC0C3ECB5004A /* UMPermissionsInterface.h */, - F7532FDDCD1684DD12B86151F0A1AD2E /* UMPermissionsMethodsDelegate.h */, - BBFD63D0D783EC847E063129AE89CC65 /* UMPermissionsMethodsDelegate.m */, - 7B582CCB85E15EE5AA7498FCDD43D437 /* UMUserNotificationCenterProxyInterface.h */, - B02039631428F9D4DBCACFEDCAB96BF9 /* Pod */, - 7AEB97E7662E5C9DB5488345FDBEF150 /* Support Files */, + E7C71728B5239AD21C232CCA09BF7791 /* EXWebBrowser.h */, + 1498BD2ACEA68034CA0FB3D0DBEAEDDF /* EXWebBrowser.m */, + DB5D97407FCF41150F2DEE16BB9EC81B /* Pod */, + 4C3644E8FEB35957E9862405587FFDD4 /* Support Files */, ); - name = UMPermissionsInterface; - path = "../../node_modules/unimodules-permissions-interface/ios"; + name = EXWebBrowser; + path = "../../node_modules/expo-web-browser/ios"; sourceTree = ""; }; - DA660677291CBCD1ECE316AE4E64570F /* Support Files */ = { + D9D9C76D94D5118463DDCDD181AC0CF6 /* EXAV */ = { isa = PBXGroup; children = ( - 5FA8CDF30977643EEBBE3984FC6DEB9C /* React-cxxreact-dummy.m */, - 7E0F178A220E33C2EB642977FE77EE0E /* React-cxxreact-prefix.pch */, - 2A739BFF788A257962081AB5BBFF9D61 /* React-cxxreact.debug.xcconfig */, - 2A9E642B7438B584CE40B00822D623B6 /* React-cxxreact.release.xcconfig */, + 743FB0BE232CB1494BF0E5BA46B04615 /* EXAudioRecordingPermissionRequester.h */, + 8BF533513B80E51C6B6DC0B96AD7D3D0 /* EXAudioRecordingPermissionRequester.m */, + F9BD899F9008AC9D049273A772876009 /* EXAudioSessionManager.h */, + 8DEFFA9061DBC18CEFC789336C38F614 /* EXAudioSessionManager.m */, + BF4C678D0788358690A8807B760E3466 /* EXAV.h */, + B66CF7B2666A62C5D9073BB29B03B3BA /* EXAV.m */, + 902C5ECA46518635A6D739983EE418D2 /* EXAVObject.h */, + 9FBFE3CD91607A87E38C7F2703008CBA /* EXAVPlayerData.h */, + 8A7FCD58C0AD9B7BECA4A44BB9BCB359 /* EXAVPlayerData.m */, + 0179433A04E44A7F7BFEAF3097173143 /* Pod */, + 8804BF6963913E67CFFF8842A238CED0 /* Support Files */, + 3F6A7084BBE258F490806BA74258B5A0 /* Video */, ); - name = "Support Files"; - path = "../../../../ios/Pods/Target Support Files/React-cxxreact"; + name = EXAV; + path = "../../node_modules/expo-av/ios"; sourceTree = ""; }; - DBFEF84851C94D8F9D9E178D5CDD5327 /* Pod */ = { + DA25D266C17C3DD1B1AD84FC8200FE41 /* Pod */ = { isa = PBXGroup; children = ( - E9CEF55F67E59B30ED7E9C871EF1FAEF /* LICENSE */, - B8E787BB827088FF028634E3C9C190AC /* README.md */, - DA9430DEDF6AADB876CE4B5372DD1623 /* RNCAsyncStorage.podspec */, + FD42B0C229601BD8089FE2D8A5E85AE2 /* EXHaptics.podspec */, ); name = Pod; sourceTree = ""; }; - DCBDC2813D02CD43AAD20A4D4BBBB537 /* CxxUtils */ = { + DA2B4D8414CF91ABE25936E5899E9382 /* Pod */ = { isa = PBXGroup; children = ( - F33866B0B58564BAA15AE899ECD4ACA2 /* RCTFollyConvert.h */, - 3C24D7E1C7D5F3E9E5DDCD4B96C7FAF8 /* RCTFollyConvert.mm */, + B1FCA085F6B34F71A0B249A0FF6C415C /* LICENSE */, + AB0BBE2D9739D6C09CE2C0074B6894D8 /* react-native-webview.podspec */, + 5EC60725022D264A6CF5F596162355D3 /* README.md */, ); - name = CxxUtils; - path = React/CxxUtils; + name = Pod; sourceTree = ""; }; - DD762FA6B790835B10AD4A5F866A4E79 /* Support Files */ = { + DB5D97407FCF41150F2DEE16BB9EC81B /* Pod */ = { isa = PBXGroup; children = ( - 61A0A3BB44000C175B6D79987E932191 /* RNReanimated-dummy.m */, - 31ADD9F6D606D4723C903E071B53FF57 /* RNReanimated-prefix.pch */, - 3238AE70650330AAB8D19818EC248F8D /* RNReanimated.debug.xcconfig */, - 5B93654EC83C18D9034376903964105B /* RNReanimated.release.xcconfig */, + C0227DD6CAF9A1DB11BF47E2560FD0BE /* EXWebBrowser.podspec */, + ); + name = Pod; + sourceTree = ""; + }; + DD48AACE4AF818416D524AC1E2ABEFCD /* Support Files */ = { + isa = PBXGroup; + children = ( + 39B3A5D82B7D2DC68150994DD9133159 /* UMFontInterface.debug.xcconfig */, + 3DC75F5CC22AA9F7A705303B776365C3 /* UMFontInterface.release.xcconfig */, ); name = "Support Files"; - path = "../../ios/Pods/Target Support Files/RNReanimated"; + path = "../../../ios/Pods/Target Support Files/UMFontInterface"; sourceTree = ""; }; - DD9331D5DFCFE97933F9B50DC25D6CC6 /* React-cxxreact */ = { + DE06D6B3D18F32123327608397B9EED0 /* Support Files */ = { isa = PBXGroup; children = ( - 02C7A9F63BB29B3D692C7CAD3431F9AA /* CxxModule.h */, - C80708D8630BF3DFED231B48F359C820 /* CxxNativeModule.cpp */, - 38CE52EF9655323D0BB6B719D3109487 /* CxxNativeModule.h */, - 23529667C0DDF44BF8A988F5851961DE /* Instance.cpp */, - 2EF14D6F56A69BDC6B6D7C00339BA895 /* Instance.h */, - 236F1FBC6537DF2EE700BB743C408869 /* JsArgumentHelpers.h */, - 3F860474CE8CA0FC1EC7491B30FFE313 /* JsArgumentHelpers-inl.h */, - 70E2C1A18C3D913B86BC0E04AA67A946 /* JSBigString.cpp */, - A0DE001CBD28C67A32BEF86396867FAE /* JSBigString.h */, - 6F26F7CE4E362B14A8330F9980FFC004 /* JSBundleType.cpp */, - 6A1D8524615EACD00EA8DFE4FD99791F /* JSBundleType.h */, - 0E3BA941AFEBE0FBEA5D4A1BF58490AC /* JSDeltaBundleClient.cpp */, - F5F6523DD6356BDA04307C782B8DF005 /* JSDeltaBundleClient.h */, - 516082792493DFAFEC6A557841883134 /* JSExecutor.cpp */, - 8AF4EAEE524F746D622FE1C1AA19BC79 /* JSExecutor.h */, - C1B2EA3CFB29E4AD312F3CE2FD00004B /* JSIndexedRAMBundle.cpp */, - 38E974DE38662217A03138E2F4A82ED9 /* JSIndexedRAMBundle.h */, - 495A404B632FA445146F59B8245C9C04 /* JSModulesUnbundle.h */, - FCAA6567C7D6EDABBBE4182E6B9150DC /* MessageQueueThread.h */, - 5CB7E1115201551D332C260A83C0DE6F /* MethodCall.cpp */, - 5B7DAB3E1CA7A2F1AC4AD61C61C4DCC7 /* MethodCall.h */, - 3ED925A34FE0D8E8329AD72EAB430562 /* ModuleRegistry.cpp */, - 452D5FB1FF9EAD07A6DBDA261F49275F /* ModuleRegistry.h */, - 6D138B37D19B894857CCD5CBC66549A6 /* NativeModule.h */, - 486DE2CD5FCBA4044A34B0A390647838 /* NativeToJsBridge.cpp */, - C195B6F931DD0F08D7628C1EDD165768 /* NativeToJsBridge.h */, - 956610D9438018359D0D415E964CFF83 /* RAMBundleRegistry.cpp */, - 317DDD2002E14CF31540476448A321F8 /* RAMBundleRegistry.h */, - 27C50D36969AF24EB251E6592A7A1BFE /* ReactMarker.cpp */, - 6E5370F5F3BEB32B6D1EEB4DF030ADA7 /* ReactMarker.h */, - F90C6310B29B830681C7BE08DF73EB6E /* ReactNativeVersion.h */, - FC63095311C14548106688A9B3279C75 /* RecoverableError.h */, - E388E2007F476ED07686865426FB85F5 /* SharedProxyCxxModule.h */, - 281680EF1F0C0F8D5876B932CC6961E6 /* SystraceSection.h */, - 3022F38DDE88CB00FB5F15B26BF244DE /* Pod */, - DA660677291CBCD1ECE316AE4E64570F /* Support Files */, + 2C33A92650B97110B906CA98E455BE4A /* React-cxxreact-dummy.m */, + C822F17BCFDB2334B99E657E4AAE53DA /* React-cxxreact-prefix.pch */, + 6B870EAAB051C555E43493994F3A16C3 /* React-cxxreact.debug.xcconfig */, + 0DC32B9E5DF32440966958300E1E528E /* React-cxxreact.release.xcconfig */, ); - name = "React-cxxreact"; - path = "../../node_modules/react-native/ReactCommon/cxxreact"; - sourceTree = ""; - }; - DE38A7557C1E27EF1209860DC5428B02 /* vendor */ = { - isa = PBXGroup; - children = ( - D27E58D8E790DFE35F708EF1761E8737 /* bugsnag-cocoa */, - ); - name = vendor; - path = cocoa/vendor; + name = "Support Files"; + path = "../../../../ios/Pods/Target Support Files/React-cxxreact"; sourceTree = ""; }; DE77D077B3E9D90E037011C88B85E522 /* Frameworks */ = { @@ -18333,6 +17977,46 @@ name = FlipperKitUserDefaultsPlugin; sourceTree = ""; }; + DEB3D9BC7877745AC2E6604AE60D839E /* React-RCTAnimation */ = { + isa = PBXGroup; + children = ( + 4C21257485BC2D51DCD260B4DC14D4AA /* RCTAnimationPlugins.mm */, + D256A4727B780EF5BA92120DC5F046FB /* RCTAnimationUtils.m */, + CCDD06E3947BBBF8B4AAF7FE27B2EDB3 /* RCTNativeAnimatedModule.mm */, + 92FFCAC82C739423D616A6982313AD6F /* RCTNativeAnimatedNodesManager.m */, + 4E08213E335175ECB07416A8E0B2DDB4 /* Drivers */, + 4C9057C5FE361FD99C392E4F75900BCE /* Nodes */, + 9C02DFC6B1D773DFF81048888F52D7D0 /* Pod */, + 6DD9FD4FC4DB31371C117A12E7E48A70 /* Support Files */, + ); + name = "React-RCTAnimation"; + path = "../../node_modules/react-native/Libraries/NativeAnimation"; + sourceTree = ""; + }; + DF7D7D3DE64A967BB88BBB99746A3797 /* RNRootView */ = { + isa = PBXGroup; + children = ( + BD8981BD078FBDA3508665CC82823418 /* RootView.h */, + E35CE8EFF7AF2E155F9243DADCB3B0B9 /* RootView.m */, + 1970688D225E8819B06CE7B431A09C3A /* Pod */, + 8AF929DF508CC2D1525B65706F24E2BF /* Support Files */, + ); + name = RNRootView; + path = "../../node_modules/rn-root-view"; + sourceTree = ""; + }; + E0187C9660C824F7BCB997347199EFE2 /* Support Files */ = { + isa = PBXGroup; + children = ( + 861FDF855F10BBA4101DE1640FA86B09 /* RNGestureHandler-dummy.m */, + EE7F450BFCC8761BB3215E27B536AAB9 /* RNGestureHandler-prefix.pch */, + 9007DA4879E432350FF922D4EB8F6335 /* RNGestureHandler.debug.xcconfig */, + 33AE7E2BC8F03949CB5151D11F1C3A81 /* RNGestureHandler.release.xcconfig */, + ); + name = "Support Files"; + path = "../../ios/Pods/Target Support Files/RNGestureHandler"; + sourceTree = ""; + }; E04736081CFE4BC73F78EC30146236D2 /* GoogleDataTransport */ = { isa = PBXGroup; children = ( @@ -18383,61 +18067,147 @@ path = GoogleDataTransport; sourceTree = ""; }; - E1009CF6D720934DF51787A152623C92 /* RNDateTimePicker */ = { + E1C7711EF287EA42294F32B24E2C582E /* Pod */ = { isa = PBXGroup; children = ( - C7F09D8EEBA127CCF19F0EC01B60589A /* RNDateTimePicker.h */, - 53F5CACA26BE72413969279AC505C1E4 /* RNDateTimePicker.m */, - 83389C6F43CBDE1A2A950EF6219A46C8 /* RNDateTimePickerManager.h */, - 2F4AD124F81A8C5AE7F31882E70B16F0 /* RNDateTimePickerManager.m */, - EC0D0A44D043EE321C9D5D69FD78B80C /* Pod */, - CDD666C781E3AC61E01A8E1E85A729BE /* Support Files */, + E3671C9B5261AD74D631893458238BD0 /* React-CoreModules.podspec */, ); - name = RNDateTimePicker; - path = "../../node_modules/@react-native-community/datetimepicker"; + name = Pod; sourceTree = ""; }; - E1A6A5527B8AF92949B3BD0A9F957A70 /* React-RCTSettings */ = { + E256A9516DC6D6A2F675606769A41CCB /* React-RCTImage */ = { isa = PBXGroup; children = ( - 8D9725FFDE06CB237251EADBA9827F86 /* RCTSettingsManager.mm */, - ABB744E4BDA4DA4474B6F9DBCD15CDDC /* RCTSettingsPlugins.mm */, - BBA837FCCB47B023F6823CB6D1E7690B /* Pod */, - 9BB6234C987718DC13F14E841155ACC7 /* Support Files */, + 8250808ABBF4398B706C6E4F32AA58EF /* RCTAnimatedImage.m */, + A929E14F1256AEF6A35A4618DFC278CE /* RCTDisplayWeakRefreshable.m */, + AB9C060C9A1EE73FCF17E24F9E663F51 /* RCTGIFImageDecoder.mm */, + AF3725A1FB3293E2E6B03AB140D810D8 /* RCTImageBlurUtils.m */, + 1473448D95B518282D24564BECDF5F19 /* RCTImageCache.m */, + 181E97046A4BEE5B6B92EF971D0CD2AE /* RCTImageEditingManager.mm */, + E7E9788EF5DEB806E5C7DD74AE74E575 /* RCTImageLoader.mm */, + 9611129164E010EA84C5F775861C7C6F /* RCTImagePlugins.mm */, + 5C5E3037378DBB781445FABD2949953D /* RCTImageShadowView.m */, + E39EB946FB3EF2E4FE9476750C85F936 /* RCTImageStoreManager.mm */, + EAD45F45D4778E042FD25097DD107ACB /* RCTImageURLLoaderWithAttribution.mm */, + 841E07B9F42B3836CB767DC0D972ADF9 /* RCTImageUtils.m */, + DF8703A216CC217E7205601288CB47F1 /* RCTImageView.mm */, + 4A96ADC3AFABCAD4DBCA96ED20BAB417 /* RCTImageViewManager.mm */, + C88BCA0778A10C685BF4174828456698 /* RCTLocalAssetImageLoader.mm */, + 04862A22908BDB951726B6084DC36B36 /* RCTResizeMode.m */, + BC82D974429C0673E8C435355EC66EA9 /* RCTUIImageViewAnimated.m */, + A0199E7239D676DF34BFCB12430A203D /* Pod */, + 8547937C26A75EF4A8050C871F148FF0 /* Support Files */, ); - name = "React-RCTSettings"; - path = "../../node_modules/react-native/Libraries/Settings"; + name = "React-RCTImage"; + path = "../../node_modules/react-native/Libraries/Image"; sourceTree = ""; }; - E3121BE0E0EA9664F75E7DCE36678653 /* jsi */ = { + E3D745F13ECDDF2B43C4E32C7B9CCECC /* Support Files */ = { isa = PBXGroup; children = ( - 5E43337D8BFDDF91530342AF8F92E649 /* decorator.h */, - C22B27DF11B24D994A2D5D315674E58E /* instrumentation.h */, - 387B70E27F656C0E6E9F164C880931BE /* jsi.cpp */, - 093BFCF0BDEDAC7D53A0FD539605E3CA /* jsi.h */, - 0EDF185DE43B85FF16D5D778476B8FB7 /* jsi-inl.h */, - 4FE4232C3853E464413871A3558E5B9F /* JSIDynamic.cpp */, - 7A6CE34BC277D54BE72A9F35FFFEBA23 /* JSIDynamic.h */, - C8FB6C9B838BD0820162FE3B20F095D3 /* jsilib.h */, - E994EEBAC182321BD1566AC9E72097FE /* jsilib-posix.cpp */, - 0956FB3C42355DF5911478E276BEC1D9 /* jsilib-windows.cpp */, - DF2A0F63013D4687C700B4CD23A80AF7 /* threadsafe.h */, - ); - name = jsi; - path = jsi; - sourceTree = ""; - }; - E53604BCCEDA8D0736C10B7BE25BCFF4 /* Support Files */ = { - isa = PBXGroup; - children = ( - E09E7AB54847BAC9FC2CC0A73B138BFD /* React-jsiexecutor-dummy.m */, - 4058209DFF0440C625A956E49C868465 /* React-jsiexecutor-prefix.pch */, - 40612F8CF2A2C92FE9200274E48A38F5 /* React-jsiexecutor.debug.xcconfig */, - 1163286817EABFB4D7BA7E76A1C85633 /* React-jsiexecutor.release.xcconfig */, + B2118D9D2ACC4FA9474EE6F29445370A /* React-Core-dummy.m */, + E31061B03FBD59815DA1845FCA055D2D /* React-Core-prefix.pch */, + 728EDB6FE35A00B0D25778F0660F44D3 /* React-Core.debug.xcconfig */, + 1514FBF9E2F5ACA5F0779042C8A6D2E5 /* React-Core.release.xcconfig */, + B481929AC0648507A5DBBEA84287253F /* ResourceBundle-AccessibilityResources-React-Core-Info.plist */, ); name = "Support Files"; - path = "../../../../ios/Pods/Target Support Files/React-jsiexecutor"; + path = "../../ios/Pods/Target Support Files/React-Core"; + sourceTree = ""; + }; + E45307C51E63A7C85F3097B50F749D3E /* Source */ = { + isa = PBXGroup; + children = ( + 6A6C6EAE481BB3543A0ABB16DF747721 /* BSG_KSCrashReportWriter.h */, + D7DBEBBB702FC3ECB3E47724255E4021 /* BSGConnectivity.h */, + C181A953845ECC2E16575077B0638765 /* BSGConnectivity.m */, + 73E1773B8FFBB2A2151CC4E550176CC0 /* BSGOutOfMemoryWatchdog.h */, + E805C3238B7934A407F4B9BA654A7E23 /* BSGOutOfMemoryWatchdog.m */, + F87C9ADF32002A888101A01C46CD1B2B /* BSGSerialization.h */, + 4B17AB4D5E54B942BCD0E3A01D2855AF /* BSGSerialization.m */, + 26DE4267CDFB8A8BA0F41D4EA688FB75 /* Bugsnag.h */, + FCABDB9A13F2704E7EDF314450D91B28 /* Bugsnag.m */, + 23BF68F9A6B7345B97B6CD4C263EE2E6 /* BugsnagApiClient.h */, + A32D263D9ACDE5641E340FFE1944282E /* BugsnagApiClient.m */, + D5E11206EEC78033A85D721E4491E54C /* BugsnagBreadcrumb.h */, + 79A8AB3833DF601341506044E5D99107 /* BugsnagBreadcrumb.m */, + 64853B39BB2260A3B9B2115A7E38179D /* BugsnagCollections.h */, + BE8D2C69D34441AEB65CB385B541B417 /* BugsnagCollections.m */, + CA6F2569D4EE9EE19902BDE4DFB7EA84 /* BugsnagConfiguration.h */, + FB6C500D775966BE59D9E49191929128 /* BugsnagConfiguration.m */, + F91149FD2C365CA0947E2918BDFB07FD /* BugsnagCrashReport.h */, + 8EEA6FF4DAB07349163475C36A98AEF4 /* BugsnagCrashReport.m */, + 439DADA5C0DE465B1963F6556AAAD1FB /* BugsnagCrashSentry.h */, + 12D9F6F007EB9471C4A0E33F9D167C2D /* BugsnagCrashSentry.m */, + D77D07CF2BCA6D12243CC596897FE6E6 /* BugsnagErrorReportApiClient.h */, + 9C3712E8E67C8FAA4F51A34DAB269461 /* BugsnagErrorReportApiClient.m */, + E61FC7FA4C9D8CE81CBE9AFC46072A47 /* BugsnagFileStore.h */, + 175A70968F69D3696ABAE351994F6E53 /* BugsnagFileStore.m */, + FFEABEB6EC10D3BF0EE60B8C738655EE /* BugsnagHandledState.h */, + 41FB6A343FFAD380319589F5195849A6 /* BugsnagHandledState.m */, + 43B1E6BF4478C0A4B47133EC7479F672 /* BugsnagKeys.h */, + 0931CD748FE203E76C584140BA32A179 /* BugsnagKSCrashSysInfoParser.h */, + 862463839B5E5632411D5AEA3F7FD963 /* BugsnagKSCrashSysInfoParser.m */, + 0612E2A68FE8BC4C41BA849DD2046748 /* BugsnagLogger.h */, + 24DF1BCD3CD68CFBB4E023D7DFB1E5E6 /* BugsnagMetaData.h */, + 650599829DAAE76693395E94846CDC35 /* BugsnagMetaData.m */, + 4B532F7FE42EEB81ED448064B1E331EB /* BugsnagNotifier.h */, + 203ADEB243DDF0066313450E8FB412BD /* BugsnagNotifier.m */, + 1B909F75B55B78AED9EF7A2C9DAF3CE0 /* BugsnagPlugin.h */, + FD4385FC9594D238BDC002A02351EEBD /* BugsnagSession.h */, + D79007C04E086C764C339CC593525690 /* BugsnagSession.m */, + 8198A32E16C7774E1AB5DFDFC2A4A4D2 /* BugsnagSessionFileStore.h */, + EE034849C71A392F5328CB6451C015B4 /* BugsnagSessionFileStore.m */, + 0A3FAE4B5FB2A07F5E1F06F05C543414 /* BugsnagSessionTracker.h */, + B3408319A8780D362C0E6B4E6FA0C537 /* BugsnagSessionTracker.m */, + 12A3BD37E6C4373B9441485A21AD018F /* BugsnagSessionTrackingApiClient.h */, + 5BD79D5982EEC74EA7BF3EEBD47EA196 /* BugsnagSessionTrackingApiClient.m */, + 429F0924225DC7AEB742861D59E5F780 /* BugsnagSessionTrackingPayload.h */, + 4F8B93F03BF0E888249779E7300BEBBB /* BugsnagSessionTrackingPayload.m */, + 61B5FE85C46953681D7E6196413F271A /* BugsnagSink.h */, + 39ED455DE694BB55F4FAD599B2904A76 /* BugsnagSink.m */, + 89C75F8622905E01D3CB8526D82BFA26 /* BugsnagUser.h */, + 3245A244A5A861415340CD0618037C91 /* BugsnagUser.m */, + E4A6ACC86E286EDBA1B86C4D8B46E471 /* Private.h */, + 82B434D114C86FE0B5365D2E44405376 /* KSCrash */, + ); + name = Source; + path = Source; + sourceTree = ""; + }; + E463F2746BC91C1F7E36CD7F779627AC /* internal */ = { + isa = PBXGroup; + children = ( + C60505C3653E8C5F6662118B0D010A7E /* experiments.cpp */, + B8A348D562E30E21BD6AA5074E3588B9 /* experiments.h */, + F752F688760BC50034CC98F8CB3C0670 /* experiments-inl.h */, + ); + name = internal; + path = yoga/internal; + sourceTree = ""; + }; + E4D1DA63560F26BC7099FBCEE54FB6E5 /* Inspector */ = { + isa = PBXGroup; + children = ( + 3B62982E6042F7291CD4CCBF2C8A112F /* RCTInspector.h */, + C30C44203E76407657720D9AE51AEECF /* RCTInspector.mm */, + 03DB0FC7F9536554FBD485B61B73B984 /* RCTInspectorPackagerConnection.h */, + 7DB02794A0FCD7198A16BD816D962867 /* RCTInspectorPackagerConnection.m */, + ); + name = Inspector; + path = React/Inspector; + sourceTree = ""; + }; + E591271ECE984D651C32110F30DF3800 /* Support Files */ = { + isa = PBXGroup; + children = ( + 5F7199B5364E560C0666E3EA98C08D89 /* react-native-jitsi-meet-dummy.m */, + D53A4B2272C5E412FF84AF706E715722 /* react-native-jitsi-meet-prefix.pch */, + 9490BFAF124F8A78496C431CD5445F01 /* react-native-jitsi-meet.debug.xcconfig */, + 39D8A22073378B2ECD14D0A37DAB59D2 /* react-native-jitsi-meet.release.xcconfig */, + ); + name = "Support Files"; + path = "../../ios/Pods/Target Support Files/react-native-jitsi-meet"; sourceTree = ""; }; E6041D8B6B8E368DC722C385B69E7164 /* Support Files */ = { @@ -18451,12 +18221,20 @@ path = "../Target Support Files/FirebaseCrashlytics"; sourceTree = ""; }; - E67AAC0A27FEC1102B53A4CE8AF5575E /* Pod */ = { + E6120B72537D2A263F618CE0EB3B007C /* Pod */ = { isa = PBXGroup; children = ( - 323CACA5D98061184BA9E6A93C37C476 /* LICENSE */, - A14B74BF4A78AF2FD2CB9116BDEE4A7D /* README.md */, - 899BA33EB23D74067CDDD7DE3142E609 /* RNLocalize.podspec */, + 9BAFD80338701D5B54FD9E8F9AA825BC /* LICENSE */, + 1145CFD6C1B9D39F994C35C72283FB63 /* README.md */, + 53F2BC6BB9CB18C7B87A9AEC2493CC88 /* RNConfigReader.podspec */, + ); + name = Pod; + sourceTree = ""; + }; + E66FE4ADDEDBB4E742159F777C4024CA /* Pod */ = { + isa = PBXGroup; + children = ( + A9CCEF2FA4A2EEBE5FCB3F8BF0209252 /* UMConstantsInterface.podspec */, ); name = Pod; sourceTree = ""; @@ -18475,66 +18253,6 @@ path = "../Target Support Files/YogaKit"; sourceTree = ""; }; - E709B7D918895085766532057B550217 /* Source */ = { - isa = PBXGroup; - children = ( - EAE5641A6434CDB91654D3A8BE36308E /* BSG_KSCrashReportWriter.h */, - A8DECC04225CDD78311856DB8998AA82 /* BSGConnectivity.h */, - 4795778D8BCF15D67E23D2125CB39C08 /* BSGConnectivity.m */, - A2CADB2028F3A7EEF7E37ECD6C109737 /* BSGOutOfMemoryWatchdog.h */, - 9C02F22582D35C53EC5190F4523609DA /* BSGOutOfMemoryWatchdog.m */, - B28D52210DF03E316BDFFF2F39219EF6 /* BSGSerialization.h */, - E8C21D6F591079F76CBE4CA256FDD0F9 /* BSGSerialization.m */, - 305863733A333402FB662DE3CD2030D9 /* Bugsnag.h */, - 2CD6D224057491F744E5DBA1308419E7 /* Bugsnag.m */, - CBA1136AEDA53227E8EE8CD59D2571A4 /* BugsnagApiClient.h */, - CCFB1DA3D6C4E7F32F19A34B80E3946F /* BugsnagApiClient.m */, - FD08EEFC8959C748FB4439D751F1204F /* BugsnagBreadcrumb.h */, - 1A6B8A76588B050F37838D0473CF9A6C /* BugsnagBreadcrumb.m */, - 67853E7876459EC6320FDB3D34003ACC /* BugsnagCollections.h */, - 8A3E5125DA6A297B2980C256D1443CF2 /* BugsnagCollections.m */, - E5D59E867EB39C7855E4092AEE04B104 /* BugsnagConfiguration.h */, - 4254EA19599D272695DD40CEC74ED86E /* BugsnagConfiguration.m */, - B9141471CF887C79B4B88DFF8A35F80E /* BugsnagCrashReport.h */, - 9786B1A5600381B6C52DD3A9F2D05699 /* BugsnagCrashReport.m */, - 1E9B6FAAB475D7894E7744678258A6D6 /* BugsnagCrashSentry.h */, - 8602B768F2DD0B0F7309E8429BE3B5F1 /* BugsnagCrashSentry.m */, - A73AE17CED95A80F8EA68BF8BB5ADDD0 /* BugsnagErrorReportApiClient.h */, - 6F543DE25C3017A11DB04C39A47F861F /* BugsnagErrorReportApiClient.m */, - 19A88C10610D50662B932BCDFD19B609 /* BugsnagFileStore.h */, - 2733B021E283B7F19A3BBC606D0D93E3 /* BugsnagFileStore.m */, - E93EDFD8DDD3FDA36278763CCFF9D8D7 /* BugsnagHandledState.h */, - 5892DD31D90BCEF5E3B5507CAEA2EE67 /* BugsnagHandledState.m */, - BDEBF21077E5D0D3EA246DFC58A6882C /* BugsnagKeys.h */, - BE035A1847ED0C87F79AE8A0DBD1E3B0 /* BugsnagKSCrashSysInfoParser.h */, - F8F812C7C99BC22085F817A5B36D4BF1 /* BugsnagKSCrashSysInfoParser.m */, - A50D9EEAD28365B704D5679A4507324A /* BugsnagLogger.h */, - EC68DB6C8C6D1E430FD2F58A5682F98C /* BugsnagMetaData.h */, - E026F0C7B34CD06C6AFF8206FED40798 /* BugsnagMetaData.m */, - E4CD577EBCFCE670EC79C684F0DF0213 /* BugsnagNotifier.h */, - F86EF7F7A35F79FBD533532E642F5B86 /* BugsnagNotifier.m */, - B80EEBA0C6117C5561AE1C1EBEBEB01D /* BugsnagPlugin.h */, - 4B426F711340C853C74829217B94B748 /* BugsnagSession.h */, - 43D8ECC247297367CF91FB34E32382CF /* BugsnagSession.m */, - 735E3877C74D9AE6009AD2174D70F4C8 /* BugsnagSessionFileStore.h */, - DE3F2300C171A649D6C5347D18C8084E /* BugsnagSessionFileStore.m */, - F8E55E3F385908F2072A92C91ACFD718 /* BugsnagSessionTracker.h */, - 4DF56AC782AF734F69C643530BEAC53C /* BugsnagSessionTracker.m */, - E9405DD541B4D41D4FF1758F4371F6F0 /* BugsnagSessionTrackingApiClient.h */, - EB7EC543AEFAF38C9E7FD9C2B795B598 /* BugsnagSessionTrackingApiClient.m */, - 2BA1698D2D331C65A608DE1328A6271B /* BugsnagSessionTrackingPayload.h */, - CCFC773E624BE63830644BBD94C2C08F /* BugsnagSessionTrackingPayload.m */, - ADE887F1CFCAABDF568F5BCFA7BD33EA /* BugsnagSink.h */, - 1501F319DBC9B49B8E077339A70A46AF /* BugsnagSink.m */, - 484DAD558E09523E40F732EB23805655 /* BugsnagUser.h */, - 0284DE4C19F2509FDD20EF26DEB7B970 /* BugsnagUser.m */, - 467975AFD9EDB1602266121543BE4CBF /* Private.h */, - C86C1D1A171514AC0624798801B35FDE /* KSCrash */, - ); - name = Source; - path = Source; - sourceTree = ""; - }; E7281C54D158B7458CB171AC04DF4687 /* Support Files */ = { isa = PBXGroup; children = ( @@ -18546,118 +18264,125 @@ path = "../Target Support Files/GoogleDataTransport"; sourceTree = ""; }; - E78C758DA71A1C01082204E4DD379D47 /* Support Files */ = { + E7BE2FDED0714B3CD777C662EE6BBAB9 /* Profiler */ = { isa = PBXGroup; children = ( - 3CF82021B17801ABC7DB9FCB55A532FF /* FBReactNativeSpec-dummy.m */, - 8F48120974347F228002F54F74B3C924 /* FBReactNativeSpec-prefix.pch */, - B57C0FDA999BF60FD2D01687DD4F2876 /* FBReactNativeSpec.debug.xcconfig */, - 91FDDBDAD2D606535800280794F4064E /* FBReactNativeSpec.release.xcconfig */, + C71361CC0F45442F8052687DB28BFA93 /* RCTMacros.h */, + FDCE757E883801535E527A494EFF2452 /* RCTProfile.h */, + 6B57A8BD8EE454096849960DF0EFC37A /* RCTProfile.m */, + E8BB93182E5D1696BD2481DBE4EA7E36 /* RCTProfileTrampoline-arm.S */, + 079B3F18C0DB4CAEA4C8E49D4DD50C33 /* RCTProfileTrampoline-arm64.S */, + 114EDCDFE3786116DF043067ECF15619 /* RCTProfileTrampoline-i386.S */, + BA901E7DBEC0BA22FF84DA57D36DAC46 /* RCTProfileTrampoline-x86_64.S */, + ); + name = Profiler; + path = React/Profiler; + sourceTree = ""; + }; + E832BE0982D85AE2B1B074FCE96C3061 /* Support Files */ = { + isa = PBXGroup; + children = ( + BB3134EBD7A8FC2436C0D89788BD858E /* UMConstantsInterface.debug.xcconfig */, + 319A7BC1F0DC1A8C2E8611F0E3E9C8F6 /* UMConstantsInterface.release.xcconfig */, ); name = "Support Files"; - path = "../../../../ios/Pods/Target Support Files/FBReactNativeSpec"; + path = "../../../ios/Pods/Target Support Files/UMConstantsInterface"; sourceTree = ""; }; - E807A22ADAF010AC5DC5DA60FB950E40 /* React */ = { + E8B9E38C11DB13A1120AA16C189E1B8D /* Core */ = { isa = PBXGroup; children = ( - 6FBB216DC07131C87EEEF0DB4E44A2D7 /* Pod */, - 4EB38AF68B1A72A133A9275330D5264D /* Support Files */, ); - name = React; - path = "../../node_modules/react-native"; + name = Core; sourceTree = ""; }; - EA39D57D4F1CC9E749FF3E4960E8446A /* Pod */ = { + E8BE0F476DF748FF7A6E2926A5DF1D96 /* Singleline */ = { isa = PBXGroup; children = ( - 160AEF770132CB83E79919C0160B15DC /* UMImageLoaderInterface.podspec */, + 119546EB68A8A19D1526AA9274BCF7B0 /* RCTSinglelineTextInputView.m */, + 82BCEE677B1A6FD38BE42CDB0BDDC442 /* RCTSinglelineTextInputViewManager.m */, + FE96E694E029497F63AC7FB6A4E93155 /* RCTUITextField.m */, + ); + name = Singleline; + path = Singleline; + sourceTree = ""; + }; + EB01C43F56CDB6CEF320250CD9503938 /* Pod */ = { + isa = PBXGroup; + children = ( + 3A1E8F9C133F6B57A5702F13BF0F9E12 /* LICENSE.md */, + A5C48A006CFA5B0ED906D5C1F2DEC0C0 /* react-native-document-picker.podspec */, + 047D4F307EC93C3354A248AB48A174E9 /* README.md */, ); name = Pod; sourceTree = ""; }; - EB375272F0B356B85856342BB99FF5D6 /* Modules */ = { + EB173491370216969E3BC433DFFDCFFD /* Pod */ = { isa = PBXGroup; children = ( - 8EB2991E18E7D43644487566155EB642 /* RCTEventEmitter.h */, - F694ADF7E89F02260066306FE0DFC658 /* RCTEventEmitter.m */, - 5F3370749EB8126D4B57C73C8068A02D /* RCTI18nUtil.h */, - 8E11BC2E323D9E5B7FF1559DA1C33D34 /* RCTI18nUtil.m */, - 0821334E8D60BE031718CEE781329506 /* RCTLayoutAnimation.h */, - 8235619D63A4D64D2653404D7CE56B96 /* RCTLayoutAnimation.m */, - 33FB5D491BE3A8B7C1FA069F1D1922EE /* RCTLayoutAnimationGroup.h */, - FEAF9C0A27EF49490FA896A474F8210E /* RCTLayoutAnimationGroup.m */, - 3EA3048D138BB2659A8B1B01BBDA9042 /* RCTRedBoxExtraDataViewController.h */, - 5D625997709A600E1B6A27420452A233 /* RCTRedBoxExtraDataViewController.m */, - 43A61F7152F5A0FB61A6562D7B38CE10 /* RCTSurfacePresenterStub.h */, - D8F617B0528537D8E1FFA0D2DB175A48 /* RCTSurfacePresenterStub.m */, - 21AD3D8C3CE74761E6C014B0471120B6 /* RCTUIManager.h */, - DCA1C7C9B7A061A8863BF690D3EB923E /* RCTUIManager.m */, - 9981F892813556A167C03F63AC749F45 /* RCTUIManagerObserverCoordinator.h */, - 6A873C9787E0E58B4304FE774E0A2649 /* RCTUIManagerObserverCoordinator.mm */, - C7A8F0D8246B43A01F5A1819685A307A /* RCTUIManagerUtils.h */, - FA84CDE0AD4B4DDBE3EE89E763E127C9 /* RCTUIManagerUtils.m */, - ); - name = Modules; - path = React/Modules; - sourceTree = ""; - }; - EBDD451B1EDFE6C57384BADA0A2049F7 /* EXHaptics */ = { - isa = PBXGroup; - children = ( - 915700DD14407039EC42E6694948F955 /* EXHapticsModule.h */, - 2FDDAB84D4269E33EEEF7CB3E15DF2BE /* EXHapticsModule.m */, - A545B6C991DB6190BB3E2DD38991FB69 /* Pod */, - 34661FEB231B676E2B25FB10CBD4D832 /* Support Files */, - ); - name = EXHaptics; - path = "../../node_modules/expo-haptics/ios"; - sourceTree = ""; - }; - EC0D0A44D043EE321C9D5D69FD78B80C /* Pod */ = { - isa = PBXGroup; - children = ( - 1BC3F2740B073A772939D6504C8CE0A4 /* LICENSE.md */, - 9EA6F3D6EA1060EB6E4E2F552FCFA1B7 /* README.md */, - 511FB5C01E05C9515B9DE2BE7DBCF5E6 /* RNDateTimePicker.podspec */, + C3251FF288921FE143A731F6E0276663 /* FBReactNativeSpec.podspec */, ); name = Pod; sourceTree = ""; }; - EC6A6B6D30F3D3E2AF0FD5D232FDAED1 /* React-CoreModules */ = { + ECA44ABC50F2767009AAB1AE2976D590 /* Support Files */ = { isa = PBXGroup; children = ( - 992A0C44C44C004243A5AE0CE646E74C /* CoreModulesPlugins.mm */, - 5BF35C7F72737B7AB6A3EB72AF10184D /* RCTAccessibilityManager.mm */, - FB2A411E2DA724FE82503325B509E909 /* RCTActionSheetManager.mm */, - 8C4134E0C4340461FD1D762382CBE11D /* RCTAlertManager.mm */, - 9325E3AAD552A67B0D70E04CD20D10DF /* RCTAppearance.mm */, - AB9B19F570F1484BD11EC6FDB65AB0C3 /* RCTAppState.mm */, - C212237AE50E3A0C89947E97F05D86EB /* RCTAsyncLocalStorage.mm */, - A034566B83E983D9806592EDBE69FD2B /* RCTClipboard.mm */, - DBDD82755E1C0BB3D4F00202E81D1858 /* RCTDeviceInfo.mm */, - AD6EB06C9B17E2743D7EF1A5BA5C5117 /* RCTDevLoadingView.mm */, - B2DD20BD344D29760CC3B0698BB8B069 /* RCTDevMenu.mm */, - D8DC4B537B3F8C5EF93104A387C91C75 /* RCTDevSettings.mm */, - 38722CCD059CF731E8EB87988132C588 /* RCTExceptionsManager.mm */, - 527B6226DF8E360CB7C26327EF6A624C /* RCTFPSGraph.m */, - 268A625EECBD14EC6303D7B0EEE25B46 /* RCTI18nManager.mm */, - 1C49D74D57313D0A9739A2DD5DB57CFF /* RCTKeyboardObserver.mm */, - 055C284639A098D954F94C5789FC657E /* RCTLogBox.mm */, - 57D800A46525F67798217208F27F8799 /* RCTPerfMonitor.mm */, - 47499BB309F53E2C9508CE83D0567930 /* RCTPlatform.mm */, - 519F111A09359CF926879359B5087EDE /* RCTRedBox.mm */, - 1ED5113556EDEA9A3BADC47429DE2171 /* RCTSourceCode.mm */, - 7600DAD6D334F62C90BE945F8BC5D102 /* RCTStatusBarManager.mm */, - 47E1E5D649A8A15164BAFEA889F9012E /* RCTTiming.mm */, - E3B79DE2369078DE3FAD967AEE3A37B5 /* RCTTVNavigationEventEmitter.mm */, - 3F3CC24B132DD75E565BFEF28EAEDC5A /* RCTWebSocketExecutor.mm */, - 740061539EE834B167CDF66AECC11957 /* RCTWebSocketModule.mm */, - F3CE26B4DA7426256ABC18C7A2916E0E /* Pod */, - 2A6CEFA85F23070CA70B9809FCAB1A4C /* Support Files */, + 1D2FB4BA6EB58E9957A9B89A188AC154 /* rn-extensions-share-dummy.m */, + 69AB82474B2F3EE4309F4F54FD741293 /* rn-extensions-share-prefix.pch */, + 9C3161FAC00CE3C00310EFF7BE18806A /* rn-extensions-share.debug.xcconfig */, + EA8532670E0824F80AEE80CE3E166834 /* rn-extensions-share.release.xcconfig */, ); - name = "React-CoreModules"; - path = "../../node_modules/react-native/React/CoreModules"; + name = "Support Files"; + path = "../../ios/Pods/Target Support Files/rn-extensions-share"; + sourceTree = ""; + }; + ECC8935873EED16248EB5ADFDB72529B /* RNConfigReader */ = { + isa = PBXGroup; + children = ( + E06FBE1251848294B4E7797EA7775E51 /* RNConfigReader.h */, + 091A39083067C5138C5C26C048F15F3A /* RNConfigReader.m */, + E6120B72537D2A263F618CE0EB3B007C /* Pod */, + 5525689FEBCEC9756C90B62E9831D2B9 /* RNConfigReader.xcodeproj */, + 5BAB278F1F0346D490C5FECE13075BB2 /* RNConfigReader.xcworkspace */, + 8B2E4BC9B51B4622CDD65C38C692A3BF /* Support Files */, + ); + name = RNConfigReader; + path = "../../node_modules/react-native-config-reader"; + sourceTree = ""; + }; + EDE68C551FAD8315EC3A79DBA084285E /* Pod */ = { + isa = PBXGroup; + children = ( + 51FC8BB9E63F020580FC266822E48C4A /* EXLocalAuthentication.podspec */, + ); + name = Pod; + sourceTree = ""; + }; + EE0F62AE8B6A2FFDF70E8CDAC416508F /* RNFBCrashlytics */ = { + isa = PBXGroup; + children = ( + 34669048484382716437ADB968C0C294 /* RNFBCrashlyticsInitProvider.h */, + 01828797957A7587C171B391F5A35BDD /* RNFBCrashlyticsInitProvider.m */, + 23FA3FE79EB3DA0D9D49D8A3397545F8 /* RNFBCrashlyticsModule.h */, + A17D8CF31C1C460C4B6B1CBDC08531AD /* RNFBCrashlyticsModule.m */, + 7C51846A8CBAFF4FCEB09886DAA4ABD7 /* Pod */, + CB0DC8C9E4E68F3C7B1D6EF461B141F2 /* Support Files */, + ); + name = RNFBCrashlytics; + path = "../../node_modules/@react-native-firebase/crashlytics"; + sourceTree = ""; + }; + EE994788124EBE90961B6D9BD7E43C7A /* Support Files */ = { + isa = PBXGroup; + children = ( + E7CB24DB6D543A9D4167FF41793BB35F /* ReactNativeKeyboardTrackingView-dummy.m */, + AD6CC3764F981CC5F9CAECE16D30DA07 /* ReactNativeKeyboardTrackingView-prefix.pch */, + EBAB799BCF76814A360CFEF7CA40206D /* ReactNativeKeyboardTrackingView.debug.xcconfig */, + D578226409223BA387A9859CEA244900 /* ReactNativeKeyboardTrackingView.release.xcconfig */, + ); + name = "Support Files"; + path = "../../ios/Pods/Target Support Files/ReactNativeKeyboardTrackingView"; sourceTree = ""; }; EEAB43369C39472465A9DF85CC8F89CB /* Support Files */ = { @@ -18681,18 +18406,6 @@ path = "OpenSSL-Universal"; sourceTree = ""; }; - EF2EE03D2AB8243D4370E0D9DDCF4077 /* rn-extensions-share */ = { - isa = PBXGroup; - children = ( - 18ECC5D3A0E19C8299925BE0DA146E03 /* ReactNativeShareExtension.h */, - 87FEE5BC0141D3918871D5183A153825 /* ReactNativeShareExtension.m */, - 26EBD521B1AD91BCD418A4E78F8D8CE0 /* Pod */, - 6986F119D6270D7130A36CB90A7DAEEA /* Support Files */, - ); - name = "rn-extensions-share"; - path = "../../node_modules/rn-extensions-share"; - sourceTree = ""; - }; EF5C4859F5A12DBFB3EA6B1F9AB46C96 /* Targets Support Files */ = { isa = PBXGroup; children = ( @@ -18721,54 +18434,38 @@ path = nanopb; sourceTree = ""; }; - F0A4DDB1922ACA2CEBF85FF611F351B3 /* React-RCTActionSheet */ = { + F029A1EBC413597236A123D5F610F289 /* EXVideoThumbnails */ = { isa = PBXGroup; children = ( - 902E19639B871BC67EB4FF4E4F4EA39D /* Pod */, - 980AC0D48DFE00EF6DBF78B8CAC4CC3F /* Support Files */, + 7C975B5ECD7E79749EEB6A5A2822237B /* EXVideoThumbnailsModule.h */, + C8A66532A7E2C48744BE1FA81B3C5203 /* EXVideoThumbnailsModule.m */, + 543E63506B9D172DA4C70C2B46801072 /* Pod */, + 9A092C2D17FB0C3E83CF1B2B0C142F7E /* Support Files */, ); - name = "React-RCTActionSheet"; - path = "../../node_modules/react-native/Libraries/ActionSheetIOS"; + name = EXVideoThumbnails; + path = "../../node_modules/expo-video-thumbnails/ios"; sourceTree = ""; }; - F0A9B2C00158E823B2BAB8A75F87F2D5 /* React-RCTImage */ = { + F02E8F78F4A153AFD71644D977FF8D67 /* Support Files */ = { isa = PBXGroup; children = ( - 422CC267D87A8AE97C06618B7875D538 /* RCTAnimatedImage.m */, - CEF807FFCB1153598A37E625CFE33E50 /* RCTDisplayWeakRefreshable.m */, - 0FC1C89F649762C3221FFAFC5C91E2B9 /* RCTGIFImageDecoder.mm */, - 41D91F20540EB4D8074EB34C2891B094 /* RCTImageBlurUtils.m */, - 9C9DF2BCD1A1D783499D7E9241637784 /* RCTImageCache.m */, - 76848F6A8FBEF5989A2C3D9184C28D67 /* RCTImageEditingManager.mm */, - 55D10A0B7C4CD81504231DEC178F3312 /* RCTImageLoader.mm */, - AD8ADF47FB2FF2EE0C388AF6B764B36A /* RCTImagePlugins.mm */, - 2C3C2C2520927D3630BA92AE7435D042 /* RCTImageShadowView.m */, - B455F16556CE02B2F5750E8366B40690 /* RCTImageStoreManager.mm */, - 88CADC834E40FDC48B000DC05708E102 /* RCTImageURLLoaderWithAttribution.mm */, - A2F8D5EF7E560147F66724C6C5387760 /* RCTImageUtils.m */, - 03558578463C6B25BF4DBB9DB9A0A3B1 /* RCTImageView.mm */, - 915B1A2624639A65AF4D4364F75D87E9 /* RCTImageViewManager.mm */, - B1E63B313C110308E6EEECEE5E892694 /* RCTLocalAssetImageLoader.mm */, - 0DFCBE08863B015EEA71DCC6B52DB6EC /* RCTResizeMode.m */, - 47731A58CB137A580E8F69F39B228C1B /* RCTUIImageViewAnimated.m */, - 1739E905798A11553D7A9F46AF339995 /* Pod */, - F2FEF391A58D16A0C085D1DFD715E3CD /* Support Files */, + 9668D6F640B397BA9765B303A819F2BD /* React-RCTBlob-dummy.m */, + D3CBDDAFCEF1BF403A101B3FCC109E47 /* React-RCTBlob-prefix.pch */, + 8CD5D3539D260B1648FD028509CE3E9C /* React-RCTBlob.debug.xcconfig */, + 60A21E099D5AFA081A586A3E1FF44B72 /* React-RCTBlob.release.xcconfig */, ); - name = "React-RCTImage"; - path = "../../node_modules/react-native/Libraries/Image"; + name = "Support Files"; + path = "../../../../ios/Pods/Target Support Files/React-RCTBlob"; sourceTree = ""; }; - F0BE9487BBA120FD4FC7D02B2CCD7DE4 /* React-jsi */ = { + F03F929DF3769E930F071238C6BA16A9 /* Pod */ = { isa = PBXGroup; children = ( - 2212A3443B87C1435F3F8662B641B1A3 /* JSCRuntime.cpp */, - CA4B5F2CB05033C31AFD5B639471937C /* JSCRuntime.h */, - E3121BE0E0EA9664F75E7DCE36678653 /* jsi */, - 236C414F2621D2152F5FD1E87C0BA023 /* Pod */, - 2F642E6BAC91026C37482E77E9E3DADF /* Support Files */, + E13F24303365E7FC17853DD4FF7A66F9 /* LICENSE */, + 1DD971E56B60DD2C8BAFC21B6F3C2D2B /* README.md */, + 9804337B398BEDDB77F5A55B45ED6C99 /* RNCAsyncStorage.podspec */, ); - name = "React-jsi"; - path = "../../node_modules/react-native/ReactCommon/jsi"; + name = Pod; sourceTree = ""; }; F0D123B30573E952F9942EE2A8BAB277 /* Flipper-DoubleConversion */ = { @@ -18798,96 +18495,146 @@ path = "Flipper-DoubleConversion"; sourceTree = ""; }; - F0FAFB50C1D05826529E858FF0FCFA86 /* Pod */ = { + F14F4730FF3344A084E3110142AD220F /* Pod */ = { isa = PBXGroup; children = ( - 8F2B98A5CB6CE9E676C25C5F561036F0 /* KeyCommands.podspec */, - 825C7B2B3BDD9733C1E1600EDC6C50A9 /* README.md */, + B6E95614350C3908F16ACD8E2B26B2A3 /* EXFileSystem.podspec */, ); name = Pod; sourceTree = ""; }; - F1981BD93BC026E0DAF5FF3C713A05B4 /* Inspector */ = { + F203245C051FE88188DFE361A8D32BF5 /* Products */ = { isa = PBXGroup; children = ( - 8E2A03B8D8AED7633E9C2A656C65C385 /* RCTInspector.h */, - 7FE27CA8C01F76EE5B315C6FBA646E84 /* RCTInspector.mm */, - 615A0DD23BA76DE12C7349F5D5EDEA5B /* RCTInspectorPackagerConnection.h */, - 9AC7037A842FA66D08FF6BD2709717AF /* RCTInspectorPackagerConnection.m */, + FE6D792B6328AAF68E46924D7F466631 /* AccessibilityResources.bundle */, + 3EEAA606F6866DA20E6601B9655B1027 /* libBugsnagReactNative.a */, + 6CBEFE4F9E22AFDC6347A739BB35FF8C /* libCocoaAsyncSocket.a */, + 6FFB7B2992BB53405E6B771A5BA1E97D /* libDoubleConversion.a */, + 7E7E46B76D0AFE3DFC477DC55C5DB326 /* libEXAppleAuthentication.a */, + AD40A94AE1ADFA1CDF9602BA3B04C90E /* libEXAV.a */, + 220361FF3B2778F8F38C2C4DCC5B49FD /* libEXConstants.a */, + ED1E3FC0DC90F4A787472917BFB6B235 /* libEXFileSystem.a */, + 80A51B61FECFED8D1A0D95AAD32A2938 /* libEXHaptics.a */, + 494E934B4070A029E1A8D42C9BDF4646 /* libEXImageLoader.a */, + 09B5856105EF7C6447B9EC57E7E36B34 /* libEXKeepAwake.a */, + 72558F571738704549E1838E845D2770 /* libEXLocalAuthentication.a */, + 72E494917AC5EC2582197F07061A28B0 /* libEXPermissions.a */, + 130335B611EDD6AFF8824641E06138D6 /* libEXVideoThumbnails.a */, + 574E8A849B86DCF8EE5726418D974721 /* libEXWebBrowser.a */, + ABFEEA82A6C346B22843FBE0B0582182 /* libFBReactNativeSpec.a */, + E2B63D462DB7F827C4B11FD51E4F8E2D /* libFirebaseCore.a */, + 8CC9178C366942FD6FF6A115604EAD58 /* libFirebaseCoreDiagnostics.a */, + 86375444C196BA272DDBB8165BF64A15 /* libFirebaseCrashlytics.a */, + 13C8C8B254851998F9289F71229B28A2 /* libFirebaseInstallations.a */, + E93F701CA8EB196D77AE99E094D873E4 /* libFlipper.a */, + AC12C7E29555A7CFDDEF1EDB5BC2F3DA /* libFlipper-DoubleConversion.a */, + 99D5CD245388DC76AAEF6E1E351A90ED /* libFlipper-Folly.a */, + E00BE2A3146698E81A8F9D00E8F93A6C /* libFlipper-Glog.a */, + ACBB7F62B267CC7C9BBBAE41DE94743B /* libFlipper-PeerTalk.a */, + FFDC7746794AB17CFB7150820479DF40 /* libFlipper-RSocket.a */, + 65234B3E668A42D9137B2C7AB051EE37 /* libFlipperKit.a */, + 06489499588BFA8FD5E63DD6375CD533 /* libFolly.a */, + 3CA7A9404CCDD6BA22C97F8348CE3209 /* libglog.a */, + 856B5CD56F194FAD26EA91620B66D614 /* libGoogleDataTransport.a */, + 6942351307BC1F54575D9853307EAE0E /* libGoogleDataTransportCCTSupport.a */, + B43874C6CBB50E7134FBEC24BABFE14F /* libGoogleUtilities.a */, + 279390C893577F74DD2049383E1EDD1A /* libKeyCommands.a */, + 5E4674603A5D5B9215FFA0F8E69F8B71 /* liblibwebp.a */, + B88A54159B245E727A6D16DEFE105A09 /* libMMKV.a */, + 4195015D26D9AC88BE151FE609A81EBD /* libMMKVAppExtension.a */, + E0B603F54009DAEF6C3BAAE621E5F180 /* libMMKVCore.a */, + 06FC5C9CF96D60C50FCD47D339C91951 /* libnanopb.a */, + 563E0A0FEB65B564D6A02A0A948B2E62 /* libPods-NotificationService.a */, + 586602EDE69E2D273945D156ECB89853 /* libPods-RocketChatRN.a */, + ABCA9F4CD6EE0D4686EBA505F526A436 /* libPods-ShareRocketChatRN.a */, + 3347A1AB6546F0A3977529B8F199DC41 /* libPromisesObjC.a */, + F958876A082BF810B342435CE3FB5AF6 /* libRCTTypeSafety.a */, + BD71E2539823621820F84384064C253A /* libReact-Core.a */, + 6771D231F4C8C5976470A369C474B32E /* libReact-CoreModules.a */, + 37592FDAD45752511010F4B06AC57355 /* libReact-cxxreact.a */, + D9F334F2E90E3EE462FC4192AF5C03BD /* libReact-jsi.a */, + F2E7C88DFCD460A4B46B913ADEB8A641 /* libReact-jsiexecutor.a */, + 2577F299FCB0A19824FE989BE77B8E8F /* libReact-jsinspector.a */, + 242758B9EDFF146ABE411909CAC8F130 /* libreact-native-appearance.a */, + B75A261FE3CE62D5A559B997074E70FC /* libreact-native-background-timer.a */, + 8C3E2A6E6F93E60E397F6C0BBA710BF5 /* libreact-native-cameraroll.a */, + 7E103FA6ED177E4D7EF38AD267B42C58 /* libreact-native-cookies.a */, + 08D1FFC2980C1ED72AE9A4C44A0544C3 /* libreact-native-document-picker.a */, + 8074129DF318155B29544548E1CAF4A3 /* libreact-native-jitsi-meet.a */, + 4047BC0750B116B1191149A8E7B5389B /* libreact-native-mmkv-storage.a */, + 012242E4480B29DF1D5791EC61C27FEE /* libreact-native-notifications.a */, + 48425DA2F01D82A20786D5E55E264A29 /* libreact-native-orientation-locker.a */, + 52FCF98CEFF94C742080B6965D537AD0 /* libreact-native-safe-area-context.a */, + 2B17A71888AA28CEFEC37B72F2A68A91 /* libreact-native-slider.a */, + 8DF63376066E2275FF26820B3A512A9B /* libreact-native-webview.a */, + FE7B9294FF05AAFD1653E2104E10844A /* libReact-RCTAnimation.a */, + F71EBF73F354B475D465FF6DE9A66707 /* libReact-RCTBlob.a */, + EEDBF403E8E0B3885E65C2741B536BC5 /* libReact-RCTImage.a */, + 802121F5B756ACBFDD6D08C36246DADD /* libReact-RCTLinking.a */, + A68E5A9B69A3BA0FD52CAF7A354EC93B /* libReact-RCTNetwork.a */, + 269BE773C9482484B70949A40F4EA525 /* libReact-RCTSettings.a */, + E6A16705C69FC7DE11C2469A4A0F8358 /* libReact-RCTText.a */, + C1A919103EAC9813D236486C34FC0A21 /* libReact-RCTVibration.a */, + D5C775614AC76D44CECB6BE08B022F1F /* libReactCommon.a */, + 51B50F20C76CF72E2BEF8D4764235306 /* libReactNativeART.a */, + 16E9F31EC059F2E6FADBF7D544CCCA1D /* libReactNativeKeyboardInput.a */, + 17772905A5DCAAE05D22C2CC78ABB63D /* libReactNativeKeyboardTrackingView.a */, + 858AFA83985937825473045CF6808B15 /* librn-extensions-share.a */, + 202722AA0D229A11350F6DC0F267A0BA /* libRNBootSplash.a */, + 5737DDB4BC95AD399B3206838AB97095 /* libRNCAsyncStorage.a */, + B8CD4B9B578CE9FA38114B638C9CAA78 /* libRNCMaskedView.a */, + 812ED9CD85898FB3B82136F7CB9A3191 /* libRNConfigReader.a */, + 72DE4BF3FB9CE0858E90F96FEF8A53AE /* libRNDateTimePicker.a */, + E0FE6533198104C97DB047DD5CD8AC67 /* libRNDeviceInfo.a */, + E55EA3C6F285F6FA8067C5C8A428FA64 /* libRNFastImage.a */, + 34C842CD40D88AB4B2BF24FC77DA0009 /* libRNFBAnalytics.a */, + 18D0B1E13C69654196028DD6EDCC3452 /* libRNFBApp.a */, + EE4AEFEACE275DDCFB42B9400BF6B218 /* libRNFBCrashlytics.a */, + 8F65F9361F2069CF9E9D751272968DE4 /* libRNGestureHandler.a */, + 3AEA4A114C08533A2C0F8E039A4C5EB9 /* libRNImageCropPicker.a */, + 15912309AA610251329D74FA111DE5CA /* libRNLocalize.a */, + C777CF2FB1E39A45CBBDB54E8693F471 /* libRNReanimated.a */, + E496A53A92B4E464B5C30DC5B1E4E257 /* libRNRootView.a */, + 50B5347C9A6E93B7D4CFC3673BA6FB7E /* libRNScreens.a */, + 8998273719FDD789E6F9C7541AFD0B33 /* libRNVectorIcons.a */, + B0B214D775196BA7CA8E17E53048A493 /* libSDWebImage.a */, + FCF61D9B2B75054A9A3185DDC609B7FF /* libSDWebImageWebPCoder.a */, + 7862C607B7BE0510C2D65193F9B4B4F9 /* libTOCropViewController.a */, + 2D86D213801ABEF7CD86291D4F3FDD34 /* libUMAppLoader.a */, + AF72FD600DE7E2D330BA50F877993E05 /* libUMCore.a */, + BC41F4BEFC115303267857B135A144AE /* libUMPermissionsInterface.a */, + 3B640835BAA914DD267B5E780D8CFEC7 /* libUMReactNativeAdapter.a */, + 65D0A19C165FA1126B1360680FE6DB12 /* libYoga.a */, + 5B3357A1CE67C0BF4AE31936A1BE6888 /* libYogaKit.a */, + 3DCCC9C42EB3E07CFD81800EC8A2515D /* QBImagePicker.bundle */, + FE1E812071397E31AE21DFF368B781B1 /* TOCropViewControllerBundle.bundle */, ); - name = Inspector; - path = React/Inspector; + name = Products; sourceTree = ""; }; - F29688D79448210C180DF95E41A2AF8A /* UMCore */ = { + F2CC9DFC74A795003BA134FD3F40F6AB /* jsi */ = { isa = PBXGroup; children = ( - 095520942B02639F2E03356974350135 /* UMAppDelegateWrapper.h */, - C8FB16ABFD15DF4BFC613EC66108EADA /* UMAppDelegateWrapper.m */, - 489A6810B51514E0051BE26046CD4E30 /* UMDefines.h */, - 0975B5CBDB0385B52AA9FD97F4962042 /* UMErrorCodes.h */, - 02EDDF8800B6E8AC8B0D81262371EA6F /* UMErrorCodes.m */, - 5FD278A54845C4E277E53EEE9948F093 /* UMExportedModule.h */, - 7230370AE5916F587D59EEDF896C55C2 /* UMExportedModule.m */, - A9653ED9A963575A6E3DCA1419512721 /* UMSingletonModule.h */, - 325ADD0A48DABBEE1E40955FFF936717 /* UMSingletonModule.m */, - 4DAA2E264016C6BCA8387D91C85749CD /* UMUtilities.h */, - DE4C3B0422754166A757BAE200DBE184 /* UMUtilities.m */, - E326041EF45B8F23447C77A17DB3EDDA /* UMViewManager.h */, - 8C43D22955C23139357D9411E1EDCFF8 /* UMViewManager.m */, - A1715B3CA2753027E5EA8197BC7F58AF /* Pod */, - 0B242BFEE975868CE6B0F55D5F0DEDA6 /* Protocols */, - 642AB45569CCE76C03F7FEF7DF743E10 /* Services */, - B6FCC62BF0988F46A067913AD1AA4551 /* Support Files */, - 98AAB1644CD3447E74BD128066C60ED2 /* UMModuleRegistry */, - 86A332B4C12AD8F3923A6894535E7C7A /* UMModuleRegistryProvider */, + 0F098786269C29117E9E9941D354A2F5 /* decorator.h */, + 4C914DF697DC9BB70A9CDBD1157CFCEB /* instrumentation.h */, + 06604141F87AF3B9A7452D0A31C70A6A /* jsi.cpp */, + 38C9DA88C6E31707D52117B58DC2F0A3 /* jsi.h */, + EBB808858EC966E58ED90089C9C0409A /* jsi-inl.h */, + EF1B045F7445B0886A077B6B6CA21E9A /* JSIDynamic.cpp */, + A959BF0CFEA8839D9E6D6F263D932FA8 /* JSIDynamic.h */, + BFE645D9C3B4B492BADF8AC7DD090BEC /* jsilib.h */, + FAFEC687058902E3AEA886B5E43F9722 /* jsilib-posix.cpp */, + 7A1919F40EE7A26965827BDD0B7FC122 /* jsilib-windows.cpp */, + 27DE1E395E84CF3A9BA210BCAF52346C /* threadsafe.h */, ); - name = UMCore; - path = "../../node_modules/@unimodules/core/ios"; + name = jsi; + path = jsi; sourceTree = ""; }; - F2FEF391A58D16A0C085D1DFD715E3CD /* Support Files */ = { + F38215A0AA1E84C185C4F4D1C38F0681 /* Pod */ = { isa = PBXGroup; children = ( - 0455FD41E2FB33B420BDBC210151390C /* React-RCTImage-dummy.m */, - 1A4B5F865AFB2739B350B643C913D14E /* React-RCTImage-prefix.pch */, - 297CF7B1C1F8AF6ADB5A3A8D798FA91C /* React-RCTImage.debug.xcconfig */, - 2B50EC2EE1F19486F0667713AD0A20B3 /* React-RCTImage.release.xcconfig */, - ); - name = "Support Files"; - path = "../../../../ios/Pods/Target Support Files/React-RCTImage"; - sourceTree = ""; - }; - F3222475CBE281DAD1C87C8B10BBBC48 /* QBImagePickerController */ = { - isa = PBXGroup; - children = ( - 6AB0E77D75A5D764ACD0B22C5297F780 /* QBAlbumCell.h */, - B982C5247836A3683A1F435B1B56672C /* QBAlbumCell.m */, - 24DFBF706C9184D2B5F4031090E6DC03 /* QBAlbumsViewController.h */, - 97111BCA615D199C20E6289EC41F916F /* QBAlbumsViewController.m */, - 51BA07ABF915C2A2F65BD24E8396E90E /* QBAssetCell.h */, - 079D29802D409D114AFD1A998A0365F7 /* QBAssetCell.m */, - 4AA219A24DF974BE1509319A31544E1A /* QBAssetsViewController.h */, - C4666E325B646F59201A21FA3253E6D5 /* QBAssetsViewController.m */, - 24BB1AAFB0BC44F0254A6ADB350F52F0 /* QBCheckmarkView.h */, - 02948B026F500E93FBFD47F71D5FA2E7 /* QBCheckmarkView.m */, - F37A19F4AEAF4D02ACEA6DCD9C01225B /* QBImagePickerController.h */, - E3BE8FB9241672CD5414EBAB90C64914 /* QBImagePickerController.m */, - 0B21DF4FED56ECFFFF4EF7E4936FD328 /* QBSlomoIconView.h */, - D716DD4FC6378F8BA0A9B917F07B3743 /* QBSlomoIconView.m */, - F349419C2C1195ED39C34882ACD3D593 /* QBVideoIconView.h */, - 7DD31D1231E4711DB9AF1B1C8DE46FB4 /* QBVideoIconView.m */, - F28695D7D593FFF8ED5AC101BAFD5208 /* QBVideoIndicatorView.h */, - 1840C8EC140BE053111A6398B51C3200 /* QBVideoIndicatorView.m */, - B7A42549C43C9DE254F76B890B920C43 /* Resources */, - ); - name = QBImagePickerController; - sourceTree = ""; - }; - F3CE26B4DA7426256ABC18C7A2916E0E /* Pod */ = { - isa = PBXGroup; - children = ( - FE2C47736CA1DF17AF7E1053300C2CCD /* React-CoreModules.podspec */, + 8B94920A01B8710287F9A743EA846DDA /* React-cxxreact.podspec */, ); name = Pod; sourceTree = ""; @@ -18913,6 +18660,18 @@ path = GoogleDataTransportCCTSupport; sourceTree = ""; }; + F47ACAA0B35DD8D34DC35235EAE43BCE /* Support Files */ = { + isa = PBXGroup; + children = ( + 2C142AB8070F9269433A87A09A93B5F7 /* BugsnagReactNative-dummy.m */, + 9DBAD84969F82BA7D0F42A81EF550E8B /* BugsnagReactNative-prefix.pch */, + E2DB8157BC7DC2611A33805FA540DF3C /* BugsnagReactNative.debug.xcconfig */, + 2EDFC82A9FA6B812A1C11B6226D57CA9 /* BugsnagReactNative.release.xcconfig */, + ); + name = "Support Files"; + path = "../../ios/Pods/Target Support Files/BugsnagReactNative"; + sourceTree = ""; + }; F49964DFA328704E3042FF2E9E5AC976 /* FlipperKitLayoutPlugin */ = { isa = PBXGroup; children = ( @@ -18961,24 +18720,24 @@ name = FlipperKitLayoutPlugin; sourceTree = ""; }; - F4CC2FDFBA257F843DD586BA351C9444 /* Pod */ = { + F4D5767147B4EF2AEB1E4D4CBDACBB28 /* Pod */ = { isa = PBXGroup; children = ( - 44FA0CCC87E584A5543A1280B803CA4F /* EXConstants.podspec */, + 8B8D4312D8CECFC2CC539184F64A496A /* UMCore.podspec */, ); name = Pod; sourceTree = ""; }; - F5AC1BF6EBB1BC08684BA28CE1424A8A /* ios */ = { + F6372863DB61488181600D2343F022DF /* UMBarCodeScannerInterface */ = { isa = PBXGroup; children = ( - 31DB51E8A3D5205CAF06CD795DA37168 /* RCTTurboModule.h */, - 0F47700E673A622CD04C3474EC7AEC62 /* RCTTurboModule.mm */, - 293D51E101661C9122D96301994C6B38 /* RCTTurboModuleManager.h */, - CE2DCEB0D04A926126A4A06D361A8FED /* RCTTurboModuleManager.mm */, + 405E63383517A48ECE794BE1DE87EFBB /* UMBarCodeScannerInterface.h */, + 4E9F575BBA84EFAAC5776009B7D2282E /* UMBarCodeScannerProviderInterface.h */, + 7BCA45C5101EA30E993A6F2A2D70DF4D /* Pod */, + 6BFA7AD77FF3A663BA6D93E4A80C92B1 /* Support Files */, ); - name = ios; - path = ios; + name = UMBarCodeScannerInterface; + path = "../../node_modules/unimodules-barcode-scanner-interface/ios"; sourceTree = ""; }; F63B0FF39B59092B8620D7E02D9030AA /* Support Files */ = { @@ -18992,14 +18751,38 @@ path = "../Target Support Files/FirebaseInstallations"; sourceTree = ""; }; - F64C64DDE6EC5C49768FD88986FB73A2 /* Pod */ = { + F6D48D1B65447B8EB30BE9638FD5B670 /* Pod */ = { isa = PBXGroup; children = ( - 39BC26BC21FB366CB0D48385D4F5E46A /* UMReactNativeAdapter.podspec */, + 6F306B182449003F2647683533AD503F /* UMSensorsInterface.podspec */, ); name = Pod; sourceTree = ""; }; + F7023BCB1A22066B3CFCB83A912DA25F /* react-native-orientation-locker */ = { + isa = PBXGroup; + children = ( + CAF6CB066BFFF2B1986A0DFA0168235E /* Orientation.h */, + B28F5BB228E0E91117E90C901886DB8D /* Orientation.m */, + CF910FFE0831615F08EADC13BD74725A /* Pod */, + 0C02EF976976EFB0374B768DBD76F6D9 /* Support Files */, + ); + name = "react-native-orientation-locker"; + path = "../../node_modules/react-native-orientation-locker"; + sourceTree = ""; + }; + F7AB0A18090FD96BA8CC6A57D853B90B /* Support Files */ = { + isa = PBXGroup; + children = ( + DCA5F62E40583315EED8D443500CD6B1 /* EXLocalAuthentication-dummy.m */, + C3F5B0721AF43D88A32BDB6E3D39EE96 /* EXLocalAuthentication-prefix.pch */, + A568251D41EA44BC8B0F4DAD3741B354 /* EXLocalAuthentication.debug.xcconfig */, + 7A6F9B81920C270CE5BEDC992914320E /* EXLocalAuthentication.release.xcconfig */, + ); + name = "Support Files"; + path = "../../../ios/Pods/Target Support Files/EXLocalAuthentication"; + sourceTree = ""; + }; F81EB6A0400404A65EAE704B0D9150F0 /* Support Files */ = { isa = PBXGroup; children = ( @@ -19029,14 +18812,86 @@ path = GoogleUtilities; sourceTree = ""; }; - F9D236E165E1EDACD5276D08F324B36E /* Pod */ = { + F9F39FE4519253E80F0DBD9F0CC2BE58 /* react-native-appearance */ = { isa = PBXGroup; children = ( - 5689DBABB6F7C93E584F9F5AEEC5068E /* EXAppleAuthentication.podspec */, + AB1796D5C0A137C49EB9C6558CD794B6 /* RNCAppearance.h */, + 8346B6020B09E86465712F8EBDE2081E /* RNCAppearance.m */, + C94DF131D2C7A1143299D52FEDA5F08D /* RNCAppearanceProvider.h */, + 68783F7A779FE11BF6BBA23912B83987 /* RNCAppearanceProvider.m */, + 1453AA3D21916244EA043AC1D8D0E68B /* RNCAppearanceProviderManager.h */, + 8B5399240907AD9481E890592731F368 /* RNCAppearanceProviderManager.m */, + BF1F5CC90E84DE6CBB7E91C564E9D6F0 /* Pod */, + 2D1DE527D08A41E89321104E29093F5A /* Support Files */, + ); + name = "react-native-appearance"; + path = "../../node_modules/react-native-appearance"; + sourceTree = ""; + }; + FA1FFA694A906FD1141139AAEC575D4F /* RCTBlobHeaders */ = { + isa = PBXGroup; + children = ( + F1D5400857A08ABA5D80BEE41D4A14A2 /* RCTBlobManager.h */, + 0A655009077EB9C203871714A1D29383 /* RCTFileReaderModule.h */, + ); + name = RCTBlobHeaders; + sourceTree = ""; + }; + FA3D88AF6D1BEA565DCE4B688E9B8A0F /* UMNativeModulesProxy */ = { + isa = PBXGroup; + children = ( + 7F2C3551358526086C077797F70C0A1F /* UMNativeModulesProxy.h */, + 7971EEE9F2F21E240A4651153DC5FF8F /* UMNativeModulesProxy.m */, + ); + name = UMNativeModulesProxy; + path = UMReactNativeAdapter/UMNativeModulesProxy; + sourceTree = ""; + }; + FA46BDFC4D66B07E5AF7CF5972C0AC23 /* RCTTextHeaders */ = { + isa = PBXGroup; + children = ( + 4F91B3C9FF3A0A1D807ED2E81EC0EA58 /* RCTConvert+Text.h */, + A8D1A7983A5CF6063297A9684D14E48F /* RCTTextAttributes.h */, + 75F53B625267A4726F4510DBF32A4E81 /* RCTTextTransform.h */, + 387C0DD92B15EF3E928F593940FDC7B6 /* BaseText */, + D5A1281124DB1B56016756D23960D509 /* RawText */, + B201BE5334BA54116CD6D7160DB9BE92 /* Text */, + 22E73290AEC6117A8E959574BAAB1D28 /* TextInput */, + 994D5D0037F32B12210060ED84FAD773 /* VirtualText */, + ); + name = RCTTextHeaders; + sourceTree = ""; + }; + FA5004241D938A28BE133C4251605536 /* Pod */ = { + isa = PBXGroup; + children = ( + CBD8B3DE67128C539BC7D164F17D2C34 /* UMAppLoader.podspec */, ); name = Pod; sourceTree = ""; }; + FA71CD8291A9F44E99CAAB54D615C021 /* Pod */ = { + isa = PBXGroup; + children = ( + F4177AB1FB054080AFD9818BDD6EB9B2 /* LICENSE */, + 2CCB4045B1B01154F0030D1D0BD6319D /* README.md */, + BBBDE60FDA95A434A91F6E69E0F2564C /* RNGestureHandler.podspec */, + ); + name = Pod; + sourceTree = ""; + }; + FA8653FCB7D0D8B147D5AFFE4BC384A0 /* Support Files */ = { + isa = PBXGroup; + children = ( + ECA5015656D5D7DA4D6A2225F2EEF4E7 /* EXFileSystem-dummy.m */, + 3402DA64B25D07D2CEFDF8467D46662A /* EXFileSystem-prefix.pch */, + 964DF8C124013716020586FB8E272B1E /* EXFileSystem.debug.xcconfig */, + B633B6BA4DF021F448946781AB1752DF /* EXFileSystem.release.xcconfig */, + ); + name = "Support Files"; + path = "../../../ios/Pods/Target Support Files/EXFileSystem"; + sourceTree = ""; + }; FB0EEA89FBCF129B1D0C38D6F0A030EA /* MMKV */ = { isa = PBXGroup; children = ( @@ -19049,16 +18904,6 @@ path = MMKV; sourceTree = ""; }; - FB4CF3D1F5E261FDB1CF2195499536FD /* Pod */ = { - isa = PBXGroup; - children = ( - 2AC79DC8FF5BFA7C2F59FAF82DA5340E /* LICENSE */, - 9AECD6EC4451B67D03D0D7D74FDE2039 /* react-native-cookies.podspec */, - 165C875049AFFD54BF2D90A27C1F409B /* README.md */, - ); - name = Pod; - sourceTree = ""; - }; FBC1FA639C578959158CB87E8C9C446F /* FlipperKitReactPlugin */ = { isa = PBXGroup; children = ( @@ -19068,6 +18913,49 @@ name = FlipperKitReactPlugin; sourceTree = ""; }; + FBCED308AD91589EB059E48216C36FC9 /* FBReactNativeSpec */ = { + isa = PBXGroup; + children = ( + C89DC4D71C3A0891FF0CBC3C07C16B7A /* FBReactNativeSpec.h */, + 3AC0A07E8362BC69AA57954BD756718A /* FBReactNativeSpec-generated.mm */, + EB173491370216969E3BC433DFFDCFFD /* Pod */, + C9204BB5B8438650737E978C28594162 /* Support Files */, + ); + name = FBReactNativeSpec; + path = "../../node_modules/react-native/Libraries/FBReactNativeSpec"; + sourceTree = ""; + }; + FC1550E2EBD8F2283B366B89132683CF /* Resources */ = { + isa = PBXGroup; + children = ( + C17CDB118C27B86F87E0CD2D1194C220 /* AntDesign.ttf */, + 43BB4B54C3A88520DC42ABCC419B342E /* Entypo.ttf */, + FE010D1614F02E0998ADD2B40B9D22E0 /* EvilIcons.ttf */, + 317CD09139094B722D0843CBCF1A7877 /* Feather.ttf */, + 547129D34C29E1AC795160BBF42D1F9B /* FontAwesome.ttf */, + B9445CDF1D94007D73EE17D844255C0A /* FontAwesome5_Brands.ttf */, + 4C8D045B0A04D24DA32BF001F961EEB6 /* FontAwesome5_Regular.ttf */, + BE766F7ED684F892F232AB61610E72F1 /* FontAwesome5_Solid.ttf */, + 8A25DE37BF4548AF3EDE1912DB193012 /* Fontisto.ttf */, + 1306C79220C637C4B3A5DD27B752486B /* Foundation.ttf */, + 481DA64D7FB2B0664EB8FE3C83DDDBA9 /* Ionicons.ttf */, + 817DFF74977534386133FA9755A9B74A /* MaterialCommunityIcons.ttf */, + 5EA4C5A06FF89E1B3B261CA1F20C2E95 /* MaterialIcons.ttf */, + 45C82CEBDC9D4DE4A535DDA83FF2865F /* Octicons.ttf */, + D6A4AE8854159190F303104E32834D14 /* SimpleLineIcons.ttf */, + 858B02711A1294F3FF055FFA95DF690C /* Zocial.ttf */, + ); + name = Resources; + sourceTree = ""; + }; + FC663C9A75C74115C8CFDDC69A98DF86 /* Pod */ = { + isa = PBXGroup; + children = ( + 15FF8E66C2AADEFE4D4C020B8A6C3D1E /* UMReactNativeAdapter.podspec */, + ); + name = Pod; + sourceTree = ""; + }; FC95F69E5AB9142B1ACC3DF9F797BC63 /* Support Files */ = { isa = PBXGroup; children = ( @@ -19078,94 +18966,81 @@ path = "../Target Support Files/JitsiMeetSDK"; sourceTree = ""; }; - FCFBBE0E5DDCEE2654840AEF57F46DDB /* RawText */ = { + FE2AFE2F2E6F5FB97A02B6BCA64A50A8 /* react-native-cameraroll */ = { isa = PBXGroup; children = ( - 2A97F85E390D25B7EC89FDE313270B1F /* RCTRawTextShadowView.m */, - 8EC00A7ED7541D5AD658A650F838AA21 /* RCTRawTextViewManager.m */, + 66B27C2CBEB364D204180DF161B01B67 /* RNCAssetsLibraryRequestHandler.h */, + A011BD194B23AF009EB317519D100168 /* RNCAssetsLibraryRequestHandler.m */, + 4DC75A2C7C2F0F85EDF4369731E1D6F6 /* RNCCameraRollManager.h */, + 7D79669EEA9D60CEAC59A575B4ADBE51 /* RNCCameraRollManager.m */, + B1963BE5A005556D99FD7ECB6C8D834F /* Pod */, + 635B0E10698244657845465E74BBF045 /* Support Files */, ); - name = RawText; - path = RawText; + name = "react-native-cameraroll"; + path = "../../node_modules/@react-native-community/cameraroll"; sourceTree = ""; }; - FD57CBD6983388FA42FFFC36787B0E8E /* Support Files */ = { + FE6322BC40B875FD1F02FCE9C80F6846 /* UMModuleRegistry */ = { isa = PBXGroup; children = ( - C5F67A1486AE8750C375B914FA3A8C3D /* RNScreens-dummy.m */, - DA06723236037DCBF714C63760D9E71B /* RNScreens-prefix.pch */, - 22B2FC9B1379734F4632EC03F671F938 /* RNScreens.debug.xcconfig */, - 5F6F1A303BED70574F14DECF9765E409 /* RNScreens.release.xcconfig */, + 579794ADECEF661ED2F0E8C42D1ED6CA /* UMModuleRegistry.h */, + C3A406431A8AE789AAD92A846187F169 /* UMModuleRegistry.m */, + 8969C70A3D8C90846DA1B8ECD1B81EA9 /* UMModuleRegistryDelegate.h */, + ); + name = UMModuleRegistry; + path = UMCore/UMModuleRegistry; + sourceTree = ""; + }; + FEC71B1693A20C80FE6CE158DC4C659B /* RNScreens */ = { + isa = PBXGroup; + children = ( + 0350EAAB6124BECE22642E630F0062A2 /* RNSScreen.h */, + 0028EA52F9E2F0D541022D3AC1392849 /* RNSScreen.m */, + E2B7B43AB4BF29EE9922384F722072EC /* RNSScreenContainer.h */, + 4696A8C52F32F67C00333F98532DB9C4 /* RNSScreenContainer.m */, + E065D4B6D3A746EDC24DD6F1DC704B5F /* RNSScreenStack.h */, + 912BA1E2CAE114B62C57ED3F4C700B4F /* RNSScreenStack.m */, + AE660E52BD52E517608D6753347FEC4C /* RNSScreenStackHeaderConfig.h */, + 48593C2AFF37B5B233CDDEF1B17273D5 /* RNSScreenStackHeaderConfig.m */, + 9A94F290F57460D4D1AA3735E07B389A /* Pod */, + C7ECAB562304D0B6B292556A24CB6C17 /* Support Files */, + ); + name = RNScreens; + path = "../../node_modules/react-native-screens"; + sourceTree = ""; + }; + FEC8FC66558FF0B90AE154AE89DE95C1 /* React-RCTBlob */ = { + isa = PBXGroup; + children = ( + C539389C4D288CED5913C12D77F06F79 /* RCTBlobCollector.mm */, + 5364E6248DFEA3869A0CAFA5203B94CB /* RCTBlobManager.mm */, + 488772C4721EA1135056A14045EA6C13 /* RCTBlobPlugins.mm */, + 937FFBD26A0A534E7B9202058831929F /* RCTFileReaderModule.mm */, + D66A0DC7E12BDCC5090E2C10B7E81C5B /* Pod */, + F02E8F78F4A153AFD71644D977FF8D67 /* Support Files */, + ); + name = "React-RCTBlob"; + path = "../../node_modules/react-native/Libraries/Blob"; + sourceTree = ""; + }; + FFC79262E3EE3F9E3AD2ECF2F9AAA071 /* Support Files */ = { + isa = PBXGroup; + children = ( + B59EEA89165C79D740E9F7E668C36CD5 /* FBLazyVector.debug.xcconfig */, + 4A93A3F0212383F09DF1C628E805EEE8 /* FBLazyVector.release.xcconfig */, ); name = "Support Files"; - path = "../../ios/Pods/Target Support Files/RNScreens"; + path = "../../../../ios/Pods/Target Support Files/FBLazyVector"; sourceTree = ""; }; - FD606C22EB1D129E9D6962DD94E75B86 /* Pod */ = { + FFF065B9EDED27A5EF3DE66459530C91 /* Support Files */ = { isa = PBXGroup; children = ( - EA9B90A99FD323502E3DC36A173D5E91 /* LICENSE */, - CC05F628433C495AA83FD9F1BB9E9CA7 /* react-native-safe-area-context.podspec */, - DFB6CFCC8048A6DDC465ECAD7591C5BD /* README.md */, + A3AF08EAE33371257469FD983FC2994C /* UMTaskManagerInterface.debug.xcconfig */, + F88847FD30049DAC67D35FC7B5D887C2 /* UMTaskManagerInterface.release.xcconfig */, ); - name = Pod; - sourceTree = ""; - }; - FE1FED9E7D28F792F81F1C9089FE4B22 /* react-native-notifications */ = { - isa = PBXGroup; - children = ( - 5BA7580AF58046B433F62CB89385F78E /* RCTConvert+RNNotifications.h */, - 628968A43ABEC47EDE16A9C09BC1B3E3 /* RCTConvert+RNNotifications.m */, - 54CB7EA5B2B24ECCA34D090CDF1F8B4D /* RNBridgeModule.h */, - BBB0CB6A13A1AB1E0718E673AB0288FF /* RNBridgeModule.m */, - DBB72BB168A7E02A43F77D880EC57FEB /* RNCommandsHandler.h */, - 94517B67FE4516FD0F03BF2463721F9E /* RNCommandsHandler.m */, - 2CB3EFDC81A28CBE01F1EEB0EC2F230A /* RNEventEmitter.h */, - 1432C6BB9FEE52615E1C14B4144900FB /* RNEventEmitter.m */, - 829E9A62025FA0B6F49BA4B4220CB903 /* RNNotificationCenter.h */, - 69EC70F514FDAC688D302E3B6A178992 /* RNNotificationCenter.m */, - 329F61807C938F88028E324BD933C9C1 /* RNNotificationCenterListener.h */, - 8E33CF1D9E9DF4EEFA6D098667D23B55 /* RNNotificationCenterListener.m */, - 3E43E4A7656C1FEDFEE67B0C8BE02219 /* RNNotificationCenterMulticast.h */, - D1B5E7F0B800924572CF2EC2C0E81130 /* RNNotificationCenterMulticast.m */, - E29E75E97AD70F3044C8F84CAE603806 /* RNNotificationEventHandler.h */, - A86B3913F0BC9BB9056755C579CB5D97 /* RNNotificationEventHandler.m */, - EAD93E5ED8CA50A3958E4F16680D58ED /* RNNotificationParser.h */, - 984462F627EEC579F8FAB2038D2E2ED2 /* RNNotificationParser.m */, - F67E5206CC7CAF83831158393EBF1033 /* RNNotifications.h */, - 7324299E30833A6A20255CF8DA2A73B6 /* RNNotifications.m */, - 87FF2C8C355A573413C9E97CED77C32C /* RNNotificationsStore.h */, - D102A58EC56219DFF7B68A696EE2B0A7 /* RNNotificationsStore.m */, - 4C4071AB9401DC258473B72A13E2BD27 /* RNNotificationUtils.h */, - CB1C48C95BE211F92168DA1DDF4298C7 /* RNNotificationUtils.m */, - 578B5CE66C427B004D7E569ACA77F66F /* RNPushKit.h */, - F76520659EA6968F94FC4F23481FF279 /* RNPushKit.m */, - 3539ED59EB09425783D209F803C06F29 /* RNPushKitEventHandler.h */, - 24110D29E603430427BC166880317C02 /* RNPushKitEventHandler.m */, - 54FF2D11BA429E0F948085B94423EDB5 /* RNPushKitEventListener.h */, - D48572B8B277C63CACAD5807CF571B0D /* RNPushKitEventListener.m */, - 9ED079D851167E88732EDE5AF46C7F67 /* Pod */, - B3770FCAACFEC879FF1F721AC639359D /* Support Files */, - ); - name = "react-native-notifications"; - path = "../../node_modules/react-native-notifications"; - sourceTree = ""; - }; - FEAD6EA6763FA9EA3A20E58B076D2F71 /* Pod */ = { - isa = PBXGroup; - children = ( - 3E49EF9E33E2321EBECA937DDBCD35C1 /* React-callinvoker.podspec */, - ); - name = Pod; - sourceTree = ""; - }; - FFD3C4E2D0044DBF128B493778671BA9 /* RNFetchBlob */ = { - isa = PBXGroup; - children = ( - 4491DCC9940E25C6DE1E4F960C6AF784 /* RNFetchBlob.h */, - 62AB16197D6B06D52563ADE97C660540 /* RNFetchBlob.m */, - ); - name = RNFetchBlob; - path = ios/RNFetchBlob; + name = "Support Files"; + path = "../../../ios/Pods/Target Support Files/UMTaskManagerInterface"; sourceTree = ""; }; /* End PBXGroup section */ @@ -19292,6 +19167,14 @@ ); runOnlyForDeploymentPostprocessing = 0; }; + 0C8FDB0748733FC03B7CF1D59CB50622 /* Headers */ = { + isa = PBXHeadersBuildPhase; + buildActionMask = 2147483647; + files = ( + C8C5453ECC1C320B868FAADD729EF910 /* Pods-ShareRocketChatRN-umbrella.h in Headers */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; 1156B26C59F05F6FC8428B80FE391883 /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; @@ -19638,21 +19521,6 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 497A6A094C69DCD7280EC21281BDF085 /* Headers */ = { - isa = PBXHeadersBuildPhase; - buildActionMask = 2147483647; - files = ( - DB802AF253B585166A65DE3AF2807ACA /* IOS7Polyfill.h in Headers */, - AE696B4A35AF464F62260BA86B736EC9 /* RNFetchBlob.h in Headers */, - 03A091EF0A44A9313367BD851F9685DB /* RNFetchBlobConst.h in Headers */, - 126F40666E812A4A6E90817FF328B49D /* RNFetchBlobFS.h in Headers */, - A02478583635DC43AF9D1BA278F4ABDD /* RNFetchBlobNetwork.h in Headers */, - CEDAFDB3B3EA3DCE1E62FF82FCD516E3 /* RNFetchBlobProgress.h in Headers */, - B6842E62885EBBE6CA0C133734CBD26A /* RNFetchBlobReqBuilder.h in Headers */, - 10D68B02FDF05C99237E067F9918509D /* RNFetchBlobRequest.h in Headers */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; 4A9B3443C99DC799778715A727E26A51 /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; @@ -19731,14 +19599,6 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 61CC0E24FAEDA5D719EC27CE3B1B3375 /* Headers */ = { - isa = PBXHeadersBuildPhase; - buildActionMask = 2147483647; - files = ( - C30D3BC1FAB19C0ED18F445348DC68F9 /* Pods-RocketChatRN-umbrella.h in Headers */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; 685372702C82DB84D381D53E1BF703FB /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; @@ -20200,6 +20060,14 @@ ); runOnlyForDeploymentPostprocessing = 0; }; + 93002B5712C7A503EC5FCACF2DB7E7BA /* Headers */ = { + isa = PBXHeadersBuildPhase; + buildActionMask = 2147483647; + files = ( + BCED976B7276D9471C676483F6747E00 /* Pods-RocketChatRN-umbrella.h in Headers */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; 959C49CF5CF0916231391253B77C154C /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; @@ -21067,14 +20935,6 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - D6979198788D9C93012E458B6A505014 /* Headers */ = { - isa = PBXHeadersBuildPhase; - buildActionMask = 2147483647; - files = ( - 0460C7FECB81F811BEB1818BA224D99A /* Pods-ShareRocketChatRN-umbrella.h in Headers */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; DB78877F95D333A7EC3497FF028CEB05 /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; @@ -22315,24 +22175,6 @@ productReference = 8CC9178C366942FD6FF6A115604EAD58 /* libFirebaseCoreDiagnostics.a */; productType = "com.apple.product-type.library.static"; }; - 64F427905796B33B78A704063422979D /* rn-fetch-blob */ = { - isa = PBXNativeTarget; - buildConfigurationList = B73B43F92F09B268B1E4369F42495C79 /* Build configuration list for PBXNativeTarget "rn-fetch-blob" */; - buildPhases = ( - 497A6A094C69DCD7280EC21281BDF085 /* Headers */, - F77AE66808C29A6B0F912AD7F9BCFFBF /* Sources */, - 71E0160C7031B685E8FC30D8048CC93C /* Frameworks */, - ); - buildRules = ( - ); - dependencies = ( - 303A329EFE63F98C76E1F88C1909DC69 /* PBXTargetDependency */, - ); - name = "rn-fetch-blob"; - productName = "rn-fetch-blob"; - productReference = 4FDA96879D96070EB1983E98E655CBDC /* librn-fetch-blob.a */; - productType = "com.apple.product-type.library.static"; - }; 6514D69CB93B41626AE1A05581F97B07 /* react-native-background-timer */ = { isa = PBXNativeTarget; buildConfigurationList = E2C75D147CBBB8B060F6A263F0B7364B /* Build configuration list for PBXNativeTarget "react-native-background-timer" */; @@ -22878,132 +22720,131 @@ }; 9C801345ED2C78BD1674053E7BE5D6ED /* Pods-ShareRocketChatRN */ = { isa = PBXNativeTarget; - buildConfigurationList = 908B90B691907295BF3ABE726FA79E1A /* Build configuration list for PBXNativeTarget "Pods-ShareRocketChatRN" */; + buildConfigurationList = 415D958F1F8A8951983B5F38E152DFE5 /* Build configuration list for PBXNativeTarget "Pods-ShareRocketChatRN" */; buildPhases = ( - D6979198788D9C93012E458B6A505014 /* Headers */, - 980D0AD6C6E1C453E95FF5BACAC40E16 /* Sources */, - F54C531A7E8196B34EC14A91161008F6 /* Frameworks */, + 0C8FDB0748733FC03B7CF1D59CB50622 /* Headers */, + B753FF0F7FE543C7C10367838E829A80 /* Sources */, + 26D899A231FCADB140CC28CCB7E32B49 /* Frameworks */, ); buildRules = ( ); dependencies = ( - D253A96E6B0CF1E8D871D257ACC210E1 /* PBXTargetDependency */, - 8DB83FBBE52D983FBC18B9EF0DE23113 /* PBXTargetDependency */, - CAD024419B50495C9419F54735E54894 /* PBXTargetDependency */, - 0E0252A97BFF8FB2A138FE05B2797C80 /* PBXTargetDependency */, - 44B783531E4C08A01EAA3B33A82B649E /* PBXTargetDependency */, - 9B663A2A75D9E21B7C96396B2BA2B678 /* PBXTargetDependency */, - A774C0A9CA3A13C07141014321F66E14 /* PBXTargetDependency */, - 3C766E190E3ED6E6CC879DA634B5482F /* PBXTargetDependency */, - 58B8B2FBFF2665AF431E31256A1877E1 /* PBXTargetDependency */, - 0AA9BD5B46025CF6F559325661D7AFAF /* PBXTargetDependency */, - FBAED5786B7626E957BCFF0AB0087295 /* PBXTargetDependency */, - 49644F2979CEA2E1540B008B8F2F6D04 /* PBXTargetDependency */, - 5601D049FDC20AE07C2DB4A6E7C7A436 /* PBXTargetDependency */, - C47E91833F953C81484CA5939A116D46 /* PBXTargetDependency */, - CE1F3B5380174467A4FDB82BAE5F94F2 /* PBXTargetDependency */, - 999EA8BEF8CAEF8A21125717120879E1 /* PBXTargetDependency */, - 308D03476E409BAB951D9F9200DEE728 /* PBXTargetDependency */, - C7933C15040997A63E08D9E73D90B5F1 /* PBXTargetDependency */, - E139C84E86CCE14A4937645D437137F6 /* PBXTargetDependency */, - 7D2925AEC983016F577EFA774403D770 /* PBXTargetDependency */, - 3C7D4C1A048571470CF90C4E5E596CD8 /* PBXTargetDependency */, - ADC0060F2C0BBEBD8C9EA35069A1115B /* PBXTargetDependency */, - 77B3A5CE2F74A44F2F7CDDDEB4B95F61 /* PBXTargetDependency */, - A9C0A1BF6A3C83B5E964173343DA79FA /* PBXTargetDependency */, - 7461DD0363F8F5220704C21BA9F3FE7E /* PBXTargetDependency */, - 8C443A3E2F419ED1D22612237AB2C555 /* PBXTargetDependency */, - 354D0E73417E97A5EC346FF5DAE8187D /* PBXTargetDependency */, - 6451C9E6CA7820FDE1EBAC13E5874615 /* PBXTargetDependency */, - 89088862EB4CB9E6F4C8D7289EAB2E6C /* PBXTargetDependency */, - B41AB91179C21B9BF2A7605F38502816 /* PBXTargetDependency */, - 643707AE3B5377FA13A292600619CF92 /* PBXTargetDependency */, - 143D27C1FC3FC8ED20AF39DC5C8E4209 /* PBXTargetDependency */, - AA521E3901BB34A794064D0CCEF13D99 /* PBXTargetDependency */, - 4901FEB8F56429CC198027869BD91B97 /* PBXTargetDependency */, - 0C12AC479E5A372F78493659A9F6EF15 /* PBXTargetDependency */, - 2B0B0257074F08BCE13E70A45B82F39A /* PBXTargetDependency */, - 9DCEE99DA9B0BE6178A8B6D3D5D81945 /* PBXTargetDependency */, - FDD789A6FE9205A4C9B58026716608D1 /* PBXTargetDependency */, - 8A6BF46942EA2FA060E6BA49BDBB0B9B /* PBXTargetDependency */, - D2221A1761DE58FCB64A747DD26BCDFC /* PBXTargetDependency */, - EF7DB579FAB0CFE7BF9C2E9F5A0FA8E5 /* PBXTargetDependency */, - 574731599DF5D986135DD05C910C2071 /* PBXTargetDependency */, - 9A7E406D738AA7D593F3CB83E5CA14D8 /* PBXTargetDependency */, - 2E786793EB4B28C74BFACABC488BDF4C /* PBXTargetDependency */, - 9432457523D5B76C0A2DA678B1E75D59 /* PBXTargetDependency */, - 0D4019F7AF1220A2C793EF0C64263FD8 /* PBXTargetDependency */, - 9B76D279CF96228DDD85808F0CD17C13 /* PBXTargetDependency */, - 92076B603161DE38DDE9FDE9820B9CAF /* PBXTargetDependency */, - ADC48BB308644518E00F4F2E7DCE6F46 /* PBXTargetDependency */, - 096737461465504503503E826D0D6385 /* PBXTargetDependency */, - 570EC5A2754F37636B66EA4E76155746 /* PBXTargetDependency */, - DB91C5B8FA4E48F817349BE83F35D2ED /* PBXTargetDependency */, - C618E9AA6DA0B051EF26EC35EE035C01 /* PBXTargetDependency */, - 613886CD7EBB70BFDB398A88A8500556 /* PBXTargetDependency */, - 09F19312C479AA3F73374675BFA2D2C1 /* PBXTargetDependency */, - A8F14AF75A631E080B34BF1B48667DDC /* PBXTargetDependency */, - 37E1D2588FE995A65FB1D22395139E6E /* PBXTargetDependency */, - D5413890DDD4A3C37BC579E70D304779 /* PBXTargetDependency */, - B4F6684EA6A3C92D0CD50A7C68D66501 /* PBXTargetDependency */, - 2551343F9073B2AE2360B9A920298719 /* PBXTargetDependency */, - 25963F58CC5401492527FAA30B588020 /* PBXTargetDependency */, - 0FF8153E99B4D689AA392E8E2F547D74 /* PBXTargetDependency */, - 68DE9E0D2A6B1E6B84F6086FB65D8609 /* PBXTargetDependency */, - 9CB25993E0DE4A687C546BB105805613 /* PBXTargetDependency */, - E5B201E797ED4635B0E528F4D4F791A8 /* PBXTargetDependency */, - 5A0C39175ACF949659660263E363DA39 /* PBXTargetDependency */, - 93C0CA7E66B4C295A25ADAEFA88FA60F /* PBXTargetDependency */, - 61FAF14317491DACEC802EEC7831D93D /* PBXTargetDependency */, - CBC6D33FF68ED45DA279CDF13D2F6E86 /* PBXTargetDependency */, - C3F2CA6497322BDA01A130619461941E /* PBXTargetDependency */, - 186C24CB52A2AC3AD1106597BB53FB80 /* PBXTargetDependency */, - 325E02D6E23C05AE97A2287319CBFB0E /* PBXTargetDependency */, - 7B25C363825B78F548C58A30E313B2DA /* PBXTargetDependency */, - 2FE72A32DF183A53FF3E249136214D0E /* PBXTargetDependency */, - 6376FDD0B17A95025B8F31EAC8A58795 /* PBXTargetDependency */, - 35A320F28708C5CB2978DBB70B3F6A61 /* PBXTargetDependency */, - 24855BCA3EFE5DE677FFA7A279FCC89A /* PBXTargetDependency */, - 33552E419FDFDB4854A7BE3930F686AC /* PBXTargetDependency */, - 6A72CF7DF35E2A5DCA25882A564EC911 /* PBXTargetDependency */, - 7E61A6A52610287BA1AC419E6105B5F8 /* PBXTargetDependency */, - E3DD98BCFA06EDE0845462DE507AC5A4 /* PBXTargetDependency */, - E7194B5D81FF9052632912599626F87C /* PBXTargetDependency */, - 5F25BD9DAE0128E47231C43E9C2DC34F /* PBXTargetDependency */, - 6CBD444D6EFF03AB667AD55FA993099D /* PBXTargetDependency */, - 36202FBC81CD1FBA682E47D19BA3DF3B /* PBXTargetDependency */, - 1BF4EDD1E438737D27EBC84218DEF689 /* PBXTargetDependency */, - FD5ADEDBDDA770D71315E8F59A34EB35 /* PBXTargetDependency */, - C4DB3652EEDB7CB2E66103EA34B636A4 /* PBXTargetDependency */, - 35B7FF3E55C1005FDBECD104470C82D5 /* PBXTargetDependency */, - A34C25F97AB01E2E61B6F7B771AE2490 /* PBXTargetDependency */, - B96E7DBA82D25001AB650D750AAB6B7C /* PBXTargetDependency */, - F98D53E84673952739169D82B178708B /* PBXTargetDependency */, - 640CE6D4E9BDBF9259446546770C7C61 /* PBXTargetDependency */, - 0A3DCE5C15A144C47E107566CB2B85C5 /* PBXTargetDependency */, - 8C218336AAA5C8C363CBF6D59EA8A924 /* PBXTargetDependency */, - 54589953D03DD99F1FC1430E8FB77331 /* PBXTargetDependency */, - 8BD3D4ABFA1A0B019082936D31BDBF0C /* PBXTargetDependency */, - 404057CBE673ABE2DE954AEA9B296458 /* PBXTargetDependency */, - F73E7D618F04812B4226DCF25884D15F /* PBXTargetDependency */, - 0F676A73B7632EA7A9D0AF12AC0359E0 /* PBXTargetDependency */, - 65BCDCCF7FF0998145528A6C95CA8C6D /* PBXTargetDependency */, - 20B77649C9D8B4F34CA52C7F21E5B488 /* PBXTargetDependency */, - A614BE3642C55FF1A98DB87BF5B2BB32 /* PBXTargetDependency */, - 122CE582673F2007971C51F10CD38656 /* PBXTargetDependency */, - FB7BA34E4677479F4775F298820A6BE6 /* PBXTargetDependency */, - BD5FCA7D72FB28022163A0BED431AD8A /* PBXTargetDependency */, - E9010F118B26E5E7827D0B0EA5AC1C11 /* PBXTargetDependency */, - AE338229B914B6906B4B18133C98B7BE /* PBXTargetDependency */, - 538A21DB7067A011D0AE9E313B3901D1 /* PBXTargetDependency */, - 7EBC07ABDBB08BE5E11E29C379D02B2E /* PBXTargetDependency */, - 50729A0FD9037F4036868B85823DFCEC /* PBXTargetDependency */, - D9B5D7FD43FB3BEED713817988F39395 /* PBXTargetDependency */, - 9662B86C35F43AFE88F3CF763A5694F2 /* PBXTargetDependency */, - 79FE6D9E0E801EA5DAA68A89C2A391FF /* PBXTargetDependency */, - 1AA6DE4FB3E065FB7B30A5B6A64F7386 /* PBXTargetDependency */, - B8C36443B1F6FB4AE640FB548F14F2E1 /* PBXTargetDependency */, - 81D5D0BFCC0FB03316CF4A435D4567D6 /* PBXTargetDependency */, + 00945D05578F109B2E7004665001F59F /* PBXTargetDependency */, + A648429EEBDDD17ABFC6C20A36EBD299 /* PBXTargetDependency */, + 1BD6A4C94B8DAF90842659ABF34946E9 /* PBXTargetDependency */, + BE830AC6A28C14FDA2DBE84E4E5F5C84 /* PBXTargetDependency */, + 6A38443A80ACD8168AB682CC581C88AC /* PBXTargetDependency */, + 529E6A59EE70052C7870539B7EAC6554 /* PBXTargetDependency */, + 263D4699F9B1F1EC47EE9C9B043D4689 /* PBXTargetDependency */, + E1D1E1A99D0060807D6CEECFAFC197DC /* PBXTargetDependency */, + 612A77BBC70E38149CB2621EE0AF8A96 /* PBXTargetDependency */, + 3D30B9F354177CB1603706D30B7E3274 /* PBXTargetDependency */, + E5786107BF4E2A85929BA219FAA38755 /* PBXTargetDependency */, + 6309387FC50EFA4305C209376D922A28 /* PBXTargetDependency */, + D08448FA1C7979DD5CA78C5A58283B88 /* PBXTargetDependency */, + 36FB63134035DBA8D1EAEB498AE4634D /* PBXTargetDependency */, + 73DE4F7687CBEC1BBFDEE6A90E6CCC30 /* PBXTargetDependency */, + 7BE17514BD74A3A2E514163AB872A3FF /* PBXTargetDependency */, + AAB1C367D39738960D41AB5F4EA9A05F /* PBXTargetDependency */, + DF8356CC4D874F1A48AED8296D2D709E /* PBXTargetDependency */, + 72A69241458C1544B71ADE0218F30AC0 /* PBXTargetDependency */, + 64A4CD18A5463A92A3F0F888096C14F2 /* PBXTargetDependency */, + B75299AEF1105251439FED0853B02381 /* PBXTargetDependency */, + 06B8AC6521B16ADEB6CAD3F2F580E90E /* PBXTargetDependency */, + 60F3EA36224F3FC95986413493623F8A /* PBXTargetDependency */, + EAB57CAAD152B410CEFF8CB0B10AB5DA /* PBXTargetDependency */, + BF2B14CB7770F3995232D175520ACEE0 /* PBXTargetDependency */, + D0B33916950CABA7C9A6CC2ED21B63C3 /* PBXTargetDependency */, + 05E5B05B92BE3DBFF3DE24ADC07A44EF /* PBXTargetDependency */, + 212F6061C4C18B29F635A575B1DD89D9 /* PBXTargetDependency */, + B55F24B442A3C2C9BB0C258811D25EDF /* PBXTargetDependency */, + F09ABB491933147680157117A6ABF945 /* PBXTargetDependency */, + A3FCE7D50E5B006BE9B42374646A6E0A /* PBXTargetDependency */, + 3C6DBF7BCA9DCB814598F8E67B05E000 /* PBXTargetDependency */, + 54E66BECE2746C302A95002ABD3E1551 /* PBXTargetDependency */, + 3B20678DF56A83F553A8859607D79D15 /* PBXTargetDependency */, + 0211E81F0CEC1EF594D28390C869C261 /* PBXTargetDependency */, + 0CF0078E824FB2BB6B31E241482D85B1 /* PBXTargetDependency */, + E184E6507F2923106FBB046543B058D4 /* PBXTargetDependency */, + 8B8C3A6AF86E6829A6D0577E868F5C48 /* PBXTargetDependency */, + 15AA7842FF8DFB2AD4E46A3DE607B026 /* PBXTargetDependency */, + 1CC877A23F807C8E8800E53C18B3884C /* PBXTargetDependency */, + 6CD67D4E3B8E61339F2AA21EBCA24EC1 /* PBXTargetDependency */, + 6E04808701F0E6A2BD5BE6BBF517BCA3 /* PBXTargetDependency */, + 3330EF804F15B0659CB464668EA77D8D /* PBXTargetDependency */, + FCFF5FDE0474C4A0477F3C1CEEE555F9 /* PBXTargetDependency */, + B51AC743DDF8F2070E5F6A7CBF95A6B9 /* PBXTargetDependency */, + 9512A74657D9D72A45F33EB5E7386DD0 /* PBXTargetDependency */, + 60593840CEC67D79445F57AAF514C4BB /* PBXTargetDependency */, + 08C0A32FFCD71E37119405240FAFB36D /* PBXTargetDependency */, + 37B0435459486EF0D15C4C33F5F95EA5 /* PBXTargetDependency */, + 779EEF991729187B107C582D0E2BB47F /* PBXTargetDependency */, + 54AE6A9E9609564E2AF290BEA03BB662 /* PBXTargetDependency */, + 6E34E020E6F5454C09BFF51DF305FE79 /* PBXTargetDependency */, + 8C5F62A687552B7DC2017A21A23CF14F /* PBXTargetDependency */, + 41FCA2B4C30D5C48B844412AC5BC4A26 /* PBXTargetDependency */, + 190AD84DEA6CC6D268FAB297231A3B19 /* PBXTargetDependency */, + F5A7108161A3A9621DC5CD42955A1D95 /* PBXTargetDependency */, + 6D5ECB09CB3FEB125D030F84F2DC6111 /* PBXTargetDependency */, + 5C58D0E2BCE4A16F75639E2446FC1729 /* PBXTargetDependency */, + BD0117C02768E59720E92927C5AC8955 /* PBXTargetDependency */, + 0F368C76F0AFBCDA99B94D3D53408960 /* PBXTargetDependency */, + 0971FF73C91CBB16A5A0FA93A1F44857 /* PBXTargetDependency */, + 2A28203CBA250EE8107905D114703AEA /* PBXTargetDependency */, + 3B05E7EBCFF136194C031196CE9945A8 /* PBXTargetDependency */, + 612DDB1E65CD8353BD8C38C1B1E2CD7D /* PBXTargetDependency */, + 65DBEE59103E71F0C51FF0DED1406C9B /* PBXTargetDependency */, + 31CC2ADE0D214B571EC644581960C7FC /* PBXTargetDependency */, + E4A617D0643A95A865F210C499523E80 /* PBXTargetDependency */, + 97F6047328760976A9AB53BD3D1265BB /* PBXTargetDependency */, + F256AF405DAF2F6FD365AEC3669F17CF /* PBXTargetDependency */, + CED1BBAC1B8AA42806AEE75369345519 /* PBXTargetDependency */, + CD611D25A6481D69FE413CBEB6CEA177 /* PBXTargetDependency */, + F2212133122F1FD1465EC173905556D6 /* PBXTargetDependency */, + 922669370E048661FC5FB522468751AE /* PBXTargetDependency */, + 266928BCFF846C0C9C2139A0DB237E78 /* PBXTargetDependency */, + 5931FFABCCA2D63080F8DBFF7853749D /* PBXTargetDependency */, + 46390951DFE422E27DF227AADE23CBCB /* PBXTargetDependency */, + CA48E2D037F0EE2EBAA13A06F41710A8 /* PBXTargetDependency */, + 319C451B0753116CBB90415AC15E4964 /* PBXTargetDependency */, + 35CB1D154AB2FF43A8BAFFD46B3CE44E /* PBXTargetDependency */, + C53BDEC3EAF3C1C99D1827AFB8FF343A /* PBXTargetDependency */, + 3AA871C7AC2A689398E59BCA4E5A4182 /* PBXTargetDependency */, + DBE0B610C19CE7DC8BC1630AADCB7068 /* PBXTargetDependency */, + 5259748B72A059362685838A7B16F664 /* PBXTargetDependency */, + 1D48B12C408A7165B4CEC7D1F209A78E /* PBXTargetDependency */, + 8774EACE46841D04C42BEA6CB13F9387 /* PBXTargetDependency */, + DB07F254C544A9FCDCD3E401BBB94EC5 /* PBXTargetDependency */, + 45B18580B1516ACF90D5858ED4B3ADEB /* PBXTargetDependency */, + 912AC58814F9A1E6A6C2461CCD6AEBA9 /* PBXTargetDependency */, + FD7A9F298E71EF6CBB906F72B55CAE3B /* PBXTargetDependency */, + 6450033F31549A9888038D503A7678E2 /* PBXTargetDependency */, + 0FA9D4F3A47E20462BA5D399422D5BE2 /* PBXTargetDependency */, + 22FEB7FC57BD1604D4E2CBD8BC16E7C0 /* PBXTargetDependency */, + FB21FB1B0BD6EC7A7FAECAF140AFB843 /* PBXTargetDependency */, + 7D720B7DF9ADADD423AA19028B3DD993 /* PBXTargetDependency */, + 398F0119A9B1A530F3858083DC593E21 /* PBXTargetDependency */, + BB1DB6E17C643DA4FB3EE74F077470FA /* PBXTargetDependency */, + 2F89033B42085F1C06154C6A5AFE95CF /* PBXTargetDependency */, + 8760B43160C7D9A3EAB2586A15A25B8F /* PBXTargetDependency */, + D425887896DFAF5B401A40BC2729491F /* PBXTargetDependency */, + E236081B1E1B1451400F47CBE45B7CEE /* PBXTargetDependency */, + 8EAEA48BC8099F8F78560FFBA8D26F30 /* PBXTargetDependency */, + 91CB85991B15E156A2938F4F7ACDDE06 /* PBXTargetDependency */, + B9D196151B75DEF1EE5E8BD5DBA899B6 /* PBXTargetDependency */, + 6FF2C78FD95C71DE70BE963FE8C157F6 /* PBXTargetDependency */, + D7852C97AB15BDAA480B4F9679ABA973 /* PBXTargetDependency */, + 9C09C0CE74C228720295563511B99EC0 /* PBXTargetDependency */, + 3336EC7D82263E194C67DE118CAB1C43 /* PBXTargetDependency */, + 6DAD7CC28A43833829E646F333D8C0F6 /* PBXTargetDependency */, + AE149189755EFCB86073FF514926B916 /* PBXTargetDependency */, + 8F9458FF340A279508CB1AABFC4AEE68 /* PBXTargetDependency */, + DC1D72033357A252D181AEF8FC5EE905 /* PBXTargetDependency */, + 309A8EC005D0E995361377C5FEB0C6C7 /* PBXTargetDependency */, + 22280062A0F47E817B3158195E773CAF /* PBXTargetDependency */, + 0D6678C25541AEC8DBAF901A80E2308F /* PBXTargetDependency */, + 2FCBA4150DC1292FBAF34D23BFA6BE6C /* PBXTargetDependency */, + 61135C2CF47FDAC31B6FC9E181583EED /* PBXTargetDependency */, ); name = "Pods-ShareRocketChatRN"; productName = "Pods-ShareRocketChatRN"; @@ -23121,132 +22962,131 @@ }; B37ECF22F1589E28F59BC9990B4DC476 /* Pods-RocketChatRN */ = { isa = PBXNativeTarget; - buildConfigurationList = 542B99B928ECE567A203D2898802CB48 /* Build configuration list for PBXNativeTarget "Pods-RocketChatRN" */; + buildConfigurationList = BEF99D0776604BBAC7558D2F4FB78EB0 /* Build configuration list for PBXNativeTarget "Pods-RocketChatRN" */; buildPhases = ( - 61CC0E24FAEDA5D719EC27CE3B1B3375 /* Headers */, - B8225C36827825360196616D106627AF /* Sources */, - 8BBC7F99D4A9431BEE71174923CA3257 /* Frameworks */, + 93002B5712C7A503EC5FCACF2DB7E7BA /* Headers */, + D4C102698F508ADFC662E5EA07CE6401 /* Sources */, + 839DBCCCE40D75A1100B2341249C0FD6 /* Frameworks */, ); buildRules = ( ); dependencies = ( - A122CF2DED148E897060B7E56982CB8E /* PBXTargetDependency */, - F874BA643B8F8CA9391AF3C4DA14B4BB /* PBXTargetDependency */, - A6B38B93EB4ECBC9390D3E5CCD2B089D /* PBXTargetDependency */, - 3000060183C31353FB97843F69375001 /* PBXTargetDependency */, - D07E310F392F4952F184EC5497E91B21 /* PBXTargetDependency */, - CB5286E5D45335CDA43F9E163854A63C /* PBXTargetDependency */, - BF657CA9700EAFE6B0AAF1EC61FEE90C /* PBXTargetDependency */, - 04DE9F37C9315132F4DD90EC72082F72 /* PBXTargetDependency */, - E5C22A908598D746A17A001C3471E8F6 /* PBXTargetDependency */, - 6683754252A0192CA2DFB36FCA013936 /* PBXTargetDependency */, - E625B1D8784FAD7512204396BD7A9487 /* PBXTargetDependency */, - 62B0221FC91A6BB6716081D2FD161421 /* PBXTargetDependency */, - BA07CF2D61DAF427DC0CA2B4C0884C94 /* PBXTargetDependency */, - FA8F132CE582D5BD004ADA9B206A4D09 /* PBXTargetDependency */, - 530494A4FB2C6A8E55BC52C966C6DC46 /* PBXTargetDependency */, - 1B5FD8FC7B7320DA3677AB7EF70D5F9F /* PBXTargetDependency */, - DC3BB4C55695578A9006E45B7C2C5157 /* PBXTargetDependency */, - 1C71FF20F8C49FF8FDD297482F689D87 /* PBXTargetDependency */, - D60836460D5593FA19A61C0F5FF6275D /* PBXTargetDependency */, - D6339EA9F1D48390CBE2288F162AF418 /* PBXTargetDependency */, - 1797E36CBB9336F54B43D00FCB09AC2B /* PBXTargetDependency */, - 9E881EBDD0A8E94942E6CB4073292433 /* PBXTargetDependency */, - 9C968A79F9EAEEE8A6CE501F49D7CDBC /* PBXTargetDependency */, - C292B9C57FF2EB7AECBA5803C32756A3 /* PBXTargetDependency */, - 73721FC1C14034A5AF3F0C0A1CC3903E /* PBXTargetDependency */, - DF6CDE38B394A7446AA43CAE1EFF7C5D /* PBXTargetDependency */, - 1357207E8323C169D1E0C98A1CBFFC2A /* PBXTargetDependency */, - D5A130B8E26B370AE406BB535BBBD4D5 /* PBXTargetDependency */, - 9ED82B637CC477BCEE67B2C89452ED58 /* PBXTargetDependency */, - 76F63007CF9D2F11857C4C428D1B8395 /* PBXTargetDependency */, - 10504B2D0FAF5B70161832E5AC595519 /* PBXTargetDependency */, - 89924C53EB11CB39FA3DA44FA9BD4F80 /* PBXTargetDependency */, - CC26777679C8245679FB1967790CE3EB /* PBXTargetDependency */, - 7F424239BBC9870DAA6E021383BBCACA /* PBXTargetDependency */, - BB87EE46471B00FA11E991CF900BB530 /* PBXTargetDependency */, - 39813ACBE9BB183CF1B44C5723B3E3B3 /* PBXTargetDependency */, - 897B3C8820164B38192C22DF624B6981 /* PBXTargetDependency */, - CECB89DE87D17084981839B2869A515B /* PBXTargetDependency */, - 7FB53382378CE4705D88EABCE6B8CCED /* PBXTargetDependency */, - 50828A6395FB1CFB9F530A448770E1DA /* PBXTargetDependency */, - F4A5BF2101266EFAE47F823C96F188B8 /* PBXTargetDependency */, - E22B799ABABE83B494DE96A19BDC5C6B /* PBXTargetDependency */, - F9F71D7F0BB699D15444F1B9E7BFC89A /* PBXTargetDependency */, - 13AA384326578171422CE0C682744865 /* PBXTargetDependency */, - EFD20EDF9CDBD0204866BD5FD9D71C2A /* PBXTargetDependency */, - A311AEEBE469BDCECD43CC02A861D729 /* PBXTargetDependency */, - 6484E6720ADF66AF9560B30EB7A390A1 /* PBXTargetDependency */, - E8546562AA10716B3E7D57E7976FBDB3 /* PBXTargetDependency */, - F246A85595464675FB93656D21E98076 /* PBXTargetDependency */, - EB8A2E1ED4CEBB1C177FB18F0D3EFCD0 /* PBXTargetDependency */, - 46C42744DDD2F571E2B9958ED504CA6F /* PBXTargetDependency */, - 422A450798FB334D709101F34A7C2204 /* PBXTargetDependency */, - C1CFCBB30E8A4E37E4AAFB1A76FCFE45 /* PBXTargetDependency */, - A6FFF7C8BEF67B9713E06F8907E7769A /* PBXTargetDependency */, - 68D25E506AB692AC990986B5A30C5224 /* PBXTargetDependency */, - 5D1CB8E0CDBF6C6D74589D41485CA44F /* PBXTargetDependency */, - 1339D4DE00F5E65D8BF7A4F1D21FA80A /* PBXTargetDependency */, - DBD921F0312A84A8BA2E999F2B2B19F7 /* PBXTargetDependency */, - D5D01D82D65B6B978E70E653D7E9FFF2 /* PBXTargetDependency */, - 3B8F3F2C18AFE3F56E982C2D39C85C92 /* PBXTargetDependency */, - 939DA11931E4068E9CC5AC407934A0F5 /* PBXTargetDependency */, - 2623CD381FAE0925C5EFA8D194ADDAAE /* PBXTargetDependency */, - BDE247C57595CA941707D94FF59FA327 /* PBXTargetDependency */, - B8835D4180628CAF7E91400B3B3177A3 /* PBXTargetDependency */, - C208B208EB29573900AB8752CCDB50E9 /* PBXTargetDependency */, - 4EC3091EE929C19E8896D7A2EA563F23 /* PBXTargetDependency */, - E2E4BEFBDF6918DCD567CBF983902CBF /* PBXTargetDependency */, - B2CA6BC06C42512EEF0B7E959B3BD068 /* PBXTargetDependency */, - 5C950266C235720247E759737AB73DD2 /* PBXTargetDependency */, - 80658BFF3F49B8FA65473361C32E56D6 /* PBXTargetDependency */, - B812278517C497FFB238F5F7F32E27F4 /* PBXTargetDependency */, - EF9AFBBB3ECED635B417D66519BAB18A /* PBXTargetDependency */, - 39BACBE858537096FABB278ED59ACB30 /* PBXTargetDependency */, - 75E307DEDF03DF4A1E93A3E3E256BE5F /* PBXTargetDependency */, - 5E5B236A96845D4AC716DBC8875BB190 /* PBXTargetDependency */, - F21C947178010BAC1CD60961618B63E1 /* PBXTargetDependency */, - ECA1E0C5AB7449FC7A91F8879141716B /* PBXTargetDependency */, - 81D89D91F5E3E024C47F62FD83338490 /* PBXTargetDependency */, - DD79E04E840C1971F5ADA3F1CBE8A565 /* PBXTargetDependency */, - 1F337FB8E31611FB97EB7CAEE45590ED /* PBXTargetDependency */, - 2ABB98B16410D5DC27D004AA81AA614A /* PBXTargetDependency */, - 51A04BA77142973897736FC18BD1C371 /* PBXTargetDependency */, - 9A604A7CB403A3C3A619D452BFCFF99B /* PBXTargetDependency */, - A9A970237946B4BD90461F61EA843A01 /* PBXTargetDependency */, - 4FB12381357EBA046DC7CC20A413725E /* PBXTargetDependency */, - E8758EFDABFBE5EFA687A428A8A17EA0 /* PBXTargetDependency */, - A5688DEA779C3EA3F815135751E5DB4D /* PBXTargetDependency */, - E682F77671D7A8E7DB9ED58DD61AA39A /* PBXTargetDependency */, - 7E28B8744807C9EBB77134B6A01588ED /* PBXTargetDependency */, - E03DA067FBD031AFE61AFFB2643ABC2A /* PBXTargetDependency */, - F9D06C3B19322338DEEB56415CD664B4 /* PBXTargetDependency */, - D1F4B2387063A574E9A2DA0387A82470 /* PBXTargetDependency */, - 966C1AB8E418F0F862F3B0590A5CCA60 /* PBXTargetDependency */, - 50B9A884D00C3400F4A5F07D6211CB94 /* PBXTargetDependency */, - 5D9EEB9868D21A18D4FAD14995489FB8 /* PBXTargetDependency */, - 3E516659092C3C58F3EB6F5ACAA79D3D /* PBXTargetDependency */, - B81D6CB4EC3C904E5659212CCD035A2B /* PBXTargetDependency */, - C05B03CB2F2FBA708BC53CB177409D3F /* PBXTargetDependency */, - 2EA25BBF8CDAAD327AEBE61B1D24C2AA /* PBXTargetDependency */, - CF708999D0E2708C3F16EB6E67EECA79 /* PBXTargetDependency */, - 60E2183033A9C3CA218AD216BFBB35DA /* PBXTargetDependency */, - C10AE8980BFE285C582A6BB9BF5B2A21 /* PBXTargetDependency */, - DF06D725A2AB4B2E78D6299ADF0AD37C /* PBXTargetDependency */, - 49B880CAD8604E80F8C7C9447E055311 /* PBXTargetDependency */, - B10B0615DAEAA4E8D36FDC7AB41528EF /* PBXTargetDependency */, - 2EEA6A2701EA6C4C6C6CA4AE79878F48 /* PBXTargetDependency */, - 9747CEDB474CD74D3BC35BCD06D39971 /* PBXTargetDependency */, - 1ED96569A167625F663C08AB04F685B5 /* PBXTargetDependency */, - 4654C9E56298F175D95AC145CC734CB5 /* PBXTargetDependency */, - 4C503DD05787CF7FD842C81076C7121B /* PBXTargetDependency */, - AC69351F2BA3A61430AF7EB28FA07EBB /* PBXTargetDependency */, - 7A109E2464B67447DA639668A7EC7B80 /* PBXTargetDependency */, - ED609D7EAA5E850B8BEE478BB9821A41 /* PBXTargetDependency */, - 7DFEA3E3DBBA1DCD408EBC1342CB44EC /* PBXTargetDependency */, - 9E1C055822086B5D178AD243D38C6DCC /* PBXTargetDependency */, - 5BD29DFF171891D370533484AACB7D65 /* PBXTargetDependency */, - 61BEE753502F0746952AAEC285E8C634 /* PBXTargetDependency */, + C2340FAE3C2D32CBE8A6A0A24D3F2114 /* PBXTargetDependency */, + 625C21AC2058C51DFE9CE628143709D8 /* PBXTargetDependency */, + 7D334239C28E2E630E89F0EFAFFB373A /* PBXTargetDependency */, + 6D88BFA69F55803C7D6548EEB0497E42 /* PBXTargetDependency */, + 3CD73A1C5A6FDBF1196FEB581BEDA835 /* PBXTargetDependency */, + 586D1BCA5E3281AE24CDDADA840D5747 /* PBXTargetDependency */, + F08D8F9E91FB6EE048D5DF6C52F8CCF3 /* PBXTargetDependency */, + AFBB7C710F83F45C72CF3FCBB7205B19 /* PBXTargetDependency */, + F0639F537916D3E1B9D7D4B031C00F64 /* PBXTargetDependency */, + F27C6531DEE3EE7E28D16F85B98CB106 /* PBXTargetDependency */, + 3BE635513BCA992F1B11B7104106B1BF /* PBXTargetDependency */, + 29D5E7BB19BD36233EEA71CE551654A4 /* PBXTargetDependency */, + E8AF8AEA7F59D687F139F71904C7FDF1 /* PBXTargetDependency */, + E6510AB23982FFA5C494F9FD90674FCA /* PBXTargetDependency */, + 052A991F63B4BA4CE6ADB70D412602F4 /* PBXTargetDependency */, + DD1DAE3F71018F34CA36FFCC885EA578 /* PBXTargetDependency */, + 97120B7E10294BC1826B9790F861CE5F /* PBXTargetDependency */, + FD3E0CC4CF3113FEED0B3D506DF5DB2D /* PBXTargetDependency */, + A9629011258E36FB41EDFDBCA238C5B6 /* PBXTargetDependency */, + A017F7463935E16964D38009C85A52BE /* PBXTargetDependency */, + BEE8867CBFF693EEC355684F9B4ADB85 /* PBXTargetDependency */, + 8DF99E40DC9641A677B8DBB6CDF1FDD7 /* PBXTargetDependency */, + B002F33E261911083C7DD30FA7C45CB8 /* PBXTargetDependency */, + B308730EC6E1F8F88633B62C509BFDB9 /* PBXTargetDependency */, + 62B41C678966870F5B15D96E625597A6 /* PBXTargetDependency */, + CACDB18011A3FB299F8FE7E4EAAF36B7 /* PBXTargetDependency */, + FFE2FCBFBA7C14FC2F5AEFD88E22C454 /* PBXTargetDependency */, + 8DF1AD242E350AF22E08130CDFAA6B32 /* PBXTargetDependency */, + BBF6A72BADBDBD0856B43A1A1BD9FBAD /* PBXTargetDependency */, + 6A2BD75FDB06F47DBF16571011D11A2B /* PBXTargetDependency */, + AE9431D663A8228831A6EF902AC0AB56 /* PBXTargetDependency */, + E9DBD2874F7DBFC3837FA6A947C47956 /* PBXTargetDependency */, + 1D56A4248B401B96808CCB58B636EDBC /* PBXTargetDependency */, + 12CCD3EE95CA082225A5B756955EFCA6 /* PBXTargetDependency */, + D1F0BA53A8442B16EE98CA1526DBEB3D /* PBXTargetDependency */, + A6B5966BE0E73C8CD174DA7FD48B3D23 /* PBXTargetDependency */, + 676EF293B35AB781499AD84F91CC110C /* PBXTargetDependency */, + ABC0EF930CD66CBE6D2D2A70337803EF /* PBXTargetDependency */, + 7E95C873E3E56A010F58BCBD4A1E3833 /* PBXTargetDependency */, + D0638BDADBBC802C3843C2B4A1CB5356 /* PBXTargetDependency */, + 946D4DDB9B2BED148931D27A8171C9C4 /* PBXTargetDependency */, + 92622ECB0588698BBDA2B4937C039E7D /* PBXTargetDependency */, + BB759C97475EBFADF70148AC3008A9DE /* PBXTargetDependency */, + 19C86D9B98CF003165D576210534B3F3 /* PBXTargetDependency */, + 360016A712850A4F359208822E5D8807 /* PBXTargetDependency */, + F25CA01EB69D5AD6BF26356373743E86 /* PBXTargetDependency */, + C3CBA45169C5669B5DE0D208CB0B0706 /* PBXTargetDependency */, + EF7C3997DF65D494B0011A9128C87D3D /* PBXTargetDependency */, + EF79A67FE579A3F946A44BEF56826D7D /* PBXTargetDependency */, + 5A2927236F51FBB5980C1470C510BBD4 /* PBXTargetDependency */, + C2799084BA7799AC02137B6A501E2A0B /* PBXTargetDependency */, + 43AB990FBDF4D87FC95DF65144749152 /* PBXTargetDependency */, + ACE987744D1BE7F342AED1E33F1D27D7 /* PBXTargetDependency */, + 783DF28D08AD64F741210B8225F82F20 /* PBXTargetDependency */, + 61DB9D6E725B7B93AD6DAB40C7DD3858 /* PBXTargetDependency */, + 99AEE7258D42E36BD446F2F99DFF6BAE /* PBXTargetDependency */, + 0412BCAB163B89D9D1BB58A6644E740B /* PBXTargetDependency */, + 05A2BD8D21ADA4CA438A5124EDADA289 /* PBXTargetDependency */, + BFAE4B26B71341D125B870AF3F9A79EA /* PBXTargetDependency */, + 05DB60FCA04118090DB2FEE349F8B0F8 /* PBXTargetDependency */, + 64ACE56A648FE9AB0CF5EBD9C2CF7E6E /* PBXTargetDependency */, + 3F705BB9FE71952220503AAAC508E744 /* PBXTargetDependency */, + 109C09192FA715DBA9B791165C21C74F /* PBXTargetDependency */, + 6B793179F2443B70D59A6A9CB6742807 /* PBXTargetDependency */, + D826389AF7412DFFB24DDDF39A28F51C /* PBXTargetDependency */, + 14516EE54A0739713D16119058682239 /* PBXTargetDependency */, + 4A7D6698F05E92B9B42B2443CB71F6D4 /* PBXTargetDependency */, + 132B8788DCA51F7F081AEFD74B4C8B22 /* PBXTargetDependency */, + 8E60D33A14861A0249A75698C0CAEE07 /* PBXTargetDependency */, + EE65337EF6DCE59B3EBCF879FE7C3318 /* PBXTargetDependency */, + 286EEB4A28BE562D85F3946978C92917 /* PBXTargetDependency */, + EEE3E57B83D770BB76C1674088A0272D /* PBXTargetDependency */, + 3FE1BA0A058EF8C0AE4E6A31A521BC3F /* PBXTargetDependency */, + 60BE55044D032BB752A4EAD2FA94992E /* PBXTargetDependency */, + 4388AEA1DB78511EF42A230BE733A0CB /* PBXTargetDependency */, + D44138B29F64867ED9C5A632D1661CBF /* PBXTargetDependency */, + CF9EA205FD3829C649C128FA8102E14D /* PBXTargetDependency */, + 23D6091D2C983D50B290D3E26618077E /* PBXTargetDependency */, + D73F70154CD3D63957FD7DF99E30716D /* PBXTargetDependency */, + 0797AE56A7FEE49ECEB48F7924196A60 /* PBXTargetDependency */, + 37C580EA1D35CB03D967CF2E961DD352 /* PBXTargetDependency */, + 4EBE3A4E524387EE0B97FF2242651CE4 /* PBXTargetDependency */, + 5178A55A7C52338BF5762B5927171450 /* PBXTargetDependency */, + A3A7A78BFB8B692C2979AA6FF8C4AE8E /* PBXTargetDependency */, + FBBB6AFA443A55A7E37973024C4DDE49 /* PBXTargetDependency */, + 9B9559E3DD57B501922644B352EB160A /* PBXTargetDependency */, + EBF7B4FD925728F2CA96472AF2FF8323 /* PBXTargetDependency */, + F927698326C83277C0BB35717B906419 /* PBXTargetDependency */, + 1F2D25514615AD67DC103DDB4E069CCA /* PBXTargetDependency */, + 5168C49824710B0CC9C25BE230FD8BC9 /* PBXTargetDependency */, + 2D181E89E4E964AEEB7C1B9B9A3C18C4 /* PBXTargetDependency */, + BD8EFFCC37343A935A931C23C8C81273 /* PBXTargetDependency */, + 9BD234FDAA3B1AB921155C44D795D7DD /* PBXTargetDependency */, + 5DC2DD23DF7E7622B905332BFE8283A7 /* PBXTargetDependency */, + C94BC8552C4AFE51AF020F2D99C76A9E /* PBXTargetDependency */, + 52C708B2C92E14749F53E5F27F7401B8 /* PBXTargetDependency */, + D86F29A812A6CCA98380468D5B5AD635 /* PBXTargetDependency */, + 0BBC0FE1EDB9E66EE03F71915E46B889 /* PBXTargetDependency */, + 49741457D4988F2038407BBCDDCE7E12 /* PBXTargetDependency */, + D0CAB7FF52C3F71DA5DA731C4B6557E8 /* PBXTargetDependency */, + 4C4B8E77B2DE0A3A9665BFD7174A3CB8 /* PBXTargetDependency */, + 5D2407D5C0F109441F676A36B5A37359 /* PBXTargetDependency */, + 1DDBF5B2B4E0876358CC3576E050694F /* PBXTargetDependency */, + D39AA472F13D2D79D1701F7CA15B63EC /* PBXTargetDependency */, + 86F8CE1FE07D181E3A473A7EB69E10BF /* PBXTargetDependency */, + 48A2EAB7AC1010D5FFFD1259DADA1BDE /* PBXTargetDependency */, + 36DE13B2741D43FED890DCCF5D6E49FB /* PBXTargetDependency */, + 270C815EE9747A04D5AAD4D2EF454371 /* PBXTargetDependency */, + FDE6E56D906A81B719F057A8B3ABE9E2 /* PBXTargetDependency */, + 59B2B8C3469D5E39AEA0A7134B2D4341 /* PBXTargetDependency */, + FE1F3C96B0DD4DA0EE6E2F26DA6EF2E1 /* PBXTargetDependency */, + B5313F51014F1E75AF6531278196DD2F /* PBXTargetDependency */, + 0B8D6DF537B1A718A4DD1ED04E0844E4 /* PBXTargetDependency */, + 1C903BA907F2860C992DE4CCB37579DC /* PBXTargetDependency */, + 02FF92FE70DB8A74D95B77EF3C0519A6 /* PBXTargetDependency */, + 043AB61E8073503C687AE37B7367E078 /* PBXTargetDependency */, ); name = "Pods-RocketChatRN"; productName = "Pods-RocketChatRN"; @@ -23880,7 +23720,7 @@ Base, ); mainGroup = CF1408CF629C7361332E53B88F7BD30C; - productRefGroup = 9C96ADE704FBC758CF1CCA401EA0546C /* Products */; + productRefGroup = F203245C051FE88188DFE361A8D32BF5 /* Products */; projectDirPath = ""; projectRoot = ""; targets = ( @@ -23970,7 +23810,6 @@ 33B041E5D061336F88B875C8B86E45FB /* ReactNativeKeyboardInput */, 27E277B43A5F7AE00EC5051AB99AC38E /* ReactNativeKeyboardTrackingView */, A238B7CE3865946D1F214E1FE0023AAE /* rn-extensions-share */, - 64F427905796B33B78A704063422979D /* rn-fetch-blob */, 6677891AC2F7AB93E04BFF30B293A46B /* RNBootSplash */, 89F573A6B1292B3B2296B2206BFDC3D7 /* RNCAsyncStorage */, 1A0445474DA11CA659C4BCC5AB64B1BF /* RNCMaskedView */, @@ -25383,14 +25222,6 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 980D0AD6C6E1C453E95FF5BACAC40E16 /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - 80D80B24E94043C19C5416A8C59E415B /* Pods-ShareRocketChatRN-dummy.m in Sources */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; 9D0BD5BD1B668BC5C02C221A7571DB3F /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; @@ -25470,11 +25301,11 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - B8225C36827825360196616D106627AF /* Sources */ = { + B753FF0F7FE543C7C10367838E829A80 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - AF5F8D034F15CC42768898B7C84B20C3 /* Pods-RocketChatRN-dummy.m in Sources */, + C05361AEC87DA2BC06FC1934C3185319 /* Pods-ShareRocketChatRN-dummy.m in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -25965,6 +25796,14 @@ ); runOnlyForDeploymentPostprocessing = 0; }; + D4C102698F508ADFC662E5EA07CE6401 /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + B8C038984482CAE303AE8688FA8EAF38 /* Pods-RocketChatRN-dummy.m in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; D652689993700B97C6338E995798346D /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; @@ -26096,21 +25935,6 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - F77AE66808C29A6B0F912AD7F9BCFFBF /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - DB9717086AE45CE81AA97C3D12CDE9C7 /* rn-fetch-blob-dummy.m in Sources */, - 39A8B0F0C8877BB15AD04CD38C7C9161 /* RNFetchBlob.m in Sources */, - 35269B5057CDDCC7DEA2FE786C99AF9E /* RNFetchBlobConst.m in Sources */, - DAB77630ECE8FFDE64A9BEFBD0B44DFF /* RNFetchBlobFS.m in Sources */, - AAA397302AB9735FEE54E85069DF673B /* RNFetchBlobNetwork.m in Sources */, - 95B68C33D8A3CA6C685E64643173F8C2 /* RNFetchBlobProgress.m in Sources */, - 06290A0DBEBB396363D9CB31FC2FFA27 /* RNFetchBlobReqBuilder.m in Sources */, - B21ED47165915C21EF394F4CA8C6DE71 /* RNFetchBlobRequest.m in Sources */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; F95C2D609E965FCD48B94AEB81BAE745 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; @@ -26201,6 +26025,12 @@ target = 463F41A7E8B252F8AC5024DA1F4AF6DA /* React-cxxreact */; targetProxy = D5CA4506EB72978BF9DA2DDCDB29D54A /* PBXContainerItemProxy */; }; + 00945D05578F109B2E7004665001F59F /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = BugsnagReactNative; + target = 0745200E60DC80C9A0A48B7E6C1518D7 /* BugsnagReactNative */; + targetProxy = 29EA71BA90D1671607BCCFE2306AC58A /* PBXContainerItemProxy */; + }; 00BD32E2F437972466D5FEAB55C61EF8 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = UMCore; @@ -26213,17 +26043,41 @@ target = C49E7A4D59E5C8BE8DE9FB1EFB150185 /* FirebaseAnalytics */; targetProxy = 625664485E68882E020182B4B8593A0B /* PBXContainerItemProxy */; }; + 0211E81F0CEC1EF594D28390C869C261 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = GoogleUtilities; + target = 8D7F5D5DD528D21A72DC87ADA5B12E2D /* GoogleUtilities */; + targetProxy = F34ED61346AB473116886C5E70885619 /* PBXContainerItemProxy */; + }; + 02FF92FE70DB8A74D95B77EF3C0519A6 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "react-native-webview"; + target = 8D18C49071FC5370C25F5758A85BA5F6 /* react-native-webview */; + targetProxy = 5B97ECC2A192216098D835AC2BFBCD45 /* PBXContainerItemProxy */; + }; 034C008DF9FAC1C68FE0AE6803003B06 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = MMKVCore; target = AC8AE887C706A43711D115E69B9D988A /* MMKVCore */; targetProxy = 18124B833F1C5B50A22FEF874AA062F3 /* PBXContainerItemProxy */; }; - 04DE9F37C9315132F4DD90EC72082F72 /* PBXTargetDependency */ = { + 0412BCAB163B89D9D1BB58A6644E740B /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = EXFileSystem; - target = 868B90C74770285449C60DBA82181479 /* EXFileSystem */; - targetProxy = 88605ED7CD4DD4F4F3FA159EDD76A738 /* PBXContainerItemProxy */; + name = RNReanimated; + target = FF879E718031128A75E7DE54046E6219 /* RNReanimated */; + targetProxy = 189DCC07C50626C34F515689DD3567F8 /* PBXContainerItemProxy */; + }; + 043AB61E8073503C687AE37B7367E078 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "rn-extensions-share"; + target = A238B7CE3865946D1F214E1FE0023AAE /* rn-extensions-share */; + targetProxy = C79514DE98D295E0F99161AC497C438A /* PBXContainerItemProxy */; + }; + 052A991F63B4BA4CE6ADB70D412602F4 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = EXWebBrowser; + target = 9EB556EE511D43F3D5D7AAF51D8D0397 /* EXWebBrowser */; + targetProxy = 4C67A55E557311E303130364CDC684B6 /* PBXContainerItemProxy */; }; 057DBA0ECB399D66BB01D657296FECC9 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -26231,6 +26085,36 @@ target = 2644525CCE081E967809A8163D893A93 /* UMFileSystemInterface */; targetProxy = 599D1944ADF3E4137B0FD9AF2380696C /* PBXContainerItemProxy */; }; + 05A2BD8D21ADA4CA438A5124EDADA289 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = RNRootView; + target = 18B56DB36E1F066C927E49DBAE590128 /* RNRootView */; + targetProxy = 6C53188F3C65B9E6FDF670FAF916E696 /* PBXContainerItemProxy */; + }; + 05DB60FCA04118090DB2FEE349F8B0F8 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = RNVectorIcons; + target = 96150F524B245896B800F84F369A9A5A /* RNVectorIcons */; + targetProxy = 635E9C329C5A5682B1F1601A69A04F7E /* PBXContainerItemProxy */; + }; + 05E5B05B92BE3DBFF3DE24ADC07A44EF /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "Flipper-Glog"; + target = 6A9637F1BC8154F777335A6420579C05 /* Flipper-Glog */; + targetProxy = A3407E6E4E5C40F9F356EE8CCCA73DC1 /* PBXContainerItemProxy */; + }; + 06B8AC6521B16ADEB6CAD3F2F580E90E /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = FirebaseCrashlytics; + target = 526C4398D095B3704EB933DADBC30093 /* FirebaseCrashlytics */; + targetProxy = FCEBFCC68A28AABEF5A12E4DF89E6884 /* PBXContainerItemProxy */; + }; + 0797AE56A7FEE49ECEB48F7924196A60 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = ReactNativeKeyboardInput; + target = 33B041E5D061336F88B875C8B86E45FB /* ReactNativeKeyboardInput */; + targetProxy = 68B460EB3255F6C75CAE197807035EE2 /* PBXContainerItemProxy */; + }; 079C86DCFA9E1A88C241F00B2B599635 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = RCTRequired; @@ -26249,11 +26133,11 @@ target = 1BEE828C124E6416179B904A9F66D794 /* React */; targetProxy = 449D79087AC8EFD285D3D6948D363A86 /* PBXContainerItemProxy */; }; - 096737461465504503503E826D0D6385 /* PBXTargetDependency */ = { + 08C0A32FFCD71E37119405240FAFB36D /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = RNFBAnalytics; - target = BDD119F8782FABE2707D3D913EC3EDE5 /* RNFBAnalytics */; - targetProxy = 31488C1D3FD4169FDE8F28F03FA6818D /* PBXContainerItemProxy */; + name = RNDateTimePicker; + target = D760AF58E12ABBB51F84160FB02B5F39 /* RNDateTimePicker */; + targetProxy = 2A0C36D38110A034EB692C0BF173217E /* PBXContainerItemProxy */; }; 0967E9CC9266AD3C7EF88208095AFE89 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -26261,29 +26145,29 @@ target = 1BEE828C124E6416179B904A9F66D794 /* React */; targetProxy = CA39C5F52F69F8B71F02BEA427544E35 /* PBXContainerItemProxy */; }; - 09F19312C479AA3F73374675BFA2D2C1 /* PBXTargetDependency */ = { + 0971FF73C91CBB16A5A0FA93A1F44857 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = RNImageCropPicker; - target = 0D82774D2A533D3FFAE27CAB4A6E9CB2 /* RNImageCropPicker */; - targetProxy = E43F8D6863C8E89DE96E163B8698D22B /* PBXContainerItemProxy */; + name = React; + target = 1BEE828C124E6416179B904A9F66D794 /* React */; + targetProxy = 639D48C1C02BA14C3BE0FE9FEA65FEE1 /* PBXContainerItemProxy */; }; - 0A3DCE5C15A144C47E107566CB2B85C5 /* PBXTargetDependency */ = { + 0B8D6DF537B1A718A4DD1ED04E0844E4 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = UMPermissionsInterface; - target = F7845084F0CF03F54107EEF7411760AD /* UMPermissionsInterface */; - targetProxy = CCBE0668DBBFB2AB470FA9F7ACD1B2EA /* PBXContainerItemProxy */; + name = "react-native-safe-area-context"; + target = BD9A27D8398DEB3205D3F8937B0672A0 /* react-native-safe-area-context */; + targetProxy = 33188952EEB28FA82FF64B6475A4F3AB /* PBXContainerItemProxy */; }; - 0AA9BD5B46025CF6F559325661D7AFAF /* PBXTargetDependency */ = { + 0BBC0FE1EDB9E66EE03F71915E46B889 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = EXImageLoader; - target = 263266A9E29FFF0E9C8CA0E4582BFCF4 /* EXImageLoader */; - targetProxy = 4A4AEC90E6CDD106016CCBC957FBAD3C /* PBXContainerItemProxy */; + name = Yoga; + target = 2B25F90D819B9ADF2AF2D8733A890333 /* Yoga */; + targetProxy = 19004D4B8CE6FB7C39623F4A2B555D1F /* PBXContainerItemProxy */; }; - 0C12AC479E5A372F78493659A9F6EF15 /* PBXTargetDependency */ = { + 0CF0078E824FB2BB6B31E241482D85B1 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = GoogleUtilities; - target = 8D7F5D5DD528D21A72DC87ADA5B12E2D /* GoogleUtilities */; - targetProxy = 470138E7CEAB20BAB087ACA9705EA57D /* PBXContainerItemProxy */; + name = JitsiMeetSDK; + target = 5B40FBDAD0AB75D17C4760F4054BFF71 /* JitsiMeetSDK */; + targetProxy = B48227AA657EA322BE307A572F603A67 /* PBXContainerItemProxy */; }; 0D032123F4EBCE74D9FED646A18CAE69 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -26291,17 +26175,11 @@ target = FA877ADC442CB19CF61793D234C8B131 /* React-jsi */; targetProxy = 735E3AA43CA3DBC1B064B58F38C962B2 /* PBXContainerItemProxy */; }; - 0D4019F7AF1220A2C793EF0C64263FD8 /* PBXTargetDependency */ = { + 0D6678C25541AEC8DBAF901A80E2308F /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = RNCMaskedView; - target = 1A0445474DA11CA659C4BCC5AB64B1BF /* RNCMaskedView */; - targetProxy = C696719409EB5F8B1A80CA88B35DB432 /* PBXContainerItemProxy */; - }; - 0E0252A97BFF8FB2A138FE05B2797C80 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = DoubleConversion; - target = 2AB2EF542954AB1C999E03BFEF8DE806 /* DoubleConversion */; - targetProxy = 526B41979D8AB3CC9D844673F11FBF33 /* PBXContainerItemProxy */; + name = "react-native-slider"; + target = A4EF87F5681665EAE943D9B06BBB17DF /* react-native-slider */; + targetProxy = 4E7A35F3BCB25E5712FC1D8841F19039 /* PBXContainerItemProxy */; }; 0E24937F77C37DEE56AA270AB9FBB911 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -26309,11 +26187,17 @@ target = FA877ADC442CB19CF61793D234C8B131 /* React-jsi */; targetProxy = 3386A20F5DC9F446AF718DB214EB40DB /* PBXContainerItemProxy */; }; - 0F676A73B7632EA7A9D0AF12AC0359E0 /* PBXTargetDependency */ = { + 0F368C76F0AFBCDA99B94D3D53408960 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "boost-for-react-native"; - target = ED2506AE7DE35D654F61254441EA7155 /* boost-for-react-native */; - targetProxy = 3B50AC7C5DDC6E409BB383170BC07882 /* PBXContainerItemProxy */; + name = RNVectorIcons; + target = 96150F524B245896B800F84F369A9A5A /* RNVectorIcons */; + targetProxy = F0291A8DA4C8644325FE8F56141DFC15 /* PBXContainerItemProxy */; + }; + 0FA9D4F3A47E20462BA5D399422D5BE2 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = UMFileSystemInterface; + target = 2644525CCE081E967809A8163D893A93 /* UMFileSystemInterface */; + targetProxy = F1EA7B4AD5EB32636BD82F967C770CB6 /* PBXContainerItemProxy */; }; 0FDB14D9412426C06AB2B68179373C1D /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -26321,24 +26205,18 @@ target = 463F41A7E8B252F8AC5024DA1F4AF6DA /* React-cxxreact */; targetProxy = 535AC5015896B54EAC072143514C8D8A /* PBXContainerItemProxy */; }; - 0FF8153E99B4D689AA392E8E2F547D74 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "React-Core"; - target = 7ACAA9BE580DD31A5CB9D97C45D9492D /* React-Core */; - targetProxy = 3A56C2B666E4B90E21BCAC38C655944F /* PBXContainerItemProxy */; - }; - 10504B2D0FAF5B70161832E5AC595519 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = Folly; - target = A4F685BE3CAC127BDCE4E0DBBD88D191 /* Folly */; - targetProxy = 9076C72B616E94B208DDB891D8268FD8 /* PBXContainerItemProxy */; - }; 109AAD7F89F41A04284880BB80B4C074 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "Flipper-Folly"; target = B6D39E083AE0FF45BA30D7CDF6198A03 /* Flipper-Folly */; targetProxy = 9BAAC27A785084FD67CA13B8EDA42C7D /* PBXContainerItemProxy */; }; + 109C09192FA715DBA9B791165C21C74F /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "React-CoreModules"; + target = E16E206437995280D349D4B67695C894 /* React-CoreModules */; + targetProxy = D2C3998D0F4EB7B5CEC49105528C603A /* PBXContainerItemProxy */; + }; 114A0F7B83145569C2F97C37C1E5BFA3 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = FirebaseCore; @@ -26357,35 +26235,23 @@ target = 8D7F5D5DD528D21A72DC87ADA5B12E2D /* GoogleUtilities */; targetProxy = DFFBFD630CC61B0FB41AF5DEFC377BDE /* PBXContainerItemProxy */; }; - 122CE582673F2007971C51F10CD38656 /* PBXTargetDependency */ = { + 12CCD3EE95CA082225A5B756955EFCA6 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "react-native-appearance"; - target = 3FF2E78BB54ED67CA7FAD8DA2590DBEE /* react-native-appearance */; - targetProxy = C9D2FF05C5151639C62AD471334EF076 /* PBXContainerItemProxy */; + name = GoogleDataTransportCCTSupport; + target = F4F25FCAC51B51FD5F986EB939BF1F87 /* GoogleDataTransportCCTSupport */; + targetProxy = 304B1C6889806B98023FE0A037E104F2 /* PBXContainerItemProxy */; }; - 1339D4DE00F5E65D8BF7A4F1D21FA80A /* PBXTargetDependency */ = { + 132B8788DCA51F7F081AEFD74B4C8B22 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = RNReanimated; - target = FF879E718031128A75E7DE54046E6219 /* RNReanimated */; - targetProxy = B58A73DC85AD293D40714358511EE624 /* PBXContainerItemProxy */; + name = "React-RCTLinking"; + target = 6FE9147F8AAA4DE676C190F680F47AE2 /* React-RCTLinking */; + targetProxy = 6C9F3E26AFF6772B398157306315B68B /* PBXContainerItemProxy */; }; - 1357207E8323C169D1E0C98A1CBFFC2A /* PBXTargetDependency */ = { + 14516EE54A0739713D16119058682239 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "Flipper-Glog"; - target = 6A9637F1BC8154F777335A6420579C05 /* Flipper-Glog */; - targetProxy = 9034F508583D9F6FF9B2A7D5E2F4DF27 /* PBXContainerItemProxy */; - }; - 13AA384326578171422CE0C682744865 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = RNBootSplash; - target = 6677891AC2F7AB93E04BFF30B293A46B /* RNBootSplash */; - targetProxy = 81C79203E7941C605365961EA5D2CE71 /* PBXContainerItemProxy */; - }; - 143D27C1FC3FC8ED20AF39DC5C8E4209 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = GoogleAppMeasurement; - target = B53D977A951AFC38B21751B706C1DF83 /* GoogleAppMeasurement */; - targetProxy = 870DD11CB797048CDE4F277C95873C94 /* PBXContainerItemProxy */; + name = "React-RCTBlob"; + target = 95D98F901D07557EF7CA38D3F03832C5 /* React-RCTBlob */; + targetProxy = 38C3F9E0CDE60C8FE41E6AA45C779442 /* PBXContainerItemProxy */; }; 145777FF9590FE9C12FECB43C5ACC961 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -26405,6 +26271,12 @@ target = F7D033C4C128EECAA020990641FA985F /* React-jsinspector */; targetProxy = C6B0262EE0DC1586E56807A2383ABFED /* PBXContainerItemProxy */; }; + 15AA7842FF8DFB2AD4E46A3DE607B026 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = MMKVCore; + target = AC8AE887C706A43711D115E69B9D988A /* MMKVCore */; + targetProxy = 0F6B2204F8C20AC44CD62FFF2878A788 /* PBXContainerItemProxy */; + }; 17353D120557AABA6FEBE9B272C4B803 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "React-Core"; @@ -26417,24 +26289,12 @@ target = FA877ADC442CB19CF61793D234C8B131 /* React-jsi */; targetProxy = 20D015A06332AED4640AE8BC78F18710 /* PBXContainerItemProxy */; }; - 1797E36CBB9336F54B43D00FCB09AC2B /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = FirebaseCoreDiagnostics; - target = 620E05868772C10B4920DC7E324F2C87 /* FirebaseCoreDiagnostics */; - targetProxy = 403D87285AAE71BF635F9E1850AD7C4D /* PBXContainerItemProxy */; - }; 17B0305E08C7EF9ED292AA9014450AF0 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = UMCore; target = DBCB1B4965863DDD3B9DED9A0918A526 /* UMCore */; targetProxy = 9A2D94180C1D8549B209C4F116F4FC88 /* PBXContainerItemProxy */; }; - 186C24CB52A2AC3AD1106597BB53FB80 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "React-RCTText"; - target = DBD2D83E10F8B7D3F4E0E34E6A9FCFA6 /* React-RCTText */; - targetProxy = EC9FE53500BCB1756D40269A0C34FF4A /* PBXContainerItemProxy */; - }; 1896C4715B2149A5EBA2504B5379110C /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = GoogleAppMeasurement; @@ -26447,41 +26307,41 @@ target = FA877ADC442CB19CF61793D234C8B131 /* React-jsi */; targetProxy = 58945C0A8D3B5F0C45E87A28652D0430 /* PBXContainerItemProxy */; }; + 190AD84DEA6CC6D268FAB297231A3B19 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = RNImageCropPicker; + target = 0D82774D2A533D3FFAE27CAB4A6E9CB2 /* RNImageCropPicker */; + targetProxy = B7DD0CD0DA484A267B59E95C3888BC1C /* PBXContainerItemProxy */; + }; 19297402BCBD687406D317002BE87D26 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = React; target = 1BEE828C124E6416179B904A9F66D794 /* React */; targetProxy = C5792CABC007D0A7A4E11F4A976C441D /* PBXContainerItemProxy */; }; + 19C86D9B98CF003165D576210534B3F3 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = RNBootSplash; + target = 6677891AC2F7AB93E04BFF30B293A46B /* RNBootSplash */; + targetProxy = 2042AE6122CEDCCD1BEEA32C007EE3F0 /* PBXContainerItemProxy */; + }; 1A1BD4F3924CCBF334A38735C6CAD9D2 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "React-Core"; target = 7ACAA9BE580DD31A5CB9D97C45D9492D /* React-Core */; targetProxy = 3E044DBA2E61AA8C64AED9F68101D5A8 /* PBXContainerItemProxy */; }; - 1AA6DE4FB3E065FB7B30A5B6A64F7386 /* PBXTargetDependency */ = { + 1BD6A4C94B8DAF90842659ABF34946E9 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "react-native-webview"; - target = 8D18C49071FC5370C25F5758A85BA5F6 /* react-native-webview */; - targetProxy = FA13AA3252B429D6363752C78343B710 /* PBXContainerItemProxy */; + name = CocoaLibEvent; + target = D63EF582C3FFEAFBF76242E9637C6E0A /* CocoaLibEvent */; + targetProxy = B195D1D32A2F6FBD961D9139E8F3E57E /* PBXContainerItemProxy */; }; - 1B5FD8FC7B7320DA3677AB7EF70D5F9F /* PBXTargetDependency */ = { + 1C903BA907F2860C992DE4CCB37579DC /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = FBLazyVector; - target = 8CC4EAA817AA86310D1900F1DAB3580F /* FBLazyVector */; - targetProxy = 01F5F7C6F02F04A143C849817B1EAEC0 /* PBXContainerItemProxy */; - }; - 1BF4EDD1E438737D27EBC84218DEF689 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = UMBarCodeScannerInterface; - target = 49821C2B9E764AEDF2B35DFE9AA7022F /* UMBarCodeScannerInterface */; - targetProxy = D72E79F61E7E9BDBBFAE7BC0BCAF0527 /* PBXContainerItemProxy */; - }; - 1C71FF20F8C49FF8FDD297482F689D87 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = Firebase; - target = 072CEA044D2EF26F03496D5996BBF59F /* Firebase */; - targetProxy = ECA965FF42B4C8F6981E031A7A71A37A /* PBXContainerItemProxy */; + name = "react-native-slider"; + target = A4EF87F5681665EAE943D9B06BBB17DF /* react-native-slider */; + targetProxy = 56D4AFB9AEC75C1CF6DADE4A06C38E67 /* PBXContainerItemProxy */; }; 1CB90B8DB64F55B6FACD3A4C886691C4 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -26489,6 +26349,30 @@ target = ED2506AE7DE35D654F61254441EA7155 /* boost-for-react-native */; targetProxy = CA56CB8B099AFAC4ECCA73096D476AA4 /* PBXContainerItemProxy */; }; + 1CC877A23F807C8E8800E53C18B3884C /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "OpenSSL-Universal"; + target = B9ED5194E665042005069EF06C82A050 /* OpenSSL-Universal */; + targetProxy = DDA5CE18295AA24F907E4F4EF2ACB21A /* PBXContainerItemProxy */; + }; + 1D48B12C408A7165B4CEC7D1F209A78E /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = TOCropViewController; + target = F3966F664F3CFAEFAB57C40FB54D3788 /* TOCropViewController */; + targetProxy = 958F630DF7FFBBC9D0E8086AE0011CA0 /* PBXContainerItemProxy */; + }; + 1D56A4248B401B96808CCB58B636EDBC /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = GoogleDataTransport; + target = 5C0371EE948D0357B8EE0E34ABB44BF0 /* GoogleDataTransport */; + targetProxy = BBB50B4E4D638D3F839E23FB025DB8AF /* PBXContainerItemProxy */; + }; + 1DDBF5B2B4E0876358CC3576E050694F /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = nanopb; + target = D2B5E7DCCBBFB32341D857D01211A1A3 /* nanopb */; + targetProxy = 4FA32230A56C238B7CA699A1EBA770FA /* PBXContainerItemProxy */; + }; 1DF8472826EA8CB4E129A9BAD49CD435 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = Yoga; @@ -26501,23 +26385,29 @@ target = B6D39E083AE0FF45BA30D7CDF6198A03 /* Flipper-Folly */; targetProxy = A86A3721252494F286B714B8A88F95BA /* PBXContainerItemProxy */; }; - 1ED96569A167625F663C08AB04F685B5 /* PBXTargetDependency */ = { + 1F2D25514615AD67DC103DDB4E069CCA /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "react-native-document-picker"; - target = D11E74324175FE5B0E78DB046527F233 /* react-native-document-picker */; - targetProxy = 67B89DFA59221A394F419AADE64895BE /* PBXContainerItemProxy */; + name = UMCore; + target = DBCB1B4965863DDD3B9DED9A0918A526 /* UMCore */; + targetProxy = 4E6EA4CF349C8F94E598BD0A09129393 /* PBXContainerItemProxy */; }; - 1F337FB8E31611FB97EB7CAEE45590ED /* PBXTargetDependency */ = { + 212F6061C4C18B29F635A575B1DD89D9 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = ReactNativeKeyboardInput; - target = 33B041E5D061336F88B875C8B86E45FB /* ReactNativeKeyboardInput */; - targetProxy = 15120471ADC187E59B8EA4D14A82D2D4 /* PBXContainerItemProxy */; + name = "Flipper-PeerTalk"; + target = 718DB7D0A7E90B531AD577B3356C4161 /* Flipper-PeerTalk */; + targetProxy = 52A9D9B76981D3C2F43294FB71AFEA63 /* PBXContainerItemProxy */; }; - 20B77649C9D8B4F34CA52C7F21E5B488 /* PBXTargetDependency */ = { + 22280062A0F47E817B3158195E773CAF /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = libwebp; - target = 47D2E85A78C25869BB13521D8561A638 /* libwebp */; - targetProxy = AF6F38B3643EAF8422CCA8952166A344 /* PBXContainerItemProxy */; + name = "react-native-safe-area-context"; + target = BD9A27D8398DEB3205D3F8937B0672A0 /* react-native-safe-area-context */; + targetProxy = AD4B543D25F071E73D569AF215718EC0 /* PBXContainerItemProxy */; + }; + 22FEB7FC57BD1604D4E2CBD8BC16E7C0 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = UMFontInterface; + target = 014495932E402CA67C37681988047CA2 /* UMFontInterface */; + targetProxy = 80F434008A711F7EEDD5932900316656 /* PBXContainerItemProxy */; }; 234992BBB126A394443E99BEBD18A1F5 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -26525,41 +26415,41 @@ target = 1BEE828C124E6416179B904A9F66D794 /* React */; targetProxy = BCDA17519A7296DCC9E213B0E9337C93 /* PBXContainerItemProxy */; }; + 23D6091D2C983D50B290D3E26618077E /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = ReactCommon; + target = B6D5DD49633DFF0657B8C3F08EB3ABA9 /* ReactCommon */; + targetProxy = F8E61769580AA193DBEF0722A215EC66 /* PBXContainerItemProxy */; + }; 244B50F0AF3E46D55924620969A2CB74 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = nanopb; target = D2B5E7DCCBBFB32341D857D01211A1A3 /* nanopb */; targetProxy = F0595A3A8DC327024422604AADDB6501 /* PBXContainerItemProxy */; }; - 24855BCA3EFE5DE677FFA7A279FCC89A /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "React-jsinspector"; - target = F7D033C4C128EECAA020990641FA985F /* React-jsinspector */; - targetProxy = 9373EF73D46B96FF24F7CD66AA175577 /* PBXContainerItemProxy */; - }; 24E814046525044258B7154439929999 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = React; target = 1BEE828C124E6416179B904A9F66D794 /* React */; targetProxy = 0A78C568CA90DDDEBA5BDB1A9F02EBD9 /* PBXContainerItemProxy */; }; - 2551343F9073B2AE2360B9A920298719 /* PBXTargetDependency */ = { + 263D4699F9B1F1EC47EE9C9B043D4689 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = RNVectorIcons; - target = 96150F524B245896B800F84F369A9A5A /* RNVectorIcons */; - targetProxy = 0D4D30F628010BCD0383210B1E0DC928 /* PBXContainerItemProxy */; + name = EXConstants; + target = 6C1893932A69822CBE3502F2E0BCFB6D /* EXConstants */; + targetProxy = 84A20C051E6FD99354F4683AE0132503 /* PBXContainerItemProxy */; }; - 25963F58CC5401492527FAA30B588020 /* PBXTargetDependency */ = { + 266928BCFF846C0C9C2139A0DB237E78 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = React; - target = 1BEE828C124E6416179B904A9F66D794 /* React */; - targetProxy = AD7529713B9FB7B24ABDD07CEAD1A00D /* PBXContainerItemProxy */; + name = "React-cxxreact"; + target = 463F41A7E8B252F8AC5024DA1F4AF6DA /* React-cxxreact */; + targetProxy = DB30CD0BBC5DDB6EE92C59A5D169CE54 /* PBXContainerItemProxy */; }; - 2623CD381FAE0925C5EFA8D194ADDAAE /* PBXTargetDependency */ = { + 270C815EE9747A04D5AAD4D2EF454371 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "React-Core"; - target = 7ACAA9BE580DD31A5CB9D97C45D9492D /* React-Core */; - targetProxy = 7FAEC34078D0014FFAB5CFBAFC5DC47C /* PBXContainerItemProxy */; + name = "react-native-document-picker"; + target = D11E74324175FE5B0E78DB046527F233 /* react-native-document-picker */; + targetProxy = 15AFA94F85E7504FC41BC8AF6B0613A1 /* PBXContainerItemProxy */; }; 273AB73143566EEFFCA27BDF03FF3713 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -26567,29 +26457,35 @@ target = 90D0DE2F3348233618414728C35311CA /* RNFBApp */; targetProxy = 36831ECA54BDE0210098C683E1128ADE /* PBXContainerItemProxy */; }; + 286EEB4A28BE562D85F3946978C92917 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "React-RCTText"; + target = DBD2D83E10F8B7D3F4E0E34E6A9FCFA6 /* React-RCTText */; + targetProxy = 05984DE6E676A3F073A33DF0C1AF1FDF /* PBXContainerItemProxy */; + }; 28824AF26C22A77C23B814C2FE067468 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = RCTRequired; target = E7E7CE52C8C68B17224FF8C262D80ABF /* RCTRequired */; targetProxy = 89EB9AE9BC2B35DEF18D56F66D4482BC /* PBXContainerItemProxy */; }; + 29D5E7BB19BD36233EEA71CE551654A4 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = EXLocalAuthentication; + target = 869CED37B4B77AAE35DF8B6E70788BBC /* EXLocalAuthentication */; + targetProxy = 49561BC6EADCB630C313F30F96CB523B /* PBXContainerItemProxy */; + }; 29E91BECFF30EB34B1B5037266B22EBB /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = React; target = 1BEE828C124E6416179B904A9F66D794 /* React */; targetProxy = F492237E8E3448E5615C106672F7C914 /* PBXContainerItemProxy */; }; - 2ABB98B16410D5DC27D004AA81AA614A /* PBXTargetDependency */ = { + 2A28203CBA250EE8107905D114703AEA /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = ReactNativeKeyboardTrackingView; - target = 27E277B43A5F7AE00EC5051AB99AC38E /* ReactNativeKeyboardTrackingView */; - targetProxy = 0F287469A23991276050BA94E399AE38 /* PBXContainerItemProxy */; - }; - 2B0B0257074F08BCE13E70A45B82F39A /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = JitsiMeetSDK; - target = 5B40FBDAD0AB75D17C4760F4054BFF71 /* JitsiMeetSDK */; - targetProxy = A2F373E9BE916CCDC4F81B2A701B7DA0 /* PBXContainerItemProxy */; + name = "React-Core"; + target = 7ACAA9BE580DD31A5CB9D97C45D9492D /* React-Core */; + targetProxy = 81AD5AA1E11C38E7F4843BA88EA9976D /* PBXContainerItemProxy */; }; 2C3AC2CEA8022D07044F7BA29590CA5A /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -26597,6 +26493,12 @@ target = 1BEE828C124E6416179B904A9F66D794 /* React */; targetProxy = 553C9E2156C22165A3D5F8E54F781E1E /* PBXContainerItemProxy */; }; + 2D181E89E4E964AEEB7C1B9B9A3C18C4 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = UMFileSystemInterface; + target = 2644525CCE081E967809A8163D893A93 /* UMFileSystemInterface */; + targetProxy = C0395502CD40F2DACB2CD680ADF4636B /* PBXContainerItemProxy */; + }; 2D365469B1B38573CE4598BD17A86096 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = UMCore; @@ -26609,23 +26511,11 @@ target = D9245543B79C09FAC40FC8B9F291536A /* Flipper-DoubleConversion */; targetProxy = 9E534D42CEE0BAE16AFBC5CDD1AE05CE /* PBXContainerItemProxy */; }; - 2E786793EB4B28C74BFACABC488BDF4C /* PBXTargetDependency */ = { + 2F89033B42085F1C06154C6A5AFE95CF /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = RNBootSplash; - target = 6677891AC2F7AB93E04BFF30B293A46B /* RNBootSplash */; - targetProxy = 65ED8DA6C4DDA777F5189F5214DB08C6 /* PBXContainerItemProxy */; - }; - 2EA25BBF8CDAAD327AEBE61B1D24C2AA /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = YogaKit; - target = 32CA4CBD6B28983076BD93DA221AD027 /* YogaKit */; - targetProxy = F2717BB7528C97650678B11CC251CD1F /* PBXContainerItemProxy */; - }; - 2EEA6A2701EA6C4C6C6CA4AE79878F48 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "react-native-cameraroll"; - target = BA3F5E5AA483B263B69601DE2FA269CB /* react-native-cameraroll */; - targetProxy = E1C8F98CB2FD5EB8B53868CFD292CAAA /* PBXContainerItemProxy */; + name = UMTaskManagerInterface; + target = 50188AAB5FAECCA9583327DBA2B0AF2B /* UMTaskManagerInterface */; + targetProxy = CECA42D91CCCF839BD82959388FB8235 /* PBXContainerItemProxy */; }; 2FB76CCFA4349F0DC6D356B0A6C5656B /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -26633,23 +26523,11 @@ target = 7ACAA9BE580DD31A5CB9D97C45D9492D /* React-Core */; targetProxy = C53F6A668A1B81EA8D5EFA236BBDC391 /* PBXContainerItemProxy */; }; - 2FE72A32DF183A53FF3E249136214D0E /* PBXTargetDependency */ = { + 2FCBA4150DC1292FBAF34D23BFA6BE6C /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "React-cxxreact"; - target = 463F41A7E8B252F8AC5024DA1F4AF6DA /* React-cxxreact */; - targetProxy = 6F6B2F1207D9806CAF405EA0BBFF4FAC /* PBXContainerItemProxy */; - }; - 3000060183C31353FB97843F69375001 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = DoubleConversion; - target = 2AB2EF542954AB1C999E03BFEF8DE806 /* DoubleConversion */; - targetProxy = 0952F224D73C10AD091CCE30556CB93B /* PBXContainerItemProxy */; - }; - 303A329EFE63F98C76E1F88C1909DC69 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "React-Core"; - target = 7ACAA9BE580DD31A5CB9D97C45D9492D /* React-Core */; - targetProxy = F56EBC18CB64EE0482444624DFEC06A2 /* PBXContainerItemProxy */; + name = "react-native-webview"; + target = 8D18C49071FC5370C25F5758A85BA5F6 /* react-native-webview */; + targetProxy = FAC8C855DE4B137CAFFEF028DBFCAFB7 /* PBXContainerItemProxy */; }; 303B01AB45FE97B82AF39BED525EA1BB /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -26657,11 +26535,11 @@ target = 7A020DAB6F3F0BA0A6D9946E84B38B7F /* React-Core-AccessibilityResources */; targetProxy = 343C5B3B96C0727BF01188E5154FBE61 /* PBXContainerItemProxy */; }; - 308D03476E409BAB951D9F9200DEE728 /* PBXTargetDependency */ = { + 309A8EC005D0E995361377C5FEB0C6C7 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = FBReactNativeSpec; - target = C3496D0495E700CF08A90C41EA8FA4BB /* FBReactNativeSpec */; - targetProxy = B9AE5CF754F371EA8ED61D8E3A8DB330 /* PBXContainerItemProxy */; + name = "react-native-orientation-locker"; + target = 1092C13E1E1172209537C28D0C8D4D3C /* react-native-orientation-locker */; + targetProxy = 39811B5ACCD7AC636470F25E9F437714 /* PBXContainerItemProxy */; }; 30AC941FEF6A9D5EF337F6191CD5D669 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -26675,17 +26553,29 @@ target = 1FAAE067C1BFDEA17DFB657C3379AB56 /* Flipper-RSocket */; targetProxy = 286C7DA34EBE9F8A3EC10424B36A30C8 /* PBXContainerItemProxy */; }; - 325E02D6E23C05AE97A2287319CBFB0E /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "React-RCTVibration"; - target = 53D121F9F9BB0F8AC1C94A12C5A8572F /* React-RCTVibration */; - targetProxy = 08A82DD4762F44182AF578189EB14138 /* PBXContainerItemProxy */; - }; - 33552E419FDFDB4854A7BE3930F686AC /* PBXTargetDependency */ = { + 319C451B0753116CBB90415AC15E4964 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = ReactCommon; target = B6D5DD49633DFF0657B8C3F08EB3ABA9 /* ReactCommon */; - targetProxy = F6C2459C9B6C3F3D211CD139CFF446E1 /* PBXContainerItemProxy */; + targetProxy = 5743F45AA8EF96E45C212C3136C36C62 /* PBXContainerItemProxy */; + }; + 31CC2ADE0D214B571EC644581960C7FC /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "React-RCTBlob"; + target = 95D98F901D07557EF7CA38D3F03832C5 /* React-RCTBlob */; + targetProxy = ED4B3D9EC49DE6543E0FC83983D332EB /* PBXContainerItemProxy */; + }; + 3330EF804F15B0659CB464668EA77D8D /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = RCTTypeSafety; + target = D20469A9A1E5CFB26045EAEBE3F88E5E /* RCTTypeSafety */; + targetProxy = 0FCE3EA5C5BA2C4EFA38B03BDF32F58B /* PBXContainerItemProxy */; + }; + 3336EC7D82263E194C67DE118CAB1C43 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "react-native-cookies"; + target = ADC4ACC657481AD27F9936D08FF7F49A /* react-native-cookies */; + targetProxy = FF569EFFCDAE61E1768E62F2A7C871D6 /* PBXContainerItemProxy */; }; 33F5B6A58855F2016450517E03B74C4E /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -26693,35 +26583,23 @@ target = 1953860EA9853AA2BC8022B242F08512 /* SDWebImageWebPCoder */; targetProxy = D466E30F6A7C6BA97286EAE8358F3B63 /* PBXContainerItemProxy */; }; - 354D0E73417E97A5EC346FF5DAE8187D /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "Flipper-Glog"; - target = 6A9637F1BC8154F777335A6420579C05 /* Flipper-Glog */; - targetProxy = 08F25805D8C5B150DD4A0C68F961AA89 /* PBXContainerItemProxy */; - }; 35614ADF4A7B665694A0F889FE3FB55E /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = DoubleConversion; target = 2AB2EF542954AB1C999E03BFEF8DE806 /* DoubleConversion */; targetProxy = 7C0B9E22BBC11A64C90E2F48A14F8E0A /* PBXContainerItemProxy */; }; - 35A320F28708C5CB2978DBB70B3F6A61 /* PBXTargetDependency */ = { + 35CB1D154AB2FF43A8BAFFD46B3CE44E /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "React-jsiexecutor"; - target = DA0709CAAD589C6E7963495210438021 /* React-jsiexecutor */; - targetProxy = 3CDE6EBF741ECD6F8BD338F3D59C2860 /* PBXContainerItemProxy */; + name = ReactNativeART; + target = 90148E8FD1C445D7A019D504FA8CBC53 /* ReactNativeART */; + targetProxy = A7B4F357CD5D6FD653F396B5117EB714 /* PBXContainerItemProxy */; }; - 35B7FF3E55C1005FDBECD104470C82D5 /* PBXTargetDependency */ = { + 360016A712850A4F359208822E5D8807 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = UMCore; - target = DBCB1B4965863DDD3B9DED9A0918A526 /* UMCore */; - targetProxy = F8154B0D0F0F17E1E3CFC639897DD146 /* PBXContainerItemProxy */; - }; - 36202FBC81CD1FBA682E47D19BA3DF3B /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = UMAppLoader; - target = C452F579644C83E8D8E36EC24A9BBD46 /* UMAppLoader */; - targetProxy = 1DAAA56D32867009B163D8F4D90B9AF4 /* PBXContainerItemProxy */; + name = RNCAsyncStorage; + target = 89F573A6B1292B3B2296B2206BFDC3D7 /* RNCAsyncStorage */; + targetProxy = C27F0A72893CE4C5C18451525DD20397 /* PBXContainerItemProxy */; }; 36597FCB98CC1D64622E4991713E4EBA /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -26747,29 +26625,41 @@ target = 680299219D3A48D42A648AF6706275A9 /* React-RCTSettings */; targetProxy = AB5BB564F6EBF1F38CE73BBBE2C88987 /* PBXContainerItemProxy */; }; + 36DE13B2741D43FED890DCCF5D6E49FB /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "react-native-cookies"; + target = ADC4ACC657481AD27F9936D08FF7F49A /* react-native-cookies */; + targetProxy = 28A8B185A146F278A56FFCD9A702E3AA /* PBXContainerItemProxy */; + }; + 36FB63134035DBA8D1EAEB498AE4634D /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = EXVideoThumbnails; + target = 4A95B7CD1D5F80C5E8CD9CDA00D41F70 /* EXVideoThumbnails */; + targetProxy = 4B1C7D3888EE5D664BF3527EDDA609FD /* PBXContainerItemProxy */; + }; 37260BC806FE412F14EBFBD9BFE86645 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = RCTTypeSafety; target = D20469A9A1E5CFB26045EAEBE3F88E5E /* RCTTypeSafety */; targetProxy = CCC71DC98DA1BFF43521E8CF40226C64 /* PBXContainerItemProxy */; }; - 37E1D2588FE995A65FB1D22395139E6E /* PBXTargetDependency */ = { + 37B0435459486EF0D15C4C33F5F95EA5 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = RNReanimated; - target = FF879E718031128A75E7DE54046E6219 /* RNReanimated */; - targetProxy = 5AA10308010480DDC169D81C3F01B9BB /* PBXContainerItemProxy */; + name = RNDeviceInfo; + target = 807428FE76D80865C9F59F3502600E89 /* RNDeviceInfo */; + targetProxy = EB3819649F2CF2C63E55AAC0E0D36F7B /* PBXContainerItemProxy */; }; - 39813ACBE9BB183CF1B44C5723B3E3B3 /* PBXTargetDependency */ = { + 37C580EA1D35CB03D967CF2E961DD352 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = JitsiMeetSDK; - target = 5B40FBDAD0AB75D17C4760F4054BFF71 /* JitsiMeetSDK */; - targetProxy = 0C0E5D11EF771190FDC74DC37EE99089 /* PBXContainerItemProxy */; + name = ReactNativeKeyboardTrackingView; + target = 27E277B43A5F7AE00EC5051AB99AC38E /* ReactNativeKeyboardTrackingView */; + targetProxy = F897C86013C497CDC441C72F7CD6F00A /* PBXContainerItemProxy */; }; - 39BACBE858537096FABB278ED59ACB30 /* PBXTargetDependency */ = { + 398F0119A9B1A530F3858083DC593E21 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "React-callinvoker"; - target = 2681CB7EF647E61F4F9A43029C235607 /* React-callinvoker */; - targetProxy = 57DEEBFBCD0C5C94A7F17AD8BDA303E4 /* PBXContainerItemProxy */; + name = UMReactNativeAdapter; + target = 897EF6A99176326E24F51E2F2103828C /* UMReactNativeAdapter */; + targetProxy = 848CAC14B528BF5A56E06FE67F9C1778 /* PBXContainerItemProxy */; }; 3A0F3DC9CB1C41D5880D752ADD811CAB /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -26777,23 +26667,47 @@ target = FABFFA119E956A84968EE0F6E5D7EB10 /* MMKVAppExtension */; targetProxy = 407E86C85F781DAACF0C39B7C1F77209 /* PBXContainerItemProxy */; }; - 3B8F3F2C18AFE3F56E982C2D39C85C92 /* PBXTargetDependency */ = { + 3AA871C7AC2A689398E59BCA4E5A4182 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = RNVectorIcons; - target = 96150F524B245896B800F84F369A9A5A /* RNVectorIcons */; - targetProxy = 7556712C98F7DD098FFF0427831DB435 /* PBXContainerItemProxy */; + name = ReactNativeKeyboardTrackingView; + target = 27E277B43A5F7AE00EC5051AB99AC38E /* ReactNativeKeyboardTrackingView */; + targetProxy = 12FA68BEC75BB24DB4A18EB56DBBEEB5 /* PBXContainerItemProxy */; }; - 3C766E190E3ED6E6CC879DA634B5482F /* PBXTargetDependency */ = { + 3B05E7EBCFF136194C031196CE9945A8 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = EXFileSystem; - target = 868B90C74770285449C60DBA82181479 /* EXFileSystem */; - targetProxy = 8B636AF29046A1F2D78E4D3EE7989511 /* PBXContainerItemProxy */; + name = "React-CoreModules"; + target = E16E206437995280D349D4B67695C894 /* React-CoreModules */; + targetProxy = 327331659658752804AC8CE210968EFD /* PBXContainerItemProxy */; }; - 3C7D4C1A048571470CF90C4E5E596CD8 /* PBXTargetDependency */ = { + 3B20678DF56A83F553A8859607D79D15 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = FirebaseCoreDiagnostics; - target = 620E05868772C10B4920DC7E324F2C87 /* FirebaseCoreDiagnostics */; - targetProxy = D21329A3FB37B67FE4A6299B450E2730 /* PBXContainerItemProxy */; + name = GoogleDataTransportCCTSupport; + target = F4F25FCAC51B51FD5F986EB939BF1F87 /* GoogleDataTransportCCTSupport */; + targetProxy = 55CCE51B65FB7B60808B5C5566E7FDDD /* PBXContainerItemProxy */; + }; + 3BE635513BCA992F1B11B7104106B1BF /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = EXKeepAwake; + target = 0CF4D9052577C85B6B8C4E957332626B /* EXKeepAwake */; + targetProxy = B199BE47947B11FE2450D3528200B6DD /* PBXContainerItemProxy */; + }; + 3C6DBF7BCA9DCB814598F8E67B05E000 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = GoogleAppMeasurement; + target = B53D977A951AFC38B21751B706C1DF83 /* GoogleAppMeasurement */; + targetProxy = 3358883A7C545FBAA9F7120B0E17B496 /* PBXContainerItemProxy */; + }; + 3CD73A1C5A6FDBF1196FEB581BEDA835 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = EXAV; + target = 13D7009C3736FB694854D88BAD4742B6 /* EXAV */; + targetProxy = 4C80F9467495FC84CC0B549968093B79 /* PBXContainerItemProxy */; + }; + 3D30B9F354177CB1603706D30B7E3274 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = EXImageLoader; + target = 263266A9E29FFF0E9C8CA0E4582BFCF4 /* EXImageLoader */; + targetProxy = C47B76B40FA14E4599E2E5BC561F8DB7 /* PBXContainerItemProxy */; }; 3DC4BA9D7F984F02E2BD3AD2EF39F504 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -26801,23 +26715,23 @@ target = D0EFEFB685D97280256C559792236873 /* glog */; targetProxy = 4929FE3F288D63DE59928493EE949592 /* PBXContainerItemProxy */; }; - 3E516659092C3C58F3EB6F5ACAA79D3D /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = UMSensorsInterface; - target = 2038C6F97563AAD6162C284B3EDD5B3B /* UMSensorsInterface */; - targetProxy = 8197E0D8D5DD8D284DA5E9647EBA2389 /* PBXContainerItemProxy */; - }; 3EC7B7DE30BB33E3632E1C2142B98A9A /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = GoogleUtilities; target = 8D7F5D5DD528D21A72DC87ADA5B12E2D /* GoogleUtilities */; targetProxy = 80FA676E34C136BD514521000FACCDC2 /* PBXContainerItemProxy */; }; - 404057CBE673ABE2DE954AEA9B296458 /* PBXTargetDependency */ = { + 3F705BB9FE71952220503AAAC508E744 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = Yoga; - target = 2B25F90D819B9ADF2AF2D8733A890333 /* Yoga */; - targetProxy = 49B7635A50C65BB18A0954221A1EF8EE /* PBXContainerItemProxy */; + name = "React-Core"; + target = 7ACAA9BE580DD31A5CB9D97C45D9492D /* React-Core */; + targetProxy = 986FEFEF45C6DCB415822FB26188B117 /* PBXContainerItemProxy */; + }; + 3FE1BA0A058EF8C0AE4E6A31A521BC3F /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "React-callinvoker"; + target = 2681CB7EF647E61F4F9A43029C235607 /* React-callinvoker */; + targetProxy = 37EC2B7F7529367468A8D43F97C08B4E /* PBXContainerItemProxy */; }; 40CF33F53D7B76AB1A7D1B47986EA231 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -26837,17 +26751,29 @@ target = 1BEE828C124E6416179B904A9F66D794 /* React */; targetProxy = 5DCA67E832A9675BB0A0994ED38A5284 /* PBXContainerItemProxy */; }; + 41FCA2B4C30D5C48B844412AC5BC4A26 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = RNGestureHandler; + target = B9E8F4CA2A4A8599389FEB665A9B96FF /* RNGestureHandler */; + targetProxy = E7DAFBDEF1DCA5752EEDB5017421FC51 /* PBXContainerItemProxy */; + }; 41FF68034D509FCE39317463A46EE39D /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = React; target = 1BEE828C124E6416179B904A9F66D794 /* React */; targetProxy = B40AA08577F30A00FD2A25A08341964A /* PBXContainerItemProxy */; }; - 422A450798FB334D709101F34A7C2204 /* PBXTargetDependency */ = { + 4388AEA1DB78511EF42A230BE733A0CB /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "React-jsi"; + target = FA877ADC442CB19CF61793D234C8B131 /* React-jsi */; + targetProxy = 59B57C83FA339944205200B28C0AFA5E /* PBXContainerItemProxy */; + }; + 43AB990FBDF4D87FC95DF65144749152 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = RNFBCrashlytics; target = E3573FB7AF659C42B699003C73722241 /* RNFBCrashlytics */; - targetProxy = 34547D0A56C9383C89332A1674D38CEB /* PBXContainerItemProxy */; + targetProxy = E1125BF3A241A7EB805E20B5470539E3 /* PBXContainerItemProxy */; }; 446CF701720C6ADEDADD5362CDBF6A20 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -26855,23 +26781,17 @@ target = D20469A9A1E5CFB26045EAEBE3F88E5E /* RCTTypeSafety */; targetProxy = 2AEBE4AB92FD40BE88FF7AA27EDB8876 /* PBXContainerItemProxy */; }; - 44B783531E4C08A01EAA3B33A82B649E /* PBXTargetDependency */ = { + 45B18580B1516ACF90D5858ED4B3ADEB /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = EXAV; - target = 13D7009C3736FB694854D88BAD4742B6 /* EXAV */; - targetProxy = E0DF18865EE7C7CE2840B33D3039ADB9 /* PBXContainerItemProxy */; + name = UMCameraInterface; + target = 0A915EE9D35CA5636731F8763E774951 /* UMCameraInterface */; + targetProxy = 3DB1FF54ABA808D82CD51EA2CA1EB645 /* PBXContainerItemProxy */; }; - 4654C9E56298F175D95AC145CC734CB5 /* PBXTargetDependency */ = { + 46390951DFE422E27DF227AADE23CBCB /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "react-native-jitsi-meet"; - target = D39AB631E8050865DE01F6D5678797D2 /* react-native-jitsi-meet */; - targetProxy = 15260BC1B6E26DA77110C9DF4777C21A /* PBXContainerItemProxy */; - }; - 46C42744DDD2F571E2B9958ED504CA6F /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = RNFBApp; - target = 90D0DE2F3348233618414728C35311CA /* RNFBApp */; - targetProxy = 399797907E32469038FB616E6C02FFE2 /* PBXContainerItemProxy */; + name = "React-jsiexecutor"; + target = DA0709CAAD589C6E7963495210438021 /* React-jsiexecutor */; + targetProxy = B83D77664CF2EE8B2A541A19F312706E /* PBXContainerItemProxy */; }; 4740A9CECBAC206E21B5C739F4B25FED /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -26879,17 +26799,17 @@ target = 651511D7DA7F07F9FC9AA40A2E86270D /* React-RCTNetwork */; targetProxy = FDE949C946FC4658F2DE21F4C568B19A /* PBXContainerItemProxy */; }; - 4901FEB8F56429CC198027869BD91B97 /* PBXTargetDependency */ = { + 48A2EAB7AC1010D5FFFD1259DADA1BDE /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = GoogleDataTransportCCTSupport; - target = F4F25FCAC51B51FD5F986EB939BF1F87 /* GoogleDataTransportCCTSupport */; - targetProxy = F8BCA8351356969B0EF95D36D2ABCBD9 /* PBXContainerItemProxy */; + name = "react-native-cameraroll"; + target = BA3F5E5AA483B263B69601DE2FA269CB /* react-native-cameraroll */; + targetProxy = FCD1FFF264504B9CC69DDB60FE4EE3DD /* PBXContainerItemProxy */; }; - 49644F2979CEA2E1540B008B8F2F6D04 /* PBXTargetDependency */ = { + 49741457D4988F2038407BBCDDCE7E12 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = EXLocalAuthentication; - target = 869CED37B4B77AAE35DF8B6E70788BBC /* EXLocalAuthentication */; - targetProxy = 9568D82C9A65E0A7EB4E486EB9A61359 /* PBXContainerItemProxy */; + name = YogaKit; + target = 32CA4CBD6B28983076BD93DA221AD027 /* YogaKit */; + targetProxy = FC28DB2664A7D9161CFB5FB08FC0E4B2 /* PBXContainerItemProxy */; }; 49AC31079F8A8A1CB4A6E1E09B034C7F /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -26903,11 +26823,11 @@ target = 1BEE828C124E6416179B904A9F66D794 /* React */; targetProxy = 2539C386890D7883A108FF4E3829524A /* PBXContainerItemProxy */; }; - 49B880CAD8604E80F8C7C9447E055311 /* PBXTargetDependency */ = { + 4A7D6698F05E92B9B42B2443CB71F6D4 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "react-native-appearance"; - target = 3FF2E78BB54ED67CA7FAD8DA2590DBEE /* react-native-appearance */; - targetProxy = A4E93EEF24D1C58BDB57A84D06EF6728 /* PBXContainerItemProxy */; + name = "React-RCTImage"; + target = 4F265533AAB7C8985856EC78A33164BB /* React-RCTImage */; + targetProxy = 7DDEC539A177EFDAE6F834EB2DE1FA56 /* PBXContainerItemProxy */; }; 4AE7F0903CAB3EEC559660BF180EDA72 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -26915,11 +26835,11 @@ target = D2B5E7DCCBBFB32341D857D01211A1A3 /* nanopb */; targetProxy = E82ACE99C02A32E8354DEFDEE354DAB2 /* PBXContainerItemProxy */; }; - 4C503DD05787CF7FD842C81076C7121B /* PBXTargetDependency */ = { + 4C4B8E77B2DE0A3A9665BFD7174A3CB8 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "react-native-mmkv-storage"; - target = 74DAFD196634D10887C9A4E7BA19A5E4 /* react-native-mmkv-storage */; - targetProxy = 0F0A09BA8B6C05637754A9E77DD061A6 /* PBXContainerItemProxy */; + name = glog; + target = D0EFEFB685D97280256C559792236873 /* glog */; + targetProxy = BF3D7998E0F6D8FBD6103624F347405F /* PBXContainerItemProxy */; }; 4CA0E425446EC88158C4A8B0D077B5FD /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -26951,17 +26871,11 @@ target = 1BEE828C124E6416179B904A9F66D794 /* React */; targetProxy = 2AB4E316E2673B76ACA537189D619922 /* PBXContainerItemProxy */; }; - 4EC3091EE929C19E8896D7A2EA563F23 /* PBXTargetDependency */ = { + 4EBE3A4E524387EE0B97FF2242651CE4 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "React-RCTBlob"; - target = 95D98F901D07557EF7CA38D3F03832C5 /* React-RCTBlob */; - targetProxy = 93BB0CA2AF6AEC194DFF674DAF5CA31D /* PBXContainerItemProxy */; - }; - 4FB12381357EBA046DC7CC20A413725E /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = UMAppLoader; - target = C452F579644C83E8D8E36EC24A9BBD46 /* UMAppLoader */; - targetProxy = 2B3176C374F5C2F9A1DA8C817FF32AF2 /* PBXContainerItemProxy */; + name = SDWebImage; + target = 3847153A6E5EEFB86565BA840768F429 /* SDWebImage */; + targetProxy = 1FE36D0ED51B5F4E373D3C0D934D5DF4 /* PBXContainerItemProxy */; }; 505B4B56752648ED437C22E53D0AFE0A /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -26969,47 +26883,41 @@ target = 7ACAA9BE580DD31A5CB9D97C45D9492D /* React-Core */; targetProxy = 3574B1BC6D98AB920A3CF341F2BCD349 /* PBXContainerItemProxy */; }; - 50729A0FD9037F4036868B85823DFCEC /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "react-native-notifications"; - target = CA400829100F0628EC209FBB08347D42 /* react-native-notifications */; - targetProxy = 7C075DE06CAF5414973463DCBA08A9F9 /* PBXContainerItemProxy */; - }; - 50828A6395FB1CFB9F530A448770E1DA /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "OpenSSL-Universal"; - target = B9ED5194E665042005069EF06C82A050 /* OpenSSL-Universal */; - targetProxy = 8A95A9BC4AF69857178041F5461671D8 /* PBXContainerItemProxy */; - }; - 50B9A884D00C3400F4A5F07D6211CB94 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = UMPermissionsInterface; - target = F7845084F0CF03F54107EEF7411760AD /* UMPermissionsInterface */; - targetProxy = F4BF459131F18B2AC247C24158AE88A4 /* PBXContainerItemProxy */; - }; 51426FE9C0540AEE85464E6161AD8A3C /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = Yoga; target = 2B25F90D819B9ADF2AF2D8733A890333 /* Yoga */; targetProxy = B4D453DE31A865E38FCE41018FF05012 /* PBXContainerItemProxy */; }; - 51A04BA77142973897736FC18BD1C371 /* PBXTargetDependency */ = { + 5168C49824710B0CC9C25BE230FD8BC9 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = SDWebImage; - target = 3847153A6E5EEFB86565BA840768F429 /* SDWebImage */; - targetProxy = 7800F09BF976D735911B0AB40947A5B4 /* PBXContainerItemProxy */; + name = UMFaceDetectorInterface; + target = 2AD4F40E67E1874A0816F6B34289EB41 /* UMFaceDetectorInterface */; + targetProxy = D1741C8AFB17FD4B53439EBBED966861 /* PBXContainerItemProxy */; }; - 530494A4FB2C6A8E55BC52C966C6DC46 /* PBXTargetDependency */ = { + 5178A55A7C52338BF5762B5927171450 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = EXWebBrowser; - target = 9EB556EE511D43F3D5D7AAF51D8D0397 /* EXWebBrowser */; - targetProxy = 20A5E64EBB816538F63A6EF241E993FA /* PBXContainerItemProxy */; + name = SDWebImageWebPCoder; + target = 1953860EA9853AA2BC8022B242F08512 /* SDWebImageWebPCoder */; + targetProxy = 423490F2197112FAFD1C82AA877D3E89 /* PBXContainerItemProxy */; }; - 538A21DB7067A011D0AE9E313B3901D1 /* PBXTargetDependency */ = { + 5259748B72A059362685838A7B16F664 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "react-native-jitsi-meet"; - target = D39AB631E8050865DE01F6D5678797D2 /* react-native-jitsi-meet */; - targetProxy = 62639906936EF38BCDC9EF967235DFE0 /* PBXContainerItemProxy */; + name = SDWebImageWebPCoder; + target = 1953860EA9853AA2BC8022B242F08512 /* SDWebImageWebPCoder */; + targetProxy = A0843ECBB8CD69120A277AD1B1CDF01A /* PBXContainerItemProxy */; + }; + 529E6A59EE70052C7870539B7EAC6554 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = EXAppleAuthentication; + target = 28A005E00FB77DDB2543047A07ED99A5 /* EXAppleAuthentication */; + targetProxy = 4D5B4B4F496B5D499340E1FD210EDC7B /* PBXContainerItemProxy */; + }; + 52C708B2C92E14749F53E5F27F7401B8 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = UMSensorsInterface; + target = 2038C6F97563AAD6162C284B3EDD5B3B /* UMSensorsInterface */; + targetProxy = 822A0DC5F59222E4E31F2313EBD1DAC6 /* PBXContainerItemProxy */; }; 539216AA2FCFC2CA2772CF3C2CA1A180 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -27017,11 +26925,11 @@ target = D20469A9A1E5CFB26045EAEBE3F88E5E /* RCTTypeSafety */; targetProxy = 5475A7D10F548823793DA8859F6773CE /* PBXContainerItemProxy */; }; - 54589953D03DD99F1FC1430E8FB77331 /* PBXTargetDependency */ = { + 54AE6A9E9609564E2AF290BEA03BB662 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = UMSensorsInterface; - target = 2038C6F97563AAD6162C284B3EDD5B3B /* UMSensorsInterface */; - targetProxy = 60B30FD9301A97122C6B9F9F1AF2DC4E /* PBXContainerItemProxy */; + name = RNFBApp; + target = 90D0DE2F3348233618414728C35311CA /* RNFBApp */; + targetProxy = FC566E06125B7DBA5F472C6DB1347681 /* PBXContainerItemProxy */; }; 54C14464C7947693AA0C225FE456BE54 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -27029,47 +26937,35 @@ target = 8D7F5D5DD528D21A72DC87ADA5B12E2D /* GoogleUtilities */; targetProxy = DE604F7BA4EB8EE44B59E4E857CA4D7C /* PBXContainerItemProxy */; }; + 54E66BECE2746C302A95002ABD3E1551 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = GoogleDataTransport; + target = 5C0371EE948D0357B8EE0E34ABB44BF0 /* GoogleDataTransport */; + targetProxy = A853F8602D85981D01C3C0238ABE72F6 /* PBXContainerItemProxy */; + }; 554B6B4FE94DF8917E3AFCBC6B596BF1 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "React-RCTVibration"; target = 53D121F9F9BB0F8AC1C94A12C5A8572F /* React-RCTVibration */; targetProxy = BF2A9ED197DF746C24A0C6CB8CF649D6 /* PBXContainerItemProxy */; }; - 5601D049FDC20AE07C2DB4A6E7C7A436 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = EXPermissions; - target = 0A72FB88825FDC7D301C9DD1F8F96824 /* EXPermissions */; - targetProxy = 47C54555D2F5B34078D26D3DF0107418 /* PBXContainerItemProxy */; - }; 56B47897F97C79438D6512C76671C277 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = glog; target = D0EFEFB685D97280256C559792236873 /* glog */; targetProxy = 4117C1D772FF72CEB7856965D78C23AD /* PBXContainerItemProxy */; }; - 570EC5A2754F37636B66EA4E76155746 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = RNFBApp; - target = 90D0DE2F3348233618414728C35311CA /* RNFBApp */; - targetProxy = 5A2CFA42B4693CF6FE9200F6951B50BB /* PBXContainerItemProxy */; - }; - 574731599DF5D986135DD05C910C2071 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = RCTRequired; - target = E7E7CE52C8C68B17224FF8C262D80ABF /* RCTRequired */; - targetProxy = 2E4F96E81B0FC3D6A54B9B7EC388705E /* PBXContainerItemProxy */; - }; 57D76DD84C0E257A7AC31F2CBE1F3A00 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = GoogleUtilities; target = 8D7F5D5DD528D21A72DC87ADA5B12E2D /* GoogleUtilities */; targetProxy = 0737629FABAD4284C6231D677429F1A7 /* PBXContainerItemProxy */; }; - 58B8B2FBFF2665AF431E31256A1877E1 /* PBXTargetDependency */ = { + 586D1BCA5E3281AE24CDDADA840D5747 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = EXHaptics; - target = 409F3A0DB395F53FFB6AB30E5CD8ACD1 /* EXHaptics */; - targetProxy = 8077927E31C01EF89F7ABB62547873FF /* PBXContainerItemProxy */; + name = EXAppleAuthentication; + target = 28A005E00FB77DDB2543047A07ED99A5 /* EXAppleAuthentication */; + targetProxy = 7A50AD7BE7295FC60D773B51B78170B1 /* PBXContainerItemProxy */; }; 58EB016622ABE5A31A364D8F7F8E67EB /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -27077,17 +26973,29 @@ target = 97C4DE84FA3CC4EC06AA6D8C249949B7 /* UMImageLoaderInterface */; targetProxy = 36984564ED77D3FA35292387EE92F363 /* PBXContainerItemProxy */; }; + 5931FFABCCA2D63080F8DBFF7853749D /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "React-jsi"; + target = FA877ADC442CB19CF61793D234C8B131 /* React-jsi */; + targetProxy = E70A5297D3DDB9D892777CFAA2EDE16E /* PBXContainerItemProxy */; + }; 593EED89BEA0A6FAB5FB78DAF42A92C3 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = React; target = 1BEE828C124E6416179B904A9F66D794 /* React */; targetProxy = 592671C6C3F74111AF89BE688E45B730 /* PBXContainerItemProxy */; }; - 5A0C39175ACF949659660263E363DA39 /* PBXTargetDependency */ = { + 59B2B8C3469D5E39AEA0A7134B2D4341 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "React-RCTBlob"; - target = 95D98F901D07557EF7CA38D3F03832C5 /* React-RCTBlob */; - targetProxy = 7723DD25534A61313C280084D2519194 /* PBXContainerItemProxy */; + name = "react-native-mmkv-storage"; + target = 74DAFD196634D10887C9A4E7BA19A5E4 /* react-native-mmkv-storage */; + targetProxy = 24494216E4D02ADE208EF8D9C22232A5 /* PBXContainerItemProxy */; + }; + 5A2927236F51FBB5980C1470C510BBD4 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = RNFBAnalytics; + target = BDD119F8782FABE2707D3D913EC3EDE5 /* RNFBAnalytics */; + targetProxy = E61FB21A2C821C82E9ABBCCAC3FCF78A /* PBXContainerItemProxy */; }; 5B8E682CA4C0FF7278103001BA32A52F /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -27095,29 +27003,23 @@ target = A4F685BE3CAC127BDCE4E0DBBD88D191 /* Folly */; targetProxy = C6B9A2DF20D9C7D3844C5462F790CD21 /* PBXContainerItemProxy */; }; - 5BD29DFF171891D370533484AACB7D65 /* PBXTargetDependency */ = { + 5C58D0E2BCE4A16F75639E2446FC1729 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "rn-extensions-share"; - target = A238B7CE3865946D1F214E1FE0023AAE /* rn-extensions-share */; - targetProxy = E69C296627F5F80625C985DD92E566FE /* PBXContainerItemProxy */; + name = RNRootView; + target = 18B56DB36E1F066C927E49DBAE590128 /* RNRootView */; + targetProxy = FDA9375D53948B27A5B4B432F20A53C4 /* PBXContainerItemProxy */; }; - 5C950266C235720247E759737AB73DD2 /* PBXTargetDependency */ = { + 5D2407D5C0F109441F676A36B5A37359 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "React-RCTNetwork"; - target = 651511D7DA7F07F9FC9AA40A2E86270D /* React-RCTNetwork */; - targetProxy = 864244C5E2B6B5B570A8C84066F8BC14 /* PBXContainerItemProxy */; + name = libwebp; + target = 47D2E85A78C25869BB13521D8561A638 /* libwebp */; + targetProxy = 100394E41F587574C44D267F568EF184 /* PBXContainerItemProxy */; }; - 5D1CB8E0CDBF6C6D74589D41485CA44F /* PBXTargetDependency */ = { + 5DC2DD23DF7E7622B905332BFE8283A7 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = RNLocalize; - target = B51433D546A38C51AA781F192E8836F8 /* RNLocalize */; - targetProxy = 1F554564FFE8094747DBBD929F8168E9 /* PBXContainerItemProxy */; - }; - 5D9EEB9868D21A18D4FAD14995489FB8 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = UMReactNativeAdapter; - target = 897EF6A99176326E24F51E2F2103828C /* UMReactNativeAdapter */; - targetProxy = 9319D41494CA189C63F106011C84CF6C /* PBXContainerItemProxy */; + name = UMPermissionsInterface; + target = F7845084F0CF03F54107EEF7411760AD /* UMPermissionsInterface */; + targetProxy = E67B530BE2C46F0C73C25C49A22C7C87 /* PBXContainerItemProxy */; }; 5DE5DFEFFA172A9FB5F603C604B7708D /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -27125,18 +27027,6 @@ target = B6D5DD49633DFF0657B8C3F08EB3ABA9 /* ReactCommon */; targetProxy = AE8FB3B2C3A8E8F3BDFCE223A4C9943E /* PBXContainerItemProxy */; }; - 5E5B236A96845D4AC716DBC8875BB190 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "React-jsi"; - target = FA877ADC442CB19CF61793D234C8B131 /* React-jsi */; - targetProxy = 3023F3DB7EB2EC0FB03E424D23834964 /* PBXContainerItemProxy */; - }; - 5F25BD9DAE0128E47231C43E9C2DC34F /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = SDWebImageWebPCoder; - target = 1953860EA9853AA2BC8022B242F08512 /* SDWebImageWebPCoder */; - targetProxy = A40B48DCA7DDBD4BF84F5AA14043F823 /* PBXContainerItemProxy */; - }; 5FD0C4F9D97C88847DCFF62E51086938 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = React; @@ -27149,29 +27039,53 @@ target = 2681CB7EF647E61F4F9A43029C235607 /* React-callinvoker */; targetProxy = 88D72330C8DCE3BF856F9C1ED31ACD43 /* PBXContainerItemProxy */; }; - 60E2183033A9C3CA218AD216BFBB35DA /* PBXTargetDependency */ = { + 60593840CEC67D79445F57AAF514C4BB /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = glog; - target = D0EFEFB685D97280256C559792236873 /* glog */; - targetProxy = D2F805B8B051FE86210844FF0C2603C3 /* PBXContainerItemProxy */; + name = RNConfigReader; + target = DC0D417AC8ABB7AA10C20A5E0F065812 /* RNConfigReader */; + targetProxy = C18FA81A2E7F0D7CED9F9E02912AD363 /* PBXContainerItemProxy */; }; - 613886CD7EBB70BFDB398A88A8500556 /* PBXTargetDependency */ = { + 60BE55044D032BB752A4EAD2FA94992E /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = RNGestureHandler; - target = B9E8F4CA2A4A8599389FEB665A9B96FF /* RNGestureHandler */; - targetProxy = DCAD8B7C1DB94EAD7456F090A0F1519C /* PBXContainerItemProxy */; + name = "React-cxxreact"; + target = 463F41A7E8B252F8AC5024DA1F4AF6DA /* React-cxxreact */; + targetProxy = 2CC3FDC7D41C1CDD3E84DD5A4F92AD1A /* PBXContainerItemProxy */; }; - 61BEE753502F0746952AAEC285E8C634 /* PBXTargetDependency */ = { + 60F3EA36224F3FC95986413493623F8A /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "rn-fetch-blob"; - target = 64F427905796B33B78A704063422979D /* rn-fetch-blob */; - targetProxy = E9499D3C727B97B3F5A75BE0EBDB981A /* PBXContainerItemProxy */; + name = FirebaseInstallations; + target = 87803597EB3F20FC46472B85392EC4FD /* FirebaseInstallations */; + targetProxy = 849C5DBDF59A33E98027D5CBEDD34120 /* PBXContainerItemProxy */; }; - 61FAF14317491DACEC802EEC7831D93D /* PBXTargetDependency */ = { + 61135C2CF47FDAC31B6FC9E181583EED /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "React-RCTLinking"; - target = 6FE9147F8AAA4DE676C190F680F47AE2 /* React-RCTLinking */; - targetProxy = CEDABBEB37F44C5DA4A262C2AF98CB64 /* PBXContainerItemProxy */; + name = "rn-extensions-share"; + target = A238B7CE3865946D1F214E1FE0023AAE /* rn-extensions-share */; + targetProxy = 1E37E8D3AB9CAD06D42B37A6E3A3B0F9 /* PBXContainerItemProxy */; + }; + 612A77BBC70E38149CB2621EE0AF8A96 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = EXHaptics; + target = 409F3A0DB395F53FFB6AB30E5CD8ACD1 /* EXHaptics */; + targetProxy = 5CB40BE9CC1FDD3FB28D2C8B3A457357 /* PBXContainerItemProxy */; + }; + 612DDB1E65CD8353BD8C38C1B1E2CD7D /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "React-RCTActionSheet"; + target = 11989A5E568B3B69655EE0C13DCDA3F9 /* React-RCTActionSheet */; + targetProxy = 590B50FF98ABB8C3B330F2DF61D564B1 /* PBXContainerItemProxy */; + }; + 61DB9D6E725B7B93AD6DAB40C7DD3858 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = RNImageCropPicker; + target = 0D82774D2A533D3FFAE27CAB4A6E9CB2 /* RNImageCropPicker */; + targetProxy = B1A8D4E61DE68D60745E23A991B6CE11 /* PBXContainerItemProxy */; + }; + 625C21AC2058C51DFE9CE628143709D8 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = CocoaAsyncSocket; + target = 6083682834ABE0AE7BD1CBF06CADD036 /* CocoaAsyncSocket */; + targetProxy = 6AD9650C32F3F1377032400EFDDEEC6D /* PBXContainerItemProxy */; }; 6298DCDD90053BAFC6CEAE719941BCD0 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -27179,17 +27093,17 @@ target = DBCB1B4965863DDD3B9DED9A0918A526 /* UMCore */; targetProxy = 51BB17051B552032F9321C6BC8CFAD27 /* PBXContainerItemProxy */; }; - 62B0221FC91A6BB6716081D2FD161421 /* PBXTargetDependency */ = { + 62B41C678966870F5B15D96E625597A6 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "Flipper-DoubleConversion"; + target = D9245543B79C09FAC40FC8B9F291536A /* Flipper-DoubleConversion */; + targetProxy = 66CE193504C1672BFB2C2DE4227C0E2C /* PBXContainerItemProxy */; + }; + 6309387FC50EFA4305C209376D922A28 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = EXLocalAuthentication; target = 869CED37B4B77AAE35DF8B6E70788BBC /* EXLocalAuthentication */; - targetProxy = 8D4B6BB47D5DD009C0A3260967DB4EDE /* PBXContainerItemProxy */; - }; - 6376FDD0B17A95025B8F31EAC8A58795 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "React-jsi"; - target = FA877ADC442CB19CF61793D234C8B131 /* React-jsi */; - targetProxy = 9AEC03F5DF4B88581F22BC49DE03F7B9 /* PBXContainerItemProxy */; + targetProxy = BBB63A34AA3F68806974DBA15D63A11B /* PBXContainerItemProxy */; }; 63D7F15F3F84CE1D7897DA20F6CE6F43 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -27197,17 +27111,11 @@ target = 4F265533AAB7C8985856EC78A33164BB /* React-RCTImage */; targetProxy = DA27884C3FBE229B7E04DBFA9F4A58F9 /* PBXContainerItemProxy */; }; - 640CE6D4E9BDBF9259446546770C7C61 /* PBXTargetDependency */ = { + 6450033F31549A9888038D503A7678E2 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = UMImageLoaderInterface; - target = 97C4DE84FA3CC4EC06AA6D8C249949B7 /* UMImageLoaderInterface */; - targetProxy = BB9BEAC6B1FA07781BAA7BEAA32322C0 /* PBXContainerItemProxy */; - }; - 643707AE3B5377FA13A292600619CF92 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = Folly; - target = A4F685BE3CAC127BDCE4E0DBBD88D191 /* Folly */; - targetProxy = 21A9A3D7E7AE8C468D07BCB1E7B24CC5 /* PBXContainerItemProxy */; + name = UMFaceDetectorInterface; + target = 2AD4F40E67E1874A0816F6B34289EB41 /* UMFaceDetectorInterface */; + targetProxy = 6B0DB2D4901EFAD0A54DAB070C099E55 /* PBXContainerItemProxy */; }; 6451B8973D840A0A374086225070784F /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -27215,17 +27123,11 @@ target = F7845084F0CF03F54107EEF7411760AD /* UMPermissionsInterface */; targetProxy = 72AEF3DC8768694E58AE665D174CE14F /* PBXContainerItemProxy */; }; - 6451C9E6CA7820FDE1EBAC13E5874615 /* PBXTargetDependency */ = { + 64A4CD18A5463A92A3F0F888096C14F2 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "Flipper-PeerTalk"; - target = 718DB7D0A7E90B531AD577B3356C4161 /* Flipper-PeerTalk */; - targetProxy = 22349DE3618B5AE204E71B8D0AC0DE1C /* PBXContainerItemProxy */; - }; - 6484E6720ADF66AF9560B30EB7A390A1 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = RNConfigReader; - target = DC0D417AC8ABB7AA10C20A5E0F065812 /* RNConfigReader */; - targetProxy = DD96CCC95C2B7340BD82E7ADFA0FC4F8 /* PBXContainerItemProxy */; + name = FirebaseCore; + target = 4402AFF83DBDC4DD07E198685FDC2DF2 /* FirebaseCore */; + targetProxy = 23FC33D3C00824A044C779FC6EBE7E64 /* PBXContainerItemProxy */; }; 64A874D42FE0579EBB177F7A34B67270 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -27233,17 +27135,23 @@ target = 4402AFF83DBDC4DD07E198685FDC2DF2 /* FirebaseCore */; targetProxy = 9F5AAB77687C10A1E9FBDF8FB2EAB507 /* PBXContainerItemProxy */; }; + 64ACE56A648FE9AB0CF5EBD9C2CF7E6E /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = React; + target = 1BEE828C124E6416179B904A9F66D794 /* React */; + targetProxy = E1C0E6B985378CD592FF24260BCBDE86 /* PBXContainerItemProxy */; + }; 659CE20F5F8A4FDAFAC33456B26AD2CC /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = SDWebImage; target = 3847153A6E5EEFB86565BA840768F429 /* SDWebImage */; targetProxy = 925B94B36D67D27AF51664D1645EC2F7 /* PBXContainerItemProxy */; }; - 65BCDCCF7FF0998145528A6C95CA8C6D /* PBXTargetDependency */ = { + 65DBEE59103E71F0C51FF0DED1406C9B /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = glog; - target = D0EFEFB685D97280256C559792236873 /* glog */; - targetProxy = 128EEB4453BAEC2733570788B4AF21C9 /* PBXContainerItemProxy */; + name = "React-RCTAnimation"; + target = 938CCE22F6C4094B3FB6CF1478579E4B /* React-RCTAnimation */; + targetProxy = 7E398DE5EF7B0CBEF5D422372B07B9A7 /* PBXContainerItemProxy */; }; 65F9F3E04EE3016D1347EC50F730C953 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -27257,36 +27165,24 @@ target = 014495932E402CA67C37681988047CA2 /* UMFontInterface */; targetProxy = B6677D6DAB197C7676A97F624A434B26 /* PBXContainerItemProxy */; }; - 6683754252A0192CA2DFB36FCA013936 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = EXImageLoader; - target = 263266A9E29FFF0E9C8CA0E4582BFCF4 /* EXImageLoader */; - targetProxy = 74A4C7B9761C9EA22AFA61504187AE88 /* PBXContainerItemProxy */; - }; 676B6FEE2373CB5B7A4F4AADE445A472 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = Folly; target = A4F685BE3CAC127BDCE4E0DBBD88D191 /* Folly */; targetProxy = 9C9D41F92515D7D2C0205D966777748B /* PBXContainerItemProxy */; }; + 676EF293B35AB781499AD84F91CC110C /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = KeyCommands; + target = 7F591BD8674041AAAA4F37DC699B5518 /* KeyCommands */; + targetProxy = 3AE95151F5E2FDE67C90FBA5EE51DA71 /* PBXContainerItemProxy */; + }; 687C7745B0C9D33906DF6031B3231B04 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = React; target = 1BEE828C124E6416179B904A9F66D794 /* React */; targetProxy = CAD9ABFE1D8247DFCA7C5B5DC70C1C94 /* PBXContainerItemProxy */; }; - 68D25E506AB692AC990986B5A30C5224 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = RNImageCropPicker; - target = 0D82774D2A533D3FFAE27CAB4A6E9CB2 /* RNImageCropPicker */; - targetProxy = 0AE44B11678348277B6D82B5666F431B /* PBXContainerItemProxy */; - }; - 68DE9E0D2A6B1E6B84F6086FB65D8609 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "React-CoreModules"; - target = E16E206437995280D349D4B67695C894 /* React-CoreModules */; - targetProxy = 099969C9E93FA925F2EEA8736E1F28C3 /* PBXContainerItemProxy */; - }; 68F3EB5F95FAC1BD87C5FC1DE066D8DC /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "React-RCTImage"; @@ -27311,17 +27207,23 @@ target = C3496D0495E700CF08A90C41EA8FA4BB /* FBReactNativeSpec */; targetProxy = F4D41B9BAEE1E0D644EE2DC36C19D572 /* PBXContainerItemProxy */; }; + 6A2BD75FDB06F47DBF16571011D11A2B /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = FlipperKit; + target = 982644B5B647690B2E4F5B3F54EB5717 /* FlipperKit */; + targetProxy = A3A3BB2C14C04AB599D69120C2C59DD4 /* PBXContainerItemProxy */; + }; 6A2D04DE006D5DBB5ACFEA11E9505BE8 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = GoogleUtilities; target = 8D7F5D5DD528D21A72DC87ADA5B12E2D /* GoogleUtilities */; targetProxy = 5CCEC9141DF983E90BD5AE3E05C21A7B /* PBXContainerItemProxy */; }; - 6A72CF7DF35E2A5DCA25882A564EC911 /* PBXTargetDependency */ = { + 6A38443A80ACD8168AB682CC581C88AC /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = ReactNativeART; - target = 90148E8FD1C445D7A019D504FA8CBC53 /* ReactNativeART */; - targetProxy = 6BD86AA5AB57BF84E754C50CE5E8964C /* PBXContainerItemProxy */; + name = EXAV; + target = 13D7009C3736FB694854D88BAD4742B6 /* EXAV */; + targetProxy = A6AC5329A34BBF9450CAA9EEAE870CC9 /* PBXContainerItemProxy */; }; 6ABD1C96CFAB9999A3CB6EBB60E7009A /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -27329,11 +27231,47 @@ target = 1BEE828C124E6416179B904A9F66D794 /* React */; targetProxy = 1B427832E8B2D091A989E92604487DCF /* PBXContainerItemProxy */; }; - 6CBD444D6EFF03AB667AD55FA993099D /* PBXTargetDependency */ = { + 6B793179F2443B70D59A6A9CB6742807 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = TOCropViewController; - target = F3966F664F3CFAEFAB57C40FB54D3788 /* TOCropViewController */; - targetProxy = EC0B7672EEE8620DF47F2E21D5EBE10F /* PBXContainerItemProxy */; + name = "React-RCTActionSheet"; + target = 11989A5E568B3B69655EE0C13DCDA3F9 /* React-RCTActionSheet */; + targetProxy = D779DF0BD4FD5DA49119280682215B94 /* PBXContainerItemProxy */; + }; + 6CD67D4E3B8E61339F2AA21EBCA24EC1 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = PromisesObjC; + target = 2BBF7206D7FAC92C82A042A99C4A98F8 /* PromisesObjC */; + targetProxy = 2FE99D15EED78A649A813D11E08CD1DC /* PBXContainerItemProxy */; + }; + 6D5ECB09CB3FEB125D030F84F2DC6111 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = RNReanimated; + target = FF879E718031128A75E7DE54046E6219 /* RNReanimated */; + targetProxy = F877DFF68485F14473F5A412106A1294 /* PBXContainerItemProxy */; + }; + 6D88BFA69F55803C7D6548EEB0497E42 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = DoubleConversion; + target = 2AB2EF542954AB1C999E03BFEF8DE806 /* DoubleConversion */; + targetProxy = 3FC52892FF95348E5B937E0F6BEAAE28 /* PBXContainerItemProxy */; + }; + 6DAD7CC28A43833829E646F333D8C0F6 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "react-native-document-picker"; + target = D11E74324175FE5B0E78DB046527F233 /* react-native-document-picker */; + targetProxy = 29D59A75E56FFB538CF6CA3D44A8C550 /* PBXContainerItemProxy */; + }; + 6E04808701F0E6A2BD5BE6BBF517BCA3 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = RCTRequired; + target = E7E7CE52C8C68B17224FF8C262D80ABF /* RCTRequired */; + targetProxy = 9E86078DE97BE5BB6166065D0187FD2A /* PBXContainerItemProxy */; + }; + 6E34E020E6F5454C09BFF51DF305FE79 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = RNFBCrashlytics; + target = E3573FB7AF659C42B699003C73722241 /* RNFBCrashlytics */; + targetProxy = B2E7F9B3EC78E18144CC2A9D1CE7155A /* PBXContainerItemProxy */; }; 6F06AF75AD0361C1DB54FE0842FB5A20 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -27347,6 +27285,12 @@ target = A4F685BE3CAC127BDCE4E0DBBD88D191 /* Folly */; targetProxy = 4995181EAD88B0A6D8B25B4EBD7059C0 /* PBXContainerItemProxy */; }; + 6FF2C78FD95C71DE70BE963FE8C157F6 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "react-native-appearance"; + target = 3FF2E78BB54ED67CA7FAD8DA2590DBEE /* react-native-appearance */; + targetProxy = 24A82AD923F7977B827C04058DC98DD4 /* PBXContainerItemProxy */; + }; 7074AB64938AFE46C3B792B65FC0AE8B /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "Flipper-Folly"; @@ -27359,6 +27303,12 @@ target = 938CCE22F6C4094B3FB6CF1478579E4B /* React-RCTAnimation */; targetProxy = EC27520D8FECFB4E9412291A616D4F07 /* PBXContainerItemProxy */; }; + 72A69241458C1544B71ADE0218F30AC0 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = FirebaseAnalytics; + target = C49E7A4D59E5C8BE8DE9FB1EFB150185 /* FirebaseAnalytics */; + targetProxy = 66FFF6A9AC007E4EBD3392F8AF6957CF /* PBXContainerItemProxy */; + }; 72B059030824F625CF2C5364414F81B4 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = React; @@ -27377,23 +27327,17 @@ target = C3496D0495E700CF08A90C41EA8FA4BB /* FBReactNativeSpec */; targetProxy = 4CE3F4431AF21200231C83FD68EE5344 /* PBXContainerItemProxy */; }; - 73721FC1C14034A5AF3F0C0A1CC3903E /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "Flipper-DoubleConversion"; - target = D9245543B79C09FAC40FC8B9F291536A /* Flipper-DoubleConversion */; - targetProxy = 9194AF57E6537EB866800A58DC2D1CC5 /* PBXContainerItemProxy */; - }; 73AFA9C3EE158345C0AC8853E23D4C99 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = FirebaseInstallations; target = 87803597EB3F20FC46472B85392EC4FD /* FirebaseInstallations */; targetProxy = 5199EEE170B03E6034771D7D410366D6 /* PBXContainerItemProxy */; }; - 7461DD0363F8F5220704C21BA9F3FE7E /* PBXTargetDependency */ = { + 73DE4F7687CBEC1BBFDEE6A90E6CCC30 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "Flipper-DoubleConversion"; - target = D9245543B79C09FAC40FC8B9F291536A /* Flipper-DoubleConversion */; - targetProxy = 689A10223BAA9BD30C6CE5AE9E05F406 /* PBXContainerItemProxy */; + name = EXWebBrowser; + target = 9EB556EE511D43F3D5D7AAF51D8D0397 /* EXWebBrowser */; + targetProxy = 9B6304EAF01A2146F369F8E38346A41C /* PBXContainerItemProxy */; }; 74F58832B6EE859ACAC8329A38B23E43 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -27401,12 +27345,6 @@ target = 2644525CCE081E967809A8163D893A93 /* UMFileSystemInterface */; targetProxy = 02884AC05BC4B650EBE6E310CA3916B7 /* PBXContainerItemProxy */; }; - 75E307DEDF03DF4A1E93A3E3E256BE5F /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "React-cxxreact"; - target = 463F41A7E8B252F8AC5024DA1F4AF6DA /* React-cxxreact */; - targetProxy = 7A9FE54492E830C23AC41F90A8890A98 /* PBXContainerItemProxy */; - }; 763950692B96D0F454EC298D94E2D48F /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "boost-for-react-native"; @@ -27419,41 +27357,29 @@ target = 6D979AB5FDA2E858850D9903776A30B3 /* RNImageCropPicker-QBImagePicker */; targetProxy = 2EEDA8CE75E6D0DC62A3B88EAA06ADD9 /* PBXContainerItemProxy */; }; - 76F63007CF9D2F11857C4C428D1B8395 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = FlipperKit; - target = 982644B5B647690B2E4F5B3F54EB5717 /* FlipperKit */; - targetProxy = 300ADC8C9753BFA8AE1F776005FC80FF /* PBXContainerItemProxy */; - }; 775E00DE8A8597FE01362B4644F5392C /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "React-RCTNetwork"; target = 651511D7DA7F07F9FC9AA40A2E86270D /* React-RCTNetwork */; targetProxy = C33E9472C09D771A868C935EADD927BB /* PBXContainerItemProxy */; }; - 77B3A5CE2F74A44F2F7CDDDEB4B95F61 /* PBXTargetDependency */ = { + 779EEF991729187B107C582D0E2BB47F /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = FirebaseInstallations; - target = 87803597EB3F20FC46472B85392EC4FD /* FirebaseInstallations */; - targetProxy = 49CFEE179D55C7E33574ADF87BF5875B /* PBXContainerItemProxy */; + name = RNFBAnalytics; + target = BDD119F8782FABE2707D3D913EC3EDE5 /* RNFBAnalytics */; + targetProxy = 7AF81B19D03DC7BFBFDC841B9D66C6D0 /* PBXContainerItemProxy */; }; - 79FE6D9E0E801EA5DAA68A89C2A391FF /* PBXTargetDependency */ = { + 783DF28D08AD64F741210B8225F82F20 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "react-native-slider"; - target = A4EF87F5681665EAE943D9B06BBB17DF /* react-native-slider */; - targetProxy = 20DA3D40EBE3814E7F078F7986BBBC48 /* PBXContainerItemProxy */; + name = RNGestureHandler; + target = B9E8F4CA2A4A8599389FEB665A9B96FF /* RNGestureHandler */; + targetProxy = 06B2DFF9E38F9B03402EC227F2548A95 /* PBXContainerItemProxy */; }; - 7A109E2464B67447DA639668A7EC7B80 /* PBXTargetDependency */ = { + 7BE17514BD74A3A2E514163AB872A3FF /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "react-native-orientation-locker"; - target = 1092C13E1E1172209537C28D0C8D4D3C /* react-native-orientation-locker */; - targetProxy = 74F5410359CE4416E203EB2B23BE5E4F /* PBXContainerItemProxy */; - }; - 7B25C363825B78F548C58A30E313B2DA /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "React-callinvoker"; - target = 2681CB7EF647E61F4F9A43029C235607 /* React-callinvoker */; - targetProxy = FC2E9CCCA8551E569F3C65F9D2845793 /* PBXContainerItemProxy */; + name = FBLazyVector; + target = 8CC4EAA817AA86310D1900F1DAB3580F /* FBLazyVector */; + targetProxy = F6FE96A1811F0515CB6BE990C27A4683 /* PBXContainerItemProxy */; }; 7CDFAC77C9B2E078C4776F6D7DA9941C /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -27461,11 +27387,17 @@ target = 9668C19AA6D8EA320F83875FA286855A /* UMConstantsInterface */; targetProxy = 81B20C29D8DE0AECFEEA7BFC3548E125 /* PBXContainerItemProxy */; }; - 7D2925AEC983016F577EFA774403D770 /* PBXTargetDependency */ = { + 7D334239C28E2E630E89F0EFAFFB373A /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = FirebaseCore; - target = 4402AFF83DBDC4DD07E198685FDC2DF2 /* FirebaseCore */; - targetProxy = 790B29BB6CAA36C2A22440FA382F7267 /* PBXContainerItemProxy */; + name = CocoaLibEvent; + target = D63EF582C3FFEAFBF76242E9637C6E0A /* CocoaLibEvent */; + targetProxy = 992B5E2D68BBA676A5B1126FEB71502F /* PBXContainerItemProxy */; + }; + 7D720B7DF9ADADD423AA19028B3DD993 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = UMPermissionsInterface; + target = F7845084F0CF03F54107EEF7411760AD /* UMPermissionsInterface */; + targetProxy = 90F4929FC3457E05184C1C7A1DFBD23B /* PBXContainerItemProxy */; }; 7DCE32D473F4F7CC77F17725D7C937C1 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -27473,41 +27405,11 @@ target = 1BEE828C124E6416179B904A9F66D794 /* React */; targetProxy = 882BEE9E8FCF0A6BD665F01DFBEF822B /* PBXContainerItemProxy */; }; - 7DFEA3E3DBBA1DCD408EBC1342CB44EC /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "react-native-slider"; - target = A4EF87F5681665EAE943D9B06BBB17DF /* react-native-slider */; - targetProxy = D9C9A931B83779CBA7DCF6838A60126D /* PBXContainerItemProxy */; - }; - 7E28B8744807C9EBB77134B6A01588ED /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = UMCore; - target = DBCB1B4965863DDD3B9DED9A0918A526 /* UMCore */; - targetProxy = 1780DC19A6FDAECCB7C4F3E5B8C8A9AE /* PBXContainerItemProxy */; - }; - 7E61A6A52610287BA1AC419E6105B5F8 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = ReactNativeKeyboardInput; - target = 33B041E5D061336F88B875C8B86E45FB /* ReactNativeKeyboardInput */; - targetProxy = 053CBA4A033207F937660B9FAA1F787B /* PBXContainerItemProxy */; - }; - 7EBC07ABDBB08BE5E11E29C379D02B2E /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "react-native-mmkv-storage"; - target = 74DAFD196634D10887C9A4E7BA19A5E4 /* react-native-mmkv-storage */; - targetProxy = 15123C46531DEBAFECCCD37A68518535 /* PBXContainerItemProxy */; - }; - 7F424239BBC9870DAA6E021383BBCACA /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = GoogleDataTransportCCTSupport; - target = F4F25FCAC51B51FD5F986EB939BF1F87 /* GoogleDataTransportCCTSupport */; - targetProxy = 66BC8BDD65D904B0C8F402B91E10D846 /* PBXContainerItemProxy */; - }; - 7FB53382378CE4705D88EABCE6B8CCED /* PBXTargetDependency */ = { + 7E95C873E3E56A010F58BCBD4A1E3833 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = MMKVCore; target = AC8AE887C706A43711D115E69B9D988A /* MMKVCore */; - targetProxy = 6864D85F409B8AF9B3CC17A57AAE3E27 /* PBXContainerItemProxy */; + targetProxy = C28EBF1FFC70BB88DBBEFA0E147FFD13 /* PBXContainerItemProxy */; }; 80236FEF3AC6840FE5ABC8D1FF8D3235 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -27515,30 +27417,12 @@ target = C3496D0495E700CF08A90C41EA8FA4BB /* FBReactNativeSpec */; targetProxy = C9548D5EC1772128ADFB40684079BE57 /* PBXContainerItemProxy */; }; - 80658BFF3F49B8FA65473361C32E56D6 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "React-RCTSettings"; - target = 680299219D3A48D42A648AF6706275A9 /* React-RCTSettings */; - targetProxy = F8ACE3707A35ECE1DDDA6A49FFF5095F /* PBXContainerItemProxy */; - }; 819BAF10584B377A2216A0F89DF68CEA /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "React-Core"; target = 7ACAA9BE580DD31A5CB9D97C45D9492D /* React-Core */; targetProxy = 256A3233D39C474C08913C7F1FE396E2 /* PBXContainerItemProxy */; }; - 81D5D0BFCC0FB03316CF4A435D4567D6 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "rn-fetch-blob"; - target = 64F427905796B33B78A704063422979D /* rn-fetch-blob */; - targetProxy = 014631622F227A6D87B0D598C9D2C7BE /* PBXContainerItemProxy */; - }; - 81D89D91F5E3E024C47F62FD83338490 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = ReactCommon; - target = B6D5DD49633DFF0657B8C3F08EB3ABA9 /* ReactCommon */; - targetProxy = 64CCC0537E5A09CF5ACD9529A77E40A5 /* PBXContainerItemProxy */; - }; 8247388091D0881AAFB46349846F8C4A /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = PromisesObjC; @@ -27569,77 +27453,65 @@ target = 2644525CCE081E967809A8163D893A93 /* UMFileSystemInterface */; targetProxy = 6295B26D9349A23F0AF1DE7C6AD8A1B3 /* PBXContainerItemProxy */; }; + 86F8CE1FE07D181E3A473A7EB69E10BF /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "react-native-background-timer"; + target = 6514D69CB93B41626AE1A05581F97B07 /* react-native-background-timer */; + targetProxy = 5BD6A1F317DFB0136DB449B3A3D8633A /* PBXContainerItemProxy */; + }; + 8760B43160C7D9A3EAB2586A15A25B8F /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = Yoga; + target = 2B25F90D819B9ADF2AF2D8733A890333 /* Yoga */; + targetProxy = 1D5F34C602ACB909D42488AE4BE353C2 /* PBXContainerItemProxy */; + }; + 8774EACE46841D04C42BEA6CB13F9387 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = UMAppLoader; + target = C452F579644C83E8D8E36EC24A9BBD46 /* UMAppLoader */; + targetProxy = E55B2CD111C6E7602519BE1E0D7C528B /* PBXContainerItemProxy */; + }; 8828AB8AB11A43640DCCBA23B0DB865D /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "React-RCTBlob"; target = 95D98F901D07557EF7CA38D3F03832C5 /* React-RCTBlob */; targetProxy = 43F8A05471207C4A2D06B4F455E0DF06 /* PBXContainerItemProxy */; }; - 89088862EB4CB9E6F4C8D7289EAB2E6C /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "Flipper-RSocket"; - target = 1FAAE067C1BFDEA17DFB657C3379AB56 /* Flipper-RSocket */; - targetProxy = A3DD6C33315A46471FBE713775EC18E3 /* PBXContainerItemProxy */; - }; - 897B3C8820164B38192C22DF624B6981 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = KeyCommands; - target = 7F591BD8674041AAAA4F37DC699B5518 /* KeyCommands */; - targetProxy = A43995CBC5D30B8CB870E8210E2E6015 /* PBXContainerItemProxy */; - }; - 89924C53EB11CB39FA3DA44FA9BD4F80 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = GoogleAppMeasurement; - target = B53D977A951AFC38B21751B706C1DF83 /* GoogleAppMeasurement */; - targetProxy = 0ED929DBE6F405943A8D2040EC34600C /* PBXContainerItemProxy */; - }; 8A6A487A4B1F40EA6984510C2CECC877 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = FirebaseCore; target = 4402AFF83DBDC4DD07E198685FDC2DF2 /* FirebaseCore */; targetProxy = E5559543E1D84272633B986661EE620B /* PBXContainerItemProxy */; }; - 8A6BF46942EA2FA060E6BA49BDBB0B9B /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = MMKVCore; - target = AC8AE887C706A43711D115E69B9D988A /* MMKVCore */; - targetProxy = 25E4DAD6C0D27028A06A4BE93C513BD2 /* PBXContainerItemProxy */; - }; 8B4D9312BC7FC674B6DE7FD3EF238C9A /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = nanopb; target = D2B5E7DCCBBFB32341D857D01211A1A3 /* nanopb */; targetProxy = 04B87863563E406809DFE81CD3C9622A /* PBXContainerItemProxy */; }; + 8B8C3A6AF86E6829A6D0577E868F5C48 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = MMKV; + target = 91A6826828CB9FCD0169A7547E8A79EA /* MMKV */; + targetProxy = 88ABFB27D0120C2C684DC0B8DB05B869 /* PBXContainerItemProxy */; + }; 8BB8E79C6B4BE9C72FBF21D4C8068513 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = FirebaseCrashlytics; target = 526C4398D095B3704EB933DADBC30093 /* FirebaseCrashlytics */; targetProxy = 1A59764CA4DE4DAF5D504EF530F5428C /* PBXContainerItemProxy */; }; - 8BD3D4ABFA1A0B019082936D31BDBF0C /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = UMTaskManagerInterface; - target = 50188AAB5FAECCA9583327DBA2B0AF2B /* UMTaskManagerInterface */; - targetProxy = 79F05FADCEAB382BCD7E3897BFEE8654 /* PBXContainerItemProxy */; - }; - 8C218336AAA5C8C363CBF6D59EA8A924 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = UMReactNativeAdapter; - target = 897EF6A99176326E24F51E2F2103828C /* UMReactNativeAdapter */; - targetProxy = 450DA2BBB66038E196229F60D5B353B8 /* PBXContainerItemProxy */; - }; 8C2C39B447D9E5A37E4BB148B376BD4C /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "React-Core"; target = 7ACAA9BE580DD31A5CB9D97C45D9492D /* React-Core */; targetProxy = DB5002EE87028969B0D9E669730AF039 /* PBXContainerItemProxy */; }; - 8C443A3E2F419ED1D22612237AB2C555 /* PBXTargetDependency */ = { + 8C5F62A687552B7DC2017A21A23CF14F /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "Flipper-Folly"; - target = B6D39E083AE0FF45BA30D7CDF6198A03 /* Flipper-Folly */; - targetProxy = 1750AB13A34CA42DC71D1092115E57AE /* PBXContainerItemProxy */; + name = RNFastImage; + target = 0BB7745637E0758DEA373456197090C6 /* RNFastImage */; + targetProxy = 8EA36E2709F8BFDDF7D090BC2C257E61 /* PBXContainerItemProxy */; }; 8CAFD8FA063C017FD3A24FF383AAA470 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -27647,11 +27519,29 @@ target = A4F685BE3CAC127BDCE4E0DBBD88D191 /* Folly */; targetProxy = B325F9553222FA53980F926E839937E2 /* PBXContainerItemProxy */; }; - 8DB83FBBE52D983FBC18B9EF0DE23113 /* PBXTargetDependency */ = { + 8DF1AD242E350AF22E08130CDFAA6B32 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = CocoaAsyncSocket; - target = 6083682834ABE0AE7BD1CBF06CADD036 /* CocoaAsyncSocket */; - targetProxy = F8A0D282E39D390F981958223346C018 /* PBXContainerItemProxy */; + name = "Flipper-PeerTalk"; + target = 718DB7D0A7E90B531AD577B3356C4161 /* Flipper-PeerTalk */; + targetProxy = DEDAE25B915D5D267B38EECD355E558F /* PBXContainerItemProxy */; + }; + 8DF99E40DC9641A677B8DBB6CDF1FDD7 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = FirebaseCrashlytics; + target = 526C4398D095B3704EB933DADBC30093 /* FirebaseCrashlytics */; + targetProxy = 75F4AA9988F0BA24B036B3E24EFF7CAC /* PBXContainerItemProxy */; + }; + 8E60D33A14861A0249A75698C0CAEE07 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "React-RCTNetwork"; + target = 651511D7DA7F07F9FC9AA40A2E86270D /* React-RCTNetwork */; + targetProxy = AAB98120C35A684C60CBF2EC5DF4B124 /* PBXContainerItemProxy */; + }; + 8EAEA48BC8099F8F78560FFBA8D26F30 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = glog; + target = D0EFEFB685D97280256C559792236873 /* glog */; + targetProxy = 4FEAB1BDA5B01A0A7514D9CC2EC72876 /* PBXContainerItemProxy */; }; 8ECF751306D004497D4359F4521C4D47 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -27659,6 +27549,12 @@ target = 91A6826828CB9FCD0169A7547E8A79EA /* MMKV */; targetProxy = 3B55969C388D341FB93F6072DA04150C /* PBXContainerItemProxy */; }; + 8F9458FF340A279508CB1AABFC4AEE68 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "react-native-mmkv-storage"; + target = 74DAFD196634D10887C9A4E7BA19A5E4 /* react-native-mmkv-storage */; + targetProxy = 1C257445202E0003B7F961F5431E4AA8 /* PBXContainerItemProxy */; + }; 9013A0482FB9B15D0A32499D01A68C65 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "boost-for-react-native"; @@ -27671,41 +27567,41 @@ target = 8CC4EAA817AA86310D1900F1DAB3580F /* FBLazyVector */; targetProxy = 4CAFA9778CDD44DF406CDBD2D4E93969 /* PBXContainerItemProxy */; }; - 92076B603161DE38DDE9FDE9820B9CAF /* PBXTargetDependency */ = { + 912AC58814F9A1E6A6C2461CCD6AEBA9 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = RNDateTimePicker; - target = D760AF58E12ABBB51F84160FB02B5F39 /* RNDateTimePicker */; - targetProxy = 8FC5FD35FB57F455A4EDB1E39A19295C /* PBXContainerItemProxy */; + name = UMConstantsInterface; + target = 9668C19AA6D8EA320F83875FA286855A /* UMConstantsInterface */; + targetProxy = E6F306934E0CD1CDC545C4A7C2877017 /* PBXContainerItemProxy */; }; - 939DA11931E4068E9CC5AC407934A0F5 /* PBXTargetDependency */ = { + 91CB85991B15E156A2938F4F7ACDDE06 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = React; - target = 1BEE828C124E6416179B904A9F66D794 /* React */; - targetProxy = 86B7120016BA7DCE1A0D63EEF7F3F26C /* PBXContainerItemProxy */; + name = libwebp; + target = 47D2E85A78C25869BB13521D8561A638 /* libwebp */; + targetProxy = 932CA5A3BB57738BD81E40BA4FFC3BF0 /* PBXContainerItemProxy */; }; - 93C0CA7E66B4C295A25ADAEFA88FA60F /* PBXTargetDependency */ = { + 922669370E048661FC5FB522468751AE /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "React-RCTImage"; - target = 4F265533AAB7C8985856EC78A33164BB /* React-RCTImage */; - targetProxy = C8AE47212130A7DD948D9AF9BF9060A8 /* PBXContainerItemProxy */; + name = "React-callinvoker"; + target = 2681CB7EF647E61F4F9A43029C235607 /* React-callinvoker */; + targetProxy = 4DE32D39E2EAEFEB97ED125A0D4209BA /* PBXContainerItemProxy */; }; - 9432457523D5B76C0A2DA678B1E75D59 /* PBXTargetDependency */ = { + 92622ECB0588698BBDA2B4937C039E7D /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = RNCAsyncStorage; - target = 89F573A6B1292B3B2296B2206BFDC3D7 /* RNCAsyncStorage */; - targetProxy = F6A5DB87AF0C01932A85897A5411EB7E /* PBXContainerItemProxy */; + name = RCTRequired; + target = E7E7CE52C8C68B17224FF8C262D80ABF /* RCTRequired */; + targetProxy = A19E586210DAA5DFB45258DEBF75E2D6 /* PBXContainerItemProxy */; }; - 9662B86C35F43AFE88F3CF763A5694F2 /* PBXTargetDependency */ = { + 946D4DDB9B2BED148931D27A8171C9C4 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "react-native-safe-area-context"; - target = BD9A27D8398DEB3205D3F8937B0672A0 /* react-native-safe-area-context */; - targetProxy = BFA0BD96FBDA31D6B7CFCD20069D69D1 /* PBXContainerItemProxy */; + name = PromisesObjC; + target = 2BBF7206D7FAC92C82A042A99C4A98F8 /* PromisesObjC */; + targetProxy = 2EBE64EFFA9566A7AA37AB486A3E8D21 /* PBXContainerItemProxy */; }; - 966C1AB8E418F0F862F3B0590A5CCA60 /* PBXTargetDependency */ = { + 9512A74657D9D72A45F33EB5E7386DD0 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = UMImageLoaderInterface; - target = 97C4DE84FA3CC4EC06AA6D8C249949B7 /* UMImageLoaderInterface */; - targetProxy = D7C7A7AC44FDBC34E0FB68067263CA53 /* PBXContainerItemProxy */; + name = RNCMaskedView; + target = 1A0445474DA11CA659C4BCC5AB64B1BF /* RNCMaskedView */; + targetProxy = F28DAC7572E96E5DA606E2D56CCAA448 /* PBXContainerItemProxy */; }; 96DA387B98978C2974700F14ACFDEBCE /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -27713,11 +27609,17 @@ target = DBCB1B4965863DDD3B9DED9A0918A526 /* UMCore */; targetProxy = 8075D3C81C368FF63B92A7E7DC84BF6B /* PBXContainerItemProxy */; }; - 9747CEDB474CD74D3BC35BCD06D39971 /* PBXTargetDependency */ = { + 97120B7E10294BC1826B9790F861CE5F /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "react-native-cookies"; - target = ADC4ACC657481AD27F9936D08FF7F49A /* react-native-cookies */; - targetProxy = 9EDF538C1A2C0382470B3FA10D982282 /* PBXContainerItemProxy */; + name = FBReactNativeSpec; + target = C3496D0495E700CF08A90C41EA8FA4BB /* FBReactNativeSpec */; + targetProxy = 72C17454E6A9984B6C1C99F65E51BD75 /* PBXContainerItemProxy */; + }; + 97F6047328760976A9AB53BD3D1265BB /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "React-RCTLinking"; + target = 6FE9147F8AAA4DE676C190F680F47AE2 /* React-RCTLinking */; + targetProxy = 0BB7224F9B411319353FAAB4511016F2 /* PBXContainerItemProxy */; }; 98CAF57D4AE1A05752E57EC99DA909D4 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -27743,53 +27645,41 @@ target = DBCB1B4965863DDD3B9DED9A0918A526 /* UMCore */; targetProxy = D62C017428E93B98F00E023C43EC1EE8 /* PBXContainerItemProxy */; }; - 999EA8BEF8CAEF8A21125717120879E1 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = FBLazyVector; - target = 8CC4EAA817AA86310D1900F1DAB3580F /* FBLazyVector */; - targetProxy = C32340CAC5F1C51EA0C1471082555F25 /* PBXContainerItemProxy */; - }; 99AB96AF26C01CEB248731CCEE7D6F46 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "React-Core"; target = 7ACAA9BE580DD31A5CB9D97C45D9492D /* React-Core */; targetProxy = 49F50ECEA44D3E4F8BB4ABF723720AB8 /* PBXContainerItemProxy */; }; + 99AEE7258D42E36BD446F2F99DFF6BAE /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = RNLocalize; + target = B51433D546A38C51AA781F192E8836F8 /* RNLocalize */; + targetProxy = F81157FF60AC569683821FF69B3FE9C6 /* PBXContainerItemProxy */; + }; 9A3CC81587399B5DD349F3B88D45A176 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = UMCore; target = DBCB1B4965863DDD3B9DED9A0918A526 /* UMCore */; targetProxy = 0053ED9B78FA78A3C6C3F5BE362C5CF1 /* PBXContainerItemProxy */; }; - 9A604A7CB403A3C3A619D452BFCFF99B /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = SDWebImageWebPCoder; - target = 1953860EA9853AA2BC8022B242F08512 /* SDWebImageWebPCoder */; - targetProxy = E3BE5F2E3C5CBA4D36DC2AF9928A47FD /* PBXContainerItemProxy */; - }; - 9A7E406D738AA7D593F3CB83E5CA14D8 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = RCTTypeSafety; - target = D20469A9A1E5CFB26045EAEBE3F88E5E /* RCTTypeSafety */; - targetProxy = 0B64855C0AEA66A554B7ACEAB1DA5C73 /* PBXContainerItemProxy */; - }; 9B2EEDE8DA879BBAB20E4B071536A162 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = GoogleDataTransportCCTSupport; target = F4F25FCAC51B51FD5F986EB939BF1F87 /* GoogleDataTransportCCTSupport */; targetProxy = DAC5FE4A6E4A3B1C724D63970BAC4338 /* PBXContainerItemProxy */; }; - 9B663A2A75D9E21B7C96396B2BA2B678 /* PBXTargetDependency */ = { + 9B9559E3DD57B501922644B352EB160A /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = EXAppleAuthentication; - target = 28A005E00FB77DDB2543047A07ED99A5 /* EXAppleAuthentication */; - targetProxy = 779020CAA93B9C0531EB528333D7FFA6 /* PBXContainerItemProxy */; + name = UMBarCodeScannerInterface; + target = 49821C2B9E764AEDF2B35DFE9AA7022F /* UMBarCodeScannerInterface */; + targetProxy = FBA4078BC03046291D581B487606A899 /* PBXContainerItemProxy */; }; - 9B76D279CF96228DDD85808F0CD17C13 /* PBXTargetDependency */ = { + 9BD234FDAA3B1AB921155C44D795D7DD /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = RNConfigReader; - target = DC0D417AC8ABB7AA10C20A5E0F065812 /* RNConfigReader */; - targetProxy = 10B79FB38CF1670237CDF99655006C94 /* PBXContainerItemProxy */; + name = UMImageLoaderInterface; + target = 97C4DE84FA3CC4EC06AA6D8C249949B7 /* UMImageLoaderInterface */; + targetProxy = 6CF89B7F2F3618B6641E7EC5DC555538 /* PBXContainerItemProxy */; }; 9BE77C0CE5C822FC5DB8B01450B58D87 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -27797,66 +27687,36 @@ target = 620E05868772C10B4920DC7E324F2C87 /* FirebaseCoreDiagnostics */; targetProxy = 4C19FE096CFB0C5224EF4DEECCDF392C /* PBXContainerItemProxy */; }; + 9C09C0CE74C228720295563511B99EC0 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "react-native-cameraroll"; + target = BA3F5E5AA483B263B69601DE2FA269CB /* react-native-cameraroll */; + targetProxy = 4E321E4AFB162F0B83FB1FFF567BC08E /* PBXContainerItemProxy */; + }; 9C1E4B5F09DB3DB957D74013FF7DD218 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = Folly; target = A4F685BE3CAC127BDCE4E0DBBD88D191 /* Folly */; targetProxy = 70AC81A917439EA0D74DCF9C1BF144DF /* PBXContainerItemProxy */; }; - 9C968A79F9EAEEE8A6CE501F49D7CDBC /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = FirebaseInstallations; - target = 87803597EB3F20FC46472B85392EC4FD /* FirebaseInstallations */; - targetProxy = 91E18086BF5B384550F843BD29FC2DF8 /* PBXContainerItemProxy */; - }; - 9CB25993E0DE4A687C546BB105805613 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "React-RCTActionSheet"; - target = 11989A5E568B3B69655EE0C13DCDA3F9 /* React-RCTActionSheet */; - targetProxy = BBD5B0330948F442A1998768A05CF21E /* PBXContainerItemProxy */; - }; 9D952223892B210445690CF8063E5819 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "boost-for-react-native"; target = ED2506AE7DE35D654F61254441EA7155 /* boost-for-react-native */; targetProxy = F58E9777EB3ADF88D9527C53980828B5 /* PBXContainerItemProxy */; }; - 9DCEE99DA9B0BE6178A8B6D3D5D81945 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = KeyCommands; - target = 7F591BD8674041AAAA4F37DC699B5518 /* KeyCommands */; - targetProxy = 9CB3D12FFDA9B263E917D55AC11473AA /* PBXContainerItemProxy */; - }; 9DD60125DC20F42302B0B2D0CB316AC5 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "React-Core"; target = 7ACAA9BE580DD31A5CB9D97C45D9492D /* React-Core */; targetProxy = 8B10525073A1E3A812765DACA9E0E5F9 /* PBXContainerItemProxy */; }; - 9E1C055822086B5D178AD243D38C6DCC /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "react-native-webview"; - target = 8D18C49071FC5370C25F5758A85BA5F6 /* react-native-webview */; - targetProxy = 34692FF1FA28E04DCB7AFD252F474664 /* PBXContainerItemProxy */; - }; 9E26FA23DA2D5C313CE6338C3FA0D6AB /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = glog; target = D0EFEFB685D97280256C559792236873 /* glog */; targetProxy = 033CF4371871DC207A7FB8B2A6D3AFFA /* PBXContainerItemProxy */; }; - 9E881EBDD0A8E94942E6CB4073292433 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = FirebaseCrashlytics; - target = 526C4398D095B3704EB933DADBC30093 /* FirebaseCrashlytics */; - targetProxy = DC2BBD8C4BC119437D8206F916B81D3C /* PBXContainerItemProxy */; - }; - 9ED82B637CC477BCEE67B2C89452ED58 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "Flipper-RSocket"; - target = 1FAAE067C1BFDEA17DFB657C3379AB56 /* Flipper-RSocket */; - targetProxy = 59765C4E326AB45E49AD9EE9A3AAFF9E /* PBXContainerItemProxy */; - }; 9F02C26CC4D5A8E85DBF7463BC53A8A9 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "React-Core"; @@ -27869,29 +27729,23 @@ target = F7845084F0CF03F54107EEF7411760AD /* UMPermissionsInterface */; targetProxy = 4C0C596ADC9E293A7A58D1310730D1F4 /* PBXContainerItemProxy */; }; + A017F7463935E16964D38009C85A52BE /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = FirebaseCore; + target = 4402AFF83DBDC4DD07E198685FDC2DF2 /* FirebaseCore */; + targetProxy = 22FA2DB24A8046562C4C1CF445D4EB84 /* PBXContainerItemProxy */; + }; A01D5BF6DB015DF0EC8522DEE1B04EF5 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = Folly; target = A4F685BE3CAC127BDCE4E0DBBD88D191 /* Folly */; targetProxy = 36C09803F5639679F48876B79C1E1CFE /* PBXContainerItemProxy */; }; - A122CF2DED148E897060B7E56982CB8E /* PBXTargetDependency */ = { + A3A7A78BFB8B692C2979AA6FF8C4AE8E /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = BugsnagReactNative; - target = 0745200E60DC80C9A0A48B7E6C1518D7 /* BugsnagReactNative */; - targetProxy = 49A63A6EC45BD3F7683990F6BE9FD789 /* PBXContainerItemProxy */; - }; - A311AEEBE469BDCECD43CC02A861D729 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = RNCMaskedView; - target = 1A0445474DA11CA659C4BCC5AB64B1BF /* RNCMaskedView */; - targetProxy = C895E3DD10CA4287995C612A7F015A4E /* PBXContainerItemProxy */; - }; - A34C25F97AB01E2E61B6F7B771AE2490 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = UMFaceDetectorInterface; - target = 2AD4F40E67E1874A0816F6B34289EB41 /* UMFaceDetectorInterface */; - targetProxy = D93524B4354C70E4EF0CE0427845AF95 /* PBXContainerItemProxy */; + name = TOCropViewController; + target = F3966F664F3CFAEFAB57C40FB54D3788 /* TOCropViewController */; + targetProxy = 5294D3BBE7D1816DE1382AC017C9DCC5 /* PBXContainerItemProxy */; }; A3F4258D4EA27D6C88C15BCDA4CDEDA4 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -27899,23 +27753,23 @@ target = 1BEE828C124E6416179B904A9F66D794 /* React */; targetProxy = DDFCA674E1FE8DC1DB86D5A0C0A1FB6A /* PBXContainerItemProxy */; }; + A3FCE7D50E5B006BE9B42374646A6E0A /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = Folly; + target = A4F685BE3CAC127BDCE4E0DBBD88D191 /* Folly */; + targetProxy = E6211F7D68EF8137E668EF84382070D8 /* PBXContainerItemProxy */; + }; A4F0171858F48CD50806A85D302C6E08 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = Folly; target = A4F685BE3CAC127BDCE4E0DBBD88D191 /* Folly */; targetProxy = ECDF72BAFEE1568BCF8EFBBF82F17C77 /* PBXContainerItemProxy */; }; - A5688DEA779C3EA3F815135751E5DB4D /* PBXTargetDependency */ = { + A648429EEBDDD17ABFC6C20A36EBD299 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = UMCameraInterface; - target = 0A915EE9D35CA5636731F8763E774951 /* UMCameraInterface */; - targetProxy = E48C9A9EEB0A0DEA62C0917C00C419E5 /* PBXContainerItemProxy */; - }; - A614BE3642C55FF1A98DB87BF5B2BB32 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = nanopb; - target = D2B5E7DCCBBFB32341D857D01211A1A3 /* nanopb */; - targetProxy = 16A88BF0190C20E14C0C438C39B8C40F /* PBXContainerItemProxy */; + name = CocoaAsyncSocket; + target = 6083682834ABE0AE7BD1CBF06CADD036 /* CocoaAsyncSocket */; + targetProxy = 2C8F63D03DA26C2368B92798FF7A4F54 /* PBXContainerItemProxy */; }; A6B1DDAFCA31978F80326B93C5C07C68 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -27923,17 +27777,11 @@ target = 90D0DE2F3348233618414728C35311CA /* RNFBApp */; targetProxy = 5A9DED21300713AA6D50E96B3E2A6CE4 /* PBXContainerItemProxy */; }; - A6B38B93EB4ECBC9390D3E5CCD2B089D /* PBXTargetDependency */ = { + A6B5966BE0E73C8CD174DA7FD48B3D23 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = CocoaLibEvent; - target = D63EF582C3FFEAFBF76242E9637C6E0A /* CocoaLibEvent */; - targetProxy = 7BEE664881F985CDE0CA3CEDC0D9C96D /* PBXContainerItemProxy */; - }; - A6FFF7C8BEF67B9713E06F8907E7769A /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = RNGestureHandler; - target = B9E8F4CA2A4A8599389FEB665A9B96FF /* RNGestureHandler */; - targetProxy = A5EAB879BC1635C6D9A383131EC00A9B /* PBXContainerItemProxy */; + name = JitsiMeetSDK; + target = 5B40FBDAD0AB75D17C4760F4054BFF71 /* JitsiMeetSDK */; + targetProxy = 399F4881142B841BCF02A817DD0E3E03 /* PBXContainerItemProxy */; }; A7508E3F53BF61BFA85D004AC3B86866 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -27941,12 +27789,6 @@ target = C3496D0495E700CF08A90C41EA8FA4BB /* FBReactNativeSpec */; targetProxy = 8195006B3B2AB45ACA54D6CFB2BC09A4 /* PBXContainerItemProxy */; }; - A774C0A9CA3A13C07141014321F66E14 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = EXConstants; - target = 6C1893932A69822CBE3502F2E0BCFB6D /* EXConstants */; - targetProxy = 56C68608CA588E8B57869127EAEAD446 /* PBXContainerItemProxy */; - }; A7D97A2BA1A9E380ADD61762394F3AED /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = DoubleConversion; @@ -27959,29 +27801,17 @@ target = 7ACAA9BE580DD31A5CB9D97C45D9492D /* React-Core */; targetProxy = 5BE1625FF2C73ACD1127D4A9DDADF1AF /* PBXContainerItemProxy */; }; - A8F14AF75A631E080B34BF1B48667DDC /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = RNLocalize; - target = B51433D546A38C51AA781F192E8836F8 /* RNLocalize */; - targetProxy = EA6BF5FDBD62B9C15B4BF979A1C85E05 /* PBXContainerItemProxy */; - }; A9378C0255BF78AB2A2850B72E2A434B /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "React-jsi"; target = FA877ADC442CB19CF61793D234C8B131 /* React-jsi */; targetProxy = B2FA3966A49A0C9A1B7398D28D027638 /* PBXContainerItemProxy */; }; - A9A970237946B4BD90461F61EA843A01 /* PBXTargetDependency */ = { + A9629011258E36FB41EDFDBCA238C5B6 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = TOCropViewController; - target = F3966F664F3CFAEFAB57C40FB54D3788 /* TOCropViewController */; - targetProxy = D327C0743CB82C753FCDBBE7A28DC40A /* PBXContainerItemProxy */; - }; - A9C0A1BF6A3C83B5E964173343DA79FA /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = Flipper; - target = E63939AA6EFD3D6A8C09E45929F11DBD /* Flipper */; - targetProxy = A1C06E7FD761C9EDB256A1E38B6A13C7 /* PBXContainerItemProxy */; + name = FirebaseAnalytics; + target = C49E7A4D59E5C8BE8DE9FB1EFB150185 /* FirebaseAnalytics */; + targetProxy = FC6BF927E9F3195D28033222EBA81A4C /* PBXContainerItemProxy */; }; AA23F94379B75A5BB56765F48625ED0E /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -27989,11 +27819,11 @@ target = 1BEE828C124E6416179B904A9F66D794 /* React */; targetProxy = 754A10E91DFCDC79FEAD4753861638F2 /* PBXContainerItemProxy */; }; - AA521E3901BB34A794064D0CCEF13D99 /* PBXTargetDependency */ = { + AAB1C367D39738960D41AB5F4EA9A05F /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = GoogleDataTransport; - target = 5C0371EE948D0357B8EE0E34ABB44BF0 /* GoogleDataTransport */; - targetProxy = AE56E6F6F9CA42BF6E509A6242477C0D /* PBXContainerItemProxy */; + name = FBReactNativeSpec; + target = C3496D0495E700CF08A90C41EA8FA4BB /* FBReactNativeSpec */; + targetProxy = A6C3E23F87699BAE1625D350DA82D1BE /* PBXContainerItemProxy */; }; AACFA3F54D41DD980F02203B57C8F7A2 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -28001,29 +27831,41 @@ target = DBCB1B4965863DDD3B9DED9A0918A526 /* UMCore */; targetProxy = E8524B7128B54F7936616A550BEB7203 /* PBXContainerItemProxy */; }; - AC69351F2BA3A61430AF7EB28FA07EBB /* PBXTargetDependency */ = { + ABC0EF930CD66CBE6D2D2A70337803EF /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "react-native-notifications"; - target = CA400829100F0628EC209FBB08347D42 /* react-native-notifications */; - targetProxy = 7F7C9A1EB46E2E592A9098108DF7B5F6 /* PBXContainerItemProxy */; + name = MMKV; + target = 91A6826828CB9FCD0169A7547E8A79EA /* MMKV */; + targetProxy = C200A128A9BE2E4DE6B6C77CEEBB785F /* PBXContainerItemProxy */; }; - ADC0060F2C0BBEBD8C9EA35069A1115B /* PBXTargetDependency */ = { + ACE987744D1BE7F342AED1E33F1D27D7 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = FirebaseCrashlytics; - target = 526C4398D095B3704EB933DADBC30093 /* FirebaseCrashlytics */; - targetProxy = 94E19DDA2E997B7F31609C1F4018369E /* PBXContainerItemProxy */; + name = RNFastImage; + target = 0BB7745637E0758DEA373456197090C6 /* RNFastImage */; + targetProxy = 2C96384B61987222138D52EA81C772F2 /* PBXContainerItemProxy */; }; - ADC48BB308644518E00F4F2E7DCE6F46 /* PBXTargetDependency */ = { + AE149189755EFCB86073FF514926B916 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = RNDeviceInfo; - target = 807428FE76D80865C9F59F3502600E89 /* RNDeviceInfo */; - targetProxy = 49287802C8948376837016255295EFEA /* PBXContainerItemProxy */; + name = "react-native-jitsi-meet"; + target = D39AB631E8050865DE01F6D5678797D2 /* react-native-jitsi-meet */; + targetProxy = 8C6F11BAF90EF78AABA433DBF944E311 /* PBXContainerItemProxy */; }; - AE338229B914B6906B4B18133C98B7BE /* PBXTargetDependency */ = { + AE9431D663A8228831A6EF902AC0AB56 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "react-native-document-picker"; - target = D11E74324175FE5B0E78DB046527F233 /* react-native-document-picker */; - targetProxy = 564F51F1E802FEA11B38D12A8A2B1FE3 /* PBXContainerItemProxy */; + name = Folly; + target = A4F685BE3CAC127BDCE4E0DBBD88D191 /* Folly */; + targetProxy = 82B75BF90B8BE372308320C1675FD674 /* PBXContainerItemProxy */; + }; + AFBB7C710F83F45C72CF3FCBB7205B19 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = EXFileSystem; + target = 868B90C74770285449C60DBA82181479 /* EXFileSystem */; + targetProxy = 9FF76036129878D2E7E21F8D14158BAD /* PBXContainerItemProxy */; + }; + B002F33E261911083C7DD30FA7C45CB8 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = FirebaseInstallations; + target = 87803597EB3F20FC46472B85392EC4FD /* FirebaseInstallations */; + targetProxy = 47E2FC67157B92962AA302F3CA2154D1 /* PBXContainerItemProxy */; }; B06F178A82F3A420933C23345689BFDE /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -28031,12 +27873,6 @@ target = B6D5DD49633DFF0657B8C3F08EB3ABA9 /* ReactCommon */; targetProxy = E4C5288E9590D734DF4231687F5AE711 /* PBXContainerItemProxy */; }; - B10B0615DAEAA4E8D36FDC7AB41528EF /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "react-native-background-timer"; - target = 6514D69CB93B41626AE1A05581F97B07 /* react-native-background-timer */; - targetProxy = AD9460844A2F1FC4E101FFEA9C9E574E /* PBXContainerItemProxy */; - }; B237B8606B38C5CFB633C18DE09C72F4 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = DoubleConversion; @@ -28055,23 +27891,29 @@ target = AC8AE887C706A43711D115E69B9D988A /* MMKVCore */; targetProxy = 181AEEEEC6D5C83CC4CE4771E3F98C5B /* PBXContainerItemProxy */; }; - B2CA6BC06C42512EEF0B7E959B3BD068 /* PBXTargetDependency */ = { + B308730EC6E1F8F88633B62C509BFDB9 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "React-RCTLinking"; - target = 6FE9147F8AAA4DE676C190F680F47AE2 /* React-RCTLinking */; - targetProxy = 1C978A3749CB2A3C50A7FC845800FE06 /* PBXContainerItemProxy */; + name = Flipper; + target = E63939AA6EFD3D6A8C09E45929F11DBD /* Flipper */; + targetProxy = 6785CAB45F7C371575A0AC01FFC325F9 /* PBXContainerItemProxy */; }; - B41AB91179C21B9BF2A7605F38502816 /* PBXTargetDependency */ = { + B51AC743DDF8F2070E5F6A7CBF95A6B9 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = FlipperKit; - target = 982644B5B647690B2E4F5B3F54EB5717 /* FlipperKit */; - targetProxy = C3FA10AB18D8BAEC05212296139E968F /* PBXContainerItemProxy */; + name = RNCAsyncStorage; + target = 89F573A6B1292B3B2296B2206BFDC3D7 /* RNCAsyncStorage */; + targetProxy = 85B5AE0B28715BBA907F73C18C01DD33 /* PBXContainerItemProxy */; }; - B4F6684EA6A3C92D0CD50A7C68D66501 /* PBXTargetDependency */ = { + B5313F51014F1E75AF6531278196DD2F /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = RNScreens; - target = 214E42634D1E187D876346D36184B655 /* RNScreens */; - targetProxy = E6B36208046973F45B58DCACD4550C6D /* PBXContainerItemProxy */; + name = "react-native-orientation-locker"; + target = 1092C13E1E1172209537C28D0C8D4D3C /* react-native-orientation-locker */; + targetProxy = F2D27E2CC2D3C2552C65752D01E4E3C4 /* PBXContainerItemProxy */; + }; + B55F24B442A3C2C9BB0C258811D25EDF /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "Flipper-RSocket"; + target = 1FAAE067C1BFDEA17DFB657C3379AB56 /* Flipper-RSocket */; + targetProxy = 5363490420AADCE4CFDD9363029C7E44 /* PBXContainerItemProxy */; }; B58CF1FEA4024B58557DC96FA1284F62 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -28091,23 +27933,11 @@ target = D20469A9A1E5CFB26045EAEBE3F88E5E /* RCTTypeSafety */; targetProxy = 0B7BA2BED87BC1DD6BBFA3C1A07E4E46 /* PBXContainerItemProxy */; }; - B812278517C497FFB238F5F7F32E27F4 /* PBXTargetDependency */ = { + B75299AEF1105251439FED0853B02381 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "React-RCTText"; - target = DBD2D83E10F8B7D3F4E0E34E6A9FCFA6 /* React-RCTText */; - targetProxy = 62937B4F48D1B3DF569AF42C5F9088D7 /* PBXContainerItemProxy */; - }; - B81D6CB4EC3C904E5659212CCD035A2B /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = UMTaskManagerInterface; - target = 50188AAB5FAECCA9583327DBA2B0AF2B /* UMTaskManagerInterface */; - targetProxy = D997B5A0462BDB05FB628E0599477C72 /* PBXContainerItemProxy */; - }; - B8835D4180628CAF7E91400B3B3177A3 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "React-RCTActionSheet"; - target = 11989A5E568B3B69655EE0C13DCDA3F9 /* React-RCTActionSheet */; - targetProxy = B61396F36AAADF0F250891B0A1EA083F /* PBXContainerItemProxy */; + name = FirebaseCoreDiagnostics; + target = 620E05868772C10B4920DC7E324F2C87 /* FirebaseCoreDiagnostics */; + targetProxy = EFBB50FD49D8D47D67650641FC1A5F36 /* PBXContainerItemProxy */; }; B8B73617617104E7103760F1AB0FDDAD /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -28115,35 +27945,23 @@ target = 5B40FBDAD0AB75D17C4760F4054BFF71 /* JitsiMeetSDK */; targetProxy = 52D75569EE8B532085465A5470C6C390 /* PBXContainerItemProxy */; }; - B8C36443B1F6FB4AE640FB548F14F2E1 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "rn-extensions-share"; - target = A238B7CE3865946D1F214E1FE0023AAE /* rn-extensions-share */; - targetProxy = 6BCE5AF2977E77BA7F45F1518615194F /* PBXContainerItemProxy */; - }; B92630B331C84A01EBE7ECA0D823D9FC /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = React; target = 1BEE828C124E6416179B904A9F66D794 /* React */; targetProxy = AA5B8F43EAD114EE3717346D55C72BE5 /* PBXContainerItemProxy */; }; - B96E7DBA82D25001AB650D750AAB6B7C /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = UMFileSystemInterface; - target = 2644525CCE081E967809A8163D893A93 /* UMFileSystemInterface */; - targetProxy = E2D829E31904FEAF8BA25D5A90BC2BDE /* PBXContainerItemProxy */; - }; B9C77F85E28CBAF37D7B16CD342E7477 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "React-RCTActionSheet"; target = 11989A5E568B3B69655EE0C13DCDA3F9 /* React-RCTActionSheet */; targetProxy = EFB0AF13D239174FC9CDAFF9D17ECDFC /* PBXContainerItemProxy */; }; - BA07CF2D61DAF427DC0CA2B4C0884C94 /* PBXTargetDependency */ = { + B9D196151B75DEF1EE5E8BD5DBA899B6 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = EXPermissions; - target = 0A72FB88825FDC7D301C9DD1F8F96824 /* EXPermissions */; - targetProxy = 54C7A68A1655F93CF300983E589D38D0 /* PBXContainerItemProxy */; + name = nanopb; + target = D2B5E7DCCBBFB32341D857D01211A1A3 /* nanopb */; + targetProxy = B62FB0486B121D80953FD1715CE2F4A5 /* PBXContainerItemProxy */; }; BA241D5679EFEE167EE2F6CED9B54AF4 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -28151,17 +27969,29 @@ target = 1BEE828C124E6416179B904A9F66D794 /* React */; targetProxy = 77650DB9BCD15D3DBD659DF4437F2533 /* PBXContainerItemProxy */; }; - BB87EE46471B00FA11E991CF900BB530 /* PBXTargetDependency */ = { + BB1DB6E17C643DA4FB3EE74F077470FA /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = GoogleUtilities; - target = 8D7F5D5DD528D21A72DC87ADA5B12E2D /* GoogleUtilities */; - targetProxy = 1B7966D0BE90311D585C88DBD10AC968 /* PBXContainerItemProxy */; + name = UMSensorsInterface; + target = 2038C6F97563AAD6162C284B3EDD5B3B /* UMSensorsInterface */; + targetProxy = ECEC1E0689D4CB8A666EBC21F2C7CDC7 /* PBXContainerItemProxy */; }; - BD5FCA7D72FB28022163A0BED431AD8A /* PBXTargetDependency */ = { + BB759C97475EBFADF70148AC3008A9DE /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "react-native-cameraroll"; - target = BA3F5E5AA483B263B69601DE2FA269CB /* react-native-cameraroll */; - targetProxy = 30C067FEB06401C556BCDE677CB4D59A /* PBXContainerItemProxy */; + name = RCTTypeSafety; + target = D20469A9A1E5CFB26045EAEBE3F88E5E /* RCTTypeSafety */; + targetProxy = 754892AD453E93791D0719D10D50235D /* PBXContainerItemProxy */; + }; + BBF6A72BADBDBD0856B43A1A1BD9FBAD /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "Flipper-RSocket"; + target = 1FAAE067C1BFDEA17DFB657C3379AB56 /* Flipper-RSocket */; + targetProxy = 4AC19206448269D3D5806360A0039A76 /* PBXContainerItemProxy */; + }; + BD0117C02768E59720E92927C5AC8955 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = RNScreens; + target = 214E42634D1E187D876346D36184B655 /* RNScreens */; + targetProxy = FCD0CA2919E53CAC1E011A1FB6B93C29 /* PBXContainerItemProxy */; }; BD7B65C53246D71F9CAAFFEB4F1C1AEB /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -28169,11 +27999,11 @@ target = 651511D7DA7F07F9FC9AA40A2E86270D /* React-RCTNetwork */; targetProxy = FC08646CEFADC8729C286DFED21F92F1 /* PBXContainerItemProxy */; }; - BDE247C57595CA941707D94FF59FA327 /* PBXTargetDependency */ = { + BD8EFFCC37343A935A931C23C8C81273 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "React-CoreModules"; - target = E16E206437995280D349D4B67695C894 /* React-CoreModules */; - targetProxy = B8972ADAF3FD274BD38594CD56DD4C2F /* PBXContainerItemProxy */; + name = UMFontInterface; + target = 014495932E402CA67C37681988047CA2 /* UMFontInterface */; + targetProxy = E11E8BE92E216F687B035656839612D2 /* PBXContainerItemProxy */; }; BE7D0958FA0D61A89ADF1137F78DA078 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -28181,17 +28011,35 @@ target = 1BEE828C124E6416179B904A9F66D794 /* React */; targetProxy = 7CBA093BB5F4F39B712F2AF488BEEC02 /* PBXContainerItemProxy */; }; + BE830AC6A28C14FDA2DBE84E4E5F5C84 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = DoubleConversion; + target = 2AB2EF542954AB1C999E03BFEF8DE806 /* DoubleConversion */; + targetProxy = CD55F19F98AB9BA3CC5CBC7E9F262116 /* PBXContainerItemProxy */; + }; + BEE8867CBFF693EEC355684F9B4ADB85 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = FirebaseCoreDiagnostics; + target = 620E05868772C10B4920DC7E324F2C87 /* FirebaseCoreDiagnostics */; + targetProxy = D2A4DFF8317AF077259E12735E38ED91 /* PBXContainerItemProxy */; + }; BF23376B1A7E5DFDD5B71433E58CDDA1 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = UMCore; target = DBCB1B4965863DDD3B9DED9A0918A526 /* UMCore */; targetProxy = 2284921B4FC397971FFFACC555D01A18 /* PBXContainerItemProxy */; }; - BF657CA9700EAFE6B0AAF1EC61FEE90C /* PBXTargetDependency */ = { + BF2B14CB7770F3995232D175520ACEE0 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = EXConstants; - target = 6C1893932A69822CBE3502F2E0BCFB6D /* EXConstants */; - targetProxy = 6291088887E5F4CBCBF87414DB0B736D /* PBXContainerItemProxy */; + name = "Flipper-DoubleConversion"; + target = D9245543B79C09FAC40FC8B9F291536A /* Flipper-DoubleConversion */; + targetProxy = A06E4B119219382CB281D9C8AB18F601 /* PBXContainerItemProxy */; + }; + BFAE4B26B71341D125B870AF3F9A79EA /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = RNScreens; + target = 214E42634D1E187D876346D36184B655 /* RNScreens */; + targetProxy = 91BF9EB82E133B99590C0DCAB17E1FD0 /* PBXContainerItemProxy */; }; BFCB948DC93AB4A428623B1CB29FE8D3 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -28199,41 +28047,23 @@ target = 7ACAA9BE580DD31A5CB9D97C45D9492D /* React-Core */; targetProxy = CAC5E63A0DB508761FB7D52FA119FB6F /* PBXContainerItemProxy */; }; - C05B03CB2F2FBA708BC53CB177409D3F /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = Yoga; - target = 2B25F90D819B9ADF2AF2D8733A890333 /* Yoga */; - targetProxy = C7CB89C35D31A04737539DC2444F3BC8 /* PBXContainerItemProxy */; - }; C06D1C4D3C363277A4373B36E075A947 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = MMKVCore; target = AC8AE887C706A43711D115E69B9D988A /* MMKVCore */; targetProxy = 895226C74DA67953140446D58789AB87 /* PBXContainerItemProxy */; }; - C10AE8980BFE285C582A6BB9BF5B2A21 /* PBXTargetDependency */ = { + C2340FAE3C2D32CBE8A6A0A24D3F2114 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = libwebp; - target = 47D2E85A78C25869BB13521D8561A638 /* libwebp */; - targetProxy = 6470C478622A642820D917DE237D13E9 /* PBXContainerItemProxy */; + name = BugsnagReactNative; + target = 0745200E60DC80C9A0A48B7E6C1518D7 /* BugsnagReactNative */; + targetProxy = 3739A3B1321254FEA8B54225B1124FF4 /* PBXContainerItemProxy */; }; - C1CFCBB30E8A4E37E4AAFB1A76FCFE45 /* PBXTargetDependency */ = { + C2799084BA7799AC02137B6A501E2A0B /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = RNFastImage; - target = 0BB7745637E0758DEA373456197090C6 /* RNFastImage */; - targetProxy = 9E9419B4B356101BC66673255E89AAEE /* PBXContainerItemProxy */; - }; - C208B208EB29573900AB8752CCDB50E9 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "React-RCTAnimation"; - target = 938CCE22F6C4094B3FB6CF1478579E4B /* React-RCTAnimation */; - targetProxy = 9E696E0618AA76B6D6AE836E8D3EED0C /* PBXContainerItemProxy */; - }; - C292B9C57FF2EB7AECBA5803C32756A3 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = Flipper; - target = E63939AA6EFD3D6A8C09E45929F11DBD /* Flipper */; - targetProxy = 60D2FB323C69C021CEDC07C8AB73C97A /* PBXContainerItemProxy */; + name = RNFBApp; + target = 90D0DE2F3348233618414728C35311CA /* RNFBApp */; + targetProxy = 25B2335823BB35529EC2568E39827224 /* PBXContainerItemProxy */; }; C2AC30595C831D2B12F9E0732A34E6A0 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -28247,23 +28077,17 @@ target = D20469A9A1E5CFB26045EAEBE3F88E5E /* RCTTypeSafety */; targetProxy = F6FBF19908B8BD5F401871F2E3C3DD7A /* PBXContainerItemProxy */; }; - C3F2CA6497322BDA01A130619461941E /* PBXTargetDependency */ = { + C3CBA45169C5669B5DE0D208CB0B0706 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "React-RCTSettings"; - target = 680299219D3A48D42A648AF6706275A9 /* React-RCTSettings */; - targetProxy = 2C9BD51072B3256C7990CF6A8B8B9A07 /* PBXContainerItemProxy */; + name = RNConfigReader; + target = DC0D417AC8ABB7AA10C20A5E0F065812 /* RNConfigReader */; + targetProxy = 94226F6DFE8ECF329D288A0199680F75 /* PBXContainerItemProxy */; }; - C47E91833F953C81484CA5939A116D46 /* PBXTargetDependency */ = { + C53BDEC3EAF3C1C99D1827AFB8FF343A /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = EXVideoThumbnails; - target = 4A95B7CD1D5F80C5E8CD9CDA00D41F70 /* EXVideoThumbnails */; - targetProxy = 7A7C3CCADB41B0B5AE44B4BD0662A2B5 /* PBXContainerItemProxy */; - }; - C4DB3652EEDB7CB2E66103EA34B636A4 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = UMConstantsInterface; - target = 9668C19AA6D8EA320F83875FA286855A /* UMConstantsInterface */; - targetProxy = D539F68A72984D3A7D46CF619E7D2483 /* PBXContainerItemProxy */; + name = ReactNativeKeyboardInput; + target = 33B041E5D061336F88B875C8B86E45FB /* ReactNativeKeyboardInput */; + targetProxy = 6710E8A0464E57F1C1A3E3F0D19375D1 /* PBXContainerItemProxy */; }; C5A0E011AD4DDD3DB47BE2A057285067 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -28271,24 +28095,12 @@ target = 1BEE828C124E6416179B904A9F66D794 /* React */; targetProxy = 1B209875BE1A2519F69D4DFF0948FFAC /* PBXContainerItemProxy */; }; - C618E9AA6DA0B051EF26EC35EE035C01 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = RNFastImage; - target = 0BB7745637E0758DEA373456197090C6 /* RNFastImage */; - targetProxy = 460BBB26393D24C1BE8194398CB97299 /* PBXContainerItemProxy */; - }; C703CF0D0E02E9A86C01260A8FD221D7 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = ReactCommon; target = B6D5DD49633DFF0657B8C3F08EB3ABA9 /* ReactCommon */; targetProxy = 68768374A1E75E492CE01513CA6C20AF /* PBXContainerItemProxy */; }; - C7933C15040997A63E08D9E73D90B5F1 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = Firebase; - target = 072CEA044D2EF26F03496D5996BBF59F /* Firebase */; - targetProxy = 82D6B1F06E05F5B9A8EAE729D1D5F1DC /* PBXContainerItemProxy */; - }; C7D76D218015D375E16E46FB5BC47558 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = Folly; @@ -28301,17 +28113,23 @@ target = 9668C19AA6D8EA320F83875FA286855A /* UMConstantsInterface */; targetProxy = 13791CBAE3B4CCAF1FC636BA2BBD9DE4 /* PBXContainerItemProxy */; }; - CAD024419B50495C9419F54735E54894 /* PBXTargetDependency */ = { + C94BC8552C4AFE51AF020F2D99C76A9E /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = CocoaLibEvent; - target = D63EF582C3FFEAFBF76242E9637C6E0A /* CocoaLibEvent */; - targetProxy = 5A6BA097196337DBD7E5078F01804D6E /* PBXContainerItemProxy */; + name = UMReactNativeAdapter; + target = 897EF6A99176326E24F51E2F2103828C /* UMReactNativeAdapter */; + targetProxy = E888F123C92F82485C98B734E586179E /* PBXContainerItemProxy */; }; - CB5286E5D45335CDA43F9E163854A63C /* PBXTargetDependency */ = { + CA48E2D037F0EE2EBAA13A06F41710A8 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = EXAppleAuthentication; - target = 28A005E00FB77DDB2543047A07ED99A5 /* EXAppleAuthentication */; - targetProxy = 0D8E6B479003FA5233845F90101E52CD /* PBXContainerItemProxy */; + name = "React-jsinspector"; + target = F7D033C4C128EECAA020990641FA985F /* React-jsinspector */; + targetProxy = DB5EFE151847369D32B4F389EC4B1065 /* PBXContainerItemProxy */; + }; + CACDB18011A3FB299F8FE7E4EAAF36B7 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "Flipper-Folly"; + target = B6D39E083AE0FF45BA30D7CDF6198A03 /* Flipper-Folly */; + targetProxy = 5118E2F45FAE838717B9382A90C5FC13 /* PBXContainerItemProxy */; }; CB97061AE5C24A9D7F6D01F21E27B66B /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -28319,23 +28137,11 @@ target = FA877ADC442CB19CF61793D234C8B131 /* React-jsi */; targetProxy = 693D404670546F8992A85D966A95020E /* PBXContainerItemProxy */; }; - CBC6D33FF68ED45DA279CDF13D2F6E86 /* PBXTargetDependency */ = { + CD611D25A6481D69FE413CBEB6CEA177 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "React-RCTNetwork"; - target = 651511D7DA7F07F9FC9AA40A2E86270D /* React-RCTNetwork */; - targetProxy = 800932E87B7C36881C3AD4B4D212639E /* PBXContainerItemProxy */; - }; - CC26777679C8245679FB1967790CE3EB /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = GoogleDataTransport; - target = 5C0371EE948D0357B8EE0E34ABB44BF0 /* GoogleDataTransport */; - targetProxy = 665EBDBCB745605BA5D2BFA2B5DCA5C1 /* PBXContainerItemProxy */; - }; - CE1F3B5380174467A4FDB82BAE5F94F2 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = EXWebBrowser; - target = 9EB556EE511D43F3D5D7AAF51D8D0397 /* EXWebBrowser */; - targetProxy = 2AA593C97AE98C33FF81D0F83CF47DFD /* PBXContainerItemProxy */; + name = "React-RCTText"; + target = DBD2D83E10F8B7D3F4E0E34E6A9FCFA6 /* React-RCTText */; + targetProxy = 0FB1811BEC058B556FC00D44A231234B /* PBXContainerItemProxy */; }; CE811BA8598231C29656D85CC4033048 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -28349,17 +28155,17 @@ target = 2AB2EF542954AB1C999E03BFEF8DE806 /* DoubleConversion */; targetProxy = DA6E367832BBDB743B832C859EFC4513 /* PBXContainerItemProxy */; }; - CECB89DE87D17084981839B2869A515B /* PBXTargetDependency */ = { + CED1BBAC1B8AA42806AEE75369345519 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = MMKV; - target = 91A6826828CB9FCD0169A7547E8A79EA /* MMKV */; - targetProxy = E3AB06117E18103D2672CC63EEA08C5A /* PBXContainerItemProxy */; + name = "React-RCTSettings"; + target = 680299219D3A48D42A648AF6706275A9 /* React-RCTSettings */; + targetProxy = B1C456CDA6A2866DF73EFA68365917B6 /* PBXContainerItemProxy */; }; - CF708999D0E2708C3F16EB6E67EECA79 /* PBXTargetDependency */ = { + CF9EA205FD3829C649C128FA8102E14D /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "boost-for-react-native"; - target = ED2506AE7DE35D654F61254441EA7155 /* boost-for-react-native */; - targetProxy = 5F937F4A75E914913CC5896822B01E28 /* PBXContainerItemProxy */; + name = "React-jsinspector"; + target = F7D033C4C128EECAA020990641FA985F /* React-jsinspector */; + targetProxy = 57776AF4D0E8CFC1B79C1A4CA6F3AD47 /* PBXContainerItemProxy */; }; D05604972B2B426A3FED1BAC2ABE3BF8 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -28367,23 +28173,35 @@ target = 072CEA044D2EF26F03496D5996BBF59F /* Firebase */; targetProxy = 0992EA3BAB1334D3D4F32C329D61E5D8 /* PBXContainerItemProxy */; }; - D07E310F392F4952F184EC5497E91B21 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = EXAV; - target = 13D7009C3736FB694854D88BAD4742B6 /* EXAV */; - targetProxy = 004FA2E654FEBF63CCD05540DA336B45 /* PBXContainerItemProxy */; - }; - D1F4B2387063A574E9A2DA0387A82470 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = UMFontInterface; - target = 014495932E402CA67C37681988047CA2 /* UMFontInterface */; - targetProxy = 1876CF7039FCB2B7162F5AB5EF5FF651 /* PBXContainerItemProxy */; - }; - D2221A1761DE58FCB64A747DD26BCDFC /* PBXTargetDependency */ = { + D0638BDADBBC802C3843C2B4A1CB5356 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "OpenSSL-Universal"; target = B9ED5194E665042005069EF06C82A050 /* OpenSSL-Universal */; - targetProxy = B2E9D38A62719B6E1DC2297923A2AE42 /* PBXContainerItemProxy */; + targetProxy = 3A42F62B40BF839932F4A20CA0C4A556 /* PBXContainerItemProxy */; + }; + D08448FA1C7979DD5CA78C5A58283B88 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = EXPermissions; + target = 0A72FB88825FDC7D301C9DD1F8F96824 /* EXPermissions */; + targetProxy = 28E14CC668F98708446F7FACF9C4DFC6 /* PBXContainerItemProxy */; + }; + D0B33916950CABA7C9A6CC2ED21B63C3 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "Flipper-Folly"; + target = B6D39E083AE0FF45BA30D7CDF6198A03 /* Flipper-Folly */; + targetProxy = C284BB2260DDF14E6D1063F4F3CAC4CE /* PBXContainerItemProxy */; + }; + D0CAB7FF52C3F71DA5DA731C4B6557E8 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "boost-for-react-native"; + target = ED2506AE7DE35D654F61254441EA7155 /* boost-for-react-native */; + targetProxy = 6B9F08ACEDFEAA0BFE4346819C3F3872 /* PBXContainerItemProxy */; + }; + D1F0BA53A8442B16EE98CA1526DBEB3D /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = GoogleUtilities; + target = 8D7F5D5DD528D21A72DC87ADA5B12E2D /* GoogleUtilities */; + targetProxy = 83B9C13DF68BAAAD7F4EAE831A301BE1 /* PBXContainerItemProxy */; }; D2285B5805A417D68129D0A7C6A51AE3 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -28391,12 +28209,6 @@ target = 5C0371EE948D0357B8EE0E34ABB44BF0 /* GoogleDataTransport */; targetProxy = A71AF0599E370DE67697EB341A4717CC /* PBXContainerItemProxy */; }; - D253A96E6B0CF1E8D871D257ACC210E1 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = BugsnagReactNative; - target = 0745200E60DC80C9A0A48B7E6C1518D7 /* BugsnagReactNative */; - targetProxy = D4DFDCBC1CF6917D194B9925D365B65E /* PBXContainerItemProxy */; - }; D2A6BF2C4F4729E37CC9EA2B2206DECC /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "React-jsi"; @@ -28409,12 +28221,30 @@ target = FA877ADC442CB19CF61793D234C8B131 /* React-jsi */; targetProxy = E2539B18E07B9C243AC0276439480F3D /* PBXContainerItemProxy */; }; + D39AA472F13D2D79D1701F7CA15B63EC /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "react-native-appearance"; + target = 3FF2E78BB54ED67CA7FAD8DA2590DBEE /* react-native-appearance */; + targetProxy = 4FDA141A0F25E3F0256093E6CD4380F4 /* PBXContainerItemProxy */; + }; D3CBDCCCE938AD4EA6E0BDB5900BE17C /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "React-jsi"; target = FA877ADC442CB19CF61793D234C8B131 /* React-jsi */; targetProxy = 3B6D37192A39FD2BDCD1EC2D0E739FED /* PBXContainerItemProxy */; }; + D425887896DFAF5B401A40BC2729491F /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = YogaKit; + target = 32CA4CBD6B28983076BD93DA221AD027 /* YogaKit */; + targetProxy = 252AD1F8E6085F4D211672D10D5EF709 /* PBXContainerItemProxy */; + }; + D44138B29F64867ED9C5A632D1661CBF /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "React-jsiexecutor"; + target = DA0709CAAD589C6E7963495210438021 /* React-jsiexecutor */; + targetProxy = F2A9728A1B4AAC52E3A64E18642DD9A9 /* PBXContainerItemProxy */; + }; D499516EE5DA748087C7EF2C94543BA3 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "React-RCTImage"; @@ -28427,42 +28257,12 @@ target = FA877ADC442CB19CF61793D234C8B131 /* React-jsi */; targetProxy = 2E8FE62F5F6B8EF737DB919ED66B630A /* PBXContainerItemProxy */; }; - D5413890DDD4A3C37BC579E70D304779 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = RNRootView; - target = 18B56DB36E1F066C927E49DBAE590128 /* RNRootView */; - targetProxy = 3065BB7EC5AA13F1901EE05531BCFA2C /* PBXContainerItemProxy */; - }; - D5A130B8E26B370AE406BB535BBBD4D5 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "Flipper-PeerTalk"; - target = 718DB7D0A7E90B531AD577B3356C4161 /* Flipper-PeerTalk */; - targetProxy = EB59584C82AA84B7D794E2BE4D515203 /* PBXContainerItemProxy */; - }; - D5D01D82D65B6B978E70E653D7E9FFF2 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = RNScreens; - target = 214E42634D1E187D876346D36184B655 /* RNScreens */; - targetProxy = 2AAEECB156AACBE3F463997666BCF578 /* PBXContainerItemProxy */; - }; D5F43FE63F1F6C96E0D9F953258FAE9D /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = React; target = 1BEE828C124E6416179B904A9F66D794 /* React */; targetProxy = E79050B7B79BB88D74178F90A19D9ECF /* PBXContainerItemProxy */; }; - D60836460D5593FA19A61C0F5FF6275D /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = FirebaseAnalytics; - target = C49E7A4D59E5C8BE8DE9FB1EFB150185 /* FirebaseAnalytics */; - targetProxy = F977DF79B6E5ECB23AEF8F7C9A1F0E74 /* PBXContainerItemProxy */; - }; - D6339EA9F1D48390CBE2288F162AF418 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = FirebaseCore; - target = 4402AFF83DBDC4DD07E198685FDC2DF2 /* FirebaseCore */; - targetProxy = 78EF6A877B32D8DD5EFF9DD471F68F77 /* PBXContainerItemProxy */; - }; D6B7B8C07DEE0669AA70FB17B58D483A /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = React; @@ -28475,23 +28275,47 @@ target = DBD2D83E10F8B7D3F4E0E34E6A9FCFA6 /* React-RCTText */; targetProxy = 42F97C29084691AA0F01785A3193AF04 /* PBXContainerItemProxy */; }; + D73F70154CD3D63957FD7DF99E30716D /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = ReactNativeART; + target = 90148E8FD1C445D7A019D504FA8CBC53 /* ReactNativeART */; + targetProxy = 706D09C8D2D1E95FFDB8EBBEEEBC41EB /* PBXContainerItemProxy */; + }; + D7852C97AB15BDAA480B4F9679ABA973 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "react-native-background-timer"; + target = 6514D69CB93B41626AE1A05581F97B07 /* react-native-background-timer */; + targetProxy = 2640DCC15AE96DBD3DF4397CED9022C2 /* PBXContainerItemProxy */; + }; + D826389AF7412DFFB24DDDF39A28F51C /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "React-RCTAnimation"; + target = 938CCE22F6C4094B3FB6CF1478579E4B /* React-RCTAnimation */; + targetProxy = 306E04BA3E7BB7990C09A3B8EB08F0F6 /* PBXContainerItemProxy */; + }; D846DE6BBAA9C4DBC81A4B1BE9895E7B /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = nanopb; target = D2B5E7DCCBBFB32341D857D01211A1A3 /* nanopb */; targetProxy = E78EB90AEEC70687EFA88E5AA41058AA /* PBXContainerItemProxy */; }; + D86F29A812A6CCA98380468D5B5AD635 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = UMTaskManagerInterface; + target = 50188AAB5FAECCA9583327DBA2B0AF2B /* UMTaskManagerInterface */; + targetProxy = 4FA2DB139F66648D73C256BA3C68DFAA /* PBXContainerItemProxy */; + }; D919ED6D5E9BBF3E57EF55725262CB14 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = ReactCommon; target = B6D5DD49633DFF0657B8C3F08EB3ABA9 /* ReactCommon */; targetProxy = F6D03AA427E993C8552AA921EA59A306 /* PBXContainerItemProxy */; }; - D9B5D7FD43FB3BEED713817988F39395 /* PBXTargetDependency */ = { + DB07F254C544A9FCDCD3E401BBB94EC5 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "react-native-orientation-locker"; - target = 1092C13E1E1172209537C28D0C8D4D3C /* react-native-orientation-locker */; - targetProxy = B824D77829D3143A291C7A8B0FF4AD97 /* PBXContainerItemProxy */; + name = UMBarCodeScannerInterface; + target = 49821C2B9E764AEDF2B35DFE9AA7022F /* UMBarCodeScannerInterface */; + targetProxy = 7D9E8840DA78A1212C253249569814CD /* PBXContainerItemProxy */; }; DB428F9B87F61672189FE93818C7346C /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -28505,17 +28329,11 @@ target = 5C0371EE948D0357B8EE0E34ABB44BF0 /* GoogleDataTransport */; targetProxy = 8F0EBEBA4BE85E40F3FB183B179404E7 /* PBXContainerItemProxy */; }; - DB91C5B8FA4E48F817349BE83F35D2ED /* PBXTargetDependency */ = { + DBE0B610C19CE7DC8BC1630AADCB7068 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = RNFBCrashlytics; - target = E3573FB7AF659C42B699003C73722241 /* RNFBCrashlytics */; - targetProxy = 910EA2213B18CCB6F2700A1F9FFA83B5 /* PBXContainerItemProxy */; - }; - DBD921F0312A84A8BA2E999F2B2B19F7 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = RNRootView; - target = 18B56DB36E1F066C927E49DBAE590128 /* RNRootView */; - targetProxy = C2E15D1D4A770A1600799D971A2F80B2 /* PBXContainerItemProxy */; + name = SDWebImage; + target = 3847153A6E5EEFB86565BA840768F429 /* SDWebImage */; + targetProxy = 8E9BE4FB64D11D84DD457D72C5FD54CF /* PBXContainerItemProxy */; }; DBEE2316CA1918C8CF1B007AAF73F7D8 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -28523,11 +28341,11 @@ target = 1BEE828C124E6416179B904A9F66D794 /* React */; targetProxy = 5D7263A8C3B911982BA2A84F9C447C16 /* PBXContainerItemProxy */; }; - DC3BB4C55695578A9006E45B7C2C5157 /* PBXTargetDependency */ = { + DC1D72033357A252D181AEF8FC5EE905 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = FBReactNativeSpec; - target = C3496D0495E700CF08A90C41EA8FA4BB /* FBReactNativeSpec */; - targetProxy = 6C1B51F74344439554EE8AA63BD0ACA0 /* PBXContainerItemProxy */; + name = "react-native-notifications"; + target = CA400829100F0628EC209FBB08347D42 /* react-native-notifications */; + targetProxy = EDAB836035A0B368A2A717C1D030AC2E /* PBXContainerItemProxy */; }; DC611EE2F8BCC18405A57ED3637CC880 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -28547,18 +28365,18 @@ target = 7ACAA9BE580DD31A5CB9D97C45D9492D /* React-Core */; targetProxy = E6A312D4FD065D132CE86F699ADC006F /* PBXContainerItemProxy */; }; + DD1DAE3F71018F34CA36FFCC885EA578 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = FBLazyVector; + target = 8CC4EAA817AA86310D1900F1DAB3580F /* FBLazyVector */; + targetProxy = C29C47D6A018E56BEC22AD2DFFF8AECE /* PBXContainerItemProxy */; + }; DD42749A0327BDFDE691A4721767F0F3 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = React; target = 1BEE828C124E6416179B904A9F66D794 /* React */; targetProxy = 6423924A022902547DBE5FC8EF93BD4D /* PBXContainerItemProxy */; }; - DD79E04E840C1971F5ADA3F1CBE8A565 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = ReactNativeART; - target = 90148E8FD1C445D7A019D504FA8CBC53 /* ReactNativeART */; - targetProxy = CDDDEA47CED9C55D5F7FBA3AC4F4D309 /* PBXContainerItemProxy */; - }; DDAE5DE7E02A6212BDC43A3CA35A61F2 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "React-cxxreact"; @@ -28571,29 +28389,17 @@ target = A4F685BE3CAC127BDCE4E0DBBD88D191 /* Folly */; targetProxy = 132A4A8CBAE2EBFF485A847482DF06DD /* PBXContainerItemProxy */; }; - DF06D725A2AB4B2E78D6299ADF0AD37C /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = nanopb; - target = D2B5E7DCCBBFB32341D857D01211A1A3 /* nanopb */; - targetProxy = BCD59447AA44DF60D40010358189EF8C /* PBXContainerItemProxy */; - }; DF072AA82B95EF5DD4445A2E27AEC5E0 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = React; target = 1BEE828C124E6416179B904A9F66D794 /* React */; targetProxy = 21B7FFD1A14C9DCA797642821E09A7B1 /* PBXContainerItemProxy */; }; - DF6CDE38B394A7446AA43CAE1EFF7C5D /* PBXTargetDependency */ = { + DF8356CC4D874F1A48AED8296D2D709E /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "Flipper-Folly"; - target = B6D39E083AE0FF45BA30D7CDF6198A03 /* Flipper-Folly */; - targetProxy = 8C595B2D95DDAAF440F896B3A0D33727 /* PBXContainerItemProxy */; - }; - E03DA067FBD031AFE61AFFB2643ABC2A /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = UMFaceDetectorInterface; - target = 2AD4F40E67E1874A0816F6B34289EB41 /* UMFaceDetectorInterface */; - targetProxy = 950F5960DF8B777DB1E2ADDF1B28C197 /* PBXContainerItemProxy */; + name = Firebase; + target = 072CEA044D2EF26F03496D5996BBF59F /* Firebase */; + targetProxy = 15CCD7D1A790618E4B3B3D4EC7545035 /* PBXContainerItemProxy */; }; E0EE46A92FA4B2520F4C0979EC9369DB /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -28601,17 +28407,23 @@ target = A4F685BE3CAC127BDCE4E0DBBD88D191 /* Folly */; targetProxy = 23C9EE150BBDDD445CE0ADCFAE6D68ED /* PBXContainerItemProxy */; }; - E139C84E86CCE14A4937645D437137F6 /* PBXTargetDependency */ = { + E184E6507F2923106FBB046543B058D4 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = FirebaseAnalytics; - target = C49E7A4D59E5C8BE8DE9FB1EFB150185 /* FirebaseAnalytics */; - targetProxy = 808FC4055BB5086D79DD31542375C1BF /* PBXContainerItemProxy */; + name = KeyCommands; + target = 7F591BD8674041AAAA4F37DC699B5518 /* KeyCommands */; + targetProxy = 2D9E3D84E43975F2D53DF515F05F81DA /* PBXContainerItemProxy */; }; - E22B799ABABE83B494DE96A19BDC5C6B /* PBXTargetDependency */ = { + E1D1E1A99D0060807D6CEECFAFC197DC /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = RCTRequired; - target = E7E7CE52C8C68B17224FF8C262D80ABF /* RCTRequired */; - targetProxy = 21D092A006540CC828B9B4E97A92C229 /* PBXContainerItemProxy */; + name = EXFileSystem; + target = 868B90C74770285449C60DBA82181479 /* EXFileSystem */; + targetProxy = DFCEC3F1A3F053F37981959A9F0959A5 /* PBXContainerItemProxy */; + }; + E236081B1E1B1451400F47CBE45B7CEE /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "boost-for-react-native"; + target = ED2506AE7DE35D654F61254441EA7155 /* boost-for-react-native */; + targetProxy = CABCEB829E4E01FE05848BEF9D7805C5 /* PBXContainerItemProxy */; }; E23CCC73B951B35C0FB4CA8FF050583A /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -28619,59 +28431,35 @@ target = DBCB1B4965863DDD3B9DED9A0918A526 /* UMCore */; targetProxy = BD5F7970056AEC9A9A48216153498EF7 /* PBXContainerItemProxy */; }; - E2E4BEFBDF6918DCD567CBF983902CBF /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "React-RCTImage"; - target = 4F265533AAB7C8985856EC78A33164BB /* React-RCTImage */; - targetProxy = 96C40D085BFA33F463C7F1D894077319 /* PBXContainerItemProxy */; - }; E364FC183F2618C9D12C99E67143417F /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = React; target = 1BEE828C124E6416179B904A9F66D794 /* React */; targetProxy = 0FD6A4ED78388214475895E97458EB68 /* PBXContainerItemProxy */; }; - E3DD98BCFA06EDE0845462DE507AC5A4 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = ReactNativeKeyboardTrackingView; - target = 27E277B43A5F7AE00EC5051AB99AC38E /* ReactNativeKeyboardTrackingView */; - targetProxy = 5D759D2F645416D7485E00355A920316 /* PBXContainerItemProxy */; - }; E463467A75682C4E7C346610654E375B /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = React; target = 1BEE828C124E6416179B904A9F66D794 /* React */; targetProxy = EAA9F477386E52EB30E75431006FAA8C /* PBXContainerItemProxy */; }; - E5B201E797ED4635B0E528F4D4F791A8 /* PBXTargetDependency */ = { + E4A617D0643A95A865F210C499523E80 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "React-RCTAnimation"; - target = 938CCE22F6C4094B3FB6CF1478579E4B /* React-RCTAnimation */; - targetProxy = 3740443C37EFA7763F991A0FA35AADC2 /* PBXContainerItemProxy */; + name = "React-RCTImage"; + target = 4F265533AAB7C8985856EC78A33164BB /* React-RCTImage */; + targetProxy = 6B575BD1B27F77B4405539E18FC8F277 /* PBXContainerItemProxy */; }; - E5C22A908598D746A17A001C3471E8F6 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = EXHaptics; - target = 409F3A0DB395F53FFB6AB30E5CD8ACD1 /* EXHaptics */; - targetProxy = B047DC9DF8C887CE40051981E9BB0C73 /* PBXContainerItemProxy */; - }; - E625B1D8784FAD7512204396BD7A9487 /* PBXTargetDependency */ = { + E5786107BF4E2A85929BA219FAA38755 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = EXKeepAwake; target = 0CF4D9052577C85B6B8C4E957332626B /* EXKeepAwake */; - targetProxy = 3D4B00CC40A207DFDC2ED957C782D927 /* PBXContainerItemProxy */; + targetProxy = C63A91951B86819533E454E477C98ACC /* PBXContainerItemProxy */; }; - E682F77671D7A8E7DB9ED58DD61AA39A /* PBXTargetDependency */ = { + E6510AB23982FFA5C494F9FD90674FCA /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = UMConstantsInterface; - target = 9668C19AA6D8EA320F83875FA286855A /* UMConstantsInterface */; - targetProxy = 45F2D7DD647A233F76F6438AF8AF9EC5 /* PBXContainerItemProxy */; - }; - E7194B5D81FF9052632912599626F87C /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = SDWebImage; - target = 3847153A6E5EEFB86565BA840768F429 /* SDWebImage */; - targetProxy = C0F2926A4D41DFE23BBE2BEEB453D07A /* PBXContainerItemProxy */; + name = EXVideoThumbnails; + target = 4A95B7CD1D5F80C5E8CD9CDA00D41F70 /* EXVideoThumbnails */; + targetProxy = 502D63D912FAE57E44142DA1DC63015F /* PBXContainerItemProxy */; }; E7D36BFE6E30CE57D9BAA1151633F937 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -28679,35 +28467,29 @@ target = 6083682834ABE0AE7BD1CBF06CADD036 /* CocoaAsyncSocket */; targetProxy = AC4A774AD4298B03F7153D4FC3C59F8D /* PBXContainerItemProxy */; }; - E8546562AA10716B3E7D57E7976FBDB3 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = RNDateTimePicker; - target = D760AF58E12ABBB51F84160FB02B5F39 /* RNDateTimePicker */; - targetProxy = 38D4B2857E04B56A8B7E45E22D2F7DFA /* PBXContainerItemProxy */; - }; E8740A2B879F18CF356E4FD2B9498953 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "TOCropViewController-TOCropViewControllerBundle"; target = 2D4D3D5AD93ADCCF3DD45A88009E48D6 /* TOCropViewController-TOCropViewControllerBundle */; targetProxy = 004E28481B999EBB8713F583C49F4661 /* PBXContainerItemProxy */; }; - E8758EFDABFBE5EFA687A428A8A17EA0 /* PBXTargetDependency */ = { + E8AF8AEA7F59D687F139F71904C7FDF1 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = UMBarCodeScannerInterface; - target = 49821C2B9E764AEDF2B35DFE9AA7022F /* UMBarCodeScannerInterface */; - targetProxy = A5CCA68CC16FD07FA28BF00B5FE92E47 /* PBXContainerItemProxy */; + name = EXPermissions; + target = 0A72FB88825FDC7D301C9DD1F8F96824 /* EXPermissions */; + targetProxy = EA45851322E6CB405A94DF9B1095EB9A /* PBXContainerItemProxy */; }; - E9010F118B26E5E7827D0B0EA5AC1C11 /* PBXTargetDependency */ = { + E9DBD2874F7DBFC3837FA6A947C47956 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "react-native-cookies"; - target = ADC4ACC657481AD27F9936D08FF7F49A /* react-native-cookies */; - targetProxy = 108DC8621AD9F628AAD847B4A59603BB /* PBXContainerItemProxy */; + name = GoogleAppMeasurement; + target = B53D977A951AFC38B21751B706C1DF83 /* GoogleAppMeasurement */; + targetProxy = 1E1DD1C81CB420E3B823BB16D309416D /* PBXContainerItemProxy */; }; - EB8A2E1ED4CEBB1C177FB18F0D3EFCD0 /* PBXTargetDependency */ = { + EAB57CAAD152B410CEFF8CB0B10AB5DA /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = RNFBAnalytics; - target = BDD119F8782FABE2707D3D913EC3EDE5 /* RNFBAnalytics */; - targetProxy = 65FE65EBD75575AB45FFFD5E444F15E3 /* PBXContainerItemProxy */; + name = Flipper; + target = E63939AA6EFD3D6A8C09E45929F11DBD /* Flipper */; + targetProxy = 469029E1439130BF3B2BB285CF022C20 /* PBXContainerItemProxy */; }; EB9FA6F585C535B87FED8F313CC4B3DC /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -28715,18 +28497,18 @@ target = E63939AA6EFD3D6A8C09E45929F11DBD /* Flipper */; targetProxy = 6514B943829E36F02B9A139465155A84 /* PBXContainerItemProxy */; }; + EBF7B4FD925728F2CA96472AF2FF8323 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = UMCameraInterface; + target = 0A915EE9D35CA5636731F8763E774951 /* UMCameraInterface */; + targetProxy = 6590ABB43129C43BA9C356535402A600 /* PBXContainerItemProxy */; + }; EC6304241511E3A3FDE95C7A5D38EDBC /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "React-Core"; target = 7ACAA9BE580DD31A5CB9D97C45D9492D /* React-Core */; targetProxy = 218BD48A74E10DEDDDAF4D13C755DC86 /* PBXContainerItemProxy */; }; - ECA1E0C5AB7449FC7A91F8879141716B /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "React-jsinspector"; - target = F7D033C4C128EECAA020990641FA985F /* React-jsinspector */; - targetProxy = 5B37EA4226FE52627F04050F38E6A0EC /* PBXContainerItemProxy */; - }; ECAA20D6DC41535E1D8F088C62E67F99 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = PromisesObjC; @@ -28739,12 +28521,6 @@ target = 072CEA044D2EF26F03496D5996BBF59F /* Firebase */; targetProxy = B5E90F5A93A4DF2C85CB04E1C028E70E /* PBXContainerItemProxy */; }; - ED609D7EAA5E850B8BEE478BB9821A41 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "react-native-safe-area-context"; - target = BD9A27D8398DEB3205D3F8937B0672A0 /* react-native-safe-area-context */; - targetProxy = 13E95A94E455EFCC0490394B4FD99849 /* PBXContainerItemProxy */; - }; EDE4622A231D7E4C637C51459B075FDC /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = React; @@ -28757,23 +28533,29 @@ target = 7ACAA9BE580DD31A5CB9D97C45D9492D /* React-Core */; targetProxy = 8110DAB12235E146C76645C74A703974 /* PBXContainerItemProxy */; }; - EF7DB579FAB0CFE7BF9C2E9F5A0FA8E5 /* PBXTargetDependency */ = { + EE65337EF6DCE59B3EBCF879FE7C3318 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = PromisesObjC; - target = 2BBF7206D7FAC92C82A042A99C4A98F8 /* PromisesObjC */; - targetProxy = 5BE9BC41E57D92505C2594E1632E9A33 /* PBXContainerItemProxy */; + name = "React-RCTSettings"; + target = 680299219D3A48D42A648AF6706275A9 /* React-RCTSettings */; + targetProxy = 4422063DCF2548C1E253C33195AFFA5A /* PBXContainerItemProxy */; }; - EF9AFBBB3ECED635B417D66519BAB18A /* PBXTargetDependency */ = { + EEE3E57B83D770BB76C1674088A0272D /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "React-RCTVibration"; target = 53D121F9F9BB0F8AC1C94A12C5A8572F /* React-RCTVibration */; - targetProxy = 54A2E4D4849D25BB6D0130EE0BE4871C /* PBXContainerItemProxy */; + targetProxy = 3412521ADF1AC6787350DE9936D4B86C /* PBXContainerItemProxy */; }; - EFD20EDF9CDBD0204866BD5FD9D71C2A /* PBXTargetDependency */ = { + EF79A67FE579A3F946A44BEF56826D7D /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = RNCAsyncStorage; - target = 89F573A6B1292B3B2296B2206BFDC3D7 /* RNCAsyncStorage */; - targetProxy = A2E2629CBCFEC2C2C29C237120574870 /* PBXContainerItemProxy */; + name = RNDeviceInfo; + target = 807428FE76D80865C9F59F3502600E89 /* RNDeviceInfo */; + targetProxy = 1A0CF85F14DD7A5897452BC57889B20F /* PBXContainerItemProxy */; + }; + EF7C3997DF65D494B0011A9128C87D3D /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = RNDateTimePicker; + target = D760AF58E12ABBB51F84160FB02B5F39 /* RNDateTimePicker */; + targetProxy = 3B0301AC45D70D79FABF41CB8EE93E66 /* PBXContainerItemProxy */; }; F00EFFD8AB7F4034C272369D638B0070 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -28781,29 +28563,53 @@ target = 6FE9147F8AAA4DE676C190F680F47AE2 /* React-RCTLinking */; targetProxy = 036314721AE80A783233849B6130E1DB /* PBXContainerItemProxy */; }; + F0639F537916D3E1B9D7D4B031C00F64 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = EXHaptics; + target = 409F3A0DB395F53FFB6AB30E5CD8ACD1 /* EXHaptics */; + targetProxy = D8312C53FB69321F553B39C03E2ED6B9 /* PBXContainerItemProxy */; + }; + F08D8F9E91FB6EE048D5DF6C52F8CCF3 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = EXConstants; + target = 6C1893932A69822CBE3502F2E0BCFB6D /* EXConstants */; + targetProxy = 2771E9A165AB1C5AC25A04E119FE1371 /* PBXContainerItemProxy */; + }; + F09ABB491933147680157117A6ABF945 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = FlipperKit; + target = 982644B5B647690B2E4F5B3F54EB5717 /* FlipperKit */; + targetProxy = FE0CBE8B937140F39BC4BF2AFBEAA20F /* PBXContainerItemProxy */; + }; F135F9BF24D8AFC3B42F3522D809B4BB /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = nanopb; target = D2B5E7DCCBBFB32341D857D01211A1A3 /* nanopb */; targetProxy = 8DF020BBAD4E0EEEBB161574ABB68916 /* PBXContainerItemProxy */; }; - F21C947178010BAC1CD60961618B63E1 /* PBXTargetDependency */ = { + F2212133122F1FD1465EC173905556D6 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "React-jsiexecutor"; - target = DA0709CAAD589C6E7963495210438021 /* React-jsiexecutor */; - targetProxy = 35CAD206EAF7D407F7096C027CFC8C19 /* PBXContainerItemProxy */; + name = "React-RCTVibration"; + target = 53D121F9F9BB0F8AC1C94A12C5A8572F /* React-RCTVibration */; + targetProxy = E8791CD60578CCF218F454FF4E6E2A38 /* PBXContainerItemProxy */; }; - F246A85595464675FB93656D21E98076 /* PBXTargetDependency */ = { + F256AF405DAF2F6FD365AEC3669F17CF /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = RNDeviceInfo; - target = 807428FE76D80865C9F59F3502600E89 /* RNDeviceInfo */; - targetProxy = 9D62B5E989A1ED0CB0D8B6148516A694 /* PBXContainerItemProxy */; + name = "React-RCTNetwork"; + target = 651511D7DA7F07F9FC9AA40A2E86270D /* React-RCTNetwork */; + targetProxy = 2AC72A2F9E48F6E6D4A7C725BA24A60C /* PBXContainerItemProxy */; }; - F4A5BF2101266EFAE47F823C96F188B8 /* PBXTargetDependency */ = { + F25CA01EB69D5AD6BF26356373743E86 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = PromisesObjC; - target = 2BBF7206D7FAC92C82A042A99C4A98F8 /* PromisesObjC */; - targetProxy = 1F18FB0E0D0D91B591AD6CC00A9DA5C1 /* PBXContainerItemProxy */; + name = RNCMaskedView; + target = 1A0445474DA11CA659C4BCC5AB64B1BF /* RNCMaskedView */; + targetProxy = 194693ED2215476F183A3CD36FBCBA26 /* PBXContainerItemProxy */; + }; + F27C6531DEE3EE7E28D16F85B98CB106 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = EXImageLoader; + target = 263266A9E29FFF0E9C8CA0E4582BFCF4 /* EXImageLoader */; + targetProxy = 8E7429B2A7CD5E9C29FB8DC74C5C9835 /* PBXContainerItemProxy */; }; F4ABC2B3D06CA044325DADC1ED59161D /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -28811,6 +28617,12 @@ target = DBCB1B4965863DDD3B9DED9A0918A526 /* UMCore */; targetProxy = DE426B84920AAD68A99A39CB81DA3490 /* PBXContainerItemProxy */; }; + F5A7108161A3A9621DC5CD42955A1D95 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = RNLocalize; + target = B51433D546A38C51AA781F192E8836F8 /* RNLocalize */; + targetProxy = 5B4C217DD05CCB642BDD57C4C53BD590 /* PBXContainerItemProxy */; + }; F6258EC7EA780DA17A9BB7DEC0186247 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = React; @@ -28823,12 +28635,6 @@ target = 87803597EB3F20FC46472B85392EC4FD /* FirebaseInstallations */; targetProxy = 5C468A63879B83D44F982682FB98470B /* PBXContainerItemProxy */; }; - F73E7D618F04812B4226DCF25884D15F /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = YogaKit; - target = 32CA4CBD6B28983076BD93DA221AD027 /* YogaKit */; - targetProxy = 765D3CD938C8DB04A622CDBE3D3088EA /* PBXContainerItemProxy */; - }; F7584C8C1825DEDF9A742D3A3F75CC27 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = UMCore; @@ -28847,23 +28653,17 @@ target = 2BBF7206D7FAC92C82A042A99C4A98F8 /* PromisesObjC */; targetProxy = 8A87B1215AE1D57577083FFA7A10794D /* PBXContainerItemProxy */; }; - F874BA643B8F8CA9391AF3C4DA14B4BB /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = CocoaAsyncSocket; - target = 6083682834ABE0AE7BD1CBF06CADD036 /* CocoaAsyncSocket */; - targetProxy = A0E5C722A4A4DA8D4C98FEA0F8BEBD38 /* PBXContainerItemProxy */; - }; F8C1CD1626D72CA6B6AA13427FA2AD1B /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = ReactCommon; target = B6D5DD49633DFF0657B8C3F08EB3ABA9 /* ReactCommon */; targetProxy = 071222278FB4DF525C9E63FA3E8CE461 /* PBXContainerItemProxy */; }; - F98D53E84673952739169D82B178708B /* PBXTargetDependency */ = { + F927698326C83277C0BB35717B906419 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = UMFontInterface; - target = 014495932E402CA67C37681988047CA2 /* UMFontInterface */; - targetProxy = 8AD8A612931AB5375BCA927B1355BAE6 /* PBXContainerItemProxy */; + name = UMConstantsInterface; + target = 9668C19AA6D8EA320F83875FA286855A /* UMConstantsInterface */; + targetProxy = 66F4221E848EE7BDE76D94C17A9F5790 /* PBXContainerItemProxy */; }; F9BED6237125E21323372F82EBB8C492 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -28871,41 +28671,23 @@ target = C3496D0495E700CF08A90C41EA8FA4BB /* FBReactNativeSpec */; targetProxy = 6AE2918D3E48649BDFDD0650FD43651D /* PBXContainerItemProxy */; }; - F9D06C3B19322338DEEB56415CD664B4 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = UMFileSystemInterface; - target = 2644525CCE081E967809A8163D893A93 /* UMFileSystemInterface */; - targetProxy = 1B388C4137AB2141375A8FD417E09E5C /* PBXContainerItemProxy */; - }; - F9F71D7F0BB699D15444F1B9E7BFC89A /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = RCTTypeSafety; - target = D20469A9A1E5CFB26045EAEBE3F88E5E /* RCTTypeSafety */; - targetProxy = 4C3C6FCDA2BC474E37DAF02BA320ECE6 /* PBXContainerItemProxy */; - }; F9FA46C0233788390C83BA97F8A3C218 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = glog; target = D0EFEFB685D97280256C559792236873 /* glog */; targetProxy = B385A03A23F4B1BBC725B05DDC7A641F /* PBXContainerItemProxy */; }; - FA8F132CE582D5BD004ADA9B206A4D09 /* PBXTargetDependency */ = { + FB21FB1B0BD6EC7A7FAECAF140AFB843 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = EXVideoThumbnails; - target = 4A95B7CD1D5F80C5E8CD9CDA00D41F70 /* EXVideoThumbnails */; - targetProxy = B7F0780E57F9BDE184ECB53C994E0404 /* PBXContainerItemProxy */; + name = UMImageLoaderInterface; + target = 97C4DE84FA3CC4EC06AA6D8C249949B7 /* UMImageLoaderInterface */; + targetProxy = F65D35A3A9A8C2B84C096311EAC00F03 /* PBXContainerItemProxy */; }; - FB7BA34E4677479F4775F298820A6BE6 /* PBXTargetDependency */ = { + FBBB6AFA443A55A7E37973024C4DDE49 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "react-native-background-timer"; - target = 6514D69CB93B41626AE1A05581F97B07 /* react-native-background-timer */; - targetProxy = FB266484A3ABACAE4B155B5AF66113FD /* PBXContainerItemProxy */; - }; - FBAED5786B7626E957BCFF0AB0087295 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = EXKeepAwake; - target = 0CF4D9052577C85B6B8C4E957332626B /* EXKeepAwake */; - targetProxy = AB6DAB6359E4ACD364B27F682A933853 /* PBXContainerItemProxy */; + name = UMAppLoader; + target = C452F579644C83E8D8E36EC24A9BBD46 /* UMAppLoader */; + targetProxy = EA9545133A714FFADB0F01FA7A8FAB34 /* PBXContainerItemProxy */; }; FC514DFA49F6184C47ADC7904B6AD14B /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -28913,17 +28695,35 @@ target = 1BEE828C124E6416179B904A9F66D794 /* React */; targetProxy = 9315906521BCE1C6FECB50C7B64C8F5F /* PBXContainerItemProxy */; }; - FD5ADEDBDDA770D71315E8F59A34EB35 /* PBXTargetDependency */ = { + FCFF5FDE0474C4A0477F3C1CEEE555F9 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = UMCameraInterface; - target = 0A915EE9D35CA5636731F8763E774951 /* UMCameraInterface */; - targetProxy = 23FBC0E71514F0468E02B715CD71A813 /* PBXContainerItemProxy */; + name = RNBootSplash; + target = 6677891AC2F7AB93E04BFF30B293A46B /* RNBootSplash */; + targetProxy = 7AB4F3A3EE85D678114DBBFC233D7851 /* PBXContainerItemProxy */; }; - FDD789A6FE9205A4C9B58026716608D1 /* PBXTargetDependency */ = { + FD3E0CC4CF3113FEED0B3D506DF5DB2D /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = MMKV; - target = 91A6826828CB9FCD0169A7547E8A79EA /* MMKV */; - targetProxy = B6639071EF86B47807EC3AF44867D4B8 /* PBXContainerItemProxy */; + name = Firebase; + target = 072CEA044D2EF26F03496D5996BBF59F /* Firebase */; + targetProxy = 1DE4ED15691CDF9568D1A9665410433A /* PBXContainerItemProxy */; + }; + FD7A9F298E71EF6CBB906F72B55CAE3B /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = UMCore; + target = DBCB1B4965863DDD3B9DED9A0918A526 /* UMCore */; + targetProxy = 3644B88692F0E78F27DE71A7B4305E55 /* PBXContainerItemProxy */; + }; + FDE6E56D906A81B719F057A8B3ABE9E2 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "react-native-jitsi-meet"; + target = D39AB631E8050865DE01F6D5678797D2 /* react-native-jitsi-meet */; + targetProxy = FD3A89631850F110A2CF510E73972490 /* PBXContainerItemProxy */; + }; + FE1F3C96B0DD4DA0EE6E2F26DA6EF2E1 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "react-native-notifications"; + target = CA400829100F0628EC209FBB08347D42 /* react-native-notifications */; + targetProxy = F8FF17F961ED44F892CD461A4882C49C /* PBXContainerItemProxy */; }; FF13C50DDCC10521862C497DD83A27F9 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -28931,6 +28731,12 @@ target = A4F685BE3CAC127BDCE4E0DBBD88D191 /* Folly */; targetProxy = 4D17D91F96868CAEDDB41E1118E2D9FF /* PBXContainerItemProxy */; }; + FFE2FCBFBA7C14FC2F5AEFD88E22C454 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "Flipper-Glog"; + target = 6A9637F1BC8154F777335A6420579C05 /* Flipper-Glog */; + targetProxy = 5D3A54348C9B5E4923B0F6F56030065F /* PBXContainerItemProxy */; + }; /* End PBXTargetDependency section */ /* Begin XCBuildConfiguration section */ @@ -28962,7 +28768,7 @@ }; 003F3938252205C778AEAE6B3CA5EF19 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 5D06BF3EB1FB6553A48935C109173930 /* EXLocalAuthentication.release.xcconfig */; + baseConfigurationReference = 7A6F9B81920C270CE5BEDC992914320E /* EXLocalAuthentication.release.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -28990,7 +28796,7 @@ }; 006AFBC6FCCB17BEFAB9433D173BAF0C /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = A59873A2151FBF63DAA0862DE801D1AE /* RCTTypeSafety.debug.xcconfig */; + baseConfigurationReference = 54331796F2353B1FA7883FEEBBCB63CB /* RCTTypeSafety.debug.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -29045,7 +28851,7 @@ }; 020DCEB2FA2C29179A3E14493A6603A0 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 1AE7D0739FA5806E6F14673765F78C79 /* React-jsinspector.release.xcconfig */; + baseConfigurationReference = B4782044EC10FD9DB140B3F6E9054AD7 /* React-jsinspector.release.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -29073,7 +28879,7 @@ }; 02E2C7353DFFBC0058944D4918E49DB2 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 35E6909514C72A28D802A5BA1D95000C /* React-Core.debug.xcconfig */; + baseConfigurationReference = 728EDB6FE35A00B0D25778F0660F44D3 /* React-Core.debug.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -29091,7 +28897,7 @@ }; 02EFD6A33F09391B5FC2D1AE34F42439 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 2AE8ED4D47EA19D4D505FAC25A66067E /* UMCameraInterface.debug.xcconfig */; + baseConfigurationReference = 7705E58971666626858298B319CE3F93 /* UMCameraInterface.debug.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -29125,7 +28931,7 @@ }; 0666FD7E2F8158F6150585C0E2801B63 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 6E14E0CEE1DE2135B46737D70E50767A /* ReactCommon.debug.xcconfig */; + baseConfigurationReference = B2F04D142CC630BFC7B8B890CAB4F0E0 /* ReactCommon.debug.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -29150,36 +28956,9 @@ }; name = Debug; }; - 069E4904583D4141FD62AB20BAB275DE /* Release */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = FC2860AA6BBDB3E9FB279C716016411E /* rn-fetch-blob.release.xcconfig */; - buildSettings = { - APPLICATION_EXTENSION_API_ONLY = NO; - ARCHS = "$(ARCHS_STANDARD_64_BIT)"; - CODE_SIGN_IDENTITY = "iPhone Developer"; - "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - GCC_PREFIX_HEADER = "Target Support Files/rn-fetch-blob/rn-fetch-blob-prefix.pch"; - IPHONEOS_DEPLOYMENT_TARGET = 8.0; - OTHER_LDFLAGS = ""; - OTHER_LIBTOOLFLAGS = ""; - PRIVATE_HEADERS_FOLDER_PATH = ""; - PRODUCT_MODULE_NAME = rn_fetch_blob; - PRODUCT_NAME = "rn-fetch-blob"; - 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; - }; 09A25B46F5EF831F12D8DC150A71DB64 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 44F812BAD233C2A22A6461790EBE5AD6 /* React-RCTLinking.release.xcconfig */; + baseConfigurationReference = 37C7AE9BC89E33B1AF117DB143AB6435 /* React-RCTLinking.release.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -29207,7 +28986,7 @@ }; 0B61F83B3253E9F9CBE5716EB3040EFD /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = CE8515B96EEE31F08F168D2B9AC4D691 /* React-Core.release.xcconfig */; + baseConfigurationReference = 1514FBF9E2F5ACA5F0779042C8A6D2E5 /* React-Core.release.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -29235,7 +29014,7 @@ }; 0C1F80D095D5EFAD22FA9D27FE38755E /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = D361920963428B433A2ADC064FC14813 /* UMImageLoaderInterface.release.xcconfig */; + baseConfigurationReference = 25E310781B155F8BF728BFE1DB73F3CD /* UMImageLoaderInterface.release.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -29252,7 +29031,7 @@ }; 0CF60BA930A13ED11DE8C9A3B6457EB3 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 0BE0F9192683E20BA98C8C2EA4ECF5A3 /* RNDateTimePicker.release.xcconfig */; + baseConfigurationReference = 9EBE8513EE9880A09F02B09F80CABF56 /* RNDateTimePicker.release.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -29305,7 +29084,7 @@ }; 0E0967984E9EEDAE2DB825D775411C33 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = A7D9E92DC1F5E2C934E96BE51A672DED /* RNDeviceInfo.release.xcconfig */; + baseConfigurationReference = 34105583E55E11A350CC94C083EE0812 /* RNDeviceInfo.release.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -29332,7 +29111,7 @@ }; 0FA67B408F5397D6614E29D5F6158B97 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = CEF6574E85E53A7F40ABFD78F61D5315 /* RNConfigReader.release.xcconfig */; + baseConfigurationReference = EF2E203C96DEB13B15CB72B513C9C4E0 /* RNConfigReader.release.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -29359,7 +29138,7 @@ }; 11F71D8FD0DAF9E2C3E225E965C91F2A /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 97CD3F3743671CC2E9A1905DCE895CE3 /* react-native-document-picker.debug.xcconfig */; + baseConfigurationReference = 152FF61C227005E810D18BED6D345EEF /* react-native-document-picker.debug.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -29385,7 +29164,7 @@ }; 1338CC95376DE111E183F0E21553E556 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 600646A79B18A0EB50628411DE70FA2A /* react-native-notifications.debug.xcconfig */; + baseConfigurationReference = DA4C437195FEF977059CC063B17CFF6C /* react-native-notifications.debug.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -29411,7 +29190,7 @@ }; 135F3D49C974222F544098332333370B /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 4956774B7CEB3C00668F241520D85D57 /* React-RCTText.debug.xcconfig */; + baseConfigurationReference = 70C48C8FBB2A2310BFF10C86BB062CBF /* React-RCTText.debug.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -29466,7 +29245,7 @@ }; 1684FEB26BF37EF9DC4A3DD1B469A4FA /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = C9071D2B0FC87235B9674AE17CC4B86A /* React-jsi.release.xcconfig */; + baseConfigurationReference = DE61113DD804EDFA6D3D28A7237D70E6 /* React-jsi.release.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -29535,7 +29314,7 @@ }; 17C4C81C4E7EF12C651709C9B246C240 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 4EBC7FACB50E141DA6A4D7EA34FC21DE /* RNFastImage.release.xcconfig */; + baseConfigurationReference = 416C31CEE3C675FA03825DEB93D218EE /* RNFastImage.release.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -29562,7 +29341,7 @@ }; 1A944E73ACCD8D4CFC2AEC2CCD644B41 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 01C96BB76A2059556A480B926E409D77 /* React-jsinspector.debug.xcconfig */; + baseConfigurationReference = AA69A0C5EA60453EA72D966940C10E6E /* React-jsinspector.debug.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -29589,7 +29368,7 @@ }; 1AF7199724635CFC2C0BC414F1AAF724 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 328D33677E43C627904AA64DB0C9ADAB /* UMCameraInterface.release.xcconfig */; + baseConfigurationReference = A20E55FFE43C2FCD63BD69DBE230BA59 /* UMCameraInterface.release.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -29606,7 +29385,7 @@ }; 1CE86106E25A058EB5B61FA7D0E72060 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = B57C0FDA999BF60FD2D01687DD4F2876 /* FBReactNativeSpec.debug.xcconfig */; + baseConfigurationReference = BED99C373DF99CA1D3FBC5E7F81A319F /* FBReactNativeSpec.debug.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -29658,7 +29437,7 @@ }; 1E85F0B070B37F62925BC426E2A1909F /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 9FF0C1156D7F1A10C946731FA6527EA3 /* RNFastImage.debug.xcconfig */; + baseConfigurationReference = E5E8A9339902B034ED0A3E536B15930D /* RNFastImage.debug.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -29684,7 +29463,7 @@ }; 1FD68DC9973983FD86FE073176C336A1 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = CE8515B96EEE31F08F168D2B9AC4D691 /* React-Core.release.xcconfig */; + baseConfigurationReference = 1514FBF9E2F5ACA5F0779042C8A6D2E5 /* React-Core.release.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -29702,7 +29481,7 @@ }; 1FD78FCF0C533D343B37BC826AFC6B8B /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 1E3F85E2699763383E840DB66FE280F3 /* react-native-webview.debug.xcconfig */; + baseConfigurationReference = 913108B8E542C35EFE7A98D981C757F4 /* react-native-webview.debug.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -29754,7 +29533,7 @@ }; 20F88E1CDBA94ACB3EA68F2B9253C877 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = D26288AC28A3C2083227530664149A61 /* UMConstantsInterface.release.xcconfig */; + baseConfigurationReference = 319A7BC1F0DC1A8C2E8611F0E3E9C8F6 /* UMConstantsInterface.release.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -29796,7 +29575,7 @@ }; 21AA9A352B92EA57A557A37FFCA60D75 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 7F3A7F96EE7DA91347F320A07F9CF373 /* rn-extensions-share.debug.xcconfig */; + baseConfigurationReference = 9C3161FAC00CE3C00310EFF7BE18806A /* rn-extensions-share.debug.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -29822,7 +29601,7 @@ }; 21D2953E38C8DD2001B80461521AABE6 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 1163286817EABFB4D7BA7E76A1C85633 /* React-jsiexecutor.release.xcconfig */; + baseConfigurationReference = D9A200BBF13BB4915F46031A89FF6C5A /* React-jsiexecutor.release.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -29850,7 +29629,7 @@ }; 2236A0EBC7F306402E0BB7A440642910 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = DF681188117E7118975A20BE91DB9C2E /* UMImageLoaderInterface.debug.xcconfig */; + baseConfigurationReference = 4AAE0836A9A0CFAFFF721D6884637306 /* UMImageLoaderInterface.debug.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -29866,7 +29645,7 @@ }; 23026F0D93110B28E689E6BB7695F956 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 28476FAB62AA82A560208FCD2225F979 /* UMSensorsInterface.release.xcconfig */; + baseConfigurationReference = 6A653D7B9D37FA53E3075AA514F01543 /* UMSensorsInterface.release.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -29883,7 +29662,7 @@ }; 233E91B6584859484A37FEFD8886DF4E /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = BD10ABD4FC3F60F7975CEEC6CB6F1CFA /* ReactNativeART.release.xcconfig */; + baseConfigurationReference = 30027C4C59F07D43E67791AD69BE78A3 /* ReactNativeART.release.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -29910,7 +29689,7 @@ }; 23712E9BDBE1344689237B616B99AEA1 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 6D604183C8F87932EA13E5EAC860AFB3 /* RNBootSplash.debug.xcconfig */; + baseConfigurationReference = 4441F2940C6722DD773BFA75CCA20F84 /* RNBootSplash.debug.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -29962,7 +29741,7 @@ }; 241391C4F4418DE3669DAC6DB3894E2B /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 47135A5C5BE770C65EB3FEF779F3097D /* UMConstantsInterface.debug.xcconfig */; + baseConfigurationReference = BB3134EBD7A8FC2436C0D89788BD858E /* UMConstantsInterface.debug.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -29978,7 +29757,7 @@ }; 246D2F57373941B41420A899E6697244 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 0016706FD6DA60F70AC4877B2ACA65BA /* UMSensorsInterface.debug.xcconfig */; + baseConfigurationReference = FB67DE7570F66944A6D8D9DCE33229B0 /* UMSensorsInterface.debug.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -29994,7 +29773,7 @@ }; 24CE60708CE99D4EC1DE102DBB703225 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 4E076C44C413E47F342AC4EE67E397E2 /* EXConstants.release.xcconfig */; + baseConfigurationReference = 22629D11EB2B355DA16B970AFFDB7450 /* EXConstants.release.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -30109,7 +29888,7 @@ }; 26703BF1804D33DA9A7CF9F81697AA4E /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 7CEB1CEEA011E402873E3FE6281AF212 /* react-native-orientation-locker.debug.xcconfig */; + baseConfigurationReference = 5DC7E90105EED59F772F26A04BF69EC3 /* react-native-orientation-locker.debug.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -30135,7 +29914,7 @@ }; 2673EC1B271FA46D7BFDE37D9A3B80D7 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = C024616A7F971881825C53BFA4C681FD /* RNGestureHandler.release.xcconfig */; + baseConfigurationReference = 33AE7E2BC8F03949CB5151D11F1C3A81 /* RNGestureHandler.release.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -30217,7 +29996,7 @@ }; 27741A099B2410EAEA6C6F7E1559B4E9 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 299246C1B027F6E7FA58E83A9150AFB5 /* UMFileSystemInterface.debug.xcconfig */; + baseConfigurationReference = 3BC5DF46B8687E39806371E7E7E4EE8B /* UMFileSystemInterface.debug.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -30257,6 +30036,31 @@ }; name = Release; }; + 28B0C0CCFE2D54870E19B9A1F4B47D2B /* Debug */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 147BDCA90DC5E70DBCD86D079279CC22 /* Pods-ShareRocketChatRN.debug.xcconfig */; + buildSettings = { + ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO; + APPLICATION_EXTENSION_API_ONLY = NO; + ARCHS = "$(ARCHS_STANDARD_64_BIT)"; + CLANG_ENABLE_OBJC_WEAK = NO; + CODE_SIGN_IDENTITY = "iPhone Developer"; + "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; + IPHONEOS_DEPLOYMENT_TARGET = 11.0; + MACH_O_TYPE = staticlib; + MODULEMAP_FILE = "Target Support Files/Pods-ShareRocketChatRN/Pods-ShareRocketChatRN.modulemap"; + OTHER_LDFLAGS = ""; + OTHER_LIBTOOLFLAGS = ""; + PODS_ROOT = "$(SRCROOT)"; + PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.${PRODUCT_NAME:rfc1034identifier}"; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + TARGETED_DEVICE_FAMILY = "1,2"; + }; + name = Debug; + }; 28B771640B365EFF7291DB02F258AE73 /* Debug */ = { isa = XCBuildConfiguration; baseConfigurationReference = C176202B0EFF6CEF40BE45FD2500C537 /* MMKV.debug.xcconfig */; @@ -30316,7 +30120,7 @@ }; 2C97BC281FD4710359FCA2624B946742 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 61190B649DECA3233E036C2E27576AAD /* react-native-cameraroll.release.xcconfig */; + baseConfigurationReference = 82902E0C44568048C430BC27BFC98FDB /* react-native-cameraroll.release.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -30343,7 +30147,7 @@ }; 2D2F62753E5B1FC985ECFA9AB7834DDA /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 40612F8CF2A2C92FE9200274E48A38F5 /* React-jsiexecutor.debug.xcconfig */; + baseConfigurationReference = 9508603F6BA1F20B9C84BA262FE29F08 /* React-jsiexecutor.debug.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -30370,7 +30174,7 @@ }; 2F3665146914035B90902D1C625161FA /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 784022803F34788B4D388DA5581E6920 /* UMFileSystemInterface.release.xcconfig */; + baseConfigurationReference = EFEEB8BF93362FC69EE6E8F55E3245A4 /* UMFileSystemInterface.release.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -30387,7 +30191,7 @@ }; 2F931C003026BA8635FC030BC632F564 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 17762E112CF7FDA3FF991A591EE56FC3 /* RNFBCrashlytics.release.xcconfig */; + baseConfigurationReference = AA6DB86CAAF4362E6B415731F3E26A31 /* RNFBCrashlytics.release.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -30414,7 +30218,7 @@ }; 3006B3D3A843978B5AF5ED354859C504 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = DF37C491FCA7E98BCF5661AE7BA1AA8F /* ReactNativeKeyboardTrackingView.release.xcconfig */; + baseConfigurationReference = D578226409223BA387A9859CEA244900 /* ReactNativeKeyboardTrackingView.release.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -30441,7 +30245,7 @@ }; 30DA8B308BA1F5B848C4BD42552D4FDE /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 2B50EC2EE1F19486F0667713AD0A20B3 /* React-RCTImage.release.xcconfig */; + baseConfigurationReference = 98FBFC4013373EA7B9B7B048270F2A84 /* React-RCTImage.release.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -30469,7 +30273,7 @@ }; 3101FEBBD4620A99AE756B72F7A305B5 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 4382086837B45B455742559DF0B47770 /* FBLazyVector.release.xcconfig */; + baseConfigurationReference = 4A93A3F0212383F09DF1C628E805EEE8 /* FBLazyVector.release.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -30486,7 +30290,7 @@ }; 31D730693D9596C827D1EEA9CE15FD7F /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 36F6E40F093384CB14CB295B27ABC9F9 /* EXHaptics.debug.xcconfig */; + baseConfigurationReference = 8CDC7277B649B7DDE10FDF7A1ACDD84C /* EXHaptics.debug.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -30513,7 +30317,7 @@ }; 3277364A21737CF8A089E2AE592D42D3 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = B48B0BCCD3C6C914732896C8EE15BD0C /* RNVectorIcons.debug.xcconfig */; + baseConfigurationReference = 212E87F4E56036CBA470C4BD58DFFB23 /* RNVectorIcons.debug.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -30539,7 +30343,7 @@ }; 32BFC0EAF794341206060179B12E4900 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 959694E837863732CC9FDA8D7E47D5E8 /* UMPermissionsInterface.release.xcconfig */; + baseConfigurationReference = FBFC807669C93C25E3305116FCDC8837 /* UMPermissionsInterface.release.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -30567,7 +30371,7 @@ }; 33525175C23E323B3991150A80EFFEAD /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 5B094BF3F5248F9220D403A8D4AECFC5 /* React-RCTBlob.debug.xcconfig */; + baseConfigurationReference = 8CD5D3539D260B1648FD028509CE3E9C /* React-RCTBlob.debug.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -30594,7 +30398,7 @@ }; 34DA6C9EF1A02C2C5B93E897CA6FB8E6 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 739825A0FDF0425CD3B7964A439AA9EE /* ReactCommon.release.xcconfig */; + baseConfigurationReference = AFA97D49ECF479AEBEE10680EE31A51B /* ReactCommon.release.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -30650,7 +30454,7 @@ }; 380B06BE681DEE8230A0D6291E78203D /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 4470E7F334F720A2442836C4DE1412F9 /* React-RCTNetwork.release.xcconfig */; + baseConfigurationReference = 63AE8981557B5472C48C73815EFDD81B /* React-RCTNetwork.release.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -30678,7 +30482,7 @@ }; 3814993E1C71399C48968CECDF10D526 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 7DE6A677E0E6DFFA30734D9136451DDD /* rn-extensions-share.release.xcconfig */; + baseConfigurationReference = EA8532670E0824F80AEE80CE3E166834 /* rn-extensions-share.release.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -30757,7 +30561,7 @@ }; 3D8A5952584E8DB30356F62F2948D77A /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 3D05B4ABDF0E6711F632BA6226F45A95 /* UMTaskManagerInterface.debug.xcconfig */; + baseConfigurationReference = A3AF08EAE33371257469FD983FC2994C /* UMTaskManagerInterface.debug.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -30773,7 +30577,7 @@ }; 3E0BE3BAAB9E308179BC6858FC46E8C7 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 233FEC3F1ECAB8D606435734B496DE94 /* React-callinvoker.release.xcconfig */; + baseConfigurationReference = E4B92FFE0E725593C47FDAA9082740BD /* React-callinvoker.release.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -30815,7 +30619,7 @@ }; 3F60D0E08324E58D8375C87E0FEBD7A1 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 8884C0419AA63792B76075827E83C254 /* Yoga.debug.xcconfig */; + baseConfigurationReference = 1FE852AD4A00AD90F2F8490F4A630BF0 /* Yoga.debug.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -30871,7 +30675,7 @@ }; 41300370952473416EB0DC08BCF2CAB0 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 872E56EE2C06838095DEE0107BAE3A23 /* UMFaceDetectorInterface.debug.xcconfig */; + baseConfigurationReference = 2F083888A736E2C447072045F24C02D2 /* UMFaceDetectorInterface.debug.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -30887,7 +30691,7 @@ }; 4185DFC98EFDEBE86EA22D97C01CBE9A /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 9828A8AAB0301FDF0CAA66114B6B0F92 /* EXWebBrowser.release.xcconfig */; + baseConfigurationReference = 49F6C22414F842ABC3D5C2364213EA49 /* EXWebBrowser.release.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -30915,7 +30719,7 @@ }; 4353EEC063D59919914E9D9EE2A61D11 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = E95C27727C333696DE3CE5DD21ECD8B2 /* RNCAsyncStorage.release.xcconfig */; + baseConfigurationReference = E842FB0194152421B0388A100AC13F5D /* RNCAsyncStorage.release.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -30968,7 +30772,7 @@ }; 43C5DDFC592C3DFBA2EE7F06B286186E /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = FFD260E5D2C738B6BF820B4023CCBCD3 /* RNRootView.release.xcconfig */; + baseConfigurationReference = F955A5A06194B758ECF9B4F0FFC6903F /* RNRootView.release.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -30995,7 +30799,7 @@ }; 43C87197652B80848612B41A36422A7B /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 7F539EF06CF6824CA9CD00CA7BC7CB6A /* KeyCommands.debug.xcconfig */; + baseConfigurationReference = 10586F4EBB6F94DBCA6929DE382470E4 /* KeyCommands.debug.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -31021,7 +30825,7 @@ }; 4432B925223A4ED97B63826291EAC2F3 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = D9787096DA16ABD18BCCD258A9FB9C78 /* React.release.xcconfig */; + baseConfigurationReference = F1BD9EE9AF436CF1E4F5633FDDC8A9E0 /* React.release.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -31091,7 +30895,7 @@ }; 4B4057F32648D959EDDBC2B05CC50E5F /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = C53198250A34CDD0600420FC17178B5B /* react-native-background-timer.release.xcconfig */; + baseConfigurationReference = 5B6F4DD3391EEC4009CBB847FED6DDC8 /* react-native-background-timer.release.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -31135,7 +30939,7 @@ }; 4E071B76BCC690294493D5F0473770E3 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 91FDDBDAD2D606535800280794F4064E /* FBReactNativeSpec.release.xcconfig */; + baseConfigurationReference = 5CD71215B8EE60E18EEDF1C2D5F124F9 /* FBReactNativeSpec.release.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -31163,7 +30967,7 @@ }; 4EA1C88CB560BD57129EA38F08DA984C /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = ECD7910C1E27895790CA2D50173A0FB5 /* React-RCTActionSheet.debug.xcconfig */; + baseConfigurationReference = 22A3E937F0938445194AE986BDD05F25 /* React-RCTActionSheet.debug.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -31179,7 +30983,7 @@ }; 5184258ADF1B3BE8D5537D4065FE4121 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 0F74DED5CCE9B88A2F10D02E10B256A1 /* React-jsi.debug.xcconfig */; + baseConfigurationReference = 9C0BD7B90625A3C61DFC9548B3F17020 /* React-jsi.debug.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -31204,9 +31008,34 @@ }; name = Debug; }; + 51B8F52A33A25AA5AFE73D65A9DB2ED7 /* Debug */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 9F263719772A77F5C2E42FDE20EE9DEC /* Pods-RocketChatRN.debug.xcconfig */; + buildSettings = { + ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO; + APPLICATION_EXTENSION_API_ONLY = NO; + ARCHS = "$(ARCHS_STANDARD_64_BIT)"; + CLANG_ENABLE_OBJC_WEAK = NO; + CODE_SIGN_IDENTITY = "iPhone Developer"; + "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; + IPHONEOS_DEPLOYMENT_TARGET = 11.0; + MACH_O_TYPE = staticlib; + MODULEMAP_FILE = "Target Support Files/Pods-RocketChatRN/Pods-RocketChatRN.modulemap"; + OTHER_LDFLAGS = ""; + OTHER_LIBTOOLFLAGS = ""; + PODS_ROOT = "$(SRCROOT)"; + PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.${PRODUCT_NAME:rfc1034identifier}"; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + TARGETED_DEVICE_FAMILY = "1,2"; + }; + name = Debug; + }; 524071AA2798EB6CD9BA190999377D9C /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 6B3B7295D7F8B3A1A12FBFF80B2AD01F /* RNLocalize.debug.xcconfig */; + baseConfigurationReference = 4A109ADFD9DF216B0398F92BF13E6105 /* RNLocalize.debug.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -31232,7 +31061,7 @@ }; 52E63755187A39512D1FFDDCC626FAF0 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 2939EB4E5E7E94A02C3A9CD37B99AC49 /* react-native-slider.release.xcconfig */; + baseConfigurationReference = B796A4811E900479D9C0B12B8BDD78A4 /* react-native-slider.release.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -31286,7 +31115,7 @@ }; 5563375E4192870FE385ECE1DC859756 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 591C71BB3B796D89B345747C9C9A26B7 /* react-native-notifications.release.xcconfig */; + baseConfigurationReference = 3B18616BAD314F5FB22B423EC02BB277 /* react-native-notifications.release.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -31313,7 +31142,7 @@ }; 566601CE5FE23D9BE5A147AF28AB91C6 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = A6D49DD54896F660CD6543B59ADB425C /* EXConstants.debug.xcconfig */; + baseConfigurationReference = C299A3D08D0711B5597F56C4AA43BECF /* EXConstants.debug.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -31340,7 +31169,7 @@ }; 575C40AA703D6A263895C74CEF82C70B /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 1D35B8F90C4B0C183884AE2D6077C005 /* KeyCommands.release.xcconfig */; + baseConfigurationReference = 6DA978F4185B2D4435F565FBB6613130 /* KeyCommands.release.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -31394,7 +31223,7 @@ }; 5928054F11072572E2EBC5A6EACE604F /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = A2DB9A08443DA9E2D1E3CBBD63F734E3 /* EXLocalAuthentication.debug.xcconfig */; + baseConfigurationReference = A568251D41EA44BC8B0F4DAD3741B354 /* EXLocalAuthentication.debug.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -31448,7 +31277,7 @@ }; 5C4EA8B557E49908AC7F24F172238756 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 7327566E630ABBF4AA3439CE94E441D7 /* react-native-orientation-locker.release.xcconfig */; + baseConfigurationReference = A0D05D00D0095A754EAE82B02671E2CB /* react-native-orientation-locker.release.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -31475,7 +31304,7 @@ }; 5D0F792C27831D94F2F52D29B7566FE5 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 53B21F3EF5F0D817E9D21979C164A79A /* Yoga.release.xcconfig */; + baseConfigurationReference = 3411586E47B7D03288A8ED57EF5342AF /* Yoga.release.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -31504,7 +31333,7 @@ }; 5D9F27AE922C2275B80490984526D63D /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 86A843D20B203EAA588249505E8993B4 /* react-native-appearance.debug.xcconfig */; + baseConfigurationReference = A54852A4485A3346864FA7557DC6D9BB /* react-native-appearance.debug.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -31530,7 +31359,7 @@ }; 5DB62EE09E32C3C5AFB53E5CF490836B /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 7C599A1B347A877D641536645093F9CA /* EXAV.release.xcconfig */; + baseConfigurationReference = FCA8B8FA3AC9F624A5A2D5D3F04AE912 /* EXAV.release.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -31558,7 +31387,7 @@ }; 5E5EDD5D3A0ABDC9540A630105470032 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = C14756E56C3613A0E54881830E099898 /* EXImageLoader.release.xcconfig */; + baseConfigurationReference = 0D9221B3FB20A788F4AF98B718E061AE /* EXImageLoader.release.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -31584,34 +31413,9 @@ }; name = Release; }; - 5E6812B518334F69B1D296F1E675DD49 /* Debug */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 9F263719772A77F5C2E42FDE20EE9DEC /* Pods-RocketChatRN.debug.xcconfig */; - buildSettings = { - ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO; - APPLICATION_EXTENSION_API_ONLY = NO; - ARCHS = "$(ARCHS_STANDARD_64_BIT)"; - CLANG_ENABLE_OBJC_WEAK = NO; - CODE_SIGN_IDENTITY = "iPhone Developer"; - "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - IPHONEOS_DEPLOYMENT_TARGET = 11.0; - MACH_O_TYPE = staticlib; - MODULEMAP_FILE = "Target Support Files/Pods-RocketChatRN/Pods-RocketChatRN.modulemap"; - OTHER_LDFLAGS = ""; - OTHER_LIBTOOLFLAGS = ""; - PODS_ROOT = "$(SRCROOT)"; - PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.${PRODUCT_NAME:rfc1034identifier}"; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - TARGETED_DEVICE_FAMILY = "1,2"; - }; - name = Debug; - }; 5F100DCA9E9A50832C45C7C017BA3ECC /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 8EECD41092463F29BACCCD2298420D8D /* EXKeepAwake.debug.xcconfig */; + baseConfigurationReference = A29FF112CEE9782433C936F7C277710C /* EXKeepAwake.debug.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -31664,7 +31468,7 @@ }; 61D3974125FDECF58BCFB02569AABAEF /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = E8101F5607C38BCCA44465470167659D /* EXHaptics.release.xcconfig */; + baseConfigurationReference = D8CE7DB2A244CC7D188DB61DE9D78432 /* EXHaptics.release.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -31708,7 +31512,7 @@ }; 63D73649BB61EEB35967D5B5CBE44056 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = E9B4385E44E2775A1CAD50DE96C7FC17 /* react-native-safe-area-context.release.xcconfig */; + baseConfigurationReference = BD421BFF30816FBFF94A1D8DD7C11849 /* react-native-safe-area-context.release.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -31735,7 +31539,7 @@ }; 642CC74DF28B75CB994A1C2E6A3F9880 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 315B96E1A389F5742EECA6EB59B63DA4 /* UMReactNativeAdapter.debug.xcconfig */; + baseConfigurationReference = 84BC990B5932F4C9A221B8FA827227D5 /* UMReactNativeAdapter.debug.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -31762,7 +31566,7 @@ }; 6521E5255E85BBF827A6D6D6D56BFA02 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = B65F6B6AFDDF679826C5342BCE3C2CB4 /* RNCMaskedView.debug.xcconfig */; + baseConfigurationReference = 8663725A3ADCD9784ACC2DFBC44C6DB2 /* RNCMaskedView.debug.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -31804,7 +31608,7 @@ }; 6A6A8E9DE92AB115199CB4C2F83D58BE /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 813541EC1227B6192BEDCC61422B7F7E /* EXAppleAuthentication.debug.xcconfig */; + baseConfigurationReference = 9CB3E350CD65B8202DD367A2AD86B6DF /* EXAppleAuthentication.debug.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -31829,32 +31633,6 @@ }; name = Debug; }; - 6D20B5094034446440C0039183AFCC2D /* Debug */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 04264099B10AC369360E77DC32FBA9A5 /* rn-fetch-blob.debug.xcconfig */; - buildSettings = { - APPLICATION_EXTENSION_API_ONLY = NO; - ARCHS = "$(ARCHS_STANDARD_64_BIT)"; - CODE_SIGN_IDENTITY = "iPhone Developer"; - "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - GCC_PREFIX_HEADER = "Target Support Files/rn-fetch-blob/rn-fetch-blob-prefix.pch"; - IPHONEOS_DEPLOYMENT_TARGET = 8.0; - OTHER_LDFLAGS = ""; - OTHER_LIBTOOLFLAGS = ""; - PRIVATE_HEADERS_FOLDER_PATH = ""; - PRODUCT_MODULE_NAME = rn_fetch_blob; - PRODUCT_NAME = "rn-fetch-blob"; - 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; - }; 6FA51C240782DF66D968E56F93D416C3 /* Debug */ = { isa = XCBuildConfiguration; baseConfigurationReference = 13F876D48D3CAF83C601684F414D9FF1 /* GoogleUtilities.debug.xcconfig */; @@ -31883,7 +31661,7 @@ }; 734396EEB48FFFF22B92D8349091A261 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = E0F35E91C5D29DA6E86BDC3BF264F3F7 /* BugsnagReactNative.release.xcconfig */; + baseConfigurationReference = 2EDFC82A9FA6B812A1C11B6226D57CA9 /* BugsnagReactNative.release.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -31937,7 +31715,7 @@ }; 77AC19305A0EFB3BDFAFC47C1351729E /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 0709BBC41221895334569C4856137579 /* react-native-slider.debug.xcconfig */; + baseConfigurationReference = 73C8B46301BDF892A23754F31A7A501C /* react-native-slider.debug.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -31961,32 +31739,6 @@ }; name = Debug; }; - 793D89067BFBD9A396CC574B1C3D02E6 /* Release */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 68AC99B30175038756318A5894F6AA9A /* Pods-RocketChatRN.release.xcconfig */; - buildSettings = { - ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO; - APPLICATION_EXTENSION_API_ONLY = NO; - ARCHS = "$(ARCHS_STANDARD_64_BIT)"; - CLANG_ENABLE_OBJC_WEAK = NO; - CODE_SIGN_IDENTITY = "iPhone Developer"; - "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - IPHONEOS_DEPLOYMENT_TARGET = 11.0; - MACH_O_TYPE = staticlib; - MODULEMAP_FILE = "Target Support Files/Pods-RocketChatRN/Pods-RocketChatRN.modulemap"; - OTHER_LDFLAGS = ""; - OTHER_LIBTOOLFLAGS = ""; - PODS_ROOT = "$(SRCROOT)"; - PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.${PRODUCT_NAME:rfc1034identifier}"; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - TARGETED_DEVICE_FAMILY = "1,2"; - VALIDATE_PRODUCT = YES; - }; - name = Release; - }; 7A2AE55D55168A1D1CB5B425EA2F2D8B /* Debug */ = { isa = XCBuildConfiguration; baseConfigurationReference = FD236DFE6817BBC71CF2436E1716C085 /* glog.debug.xcconfig */; @@ -32016,7 +31768,7 @@ }; 7AF14BFA566044589CBBE7905ACE8243 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = E29B4CE694486857A5640F64EA98DFE4 /* RNImageCropPicker.debug.xcconfig */; + baseConfigurationReference = E14E0BC1417E99F96262AFDEAC811761 /* RNImageCropPicker.debug.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -32132,7 +31884,7 @@ }; 8324AD96D623285BCCE413528470AE46 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 22B2FC9B1379734F4632EC03F671F938 /* RNScreens.debug.xcconfig */; + baseConfigurationReference = 3D6018E5288BE28B9EC1F1A143AEACC8 /* RNScreens.debug.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -32158,7 +31910,7 @@ }; 8334456F9E9FDD79920C1AA56FAB4EA3 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 48F31C9E21AD82BF2534690A1ADD63F6 /* RNRootView.debug.xcconfig */; + baseConfigurationReference = FD0EB7A71B4512820E6B538699BBDEB4 /* RNRootView.debug.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -32184,7 +31936,7 @@ }; 8515DA449755D000C9EDB262016308FF /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 240A0604FB3B4D9B563670304DDF5727 /* EXKeepAwake.release.xcconfig */; + baseConfigurationReference = BDF0CA635BC628B26D2553BEA2D595B8 /* EXKeepAwake.release.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -32212,7 +31964,7 @@ }; 85E70507157E2E8FEE1BCB6FAEDC87E3 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 05200422CF221FE64B404ED285B28A81 /* react-native-webview.release.xcconfig */; + baseConfigurationReference = 8667BECE652CF876779D45518F931AD9 /* react-native-webview.release.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -32239,7 +31991,7 @@ }; 870D6A60CAE4FAA1465C9E908F604BEC /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 8FB5DFA213A6F5AE786C9DA06E5EDB97 /* react-native-mmkv-storage.release.xcconfig */; + baseConfigurationReference = E0DEDA104BFC984FA4D38BAB8CAB3327 /* react-native-mmkv-storage.release.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -32266,7 +32018,7 @@ }; 87DC6830A5078830DBFF761F9E7960EB /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 4908928E270C6B7358719FDD46676BD8 /* RNCMaskedView.release.xcconfig */; + baseConfigurationReference = 6FB28DE401C741754F74971739F5197A /* RNCMaskedView.release.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -32293,7 +32045,7 @@ }; 88F49D2A484D30C260D9C407ADECA1B8 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = CA3F4D9022ACE979D21EF614A7442934 /* React-callinvoker.debug.xcconfig */; + baseConfigurationReference = 47B2CFFA7BB9D017FD9B29C2B45AC44B /* React-callinvoker.debug.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -32377,7 +32129,7 @@ }; 8B558936ADBEFDBFFC5E9BA901A7EB44 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = AC50AFC4D54DB009646B9159F60A54A1 /* EXFileSystem.release.xcconfig */; + baseConfigurationReference = B633B6BA4DF021F448946781AB1752DF /* EXFileSystem.release.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -32405,7 +32157,7 @@ }; 8BF892ADB4D15FD34810EADD67A95124 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = EFCD3A6297E4D831C280F58CCA656218 /* ReactNativeART.debug.xcconfig */; + baseConfigurationReference = 5B2A93BF0331B2DD1FA0130AC6DE5F35 /* ReactNativeART.debug.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -32457,7 +32209,7 @@ }; 8D507DADE0F407D4C5410A67F2540A43 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 52ED500EA48961193188CD27BF85587D /* RNBootSplash.release.xcconfig */; + baseConfigurationReference = 80703130FEA470710BE011CD13E28F37 /* RNBootSplash.release.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -32484,7 +32236,7 @@ }; 8E5775EA01828A89A9C84059FE5CA87B /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 381810022A980CE3E07CBAFCCA20F69B /* React-RCTSettings.release.xcconfig */; + baseConfigurationReference = 37ACDF2E77393C4BB6C57BEAEA4AD1D0 /* React-RCTSettings.release.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -32512,7 +32264,7 @@ }; 8F081C07D357D0FE6680BFAEBDDFD7DE /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = D0693CE22C26695AD5D0245ACBAC9F3C /* RNImageCropPicker.release.xcconfig */; + baseConfigurationReference = DEEAEA86A5264367C48194D42559ED39 /* RNImageCropPicker.release.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -32539,7 +32291,7 @@ }; 8F125C611123441DD928C0DD69F449EB /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 4091633735C27CE006EE16DA0ED3F70A /* react-native-jitsi-meet.debug.xcconfig */; + baseConfigurationReference = 9490BFAF124F8A78496C431CD5445F01 /* react-native-jitsi-meet.debug.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -32565,7 +32317,7 @@ }; 8F6FCFBCA2D7CDAA42972A149EF7D4E4 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = C4AAD8F880DFA4979E72502A2E1DB4C7 /* RNVectorIcons.release.xcconfig */; + baseConfigurationReference = EB8CAC2469765EC8EE6D42D9C4E73E20 /* RNVectorIcons.release.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -32592,7 +32344,7 @@ }; 91C9312ECE7854AB6E94AB8E33E9DC7B /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = B59DC524F4C232EFBD99B851A98BBD5E /* BugsnagReactNative.debug.xcconfig */; + baseConfigurationReference = E2DB8157BC7DC2611A33805FA540DF3C /* BugsnagReactNative.debug.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -32643,35 +32395,9 @@ }; name = Release; }; - 93096983A11D24A1DBBB63B50A1E2C8D /* Release */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 464E12AB95B3A7254CF4C5447E9369FA /* Pods-ShareRocketChatRN.release.xcconfig */; - buildSettings = { - ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO; - APPLICATION_EXTENSION_API_ONLY = NO; - ARCHS = "$(ARCHS_STANDARD_64_BIT)"; - CLANG_ENABLE_OBJC_WEAK = NO; - CODE_SIGN_IDENTITY = "iPhone Developer"; - "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - IPHONEOS_DEPLOYMENT_TARGET = 11.0; - MACH_O_TYPE = staticlib; - MODULEMAP_FILE = "Target Support Files/Pods-ShareRocketChatRN/Pods-ShareRocketChatRN.modulemap"; - OTHER_LDFLAGS = ""; - OTHER_LIBTOOLFLAGS = ""; - PODS_ROOT = "$(SRCROOT)"; - PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.${PRODUCT_NAME:rfc1034identifier}"; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - TARGETED_DEVICE_FAMILY = "1,2"; - VALIDATE_PRODUCT = YES; - }; - name = Release; - }; 93327737F52E8517C5248270B4826E51 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = B4CDB506C4651CF6C6E26964F375783D /* UMReactNativeAdapter.release.xcconfig */; + baseConfigurationReference = E7A1F54CF1550DE076C1E43DD7E9C2B4 /* UMReactNativeAdapter.release.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -32726,7 +32452,7 @@ }; 94E71A5AAF3EB2748169947DCC9D80A7 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 98CD077C1D0F8C6C84D2A0C2F903C1A4 /* React-RCTAnimation.release.xcconfig */; + baseConfigurationReference = 5A09B84FE66CD31475E6E02E791E6AE1 /* React-RCTAnimation.release.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -32754,7 +32480,7 @@ }; 96CF32B0E12FEDD12C0FD751DAB4D76F /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = B549A7E45CCC048D345D4E1DCF59A85E /* RNFBCrashlytics.debug.xcconfig */; + baseConfigurationReference = 309CC8389030B4B592160DADDB0C242D /* RNFBCrashlytics.debug.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -32780,7 +32506,7 @@ }; 970791231C44919F7142E9B708ECA39C /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 521B70D5DD2C6D7EEB6391518ACE1CAF /* EXAppleAuthentication.release.xcconfig */; + baseConfigurationReference = 590AA0284A185DEB2F6E7EB478B87474 /* EXAppleAuthentication.release.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -32808,7 +32534,7 @@ }; 97A258CFF292221D888B34C00DFF8CEB /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = CCB8B95FEA43BB698CB842B468123F6C /* UMFaceDetectorInterface.release.xcconfig */; + baseConfigurationReference = 1B3992AF1B85A8F16608E275651353E3 /* UMFaceDetectorInterface.release.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -32852,7 +32578,7 @@ }; 99C4CF39EFC7D751EC616C78734B8102 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 5B93654EC83C18D9034376903964105B /* RNReanimated.release.xcconfig */; + baseConfigurationReference = E032B7D27DBC2C30222D584A1041D3E4 /* RNReanimated.release.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -32879,7 +32605,7 @@ }; 9AD862A3FA9A8C5D93D92B9EFB3BE3A5 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 23515F140F314D38FF8E744CA13832D4 /* react-native-background-timer.debug.xcconfig */; + baseConfigurationReference = 71F30927FE87C64AC3B5478EA9F684C1 /* react-native-background-timer.debug.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -32905,7 +32631,7 @@ }; 9B3FED3EBF3EA3DAE80951C569F8B0E8 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 246949E5FF4118302D0130A6CE306257 /* FBLazyVector.debug.xcconfig */; + baseConfigurationReference = B59EEA89165C79D740E9F7E668C36CD5 /* FBLazyVector.debug.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -32921,7 +32647,7 @@ }; 9C9404E94C3B90059E993B0B27C0ECB4 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 0B10AB992B97BBD69B235538CBC74ED3 /* React-RCTActionSheet.release.xcconfig */; + baseConfigurationReference = 55080F3098DF4E2325515CD506183A7D /* React-RCTActionSheet.release.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -32938,7 +32664,7 @@ }; 9D7A311D2B277C9D20EBF0AB1C27A417 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 50D066D05FC3400486D0BACEAC86C157 /* React-RCTBlob.release.xcconfig */; + baseConfigurationReference = 60A21E099D5AFA081A586A3E1FF44B72 /* React-RCTBlob.release.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -32966,7 +32692,7 @@ }; 9DDBA0A9845B873604774272DE52332C /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 80B56924E6DBFF597348ED058F104360 /* EXAV.debug.xcconfig */; + baseConfigurationReference = 9CFABA37DA49BE1E73E2D3391A077BC3 /* EXAV.debug.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -33009,7 +32735,7 @@ }; A0951B9E99124E41DC7165676455F2D6 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 3B71CD884560072342CD67020641D666 /* EXVideoThumbnails.debug.xcconfig */; + baseConfigurationReference = F36486BDD5A4BBAF53668B3074195C85 /* EXVideoThumbnails.debug.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -33063,7 +32789,7 @@ }; A30DBFB1FCF612228C139E47A11A761D /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 491BE702DDF7794091447DE465250257 /* RCTTypeSafety.release.xcconfig */; + baseConfigurationReference = F58CCB42F2B72162B48CEC5AA4C952C2 /* RCTTypeSafety.release.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -33200,7 +32926,7 @@ }; AB0C5DBCBAF76212B344FADD43A07E14 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 2A9E642B7438B584CE40B00822D623B6 /* React-cxxreact.release.xcconfig */; + baseConfigurationReference = 0DC32B9E5DF32440966958300E1E528E /* React-cxxreact.release.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -33255,7 +32981,7 @@ }; ADAB0420D478021A93BC72BA69F9557F /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = D0693CE22C26695AD5D0245ACBAC9F3C /* RNImageCropPicker.release.xcconfig */; + baseConfigurationReference = DEEAEA86A5264367C48194D42559ED39 /* RNImageCropPicker.release.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -33273,7 +32999,7 @@ }; AF50ABAF5D4FC96FD6BD3E5B80541CD9 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = E29B4CE694486857A5640F64EA98DFE4 /* RNImageCropPicker.debug.xcconfig */; + baseConfigurationReference = E14E0BC1417E99F96262AFDEAC811761 /* RNImageCropPicker.debug.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -33299,7 +33025,7 @@ }; B05C2894390D644A4A148947FEB748C9 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = B6802B58999FB4D3FD7BAD1E70322ADF /* EXWebBrowser.debug.xcconfig */; + baseConfigurationReference = 48077F3173C437980E344105E6538C8B /* EXWebBrowser.debug.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -33342,7 +33068,7 @@ }; B0ACC6A772A13986776D06CFEE5BFD64 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 5C1400EE7D0C77C4DCC222F93DBBF116 /* RNLocalize.release.xcconfig */; + baseConfigurationReference = AAA31ECA5C35C35D5B4A2BFA46D56C7B /* RNLocalize.release.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -33367,9 +33093,9 @@ }; name = Release; }; - B23533822C73D683E59AB6F88FCBA9C1 /* Debug */ = { + B3EC1CD40243CE54C90B7CAB7DC02930 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 147BDCA90DC5E70DBCD86D079279CC22 /* Pods-ShareRocketChatRN.debug.xcconfig */; + baseConfigurationReference = 68AC99B30175038756318A5894F6AA9A /* Pods-RocketChatRN.release.xcconfig */; buildSettings = { ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO; APPLICATION_EXTENSION_API_ONLY = NO; @@ -33381,7 +33107,7 @@ "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; IPHONEOS_DEPLOYMENT_TARGET = 11.0; MACH_O_TYPE = staticlib; - MODULEMAP_FILE = "Target Support Files/Pods-ShareRocketChatRN/Pods-ShareRocketChatRN.modulemap"; + MODULEMAP_FILE = "Target Support Files/Pods-RocketChatRN/Pods-RocketChatRN.modulemap"; OTHER_LDFLAGS = ""; OTHER_LIBTOOLFLAGS = ""; PODS_ROOT = "$(SRCROOT)"; @@ -33389,12 +33115,13 @@ SDKROOT = iphoneos; SKIP_INSTALL = YES; TARGETED_DEVICE_FAMILY = "1,2"; + VALIDATE_PRODUCT = YES; }; - name = Debug; + name = Release; }; B40A0128EC51F25F4EEAB77B4DDD88E2 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = BDC6DCD3BD2FDA303242D3410C5B8694 /* RNFBAnalytics.debug.xcconfig */; + baseConfigurationReference = 851BDBB44A46FB4F257E118F9A6458A4 /* RNFBAnalytics.debug.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -33471,7 +33198,7 @@ }; B97A00B47BE98AB67CD521023B308E90 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 253B9A685B03722020ACAA2653DDBDCF /* RNGestureHandler.debug.xcconfig */; + baseConfigurationReference = 9007DA4879E432350FF922D4EB8F6335 /* RNGestureHandler.debug.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -33513,7 +33240,7 @@ }; BBDB711743976FD8B051E4A11DBA1662 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 2A739BFF788A257962081AB5BBFF9D61 /* React-cxxreact.debug.xcconfig */; + baseConfigurationReference = 6B870EAAB051C555E43493994F3A16C3 /* React-cxxreact.debug.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -33540,7 +33267,7 @@ }; BC2A4314574CAB2DA6081A5562AE2F3E /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 45B4F243A295CB5198BCAC4555E428EB /* UMBarCodeScannerInterface.release.xcconfig */; + baseConfigurationReference = 1B8513CD935F79A6758B932AC79ACB93 /* UMBarCodeScannerInterface.release.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -33557,7 +33284,7 @@ }; BCF56F95D2A3F8C70517A7A11E7E37E0 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = C4E5E1B00EC580B4C0A9EA603E9705C6 /* RNFBApp.debug.xcconfig */; + baseConfigurationReference = C764DF44D7453D3C43301C04580500D8 /* RNFBApp.debug.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -33608,7 +33335,7 @@ }; BE65DFD17EBA798D673F4CDEA33962BE /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 989770EEA06C006434521276B799FE3F /* react-native-mmkv-storage.debug.xcconfig */; + baseConfigurationReference = E1FCFA12FF42D20698626A42211A7FA5 /* react-native-mmkv-storage.debug.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -33634,7 +33361,7 @@ }; BF2F192FA36EB0207EF68478CCB6359D /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 2BE4FA566B375DBA3B4DB6BC27B5AA1C /* EXFileSystem.debug.xcconfig */; + baseConfigurationReference = 964DF8C124013716020586FB8E272B1E /* EXFileSystem.debug.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -33661,7 +33388,7 @@ }; BF3C3D55EA4656E08C16EC9D77C486CD /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = E5C754C92E88707CAD4CB784B9931E8C /* React-RCTLinking.debug.xcconfig */; + baseConfigurationReference = 34D4B8A8DB7C8315218A6C7FF6F0A203 /* React-RCTLinking.debug.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -33688,7 +33415,7 @@ }; BF48B6B3879FCC80A298178F292D55B4 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 92BEB7AEBDE30BF45FAD8DB1B5442E8D /* UMAppLoader.release.xcconfig */; + baseConfigurationReference = DC9D25E60EE94058758E2D3CD7E90614 /* UMAppLoader.release.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -33716,7 +33443,7 @@ }; C098A7A4611DF2771CC7EA939609F477 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = FC9F0961A88737D9DF6EB115C4E9EDCB /* RNDateTimePicker.debug.xcconfig */; + baseConfigurationReference = 2293EA91890914A585875B2CE1F8408F /* RNDateTimePicker.debug.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -33742,7 +33469,7 @@ }; C15027671C5D0C6A8CAC6E78D66CD017 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 45CD1220444708014B7486B3406BF5BA /* react-native-appearance.release.xcconfig */; + baseConfigurationReference = F667ABA327A20FB5B772C3C09561E1D0 /* react-native-appearance.release.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -33769,7 +33496,7 @@ }; C2871C5CC657787D399A4B524949F03A /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 39A0AD781D6BD52414608D51D30D7885 /* UMBarCodeScannerInterface.debug.xcconfig */; + baseConfigurationReference = 75EFC6E58AA6396FF7CC6FCB93F2598D /* UMBarCodeScannerInterface.debug.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -33785,7 +33512,7 @@ }; C2DB949BCE9FBCCDD8E71534FB7F7E73 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 7E30E19A80A62F3B86F669FDB563847C /* RNFBApp.release.xcconfig */; + baseConfigurationReference = C0B1FDF52D0A6E124CBAB869F773E3F3 /* RNFBApp.release.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -33812,7 +33539,7 @@ }; C33A9E2686E5927EE4D0A4C94ADBA93B /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 8F09C7FE093BD6A8CB157D39E6DEDE75 /* React-RCTSettings.debug.xcconfig */; + baseConfigurationReference = 88AB943D8ACDDEF14D02CE9A03FC669F /* React-RCTSettings.debug.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -33839,7 +33566,7 @@ }; C43EF2F43E7615CA85502D30C64FA4F6 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 5F6F1A303BED70574F14DECF9765E409 /* RNScreens.release.xcconfig */; + baseConfigurationReference = 31B287BFBC3F666064A1C36269F07FD1 /* RNScreens.release.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -33866,7 +33593,7 @@ }; C6679B91C62A53EF07A491EE45B2DAE7 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = F9A5081C839BB5DA295E2AE5598782F1 /* React-CoreModules.debug.xcconfig */; + baseConfigurationReference = D4973084DDC9ABB1F767978143F4D1D7 /* React-CoreModules.debug.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -33919,7 +33646,7 @@ }; C86F4AB7981E6519EB23A87879937446 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 976883AF4FFF2235B2E1D4C0363C9AB3 /* React-RCTNetwork.debug.xcconfig */; + baseConfigurationReference = CAC136B2695A2828833DF8153B21EA23 /* React-RCTNetwork.debug.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -33972,7 +33699,7 @@ }; CF55DAE16EDFE6ED8386E351366F5CF8 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = E49AAC64025F8822FB4D98997A498BF2 /* UMCore.debug.xcconfig */; + baseConfigurationReference = 1C0848D5A04E38224699DC9B7823DE29 /* UMCore.debug.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -33999,7 +33726,7 @@ }; CFDFAB5FB506C4974DE54EDD53C0D4E6 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = B62F088435CAF4ECD06E812357D975CA /* UMAppLoader.debug.xcconfig */; + baseConfigurationReference = 1B557278197DE57EA74BF48C60BB2D68 /* UMAppLoader.debug.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -34026,7 +33753,7 @@ }; CFF4E2808673522F0463F5AD9D24DC27 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = B5A045995EF3FCC36E323E71F008C5AB /* RCTRequired.debug.xcconfig */; + baseConfigurationReference = 3F1EA77028986CCD2B226BBBDFBF7208 /* RCTRequired.debug.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -34066,9 +33793,35 @@ }; name = Release; }; + D3CEFD182266380A63935997AF299B81 /* Release */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 464E12AB95B3A7254CF4C5447E9369FA /* Pods-ShareRocketChatRN.release.xcconfig */; + buildSettings = { + ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO; + APPLICATION_EXTENSION_API_ONLY = NO; + ARCHS = "$(ARCHS_STANDARD_64_BIT)"; + CLANG_ENABLE_OBJC_WEAK = NO; + CODE_SIGN_IDENTITY = "iPhone Developer"; + "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; + IPHONEOS_DEPLOYMENT_TARGET = 11.0; + MACH_O_TYPE = staticlib; + MODULEMAP_FILE = "Target Support Files/Pods-ShareRocketChatRN/Pods-ShareRocketChatRN.modulemap"; + OTHER_LDFLAGS = ""; + OTHER_LIBTOOLFLAGS = ""; + PODS_ROOT = "$(SRCROOT)"; + PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.${PRODUCT_NAME:rfc1034identifier}"; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + TARGETED_DEVICE_FAMILY = "1,2"; + VALIDATE_PRODUCT = YES; + }; + name = Release; + }; D65845EB52762C86A7E2501FB2C4C778 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 7DCC8F3AE45AC531CFF8F64CD91C48B8 /* react-native-jitsi-meet.release.xcconfig */; + baseConfigurationReference = 39D8A22073378B2ECD14D0A37DAB59D2 /* react-native-jitsi-meet.release.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -34095,7 +33848,7 @@ }; D829BD40E0928CC43F22BF3B40B7626B /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = E73BC0618D86EFC57D02673138646F92 /* ReactNativeKeyboardInput.release.xcconfig */; + baseConfigurationReference = 2DF0BCAF251563DCC19C1943043DDE9B /* ReactNativeKeyboardInput.release.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -34149,7 +33902,7 @@ }; D926B739DA1465748AC5A51DF54725B5 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 0CE0ADC960B2D5F61F04A203B563AEC0 /* react-native-safe-area-context.debug.xcconfig */; + baseConfigurationReference = E8CC52B92464301D2D20161219192A70 /* react-native-safe-area-context.debug.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -34175,7 +33928,7 @@ }; D97639C8B8224A918CC1611F45940647 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 9BCA5CC96CCBEDF28E76366D11D0DCD6 /* React-RCTVibration.release.xcconfig */; + baseConfigurationReference = 30D9AD3BD7FB649598B7D77965B6F417 /* React-RCTVibration.release.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -34203,7 +33956,7 @@ }; D97887993E86C41568802DFAC2634A34 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 1134AA4CCD4E29C74879D6BDCF6D501B /* EXPermissions.debug.xcconfig */; + baseConfigurationReference = 8B80FB35984A1E5FC9587D9925328A5B /* EXPermissions.debug.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -34256,7 +34009,7 @@ }; DAF7195F940FA8C1010ECFB32E4EE001 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 3238AE70650330AAB8D19818EC248F8D /* RNReanimated.debug.xcconfig */; + baseConfigurationReference = 2D25EF979879F9BF08A6DA3734FB2921 /* RNReanimated.debug.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -34282,7 +34035,7 @@ }; DB682A1751B7203657DC0093E5AAA62F /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = EA8BAB4AC0C9ED48AE01019E435995A8 /* React.debug.xcconfig */; + baseConfigurationReference = A1F9ACDEE76DCE90C462DCB0A4B6ABC4 /* React.debug.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -34298,7 +34051,7 @@ }; DC006E2CB853C8EBCBF31D5B907A9466 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 6F3AE78B7F30EA69566D40D856216DAC /* React-RCTAnimation.debug.xcconfig */; + baseConfigurationReference = B676F675E3FC1BECCF4989E31D820332 /* React-RCTAnimation.debug.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -34325,7 +34078,7 @@ }; DD56D248833C2C798647FDE5E2718CDB /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 534CFD59426C3B661C2A805A51FE615E /* UMTaskManagerInterface.release.xcconfig */; + baseConfigurationReference = F88847FD30049DAC67D35FC7B5D887C2 /* UMTaskManagerInterface.release.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -34406,7 +34159,7 @@ }; E01528A782B7451667DDBC3E67A11C90 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = E28511542FA77E96F0D9B2321580BAA4 /* EXVideoThumbnails.release.xcconfig */; + baseConfigurationReference = 19A6E450ED992CDA89F06974AEC38E43 /* EXVideoThumbnails.release.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -34434,7 +34187,7 @@ }; E0F5AD5647A8989933301A2E39914884 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 83DF9403D673316EEE1589BD26757A38 /* RNDeviceInfo.debug.xcconfig */; + baseConfigurationReference = 6AC60DE6FB73EABAAB11CC926F684719 /* RNDeviceInfo.debug.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -34460,7 +34213,7 @@ }; E1134700FBB6FAAE491D8162AD6F035E /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 61ABA5F1FC2C8B3E4833C4AE786A2242 /* react-native-cookies.release.xcconfig */; + baseConfigurationReference = 5285EE84BCD6E6DD1FB358E81D58A297 /* react-native-cookies.release.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -34487,7 +34240,7 @@ }; E22D3E8C025807F476FE70C2B7478E2C /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = B9853DF4A475033BBD0E2DC7B38FF186 /* EXImageLoader.debug.xcconfig */; + baseConfigurationReference = 54C5EA6C70A5DA65CCB60876A49B0561 /* EXImageLoader.debug.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -34514,7 +34267,7 @@ }; E4409D6DD01F674F455C88AF3BCB2786 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 5E2282392F335E8B610195FA45E062B6 /* ReactNativeKeyboardTrackingView.debug.xcconfig */; + baseConfigurationReference = EBAB799BCF76814A360CFEF7CA40206D /* ReactNativeKeyboardTrackingView.debug.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -34567,7 +34320,7 @@ }; E567A792983702981257D4CD8F75AC0C /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 010F1417BBCD68412849A986F5CCA6AB /* React-RCTVibration.debug.xcconfig */; + baseConfigurationReference = 985E381BAEC05757D3A5E26F1E14DA61 /* React-RCTVibration.debug.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -34645,7 +34398,7 @@ }; E6FE5F0C28188004540F2E6718CA7118 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = C15D1BBD5E0D963F276DAFDC9D912EF9 /* UMFontInterface.debug.xcconfig */; + baseConfigurationReference = 39B3A5D82B7D2DC68150994DD9133159 /* UMFontInterface.debug.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -34713,7 +34466,7 @@ }; EA3DBFB4B5A87A1B65EDBDCC4650219C /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 297CF7B1C1F8AF6ADB5A3A8D798FA91C /* React-RCTImage.debug.xcconfig */; + baseConfigurationReference = C59CDE27968CFF70651020B9468F8736 /* React-RCTImage.debug.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -34756,7 +34509,7 @@ }; EB5A9D6EF2E1CC8C62AC6282ADEC9309 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = EEE1389654547C8B4EA7BBE2355F5AE2 /* UMCore.release.xcconfig */; + baseConfigurationReference = 451ABB101F357DD2EBE5104DCDABCDE2 /* UMCore.release.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -34784,7 +34537,7 @@ }; EC8846B90307E5484E81E85591A52732 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 169D03E9EBF659079B622BDDFCA18349 /* RNFBAnalytics.release.xcconfig */; + baseConfigurationReference = 4441E75262506BBBDB0C14D0AF8ADC9F /* RNFBAnalytics.release.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -34811,7 +34564,7 @@ }; EE3FE35E3129F966BB78F038C9D40EE7 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = DB24569B7695A72E1A527E2E561D26D2 /* react-native-document-picker.release.xcconfig */; + baseConfigurationReference = 9B61A899427E38398366D0D471FDD053 /* react-native-document-picker.release.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -34838,7 +34591,7 @@ }; EECE463DBC7906B9C5F572429BF2FD36 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = C07B0A62EC6A3B0E3F1262B91453A088 /* ReactNativeKeyboardInput.debug.xcconfig */; + baseConfigurationReference = BCA67CD67581F093370A347ABC5D2595 /* ReactNativeKeyboardInput.debug.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -34864,7 +34617,7 @@ }; F19B21BDFE081568DBE0BD6C2C3545E0 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = A59AB2679071C390418F5560CADA1083 /* react-native-cookies.debug.xcconfig */; + baseConfigurationReference = 1D6C6244700B527CBC318758B65B81C8 /* react-native-cookies.debug.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -34915,7 +34668,7 @@ }; F1B898BB128EA55E2AA6FF7B14192F3A /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 959A86D7CA7F0B8E5DEEE309EE719700 /* UMPermissionsInterface.debug.xcconfig */; + baseConfigurationReference = A7973544829EA3BF8EC37AD66DB844F3 /* UMPermissionsInterface.debug.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -34942,7 +34695,7 @@ }; F2707C8800F8985D4ADFB31C444579B6 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 35E6909514C72A28D802A5BA1D95000C /* React-Core.debug.xcconfig */; + baseConfigurationReference = 728EDB6FE35A00B0D25778F0660F44D3 /* React-Core.debug.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -34969,7 +34722,7 @@ }; F3092F5C70CB32423DDAFCB15C440C15 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = AC6726BF4FC5CE7C7AF3321B2A490A58 /* React-CoreModules.release.xcconfig */; + baseConfigurationReference = 024903648BB05BFC1AA91A07253C9509 /* React-CoreModules.release.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -34997,7 +34750,7 @@ }; F3CBC59BD83FE8FFAE663C7E4E011B7E /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = A87F3D7FACE03381E44D66CCADFC0F4C /* RNCAsyncStorage.debug.xcconfig */; + baseConfigurationReference = 79D2F6D6133F4321E9CD3845016C0747 /* RNCAsyncStorage.debug.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -35023,7 +34776,7 @@ }; F6F72F3C1705BCB7FDF787ADB8733918 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 701C0920ECD665C80F9C28F52B56417D /* react-native-cameraroll.debug.xcconfig */; + baseConfigurationReference = 0E587E6D478E105E756238B7D7B4EF25 /* react-native-cameraroll.debug.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -35049,7 +34802,7 @@ }; F72CC633A9C668B5FA0A17287F8C6379 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = D00CA78130748B67E6183E86B93CBA1E /* React-RCTText.release.xcconfig */; + baseConfigurationReference = 15E9F2CF35CC04E2A708F42F319A3363 /* React-RCTText.release.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -35077,7 +34830,7 @@ }; F74A9A46655AB7E1E7B45BE4AB31FD81 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 4EFE0B1BA18DBCCC4A83B871AFB1E0A3 /* EXPermissions.release.xcconfig */; + baseConfigurationReference = 733A59591112E23583DE4D777578C912 /* EXPermissions.release.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -35132,7 +34885,7 @@ }; F7C3A0403701565D0E723267ED3889BC /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 1F06B9289CD38CD20D09F965A84E1F92 /* UMFontInterface.release.xcconfig */; + baseConfigurationReference = 3DC75F5CC22AA9F7A705303B776365C3 /* UMFontInterface.release.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -35164,7 +34917,7 @@ }; FC4AF7AB980222A1625253BCB46369C3 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 7EFBA28598B02369622936BDEEF3B5AE /* RCTRequired.release.xcconfig */; + baseConfigurationReference = 495243FF42C15581544BD8D57776765B /* RCTRequired.release.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -35181,7 +34934,7 @@ }; FE8EE4AB0D469A0E5EF9AC31BA890E44 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 2986E583E38AE39D873687509F8863B7 /* RNConfigReader.debug.xcconfig */; + baseConfigurationReference = A631E1176D2052D107B00C46F615CCE2 /* RNConfigReader.debug.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -35505,6 +35258,15 @@ defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; + 415D958F1F8A8951983B5F38E152DFE5 /* Build configuration list for PBXNativeTarget "Pods-ShareRocketChatRN" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + 28B0C0CCFE2D54870E19B9A1F4B47D2B /* Debug */, + D3CEFD182266380A63935997AF299B81 /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; 4162C715916F5229E2751C537686A610 /* Build configuration list for PBXNativeTarget "react-native-document-picker" */ = { isa = XCConfigurationList; buildConfigurations = ( @@ -35604,15 +35366,6 @@ defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 542B99B928ECE567A203D2898802CB48 /* Build configuration list for PBXNativeTarget "Pods-RocketChatRN" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - 5E6812B518334F69B1D296F1E675DD49 /* Debug */, - 793D89067BFBD9A396CC574B1C3D02E6 /* Release */, - ); - defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; - }; 55DB5272CB486DA0E6ED10030E16F3C3 /* Build configuration list for PBXNativeTarget "React-RCTSettings" */ = { isa = XCConfigurationList; buildConfigurations = ( @@ -35892,15 +35645,6 @@ defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 908B90B691907295BF3ABE726FA79E1A /* Build configuration list for PBXNativeTarget "Pods-ShareRocketChatRN" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - B23533822C73D683E59AB6F88FCBA9C1 /* Debug */, - 93096983A11D24A1DBBB63B50A1E2C8D /* Release */, - ); - defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; - }; 913138D43225773C4430483BA181BA0E /* Build configuration list for PBXNativeTarget "RNGestureHandler" */ = { isa = XCConfigurationList; buildConfigurations = ( @@ -36063,15 +35807,6 @@ defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - B73B43F92F09B268B1E4369F42495C79 /* Build configuration list for PBXNativeTarget "rn-fetch-blob" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - 6D20B5094034446440C0039183AFCC2D /* Debug */, - 069E4904583D4141FD62AB20BAB275DE /* Release */, - ); - defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; - }; B9ED3B6996222A46F3E32113719956C1 /* Build configuration list for PBXNativeTarget "React-RCTNetwork" */ = { isa = XCConfigurationList; buildConfigurations = ( @@ -36090,6 +35825,15 @@ defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; + BEF99D0776604BBAC7558D2F4FB78EB0 /* Build configuration list for PBXNativeTarget "Pods-RocketChatRN" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + 51B8F52A33A25AA5AFE73D65A9DB2ED7 /* Debug */, + B3EC1CD40243CE54C90B7CAB7DC02930 /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; BF535641E00BECC6FFAF53CFB25A8755 /* Build configuration list for PBXNativeTarget "CocoaAsyncSocket" */ = { isa = XCConfigurationList; buildConfigurations = ( diff --git a/ios/Pods/Target Support Files/Pods-NotificationService/Pods-NotificationService-resources.sh b/ios/Pods/Target Support Files/Pods-NotificationService/Pods-NotificationService-resources.sh deleted file mode 100755 index 9cd870a5..00000000 --- a/ios/Pods/Target Support Files/Pods-NotificationService/Pods-NotificationService-resources.sh +++ /dev/null @@ -1,129 +0,0 @@ -#!/bin/sh -set -e -set -u -set -o pipefail - -function on_error { - echo "$(realpath -mq "${0}"):$1: error: Unexpected failure" -} -trap 'on_error $LINENO' ERR - -if [ -z ${UNLOCALIZED_RESOURCES_FOLDER_PATH+x} ]; then - # If UNLOCALIZED_RESOURCES_FOLDER_PATH is not set, then there's nowhere for us to copy - # resources to, so exit 0 (signalling the script phase was successful). - exit 0 -fi - -mkdir -p "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}" - -RESOURCES_TO_COPY=${PODS_ROOT}/resources-to-copy-${TARGETNAME}.txt -> "$RESOURCES_TO_COPY" - -XCASSET_FILES=() - -# This protects against multiple targets copying the same framework dependency at the same time. The solution -# was originally proposed here: https://lists.samba.org/archive/rsync/2008-February/020158.html -RSYNC_PROTECT_TMP_FILES=(--filter "P .*.??????") - -case "${TARGETED_DEVICE_FAMILY:-}" in - 1,2) - TARGET_DEVICE_ARGS="--target-device ipad --target-device iphone" - ;; - 1) - TARGET_DEVICE_ARGS="--target-device iphone" - ;; - 2) - TARGET_DEVICE_ARGS="--target-device ipad" - ;; - 3) - TARGET_DEVICE_ARGS="--target-device tv" - ;; - 4) - TARGET_DEVICE_ARGS="--target-device watch" - ;; - *) - TARGET_DEVICE_ARGS="--target-device mac" - ;; -esac - -install_resource() -{ - if [[ "$1" = /* ]] ; then - RESOURCE_PATH="$1" - else - RESOURCE_PATH="${PODS_ROOT}/$1" - fi - if [[ ! -e "$RESOURCE_PATH" ]] ; then - cat << EOM -error: Resource "$RESOURCE_PATH" not found. Run 'pod install' to update the copy resources script. -EOM - exit 1 - fi - case $RESOURCE_PATH in - *.storyboard) - echo "ibtool --reference-external-strings-file --errors --warnings --notices --minimum-deployment-target ${!DEPLOYMENT_TARGET_SETTING_NAME} --output-format human-readable-text --compile ${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename \"$RESOURCE_PATH\" .storyboard`.storyboardc $RESOURCE_PATH --sdk ${SDKROOT} ${TARGET_DEVICE_ARGS}" || true - ibtool --reference-external-strings-file --errors --warnings --notices --minimum-deployment-target ${!DEPLOYMENT_TARGET_SETTING_NAME} --output-format human-readable-text --compile "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename \"$RESOURCE_PATH\" .storyboard`.storyboardc" "$RESOURCE_PATH" --sdk "${SDKROOT}" ${TARGET_DEVICE_ARGS} - ;; - *.xib) - echo "ibtool --reference-external-strings-file --errors --warnings --notices --minimum-deployment-target ${!DEPLOYMENT_TARGET_SETTING_NAME} --output-format human-readable-text --compile ${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename \"$RESOURCE_PATH\" .xib`.nib $RESOURCE_PATH --sdk ${SDKROOT} ${TARGET_DEVICE_ARGS}" || true - ibtool --reference-external-strings-file --errors --warnings --notices --minimum-deployment-target ${!DEPLOYMENT_TARGET_SETTING_NAME} --output-format human-readable-text --compile "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename \"$RESOURCE_PATH\" .xib`.nib" "$RESOURCE_PATH" --sdk "${SDKROOT}" ${TARGET_DEVICE_ARGS} - ;; - *.framework) - echo "mkdir -p ${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" || true - mkdir -p "${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" - echo "rsync --delete -av "${RSYNC_PROTECT_TMP_FILES[@]}" $RESOURCE_PATH ${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" || true - rsync --delete -av "${RSYNC_PROTECT_TMP_FILES[@]}" "$RESOURCE_PATH" "${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" - ;; - *.xcdatamodel) - echo "xcrun momc \"$RESOURCE_PATH\" \"${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$RESOURCE_PATH"`.mom\"" || true - xcrun momc "$RESOURCE_PATH" "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$RESOURCE_PATH" .xcdatamodel`.mom" - ;; - *.xcdatamodeld) - echo "xcrun momc \"$RESOURCE_PATH\" \"${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$RESOURCE_PATH" .xcdatamodeld`.momd\"" || true - xcrun momc "$RESOURCE_PATH" "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$RESOURCE_PATH" .xcdatamodeld`.momd" - ;; - *.xcmappingmodel) - echo "xcrun mapc \"$RESOURCE_PATH\" \"${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$RESOURCE_PATH" .xcmappingmodel`.cdm\"" || true - xcrun mapc "$RESOURCE_PATH" "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$RESOURCE_PATH" .xcmappingmodel`.cdm" - ;; - *.xcassets) - ABSOLUTE_XCASSET_FILE="$RESOURCE_PATH" - XCASSET_FILES+=("$ABSOLUTE_XCASSET_FILE") - ;; - *) - echo "$RESOURCE_PATH" || true - echo "$RESOURCE_PATH" >> "$RESOURCES_TO_COPY" - ;; - esac -} -if [[ "$CONFIGURATION" == "Debug" ]]; then - install_resource "${PODS_CONFIGURATION_BUILD_DIR}/React-Core.common/AccessibilityResources.bundle" -fi -if [[ "$CONFIGURATION" == "Release" ]]; then - install_resource "${PODS_CONFIGURATION_BUILD_DIR}/React-Core.common/AccessibilityResources.bundle" -fi - -mkdir -p "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}" -rsync -avr --copy-links --no-relative --exclude '*/.svn/*' --files-from="$RESOURCES_TO_COPY" / "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}" -if [[ "${ACTION}" == "install" ]] && [[ "${SKIP_INSTALL}" == "NO" ]]; then - mkdir -p "${INSTALL_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}" - rsync -avr --copy-links --no-relative --exclude '*/.svn/*' --files-from="$RESOURCES_TO_COPY" / "${INSTALL_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}" -fi -rm -f "$RESOURCES_TO_COPY" - -if [[ -n "${WRAPPER_EXTENSION}" ]] && [ "`xcrun --find actool`" ] && [ -n "${XCASSET_FILES:-}" ] -then - # Find all other xcassets (this unfortunately includes those of path pods and other targets). - OTHER_XCASSETS=$(find -L "$PWD" -iname "*.xcassets" -type d) - while read line; do - if [[ $line != "${PODS_ROOT}*" ]]; then - XCASSET_FILES+=("$line") - fi - done <<<"$OTHER_XCASSETS" - - if [ -z ${ASSETCATALOG_COMPILER_APPICON_NAME+x} ]; then - printf "%s\0" "${XCASSET_FILES[@]}" | xargs -0 xcrun actool --output-format human-readable-text --notices --warnings --platform "${PLATFORM_NAME}" --minimum-deployment-target "${!DEPLOYMENT_TARGET_SETTING_NAME}" ${TARGET_DEVICE_ARGS} --compress-pngs --compile "${BUILT_PRODUCTS_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}" - else - printf "%s\0" "${XCASSET_FILES[@]}" | xargs -0 xcrun actool --output-format human-readable-text --notices --warnings --platform "${PLATFORM_NAME}" --minimum-deployment-target "${!DEPLOYMENT_TARGET_SETTING_NAME}" ${TARGET_DEVICE_ARGS} --compress-pngs --compile "${BUILT_PRODUCTS_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}" --app-icon "${ASSETCATALOG_COMPILER_APPICON_NAME}" --output-partial-info-plist "${TARGET_TEMP_DIR}/assetcatalog_generated_info_cocoapods.plist" - fi -fi diff --git a/ios/Pods/Target Support Files/Pods-NotificationService/Pods-NotificationService.debug.xcconfig b/ios/Pods/Target Support Files/Pods-NotificationService/Pods-NotificationService.debug.xcconfig index 65b9ebee..bd01f75c 100644 --- a/ios/Pods/Target Support Files/Pods-NotificationService/Pods-NotificationService.debug.xcconfig +++ b/ios/Pods/Target Support Files/Pods-NotificationService/Pods-NotificationService.debug.xcconfig @@ -1,5 +1,5 @@ GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 -HEADER_SEARCH_PATHS = $(inherited) "${PODS_ROOT}/Headers/Public" "${PODS_ROOT}/Headers/Public/BugsnagReactNative" "${PODS_ROOT}/Headers/Public/CocoaAsyncSocket" "${PODS_ROOT}/Headers/Public/CocoaLibEvent" "${PODS_ROOT}/Headers/Public/DoubleConversion" "${PODS_ROOT}/Headers/Public/EXAV" "${PODS_ROOT}/Headers/Public/EXAppleAuthentication" "${PODS_ROOT}/Headers/Public/EXConstants" "${PODS_ROOT}/Headers/Public/EXFileSystem" "${PODS_ROOT}/Headers/Public/EXHaptics" "${PODS_ROOT}/Headers/Public/EXImageLoader" "${PODS_ROOT}/Headers/Public/EXKeepAwake" "${PODS_ROOT}/Headers/Public/EXLocalAuthentication" "${PODS_ROOT}/Headers/Public/EXPermissions" "${PODS_ROOT}/Headers/Public/EXVideoThumbnails" "${PODS_ROOT}/Headers/Public/EXWebBrowser" "${PODS_ROOT}/Headers/Public/FBLazyVector" "${PODS_ROOT}/Headers/Public/FBReactNativeSpec" "${PODS_ROOT}/Headers/Public/Firebase" "${PODS_ROOT}/Headers/Public/FirebaseCore" "${PODS_ROOT}/Headers/Public/FirebaseCoreDiagnostics" "${PODS_ROOT}/Headers/Public/FirebaseCrashlytics" "${PODS_ROOT}/Headers/Public/FirebaseInstallations" "${PODS_ROOT}/Headers/Public/Flipper" "${PODS_ROOT}/Headers/Public/Flipper-DoubleConversion" "${PODS_ROOT}/Headers/Public/Flipper-Folly" "${PODS_ROOT}/Headers/Public/Flipper-Glog" "${PODS_ROOT}/Headers/Public/Flipper-PeerTalk" "${PODS_ROOT}/Headers/Public/Flipper-RSocket" "${PODS_ROOT}/Headers/Public/FlipperKit" "${PODS_ROOT}/Headers/Public/GoogleDataTransport" "${PODS_ROOT}/Headers/Public/GoogleDataTransportCCTSupport" "${PODS_ROOT}/Headers/Public/GoogleUtilities" "${PODS_ROOT}/Headers/Public/KeyCommands" "${PODS_ROOT}/Headers/Public/MMKV" "${PODS_ROOT}/Headers/Public/MMKVAppExtension" "${PODS_ROOT}/Headers/Public/MMKVCore" "${PODS_ROOT}/Headers/Public/OpenSSL-Universal" "${PODS_ROOT}/Headers/Public/PromisesObjC" "${PODS_ROOT}/Headers/Public/RCTRequired" "${PODS_ROOT}/Headers/Public/RCTTypeSafety" "${PODS_ROOT}/Headers/Public/RNBootSplash" "${PODS_ROOT}/Headers/Public/RNCAsyncStorage" "${PODS_ROOT}/Headers/Public/RNCMaskedView" "${PODS_ROOT}/Headers/Public/RNConfigReader" "${PODS_ROOT}/Headers/Public/RNDateTimePicker" "${PODS_ROOT}/Headers/Public/RNDeviceInfo" "${PODS_ROOT}/Headers/Public/RNFBAnalytics" "${PODS_ROOT}/Headers/Public/RNFBApp" "${PODS_ROOT}/Headers/Public/RNFBCrashlytics" "${PODS_ROOT}/Headers/Public/RNFastImage" "${PODS_ROOT}/Headers/Public/RNGestureHandler" "${PODS_ROOT}/Headers/Public/RNImageCropPicker" "${PODS_ROOT}/Headers/Public/RNLocalize" "${PODS_ROOT}/Headers/Public/RNReanimated" "${PODS_ROOT}/Headers/Public/RNRootView" "${PODS_ROOT}/Headers/Public/RNScreens" "${PODS_ROOT}/Headers/Public/RNVectorIcons" "${PODS_ROOT}/Headers/Public/React-Core" "${PODS_ROOT}/Headers/Public/React-RCTText" "${PODS_ROOT}/Headers/Public/React-callinvoker" "${PODS_ROOT}/Headers/Public/React-cxxreact" "${PODS_ROOT}/Headers/Public/React-jsi" "${PODS_ROOT}/Headers/Public/React-jsiexecutor" "${PODS_ROOT}/Headers/Public/React-jsinspector" "${PODS_ROOT}/Headers/Public/ReactCommon" "${PODS_ROOT}/Headers/Public/ReactNativeART" "${PODS_ROOT}/Headers/Public/ReactNativeKeyboardInput" "${PODS_ROOT}/Headers/Public/ReactNativeKeyboardTrackingView" "${PODS_ROOT}/Headers/Public/SDWebImage" "${PODS_ROOT}/Headers/Public/SDWebImageWebPCoder" "${PODS_ROOT}/Headers/Public/TOCropViewController" "${PODS_ROOT}/Headers/Public/UMAppLoader" "${PODS_ROOT}/Headers/Public/UMBarCodeScannerInterface" "${PODS_ROOT}/Headers/Public/UMCameraInterface" "${PODS_ROOT}/Headers/Public/UMConstantsInterface" "${PODS_ROOT}/Headers/Public/UMCore" "${PODS_ROOT}/Headers/Public/UMFaceDetectorInterface" "${PODS_ROOT}/Headers/Public/UMFileSystemInterface" "${PODS_ROOT}/Headers/Public/UMFontInterface" "${PODS_ROOT}/Headers/Public/UMImageLoaderInterface" "${PODS_ROOT}/Headers/Public/UMPermissionsInterface" "${PODS_ROOT}/Headers/Public/UMReactNativeAdapter" "${PODS_ROOT}/Headers/Public/UMSensorsInterface" "${PODS_ROOT}/Headers/Public/UMTaskManagerInterface" "${PODS_ROOT}/Headers/Public/Yoga" "${PODS_ROOT}/Headers/Public/YogaKit" "${PODS_ROOT}/Headers/Public/glog" "${PODS_ROOT}/Headers/Public/libwebp" "${PODS_ROOT}/Headers/Public/nanopb" "${PODS_ROOT}/Headers/Public/react-native-appearance" "${PODS_ROOT}/Headers/Public/react-native-background-timer" "${PODS_ROOT}/Headers/Public/react-native-cameraroll" "${PODS_ROOT}/Headers/Public/react-native-cookies" "${PODS_ROOT}/Headers/Public/react-native-document-picker" "${PODS_ROOT}/Headers/Public/react-native-jitsi-meet" "${PODS_ROOT}/Headers/Public/react-native-mmkv-storage" "${PODS_ROOT}/Headers/Public/react-native-notifications" "${PODS_ROOT}/Headers/Public/react-native-orientation-locker" "${PODS_ROOT}/Headers/Public/react-native-safe-area-context" "${PODS_ROOT}/Headers/Public/react-native-slider" "${PODS_ROOT}/Headers/Public/react-native-webview" "${PODS_ROOT}/Headers/Public/rn-extensions-share" "${PODS_ROOT}/Headers/Public/rn-fetch-blob" +HEADER_SEARCH_PATHS = $(inherited) "${PODS_ROOT}/Headers/Public" "${PODS_ROOT}/Headers/Public/BugsnagReactNative" "${PODS_ROOT}/Headers/Public/CocoaAsyncSocket" "${PODS_ROOT}/Headers/Public/CocoaLibEvent" "${PODS_ROOT}/Headers/Public/DoubleConversion" "${PODS_ROOT}/Headers/Public/EXAV" "${PODS_ROOT}/Headers/Public/EXAppleAuthentication" "${PODS_ROOT}/Headers/Public/EXConstants" "${PODS_ROOT}/Headers/Public/EXFileSystem" "${PODS_ROOT}/Headers/Public/EXHaptics" "${PODS_ROOT}/Headers/Public/EXImageLoader" "${PODS_ROOT}/Headers/Public/EXKeepAwake" "${PODS_ROOT}/Headers/Public/EXLocalAuthentication" "${PODS_ROOT}/Headers/Public/EXPermissions" "${PODS_ROOT}/Headers/Public/EXVideoThumbnails" "${PODS_ROOT}/Headers/Public/EXWebBrowser" "${PODS_ROOT}/Headers/Public/FBLazyVector" "${PODS_ROOT}/Headers/Public/FBReactNativeSpec" "${PODS_ROOT}/Headers/Public/Firebase" "${PODS_ROOT}/Headers/Public/FirebaseCore" "${PODS_ROOT}/Headers/Public/FirebaseCoreDiagnostics" "${PODS_ROOT}/Headers/Public/FirebaseCrashlytics" "${PODS_ROOT}/Headers/Public/FirebaseInstallations" "${PODS_ROOT}/Headers/Public/Flipper" "${PODS_ROOT}/Headers/Public/Flipper-DoubleConversion" "${PODS_ROOT}/Headers/Public/Flipper-Folly" "${PODS_ROOT}/Headers/Public/Flipper-Glog" "${PODS_ROOT}/Headers/Public/Flipper-PeerTalk" "${PODS_ROOT}/Headers/Public/Flipper-RSocket" "${PODS_ROOT}/Headers/Public/FlipperKit" "${PODS_ROOT}/Headers/Public/GoogleDataTransport" "${PODS_ROOT}/Headers/Public/GoogleDataTransportCCTSupport" "${PODS_ROOT}/Headers/Public/GoogleUtilities" "${PODS_ROOT}/Headers/Public/KeyCommands" "${PODS_ROOT}/Headers/Public/MMKV" "${PODS_ROOT}/Headers/Public/MMKVAppExtension" "${PODS_ROOT}/Headers/Public/MMKVCore" "${PODS_ROOT}/Headers/Public/OpenSSL-Universal" "${PODS_ROOT}/Headers/Public/PromisesObjC" "${PODS_ROOT}/Headers/Public/RCTRequired" "${PODS_ROOT}/Headers/Public/RCTTypeSafety" "${PODS_ROOT}/Headers/Public/RNBootSplash" "${PODS_ROOT}/Headers/Public/RNCAsyncStorage" "${PODS_ROOT}/Headers/Public/RNCMaskedView" "${PODS_ROOT}/Headers/Public/RNConfigReader" "${PODS_ROOT}/Headers/Public/RNDateTimePicker" "${PODS_ROOT}/Headers/Public/RNDeviceInfo" "${PODS_ROOT}/Headers/Public/RNFBAnalytics" "${PODS_ROOT}/Headers/Public/RNFBApp" "${PODS_ROOT}/Headers/Public/RNFBCrashlytics" "${PODS_ROOT}/Headers/Public/RNFastImage" "${PODS_ROOT}/Headers/Public/RNGestureHandler" "${PODS_ROOT}/Headers/Public/RNImageCropPicker" "${PODS_ROOT}/Headers/Public/RNLocalize" "${PODS_ROOT}/Headers/Public/RNReanimated" "${PODS_ROOT}/Headers/Public/RNRootView" "${PODS_ROOT}/Headers/Public/RNScreens" "${PODS_ROOT}/Headers/Public/RNVectorIcons" "${PODS_ROOT}/Headers/Public/React-Core" "${PODS_ROOT}/Headers/Public/React-RCTText" "${PODS_ROOT}/Headers/Public/React-callinvoker" "${PODS_ROOT}/Headers/Public/React-cxxreact" "${PODS_ROOT}/Headers/Public/React-jsi" "${PODS_ROOT}/Headers/Public/React-jsiexecutor" "${PODS_ROOT}/Headers/Public/React-jsinspector" "${PODS_ROOT}/Headers/Public/ReactCommon" "${PODS_ROOT}/Headers/Public/ReactNativeART" "${PODS_ROOT}/Headers/Public/ReactNativeKeyboardInput" "${PODS_ROOT}/Headers/Public/ReactNativeKeyboardTrackingView" "${PODS_ROOT}/Headers/Public/SDWebImage" "${PODS_ROOT}/Headers/Public/SDWebImageWebPCoder" "${PODS_ROOT}/Headers/Public/TOCropViewController" "${PODS_ROOT}/Headers/Public/UMAppLoader" "${PODS_ROOT}/Headers/Public/UMBarCodeScannerInterface" "${PODS_ROOT}/Headers/Public/UMCameraInterface" "${PODS_ROOT}/Headers/Public/UMConstantsInterface" "${PODS_ROOT}/Headers/Public/UMCore" "${PODS_ROOT}/Headers/Public/UMFaceDetectorInterface" "${PODS_ROOT}/Headers/Public/UMFileSystemInterface" "${PODS_ROOT}/Headers/Public/UMFontInterface" "${PODS_ROOT}/Headers/Public/UMImageLoaderInterface" "${PODS_ROOT}/Headers/Public/UMPermissionsInterface" "${PODS_ROOT}/Headers/Public/UMReactNativeAdapter" "${PODS_ROOT}/Headers/Public/UMSensorsInterface" "${PODS_ROOT}/Headers/Public/UMTaskManagerInterface" "${PODS_ROOT}/Headers/Public/Yoga" "${PODS_ROOT}/Headers/Public/YogaKit" "${PODS_ROOT}/Headers/Public/glog" "${PODS_ROOT}/Headers/Public/libwebp" "${PODS_ROOT}/Headers/Public/nanopb" "${PODS_ROOT}/Headers/Public/react-native-appearance" "${PODS_ROOT}/Headers/Public/react-native-background-timer" "${PODS_ROOT}/Headers/Public/react-native-cameraroll" "${PODS_ROOT}/Headers/Public/react-native-cookies" "${PODS_ROOT}/Headers/Public/react-native-document-picker" "${PODS_ROOT}/Headers/Public/react-native-jitsi-meet" "${PODS_ROOT}/Headers/Public/react-native-mmkv-storage" "${PODS_ROOT}/Headers/Public/react-native-notifications" "${PODS_ROOT}/Headers/Public/react-native-orientation-locker" "${PODS_ROOT}/Headers/Public/react-native-safe-area-context" "${PODS_ROOT}/Headers/Public/react-native-slider" "${PODS_ROOT}/Headers/Public/react-native-webview" "${PODS_ROOT}/Headers/Public/rn-extensions-share" LIBRARY_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/MMKVAppExtension" "${PODS_CONFIGURATION_BUILD_DIR}/MMKVCore" OTHER_LDFLAGS = $(inherited) -ObjC -l"MMKVAppExtension" -l"MMKVCore" -l"c++" -l"z" -framework "CoreFoundation" -framework "UIKit" PODS_BUILD_DIR = ${BUILD_DIR} diff --git a/ios/Pods/Target Support Files/Pods-NotificationService/Pods-NotificationService.release.xcconfig b/ios/Pods/Target Support Files/Pods-NotificationService/Pods-NotificationService.release.xcconfig index 65b9ebee..bd01f75c 100644 --- a/ios/Pods/Target Support Files/Pods-NotificationService/Pods-NotificationService.release.xcconfig +++ b/ios/Pods/Target Support Files/Pods-NotificationService/Pods-NotificationService.release.xcconfig @@ -1,5 +1,5 @@ GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 -HEADER_SEARCH_PATHS = $(inherited) "${PODS_ROOT}/Headers/Public" "${PODS_ROOT}/Headers/Public/BugsnagReactNative" "${PODS_ROOT}/Headers/Public/CocoaAsyncSocket" "${PODS_ROOT}/Headers/Public/CocoaLibEvent" "${PODS_ROOT}/Headers/Public/DoubleConversion" "${PODS_ROOT}/Headers/Public/EXAV" "${PODS_ROOT}/Headers/Public/EXAppleAuthentication" "${PODS_ROOT}/Headers/Public/EXConstants" "${PODS_ROOT}/Headers/Public/EXFileSystem" "${PODS_ROOT}/Headers/Public/EXHaptics" "${PODS_ROOT}/Headers/Public/EXImageLoader" "${PODS_ROOT}/Headers/Public/EXKeepAwake" "${PODS_ROOT}/Headers/Public/EXLocalAuthentication" "${PODS_ROOT}/Headers/Public/EXPermissions" "${PODS_ROOT}/Headers/Public/EXVideoThumbnails" "${PODS_ROOT}/Headers/Public/EXWebBrowser" "${PODS_ROOT}/Headers/Public/FBLazyVector" "${PODS_ROOT}/Headers/Public/FBReactNativeSpec" "${PODS_ROOT}/Headers/Public/Firebase" "${PODS_ROOT}/Headers/Public/FirebaseCore" "${PODS_ROOT}/Headers/Public/FirebaseCoreDiagnostics" "${PODS_ROOT}/Headers/Public/FirebaseCrashlytics" "${PODS_ROOT}/Headers/Public/FirebaseInstallations" "${PODS_ROOT}/Headers/Public/Flipper" "${PODS_ROOT}/Headers/Public/Flipper-DoubleConversion" "${PODS_ROOT}/Headers/Public/Flipper-Folly" "${PODS_ROOT}/Headers/Public/Flipper-Glog" "${PODS_ROOT}/Headers/Public/Flipper-PeerTalk" "${PODS_ROOT}/Headers/Public/Flipper-RSocket" "${PODS_ROOT}/Headers/Public/FlipperKit" "${PODS_ROOT}/Headers/Public/GoogleDataTransport" "${PODS_ROOT}/Headers/Public/GoogleDataTransportCCTSupport" "${PODS_ROOT}/Headers/Public/GoogleUtilities" "${PODS_ROOT}/Headers/Public/KeyCommands" "${PODS_ROOT}/Headers/Public/MMKV" "${PODS_ROOT}/Headers/Public/MMKVAppExtension" "${PODS_ROOT}/Headers/Public/MMKVCore" "${PODS_ROOT}/Headers/Public/OpenSSL-Universal" "${PODS_ROOT}/Headers/Public/PromisesObjC" "${PODS_ROOT}/Headers/Public/RCTRequired" "${PODS_ROOT}/Headers/Public/RCTTypeSafety" "${PODS_ROOT}/Headers/Public/RNBootSplash" "${PODS_ROOT}/Headers/Public/RNCAsyncStorage" "${PODS_ROOT}/Headers/Public/RNCMaskedView" "${PODS_ROOT}/Headers/Public/RNConfigReader" "${PODS_ROOT}/Headers/Public/RNDateTimePicker" "${PODS_ROOT}/Headers/Public/RNDeviceInfo" "${PODS_ROOT}/Headers/Public/RNFBAnalytics" "${PODS_ROOT}/Headers/Public/RNFBApp" "${PODS_ROOT}/Headers/Public/RNFBCrashlytics" "${PODS_ROOT}/Headers/Public/RNFastImage" "${PODS_ROOT}/Headers/Public/RNGestureHandler" "${PODS_ROOT}/Headers/Public/RNImageCropPicker" "${PODS_ROOT}/Headers/Public/RNLocalize" "${PODS_ROOT}/Headers/Public/RNReanimated" "${PODS_ROOT}/Headers/Public/RNRootView" "${PODS_ROOT}/Headers/Public/RNScreens" "${PODS_ROOT}/Headers/Public/RNVectorIcons" "${PODS_ROOT}/Headers/Public/React-Core" "${PODS_ROOT}/Headers/Public/React-RCTText" "${PODS_ROOT}/Headers/Public/React-callinvoker" "${PODS_ROOT}/Headers/Public/React-cxxreact" "${PODS_ROOT}/Headers/Public/React-jsi" "${PODS_ROOT}/Headers/Public/React-jsiexecutor" "${PODS_ROOT}/Headers/Public/React-jsinspector" "${PODS_ROOT}/Headers/Public/ReactCommon" "${PODS_ROOT}/Headers/Public/ReactNativeART" "${PODS_ROOT}/Headers/Public/ReactNativeKeyboardInput" "${PODS_ROOT}/Headers/Public/ReactNativeKeyboardTrackingView" "${PODS_ROOT}/Headers/Public/SDWebImage" "${PODS_ROOT}/Headers/Public/SDWebImageWebPCoder" "${PODS_ROOT}/Headers/Public/TOCropViewController" "${PODS_ROOT}/Headers/Public/UMAppLoader" "${PODS_ROOT}/Headers/Public/UMBarCodeScannerInterface" "${PODS_ROOT}/Headers/Public/UMCameraInterface" "${PODS_ROOT}/Headers/Public/UMConstantsInterface" "${PODS_ROOT}/Headers/Public/UMCore" "${PODS_ROOT}/Headers/Public/UMFaceDetectorInterface" "${PODS_ROOT}/Headers/Public/UMFileSystemInterface" "${PODS_ROOT}/Headers/Public/UMFontInterface" "${PODS_ROOT}/Headers/Public/UMImageLoaderInterface" "${PODS_ROOT}/Headers/Public/UMPermissionsInterface" "${PODS_ROOT}/Headers/Public/UMReactNativeAdapter" "${PODS_ROOT}/Headers/Public/UMSensorsInterface" "${PODS_ROOT}/Headers/Public/UMTaskManagerInterface" "${PODS_ROOT}/Headers/Public/Yoga" "${PODS_ROOT}/Headers/Public/YogaKit" "${PODS_ROOT}/Headers/Public/glog" "${PODS_ROOT}/Headers/Public/libwebp" "${PODS_ROOT}/Headers/Public/nanopb" "${PODS_ROOT}/Headers/Public/react-native-appearance" "${PODS_ROOT}/Headers/Public/react-native-background-timer" "${PODS_ROOT}/Headers/Public/react-native-cameraroll" "${PODS_ROOT}/Headers/Public/react-native-cookies" "${PODS_ROOT}/Headers/Public/react-native-document-picker" "${PODS_ROOT}/Headers/Public/react-native-jitsi-meet" "${PODS_ROOT}/Headers/Public/react-native-mmkv-storage" "${PODS_ROOT}/Headers/Public/react-native-notifications" "${PODS_ROOT}/Headers/Public/react-native-orientation-locker" "${PODS_ROOT}/Headers/Public/react-native-safe-area-context" "${PODS_ROOT}/Headers/Public/react-native-slider" "${PODS_ROOT}/Headers/Public/react-native-webview" "${PODS_ROOT}/Headers/Public/rn-extensions-share" "${PODS_ROOT}/Headers/Public/rn-fetch-blob" +HEADER_SEARCH_PATHS = $(inherited) "${PODS_ROOT}/Headers/Public" "${PODS_ROOT}/Headers/Public/BugsnagReactNative" "${PODS_ROOT}/Headers/Public/CocoaAsyncSocket" "${PODS_ROOT}/Headers/Public/CocoaLibEvent" "${PODS_ROOT}/Headers/Public/DoubleConversion" "${PODS_ROOT}/Headers/Public/EXAV" "${PODS_ROOT}/Headers/Public/EXAppleAuthentication" "${PODS_ROOT}/Headers/Public/EXConstants" "${PODS_ROOT}/Headers/Public/EXFileSystem" "${PODS_ROOT}/Headers/Public/EXHaptics" "${PODS_ROOT}/Headers/Public/EXImageLoader" "${PODS_ROOT}/Headers/Public/EXKeepAwake" "${PODS_ROOT}/Headers/Public/EXLocalAuthentication" "${PODS_ROOT}/Headers/Public/EXPermissions" "${PODS_ROOT}/Headers/Public/EXVideoThumbnails" "${PODS_ROOT}/Headers/Public/EXWebBrowser" "${PODS_ROOT}/Headers/Public/FBLazyVector" "${PODS_ROOT}/Headers/Public/FBReactNativeSpec" "${PODS_ROOT}/Headers/Public/Firebase" "${PODS_ROOT}/Headers/Public/FirebaseCore" "${PODS_ROOT}/Headers/Public/FirebaseCoreDiagnostics" "${PODS_ROOT}/Headers/Public/FirebaseCrashlytics" "${PODS_ROOT}/Headers/Public/FirebaseInstallations" "${PODS_ROOT}/Headers/Public/Flipper" "${PODS_ROOT}/Headers/Public/Flipper-DoubleConversion" "${PODS_ROOT}/Headers/Public/Flipper-Folly" "${PODS_ROOT}/Headers/Public/Flipper-Glog" "${PODS_ROOT}/Headers/Public/Flipper-PeerTalk" "${PODS_ROOT}/Headers/Public/Flipper-RSocket" "${PODS_ROOT}/Headers/Public/FlipperKit" "${PODS_ROOT}/Headers/Public/GoogleDataTransport" "${PODS_ROOT}/Headers/Public/GoogleDataTransportCCTSupport" "${PODS_ROOT}/Headers/Public/GoogleUtilities" "${PODS_ROOT}/Headers/Public/KeyCommands" "${PODS_ROOT}/Headers/Public/MMKV" "${PODS_ROOT}/Headers/Public/MMKVAppExtension" "${PODS_ROOT}/Headers/Public/MMKVCore" "${PODS_ROOT}/Headers/Public/OpenSSL-Universal" "${PODS_ROOT}/Headers/Public/PromisesObjC" "${PODS_ROOT}/Headers/Public/RCTRequired" "${PODS_ROOT}/Headers/Public/RCTTypeSafety" "${PODS_ROOT}/Headers/Public/RNBootSplash" "${PODS_ROOT}/Headers/Public/RNCAsyncStorage" "${PODS_ROOT}/Headers/Public/RNCMaskedView" "${PODS_ROOT}/Headers/Public/RNConfigReader" "${PODS_ROOT}/Headers/Public/RNDateTimePicker" "${PODS_ROOT}/Headers/Public/RNDeviceInfo" "${PODS_ROOT}/Headers/Public/RNFBAnalytics" "${PODS_ROOT}/Headers/Public/RNFBApp" "${PODS_ROOT}/Headers/Public/RNFBCrashlytics" "${PODS_ROOT}/Headers/Public/RNFastImage" "${PODS_ROOT}/Headers/Public/RNGestureHandler" "${PODS_ROOT}/Headers/Public/RNImageCropPicker" "${PODS_ROOT}/Headers/Public/RNLocalize" "${PODS_ROOT}/Headers/Public/RNReanimated" "${PODS_ROOT}/Headers/Public/RNRootView" "${PODS_ROOT}/Headers/Public/RNScreens" "${PODS_ROOT}/Headers/Public/RNVectorIcons" "${PODS_ROOT}/Headers/Public/React-Core" "${PODS_ROOT}/Headers/Public/React-RCTText" "${PODS_ROOT}/Headers/Public/React-callinvoker" "${PODS_ROOT}/Headers/Public/React-cxxreact" "${PODS_ROOT}/Headers/Public/React-jsi" "${PODS_ROOT}/Headers/Public/React-jsiexecutor" "${PODS_ROOT}/Headers/Public/React-jsinspector" "${PODS_ROOT}/Headers/Public/ReactCommon" "${PODS_ROOT}/Headers/Public/ReactNativeART" "${PODS_ROOT}/Headers/Public/ReactNativeKeyboardInput" "${PODS_ROOT}/Headers/Public/ReactNativeKeyboardTrackingView" "${PODS_ROOT}/Headers/Public/SDWebImage" "${PODS_ROOT}/Headers/Public/SDWebImageWebPCoder" "${PODS_ROOT}/Headers/Public/TOCropViewController" "${PODS_ROOT}/Headers/Public/UMAppLoader" "${PODS_ROOT}/Headers/Public/UMBarCodeScannerInterface" "${PODS_ROOT}/Headers/Public/UMCameraInterface" "${PODS_ROOT}/Headers/Public/UMConstantsInterface" "${PODS_ROOT}/Headers/Public/UMCore" "${PODS_ROOT}/Headers/Public/UMFaceDetectorInterface" "${PODS_ROOT}/Headers/Public/UMFileSystemInterface" "${PODS_ROOT}/Headers/Public/UMFontInterface" "${PODS_ROOT}/Headers/Public/UMImageLoaderInterface" "${PODS_ROOT}/Headers/Public/UMPermissionsInterface" "${PODS_ROOT}/Headers/Public/UMReactNativeAdapter" "${PODS_ROOT}/Headers/Public/UMSensorsInterface" "${PODS_ROOT}/Headers/Public/UMTaskManagerInterface" "${PODS_ROOT}/Headers/Public/Yoga" "${PODS_ROOT}/Headers/Public/YogaKit" "${PODS_ROOT}/Headers/Public/glog" "${PODS_ROOT}/Headers/Public/libwebp" "${PODS_ROOT}/Headers/Public/nanopb" "${PODS_ROOT}/Headers/Public/react-native-appearance" "${PODS_ROOT}/Headers/Public/react-native-background-timer" "${PODS_ROOT}/Headers/Public/react-native-cameraroll" "${PODS_ROOT}/Headers/Public/react-native-cookies" "${PODS_ROOT}/Headers/Public/react-native-document-picker" "${PODS_ROOT}/Headers/Public/react-native-jitsi-meet" "${PODS_ROOT}/Headers/Public/react-native-mmkv-storage" "${PODS_ROOT}/Headers/Public/react-native-notifications" "${PODS_ROOT}/Headers/Public/react-native-orientation-locker" "${PODS_ROOT}/Headers/Public/react-native-safe-area-context" "${PODS_ROOT}/Headers/Public/react-native-slider" "${PODS_ROOT}/Headers/Public/react-native-webview" "${PODS_ROOT}/Headers/Public/rn-extensions-share" LIBRARY_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/MMKVAppExtension" "${PODS_CONFIGURATION_BUILD_DIR}/MMKVCore" OTHER_LDFLAGS = $(inherited) -ObjC -l"MMKVAppExtension" -l"MMKVCore" -l"c++" -l"z" -framework "CoreFoundation" -framework "UIKit" PODS_BUILD_DIR = ${BUILD_DIR} diff --git a/ios/Pods/Target Support Files/Pods-RocketChatRN/Pods-RocketChatRN-acknowledgements.markdown b/ios/Pods/Target Support Files/Pods-RocketChatRN/Pods-RocketChatRN-acknowledgements.markdown index 6bff99bd..6c108351 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 @@ -4601,29 +4601,4 @@ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. - -## rn-fetch-blob - -MIT License - -Copyright (c) 2017 xeiyan@gmail.com - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. - Generated by CocoaPods - https://cocoapods.org 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 4dd4bd02..38f9469b 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 @@ -5015,37 +5015,6 @@ SOFTWARE. Type PSGroupSpecifier - - FooterText - MIT License - -Copyright (c) 2017 xeiyan@gmail.com - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. - - License - MIT - Title - rn-fetch-blob - Type - PSGroupSpecifier - FooterText Generated by CocoaPods - https://cocoapods.org 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 8b7a8966..995475d3 100644 --- a/ios/Pods/Target Support Files/Pods-RocketChatRN/Pods-RocketChatRN.debug.xcconfig +++ b/ios/Pods/Target Support Files/Pods-RocketChatRN/Pods-RocketChatRN.debug.xcconfig @@ -1,11 +1,11 @@ ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = YES FRAMEWORK_SEARCH_PATHS = $(inherited) "${PODS_ROOT}/FirebaseAnalytics/Frameworks" "${PODS_ROOT}/GoogleAppMeasurement/Frameworks" "${PODS_ROOT}/JitsiMeetSDK/Frameworks" GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 FB_SONARKIT_ENABLED=1 $(inherited) SD_WEBP=1 $(inherited) PB_FIELD_32BIT=1 PB_NO_PACKED_STRUCTS=1 PB_ENABLE_MALLOC=1 -HEADER_SEARCH_PATHS = $(inherited) "${PODS_ROOT}/Headers/Public" "${PODS_ROOT}/Headers/Public/BugsnagReactNative" "${PODS_ROOT}/Headers/Public/CocoaAsyncSocket" "${PODS_ROOT}/Headers/Public/CocoaLibEvent" "${PODS_ROOT}/Headers/Public/DoubleConversion" "${PODS_ROOT}/Headers/Public/EXAV" "${PODS_ROOT}/Headers/Public/EXAppleAuthentication" "${PODS_ROOT}/Headers/Public/EXConstants" "${PODS_ROOT}/Headers/Public/EXFileSystem" "${PODS_ROOT}/Headers/Public/EXHaptics" "${PODS_ROOT}/Headers/Public/EXImageLoader" "${PODS_ROOT}/Headers/Public/EXKeepAwake" "${PODS_ROOT}/Headers/Public/EXLocalAuthentication" "${PODS_ROOT}/Headers/Public/EXPermissions" "${PODS_ROOT}/Headers/Public/EXVideoThumbnails" "${PODS_ROOT}/Headers/Public/EXWebBrowser" "${PODS_ROOT}/Headers/Public/FBLazyVector" "${PODS_ROOT}/Headers/Public/FBReactNativeSpec" "${PODS_ROOT}/Headers/Public/Firebase" "${PODS_ROOT}/Headers/Public/FirebaseCore" "${PODS_ROOT}/Headers/Public/FirebaseCoreDiagnostics" "${PODS_ROOT}/Headers/Public/FirebaseCrashlytics" "${PODS_ROOT}/Headers/Public/FirebaseInstallations" "${PODS_ROOT}/Headers/Public/Flipper" "${PODS_ROOT}/Headers/Public/Flipper-DoubleConversion" "${PODS_ROOT}/Headers/Public/Flipper-Folly" "${PODS_ROOT}/Headers/Public/Flipper-Glog" "${PODS_ROOT}/Headers/Public/Flipper-PeerTalk" "${PODS_ROOT}/Headers/Public/Flipper-RSocket" "${PODS_ROOT}/Headers/Public/FlipperKit" "${PODS_ROOT}/Headers/Public/GoogleDataTransport" "${PODS_ROOT}/Headers/Public/GoogleDataTransportCCTSupport" "${PODS_ROOT}/Headers/Public/GoogleUtilities" "${PODS_ROOT}/Headers/Public/KeyCommands" "${PODS_ROOT}/Headers/Public/MMKV" "${PODS_ROOT}/Headers/Public/MMKVAppExtension" "${PODS_ROOT}/Headers/Public/MMKVCore" "${PODS_ROOT}/Headers/Public/OpenSSL-Universal" "${PODS_ROOT}/Headers/Public/PromisesObjC" "${PODS_ROOT}/Headers/Public/RCTRequired" "${PODS_ROOT}/Headers/Public/RCTTypeSafety" "${PODS_ROOT}/Headers/Public/RNBootSplash" "${PODS_ROOT}/Headers/Public/RNCAsyncStorage" "${PODS_ROOT}/Headers/Public/RNCMaskedView" "${PODS_ROOT}/Headers/Public/RNConfigReader" "${PODS_ROOT}/Headers/Public/RNDateTimePicker" "${PODS_ROOT}/Headers/Public/RNDeviceInfo" "${PODS_ROOT}/Headers/Public/RNFBAnalytics" "${PODS_ROOT}/Headers/Public/RNFBApp" "${PODS_ROOT}/Headers/Public/RNFBCrashlytics" "${PODS_ROOT}/Headers/Public/RNFastImage" "${PODS_ROOT}/Headers/Public/RNGestureHandler" "${PODS_ROOT}/Headers/Public/RNImageCropPicker" "${PODS_ROOT}/Headers/Public/RNLocalize" "${PODS_ROOT}/Headers/Public/RNReanimated" "${PODS_ROOT}/Headers/Public/RNRootView" "${PODS_ROOT}/Headers/Public/RNScreens" "${PODS_ROOT}/Headers/Public/RNVectorIcons" "${PODS_ROOT}/Headers/Public/React-Core" "${PODS_ROOT}/Headers/Public/React-RCTText" "${PODS_ROOT}/Headers/Public/React-callinvoker" "${PODS_ROOT}/Headers/Public/React-cxxreact" "${PODS_ROOT}/Headers/Public/React-jsi" "${PODS_ROOT}/Headers/Public/React-jsiexecutor" "${PODS_ROOT}/Headers/Public/React-jsinspector" "${PODS_ROOT}/Headers/Public/ReactCommon" "${PODS_ROOT}/Headers/Public/ReactNativeART" "${PODS_ROOT}/Headers/Public/ReactNativeKeyboardInput" "${PODS_ROOT}/Headers/Public/ReactNativeKeyboardTrackingView" "${PODS_ROOT}/Headers/Public/SDWebImage" "${PODS_ROOT}/Headers/Public/SDWebImageWebPCoder" "${PODS_ROOT}/Headers/Public/TOCropViewController" "${PODS_ROOT}/Headers/Public/UMAppLoader" "${PODS_ROOT}/Headers/Public/UMBarCodeScannerInterface" "${PODS_ROOT}/Headers/Public/UMCameraInterface" "${PODS_ROOT}/Headers/Public/UMConstantsInterface" "${PODS_ROOT}/Headers/Public/UMCore" "${PODS_ROOT}/Headers/Public/UMFaceDetectorInterface" "${PODS_ROOT}/Headers/Public/UMFileSystemInterface" "${PODS_ROOT}/Headers/Public/UMFontInterface" "${PODS_ROOT}/Headers/Public/UMImageLoaderInterface" "${PODS_ROOT}/Headers/Public/UMPermissionsInterface" "${PODS_ROOT}/Headers/Public/UMReactNativeAdapter" "${PODS_ROOT}/Headers/Public/UMSensorsInterface" "${PODS_ROOT}/Headers/Public/UMTaskManagerInterface" "${PODS_ROOT}/Headers/Public/Yoga" "${PODS_ROOT}/Headers/Public/YogaKit" "${PODS_ROOT}/Headers/Public/glog" "${PODS_ROOT}/Headers/Public/libwebp" "${PODS_ROOT}/Headers/Public/nanopb" "${PODS_ROOT}/Headers/Public/react-native-appearance" "${PODS_ROOT}/Headers/Public/react-native-background-timer" "${PODS_ROOT}/Headers/Public/react-native-cameraroll" "${PODS_ROOT}/Headers/Public/react-native-cookies" "${PODS_ROOT}/Headers/Public/react-native-document-picker" "${PODS_ROOT}/Headers/Public/react-native-jitsi-meet" "${PODS_ROOT}/Headers/Public/react-native-mmkv-storage" "${PODS_ROOT}/Headers/Public/react-native-notifications" "${PODS_ROOT}/Headers/Public/react-native-orientation-locker" "${PODS_ROOT}/Headers/Public/react-native-safe-area-context" "${PODS_ROOT}/Headers/Public/react-native-slider" "${PODS_ROOT}/Headers/Public/react-native-webview" "${PODS_ROOT}/Headers/Public/rn-extensions-share" "${PODS_ROOT}/Headers/Public/rn-fetch-blob" $(inherited) ${PODS_ROOT}/Firebase/CoreOnly/Sources "${PODS_TARGET_SRCROOT}/Sources/FBLPromises/include" "$(PODS_ROOT)/Headers/Private/React-Core" +HEADER_SEARCH_PATHS = $(inherited) "${PODS_ROOT}/Headers/Public" "${PODS_ROOT}/Headers/Public/BugsnagReactNative" "${PODS_ROOT}/Headers/Public/CocoaAsyncSocket" "${PODS_ROOT}/Headers/Public/CocoaLibEvent" "${PODS_ROOT}/Headers/Public/DoubleConversion" "${PODS_ROOT}/Headers/Public/EXAV" "${PODS_ROOT}/Headers/Public/EXAppleAuthentication" "${PODS_ROOT}/Headers/Public/EXConstants" "${PODS_ROOT}/Headers/Public/EXFileSystem" "${PODS_ROOT}/Headers/Public/EXHaptics" "${PODS_ROOT}/Headers/Public/EXImageLoader" "${PODS_ROOT}/Headers/Public/EXKeepAwake" "${PODS_ROOT}/Headers/Public/EXLocalAuthentication" "${PODS_ROOT}/Headers/Public/EXPermissions" "${PODS_ROOT}/Headers/Public/EXVideoThumbnails" "${PODS_ROOT}/Headers/Public/EXWebBrowser" "${PODS_ROOT}/Headers/Public/FBLazyVector" "${PODS_ROOT}/Headers/Public/FBReactNativeSpec" "${PODS_ROOT}/Headers/Public/Firebase" "${PODS_ROOT}/Headers/Public/FirebaseCore" "${PODS_ROOT}/Headers/Public/FirebaseCoreDiagnostics" "${PODS_ROOT}/Headers/Public/FirebaseCrashlytics" "${PODS_ROOT}/Headers/Public/FirebaseInstallations" "${PODS_ROOT}/Headers/Public/Flipper" "${PODS_ROOT}/Headers/Public/Flipper-DoubleConversion" "${PODS_ROOT}/Headers/Public/Flipper-Folly" "${PODS_ROOT}/Headers/Public/Flipper-Glog" "${PODS_ROOT}/Headers/Public/Flipper-PeerTalk" "${PODS_ROOT}/Headers/Public/Flipper-RSocket" "${PODS_ROOT}/Headers/Public/FlipperKit" "${PODS_ROOT}/Headers/Public/GoogleDataTransport" "${PODS_ROOT}/Headers/Public/GoogleDataTransportCCTSupport" "${PODS_ROOT}/Headers/Public/GoogleUtilities" "${PODS_ROOT}/Headers/Public/KeyCommands" "${PODS_ROOT}/Headers/Public/MMKV" "${PODS_ROOT}/Headers/Public/MMKVAppExtension" "${PODS_ROOT}/Headers/Public/MMKVCore" "${PODS_ROOT}/Headers/Public/OpenSSL-Universal" "${PODS_ROOT}/Headers/Public/PromisesObjC" "${PODS_ROOT}/Headers/Public/RCTRequired" "${PODS_ROOT}/Headers/Public/RCTTypeSafety" "${PODS_ROOT}/Headers/Public/RNBootSplash" "${PODS_ROOT}/Headers/Public/RNCAsyncStorage" "${PODS_ROOT}/Headers/Public/RNCMaskedView" "${PODS_ROOT}/Headers/Public/RNConfigReader" "${PODS_ROOT}/Headers/Public/RNDateTimePicker" "${PODS_ROOT}/Headers/Public/RNDeviceInfo" "${PODS_ROOT}/Headers/Public/RNFBAnalytics" "${PODS_ROOT}/Headers/Public/RNFBApp" "${PODS_ROOT}/Headers/Public/RNFBCrashlytics" "${PODS_ROOT}/Headers/Public/RNFastImage" "${PODS_ROOT}/Headers/Public/RNGestureHandler" "${PODS_ROOT}/Headers/Public/RNImageCropPicker" "${PODS_ROOT}/Headers/Public/RNLocalize" "${PODS_ROOT}/Headers/Public/RNReanimated" "${PODS_ROOT}/Headers/Public/RNRootView" "${PODS_ROOT}/Headers/Public/RNScreens" "${PODS_ROOT}/Headers/Public/RNVectorIcons" "${PODS_ROOT}/Headers/Public/React-Core" "${PODS_ROOT}/Headers/Public/React-RCTText" "${PODS_ROOT}/Headers/Public/React-callinvoker" "${PODS_ROOT}/Headers/Public/React-cxxreact" "${PODS_ROOT}/Headers/Public/React-jsi" "${PODS_ROOT}/Headers/Public/React-jsiexecutor" "${PODS_ROOT}/Headers/Public/React-jsinspector" "${PODS_ROOT}/Headers/Public/ReactCommon" "${PODS_ROOT}/Headers/Public/ReactNativeART" "${PODS_ROOT}/Headers/Public/ReactNativeKeyboardInput" "${PODS_ROOT}/Headers/Public/ReactNativeKeyboardTrackingView" "${PODS_ROOT}/Headers/Public/SDWebImage" "${PODS_ROOT}/Headers/Public/SDWebImageWebPCoder" "${PODS_ROOT}/Headers/Public/TOCropViewController" "${PODS_ROOT}/Headers/Public/UMAppLoader" "${PODS_ROOT}/Headers/Public/UMBarCodeScannerInterface" "${PODS_ROOT}/Headers/Public/UMCameraInterface" "${PODS_ROOT}/Headers/Public/UMConstantsInterface" "${PODS_ROOT}/Headers/Public/UMCore" "${PODS_ROOT}/Headers/Public/UMFaceDetectorInterface" "${PODS_ROOT}/Headers/Public/UMFileSystemInterface" "${PODS_ROOT}/Headers/Public/UMFontInterface" "${PODS_ROOT}/Headers/Public/UMImageLoaderInterface" "${PODS_ROOT}/Headers/Public/UMPermissionsInterface" "${PODS_ROOT}/Headers/Public/UMReactNativeAdapter" "${PODS_ROOT}/Headers/Public/UMSensorsInterface" "${PODS_ROOT}/Headers/Public/UMTaskManagerInterface" "${PODS_ROOT}/Headers/Public/Yoga" "${PODS_ROOT}/Headers/Public/YogaKit" "${PODS_ROOT}/Headers/Public/glog" "${PODS_ROOT}/Headers/Public/libwebp" "${PODS_ROOT}/Headers/Public/nanopb" "${PODS_ROOT}/Headers/Public/react-native-appearance" "${PODS_ROOT}/Headers/Public/react-native-background-timer" "${PODS_ROOT}/Headers/Public/react-native-cameraroll" "${PODS_ROOT}/Headers/Public/react-native-cookies" "${PODS_ROOT}/Headers/Public/react-native-document-picker" "${PODS_ROOT}/Headers/Public/react-native-jitsi-meet" "${PODS_ROOT}/Headers/Public/react-native-mmkv-storage" "${PODS_ROOT}/Headers/Public/react-native-notifications" "${PODS_ROOT}/Headers/Public/react-native-orientation-locker" "${PODS_ROOT}/Headers/Public/react-native-safe-area-context" "${PODS_ROOT}/Headers/Public/react-native-slider" "${PODS_ROOT}/Headers/Public/react-native-webview" "${PODS_ROOT}/Headers/Public/rn-extensions-share" $(inherited) ${PODS_ROOT}/Firebase/CoreOnly/Sources "${PODS_TARGET_SRCROOT}/Sources/FBLPromises/include" "$(PODS_ROOT)/Headers/Private/React-Core" LD_RUNPATH_SEARCH_PATHS = $(inherited) '@executable_path/Frameworks' '@loader_path/Frameworks' -LIBRARY_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/BugsnagReactNative" "${PODS_CONFIGURATION_BUILD_DIR}/CocoaAsyncSocket" "${PODS_CONFIGURATION_BUILD_DIR}/DoubleConversion" "${PODS_CONFIGURATION_BUILD_DIR}/EXAV" "${PODS_CONFIGURATION_BUILD_DIR}/EXAppleAuthentication" "${PODS_CONFIGURATION_BUILD_DIR}/EXConstants" "${PODS_CONFIGURATION_BUILD_DIR}/EXFileSystem" "${PODS_CONFIGURATION_BUILD_DIR}/EXHaptics" "${PODS_CONFIGURATION_BUILD_DIR}/EXImageLoader" "${PODS_CONFIGURATION_BUILD_DIR}/EXKeepAwake" "${PODS_CONFIGURATION_BUILD_DIR}/EXLocalAuthentication" "${PODS_CONFIGURATION_BUILD_DIR}/EXPermissions" "${PODS_CONFIGURATION_BUILD_DIR}/EXVideoThumbnails" "${PODS_CONFIGURATION_BUILD_DIR}/EXWebBrowser" "${PODS_CONFIGURATION_BUILD_DIR}/FBReactNativeSpec" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseCore" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseCoreDiagnostics" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseCrashlytics" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseInstallations" "${PODS_CONFIGURATION_BUILD_DIR}/Flipper" "${PODS_CONFIGURATION_BUILD_DIR}/Flipper-DoubleConversion" "${PODS_CONFIGURATION_BUILD_DIR}/Flipper-Folly" "${PODS_CONFIGURATION_BUILD_DIR}/Flipper-Glog" "${PODS_CONFIGURATION_BUILD_DIR}/Flipper-PeerTalk" "${PODS_CONFIGURATION_BUILD_DIR}/Flipper-RSocket" "${PODS_CONFIGURATION_BUILD_DIR}/FlipperKit" "${PODS_CONFIGURATION_BUILD_DIR}/Folly" "${PODS_CONFIGURATION_BUILD_DIR}/GoogleDataTransport" "${PODS_CONFIGURATION_BUILD_DIR}/GoogleDataTransportCCTSupport" "${PODS_CONFIGURATION_BUILD_DIR}/GoogleUtilities" "${PODS_CONFIGURATION_BUILD_DIR}/KeyCommands" "${PODS_CONFIGURATION_BUILD_DIR}/MMKV" "${PODS_CONFIGURATION_BUILD_DIR}/MMKVCore" "${PODS_CONFIGURATION_BUILD_DIR}/PromisesObjC" "${PODS_CONFIGURATION_BUILD_DIR}/RCTTypeSafety" "${PODS_CONFIGURATION_BUILD_DIR}/RNBootSplash" "${PODS_CONFIGURATION_BUILD_DIR}/RNCAsyncStorage" "${PODS_CONFIGURATION_BUILD_DIR}/RNCMaskedView" "${PODS_CONFIGURATION_BUILD_DIR}/RNConfigReader" "${PODS_CONFIGURATION_BUILD_DIR}/RNDateTimePicker" "${PODS_CONFIGURATION_BUILD_DIR}/RNDeviceInfo" "${PODS_CONFIGURATION_BUILD_DIR}/RNFBAnalytics" "${PODS_CONFIGURATION_BUILD_DIR}/RNFBApp" "${PODS_CONFIGURATION_BUILD_DIR}/RNFBCrashlytics" "${PODS_CONFIGURATION_BUILD_DIR}/RNFastImage" "${PODS_CONFIGURATION_BUILD_DIR}/RNGestureHandler" "${PODS_CONFIGURATION_BUILD_DIR}/RNImageCropPicker" "${PODS_CONFIGURATION_BUILD_DIR}/RNLocalize" "${PODS_CONFIGURATION_BUILD_DIR}/RNReanimated" "${PODS_CONFIGURATION_BUILD_DIR}/RNRootView" "${PODS_CONFIGURATION_BUILD_DIR}/RNScreens" "${PODS_CONFIGURATION_BUILD_DIR}/RNVectorIcons" "${PODS_CONFIGURATION_BUILD_DIR}/React-Core" "${PODS_CONFIGURATION_BUILD_DIR}/React-CoreModules" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTAnimation" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTBlob" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTImage" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTLinking" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTNetwork" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTSettings" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTText" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTVibration" "${PODS_CONFIGURATION_BUILD_DIR}/React-cxxreact" "${PODS_CONFIGURATION_BUILD_DIR}/React-jsi" "${PODS_CONFIGURATION_BUILD_DIR}/React-jsiexecutor" "${PODS_CONFIGURATION_BUILD_DIR}/React-jsinspector" "${PODS_CONFIGURATION_BUILD_DIR}/ReactCommon" "${PODS_CONFIGURATION_BUILD_DIR}/ReactNativeART" "${PODS_CONFIGURATION_BUILD_DIR}/ReactNativeKeyboardInput" "${PODS_CONFIGURATION_BUILD_DIR}/ReactNativeKeyboardTrackingView" "${PODS_CONFIGURATION_BUILD_DIR}/SDWebImage" "${PODS_CONFIGURATION_BUILD_DIR}/SDWebImageWebPCoder" "${PODS_CONFIGURATION_BUILD_DIR}/TOCropViewController" "${PODS_CONFIGURATION_BUILD_DIR}/UMAppLoader" "${PODS_CONFIGURATION_BUILD_DIR}/UMCore" "${PODS_CONFIGURATION_BUILD_DIR}/UMPermissionsInterface" "${PODS_CONFIGURATION_BUILD_DIR}/UMReactNativeAdapter" "${PODS_CONFIGURATION_BUILD_DIR}/Yoga" "${PODS_CONFIGURATION_BUILD_DIR}/YogaKit" "${PODS_CONFIGURATION_BUILD_DIR}/glog" "${PODS_CONFIGURATION_BUILD_DIR}/libwebp" "${PODS_CONFIGURATION_BUILD_DIR}/nanopb" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-appearance" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-background-timer" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-cameraroll" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-cookies" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-document-picker" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-jitsi-meet" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-mmkv-storage" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-notifications" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-orientation-locker" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-safe-area-context" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-slider" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-webview" "${PODS_CONFIGURATION_BUILD_DIR}/rn-extensions-share" "${PODS_CONFIGURATION_BUILD_DIR}/rn-fetch-blob" "${PODS_ROOT}/CocoaLibEvent/lib" "${PODS_ROOT}/OpenSSL-Universal/ios/lib" +LIBRARY_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/BugsnagReactNative" "${PODS_CONFIGURATION_BUILD_DIR}/CocoaAsyncSocket" "${PODS_CONFIGURATION_BUILD_DIR}/DoubleConversion" "${PODS_CONFIGURATION_BUILD_DIR}/EXAV" "${PODS_CONFIGURATION_BUILD_DIR}/EXAppleAuthentication" "${PODS_CONFIGURATION_BUILD_DIR}/EXConstants" "${PODS_CONFIGURATION_BUILD_DIR}/EXFileSystem" "${PODS_CONFIGURATION_BUILD_DIR}/EXHaptics" "${PODS_CONFIGURATION_BUILD_DIR}/EXImageLoader" "${PODS_CONFIGURATION_BUILD_DIR}/EXKeepAwake" "${PODS_CONFIGURATION_BUILD_DIR}/EXLocalAuthentication" "${PODS_CONFIGURATION_BUILD_DIR}/EXPermissions" "${PODS_CONFIGURATION_BUILD_DIR}/EXVideoThumbnails" "${PODS_CONFIGURATION_BUILD_DIR}/EXWebBrowser" "${PODS_CONFIGURATION_BUILD_DIR}/FBReactNativeSpec" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseCore" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseCoreDiagnostics" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseCrashlytics" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseInstallations" "${PODS_CONFIGURATION_BUILD_DIR}/Flipper" "${PODS_CONFIGURATION_BUILD_DIR}/Flipper-DoubleConversion" "${PODS_CONFIGURATION_BUILD_DIR}/Flipper-Folly" "${PODS_CONFIGURATION_BUILD_DIR}/Flipper-Glog" "${PODS_CONFIGURATION_BUILD_DIR}/Flipper-PeerTalk" "${PODS_CONFIGURATION_BUILD_DIR}/Flipper-RSocket" "${PODS_CONFIGURATION_BUILD_DIR}/FlipperKit" "${PODS_CONFIGURATION_BUILD_DIR}/Folly" "${PODS_CONFIGURATION_BUILD_DIR}/GoogleDataTransport" "${PODS_CONFIGURATION_BUILD_DIR}/GoogleDataTransportCCTSupport" "${PODS_CONFIGURATION_BUILD_DIR}/GoogleUtilities" "${PODS_CONFIGURATION_BUILD_DIR}/KeyCommands" "${PODS_CONFIGURATION_BUILD_DIR}/MMKV" "${PODS_CONFIGURATION_BUILD_DIR}/MMKVCore" "${PODS_CONFIGURATION_BUILD_DIR}/PromisesObjC" "${PODS_CONFIGURATION_BUILD_DIR}/RCTTypeSafety" "${PODS_CONFIGURATION_BUILD_DIR}/RNBootSplash" "${PODS_CONFIGURATION_BUILD_DIR}/RNCAsyncStorage" "${PODS_CONFIGURATION_BUILD_DIR}/RNCMaskedView" "${PODS_CONFIGURATION_BUILD_DIR}/RNConfigReader" "${PODS_CONFIGURATION_BUILD_DIR}/RNDateTimePicker" "${PODS_CONFIGURATION_BUILD_DIR}/RNDeviceInfo" "${PODS_CONFIGURATION_BUILD_DIR}/RNFBAnalytics" "${PODS_CONFIGURATION_BUILD_DIR}/RNFBApp" "${PODS_CONFIGURATION_BUILD_DIR}/RNFBCrashlytics" "${PODS_CONFIGURATION_BUILD_DIR}/RNFastImage" "${PODS_CONFIGURATION_BUILD_DIR}/RNGestureHandler" "${PODS_CONFIGURATION_BUILD_DIR}/RNImageCropPicker" "${PODS_CONFIGURATION_BUILD_DIR}/RNLocalize" "${PODS_CONFIGURATION_BUILD_DIR}/RNReanimated" "${PODS_CONFIGURATION_BUILD_DIR}/RNRootView" "${PODS_CONFIGURATION_BUILD_DIR}/RNScreens" "${PODS_CONFIGURATION_BUILD_DIR}/RNVectorIcons" "${PODS_CONFIGURATION_BUILD_DIR}/React-Core" "${PODS_CONFIGURATION_BUILD_DIR}/React-CoreModules" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTAnimation" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTBlob" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTImage" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTLinking" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTNetwork" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTSettings" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTText" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTVibration" "${PODS_CONFIGURATION_BUILD_DIR}/React-cxxreact" "${PODS_CONFIGURATION_BUILD_DIR}/React-jsi" "${PODS_CONFIGURATION_BUILD_DIR}/React-jsiexecutor" "${PODS_CONFIGURATION_BUILD_DIR}/React-jsinspector" "${PODS_CONFIGURATION_BUILD_DIR}/ReactCommon" "${PODS_CONFIGURATION_BUILD_DIR}/ReactNativeART" "${PODS_CONFIGURATION_BUILD_DIR}/ReactNativeKeyboardInput" "${PODS_CONFIGURATION_BUILD_DIR}/ReactNativeKeyboardTrackingView" "${PODS_CONFIGURATION_BUILD_DIR}/SDWebImage" "${PODS_CONFIGURATION_BUILD_DIR}/SDWebImageWebPCoder" "${PODS_CONFIGURATION_BUILD_DIR}/TOCropViewController" "${PODS_CONFIGURATION_BUILD_DIR}/UMAppLoader" "${PODS_CONFIGURATION_BUILD_DIR}/UMCore" "${PODS_CONFIGURATION_BUILD_DIR}/UMPermissionsInterface" "${PODS_CONFIGURATION_BUILD_DIR}/UMReactNativeAdapter" "${PODS_CONFIGURATION_BUILD_DIR}/Yoga" "${PODS_CONFIGURATION_BUILD_DIR}/YogaKit" "${PODS_CONFIGURATION_BUILD_DIR}/glog" "${PODS_CONFIGURATION_BUILD_DIR}/libwebp" "${PODS_CONFIGURATION_BUILD_DIR}/nanopb" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-appearance" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-background-timer" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-cameraroll" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-cookies" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-document-picker" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-jitsi-meet" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-mmkv-storage" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-notifications" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-orientation-locker" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-safe-area-context" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-slider" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-webview" "${PODS_CONFIGURATION_BUILD_DIR}/rn-extensions-share" "${PODS_ROOT}/CocoaLibEvent/lib" "${PODS_ROOT}/OpenSSL-Universal/ios/lib" OTHER_CFLAGS = $(inherited) -fmodule-map-file="${PODS_CONFIGURATION_BUILD_DIR}/YogaKit/YogaKit.modulemap" -fmodule-map-file="${PODS_ROOT}/Headers/Public/FlipperKit/FlipperKit.modulemap" -fmodule-map-file="${PODS_ROOT}/Headers/Public/yoga/Yoga.modulemap" -OTHER_LDFLAGS = $(inherited) -ObjC -l"BugsnagReactNative" -l"CocoaAsyncSocket" -l"DoubleConversion" -l"EXAV" -l"EXAppleAuthentication" -l"EXConstants" -l"EXFileSystem" -l"EXHaptics" -l"EXImageLoader" -l"EXKeepAwake" -l"EXLocalAuthentication" -l"EXPermissions" -l"EXVideoThumbnails" -l"EXWebBrowser" -l"FBReactNativeSpec" -l"FirebaseCore" -l"FirebaseCoreDiagnostics" -l"FirebaseCrashlytics" -l"FirebaseInstallations" -l"Flipper" -l"Flipper-DoubleConversion" -l"Flipper-Folly" -l"Flipper-Glog" -l"Flipper-PeerTalk" -l"Flipper-RSocket" -l"FlipperKit" -l"Folly" -l"GoogleDataTransport" -l"GoogleDataTransportCCTSupport" -l"GoogleUtilities" -l"KeyCommands" -l"MMKV" -l"MMKVCore" -l"PromisesObjC" -l"RCTTypeSafety" -l"RNBootSplash" -l"RNCAsyncStorage" -l"RNCMaskedView" -l"RNConfigReader" -l"RNDateTimePicker" -l"RNDeviceInfo" -l"RNFBAnalytics" -l"RNFBApp" -l"RNFBCrashlytics" -l"RNFastImage" -l"RNGestureHandler" -l"RNImageCropPicker" -l"RNLocalize" -l"RNReanimated" -l"RNRootView" -l"RNScreens" -l"RNVectorIcons" -l"React-Core" -l"React-CoreModules" -l"React-RCTAnimation" -l"React-RCTBlob" -l"React-RCTImage" -l"React-RCTLinking" -l"React-RCTNetwork" -l"React-RCTSettings" -l"React-RCTText" -l"React-RCTVibration" -l"React-cxxreact" -l"React-jsi" -l"React-jsiexecutor" -l"React-jsinspector" -l"ReactCommon" -l"ReactNativeART" -l"ReactNativeKeyboardInput" -l"ReactNativeKeyboardTrackingView" -l"SDWebImage" -l"SDWebImageWebPCoder" -l"TOCropViewController" -l"UMAppLoader" -l"UMCore" -l"UMPermissionsInterface" -l"UMReactNativeAdapter" -l"Yoga" -l"YogaKit" -l"c++" -l"crypto" -l"event" -l"event_core" -l"event_extra" -l"event_pthreads" -l"glog" -l"libwebp" -l"nanopb" -l"react-native-appearance" -l"react-native-background-timer" -l"react-native-cameraroll" -l"react-native-cookies" -l"react-native-document-picker" -l"react-native-jitsi-meet" -l"react-native-mmkv-storage" -l"react-native-notifications" -l"react-native-orientation-locker" -l"react-native-safe-area-context" -l"react-native-slider" -l"react-native-webview" -l"rn-extensions-share" -l"rn-fetch-blob" -l"sqlite3" -l"ssl" -l"stdc++" -l"z" -framework "AudioToolbox" -framework "CFNetwork" -framework "CoreFoundation" -framework "CoreTelephony" -framework "FIRAnalyticsConnector" -framework "FirebaseAnalytics" -framework "Foundation" -framework "GoogleAppMeasurement" -framework "ImageIO" -framework "JavaScriptCore" -framework "JitsiMeet" -framework "MessageUI" -framework "MobileCoreServices" -framework "Photos" -framework "Security" -framework "StoreKit" -framework "SystemConfiguration" -framework "UIKit" -framework "WebRTC" +OTHER_LDFLAGS = $(inherited) -ObjC -l"BugsnagReactNative" -l"CocoaAsyncSocket" -l"DoubleConversion" -l"EXAV" -l"EXAppleAuthentication" -l"EXConstants" -l"EXFileSystem" -l"EXHaptics" -l"EXImageLoader" -l"EXKeepAwake" -l"EXLocalAuthentication" -l"EXPermissions" -l"EXVideoThumbnails" -l"EXWebBrowser" -l"FBReactNativeSpec" -l"FirebaseCore" -l"FirebaseCoreDiagnostics" -l"FirebaseCrashlytics" -l"FirebaseInstallations" -l"Flipper" -l"Flipper-DoubleConversion" -l"Flipper-Folly" -l"Flipper-Glog" -l"Flipper-PeerTalk" -l"Flipper-RSocket" -l"FlipperKit" -l"Folly" -l"GoogleDataTransport" -l"GoogleDataTransportCCTSupport" -l"GoogleUtilities" -l"KeyCommands" -l"MMKV" -l"MMKVCore" -l"PromisesObjC" -l"RCTTypeSafety" -l"RNBootSplash" -l"RNCAsyncStorage" -l"RNCMaskedView" -l"RNConfigReader" -l"RNDateTimePicker" -l"RNDeviceInfo" -l"RNFBAnalytics" -l"RNFBApp" -l"RNFBCrashlytics" -l"RNFastImage" -l"RNGestureHandler" -l"RNImageCropPicker" -l"RNLocalize" -l"RNReanimated" -l"RNRootView" -l"RNScreens" -l"RNVectorIcons" -l"React-Core" -l"React-CoreModules" -l"React-RCTAnimation" -l"React-RCTBlob" -l"React-RCTImage" -l"React-RCTLinking" -l"React-RCTNetwork" -l"React-RCTSettings" -l"React-RCTText" -l"React-RCTVibration" -l"React-cxxreact" -l"React-jsi" -l"React-jsiexecutor" -l"React-jsinspector" -l"ReactCommon" -l"ReactNativeART" -l"ReactNativeKeyboardInput" -l"ReactNativeKeyboardTrackingView" -l"SDWebImage" -l"SDWebImageWebPCoder" -l"TOCropViewController" -l"UMAppLoader" -l"UMCore" -l"UMPermissionsInterface" -l"UMReactNativeAdapter" -l"Yoga" -l"YogaKit" -l"c++" -l"crypto" -l"event" -l"event_core" -l"event_extra" -l"event_pthreads" -l"glog" -l"libwebp" -l"nanopb" -l"react-native-appearance" -l"react-native-background-timer" -l"react-native-cameraroll" -l"react-native-cookies" -l"react-native-document-picker" -l"react-native-jitsi-meet" -l"react-native-mmkv-storage" -l"react-native-notifications" -l"react-native-orientation-locker" -l"react-native-safe-area-context" -l"react-native-slider" -l"react-native-webview" -l"rn-extensions-share" -l"sqlite3" -l"ssl" -l"stdc++" -l"z" -framework "AudioToolbox" -framework "CFNetwork" -framework "CoreFoundation" -framework "CoreTelephony" -framework "FIRAnalyticsConnector" -framework "FirebaseAnalytics" -framework "Foundation" -framework "GoogleAppMeasurement" -framework "ImageIO" -framework "JavaScriptCore" -framework "JitsiMeet" -framework "MessageUI" -framework "MobileCoreServices" -framework "Photos" -framework "Security" -framework "StoreKit" -framework "SystemConfiguration" -framework "UIKit" -framework "WebRTC" OTHER_SWIFT_FLAGS = $(inherited) -D COCOAPODS -Xcc -fmodule-map-file="${PODS_CONFIGURATION_BUILD_DIR}/YogaKit/YogaKit.modulemap" -Xcc -fmodule-map-file="${PODS_ROOT}/Headers/Public/FlipperKit/FlipperKit.modulemap" -Xcc -fmodule-map-file="${PODS_ROOT}/Headers/Public/yoga/Yoga.modulemap" -Xcc -DFB_SONARKIT_ENABLED=1 PODS_BUILD_DIR = ${BUILD_DIR} PODS_CONFIGURATION_BUILD_DIR = ${PODS_BUILD_DIR}/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) diff --git a/ios/Pods/Target Support Files/Pods-RocketChatRN/Pods-RocketChatRN.release.xcconfig b/ios/Pods/Target Support Files/Pods-RocketChatRN/Pods-RocketChatRN.release.xcconfig index 844508b8..d4e66432 100644 --- a/ios/Pods/Target Support Files/Pods-RocketChatRN/Pods-RocketChatRN.release.xcconfig +++ b/ios/Pods/Target Support Files/Pods-RocketChatRN/Pods-RocketChatRN.release.xcconfig @@ -1,11 +1,11 @@ ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = YES FRAMEWORK_SEARCH_PATHS = $(inherited) "${PODS_ROOT}/FirebaseAnalytics/Frameworks" "${PODS_ROOT}/GoogleAppMeasurement/Frameworks" "${PODS_ROOT}/JitsiMeetSDK/Frameworks" GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 $(inherited) SD_WEBP=1 $(inherited) PB_FIELD_32BIT=1 PB_NO_PACKED_STRUCTS=1 PB_ENABLE_MALLOC=1 -HEADER_SEARCH_PATHS = $(inherited) "${PODS_ROOT}/Headers/Public" "${PODS_ROOT}/Headers/Public/BugsnagReactNative" "${PODS_ROOT}/Headers/Public/CocoaAsyncSocket" "${PODS_ROOT}/Headers/Public/CocoaLibEvent" "${PODS_ROOT}/Headers/Public/DoubleConversion" "${PODS_ROOT}/Headers/Public/EXAV" "${PODS_ROOT}/Headers/Public/EXAppleAuthentication" "${PODS_ROOT}/Headers/Public/EXConstants" "${PODS_ROOT}/Headers/Public/EXFileSystem" "${PODS_ROOT}/Headers/Public/EXHaptics" "${PODS_ROOT}/Headers/Public/EXImageLoader" "${PODS_ROOT}/Headers/Public/EXKeepAwake" "${PODS_ROOT}/Headers/Public/EXLocalAuthentication" "${PODS_ROOT}/Headers/Public/EXPermissions" "${PODS_ROOT}/Headers/Public/EXVideoThumbnails" "${PODS_ROOT}/Headers/Public/EXWebBrowser" "${PODS_ROOT}/Headers/Public/FBLazyVector" "${PODS_ROOT}/Headers/Public/FBReactNativeSpec" "${PODS_ROOT}/Headers/Public/Firebase" "${PODS_ROOT}/Headers/Public/FirebaseCore" "${PODS_ROOT}/Headers/Public/FirebaseCoreDiagnostics" "${PODS_ROOT}/Headers/Public/FirebaseCrashlytics" "${PODS_ROOT}/Headers/Public/FirebaseInstallations" "${PODS_ROOT}/Headers/Public/Flipper" "${PODS_ROOT}/Headers/Public/Flipper-DoubleConversion" "${PODS_ROOT}/Headers/Public/Flipper-Folly" "${PODS_ROOT}/Headers/Public/Flipper-Glog" "${PODS_ROOT}/Headers/Public/Flipper-PeerTalk" "${PODS_ROOT}/Headers/Public/Flipper-RSocket" "${PODS_ROOT}/Headers/Public/FlipperKit" "${PODS_ROOT}/Headers/Public/GoogleDataTransport" "${PODS_ROOT}/Headers/Public/GoogleDataTransportCCTSupport" "${PODS_ROOT}/Headers/Public/GoogleUtilities" "${PODS_ROOT}/Headers/Public/KeyCommands" "${PODS_ROOT}/Headers/Public/MMKV" "${PODS_ROOT}/Headers/Public/MMKVAppExtension" "${PODS_ROOT}/Headers/Public/MMKVCore" "${PODS_ROOT}/Headers/Public/OpenSSL-Universal" "${PODS_ROOT}/Headers/Public/PromisesObjC" "${PODS_ROOT}/Headers/Public/RCTRequired" "${PODS_ROOT}/Headers/Public/RCTTypeSafety" "${PODS_ROOT}/Headers/Public/RNBootSplash" "${PODS_ROOT}/Headers/Public/RNCAsyncStorage" "${PODS_ROOT}/Headers/Public/RNCMaskedView" "${PODS_ROOT}/Headers/Public/RNConfigReader" "${PODS_ROOT}/Headers/Public/RNDateTimePicker" "${PODS_ROOT}/Headers/Public/RNDeviceInfo" "${PODS_ROOT}/Headers/Public/RNFBAnalytics" "${PODS_ROOT}/Headers/Public/RNFBApp" "${PODS_ROOT}/Headers/Public/RNFBCrashlytics" "${PODS_ROOT}/Headers/Public/RNFastImage" "${PODS_ROOT}/Headers/Public/RNGestureHandler" "${PODS_ROOT}/Headers/Public/RNImageCropPicker" "${PODS_ROOT}/Headers/Public/RNLocalize" "${PODS_ROOT}/Headers/Public/RNReanimated" "${PODS_ROOT}/Headers/Public/RNRootView" "${PODS_ROOT}/Headers/Public/RNScreens" "${PODS_ROOT}/Headers/Public/RNVectorIcons" "${PODS_ROOT}/Headers/Public/React-Core" "${PODS_ROOT}/Headers/Public/React-RCTText" "${PODS_ROOT}/Headers/Public/React-callinvoker" "${PODS_ROOT}/Headers/Public/React-cxxreact" "${PODS_ROOT}/Headers/Public/React-jsi" "${PODS_ROOT}/Headers/Public/React-jsiexecutor" "${PODS_ROOT}/Headers/Public/React-jsinspector" "${PODS_ROOT}/Headers/Public/ReactCommon" "${PODS_ROOT}/Headers/Public/ReactNativeART" "${PODS_ROOT}/Headers/Public/ReactNativeKeyboardInput" "${PODS_ROOT}/Headers/Public/ReactNativeKeyboardTrackingView" "${PODS_ROOT}/Headers/Public/SDWebImage" "${PODS_ROOT}/Headers/Public/SDWebImageWebPCoder" "${PODS_ROOT}/Headers/Public/TOCropViewController" "${PODS_ROOT}/Headers/Public/UMAppLoader" "${PODS_ROOT}/Headers/Public/UMBarCodeScannerInterface" "${PODS_ROOT}/Headers/Public/UMCameraInterface" "${PODS_ROOT}/Headers/Public/UMConstantsInterface" "${PODS_ROOT}/Headers/Public/UMCore" "${PODS_ROOT}/Headers/Public/UMFaceDetectorInterface" "${PODS_ROOT}/Headers/Public/UMFileSystemInterface" "${PODS_ROOT}/Headers/Public/UMFontInterface" "${PODS_ROOT}/Headers/Public/UMImageLoaderInterface" "${PODS_ROOT}/Headers/Public/UMPermissionsInterface" "${PODS_ROOT}/Headers/Public/UMReactNativeAdapter" "${PODS_ROOT}/Headers/Public/UMSensorsInterface" "${PODS_ROOT}/Headers/Public/UMTaskManagerInterface" "${PODS_ROOT}/Headers/Public/Yoga" "${PODS_ROOT}/Headers/Public/YogaKit" "${PODS_ROOT}/Headers/Public/glog" "${PODS_ROOT}/Headers/Public/libwebp" "${PODS_ROOT}/Headers/Public/nanopb" "${PODS_ROOT}/Headers/Public/react-native-appearance" "${PODS_ROOT}/Headers/Public/react-native-background-timer" "${PODS_ROOT}/Headers/Public/react-native-cameraroll" "${PODS_ROOT}/Headers/Public/react-native-cookies" "${PODS_ROOT}/Headers/Public/react-native-document-picker" "${PODS_ROOT}/Headers/Public/react-native-jitsi-meet" "${PODS_ROOT}/Headers/Public/react-native-mmkv-storage" "${PODS_ROOT}/Headers/Public/react-native-notifications" "${PODS_ROOT}/Headers/Public/react-native-orientation-locker" "${PODS_ROOT}/Headers/Public/react-native-safe-area-context" "${PODS_ROOT}/Headers/Public/react-native-slider" "${PODS_ROOT}/Headers/Public/react-native-webview" "${PODS_ROOT}/Headers/Public/rn-extensions-share" "${PODS_ROOT}/Headers/Public/rn-fetch-blob" $(inherited) ${PODS_ROOT}/Firebase/CoreOnly/Sources "${PODS_TARGET_SRCROOT}/Sources/FBLPromises/include" "$(PODS_ROOT)/Headers/Private/React-Core" +HEADER_SEARCH_PATHS = $(inherited) "${PODS_ROOT}/Headers/Public" "${PODS_ROOT}/Headers/Public/BugsnagReactNative" "${PODS_ROOT}/Headers/Public/CocoaAsyncSocket" "${PODS_ROOT}/Headers/Public/CocoaLibEvent" "${PODS_ROOT}/Headers/Public/DoubleConversion" "${PODS_ROOT}/Headers/Public/EXAV" "${PODS_ROOT}/Headers/Public/EXAppleAuthentication" "${PODS_ROOT}/Headers/Public/EXConstants" "${PODS_ROOT}/Headers/Public/EXFileSystem" "${PODS_ROOT}/Headers/Public/EXHaptics" "${PODS_ROOT}/Headers/Public/EXImageLoader" "${PODS_ROOT}/Headers/Public/EXKeepAwake" "${PODS_ROOT}/Headers/Public/EXLocalAuthentication" "${PODS_ROOT}/Headers/Public/EXPermissions" "${PODS_ROOT}/Headers/Public/EXVideoThumbnails" "${PODS_ROOT}/Headers/Public/EXWebBrowser" "${PODS_ROOT}/Headers/Public/FBLazyVector" "${PODS_ROOT}/Headers/Public/FBReactNativeSpec" "${PODS_ROOT}/Headers/Public/Firebase" "${PODS_ROOT}/Headers/Public/FirebaseCore" "${PODS_ROOT}/Headers/Public/FirebaseCoreDiagnostics" "${PODS_ROOT}/Headers/Public/FirebaseCrashlytics" "${PODS_ROOT}/Headers/Public/FirebaseInstallations" "${PODS_ROOT}/Headers/Public/Flipper" "${PODS_ROOT}/Headers/Public/Flipper-DoubleConversion" "${PODS_ROOT}/Headers/Public/Flipper-Folly" "${PODS_ROOT}/Headers/Public/Flipper-Glog" "${PODS_ROOT}/Headers/Public/Flipper-PeerTalk" "${PODS_ROOT}/Headers/Public/Flipper-RSocket" "${PODS_ROOT}/Headers/Public/FlipperKit" "${PODS_ROOT}/Headers/Public/GoogleDataTransport" "${PODS_ROOT}/Headers/Public/GoogleDataTransportCCTSupport" "${PODS_ROOT}/Headers/Public/GoogleUtilities" "${PODS_ROOT}/Headers/Public/KeyCommands" "${PODS_ROOT}/Headers/Public/MMKV" "${PODS_ROOT}/Headers/Public/MMKVAppExtension" "${PODS_ROOT}/Headers/Public/MMKVCore" "${PODS_ROOT}/Headers/Public/OpenSSL-Universal" "${PODS_ROOT}/Headers/Public/PromisesObjC" "${PODS_ROOT}/Headers/Public/RCTRequired" "${PODS_ROOT}/Headers/Public/RCTTypeSafety" "${PODS_ROOT}/Headers/Public/RNBootSplash" "${PODS_ROOT}/Headers/Public/RNCAsyncStorage" "${PODS_ROOT}/Headers/Public/RNCMaskedView" "${PODS_ROOT}/Headers/Public/RNConfigReader" "${PODS_ROOT}/Headers/Public/RNDateTimePicker" "${PODS_ROOT}/Headers/Public/RNDeviceInfo" "${PODS_ROOT}/Headers/Public/RNFBAnalytics" "${PODS_ROOT}/Headers/Public/RNFBApp" "${PODS_ROOT}/Headers/Public/RNFBCrashlytics" "${PODS_ROOT}/Headers/Public/RNFastImage" "${PODS_ROOT}/Headers/Public/RNGestureHandler" "${PODS_ROOT}/Headers/Public/RNImageCropPicker" "${PODS_ROOT}/Headers/Public/RNLocalize" "${PODS_ROOT}/Headers/Public/RNReanimated" "${PODS_ROOT}/Headers/Public/RNRootView" "${PODS_ROOT}/Headers/Public/RNScreens" "${PODS_ROOT}/Headers/Public/RNVectorIcons" "${PODS_ROOT}/Headers/Public/React-Core" "${PODS_ROOT}/Headers/Public/React-RCTText" "${PODS_ROOT}/Headers/Public/React-callinvoker" "${PODS_ROOT}/Headers/Public/React-cxxreact" "${PODS_ROOT}/Headers/Public/React-jsi" "${PODS_ROOT}/Headers/Public/React-jsiexecutor" "${PODS_ROOT}/Headers/Public/React-jsinspector" "${PODS_ROOT}/Headers/Public/ReactCommon" "${PODS_ROOT}/Headers/Public/ReactNativeART" "${PODS_ROOT}/Headers/Public/ReactNativeKeyboardInput" "${PODS_ROOT}/Headers/Public/ReactNativeKeyboardTrackingView" "${PODS_ROOT}/Headers/Public/SDWebImage" "${PODS_ROOT}/Headers/Public/SDWebImageWebPCoder" "${PODS_ROOT}/Headers/Public/TOCropViewController" "${PODS_ROOT}/Headers/Public/UMAppLoader" "${PODS_ROOT}/Headers/Public/UMBarCodeScannerInterface" "${PODS_ROOT}/Headers/Public/UMCameraInterface" "${PODS_ROOT}/Headers/Public/UMConstantsInterface" "${PODS_ROOT}/Headers/Public/UMCore" "${PODS_ROOT}/Headers/Public/UMFaceDetectorInterface" "${PODS_ROOT}/Headers/Public/UMFileSystemInterface" "${PODS_ROOT}/Headers/Public/UMFontInterface" "${PODS_ROOT}/Headers/Public/UMImageLoaderInterface" "${PODS_ROOT}/Headers/Public/UMPermissionsInterface" "${PODS_ROOT}/Headers/Public/UMReactNativeAdapter" "${PODS_ROOT}/Headers/Public/UMSensorsInterface" "${PODS_ROOT}/Headers/Public/UMTaskManagerInterface" "${PODS_ROOT}/Headers/Public/Yoga" "${PODS_ROOT}/Headers/Public/YogaKit" "${PODS_ROOT}/Headers/Public/glog" "${PODS_ROOT}/Headers/Public/libwebp" "${PODS_ROOT}/Headers/Public/nanopb" "${PODS_ROOT}/Headers/Public/react-native-appearance" "${PODS_ROOT}/Headers/Public/react-native-background-timer" "${PODS_ROOT}/Headers/Public/react-native-cameraroll" "${PODS_ROOT}/Headers/Public/react-native-cookies" "${PODS_ROOT}/Headers/Public/react-native-document-picker" "${PODS_ROOT}/Headers/Public/react-native-jitsi-meet" "${PODS_ROOT}/Headers/Public/react-native-mmkv-storage" "${PODS_ROOT}/Headers/Public/react-native-notifications" "${PODS_ROOT}/Headers/Public/react-native-orientation-locker" "${PODS_ROOT}/Headers/Public/react-native-safe-area-context" "${PODS_ROOT}/Headers/Public/react-native-slider" "${PODS_ROOT}/Headers/Public/react-native-webview" "${PODS_ROOT}/Headers/Public/rn-extensions-share" $(inherited) ${PODS_ROOT}/Firebase/CoreOnly/Sources "${PODS_TARGET_SRCROOT}/Sources/FBLPromises/include" "$(PODS_ROOT)/Headers/Private/React-Core" LD_RUNPATH_SEARCH_PATHS = $(inherited) '@executable_path/Frameworks' '@loader_path/Frameworks' -LIBRARY_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/BugsnagReactNative" "${PODS_CONFIGURATION_BUILD_DIR}/CocoaAsyncSocket" "${PODS_CONFIGURATION_BUILD_DIR}/DoubleConversion" "${PODS_CONFIGURATION_BUILD_DIR}/EXAV" "${PODS_CONFIGURATION_BUILD_DIR}/EXAppleAuthentication" "${PODS_CONFIGURATION_BUILD_DIR}/EXConstants" "${PODS_CONFIGURATION_BUILD_DIR}/EXFileSystem" "${PODS_CONFIGURATION_BUILD_DIR}/EXHaptics" "${PODS_CONFIGURATION_BUILD_DIR}/EXImageLoader" "${PODS_CONFIGURATION_BUILD_DIR}/EXKeepAwake" "${PODS_CONFIGURATION_BUILD_DIR}/EXLocalAuthentication" "${PODS_CONFIGURATION_BUILD_DIR}/EXPermissions" "${PODS_CONFIGURATION_BUILD_DIR}/EXVideoThumbnails" "${PODS_CONFIGURATION_BUILD_DIR}/EXWebBrowser" "${PODS_CONFIGURATION_BUILD_DIR}/FBReactNativeSpec" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseCore" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseCoreDiagnostics" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseCrashlytics" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseInstallations" "${PODS_CONFIGURATION_BUILD_DIR}/Folly" "${PODS_CONFIGURATION_BUILD_DIR}/GoogleDataTransport" "${PODS_CONFIGURATION_BUILD_DIR}/GoogleDataTransportCCTSupport" "${PODS_CONFIGURATION_BUILD_DIR}/GoogleUtilities" "${PODS_CONFIGURATION_BUILD_DIR}/KeyCommands" "${PODS_CONFIGURATION_BUILD_DIR}/MMKV" "${PODS_CONFIGURATION_BUILD_DIR}/MMKVCore" "${PODS_CONFIGURATION_BUILD_DIR}/PromisesObjC" "${PODS_CONFIGURATION_BUILD_DIR}/RCTTypeSafety" "${PODS_CONFIGURATION_BUILD_DIR}/RNBootSplash" "${PODS_CONFIGURATION_BUILD_DIR}/RNCAsyncStorage" "${PODS_CONFIGURATION_BUILD_DIR}/RNCMaskedView" "${PODS_CONFIGURATION_BUILD_DIR}/RNConfigReader" "${PODS_CONFIGURATION_BUILD_DIR}/RNDateTimePicker" "${PODS_CONFIGURATION_BUILD_DIR}/RNDeviceInfo" "${PODS_CONFIGURATION_BUILD_DIR}/RNFBAnalytics" "${PODS_CONFIGURATION_BUILD_DIR}/RNFBApp" "${PODS_CONFIGURATION_BUILD_DIR}/RNFBCrashlytics" "${PODS_CONFIGURATION_BUILD_DIR}/RNFastImage" "${PODS_CONFIGURATION_BUILD_DIR}/RNGestureHandler" "${PODS_CONFIGURATION_BUILD_DIR}/RNImageCropPicker" "${PODS_CONFIGURATION_BUILD_DIR}/RNLocalize" "${PODS_CONFIGURATION_BUILD_DIR}/RNReanimated" "${PODS_CONFIGURATION_BUILD_DIR}/RNRootView" "${PODS_CONFIGURATION_BUILD_DIR}/RNScreens" "${PODS_CONFIGURATION_BUILD_DIR}/RNVectorIcons" "${PODS_CONFIGURATION_BUILD_DIR}/React-Core" "${PODS_CONFIGURATION_BUILD_DIR}/React-CoreModules" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTAnimation" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTBlob" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTImage" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTLinking" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTNetwork" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTSettings" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTText" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTVibration" "${PODS_CONFIGURATION_BUILD_DIR}/React-cxxreact" "${PODS_CONFIGURATION_BUILD_DIR}/React-jsi" "${PODS_CONFIGURATION_BUILD_DIR}/React-jsiexecutor" "${PODS_CONFIGURATION_BUILD_DIR}/React-jsinspector" "${PODS_CONFIGURATION_BUILD_DIR}/ReactCommon" "${PODS_CONFIGURATION_BUILD_DIR}/ReactNativeART" "${PODS_CONFIGURATION_BUILD_DIR}/ReactNativeKeyboardInput" "${PODS_CONFIGURATION_BUILD_DIR}/ReactNativeKeyboardTrackingView" "${PODS_CONFIGURATION_BUILD_DIR}/SDWebImage" "${PODS_CONFIGURATION_BUILD_DIR}/SDWebImageWebPCoder" "${PODS_CONFIGURATION_BUILD_DIR}/TOCropViewController" "${PODS_CONFIGURATION_BUILD_DIR}/UMAppLoader" "${PODS_CONFIGURATION_BUILD_DIR}/UMCore" "${PODS_CONFIGURATION_BUILD_DIR}/UMPermissionsInterface" "${PODS_CONFIGURATION_BUILD_DIR}/UMReactNativeAdapter" "${PODS_CONFIGURATION_BUILD_DIR}/Yoga" "${PODS_CONFIGURATION_BUILD_DIR}/YogaKit" "${PODS_CONFIGURATION_BUILD_DIR}/glog" "${PODS_CONFIGURATION_BUILD_DIR}/libwebp" "${PODS_CONFIGURATION_BUILD_DIR}/nanopb" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-appearance" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-background-timer" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-cameraroll" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-cookies" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-document-picker" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-jitsi-meet" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-mmkv-storage" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-notifications" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-orientation-locker" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-safe-area-context" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-slider" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-webview" "${PODS_CONFIGURATION_BUILD_DIR}/rn-extensions-share" "${PODS_CONFIGURATION_BUILD_DIR}/rn-fetch-blob" "${PODS_ROOT}/CocoaLibEvent/lib" "${PODS_ROOT}/OpenSSL-Universal/ios/lib" +LIBRARY_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/BugsnagReactNative" "${PODS_CONFIGURATION_BUILD_DIR}/CocoaAsyncSocket" "${PODS_CONFIGURATION_BUILD_DIR}/DoubleConversion" "${PODS_CONFIGURATION_BUILD_DIR}/EXAV" "${PODS_CONFIGURATION_BUILD_DIR}/EXAppleAuthentication" "${PODS_CONFIGURATION_BUILD_DIR}/EXConstants" "${PODS_CONFIGURATION_BUILD_DIR}/EXFileSystem" "${PODS_CONFIGURATION_BUILD_DIR}/EXHaptics" "${PODS_CONFIGURATION_BUILD_DIR}/EXImageLoader" "${PODS_CONFIGURATION_BUILD_DIR}/EXKeepAwake" "${PODS_CONFIGURATION_BUILD_DIR}/EXLocalAuthentication" "${PODS_CONFIGURATION_BUILD_DIR}/EXPermissions" "${PODS_CONFIGURATION_BUILD_DIR}/EXVideoThumbnails" "${PODS_CONFIGURATION_BUILD_DIR}/EXWebBrowser" "${PODS_CONFIGURATION_BUILD_DIR}/FBReactNativeSpec" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseCore" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseCoreDiagnostics" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseCrashlytics" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseInstallations" "${PODS_CONFIGURATION_BUILD_DIR}/Folly" "${PODS_CONFIGURATION_BUILD_DIR}/GoogleDataTransport" "${PODS_CONFIGURATION_BUILD_DIR}/GoogleDataTransportCCTSupport" "${PODS_CONFIGURATION_BUILD_DIR}/GoogleUtilities" "${PODS_CONFIGURATION_BUILD_DIR}/KeyCommands" "${PODS_CONFIGURATION_BUILD_DIR}/MMKV" "${PODS_CONFIGURATION_BUILD_DIR}/MMKVCore" "${PODS_CONFIGURATION_BUILD_DIR}/PromisesObjC" "${PODS_CONFIGURATION_BUILD_DIR}/RCTTypeSafety" "${PODS_CONFIGURATION_BUILD_DIR}/RNBootSplash" "${PODS_CONFIGURATION_BUILD_DIR}/RNCAsyncStorage" "${PODS_CONFIGURATION_BUILD_DIR}/RNCMaskedView" "${PODS_CONFIGURATION_BUILD_DIR}/RNConfigReader" "${PODS_CONFIGURATION_BUILD_DIR}/RNDateTimePicker" "${PODS_CONFIGURATION_BUILD_DIR}/RNDeviceInfo" "${PODS_CONFIGURATION_BUILD_DIR}/RNFBAnalytics" "${PODS_CONFIGURATION_BUILD_DIR}/RNFBApp" "${PODS_CONFIGURATION_BUILD_DIR}/RNFBCrashlytics" "${PODS_CONFIGURATION_BUILD_DIR}/RNFastImage" "${PODS_CONFIGURATION_BUILD_DIR}/RNGestureHandler" "${PODS_CONFIGURATION_BUILD_DIR}/RNImageCropPicker" "${PODS_CONFIGURATION_BUILD_DIR}/RNLocalize" "${PODS_CONFIGURATION_BUILD_DIR}/RNReanimated" "${PODS_CONFIGURATION_BUILD_DIR}/RNRootView" "${PODS_CONFIGURATION_BUILD_DIR}/RNScreens" "${PODS_CONFIGURATION_BUILD_DIR}/RNVectorIcons" "${PODS_CONFIGURATION_BUILD_DIR}/React-Core" "${PODS_CONFIGURATION_BUILD_DIR}/React-CoreModules" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTAnimation" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTBlob" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTImage" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTLinking" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTNetwork" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTSettings" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTText" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTVibration" "${PODS_CONFIGURATION_BUILD_DIR}/React-cxxreact" "${PODS_CONFIGURATION_BUILD_DIR}/React-jsi" "${PODS_CONFIGURATION_BUILD_DIR}/React-jsiexecutor" "${PODS_CONFIGURATION_BUILD_DIR}/React-jsinspector" "${PODS_CONFIGURATION_BUILD_DIR}/ReactCommon" "${PODS_CONFIGURATION_BUILD_DIR}/ReactNativeART" "${PODS_CONFIGURATION_BUILD_DIR}/ReactNativeKeyboardInput" "${PODS_CONFIGURATION_BUILD_DIR}/ReactNativeKeyboardTrackingView" "${PODS_CONFIGURATION_BUILD_DIR}/SDWebImage" "${PODS_CONFIGURATION_BUILD_DIR}/SDWebImageWebPCoder" "${PODS_CONFIGURATION_BUILD_DIR}/TOCropViewController" "${PODS_CONFIGURATION_BUILD_DIR}/UMAppLoader" "${PODS_CONFIGURATION_BUILD_DIR}/UMCore" "${PODS_CONFIGURATION_BUILD_DIR}/UMPermissionsInterface" "${PODS_CONFIGURATION_BUILD_DIR}/UMReactNativeAdapter" "${PODS_CONFIGURATION_BUILD_DIR}/Yoga" "${PODS_CONFIGURATION_BUILD_DIR}/YogaKit" "${PODS_CONFIGURATION_BUILD_DIR}/glog" "${PODS_CONFIGURATION_BUILD_DIR}/libwebp" "${PODS_CONFIGURATION_BUILD_DIR}/nanopb" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-appearance" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-background-timer" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-cameraroll" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-cookies" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-document-picker" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-jitsi-meet" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-mmkv-storage" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-notifications" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-orientation-locker" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-safe-area-context" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-slider" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-webview" "${PODS_CONFIGURATION_BUILD_DIR}/rn-extensions-share" "${PODS_ROOT}/CocoaLibEvent/lib" "${PODS_ROOT}/OpenSSL-Universal/ios/lib" OTHER_CFLAGS = $(inherited) -fmodule-map-file="${PODS_CONFIGURATION_BUILD_DIR}/YogaKit/YogaKit.modulemap" -fmodule-map-file="${PODS_ROOT}/Headers/Public/yoga/Yoga.modulemap" -OTHER_LDFLAGS = $(inherited) -ObjC -l"BugsnagReactNative" -l"CocoaAsyncSocket" -l"DoubleConversion" -l"EXAV" -l"EXAppleAuthentication" -l"EXConstants" -l"EXFileSystem" -l"EXHaptics" -l"EXImageLoader" -l"EXKeepAwake" -l"EXLocalAuthentication" -l"EXPermissions" -l"EXVideoThumbnails" -l"EXWebBrowser" -l"FBReactNativeSpec" -l"FirebaseCore" -l"FirebaseCoreDiagnostics" -l"FirebaseCrashlytics" -l"FirebaseInstallations" -l"Folly" -l"GoogleDataTransport" -l"GoogleDataTransportCCTSupport" -l"GoogleUtilities" -l"KeyCommands" -l"MMKV" -l"MMKVCore" -l"PromisesObjC" -l"RCTTypeSafety" -l"RNBootSplash" -l"RNCAsyncStorage" -l"RNCMaskedView" -l"RNConfigReader" -l"RNDateTimePicker" -l"RNDeviceInfo" -l"RNFBAnalytics" -l"RNFBApp" -l"RNFBCrashlytics" -l"RNFastImage" -l"RNGestureHandler" -l"RNImageCropPicker" -l"RNLocalize" -l"RNReanimated" -l"RNRootView" -l"RNScreens" -l"RNVectorIcons" -l"React-Core" -l"React-CoreModules" -l"React-RCTAnimation" -l"React-RCTBlob" -l"React-RCTImage" -l"React-RCTLinking" -l"React-RCTNetwork" -l"React-RCTSettings" -l"React-RCTText" -l"React-RCTVibration" -l"React-cxxreact" -l"React-jsi" -l"React-jsiexecutor" -l"React-jsinspector" -l"ReactCommon" -l"ReactNativeART" -l"ReactNativeKeyboardInput" -l"ReactNativeKeyboardTrackingView" -l"SDWebImage" -l"SDWebImageWebPCoder" -l"TOCropViewController" -l"UMAppLoader" -l"UMCore" -l"UMPermissionsInterface" -l"UMReactNativeAdapter" -l"Yoga" -l"YogaKit" -l"c++" -l"crypto" -l"event" -l"event_core" -l"event_extra" -l"event_pthreads" -l"glog" -l"libwebp" -l"nanopb" -l"react-native-appearance" -l"react-native-background-timer" -l"react-native-cameraroll" -l"react-native-cookies" -l"react-native-document-picker" -l"react-native-jitsi-meet" -l"react-native-mmkv-storage" -l"react-native-notifications" -l"react-native-orientation-locker" -l"react-native-safe-area-context" -l"react-native-slider" -l"react-native-webview" -l"rn-extensions-share" -l"rn-fetch-blob" -l"sqlite3" -l"ssl" -l"stdc++" -l"z" -framework "AudioToolbox" -framework "CFNetwork" -framework "CoreFoundation" -framework "CoreTelephony" -framework "FIRAnalyticsConnector" -framework "FirebaseAnalytics" -framework "Foundation" -framework "GoogleAppMeasurement" -framework "ImageIO" -framework "JavaScriptCore" -framework "JitsiMeet" -framework "MessageUI" -framework "MobileCoreServices" -framework "Photos" -framework "Security" -framework "StoreKit" -framework "SystemConfiguration" -framework "UIKit" -framework "WebRTC" +OTHER_LDFLAGS = $(inherited) -ObjC -l"BugsnagReactNative" -l"CocoaAsyncSocket" -l"DoubleConversion" -l"EXAV" -l"EXAppleAuthentication" -l"EXConstants" -l"EXFileSystem" -l"EXHaptics" -l"EXImageLoader" -l"EXKeepAwake" -l"EXLocalAuthentication" -l"EXPermissions" -l"EXVideoThumbnails" -l"EXWebBrowser" -l"FBReactNativeSpec" -l"FirebaseCore" -l"FirebaseCoreDiagnostics" -l"FirebaseCrashlytics" -l"FirebaseInstallations" -l"Folly" -l"GoogleDataTransport" -l"GoogleDataTransportCCTSupport" -l"GoogleUtilities" -l"KeyCommands" -l"MMKV" -l"MMKVCore" -l"PromisesObjC" -l"RCTTypeSafety" -l"RNBootSplash" -l"RNCAsyncStorage" -l"RNCMaskedView" -l"RNConfigReader" -l"RNDateTimePicker" -l"RNDeviceInfo" -l"RNFBAnalytics" -l"RNFBApp" -l"RNFBCrashlytics" -l"RNFastImage" -l"RNGestureHandler" -l"RNImageCropPicker" -l"RNLocalize" -l"RNReanimated" -l"RNRootView" -l"RNScreens" -l"RNVectorIcons" -l"React-Core" -l"React-CoreModules" -l"React-RCTAnimation" -l"React-RCTBlob" -l"React-RCTImage" -l"React-RCTLinking" -l"React-RCTNetwork" -l"React-RCTSettings" -l"React-RCTText" -l"React-RCTVibration" -l"React-cxxreact" -l"React-jsi" -l"React-jsiexecutor" -l"React-jsinspector" -l"ReactCommon" -l"ReactNativeART" -l"ReactNativeKeyboardInput" -l"ReactNativeKeyboardTrackingView" -l"SDWebImage" -l"SDWebImageWebPCoder" -l"TOCropViewController" -l"UMAppLoader" -l"UMCore" -l"UMPermissionsInterface" -l"UMReactNativeAdapter" -l"Yoga" -l"YogaKit" -l"c++" -l"crypto" -l"event" -l"event_core" -l"event_extra" -l"event_pthreads" -l"glog" -l"libwebp" -l"nanopb" -l"react-native-appearance" -l"react-native-background-timer" -l"react-native-cameraroll" -l"react-native-cookies" -l"react-native-document-picker" -l"react-native-jitsi-meet" -l"react-native-mmkv-storage" -l"react-native-notifications" -l"react-native-orientation-locker" -l"react-native-safe-area-context" -l"react-native-slider" -l"react-native-webview" -l"rn-extensions-share" -l"sqlite3" -l"ssl" -l"stdc++" -l"z" -framework "AudioToolbox" -framework "CFNetwork" -framework "CoreFoundation" -framework "CoreTelephony" -framework "FIRAnalyticsConnector" -framework "FirebaseAnalytics" -framework "Foundation" -framework "GoogleAppMeasurement" -framework "ImageIO" -framework "JavaScriptCore" -framework "JitsiMeet" -framework "MessageUI" -framework "MobileCoreServices" -framework "Photos" -framework "Security" -framework "StoreKit" -framework "SystemConfiguration" -framework "UIKit" -framework "WebRTC" OTHER_SWIFT_FLAGS = $(inherited) -D COCOAPODS -Xcc -fmodule-map-file="${PODS_CONFIGURATION_BUILD_DIR}/YogaKit/YogaKit.modulemap" -Xcc -fmodule-map-file="${PODS_ROOT}/Headers/Public/yoga/Yoga.modulemap" PODS_BUILD_DIR = ${BUILD_DIR} PODS_CONFIGURATION_BUILD_DIR = ${PODS_BUILD_DIR}/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) diff --git a/ios/Pods/Target Support Files/Pods-ShareRocketChatRN/Pods-ShareRocketChatRN-acknowledgements.markdown b/ios/Pods/Target Support Files/Pods-ShareRocketChatRN/Pods-ShareRocketChatRN-acknowledgements.markdown index 6bff99bd..6c108351 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 @@ -4601,29 +4601,4 @@ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. - -## rn-fetch-blob - -MIT License - -Copyright (c) 2017 xeiyan@gmail.com - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. - Generated by CocoaPods - https://cocoapods.org 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 4dd4bd02..38f9469b 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 @@ -5015,37 +5015,6 @@ SOFTWARE. Type PSGroupSpecifier - - FooterText - MIT License - -Copyright (c) 2017 xeiyan@gmail.com - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. - - License - MIT - Title - rn-fetch-blob - Type - PSGroupSpecifier - FooterText Generated by CocoaPods - https://cocoapods.org 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 d8af7209..337a81f6 100644 --- a/ios/Pods/Target Support Files/Pods-ShareRocketChatRN/Pods-ShareRocketChatRN.debug.xcconfig +++ b/ios/Pods/Target Support Files/Pods-ShareRocketChatRN/Pods-ShareRocketChatRN.debug.xcconfig @@ -1,10 +1,10 @@ FRAMEWORK_SEARCH_PATHS = $(inherited) "${PODS_ROOT}/FirebaseAnalytics/Frameworks" "${PODS_ROOT}/GoogleAppMeasurement/Frameworks" "${PODS_ROOT}/JitsiMeetSDK/Frameworks" GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 FB_SONARKIT_ENABLED=1 $(inherited) SD_WEBP=1 $(inherited) PB_FIELD_32BIT=1 PB_NO_PACKED_STRUCTS=1 PB_ENABLE_MALLOC=1 -HEADER_SEARCH_PATHS = $(inherited) "${PODS_ROOT}/Headers/Public" "${PODS_ROOT}/Headers/Public/BugsnagReactNative" "${PODS_ROOT}/Headers/Public/CocoaAsyncSocket" "${PODS_ROOT}/Headers/Public/CocoaLibEvent" "${PODS_ROOT}/Headers/Public/DoubleConversion" "${PODS_ROOT}/Headers/Public/EXAV" "${PODS_ROOT}/Headers/Public/EXAppleAuthentication" "${PODS_ROOT}/Headers/Public/EXConstants" "${PODS_ROOT}/Headers/Public/EXFileSystem" "${PODS_ROOT}/Headers/Public/EXHaptics" "${PODS_ROOT}/Headers/Public/EXImageLoader" "${PODS_ROOT}/Headers/Public/EXKeepAwake" "${PODS_ROOT}/Headers/Public/EXLocalAuthentication" "${PODS_ROOT}/Headers/Public/EXPermissions" "${PODS_ROOT}/Headers/Public/EXVideoThumbnails" "${PODS_ROOT}/Headers/Public/EXWebBrowser" "${PODS_ROOT}/Headers/Public/FBLazyVector" "${PODS_ROOT}/Headers/Public/FBReactNativeSpec" "${PODS_ROOT}/Headers/Public/Firebase" "${PODS_ROOT}/Headers/Public/FirebaseCore" "${PODS_ROOT}/Headers/Public/FirebaseCoreDiagnostics" "${PODS_ROOT}/Headers/Public/FirebaseCrashlytics" "${PODS_ROOT}/Headers/Public/FirebaseInstallations" "${PODS_ROOT}/Headers/Public/Flipper" "${PODS_ROOT}/Headers/Public/Flipper-DoubleConversion" "${PODS_ROOT}/Headers/Public/Flipper-Folly" "${PODS_ROOT}/Headers/Public/Flipper-Glog" "${PODS_ROOT}/Headers/Public/Flipper-PeerTalk" "${PODS_ROOT}/Headers/Public/Flipper-RSocket" "${PODS_ROOT}/Headers/Public/FlipperKit" "${PODS_ROOT}/Headers/Public/GoogleDataTransport" "${PODS_ROOT}/Headers/Public/GoogleDataTransportCCTSupport" "${PODS_ROOT}/Headers/Public/GoogleUtilities" "${PODS_ROOT}/Headers/Public/KeyCommands" "${PODS_ROOT}/Headers/Public/MMKV" "${PODS_ROOT}/Headers/Public/MMKVAppExtension" "${PODS_ROOT}/Headers/Public/MMKVCore" "${PODS_ROOT}/Headers/Public/OpenSSL-Universal" "${PODS_ROOT}/Headers/Public/PromisesObjC" "${PODS_ROOT}/Headers/Public/RCTRequired" "${PODS_ROOT}/Headers/Public/RCTTypeSafety" "${PODS_ROOT}/Headers/Public/RNBootSplash" "${PODS_ROOT}/Headers/Public/RNCAsyncStorage" "${PODS_ROOT}/Headers/Public/RNCMaskedView" "${PODS_ROOT}/Headers/Public/RNConfigReader" "${PODS_ROOT}/Headers/Public/RNDateTimePicker" "${PODS_ROOT}/Headers/Public/RNDeviceInfo" "${PODS_ROOT}/Headers/Public/RNFBAnalytics" "${PODS_ROOT}/Headers/Public/RNFBApp" "${PODS_ROOT}/Headers/Public/RNFBCrashlytics" "${PODS_ROOT}/Headers/Public/RNFastImage" "${PODS_ROOT}/Headers/Public/RNGestureHandler" "${PODS_ROOT}/Headers/Public/RNImageCropPicker" "${PODS_ROOT}/Headers/Public/RNLocalize" "${PODS_ROOT}/Headers/Public/RNReanimated" "${PODS_ROOT}/Headers/Public/RNRootView" "${PODS_ROOT}/Headers/Public/RNScreens" "${PODS_ROOT}/Headers/Public/RNVectorIcons" "${PODS_ROOT}/Headers/Public/React-Core" "${PODS_ROOT}/Headers/Public/React-RCTText" "${PODS_ROOT}/Headers/Public/React-callinvoker" "${PODS_ROOT}/Headers/Public/React-cxxreact" "${PODS_ROOT}/Headers/Public/React-jsi" "${PODS_ROOT}/Headers/Public/React-jsiexecutor" "${PODS_ROOT}/Headers/Public/React-jsinspector" "${PODS_ROOT}/Headers/Public/ReactCommon" "${PODS_ROOT}/Headers/Public/ReactNativeART" "${PODS_ROOT}/Headers/Public/ReactNativeKeyboardInput" "${PODS_ROOT}/Headers/Public/ReactNativeKeyboardTrackingView" "${PODS_ROOT}/Headers/Public/SDWebImage" "${PODS_ROOT}/Headers/Public/SDWebImageWebPCoder" "${PODS_ROOT}/Headers/Public/TOCropViewController" "${PODS_ROOT}/Headers/Public/UMAppLoader" "${PODS_ROOT}/Headers/Public/UMBarCodeScannerInterface" "${PODS_ROOT}/Headers/Public/UMCameraInterface" "${PODS_ROOT}/Headers/Public/UMConstantsInterface" "${PODS_ROOT}/Headers/Public/UMCore" "${PODS_ROOT}/Headers/Public/UMFaceDetectorInterface" "${PODS_ROOT}/Headers/Public/UMFileSystemInterface" "${PODS_ROOT}/Headers/Public/UMFontInterface" "${PODS_ROOT}/Headers/Public/UMImageLoaderInterface" "${PODS_ROOT}/Headers/Public/UMPermissionsInterface" "${PODS_ROOT}/Headers/Public/UMReactNativeAdapter" "${PODS_ROOT}/Headers/Public/UMSensorsInterface" "${PODS_ROOT}/Headers/Public/UMTaskManagerInterface" "${PODS_ROOT}/Headers/Public/Yoga" "${PODS_ROOT}/Headers/Public/YogaKit" "${PODS_ROOT}/Headers/Public/glog" "${PODS_ROOT}/Headers/Public/libwebp" "${PODS_ROOT}/Headers/Public/nanopb" "${PODS_ROOT}/Headers/Public/react-native-appearance" "${PODS_ROOT}/Headers/Public/react-native-background-timer" "${PODS_ROOT}/Headers/Public/react-native-cameraroll" "${PODS_ROOT}/Headers/Public/react-native-cookies" "${PODS_ROOT}/Headers/Public/react-native-document-picker" "${PODS_ROOT}/Headers/Public/react-native-jitsi-meet" "${PODS_ROOT}/Headers/Public/react-native-mmkv-storage" "${PODS_ROOT}/Headers/Public/react-native-notifications" "${PODS_ROOT}/Headers/Public/react-native-orientation-locker" "${PODS_ROOT}/Headers/Public/react-native-safe-area-context" "${PODS_ROOT}/Headers/Public/react-native-slider" "${PODS_ROOT}/Headers/Public/react-native-webview" "${PODS_ROOT}/Headers/Public/rn-extensions-share" "${PODS_ROOT}/Headers/Public/rn-fetch-blob" $(inherited) ${PODS_ROOT}/Firebase/CoreOnly/Sources "${PODS_TARGET_SRCROOT}/Sources/FBLPromises/include" "$(PODS_ROOT)/Headers/Private/React-Core" +HEADER_SEARCH_PATHS = $(inherited) "${PODS_ROOT}/Headers/Public" "${PODS_ROOT}/Headers/Public/BugsnagReactNative" "${PODS_ROOT}/Headers/Public/CocoaAsyncSocket" "${PODS_ROOT}/Headers/Public/CocoaLibEvent" "${PODS_ROOT}/Headers/Public/DoubleConversion" "${PODS_ROOT}/Headers/Public/EXAV" "${PODS_ROOT}/Headers/Public/EXAppleAuthentication" "${PODS_ROOT}/Headers/Public/EXConstants" "${PODS_ROOT}/Headers/Public/EXFileSystem" "${PODS_ROOT}/Headers/Public/EXHaptics" "${PODS_ROOT}/Headers/Public/EXImageLoader" "${PODS_ROOT}/Headers/Public/EXKeepAwake" "${PODS_ROOT}/Headers/Public/EXLocalAuthentication" "${PODS_ROOT}/Headers/Public/EXPermissions" "${PODS_ROOT}/Headers/Public/EXVideoThumbnails" "${PODS_ROOT}/Headers/Public/EXWebBrowser" "${PODS_ROOT}/Headers/Public/FBLazyVector" "${PODS_ROOT}/Headers/Public/FBReactNativeSpec" "${PODS_ROOT}/Headers/Public/Firebase" "${PODS_ROOT}/Headers/Public/FirebaseCore" "${PODS_ROOT}/Headers/Public/FirebaseCoreDiagnostics" "${PODS_ROOT}/Headers/Public/FirebaseCrashlytics" "${PODS_ROOT}/Headers/Public/FirebaseInstallations" "${PODS_ROOT}/Headers/Public/Flipper" "${PODS_ROOT}/Headers/Public/Flipper-DoubleConversion" "${PODS_ROOT}/Headers/Public/Flipper-Folly" "${PODS_ROOT}/Headers/Public/Flipper-Glog" "${PODS_ROOT}/Headers/Public/Flipper-PeerTalk" "${PODS_ROOT}/Headers/Public/Flipper-RSocket" "${PODS_ROOT}/Headers/Public/FlipperKit" "${PODS_ROOT}/Headers/Public/GoogleDataTransport" "${PODS_ROOT}/Headers/Public/GoogleDataTransportCCTSupport" "${PODS_ROOT}/Headers/Public/GoogleUtilities" "${PODS_ROOT}/Headers/Public/KeyCommands" "${PODS_ROOT}/Headers/Public/MMKV" "${PODS_ROOT}/Headers/Public/MMKVAppExtension" "${PODS_ROOT}/Headers/Public/MMKVCore" "${PODS_ROOT}/Headers/Public/OpenSSL-Universal" "${PODS_ROOT}/Headers/Public/PromisesObjC" "${PODS_ROOT}/Headers/Public/RCTRequired" "${PODS_ROOT}/Headers/Public/RCTTypeSafety" "${PODS_ROOT}/Headers/Public/RNBootSplash" "${PODS_ROOT}/Headers/Public/RNCAsyncStorage" "${PODS_ROOT}/Headers/Public/RNCMaskedView" "${PODS_ROOT}/Headers/Public/RNConfigReader" "${PODS_ROOT}/Headers/Public/RNDateTimePicker" "${PODS_ROOT}/Headers/Public/RNDeviceInfo" "${PODS_ROOT}/Headers/Public/RNFBAnalytics" "${PODS_ROOT}/Headers/Public/RNFBApp" "${PODS_ROOT}/Headers/Public/RNFBCrashlytics" "${PODS_ROOT}/Headers/Public/RNFastImage" "${PODS_ROOT}/Headers/Public/RNGestureHandler" "${PODS_ROOT}/Headers/Public/RNImageCropPicker" "${PODS_ROOT}/Headers/Public/RNLocalize" "${PODS_ROOT}/Headers/Public/RNReanimated" "${PODS_ROOT}/Headers/Public/RNRootView" "${PODS_ROOT}/Headers/Public/RNScreens" "${PODS_ROOT}/Headers/Public/RNVectorIcons" "${PODS_ROOT}/Headers/Public/React-Core" "${PODS_ROOT}/Headers/Public/React-RCTText" "${PODS_ROOT}/Headers/Public/React-callinvoker" "${PODS_ROOT}/Headers/Public/React-cxxreact" "${PODS_ROOT}/Headers/Public/React-jsi" "${PODS_ROOT}/Headers/Public/React-jsiexecutor" "${PODS_ROOT}/Headers/Public/React-jsinspector" "${PODS_ROOT}/Headers/Public/ReactCommon" "${PODS_ROOT}/Headers/Public/ReactNativeART" "${PODS_ROOT}/Headers/Public/ReactNativeKeyboardInput" "${PODS_ROOT}/Headers/Public/ReactNativeKeyboardTrackingView" "${PODS_ROOT}/Headers/Public/SDWebImage" "${PODS_ROOT}/Headers/Public/SDWebImageWebPCoder" "${PODS_ROOT}/Headers/Public/TOCropViewController" "${PODS_ROOT}/Headers/Public/UMAppLoader" "${PODS_ROOT}/Headers/Public/UMBarCodeScannerInterface" "${PODS_ROOT}/Headers/Public/UMCameraInterface" "${PODS_ROOT}/Headers/Public/UMConstantsInterface" "${PODS_ROOT}/Headers/Public/UMCore" "${PODS_ROOT}/Headers/Public/UMFaceDetectorInterface" "${PODS_ROOT}/Headers/Public/UMFileSystemInterface" "${PODS_ROOT}/Headers/Public/UMFontInterface" "${PODS_ROOT}/Headers/Public/UMImageLoaderInterface" "${PODS_ROOT}/Headers/Public/UMPermissionsInterface" "${PODS_ROOT}/Headers/Public/UMReactNativeAdapter" "${PODS_ROOT}/Headers/Public/UMSensorsInterface" "${PODS_ROOT}/Headers/Public/UMTaskManagerInterface" "${PODS_ROOT}/Headers/Public/Yoga" "${PODS_ROOT}/Headers/Public/YogaKit" "${PODS_ROOT}/Headers/Public/glog" "${PODS_ROOT}/Headers/Public/libwebp" "${PODS_ROOT}/Headers/Public/nanopb" "${PODS_ROOT}/Headers/Public/react-native-appearance" "${PODS_ROOT}/Headers/Public/react-native-background-timer" "${PODS_ROOT}/Headers/Public/react-native-cameraroll" "${PODS_ROOT}/Headers/Public/react-native-cookies" "${PODS_ROOT}/Headers/Public/react-native-document-picker" "${PODS_ROOT}/Headers/Public/react-native-jitsi-meet" "${PODS_ROOT}/Headers/Public/react-native-mmkv-storage" "${PODS_ROOT}/Headers/Public/react-native-notifications" "${PODS_ROOT}/Headers/Public/react-native-orientation-locker" "${PODS_ROOT}/Headers/Public/react-native-safe-area-context" "${PODS_ROOT}/Headers/Public/react-native-slider" "${PODS_ROOT}/Headers/Public/react-native-webview" "${PODS_ROOT}/Headers/Public/rn-extensions-share" $(inherited) ${PODS_ROOT}/Firebase/CoreOnly/Sources "${PODS_TARGET_SRCROOT}/Sources/FBLPromises/include" "$(PODS_ROOT)/Headers/Private/React-Core" LD_RUNPATH_SEARCH_PATHS = $(inherited) '@executable_path/Frameworks' '@loader_path/Frameworks' '@executable_path/../../Frameworks' -LIBRARY_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/BugsnagReactNative" "${PODS_CONFIGURATION_BUILD_DIR}/CocoaAsyncSocket" "${PODS_CONFIGURATION_BUILD_DIR}/DoubleConversion" "${PODS_CONFIGURATION_BUILD_DIR}/EXAV" "${PODS_CONFIGURATION_BUILD_DIR}/EXAppleAuthentication" "${PODS_CONFIGURATION_BUILD_DIR}/EXConstants" "${PODS_CONFIGURATION_BUILD_DIR}/EXFileSystem" "${PODS_CONFIGURATION_BUILD_DIR}/EXHaptics" "${PODS_CONFIGURATION_BUILD_DIR}/EXImageLoader" "${PODS_CONFIGURATION_BUILD_DIR}/EXKeepAwake" "${PODS_CONFIGURATION_BUILD_DIR}/EXLocalAuthentication" "${PODS_CONFIGURATION_BUILD_DIR}/EXPermissions" "${PODS_CONFIGURATION_BUILD_DIR}/EXVideoThumbnails" "${PODS_CONFIGURATION_BUILD_DIR}/EXWebBrowser" "${PODS_CONFIGURATION_BUILD_DIR}/FBReactNativeSpec" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseCore" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseCoreDiagnostics" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseCrashlytics" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseInstallations" "${PODS_CONFIGURATION_BUILD_DIR}/Flipper" "${PODS_CONFIGURATION_BUILD_DIR}/Flipper-DoubleConversion" "${PODS_CONFIGURATION_BUILD_DIR}/Flipper-Folly" "${PODS_CONFIGURATION_BUILD_DIR}/Flipper-Glog" "${PODS_CONFIGURATION_BUILD_DIR}/Flipper-PeerTalk" "${PODS_CONFIGURATION_BUILD_DIR}/Flipper-RSocket" "${PODS_CONFIGURATION_BUILD_DIR}/FlipperKit" "${PODS_CONFIGURATION_BUILD_DIR}/Folly" "${PODS_CONFIGURATION_BUILD_DIR}/GoogleDataTransport" "${PODS_CONFIGURATION_BUILD_DIR}/GoogleDataTransportCCTSupport" "${PODS_CONFIGURATION_BUILD_DIR}/GoogleUtilities" "${PODS_CONFIGURATION_BUILD_DIR}/KeyCommands" "${PODS_CONFIGURATION_BUILD_DIR}/MMKV" "${PODS_CONFIGURATION_BUILD_DIR}/MMKVCore" "${PODS_CONFIGURATION_BUILD_DIR}/PromisesObjC" "${PODS_CONFIGURATION_BUILD_DIR}/RCTTypeSafety" "${PODS_CONFIGURATION_BUILD_DIR}/RNBootSplash" "${PODS_CONFIGURATION_BUILD_DIR}/RNCAsyncStorage" "${PODS_CONFIGURATION_BUILD_DIR}/RNCMaskedView" "${PODS_CONFIGURATION_BUILD_DIR}/RNConfigReader" "${PODS_CONFIGURATION_BUILD_DIR}/RNDateTimePicker" "${PODS_CONFIGURATION_BUILD_DIR}/RNDeviceInfo" "${PODS_CONFIGURATION_BUILD_DIR}/RNFBAnalytics" "${PODS_CONFIGURATION_BUILD_DIR}/RNFBApp" "${PODS_CONFIGURATION_BUILD_DIR}/RNFBCrashlytics" "${PODS_CONFIGURATION_BUILD_DIR}/RNFastImage" "${PODS_CONFIGURATION_BUILD_DIR}/RNGestureHandler" "${PODS_CONFIGURATION_BUILD_DIR}/RNImageCropPicker" "${PODS_CONFIGURATION_BUILD_DIR}/RNLocalize" "${PODS_CONFIGURATION_BUILD_DIR}/RNReanimated" "${PODS_CONFIGURATION_BUILD_DIR}/RNRootView" "${PODS_CONFIGURATION_BUILD_DIR}/RNScreens" "${PODS_CONFIGURATION_BUILD_DIR}/RNVectorIcons" "${PODS_CONFIGURATION_BUILD_DIR}/React-Core" "${PODS_CONFIGURATION_BUILD_DIR}/React-CoreModules" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTAnimation" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTBlob" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTImage" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTLinking" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTNetwork" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTSettings" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTText" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTVibration" "${PODS_CONFIGURATION_BUILD_DIR}/React-cxxreact" "${PODS_CONFIGURATION_BUILD_DIR}/React-jsi" "${PODS_CONFIGURATION_BUILD_DIR}/React-jsiexecutor" "${PODS_CONFIGURATION_BUILD_DIR}/React-jsinspector" "${PODS_CONFIGURATION_BUILD_DIR}/ReactCommon" "${PODS_CONFIGURATION_BUILD_DIR}/ReactNativeART" "${PODS_CONFIGURATION_BUILD_DIR}/ReactNativeKeyboardInput" "${PODS_CONFIGURATION_BUILD_DIR}/ReactNativeKeyboardTrackingView" "${PODS_CONFIGURATION_BUILD_DIR}/SDWebImage" "${PODS_CONFIGURATION_BUILD_DIR}/SDWebImageWebPCoder" "${PODS_CONFIGURATION_BUILD_DIR}/TOCropViewController" "${PODS_CONFIGURATION_BUILD_DIR}/UMAppLoader" "${PODS_CONFIGURATION_BUILD_DIR}/UMCore" "${PODS_CONFIGURATION_BUILD_DIR}/UMPermissionsInterface" "${PODS_CONFIGURATION_BUILD_DIR}/UMReactNativeAdapter" "${PODS_CONFIGURATION_BUILD_DIR}/Yoga" "${PODS_CONFIGURATION_BUILD_DIR}/YogaKit" "${PODS_CONFIGURATION_BUILD_DIR}/glog" "${PODS_CONFIGURATION_BUILD_DIR}/libwebp" "${PODS_CONFIGURATION_BUILD_DIR}/nanopb" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-appearance" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-background-timer" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-cameraroll" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-cookies" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-document-picker" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-jitsi-meet" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-mmkv-storage" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-notifications" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-orientation-locker" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-safe-area-context" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-slider" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-webview" "${PODS_CONFIGURATION_BUILD_DIR}/rn-extensions-share" "${PODS_CONFIGURATION_BUILD_DIR}/rn-fetch-blob" "${PODS_ROOT}/CocoaLibEvent/lib" "${PODS_ROOT}/OpenSSL-Universal/ios/lib" +LIBRARY_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/BugsnagReactNative" "${PODS_CONFIGURATION_BUILD_DIR}/CocoaAsyncSocket" "${PODS_CONFIGURATION_BUILD_DIR}/DoubleConversion" "${PODS_CONFIGURATION_BUILD_DIR}/EXAV" "${PODS_CONFIGURATION_BUILD_DIR}/EXAppleAuthentication" "${PODS_CONFIGURATION_BUILD_DIR}/EXConstants" "${PODS_CONFIGURATION_BUILD_DIR}/EXFileSystem" "${PODS_CONFIGURATION_BUILD_DIR}/EXHaptics" "${PODS_CONFIGURATION_BUILD_DIR}/EXImageLoader" "${PODS_CONFIGURATION_BUILD_DIR}/EXKeepAwake" "${PODS_CONFIGURATION_BUILD_DIR}/EXLocalAuthentication" "${PODS_CONFIGURATION_BUILD_DIR}/EXPermissions" "${PODS_CONFIGURATION_BUILD_DIR}/EXVideoThumbnails" "${PODS_CONFIGURATION_BUILD_DIR}/EXWebBrowser" "${PODS_CONFIGURATION_BUILD_DIR}/FBReactNativeSpec" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseCore" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseCoreDiagnostics" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseCrashlytics" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseInstallations" "${PODS_CONFIGURATION_BUILD_DIR}/Flipper" "${PODS_CONFIGURATION_BUILD_DIR}/Flipper-DoubleConversion" "${PODS_CONFIGURATION_BUILD_DIR}/Flipper-Folly" "${PODS_CONFIGURATION_BUILD_DIR}/Flipper-Glog" "${PODS_CONFIGURATION_BUILD_DIR}/Flipper-PeerTalk" "${PODS_CONFIGURATION_BUILD_DIR}/Flipper-RSocket" "${PODS_CONFIGURATION_BUILD_DIR}/FlipperKit" "${PODS_CONFIGURATION_BUILD_DIR}/Folly" "${PODS_CONFIGURATION_BUILD_DIR}/GoogleDataTransport" "${PODS_CONFIGURATION_BUILD_DIR}/GoogleDataTransportCCTSupport" "${PODS_CONFIGURATION_BUILD_DIR}/GoogleUtilities" "${PODS_CONFIGURATION_BUILD_DIR}/KeyCommands" "${PODS_CONFIGURATION_BUILD_DIR}/MMKV" "${PODS_CONFIGURATION_BUILD_DIR}/MMKVCore" "${PODS_CONFIGURATION_BUILD_DIR}/PromisesObjC" "${PODS_CONFIGURATION_BUILD_DIR}/RCTTypeSafety" "${PODS_CONFIGURATION_BUILD_DIR}/RNBootSplash" "${PODS_CONFIGURATION_BUILD_DIR}/RNCAsyncStorage" "${PODS_CONFIGURATION_BUILD_DIR}/RNCMaskedView" "${PODS_CONFIGURATION_BUILD_DIR}/RNConfigReader" "${PODS_CONFIGURATION_BUILD_DIR}/RNDateTimePicker" "${PODS_CONFIGURATION_BUILD_DIR}/RNDeviceInfo" "${PODS_CONFIGURATION_BUILD_DIR}/RNFBAnalytics" "${PODS_CONFIGURATION_BUILD_DIR}/RNFBApp" "${PODS_CONFIGURATION_BUILD_DIR}/RNFBCrashlytics" "${PODS_CONFIGURATION_BUILD_DIR}/RNFastImage" "${PODS_CONFIGURATION_BUILD_DIR}/RNGestureHandler" "${PODS_CONFIGURATION_BUILD_DIR}/RNImageCropPicker" "${PODS_CONFIGURATION_BUILD_DIR}/RNLocalize" "${PODS_CONFIGURATION_BUILD_DIR}/RNReanimated" "${PODS_CONFIGURATION_BUILD_DIR}/RNRootView" "${PODS_CONFIGURATION_BUILD_DIR}/RNScreens" "${PODS_CONFIGURATION_BUILD_DIR}/RNVectorIcons" "${PODS_CONFIGURATION_BUILD_DIR}/React-Core" "${PODS_CONFIGURATION_BUILD_DIR}/React-CoreModules" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTAnimation" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTBlob" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTImage" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTLinking" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTNetwork" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTSettings" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTText" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTVibration" "${PODS_CONFIGURATION_BUILD_DIR}/React-cxxreact" "${PODS_CONFIGURATION_BUILD_DIR}/React-jsi" "${PODS_CONFIGURATION_BUILD_DIR}/React-jsiexecutor" "${PODS_CONFIGURATION_BUILD_DIR}/React-jsinspector" "${PODS_CONFIGURATION_BUILD_DIR}/ReactCommon" "${PODS_CONFIGURATION_BUILD_DIR}/ReactNativeART" "${PODS_CONFIGURATION_BUILD_DIR}/ReactNativeKeyboardInput" "${PODS_CONFIGURATION_BUILD_DIR}/ReactNativeKeyboardTrackingView" "${PODS_CONFIGURATION_BUILD_DIR}/SDWebImage" "${PODS_CONFIGURATION_BUILD_DIR}/SDWebImageWebPCoder" "${PODS_CONFIGURATION_BUILD_DIR}/TOCropViewController" "${PODS_CONFIGURATION_BUILD_DIR}/UMAppLoader" "${PODS_CONFIGURATION_BUILD_DIR}/UMCore" "${PODS_CONFIGURATION_BUILD_DIR}/UMPermissionsInterface" "${PODS_CONFIGURATION_BUILD_DIR}/UMReactNativeAdapter" "${PODS_CONFIGURATION_BUILD_DIR}/Yoga" "${PODS_CONFIGURATION_BUILD_DIR}/YogaKit" "${PODS_CONFIGURATION_BUILD_DIR}/glog" "${PODS_CONFIGURATION_BUILD_DIR}/libwebp" "${PODS_CONFIGURATION_BUILD_DIR}/nanopb" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-appearance" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-background-timer" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-cameraroll" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-cookies" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-document-picker" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-jitsi-meet" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-mmkv-storage" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-notifications" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-orientation-locker" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-safe-area-context" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-slider" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-webview" "${PODS_CONFIGURATION_BUILD_DIR}/rn-extensions-share" "${PODS_ROOT}/CocoaLibEvent/lib" "${PODS_ROOT}/OpenSSL-Universal/ios/lib" OTHER_CFLAGS = $(inherited) -fmodule-map-file="${PODS_CONFIGURATION_BUILD_DIR}/YogaKit/YogaKit.modulemap" -fmodule-map-file="${PODS_ROOT}/Headers/Public/FlipperKit/FlipperKit.modulemap" -fmodule-map-file="${PODS_ROOT}/Headers/Public/yoga/Yoga.modulemap" -OTHER_LDFLAGS = $(inherited) -ObjC -l"BugsnagReactNative" -l"CocoaAsyncSocket" -l"DoubleConversion" -l"EXAV" -l"EXAppleAuthentication" -l"EXConstants" -l"EXFileSystem" -l"EXHaptics" -l"EXImageLoader" -l"EXKeepAwake" -l"EXLocalAuthentication" -l"EXPermissions" -l"EXVideoThumbnails" -l"EXWebBrowser" -l"FBReactNativeSpec" -l"FirebaseCore" -l"FirebaseCoreDiagnostics" -l"FirebaseCrashlytics" -l"FirebaseInstallations" -l"Flipper" -l"Flipper-DoubleConversion" -l"Flipper-Folly" -l"Flipper-Glog" -l"Flipper-PeerTalk" -l"Flipper-RSocket" -l"FlipperKit" -l"Folly" -l"GoogleDataTransport" -l"GoogleDataTransportCCTSupport" -l"GoogleUtilities" -l"KeyCommands" -l"MMKV" -l"MMKVCore" -l"PromisesObjC" -l"RCTTypeSafety" -l"RNBootSplash" -l"RNCAsyncStorage" -l"RNCMaskedView" -l"RNConfigReader" -l"RNDateTimePicker" -l"RNDeviceInfo" -l"RNFBAnalytics" -l"RNFBApp" -l"RNFBCrashlytics" -l"RNFastImage" -l"RNGestureHandler" -l"RNImageCropPicker" -l"RNLocalize" -l"RNReanimated" -l"RNRootView" -l"RNScreens" -l"RNVectorIcons" -l"React-Core" -l"React-CoreModules" -l"React-RCTAnimation" -l"React-RCTBlob" -l"React-RCTImage" -l"React-RCTLinking" -l"React-RCTNetwork" -l"React-RCTSettings" -l"React-RCTText" -l"React-RCTVibration" -l"React-cxxreact" -l"React-jsi" -l"React-jsiexecutor" -l"React-jsinspector" -l"ReactCommon" -l"ReactNativeART" -l"ReactNativeKeyboardInput" -l"ReactNativeKeyboardTrackingView" -l"SDWebImage" -l"SDWebImageWebPCoder" -l"TOCropViewController" -l"UMAppLoader" -l"UMCore" -l"UMPermissionsInterface" -l"UMReactNativeAdapter" -l"Yoga" -l"YogaKit" -l"c++" -l"crypto" -l"event" -l"event_core" -l"event_extra" -l"event_pthreads" -l"glog" -l"libwebp" -l"nanopb" -l"react-native-appearance" -l"react-native-background-timer" -l"react-native-cameraroll" -l"react-native-cookies" -l"react-native-document-picker" -l"react-native-jitsi-meet" -l"react-native-mmkv-storage" -l"react-native-notifications" -l"react-native-orientation-locker" -l"react-native-safe-area-context" -l"react-native-slider" -l"react-native-webview" -l"rn-extensions-share" -l"rn-fetch-blob" -l"sqlite3" -l"ssl" -l"stdc++" -l"z" -framework "AudioToolbox" -framework "CFNetwork" -framework "CoreFoundation" -framework "CoreTelephony" -framework "FIRAnalyticsConnector" -framework "FirebaseAnalytics" -framework "Foundation" -framework "GoogleAppMeasurement" -framework "ImageIO" -framework "JavaScriptCore" -framework "JitsiMeet" -framework "MessageUI" -framework "MobileCoreServices" -framework "Photos" -framework "Security" -framework "StoreKit" -framework "SystemConfiguration" -framework "UIKit" -framework "WebRTC" +OTHER_LDFLAGS = $(inherited) -ObjC -l"BugsnagReactNative" -l"CocoaAsyncSocket" -l"DoubleConversion" -l"EXAV" -l"EXAppleAuthentication" -l"EXConstants" -l"EXFileSystem" -l"EXHaptics" -l"EXImageLoader" -l"EXKeepAwake" -l"EXLocalAuthentication" -l"EXPermissions" -l"EXVideoThumbnails" -l"EXWebBrowser" -l"FBReactNativeSpec" -l"FirebaseCore" -l"FirebaseCoreDiagnostics" -l"FirebaseCrashlytics" -l"FirebaseInstallations" -l"Flipper" -l"Flipper-DoubleConversion" -l"Flipper-Folly" -l"Flipper-Glog" -l"Flipper-PeerTalk" -l"Flipper-RSocket" -l"FlipperKit" -l"Folly" -l"GoogleDataTransport" -l"GoogleDataTransportCCTSupport" -l"GoogleUtilities" -l"KeyCommands" -l"MMKV" -l"MMKVCore" -l"PromisesObjC" -l"RCTTypeSafety" -l"RNBootSplash" -l"RNCAsyncStorage" -l"RNCMaskedView" -l"RNConfigReader" -l"RNDateTimePicker" -l"RNDeviceInfo" -l"RNFBAnalytics" -l"RNFBApp" -l"RNFBCrashlytics" -l"RNFastImage" -l"RNGestureHandler" -l"RNImageCropPicker" -l"RNLocalize" -l"RNReanimated" -l"RNRootView" -l"RNScreens" -l"RNVectorIcons" -l"React-Core" -l"React-CoreModules" -l"React-RCTAnimation" -l"React-RCTBlob" -l"React-RCTImage" -l"React-RCTLinking" -l"React-RCTNetwork" -l"React-RCTSettings" -l"React-RCTText" -l"React-RCTVibration" -l"React-cxxreact" -l"React-jsi" -l"React-jsiexecutor" -l"React-jsinspector" -l"ReactCommon" -l"ReactNativeART" -l"ReactNativeKeyboardInput" -l"ReactNativeKeyboardTrackingView" -l"SDWebImage" -l"SDWebImageWebPCoder" -l"TOCropViewController" -l"UMAppLoader" -l"UMCore" -l"UMPermissionsInterface" -l"UMReactNativeAdapter" -l"Yoga" -l"YogaKit" -l"c++" -l"crypto" -l"event" -l"event_core" -l"event_extra" -l"event_pthreads" -l"glog" -l"libwebp" -l"nanopb" -l"react-native-appearance" -l"react-native-background-timer" -l"react-native-cameraroll" -l"react-native-cookies" -l"react-native-document-picker" -l"react-native-jitsi-meet" -l"react-native-mmkv-storage" -l"react-native-notifications" -l"react-native-orientation-locker" -l"react-native-safe-area-context" -l"react-native-slider" -l"react-native-webview" -l"rn-extensions-share" -l"sqlite3" -l"ssl" -l"stdc++" -l"z" -framework "AudioToolbox" -framework "CFNetwork" -framework "CoreFoundation" -framework "CoreTelephony" -framework "FIRAnalyticsConnector" -framework "FirebaseAnalytics" -framework "Foundation" -framework "GoogleAppMeasurement" -framework "ImageIO" -framework "JavaScriptCore" -framework "JitsiMeet" -framework "MessageUI" -framework "MobileCoreServices" -framework "Photos" -framework "Security" -framework "StoreKit" -framework "SystemConfiguration" -framework "UIKit" -framework "WebRTC" OTHER_SWIFT_FLAGS = $(inherited) -D COCOAPODS -Xcc -fmodule-map-file="${PODS_CONFIGURATION_BUILD_DIR}/YogaKit/YogaKit.modulemap" -Xcc -fmodule-map-file="${PODS_ROOT}/Headers/Public/FlipperKit/FlipperKit.modulemap" -Xcc -fmodule-map-file="${PODS_ROOT}/Headers/Public/yoga/Yoga.modulemap" -Xcc -DFB_SONARKIT_ENABLED=1 PODS_BUILD_DIR = ${BUILD_DIR} PODS_CONFIGURATION_BUILD_DIR = ${PODS_BUILD_DIR}/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) diff --git a/ios/Pods/Target Support Files/Pods-ShareRocketChatRN/Pods-ShareRocketChatRN.release.xcconfig b/ios/Pods/Target Support Files/Pods-ShareRocketChatRN/Pods-ShareRocketChatRN.release.xcconfig index 46a6005f..48a1a876 100644 --- a/ios/Pods/Target Support Files/Pods-ShareRocketChatRN/Pods-ShareRocketChatRN.release.xcconfig +++ b/ios/Pods/Target Support Files/Pods-ShareRocketChatRN/Pods-ShareRocketChatRN.release.xcconfig @@ -1,10 +1,10 @@ FRAMEWORK_SEARCH_PATHS = $(inherited) "${PODS_ROOT}/FirebaseAnalytics/Frameworks" "${PODS_ROOT}/GoogleAppMeasurement/Frameworks" "${PODS_ROOT}/JitsiMeetSDK/Frameworks" GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 $(inherited) SD_WEBP=1 $(inherited) PB_FIELD_32BIT=1 PB_NO_PACKED_STRUCTS=1 PB_ENABLE_MALLOC=1 -HEADER_SEARCH_PATHS = $(inherited) "${PODS_ROOT}/Headers/Public" "${PODS_ROOT}/Headers/Public/BugsnagReactNative" "${PODS_ROOT}/Headers/Public/CocoaAsyncSocket" "${PODS_ROOT}/Headers/Public/CocoaLibEvent" "${PODS_ROOT}/Headers/Public/DoubleConversion" "${PODS_ROOT}/Headers/Public/EXAV" "${PODS_ROOT}/Headers/Public/EXAppleAuthentication" "${PODS_ROOT}/Headers/Public/EXConstants" "${PODS_ROOT}/Headers/Public/EXFileSystem" "${PODS_ROOT}/Headers/Public/EXHaptics" "${PODS_ROOT}/Headers/Public/EXImageLoader" "${PODS_ROOT}/Headers/Public/EXKeepAwake" "${PODS_ROOT}/Headers/Public/EXLocalAuthentication" "${PODS_ROOT}/Headers/Public/EXPermissions" "${PODS_ROOT}/Headers/Public/EXVideoThumbnails" "${PODS_ROOT}/Headers/Public/EXWebBrowser" "${PODS_ROOT}/Headers/Public/FBLazyVector" "${PODS_ROOT}/Headers/Public/FBReactNativeSpec" "${PODS_ROOT}/Headers/Public/Firebase" "${PODS_ROOT}/Headers/Public/FirebaseCore" "${PODS_ROOT}/Headers/Public/FirebaseCoreDiagnostics" "${PODS_ROOT}/Headers/Public/FirebaseCrashlytics" "${PODS_ROOT}/Headers/Public/FirebaseInstallations" "${PODS_ROOT}/Headers/Public/Flipper" "${PODS_ROOT}/Headers/Public/Flipper-DoubleConversion" "${PODS_ROOT}/Headers/Public/Flipper-Folly" "${PODS_ROOT}/Headers/Public/Flipper-Glog" "${PODS_ROOT}/Headers/Public/Flipper-PeerTalk" "${PODS_ROOT}/Headers/Public/Flipper-RSocket" "${PODS_ROOT}/Headers/Public/FlipperKit" "${PODS_ROOT}/Headers/Public/GoogleDataTransport" "${PODS_ROOT}/Headers/Public/GoogleDataTransportCCTSupport" "${PODS_ROOT}/Headers/Public/GoogleUtilities" "${PODS_ROOT}/Headers/Public/KeyCommands" "${PODS_ROOT}/Headers/Public/MMKV" "${PODS_ROOT}/Headers/Public/MMKVAppExtension" "${PODS_ROOT}/Headers/Public/MMKVCore" "${PODS_ROOT}/Headers/Public/OpenSSL-Universal" "${PODS_ROOT}/Headers/Public/PromisesObjC" "${PODS_ROOT}/Headers/Public/RCTRequired" "${PODS_ROOT}/Headers/Public/RCTTypeSafety" "${PODS_ROOT}/Headers/Public/RNBootSplash" "${PODS_ROOT}/Headers/Public/RNCAsyncStorage" "${PODS_ROOT}/Headers/Public/RNCMaskedView" "${PODS_ROOT}/Headers/Public/RNConfigReader" "${PODS_ROOT}/Headers/Public/RNDateTimePicker" "${PODS_ROOT}/Headers/Public/RNDeviceInfo" "${PODS_ROOT}/Headers/Public/RNFBAnalytics" "${PODS_ROOT}/Headers/Public/RNFBApp" "${PODS_ROOT}/Headers/Public/RNFBCrashlytics" "${PODS_ROOT}/Headers/Public/RNFastImage" "${PODS_ROOT}/Headers/Public/RNGestureHandler" "${PODS_ROOT}/Headers/Public/RNImageCropPicker" "${PODS_ROOT}/Headers/Public/RNLocalize" "${PODS_ROOT}/Headers/Public/RNReanimated" "${PODS_ROOT}/Headers/Public/RNRootView" "${PODS_ROOT}/Headers/Public/RNScreens" "${PODS_ROOT}/Headers/Public/RNVectorIcons" "${PODS_ROOT}/Headers/Public/React-Core" "${PODS_ROOT}/Headers/Public/React-RCTText" "${PODS_ROOT}/Headers/Public/React-callinvoker" "${PODS_ROOT}/Headers/Public/React-cxxreact" "${PODS_ROOT}/Headers/Public/React-jsi" "${PODS_ROOT}/Headers/Public/React-jsiexecutor" "${PODS_ROOT}/Headers/Public/React-jsinspector" "${PODS_ROOT}/Headers/Public/ReactCommon" "${PODS_ROOT}/Headers/Public/ReactNativeART" "${PODS_ROOT}/Headers/Public/ReactNativeKeyboardInput" "${PODS_ROOT}/Headers/Public/ReactNativeKeyboardTrackingView" "${PODS_ROOT}/Headers/Public/SDWebImage" "${PODS_ROOT}/Headers/Public/SDWebImageWebPCoder" "${PODS_ROOT}/Headers/Public/TOCropViewController" "${PODS_ROOT}/Headers/Public/UMAppLoader" "${PODS_ROOT}/Headers/Public/UMBarCodeScannerInterface" "${PODS_ROOT}/Headers/Public/UMCameraInterface" "${PODS_ROOT}/Headers/Public/UMConstantsInterface" "${PODS_ROOT}/Headers/Public/UMCore" "${PODS_ROOT}/Headers/Public/UMFaceDetectorInterface" "${PODS_ROOT}/Headers/Public/UMFileSystemInterface" "${PODS_ROOT}/Headers/Public/UMFontInterface" "${PODS_ROOT}/Headers/Public/UMImageLoaderInterface" "${PODS_ROOT}/Headers/Public/UMPermissionsInterface" "${PODS_ROOT}/Headers/Public/UMReactNativeAdapter" "${PODS_ROOT}/Headers/Public/UMSensorsInterface" "${PODS_ROOT}/Headers/Public/UMTaskManagerInterface" "${PODS_ROOT}/Headers/Public/Yoga" "${PODS_ROOT}/Headers/Public/YogaKit" "${PODS_ROOT}/Headers/Public/glog" "${PODS_ROOT}/Headers/Public/libwebp" "${PODS_ROOT}/Headers/Public/nanopb" "${PODS_ROOT}/Headers/Public/react-native-appearance" "${PODS_ROOT}/Headers/Public/react-native-background-timer" "${PODS_ROOT}/Headers/Public/react-native-cameraroll" "${PODS_ROOT}/Headers/Public/react-native-cookies" "${PODS_ROOT}/Headers/Public/react-native-document-picker" "${PODS_ROOT}/Headers/Public/react-native-jitsi-meet" "${PODS_ROOT}/Headers/Public/react-native-mmkv-storage" "${PODS_ROOT}/Headers/Public/react-native-notifications" "${PODS_ROOT}/Headers/Public/react-native-orientation-locker" "${PODS_ROOT}/Headers/Public/react-native-safe-area-context" "${PODS_ROOT}/Headers/Public/react-native-slider" "${PODS_ROOT}/Headers/Public/react-native-webview" "${PODS_ROOT}/Headers/Public/rn-extensions-share" "${PODS_ROOT}/Headers/Public/rn-fetch-blob" $(inherited) ${PODS_ROOT}/Firebase/CoreOnly/Sources "${PODS_TARGET_SRCROOT}/Sources/FBLPromises/include" "$(PODS_ROOT)/Headers/Private/React-Core" +HEADER_SEARCH_PATHS = $(inherited) "${PODS_ROOT}/Headers/Public" "${PODS_ROOT}/Headers/Public/BugsnagReactNative" "${PODS_ROOT}/Headers/Public/CocoaAsyncSocket" "${PODS_ROOT}/Headers/Public/CocoaLibEvent" "${PODS_ROOT}/Headers/Public/DoubleConversion" "${PODS_ROOT}/Headers/Public/EXAV" "${PODS_ROOT}/Headers/Public/EXAppleAuthentication" "${PODS_ROOT}/Headers/Public/EXConstants" "${PODS_ROOT}/Headers/Public/EXFileSystem" "${PODS_ROOT}/Headers/Public/EXHaptics" "${PODS_ROOT}/Headers/Public/EXImageLoader" "${PODS_ROOT}/Headers/Public/EXKeepAwake" "${PODS_ROOT}/Headers/Public/EXLocalAuthentication" "${PODS_ROOT}/Headers/Public/EXPermissions" "${PODS_ROOT}/Headers/Public/EXVideoThumbnails" "${PODS_ROOT}/Headers/Public/EXWebBrowser" "${PODS_ROOT}/Headers/Public/FBLazyVector" "${PODS_ROOT}/Headers/Public/FBReactNativeSpec" "${PODS_ROOT}/Headers/Public/Firebase" "${PODS_ROOT}/Headers/Public/FirebaseCore" "${PODS_ROOT}/Headers/Public/FirebaseCoreDiagnostics" "${PODS_ROOT}/Headers/Public/FirebaseCrashlytics" "${PODS_ROOT}/Headers/Public/FirebaseInstallations" "${PODS_ROOT}/Headers/Public/Flipper" "${PODS_ROOT}/Headers/Public/Flipper-DoubleConversion" "${PODS_ROOT}/Headers/Public/Flipper-Folly" "${PODS_ROOT}/Headers/Public/Flipper-Glog" "${PODS_ROOT}/Headers/Public/Flipper-PeerTalk" "${PODS_ROOT}/Headers/Public/Flipper-RSocket" "${PODS_ROOT}/Headers/Public/FlipperKit" "${PODS_ROOT}/Headers/Public/GoogleDataTransport" "${PODS_ROOT}/Headers/Public/GoogleDataTransportCCTSupport" "${PODS_ROOT}/Headers/Public/GoogleUtilities" "${PODS_ROOT}/Headers/Public/KeyCommands" "${PODS_ROOT}/Headers/Public/MMKV" "${PODS_ROOT}/Headers/Public/MMKVAppExtension" "${PODS_ROOT}/Headers/Public/MMKVCore" "${PODS_ROOT}/Headers/Public/OpenSSL-Universal" "${PODS_ROOT}/Headers/Public/PromisesObjC" "${PODS_ROOT}/Headers/Public/RCTRequired" "${PODS_ROOT}/Headers/Public/RCTTypeSafety" "${PODS_ROOT}/Headers/Public/RNBootSplash" "${PODS_ROOT}/Headers/Public/RNCAsyncStorage" "${PODS_ROOT}/Headers/Public/RNCMaskedView" "${PODS_ROOT}/Headers/Public/RNConfigReader" "${PODS_ROOT}/Headers/Public/RNDateTimePicker" "${PODS_ROOT}/Headers/Public/RNDeviceInfo" "${PODS_ROOT}/Headers/Public/RNFBAnalytics" "${PODS_ROOT}/Headers/Public/RNFBApp" "${PODS_ROOT}/Headers/Public/RNFBCrashlytics" "${PODS_ROOT}/Headers/Public/RNFastImage" "${PODS_ROOT}/Headers/Public/RNGestureHandler" "${PODS_ROOT}/Headers/Public/RNImageCropPicker" "${PODS_ROOT}/Headers/Public/RNLocalize" "${PODS_ROOT}/Headers/Public/RNReanimated" "${PODS_ROOT}/Headers/Public/RNRootView" "${PODS_ROOT}/Headers/Public/RNScreens" "${PODS_ROOT}/Headers/Public/RNVectorIcons" "${PODS_ROOT}/Headers/Public/React-Core" "${PODS_ROOT}/Headers/Public/React-RCTText" "${PODS_ROOT}/Headers/Public/React-callinvoker" "${PODS_ROOT}/Headers/Public/React-cxxreact" "${PODS_ROOT}/Headers/Public/React-jsi" "${PODS_ROOT}/Headers/Public/React-jsiexecutor" "${PODS_ROOT}/Headers/Public/React-jsinspector" "${PODS_ROOT}/Headers/Public/ReactCommon" "${PODS_ROOT}/Headers/Public/ReactNativeART" "${PODS_ROOT}/Headers/Public/ReactNativeKeyboardInput" "${PODS_ROOT}/Headers/Public/ReactNativeKeyboardTrackingView" "${PODS_ROOT}/Headers/Public/SDWebImage" "${PODS_ROOT}/Headers/Public/SDWebImageWebPCoder" "${PODS_ROOT}/Headers/Public/TOCropViewController" "${PODS_ROOT}/Headers/Public/UMAppLoader" "${PODS_ROOT}/Headers/Public/UMBarCodeScannerInterface" "${PODS_ROOT}/Headers/Public/UMCameraInterface" "${PODS_ROOT}/Headers/Public/UMConstantsInterface" "${PODS_ROOT}/Headers/Public/UMCore" "${PODS_ROOT}/Headers/Public/UMFaceDetectorInterface" "${PODS_ROOT}/Headers/Public/UMFileSystemInterface" "${PODS_ROOT}/Headers/Public/UMFontInterface" "${PODS_ROOT}/Headers/Public/UMImageLoaderInterface" "${PODS_ROOT}/Headers/Public/UMPermissionsInterface" "${PODS_ROOT}/Headers/Public/UMReactNativeAdapter" "${PODS_ROOT}/Headers/Public/UMSensorsInterface" "${PODS_ROOT}/Headers/Public/UMTaskManagerInterface" "${PODS_ROOT}/Headers/Public/Yoga" "${PODS_ROOT}/Headers/Public/YogaKit" "${PODS_ROOT}/Headers/Public/glog" "${PODS_ROOT}/Headers/Public/libwebp" "${PODS_ROOT}/Headers/Public/nanopb" "${PODS_ROOT}/Headers/Public/react-native-appearance" "${PODS_ROOT}/Headers/Public/react-native-background-timer" "${PODS_ROOT}/Headers/Public/react-native-cameraroll" "${PODS_ROOT}/Headers/Public/react-native-cookies" "${PODS_ROOT}/Headers/Public/react-native-document-picker" "${PODS_ROOT}/Headers/Public/react-native-jitsi-meet" "${PODS_ROOT}/Headers/Public/react-native-mmkv-storage" "${PODS_ROOT}/Headers/Public/react-native-notifications" "${PODS_ROOT}/Headers/Public/react-native-orientation-locker" "${PODS_ROOT}/Headers/Public/react-native-safe-area-context" "${PODS_ROOT}/Headers/Public/react-native-slider" "${PODS_ROOT}/Headers/Public/react-native-webview" "${PODS_ROOT}/Headers/Public/rn-extensions-share" $(inherited) ${PODS_ROOT}/Firebase/CoreOnly/Sources "${PODS_TARGET_SRCROOT}/Sources/FBLPromises/include" "$(PODS_ROOT)/Headers/Private/React-Core" LD_RUNPATH_SEARCH_PATHS = $(inherited) '@executable_path/Frameworks' '@loader_path/Frameworks' '@executable_path/../../Frameworks' -LIBRARY_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/BugsnagReactNative" "${PODS_CONFIGURATION_BUILD_DIR}/CocoaAsyncSocket" "${PODS_CONFIGURATION_BUILD_DIR}/DoubleConversion" "${PODS_CONFIGURATION_BUILD_DIR}/EXAV" "${PODS_CONFIGURATION_BUILD_DIR}/EXAppleAuthentication" "${PODS_CONFIGURATION_BUILD_DIR}/EXConstants" "${PODS_CONFIGURATION_BUILD_DIR}/EXFileSystem" "${PODS_CONFIGURATION_BUILD_DIR}/EXHaptics" "${PODS_CONFIGURATION_BUILD_DIR}/EXImageLoader" "${PODS_CONFIGURATION_BUILD_DIR}/EXKeepAwake" "${PODS_CONFIGURATION_BUILD_DIR}/EXLocalAuthentication" "${PODS_CONFIGURATION_BUILD_DIR}/EXPermissions" "${PODS_CONFIGURATION_BUILD_DIR}/EXVideoThumbnails" "${PODS_CONFIGURATION_BUILD_DIR}/EXWebBrowser" "${PODS_CONFIGURATION_BUILD_DIR}/FBReactNativeSpec" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseCore" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseCoreDiagnostics" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseCrashlytics" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseInstallations" "${PODS_CONFIGURATION_BUILD_DIR}/Folly" "${PODS_CONFIGURATION_BUILD_DIR}/GoogleDataTransport" "${PODS_CONFIGURATION_BUILD_DIR}/GoogleDataTransportCCTSupport" "${PODS_CONFIGURATION_BUILD_DIR}/GoogleUtilities" "${PODS_CONFIGURATION_BUILD_DIR}/KeyCommands" "${PODS_CONFIGURATION_BUILD_DIR}/MMKV" "${PODS_CONFIGURATION_BUILD_DIR}/MMKVCore" "${PODS_CONFIGURATION_BUILD_DIR}/PromisesObjC" "${PODS_CONFIGURATION_BUILD_DIR}/RCTTypeSafety" "${PODS_CONFIGURATION_BUILD_DIR}/RNBootSplash" "${PODS_CONFIGURATION_BUILD_DIR}/RNCAsyncStorage" "${PODS_CONFIGURATION_BUILD_DIR}/RNCMaskedView" "${PODS_CONFIGURATION_BUILD_DIR}/RNConfigReader" "${PODS_CONFIGURATION_BUILD_DIR}/RNDateTimePicker" "${PODS_CONFIGURATION_BUILD_DIR}/RNDeviceInfo" "${PODS_CONFIGURATION_BUILD_DIR}/RNFBAnalytics" "${PODS_CONFIGURATION_BUILD_DIR}/RNFBApp" "${PODS_CONFIGURATION_BUILD_DIR}/RNFBCrashlytics" "${PODS_CONFIGURATION_BUILD_DIR}/RNFastImage" "${PODS_CONFIGURATION_BUILD_DIR}/RNGestureHandler" "${PODS_CONFIGURATION_BUILD_DIR}/RNImageCropPicker" "${PODS_CONFIGURATION_BUILD_DIR}/RNLocalize" "${PODS_CONFIGURATION_BUILD_DIR}/RNReanimated" "${PODS_CONFIGURATION_BUILD_DIR}/RNRootView" "${PODS_CONFIGURATION_BUILD_DIR}/RNScreens" "${PODS_CONFIGURATION_BUILD_DIR}/RNVectorIcons" "${PODS_CONFIGURATION_BUILD_DIR}/React-Core" "${PODS_CONFIGURATION_BUILD_DIR}/React-CoreModules" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTAnimation" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTBlob" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTImage" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTLinking" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTNetwork" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTSettings" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTText" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTVibration" "${PODS_CONFIGURATION_BUILD_DIR}/React-cxxreact" "${PODS_CONFIGURATION_BUILD_DIR}/React-jsi" "${PODS_CONFIGURATION_BUILD_DIR}/React-jsiexecutor" "${PODS_CONFIGURATION_BUILD_DIR}/React-jsinspector" "${PODS_CONFIGURATION_BUILD_DIR}/ReactCommon" "${PODS_CONFIGURATION_BUILD_DIR}/ReactNativeART" "${PODS_CONFIGURATION_BUILD_DIR}/ReactNativeKeyboardInput" "${PODS_CONFIGURATION_BUILD_DIR}/ReactNativeKeyboardTrackingView" "${PODS_CONFIGURATION_BUILD_DIR}/SDWebImage" "${PODS_CONFIGURATION_BUILD_DIR}/SDWebImageWebPCoder" "${PODS_CONFIGURATION_BUILD_DIR}/TOCropViewController" "${PODS_CONFIGURATION_BUILD_DIR}/UMAppLoader" "${PODS_CONFIGURATION_BUILD_DIR}/UMCore" "${PODS_CONFIGURATION_BUILD_DIR}/UMPermissionsInterface" "${PODS_CONFIGURATION_BUILD_DIR}/UMReactNativeAdapter" "${PODS_CONFIGURATION_BUILD_DIR}/Yoga" "${PODS_CONFIGURATION_BUILD_DIR}/YogaKit" "${PODS_CONFIGURATION_BUILD_DIR}/glog" "${PODS_CONFIGURATION_BUILD_DIR}/libwebp" "${PODS_CONFIGURATION_BUILD_DIR}/nanopb" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-appearance" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-background-timer" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-cameraroll" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-cookies" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-document-picker" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-jitsi-meet" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-mmkv-storage" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-notifications" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-orientation-locker" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-safe-area-context" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-slider" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-webview" "${PODS_CONFIGURATION_BUILD_DIR}/rn-extensions-share" "${PODS_CONFIGURATION_BUILD_DIR}/rn-fetch-blob" "${PODS_ROOT}/CocoaLibEvent/lib" "${PODS_ROOT}/OpenSSL-Universal/ios/lib" +LIBRARY_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/BugsnagReactNative" "${PODS_CONFIGURATION_BUILD_DIR}/CocoaAsyncSocket" "${PODS_CONFIGURATION_BUILD_DIR}/DoubleConversion" "${PODS_CONFIGURATION_BUILD_DIR}/EXAV" "${PODS_CONFIGURATION_BUILD_DIR}/EXAppleAuthentication" "${PODS_CONFIGURATION_BUILD_DIR}/EXConstants" "${PODS_CONFIGURATION_BUILD_DIR}/EXFileSystem" "${PODS_CONFIGURATION_BUILD_DIR}/EXHaptics" "${PODS_CONFIGURATION_BUILD_DIR}/EXImageLoader" "${PODS_CONFIGURATION_BUILD_DIR}/EXKeepAwake" "${PODS_CONFIGURATION_BUILD_DIR}/EXLocalAuthentication" "${PODS_CONFIGURATION_BUILD_DIR}/EXPermissions" "${PODS_CONFIGURATION_BUILD_DIR}/EXVideoThumbnails" "${PODS_CONFIGURATION_BUILD_DIR}/EXWebBrowser" "${PODS_CONFIGURATION_BUILD_DIR}/FBReactNativeSpec" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseCore" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseCoreDiagnostics" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseCrashlytics" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseInstallations" "${PODS_CONFIGURATION_BUILD_DIR}/Folly" "${PODS_CONFIGURATION_BUILD_DIR}/GoogleDataTransport" "${PODS_CONFIGURATION_BUILD_DIR}/GoogleDataTransportCCTSupport" "${PODS_CONFIGURATION_BUILD_DIR}/GoogleUtilities" "${PODS_CONFIGURATION_BUILD_DIR}/KeyCommands" "${PODS_CONFIGURATION_BUILD_DIR}/MMKV" "${PODS_CONFIGURATION_BUILD_DIR}/MMKVCore" "${PODS_CONFIGURATION_BUILD_DIR}/PromisesObjC" "${PODS_CONFIGURATION_BUILD_DIR}/RCTTypeSafety" "${PODS_CONFIGURATION_BUILD_DIR}/RNBootSplash" "${PODS_CONFIGURATION_BUILD_DIR}/RNCAsyncStorage" "${PODS_CONFIGURATION_BUILD_DIR}/RNCMaskedView" "${PODS_CONFIGURATION_BUILD_DIR}/RNConfigReader" "${PODS_CONFIGURATION_BUILD_DIR}/RNDateTimePicker" "${PODS_CONFIGURATION_BUILD_DIR}/RNDeviceInfo" "${PODS_CONFIGURATION_BUILD_DIR}/RNFBAnalytics" "${PODS_CONFIGURATION_BUILD_DIR}/RNFBApp" "${PODS_CONFIGURATION_BUILD_DIR}/RNFBCrashlytics" "${PODS_CONFIGURATION_BUILD_DIR}/RNFastImage" "${PODS_CONFIGURATION_BUILD_DIR}/RNGestureHandler" "${PODS_CONFIGURATION_BUILD_DIR}/RNImageCropPicker" "${PODS_CONFIGURATION_BUILD_DIR}/RNLocalize" "${PODS_CONFIGURATION_BUILD_DIR}/RNReanimated" "${PODS_CONFIGURATION_BUILD_DIR}/RNRootView" "${PODS_CONFIGURATION_BUILD_DIR}/RNScreens" "${PODS_CONFIGURATION_BUILD_DIR}/RNVectorIcons" "${PODS_CONFIGURATION_BUILD_DIR}/React-Core" "${PODS_CONFIGURATION_BUILD_DIR}/React-CoreModules" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTAnimation" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTBlob" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTImage" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTLinking" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTNetwork" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTSettings" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTText" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTVibration" "${PODS_CONFIGURATION_BUILD_DIR}/React-cxxreact" "${PODS_CONFIGURATION_BUILD_DIR}/React-jsi" "${PODS_CONFIGURATION_BUILD_DIR}/React-jsiexecutor" "${PODS_CONFIGURATION_BUILD_DIR}/React-jsinspector" "${PODS_CONFIGURATION_BUILD_DIR}/ReactCommon" "${PODS_CONFIGURATION_BUILD_DIR}/ReactNativeART" "${PODS_CONFIGURATION_BUILD_DIR}/ReactNativeKeyboardInput" "${PODS_CONFIGURATION_BUILD_DIR}/ReactNativeKeyboardTrackingView" "${PODS_CONFIGURATION_BUILD_DIR}/SDWebImage" "${PODS_CONFIGURATION_BUILD_DIR}/SDWebImageWebPCoder" "${PODS_CONFIGURATION_BUILD_DIR}/TOCropViewController" "${PODS_CONFIGURATION_BUILD_DIR}/UMAppLoader" "${PODS_CONFIGURATION_BUILD_DIR}/UMCore" "${PODS_CONFIGURATION_BUILD_DIR}/UMPermissionsInterface" "${PODS_CONFIGURATION_BUILD_DIR}/UMReactNativeAdapter" "${PODS_CONFIGURATION_BUILD_DIR}/Yoga" "${PODS_CONFIGURATION_BUILD_DIR}/YogaKit" "${PODS_CONFIGURATION_BUILD_DIR}/glog" "${PODS_CONFIGURATION_BUILD_DIR}/libwebp" "${PODS_CONFIGURATION_BUILD_DIR}/nanopb" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-appearance" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-background-timer" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-cameraroll" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-cookies" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-document-picker" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-jitsi-meet" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-mmkv-storage" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-notifications" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-orientation-locker" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-safe-area-context" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-slider" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-webview" "${PODS_CONFIGURATION_BUILD_DIR}/rn-extensions-share" "${PODS_ROOT}/CocoaLibEvent/lib" "${PODS_ROOT}/OpenSSL-Universal/ios/lib" OTHER_CFLAGS = $(inherited) -fmodule-map-file="${PODS_CONFIGURATION_BUILD_DIR}/YogaKit/YogaKit.modulemap" -fmodule-map-file="${PODS_ROOT}/Headers/Public/yoga/Yoga.modulemap" -OTHER_LDFLAGS = $(inherited) -ObjC -l"BugsnagReactNative" -l"CocoaAsyncSocket" -l"DoubleConversion" -l"EXAV" -l"EXAppleAuthentication" -l"EXConstants" -l"EXFileSystem" -l"EXHaptics" -l"EXImageLoader" -l"EXKeepAwake" -l"EXLocalAuthentication" -l"EXPermissions" -l"EXVideoThumbnails" -l"EXWebBrowser" -l"FBReactNativeSpec" -l"FirebaseCore" -l"FirebaseCoreDiagnostics" -l"FirebaseCrashlytics" -l"FirebaseInstallations" -l"Folly" -l"GoogleDataTransport" -l"GoogleDataTransportCCTSupport" -l"GoogleUtilities" -l"KeyCommands" -l"MMKV" -l"MMKVCore" -l"PromisesObjC" -l"RCTTypeSafety" -l"RNBootSplash" -l"RNCAsyncStorage" -l"RNCMaskedView" -l"RNConfigReader" -l"RNDateTimePicker" -l"RNDeviceInfo" -l"RNFBAnalytics" -l"RNFBApp" -l"RNFBCrashlytics" -l"RNFastImage" -l"RNGestureHandler" -l"RNImageCropPicker" -l"RNLocalize" -l"RNReanimated" -l"RNRootView" -l"RNScreens" -l"RNVectorIcons" -l"React-Core" -l"React-CoreModules" -l"React-RCTAnimation" -l"React-RCTBlob" -l"React-RCTImage" -l"React-RCTLinking" -l"React-RCTNetwork" -l"React-RCTSettings" -l"React-RCTText" -l"React-RCTVibration" -l"React-cxxreact" -l"React-jsi" -l"React-jsiexecutor" -l"React-jsinspector" -l"ReactCommon" -l"ReactNativeART" -l"ReactNativeKeyboardInput" -l"ReactNativeKeyboardTrackingView" -l"SDWebImage" -l"SDWebImageWebPCoder" -l"TOCropViewController" -l"UMAppLoader" -l"UMCore" -l"UMPermissionsInterface" -l"UMReactNativeAdapter" -l"Yoga" -l"YogaKit" -l"c++" -l"crypto" -l"event" -l"event_core" -l"event_extra" -l"event_pthreads" -l"glog" -l"libwebp" -l"nanopb" -l"react-native-appearance" -l"react-native-background-timer" -l"react-native-cameraroll" -l"react-native-cookies" -l"react-native-document-picker" -l"react-native-jitsi-meet" -l"react-native-mmkv-storage" -l"react-native-notifications" -l"react-native-orientation-locker" -l"react-native-safe-area-context" -l"react-native-slider" -l"react-native-webview" -l"rn-extensions-share" -l"rn-fetch-blob" -l"sqlite3" -l"ssl" -l"stdc++" -l"z" -framework "AudioToolbox" -framework "CFNetwork" -framework "CoreFoundation" -framework "CoreTelephony" -framework "FIRAnalyticsConnector" -framework "FirebaseAnalytics" -framework "Foundation" -framework "GoogleAppMeasurement" -framework "ImageIO" -framework "JavaScriptCore" -framework "JitsiMeet" -framework "MessageUI" -framework "MobileCoreServices" -framework "Photos" -framework "Security" -framework "StoreKit" -framework "SystemConfiguration" -framework "UIKit" -framework "WebRTC" +OTHER_LDFLAGS = $(inherited) -ObjC -l"BugsnagReactNative" -l"CocoaAsyncSocket" -l"DoubleConversion" -l"EXAV" -l"EXAppleAuthentication" -l"EXConstants" -l"EXFileSystem" -l"EXHaptics" -l"EXImageLoader" -l"EXKeepAwake" -l"EXLocalAuthentication" -l"EXPermissions" -l"EXVideoThumbnails" -l"EXWebBrowser" -l"FBReactNativeSpec" -l"FirebaseCore" -l"FirebaseCoreDiagnostics" -l"FirebaseCrashlytics" -l"FirebaseInstallations" -l"Folly" -l"GoogleDataTransport" -l"GoogleDataTransportCCTSupport" -l"GoogleUtilities" -l"KeyCommands" -l"MMKV" -l"MMKVCore" -l"PromisesObjC" -l"RCTTypeSafety" -l"RNBootSplash" -l"RNCAsyncStorage" -l"RNCMaskedView" -l"RNConfigReader" -l"RNDateTimePicker" -l"RNDeviceInfo" -l"RNFBAnalytics" -l"RNFBApp" -l"RNFBCrashlytics" -l"RNFastImage" -l"RNGestureHandler" -l"RNImageCropPicker" -l"RNLocalize" -l"RNReanimated" -l"RNRootView" -l"RNScreens" -l"RNVectorIcons" -l"React-Core" -l"React-CoreModules" -l"React-RCTAnimation" -l"React-RCTBlob" -l"React-RCTImage" -l"React-RCTLinking" -l"React-RCTNetwork" -l"React-RCTSettings" -l"React-RCTText" -l"React-RCTVibration" -l"React-cxxreact" -l"React-jsi" -l"React-jsiexecutor" -l"React-jsinspector" -l"ReactCommon" -l"ReactNativeART" -l"ReactNativeKeyboardInput" -l"ReactNativeKeyboardTrackingView" -l"SDWebImage" -l"SDWebImageWebPCoder" -l"TOCropViewController" -l"UMAppLoader" -l"UMCore" -l"UMPermissionsInterface" -l"UMReactNativeAdapter" -l"Yoga" -l"YogaKit" -l"c++" -l"crypto" -l"event" -l"event_core" -l"event_extra" -l"event_pthreads" -l"glog" -l"libwebp" -l"nanopb" -l"react-native-appearance" -l"react-native-background-timer" -l"react-native-cameraroll" -l"react-native-cookies" -l"react-native-document-picker" -l"react-native-jitsi-meet" -l"react-native-mmkv-storage" -l"react-native-notifications" -l"react-native-orientation-locker" -l"react-native-safe-area-context" -l"react-native-slider" -l"react-native-webview" -l"rn-extensions-share" -l"sqlite3" -l"ssl" -l"stdc++" -l"z" -framework "AudioToolbox" -framework "CFNetwork" -framework "CoreFoundation" -framework "CoreTelephony" -framework "FIRAnalyticsConnector" -framework "FirebaseAnalytics" -framework "Foundation" -framework "GoogleAppMeasurement" -framework "ImageIO" -framework "JavaScriptCore" -framework "JitsiMeet" -framework "MessageUI" -framework "MobileCoreServices" -framework "Photos" -framework "Security" -framework "StoreKit" -framework "SystemConfiguration" -framework "UIKit" -framework "WebRTC" OTHER_SWIFT_FLAGS = $(inherited) -D COCOAPODS -Xcc -fmodule-map-file="${PODS_CONFIGURATION_BUILD_DIR}/YogaKit/YogaKit.modulemap" -Xcc -fmodule-map-file="${PODS_ROOT}/Headers/Public/yoga/Yoga.modulemap" PODS_BUILD_DIR = ${BUILD_DIR} PODS_CONFIGURATION_BUILD_DIR = ${PODS_BUILD_DIR}/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) diff --git a/ios/Pods/Target Support Files/rn-fetch-blob/rn-fetch-blob-dummy.m b/ios/Pods/Target Support Files/rn-fetch-blob/rn-fetch-blob-dummy.m deleted file mode 100644 index 352f30f6..00000000 --- a/ios/Pods/Target Support Files/rn-fetch-blob/rn-fetch-blob-dummy.m +++ /dev/null @@ -1,5 +0,0 @@ -#import -@interface PodsDummy_rn_fetch_blob : NSObject -@end -@implementation PodsDummy_rn_fetch_blob -@end diff --git a/ios/Pods/Target Support Files/rn-fetch-blob/rn-fetch-blob-prefix.pch b/ios/Pods/Target Support Files/rn-fetch-blob/rn-fetch-blob-prefix.pch deleted file mode 100644 index beb2a244..00000000 --- a/ios/Pods/Target Support Files/rn-fetch-blob/rn-fetch-blob-prefix.pch +++ /dev/null @@ -1,12 +0,0 @@ -#ifdef __OBJC__ -#import -#else -#ifndef FOUNDATION_EXPORT -#if defined(__cplusplus) -#define FOUNDATION_EXPORT extern "C" -#else -#define FOUNDATION_EXPORT extern -#endif -#endif -#endif - diff --git a/ios/Pods/Target Support Files/rn-fetch-blob/rn-fetch-blob.debug.xcconfig b/ios/Pods/Target Support Files/rn-fetch-blob/rn-fetch-blob.debug.xcconfig deleted file mode 100644 index 14e9b024..00000000 --- a/ios/Pods/Target Support Files/rn-fetch-blob/rn-fetch-blob.debug.xcconfig +++ /dev/null @@ -1,12 +0,0 @@ -APPLICATION_EXTENSION_API_ONLY = YES -CONFIGURATION_BUILD_DIR = ${PODS_CONFIGURATION_BUILD_DIR}/rn-fetch-blob -GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 -HEADER_SEARCH_PATHS = $(inherited) "${PODS_ROOT}/Headers/Private" "${PODS_ROOT}/Headers/Private/rn-fetch-blob" "${PODS_ROOT}/Headers/Public" "${PODS_ROOT}/Headers/Public/DoubleConversion" "${PODS_ROOT}/Headers/Public/React-Core" "${PODS_ROOT}/Headers/Public/React-callinvoker" "${PODS_ROOT}/Headers/Public/React-cxxreact" "${PODS_ROOT}/Headers/Public/React-jsi" "${PODS_ROOT}/Headers/Public/React-jsiexecutor" "${PODS_ROOT}/Headers/Public/React-jsinspector" "${PODS_ROOT}/Headers/Public/Yoga" "${PODS_ROOT}/Headers/Public/glog" "${PODS_ROOT}/Headers/Public/rn-fetch-blob" -OTHER_CFLAGS = $(inherited) -fmodule-map-file="${PODS_ROOT}/Headers/Public/yoga/Yoga.modulemap" -PODS_BUILD_DIR = ${BUILD_DIR} -PODS_CONFIGURATION_BUILD_DIR = ${PODS_BUILD_DIR}/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) -PODS_ROOT = ${SRCROOT} -PODS_TARGET_SRCROOT = ${PODS_ROOT}/../../node_modules/rn-fetch-blob -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/rn-fetch-blob/rn-fetch-blob.release.xcconfig b/ios/Pods/Target Support Files/rn-fetch-blob/rn-fetch-blob.release.xcconfig deleted file mode 100644 index 14e9b024..00000000 --- a/ios/Pods/Target Support Files/rn-fetch-blob/rn-fetch-blob.release.xcconfig +++ /dev/null @@ -1,12 +0,0 @@ -APPLICATION_EXTENSION_API_ONLY = YES -CONFIGURATION_BUILD_DIR = ${PODS_CONFIGURATION_BUILD_DIR}/rn-fetch-blob -GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 -HEADER_SEARCH_PATHS = $(inherited) "${PODS_ROOT}/Headers/Private" "${PODS_ROOT}/Headers/Private/rn-fetch-blob" "${PODS_ROOT}/Headers/Public" "${PODS_ROOT}/Headers/Public/DoubleConversion" "${PODS_ROOT}/Headers/Public/React-Core" "${PODS_ROOT}/Headers/Public/React-callinvoker" "${PODS_ROOT}/Headers/Public/React-cxxreact" "${PODS_ROOT}/Headers/Public/React-jsi" "${PODS_ROOT}/Headers/Public/React-jsiexecutor" "${PODS_ROOT}/Headers/Public/React-jsinspector" "${PODS_ROOT}/Headers/Public/Yoga" "${PODS_ROOT}/Headers/Public/glog" "${PODS_ROOT}/Headers/Public/rn-fetch-blob" -OTHER_CFLAGS = $(inherited) -fmodule-map-file="${PODS_ROOT}/Headers/Public/yoga/Yoga.modulemap" -PODS_BUILD_DIR = ${BUILD_DIR} -PODS_CONFIGURATION_BUILD_DIR = ${PODS_BUILD_DIR}/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) -PODS_ROOT = ${SRCROOT} -PODS_TARGET_SRCROOT = ${PODS_ROOT}/../../node_modules/rn-fetch-blob -PRODUCT_BUNDLE_IDENTIFIER = org.cocoapods.${PRODUCT_NAME:rfc1034identifier} -SKIP_INSTALL = YES -USE_RECURSIVE_SCRIPT_INPUTS_IN_SCRIPT_PHASES = YES diff --git a/ios/RocketChatRN.xcodeproj/project.pbxproj b/ios/RocketChatRN.xcodeproj/project.pbxproj index fa8f98fe..84e625dc 100644 --- a/ios/RocketChatRN.xcodeproj/project.pbxproj +++ b/ios/RocketChatRN.xcodeproj/project.pbxproj @@ -13,6 +13,10 @@ 13B07FBC1A68108700A75B9A /* AppDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = 13B07FB01A68108700A75B9A /* AppDelegate.m */; }; 13B07FBF1A68108700A75B9A /* Images.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 13B07FB51A68108700A75B9A /* Images.xcassets */; }; 13B07FC11A68108700A75B9A /* main.m in Sources */ = {isa = PBXBuildFile; fileRef = 13B07FB71A68108700A75B9A /* main.m */; }; + 1E068CFE24FD2DC700A0FFC1 /* AppGroup.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1E068CFD24FD2DC700A0FFC1 /* AppGroup.swift */; }; + 1E068CFF24FD2DC700A0FFC1 /* AppGroup.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1E068CFD24FD2DC700A0FFC1 /* AppGroup.swift */; }; + 1E068D0124FD2E0500A0FFC1 /* AppGroup.m in Sources */ = {isa = PBXBuildFile; fileRef = 1E068D0024FD2E0500A0FFC1 /* AppGroup.m */; }; + 1E068D0224FD2E0500A0FFC1 /* AppGroup.m in Sources */ = {isa = PBXBuildFile; fileRef = 1E068D0024FD2E0500A0FFC1 /* AppGroup.m */; }; 1E1EA80A2326CD2200E22452 /* AVFoundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 1E1EA8092326CD2200E22452 /* AVFoundation.framework */; }; 1E1EA80C2326CD2800E22452 /* AudioToolbox.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 1E1EA80B2326CD2800E22452 /* AudioToolbox.framework */; }; 1E1EA80E2326CD2F00E22452 /* CoreGraphics.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 1E1EA80D2326CD2F00E22452 /* CoreGraphics.framework */; }; @@ -95,6 +99,8 @@ 13B07FB51A68108700A75B9A /* Images.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; name = Images.xcassets; path = RocketChatRN/Images.xcassets; sourceTree = ""; }; 13B07FB61A68108700A75B9A /* Info.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; name = Info.plist; path = RocketChatRN/Info.plist; sourceTree = ""; }; 13B07FB71A68108700A75B9A /* main.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = main.m; path = RocketChatRN/main.m; sourceTree = ""; }; + 1E068CFD24FD2DC700A0FFC1 /* AppGroup.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AppGroup.swift; sourceTree = ""; }; + 1E068D0024FD2E0500A0FFC1 /* AppGroup.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = AppGroup.m; sourceTree = ""; }; 1E1EA8092326CD2200E22452 /* AVFoundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = AVFoundation.framework; path = System/Library/Frameworks/AVFoundation.framework; sourceTree = SDKROOT; }; 1E1EA80B2326CD2800E22452 /* AudioToolbox.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = AudioToolbox.framework; path = System/Library/Frameworks/AudioToolbox.framework; sourceTree = SDKROOT; }; 1E1EA80D2326CD2F00E22452 /* CoreGraphics.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreGraphics.framework; path = System/Library/Frameworks/CoreGraphics.framework; sourceTree = SDKROOT; }; @@ -199,6 +205,15 @@ name = RocketChatRN; sourceTree = ""; }; + 1E068CFB24FD2DAF00A0FFC1 /* AppGroup */ = { + isa = PBXGroup; + children = ( + 1E068CFD24FD2DC700A0FFC1 /* AppGroup.swift */, + 1E068D0024FD2E0500A0FFC1 /* AppGroup.m */, + ); + path = AppGroup; + sourceTree = ""; + }; 1EC6ACB122CB9FC300A41C61 /* ShareRocketChatRN */ = { isa = PBXGroup; children = ( @@ -258,6 +273,7 @@ 83CBB9F61A601CBA00E9B192 = { isa = PBXGroup; children = ( + 1E068CFB24FD2DAF00A0FFC1 /* AppGroup */, 13B07FAE1A68108700A75B9A /* RocketChatRN */, 832341AE1AAA6A7D00B99B32 /* Libraries */, 1EC6ACB122CB9FC300A41C61 /* ShareRocketChatRN */, @@ -813,7 +829,9 @@ files = ( 13B07FBC1A68108700A75B9A /* AppDelegate.m in Sources */, 7AAA749E23043B1E00F1ADE9 /* Watermelon.swift in Sources */, + 1E068D0124FD2E0500A0FFC1 /* AppGroup.m in Sources */, 13B07FC11A68108700A75B9A /* main.m in Sources */, + 1E068CFE24FD2DC700A0FFC1 /* AppGroup.swift in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -822,7 +840,9 @@ buildActionMask = 2147483647; files = ( 1EC6ACF622CBA01500A41C61 /* ShareRocketChatRN.m in Sources */, + 1E068CFF24FD2DC700A0FFC1 /* AppGroup.swift in Sources */, 7AC99C1C2339361F0000A0CB /* Watermelon.swift in Sources */, + 1E068D0224FD2E0500A0FFC1 /* AppGroup.m in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; diff --git a/package.json b/package.json index 7ad852e0..2bcc3425 100644 --- a/package.json +++ b/package.json @@ -72,8 +72,8 @@ "react-native-animatable": "^1.3.3", "react-native-appearance": "0.3.4", "react-native-background-timer": "2.2.0", - "react-native-config-reader": "^4.1.1", "react-native-bootsplash": "2.2.5", + "react-native-config-reader": "^4.1.1", "react-native-console-time-polyfill": "^1.2.1", "react-native-device-info": "5.6.2", "react-native-document-picker": "3.5.3", @@ -117,7 +117,6 @@ "remove-markdown": "^0.3.0", "reselect": "^4.0.0", "rn-extensions-share": "^2.4.0", - "rn-fetch-blob": "0.12.0", "rn-root-view": "^1.0.3", "semver": "7.3.2", "ua-parser-js": "^0.7.21", diff --git a/yarn.lock b/yarn.lock index b9c6870f..8fd17673 100644 --- a/yarn.lock +++ b/yarn.lock @@ -4209,11 +4209,6 @@ balanced-match@^1.0.0: resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-1.0.0.tgz#89b4d199ab2bee49de164ea02b89ce462d71b767" integrity sha1-ibTRmasr7kneFk6gK4nORi1xt2c= -base-64@0.1.0: - version "0.1.0" - resolved "https://registry.yarnpkg.com/base-64/-/base-64-0.1.0.tgz#780a99c84e7d600260361511c4877613bf24f6bb" - integrity sha1-eAqZyE59YAJgNhURxId2E78k9rs= - base64-js@^1.0.2, base64-js@^1.1.2, base64-js@^1.2.3: version "1.3.1" resolved "https://registry.yarnpkg.com/base64-js/-/base64-js-1.3.1.tgz#58ece8cb75dd07e71ed08c736abc5fac4dbf8df1" @@ -7554,18 +7549,6 @@ glob-to-regexp@^0.3.0: resolved "https://registry.yarnpkg.com/glob-to-regexp/-/glob-to-regexp-0.3.0.tgz#8c5a1494d2066c570cc3bfe4496175acc4d502ab" integrity sha1-jFoUlNIGbFcMw7/kSWF1rMTVAqs= -glob@7.0.6: - version "7.0.6" - resolved "https://registry.yarnpkg.com/glob/-/glob-7.0.6.tgz#211bafaf49e525b8cd93260d14ab136152b3f57a" - integrity sha1-IRuvr0nlJbjNkyYNFKsTYVKz9Xo= - dependencies: - fs.realpath "^1.0.0" - inflight "^1.0.4" - inherits "2" - minimatch "^3.0.2" - once "^1.3.0" - path-is-absolute "^1.0.0" - glob@7.1.3: version "7.1.3" resolved "https://registry.yarnpkg.com/glob/-/glob-7.1.3.tgz#3960832d3f1574108342dafd3a67b332c0969df1" @@ -10947,7 +10930,7 @@ minimalistic-crypto-utils@^1.0.0, minimalistic-crypto-utils@^1.0.1: resolved "https://registry.yarnpkg.com/minimalistic-crypto-utils/-/minimalistic-crypto-utils-1.0.1.tgz#f6c00c1c0b082246e5c4d99dfb8c7c083b2b582a" integrity sha1-9sAMHAsIIkblxNmd+4x8CDsrWCo= -"minimatch@2 || 3", minimatch@3.0.4, minimatch@^3.0.2, minimatch@^3.0.3, minimatch@^3.0.4: +"minimatch@2 || 3", minimatch@3.0.4, minimatch@^3.0.3, minimatch@^3.0.4: version "3.0.4" resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.0.4.tgz#5166e286457f03306064be5497e8dbb0c3d32083" integrity sha512-yJHVQEhyqPLUTgt9B83PXu6W3rx4MvvHvSUvToogpwoGDOUQ+yDrR0HRot+yOCdCO7u4hX3pWft6kWBBcqh0UA== @@ -13669,14 +13652,6 @@ rn-extensions-share@^2.4.0: resolved "https://registry.yarnpkg.com/rn-extensions-share/-/rn-extensions-share-2.4.0.tgz#a614f6bf6cdd3948fbd7e0f2519592d4bb5f551f" integrity sha512-zX3HcOhib805fVHR7TMYfFXrVBJWYgcrLYNB89RxbKqmSjaqUyWlHYuF61SKOs/dXXeic91e/L8d1YJa6TdzGA== -rn-fetch-blob@0.12.0: - version "0.12.0" - resolved "https://registry.yarnpkg.com/rn-fetch-blob/-/rn-fetch-blob-0.12.0.tgz#ec610d2f9b3f1065556b58ab9c106eeb256f3cba" - integrity sha512-+QnR7AsJ14zqpVVUbzbtAjq0iI8c9tCg49tIoKO2ezjzRunN7YL6zFSFSWZm6d+mE/l9r+OeDM3jmb2tBb2WbA== - dependencies: - base-64 "0.1.0" - glob "7.0.6" - rn-host-detect@1.2.0: version "1.2.0" resolved "https://registry.yarnpkg.com/rn-host-detect/-/rn-host-detect-1.2.0.tgz#8b0396fc05631ec60c1cb8789e5070cdb04d0da0"